· 8 years ago · Aug 10, 2018, 12:00 PM
1#include <iostream>
2#include <vector>
3#include <sstream>
4#include <deque>
5#include <unordered_map>
6#include <string>
7#include <regex>
8
9using namespace std;
10
11
12vector<string> split(const string& s, char delimiter) {
13 vector<string> tokens;
14 string token;
15 stringstream tokenStream;
16 tokenStream << s;
17 while (std::getline(tokenStream, token, delimiter)) {
18 tokens.push_back(token);
19 }
20 return tokens;
21}
22
23class Tag{
24public:
25 string type = ""; // types: div, head, a, link, header. tags: <div>, </div>, <a>, ...
26 vector<string> classes;
27 vector<string> ids;
28 unordered_map<string, vector<string>> props;
29 vector<Tag*> children;
30
31 string tag(){
32 return string("<") + type + string(">");
33 }
34
35 string closure() { return string("<") + "/" + type + string(">"); }
36
37 static string getTypeName(string tag){
38 regex rgx("(\\w+)");
39 auto type = std::sregex_iterator(tag.begin(), tag.end(), rgx); // Type is the first one
40 return static_cast<std::smatch>(*type).str();
41 }
42
43 static string closureForTag(string tag) {
44 return string("<") + "/" + getTypeName(tag) + string(">");
45 }
46
47
48 static string tagWithoutProps(string tag){
49 if (containsClosure(tag))
50 return string("</") + getTypeName(tag) + string(">");
51 return string("<") + getTypeName(tag) + string(">");
52 }
53
54 static bool containsClosure(string tag){
55 return (tag.find('/') == string::npos);
56 }
57
58 static bool needToSplitPropsValue(string prop){
59 string noNeed[] = {"content", "title"};
60 for(auto i: noNeed)
61 if (i == prop)
62 return false;
63 return true;
64 }
65
66 void resolve_prop_values(string s, vector<string>& v){
67 regex rgx("(\\S+)");
68 auto values_begin = std::sregex_iterator(s.begin(), s.end(), rgx);
69 auto values_end = std::sregex_iterator();
70 for (std::sregex_iterator i = values_begin; i != values_end; ++i) {
71 std::smatch match = *i;
72 std::string match_str = match.str();
73 v.push_back(match_str);
74 }
75 }
76
77 void resolve_prop_values(string s, string name, unordered_map<string, vector<string>>& p){
78 if(!needToSplitPropsValue(name)){
79 vector<string> v;
80 v.push_back(s);
81 p.insert(make_pair(name, v));
82 return;
83 }
84 regex rgx("(\\S+)");
85 auto values_begin = std::sregex_iterator(s.begin(), s.end(), rgx);
86 vector<string> v;
87 auto values_end = std::sregex_iterator();
88 for (std::sregex_iterator i = values_begin; i != values_end; ++i) {
89 std::smatch match = *i;
90 std::string match_str = match.str();
91 v.push_back(match_str);
92 }
93 p.insert(make_pair(name, v));
94 }
95
96 void resolve_props(string tag){
97 regex rgx("(\\w+\\s*=\\s*\"[^\"]+)", regex_constants::ECMAScript);
98 auto props_begin =
99 std::sregex_iterator(tag.begin(), tag.end(), rgx);
100 auto props_end = std::sregex_iterator();
101 for (std::sregex_iterator i = props_begin; i != props_end; ++i) {
102 std::smatch match = *i;
103 std::string match_str = match.str() + "\"";
104 string name = split(match_str, '=')[0];
105 while(name.c_str()[name.size()-1] == ' ') name = name.substr(0, name.size()-1);
106 string values = split(match_str, '=')[1];
107 while(values.c_str()[0] == ' ') values = values.substr(1, values.size());
108 values = values.substr(1, values.size()-2);
109 if(name == "class") resolve_prop_values(values, classes);
110 else if(name == "id") resolve_prop_values(values, ids);
111 else resolve_prop_values(values, name, props);
112 }
113 }
114
115 void resolve_children(vector<string> tags){
116 vector<vector<string>> children_tags; // vector -> children -> their tags
117
118 deque<string> main_deq;
119 for(auto t: tags) main_deq.push_back(t);
120 deque<string> curr_deq;
121
122 while(!main_deq.empty()) {
123 children_tags.emplace_back();
124 do{
125 string curr_tag = main_deq.front();
126 children_tags[children_tags.size()-1].push_back(curr_tag);
127 main_deq.pop_front();
128 // after
129 if(!curr_deq.empty() && closureForTag( tagWithoutProps(curr_deq.back())) == curr_tag)
130 curr_deq.pop_back();
131 else
132 curr_deq.push_back(curr_tag);
133 } while(!curr_deq.empty());
134 }
135
136 for(auto t: children_tags){
137 children.push_back(new Tag(t));
138 }
139
140 }
141
142 Tag(vector<string> tags){
143 // props = new unordered_map<string, string>();
144
145 // Tag is 'embraced' in itself <a> <b> </b> <c> </c> </a> a is an embracing class with children: c, d
146 type = getTypeName(tags[0]);
147 resolve_props(tags[0]);
148
149 tags.erase(tags.begin());
150 tags.erase(tags.end());
151
152 resolve_children(tags);
153 }
154
155 void repr(int spaceLevel = 0){
156 if(type != "plaintext") {
157 cout << string(spaceLevel * 2, ' ') << type;
158
159 if (!ids.empty()) for (const auto &id: ids) cout << "#" << id;
160 if (!classes.empty()) for (const auto &cl: classes) cout << "." << cl;
161 if (!props.empty()) {
162 cout << " {";
163 for (const auto &prop: props) {
164 cout << prop.first << "= [";
165 for (const auto &val: prop.second)
166 cout << "\"" << val << "\"" << ", ";
167 cout << "], ";
168 }
169 cout << "}";
170
171 }
172
173 cout << endl;
174 for (auto c: children)
175 c->repr(spaceLevel + 1);
176 } else {
177 if(props["content"].size() > 0) cout << string(spaceLevel * 2, ' ') << "(pt): " << props["content"][0] << endl;
178 }
179 }
180
181 Tag* lastKid(){
182 return children[0];
183 }
184
185 ~Tag(){
186 for(auto child: children) delete child;
187 }
188};
189
190const string BANNED_TAGS[] = {"meta", "br", "link", "base", "hr", "wbr", "area", "img", "param", "input"};
191
192void make_stack(const string& s, vector<string>& tags){
193 stringstream ss;
194
195 for(auto it = s.begin(); it < s.end();){
196 if(*it =='<'){
197 if(*(it+1) == '!') { // Ran into a comment
198 while (*it != '>'){it++; };
199
200 } else {
201 // We are inside the tag brackets
202 ss.str("");
203 while (*it != '>') {
204 cout << *it; // WARNING! ACHTUNG! ОСТОРОЖÐО! Removing that line somehow will cause everything to fall apart!!!
205 ss << *it;
206 it++;
207 }
208 ss << *it;
209 tags.push_back(ss.str());
210 }
211 } else if(*it !='\n' and *it!=' ') {
212 // We are inside the tag itself
213 // Adding the plaintext
214 ss.str("");
215 stringstream content;
216 ss << "<plaintext content=\"";
217 while(*it != '<'){ // new tag is about to open
218 content << *it;
219 it++;
220 }
221 string res = content.str();
222 while(res.c_str()[0] == '>') res = res.substr(1, res.size()-1);
223 regex rgx("(\\w+)");
224 if(!regex_search(res, rgx) or Tag::getTypeName(tags[tags.size()-1]) == "style" ) continue;
225 ss << res;
226 ss << "\">";
227 tags.emplace_back(ss.str());
228 tags.emplace_back("</plaintext>");
229 }
230 }
231
232 tags.pop_back();
233 tags.pop_back();
234}
235
236Tag* parse(string s){
237 vector<string> tags;
238
239 make_stack(s, tags);
240
241 tags.erase(remove_if(tags.begin(), tags.end(), [](string s) {
242 for(auto el: BANNED_TAGS){
243 if(Tag::getTypeName(s) == el) return true;
244 }
245 return false;
246 }), tags.end());
247
248
249 return new Tag(tags);
250}
251
252int main(int argc, char** argv) {
253
254
255 /*
256 std::string testHtml = "<html>\n"
257 "<head>\n"
258 "<meta charset=\"UTF-87\">\n"
259 "<link src=\"style.css\">"
260 "<script src=\"petoo.h\" ></script>"
261 "</head>\n"
262 "<body>\n"
263 "<div class=\"test_clasS\" id=\"cool-id\">\n"
264 "<div class=\"there will be many of us!\">"
265 "<div id=\"lets conquer the world comrades!\">"
266 "<\n\n\n a \t\t\t href=\"/awful\">"
267 "</a>"
268 "</div>"
269 "</div>"
270 "</div>\n"
271 "</body>\n"
272 "</html>\n";
273
274 */
275 //string testHtml = Parser::retrieve("www.avito.ru", "443", "/moskva/lichnye_veschi?view=list");
276
277 // cout << testHtml;
278
279 string testHtml = "<html class=\"client-js ve-not-available\" lang=\"en\" dir=\"ltr\"><head>\n"
280 "<meta charset=\"UTF-8\">\n"
281 "<title>Wikipedia, the free encyclopedia</title>\n"
282 "<script>document.documentElement.className = document.documentElement.className.replace( /(^|\\s)client-nojs(\\s|$)/, \"$1client-js$2\" );</script>\n"
283 "<script>(window.RLQ=window.RLQ||[]).push(function(){mw.config.set({\"wgCanonicalNamespace\":\"\",\"wgCanonicalSpecialPageName\":false,\"wgNamespaceNumber\":0,\"wgPageName\":\"Main_Page\",\"wgTitle\":\"Main Page\",\"wgCurRevisionId\":847600508,\"wgRevisionId\":847600508,\"wgArticleId\":15580374,\"wgIsArticle\":true,\"wgIsRedirect\":false,\"wgAction\":\"view\",\"wgUserName\":null,\"wgUserGroups\":[\"*\"],\"wgCategories\":[],\"wgBreakFrames\":false,\"wgPageContentLanguage\":\"en\",\"wgPageContentModel\":\"wikitext\",\"wgSeparatorTransformTable\":[\"\",\"\"],\"wgDigitTransformTable\":[\"\",\"\"],\"wgDefaultDateFormat\":\"dmy\",\"wgMonthNames\":[\"\",\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],\"wgMonthNamesShort\":[\"\",\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],\"wgRelevantPageName\":\"Main_Page\",\"wgRelevantArticleId\":15580374,\"wgRequestId\":\"W2yDlwpAMFgAALrzzbwAAACS\",\"wgIsProbablyEditable\":false,\"wgRelevantPageIsProbablyEditable\":false,\"wgRestrictionEdit\":[\"sysop\"],\"wgRestrictionMove\":[\"sysop\"],\"wgIsMainPage\":true,\"wgFlaggedRevsParams\":{\"tags\":{}},\"wgStableRevisionId\":null,\"wgCategoryTreePageCategoryOptions\":\"{\\\"mode\\\":0,\\\"hideprefix\\\":20,\\\"showcount\\\":true,\\\"namespaces\\\":false}\",\"wgWikiEditorEnabledModules\":[],\"wgBetaFeaturesFeatures\":[],\"wgMediaViewerOnClick\":true,\"wgMediaViewerEnabledByDefault\":true,\"wgPopupsShouldSendModuleToUser\":true,\"wgPopupsConflictsWithNavPopupGadget\":false,\"wgVisualEditor\":{\"pageLanguageCode\":\"en\",\"pageLanguageDir\":\"ltr\",\"pageVariantFallbacks\":\"en\",\"usePageImages\":true,\"usePageDescriptions\":true},\"wgMFExpandAllSectionsUserOption\":true,\"wgMFEnableFontChanger\":true,\"wgMFDisplayWikibaseDescriptions\":{\"search\":true,\"nearby\":true,\"watchlist\":true,\"tagline\":false},\"wgRelatedArticles\":null,\"wgRelatedArticlesUseCirrusSearch\":true,\"wgRelatedArticlesOnlyUseCirrusSearch\":false,\"wgULSCurrentAutonym\":\"English\",\"wgNoticeProject\":\"wikipedia\",\"wgCentralNoticeCookiesToDelete\":[],\"wgCentralNoticeCategoriesUsingLegacy\":[\"Fundraising\",\"fundraising\"],\"wgWikibaseItemId\":\"Q5296\",\"wgScoreNoteLanguages\":{\"arabic\":\"العربية\",\"catalan\":\"català \",\"deutsch\":\"Deutsch\",\"english\":\"English\",\"espanol\":\"español\",\"italiano\":\"italiano\",\"nederlands\":\"Nederlands\",\"norsk\":\"norsk\",\"portugues\":\"português\",\"suomi\":\"suomi\",\"svenska\":\"svenska\",\"vlaams\":\"West-Vlams\"},\"wgScoreDefaultNoteLanguage\":\"nederlands\",\"wgCentralAuthMobileDomain\":false,\"wgCodeMirrorEnabled\":true,\"wgVisualEditorToolbarScrollOffset\":0,\"wgVisualEditorUnsupportedEditParams\":[\"undo\",\"undoafter\",\"veswitched\"],\"wgEditSubmitButtonLabelPublish\":true});mw.loader.state({\"ext.gadget.charinsert-styles\":\"ready\",\"ext.globalCssJs.user.styles\":\"ready\",\"ext.globalCssJs.site.styles\":\"ready\",\"site.styles\":\"ready\",\"noscript\":\"ready\",\"user.styles\":\"ready\",\"ext.globalCssJs.user\":\"ready\",\"ext.globalCssJs.site\":\"ready\",\"user\":\"ready\",\"user.options\":\"ready\",\"user.tokens\":\"loading\",\"mediawiki.legacy.shared\":\"ready\",\"mediawiki.legacy.commonPrint\":\"ready\",\"ext.visualEditor.desktopArticleTarget.noscript\":\"ready\",\"ext.uls.interlanguage\":\"ready\",\"ext.wikimediaBadges\":\"ready\",\"mediawiki.skinning.interface\":\"ready\",\"skins.vector.styles\":\"ready\"});mw.loader.implement(\"user.tokens@1dqfd7l\",function($,jQuery,require,module){/*@nomin*/mw.user.tokens.set({\"editToken\":\"+\\\\\",\"patrolToken\":\"+\\\\\",\"watchToken\":\"+\\\\\",\"csrfToken\":\"+\\\\\"});\n"
284 "});mw.loader.load([\"site\",\"mediawiki.page.startup\",\"mediawiki.user\",\"mediawiki.page.ready\",\"mediawiki.searchSuggest\",\"ext.gadget.teahouse\",\"ext.gadget.ReferenceTooltips\",\"ext.gadget.watchlist-notice\",\"ext.gadget.DRN-wizard\",\"ext.gadget.charinsert\",\"ext.gadget.refToolbar\",\"ext.gadget.extra-toolbar-buttons\",\"ext.gadget.switcher\",\"ext.centralauth.centralautologin\",\"mmv.head\",\"mmv.bootstrap.autostart\",\"ext.popups\",\"ext.visualEditor.desktopArticleTarget.init\",\"ext.visualEditor.targetLoader\",\"ext.eventLogging.subscriber\",\"ext.wikimediaEvents\",\"ext.navigationTiming\",\"ext.uls.eventlogger\",\"ext.uls.init\",\"ext.uls.interface\",\"ext.3d\",\"ext.centralNotice.geoIP\",\"ext.centralNotice.startUp\",\"skins.vector.js\"]);});</script>\n"
285 "<link rel=\"stylesheet\" href=\"/w/load.php?debug=false&lang=en&modules=ext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cskins.vector.styles&only=styles&skin=vector\">\n"
286 "<script async=\"\" src=\"/w/load.php?debug=false&lang=en&modules=startup&only=scripts&skin=vector\"></script>\n"
287 "<style>\n"
288 ".suggestions{overflow:hidden;position:absolute;top:0;left:0;width:0;border:0;z-index:1099;padding:0;margin:-1px 0 0 0}.suggestions-special{position:relative;background-color:#fff;cursor:pointer;border:1px solid #a2a9b1;margin:0;margin-top:-2px;display:none;padding:0.25em 0.25em;line-height:1.25em}.suggestions-results{background-color:#fff;cursor:pointer;border:1px solid #a2a9b1;padding:0;margin:0}.suggestions-result{color:#000;margin:0;line-height:1.5em;padding:0.01em 0.25em;text-align:left; overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.suggestions-result-current{background-color:#2a4b8d;color:#fff}.suggestions-special .special-label{color:#72777d;text-align:left}.suggestions-special .special-query{color:#000;font-style:italic;text-align:left}.suggestions-special .special-hover{background-color:#c8ccd1}.suggestions-result-current .special-label,.suggestions-result-current .special-query{color:#fff}.highlight{font-weight:bold}\n"
289 ".wp-teahouse-question-form{position:absolute;margin-left:auto;margin-right:auto;background-color:#f4f3f0;border:1px solid #a7d7f9;padding:1em}#wp-th-question-ask{float:right}.wp-teahouse-ask a.external{background-image:none !important}.wp-teahouse-respond-form{position:absolute;margin-left:auto;margin-right:auto;background-color:#f4f3f0;border:1px solid #a7d7f9;padding:1em}.wp-th-respond{float:right}.wp-teahouse-respond a.external{background-image:none !important}\n"
290 ".referencetooltip{position:absolute;list-style:none;list-style-image:none;opacity:0;font-size:12px;margin:0;z-index:5;padding:0}.referencetooltip > li{background:#fff;border:1px solid #bbb;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.2);-moz-box-shadow:0 0 10px rgba(0,0,0,0.2);box-shadow:0 0 10px rgba(0,0,0,0.2);margin:0;padding:8px 10px;line-height:18px;max-width:300px}.referencetooltip > li + li{box-sizing:border-box;margin-left:7px;margin-top:-1px;border:0;padding:0;height:3px;width:0;background-color:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-top:12px #bbb solid;border-right:7px transparent solid;border-left:7px transparent solid}.referencetooltip > li + li::after{z-index:111;content:'';border:6px solid transparent;border-bottom:0;border-top:8px solid #fff;height:0;width:0;display:block;margin-left:-6px;margin-top:-12px}.RTflipped{padding-top:13px}.referencetooltip.RTflipped > li + li{position:absolute;top:0;border-top:0;border-bottom:12px #bbb solid}.referencetooltip.RTflipped > li + li::after{border-top:0;border-bottom:8px #fff solid;position:absolute;margin-top:7px}.RTsettings{ background-image:linear-gradient(transparent,transparent),url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%0D%0A%20%20%20%20%3Cpath%20fill%3D%22%23555%22%20d%3D%22M20%2014.5v-2.9l-1.8-.3c-.1-.4-.3-.8-.6-1.4l1.1-1.5-2.1-2.1-1.5%201.1c-.5-.3-1-.5-1.4-.6L13.5%205h-2.9l-.3%201.8c-.5.1-.9.3-1.4.6L7.4%206.3%205.3%208.4l1%201.5c-.3.5-.4.9-.6%201.4l-1.7.2v2.9l1.8.3c.1.5.3.9.6%201.4l-1%201.5%202.1%202.1%201.5-1c.4.2.9.4%201.4.6l.3%201.8h3l.3-1.8c.5-.1.9-.3%201.4-.6l1.5%201.1%202.1-2.1-1.1-1.5c.3-.5.5-1%20.6-1.4l1.5-.3zM12%2016c-1.7%200-3-1.3-3-3s1.3-3%203-3%203%201.3%203%203-1.3%203-3%203z%22%2F%3E%0D%0A%3C%2Fsvg%3E); display:block;float:right;cursor:pointer;margin:0;margin-top:-4px;height:24px;width:24px;border-radius:2px;box-sizing:border-box;background-position:center center;background-repeat:no-repeat;background-size:24px 24px;margin-left:8px}.RTsettings:hover{background-color:#eee}.RTTarget{background-color:#def}\n"
291 "@-webkit-keyframes centralAuthPPersonalAnimation{0%{opacity:0;-webkit-transform:translateY(-20px)}100%{opacity:1;-webkit-transform:translateY(0)}}@-moz-keyframes centralAuthPPersonalAnimation{0%{opacity:0;-moz-transform:translateY(-20px)}100%{opacity:1;-moz-transform:translateY(0)}}@-o-keyframes centralAuthPPersonalAnimation{0%{opacity:0;-o-transform:translateY(-20px)}100%{opacity:1;-o-transform:translateY(0)}}@keyframes centralAuthPPersonalAnimation{0%{opacity:0;transform:translateY(-20px)}100%{opacity:1;transform:translateY(0)}}.centralAuthPPersonalAnimation{-webkit-animation-duration:1s;-moz-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-name:centralAuthPPersonalAnimation;-moz-animation-name:centralAuthPPersonalAnimation;-o-animation-name:centralAuthPPersonalAnimation;animation-name:centralAuthPPersonalAnimation}\n"
292 ".mw-ui-button{font-family:inherit;font-size:1em;display:inline-block;min-width:4em;max-width:28.75em;padding:0.546875em 1em;line-height:1.286;margin:0;border-radius:2px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;*display:inline; zoom:1;vertical-align:middle;background-color:#f8f9fa;color:#222222;border:1px solid #a2a9b1;text-align:center;font-weight:bold;cursor:pointer}.mw-ui-button:visited{color:#222222}.mw-ui-button:hover{background-color:#ffffff;color:#444444;border-color:#a2a9b1}.mw-ui-button:focus{background-color:#ffffff;color:#222222;border-color:#3366cc;box-shadow:inset 0 0 0 1px #3366cc,inset 0 0 0 2px #ffffff}.mw-ui-button:active,.mw-ui-button.is-on,.mw-ui-button.mw-ui-checked{background-color:#d9d9d9;color:#000000;border-color:#72777d;box-shadow:none}.mw-ui-button:disabled{background-color:#c8ccd1;color:#fff;border-color:#c8ccd1}.mw-ui-button:disabled:hover,.mw-ui-button:disabled:active{background-color:#c8ccd1;color:#fff;box-shadow:none;border-color:#c8ccd1}.mw-ui-button:focus{outline-width:0}.mw-ui-button:focus::-moz-focus-inner{border-color:transparent;padding:0}.mw-ui-button:not(:disabled){-webkit-transition:background-color 100ms,color 100ms,border-color 100ms,box-shadow 100ms;-moz-transition:background-color 100ms,color 100ms,border-color 100ms,box-shadow 100ms;transition:background-color 100ms,color 100ms,border-color 100ms,box-shadow 100ms}.mw-ui-button:disabled{text-shadow:none;cursor:default}.mw-ui-button.mw-ui-big{font-size:1.3em}.mw-ui-button.mw-ui-block{display:block;width:100%;margin-left:auto;margin-right:auto}.mw-ui-button.mw-ui-progressive{background-color:#3366cc;color:#fff;border:1px solid #3366cc}.mw-ui-button.mw-ui-progressive:hover{background-color:#447ff5;border-color:#447ff5}.mw-ui-button.mw-ui-progressive:focus{box-shadow:inset 0 0 0 1px #3366cc,inset 0 0 0 2px #ffffff}.mw-ui-button.mw-ui-progressive:active,.mw-ui-button.mw-ui-progressive.is-on,.mw-ui-button.mw-ui-progressive.mw-ui-checked{background-color:#2a4b8d;border-color:#2a4b8d;box-shadow:none}.mw-ui-button.mw-ui-progressive:disabled{background-color:#c8ccd1;color:#fff;border-color:#c8ccd1}.mw-ui-button.mw-ui-progressive:disabled:hover,.mw-ui-button.mw-ui-progressive:disabled:active,.mw-ui-button.mw-ui-progressive:disabled.mw-ui-checked{background-color:#c8ccd1;color:#fff;border-color:#c8ccd1;box-shadow:none}.mw-ui-button.mw-ui-progressive.mw-ui-quiet{color:#222222}.mw-ui-button.mw-ui-progressive.mw-ui-quiet:hover{background-color:transparent;color:#447ff5}.mw-ui-button.mw-ui-progressive.mw-ui-quiet:active,.mw-ui-button.mw-ui-progressive.mw-ui-quiet.mw-ui-checked{color:#2a4b8d}.mw-ui-button.mw-ui-progressive.mw-ui-quiet:focus{background-color:transparent;color:#3366cc}.mw-ui-button.mw-ui-progressive.mw-ui-quiet:disabled{color:#c8ccd1}.mw-ui-button.mw-ui-destructive{background-color:#dd3333;color:#fff;border:1px solid #dd3333}.mw-ui-button.mw-ui-destructive:hover{background-color:#ff4242;border-color:#ff4242}.mw-ui-button.mw-ui-destructive:focus{box-shadow:inset 0 0 0 1px #dd3333,inset 0 0 0 2px #ffffff}.mw-ui-button.mw-ui-destructive:active,.mw-ui-button.mw-ui-destructive.is-on,.mw-ui-button.mw-ui-destructive.mw-ui-checked{background-color:#b32424;border-color:#b32424;box-shadow:none}.mw-ui-button.mw-ui-destructive:disabled{background-color:#c8ccd1;color:#fff;border-color:#c8ccd1}.mw-ui-button.mw-ui-destructive:disabled:hover,.mw-ui-button.mw-ui-destructive:disabled:active,.mw-ui-button.mw-ui-destructive:disabled.mw-ui-checked{background-color:#c8ccd1;color:#fff;border-color:#c8ccd1;box-shadow:none}.mw-ui-button.mw-ui-destructive.mw-ui-quiet{color:#222222}.mw-ui-button.mw-ui-destructive.mw-ui-quiet:hover{background-color:transparent;color:#ff4242}.mw-ui-button.mw-ui-destructive.mw-ui-quiet:active,.mw-ui-button.mw-ui-destructive.mw-ui-quiet.mw-ui-checked{color:#b32424}.mw-ui-button.mw-ui-destructive.mw-ui-quiet:focus{background-color:transparent;color:#dd3333}.mw-ui-button.mw-ui-destructive.mw-ui-quiet:disabled{color:#c8ccd1}.mw-ui-button.mw-ui-quiet{background:transparent;border:0;text-shadow:none;color:#222222}.mw-ui-button.mw-ui-quiet:hover{background-color:transparent;color:#444444}.mw-ui-button.mw-ui-quiet:active,.mw-ui-button.mw-ui-quiet.mw-ui-checked{color:#000000}.mw-ui-button.mw-ui-quiet:focus{background-color:transparent;color:#222222}.mw-ui-button.mw-ui-quiet:disabled{color:#c8ccd1}.mw-ui-button.mw-ui-quiet:hover,.mw-ui-button.mw-ui-quiet:focus{box-shadow:none}.mw-ui-button.mw-ui-quiet:active,.mw-ui-button.mw-ui-quiet:disabled{background:transparent}input.mw-ui-button::-moz-focus-inner,button.mw-ui-button::-moz-focus-inner{margin-top:-1px;margin-bottom:-1px}a.mw-ui-button{text-decoration:none}a.mw-ui-button:hover,a.mw-ui-button:focus{text-decoration:none}.mw-ui-button-group > *{min-width:48px;border-radius:0;float:left}.mw-ui-button-group > *:first-child{border-top-left-radius:2px;border-bottom-left-radius:2px}.mw-ui-button-group > *:not(:first-child){border-left:0}.mw-ui-button-group > *:last-child{border-top-right-radius:2px;border-bottom-right-radius:2px}.mw-ui-button-group .is-on .button{cursor:default}\n"
293 ".mw-ui-icon{position:relative;line-height:1.5em;min-height:1.5em;min-width:1.5em}span.mw-ui-icon{display:inline-block}.mw-ui-icon.mw-ui-icon-element{text-indent:-999px;overflow:hidden;width:3.5em;min-width:3.5em;max-width:3.5em}.mw-ui-icon.mw-ui-icon-element:before{left:0;right:0;position:absolute;margin:0 1em}.mw-ui-icon.mw-ui-icon-element.mw-ui-icon-large{width:4.625em;min-width:4.625em;max-width:4.625em;line-height:4.625em;min-height:4.625em}.mw-ui-icon.mw-ui-icon-element.mw-ui-icon-large:before{min-height:4.625em}.mw-ui-icon.mw-ui-icon-before:before,.mw-ui-icon.mw-ui-icon-element:before{background-position:50% 50%;background-repeat:no-repeat;background-size:100% auto;float:left;display:block;min-height:1.5em;content:''}.mw-ui-icon.mw-ui-icon-before:before{position:relative;width:1.5em;margin-right:1em}.mw-ui-icon.mw-ui-icon-small:before{background-size:66.67% auto}\n"
294 ".mw-editfont-monospace{font-family:monospace,monospace}.mw-editfont-sans-serif{font-family:sans-serif}.mw-editfont-serif{font-family:serif} .mw-editfont-monospace,.mw-editfont-sans-serif,.mw-editfont-serif{font-size:13px; }.mw-editfont-monospace.oo-ui-textInputWidget,.mw-editfont-sans-serif.oo-ui-textInputWidget,.mw-editfont-serif.oo-ui-textInputWidget{font-size:inherit}.mw-editfont-monospace > .oo-ui-inputWidget-input,.mw-editfont-sans-serif > .oo-ui-inputWidget-input,.mw-editfont-serif > .oo-ui-inputWidget-input{font-size:13px}\n"
295 ".uls-menu{border-radius:2px; font-size:medium}.uls-search,.uls-language-settings-close-block{border-top-right-radius:2px;border-top-left-radius:2px}.uls-language-list{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.uls-menu.callout:before,.uls-menu.callout:after{border-top:10px solid transparent;border-bottom:10px solid transparent;display:inline-block; top:17px;position:absolute;content:''}.uls-menu.callout.selector-right:before{ border-left:10px solid #c8ccd1; right:-11px}.uls-menu.callout.selector-right:after{ border-left:10px solid #f8f9fa; right:-10px}.uls-menu.callout.selector-left:before{ border-right:10px solid #c8ccd1; left:-11px}.uls-menu.callout.selector-left:after{ border-right:10px solid #f8f9fa; left:-10px}.uls-ui-languages button{margin:5px 15px 5px 0;white-space:nowrap;overflow:hidden}.uls-search-wrapper-wrapper{position:relative;padding-left:40px;margin-top:5px;margin-bottom:5px}.uls-icon-back{background:transparent url(/w/extensions/UniversalLanguageSelector/resources/images/back-grey-ltr.png?90e9b) no-repeat scroll center center;background-image:-webkit-linear-gradient(transparent,transparent),url(/w/extensions/UniversalLanguageSelector/resources/images/back-grey-ltr.svg?e226b);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 viewBox=%220 0 24 24%22%3E %3Cpath fill=%22%2354595d%22 d=%22M7 13.1l8.9 8.9c.8-.8.8-2 0-2.8l-6.1-6.1 6-6.1c.8-.8.8-2 0-2.8L7 13.1z%22/%3E %3C/svg%3E\");background-size:28px;background-position:center center;height:32px;width:40px;display:block;position:absolute;left:0;border-right:1px solid #c8ccd1;opacity:0.8}.uls-icon-back:hover{opacity:1;cursor:pointer}.uls-menu .uls-no-results-view .uls-no-found-more{background-color:#fff}.uls-menu .uls-no-results-view h3{padding:0 28px;margin:0;color:#54595d;font-size:1em;font-weight:normal} .skin-vector .uls-menu{border-color:#c8ccd1;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.25);box-shadow:0 2px 2px 0 rgba(0,0,0,0.25);font-size:0.875em}.skin-vector .uls-search{border-bottom-color:#c8ccd1}.skin-vector .uls-filtersuggestion{color:#72777d}.skin-vector .uls-lcd-region-title{color:#54595d}\n"
296 ".mw-spinner{background-color:transparent;background-position:center center;background-repeat:no-repeat}.mw-spinner-small{background-image:url(data:image/gif;base64,R0lGODlhFAAUAIQQAAYJBRkbGCYnJTI0MT9APk5QTVhZV2ZoZXR2c4SGg5CSj52fnKyuq7m7uMfJxtPV0v///////////////////////////////////////////////////////////////yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCgABACwAAAAAFAAUAAAFc2AgjuNQkCipHCMAiI6TjoWAiG7gNM08CgTca+cbGWyBXEMm6okMJxGBNWLuGo8ngWBY+HgxlIFwm4VnimKKkWgn1Dzwwv0uxpfqfJWZ2p1hV0VXTA9gMCRETXxOOj08jXxfMo+NcHiUgT5nlAFZejqRKCEAIfkECQoADAAsAAAAABQAFAAABXYgI45jcZAouSSjIIjDkI4HwTJBIALvLBIFUY4xAPhoA1ZAcAjIRI2RQlFCkIIMR6PxEC0UiYXDt3WMSdOFz0w+prTb6DHeMNPd9LN7n9WjtGwjdnIzcGeGIn5aI3WMglFbWY14kHKLR4AMkZKEb2ebDF18fUchACH5BAkKAAEALAAAAAAUABQAAAV6YCCO44GQKOkw40CIxZuKi9KIwyAK8hwkCpyOIPCNFglWTjEojAgJkeMmUixIhiABADhIGw3HwycACLyqsI+ATo2NqCmY6puH5WC43QHvjxx8M3KBUnJGgyIPYIGEAVMjaiJ0j3lTjTN5eQGadWqainQpgJJ0b36jPiEAIfkECQoAAQAsAAAAABQAFAAABXVgII7jwpAo+TxjkoiGkY5OwwauSBTz2DSinIHQozUcuISCIIMpRDUfcoRYBAwCwQH6c9xSBAEBgapNUwfy7Fs0/oBFgBwwqL3bcwCvzYeey10qdkV2Uw+BAX9RIkc+RgE/iY1tkZGSlI2Wgz0OU5YBbG2dRSEAIfkECQoACAAsAAAAABQAFAAABXcgIo4j05Ao+TjjsohuOjoNi8RIoshjDb+KBG/mczUUL9EhSevZYKwDgSBE0GoPXmFgqBKfqIMXlR2iro3TMCBgF9BqXpt9MKPGJAeYRAhw81dDAwAAAyIPaTZgTSIChiJxTWlWPmaTk5SWPpiBPHqQcWV2VnskIQAh+QQJCgABACwAAAAAFAAUAAAFemAgjqPjkCj5nGLTiAyTlg3rios8t/bLLDvayeXIjRYsx4tHcjwCi0RCp6w9Z4qEQifcxXbXYNN1Cw7Og0O1vEMTEGKUYmfaGQaEQ7O6WxQEAwUiD0QiLCIEAiMEBCNLAUoBNwcAA3E3ZQIAYoVllI10PSMHCXGGhykhACH5BAkKAAEALAAAAAAUABQAAAV3YCCOo+OQKPmcYtOIZlo2T/sGDSvjrBs4t90vh6MRYbXh6Igc0mAuRzIV1UGtpJhsKpy5grKEOLEAfrvjBKOLUuy0KQTBkMiadwsDYS56RGEkBwQjBQZLMwEAAAEIAoZdPooiBAKQRJKMAgVCWpgBB25sAQUDQiEAIfkECQoAEAAsAAAAABQAFAAABXsgJI6j45Ao+Zxi04hmWjZP+0INK+OsCzm33S+HoxFhteHoiBzSYC5HMhXVQa2kmGwqnLmCsm8O+O2KseadNrVQKBhZsnqRSChEj6iIQEIURm5LIwMBCAIBEAkDB10QAAIQAYgQBnxChyKYiQSMOwKQEJ8jCQuNIgd/OyEAIfkECQoAHwAsAAAAABQAFAAABXzgJ46j45Ao+Zxi04hmWjZP+34NK+Os+zm33S+HoxFhteHoiBzSYC5HMhXVQa2kmGwqnLmCsm8O+O2KsV0u6UDYAbWigwAg2K2iIgMAMPgsDCQMCkssCW0iBQMKA30MCQtdHwNtjCILCV0EfZKbDY9CBAUimiMMaDIIgDshACH5BAkKAB8ALAAAAAAUABQAAAV44CeOo+OQKPmcYtOIZlo2T/t+DSvjrPs5t90vh6MRYbXh6Igc0mAuRzIV1UGtpJhsKhwVAGBA1xUdhMVCMrMr4pIQhx1QK0IQBITdKio6CAQFHwsIWUFHCoEiBgQKCQlDWCkEgY5QXQV5H5WQQgWJmx8PbjsMC0IhACH5BAkKAB8ALAAAAAAUABQAAAV14CeOo+OQKPmcYtO0bwo/cC3b7pffotOcrsevRPsMBKMh8eNrFAcBwEBxczlRUMLNdEvwUgWAGPC1/gZjMs9c/I7aqMRh62KJEoZB4bay3gkEcw4LJD5JMQtzIgsKfj52XVQ7OzcKVDoxQjEyCoSYb3A8XDchACH5BAEKAB8ALAAAAAAUABQAAAV64CeOo+OQKJkcY9OIZjoSAPu5Ii6LgJC/jtdONKjdGo/GCfYQEQYjAYHkaAaVosJgUFjsXDHS07ALpxTDFOK5TbvAh217+MamSU0Zg1FWLkUMCgloMg9XSwwJCV6GVEI3Sw5eMEg4QX9fJzo6X0I6SZgoYZwPeXdmKSEAOw==);background-image:url(/w/resources/src/jquery.spinner/images/spinner.gif?ca65b)!ie;height:20px;width:20px; min-width:20px}.mw-spinner-large{background-image:url(data:image/gif;base64,R0lGODlhIAAgAOMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBP///////////yH/C05FVFNDQVBFMi4wAwEAAAAh+QQFCgAPACwAAAAAIAAgAAAE5/DJSWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBk+EDskxTBDPZwuAkkqIfxIQyhBQBFvHwSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5g/qXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQFCgAPACwAAAAAGAAXAAAEcvDJSesiNetplqlDsYnUYlIGw2jGV55SoS5sq0wmLS3qoBWtAw42mG0ehxYp90CoGKRNy8U8qFzNweCGwlJkgolCq0VIEAbMkUIghxLrDcLti2/Gg7D9qN774wkKBIOEfw+ChIV/gYmDho+QkZKTR3p7EQAh+QQFCgAPACwBAAAAHQAOAAAEcvDJSScxNev9jjkZwU2IUhkodSzLKA2DOKGYRLD1CA/InEoGlkui2PlyuKGkADM9aI8EayGbJDYI4zM1YIEmAwajkCAoehNmTNNaLsQMHmGuuEYHgpHAAGfUBHNzeUp9VBQJCoFOLmFxWHNoQweRWEocEQAh+QQFCgAPACwHAAAAGQARAAAEavDJ+cQQNOtdRsnf9iRINpyZYYgEgU3nQKnr1hIJjEqHGmqIlkInexRUB5FE0So9YhKaUpK4SaAPlWaxIFAETQ3B4BxzF2Kn8nBeJKebdm3SgksKXDt8kNP7/xoMgoMLP36DiAyAD4kMhREAIfkEBQoADwAsDgAAABIAGAAABGUQFfSqvZiUghXF1cZZxTCA4WYh5omKVqugD/woLV2rT/u9KoJpFDIYaIJBwnIwGogoivOoq0wPs6r1qe16v5WFeEzVjc+LKnphIIC9g193wGC4uvX6Aoo05BllVQULeXdadAxuEQAh+QQFCgAPACwOAAAAEgAeAAAEgDCp9Kq9WBGFBb5ECBbFV4XERaYmahGk14qPQJbm4z53foq2AquiGAwQJsQQYTRyfIlCc4DzTY8+i8CZxQy74KxhTD58P+S0Qaw+hN8WyruwWMDrdcM5ecAv3CYDDDIEBngmBwwMaxeGJgmKDFVdggx2bwuKA28EkXAGinJhVCYRACH5BAUKAA8ALA8AAQARAB8AAAR88Mn5UKIYC0KyT5ziZQqHjBQSohRHXGzFCSkHU/eTlCa7uTSUi6DIeVSEU0yiXDo9g6i0EIRKr6hrlPrsOgkGQ8EZDh+eZcOosKAcymPKYLE4TwphCWMvoS86HnsME3RqgXwSBnQjghR+h4MTB4sZjRiAGAsMbU4FDHFLEQAh+QQFCgAPACwIAA4AGAASAAAEbPDJSesjOKtk+8yg4nkgto1oihIqKgyD2FpwjcxUUtRDMROG2wPBkz0EjEHHYKgoYMKHgcE4PBZYCbM5KlAZHOxCUmBaPQuq8pqVHJg+GnUsEVO2nTQjzqZPmB1UXHVtE3wVOxUGC4M4H34qEQAh+QQFCgAPACwCABIAHQAOAAAEePDJSat96FJ0tEUEkV0DwwwepYSEklDEYpopJbCEIBkzY+geweD1SKxCiJJpUZAgmBbCYNCcIFaJggk1OSwWKINYMh2MLMRJ7LsbPxTl2sTAbhsmhalC/vje7VZxNXQLBHNuEnlcKV8dh38TCmcehhUHBo58cpA1EQAh+QQFCgAPACwAAA8AGQARAAAEZ7AsRuu7OOtbO9tgJnlfaJ7omQwpuixFCxrvK2dHvRwoQmw1w+8i3PgIggzBpjEYLoPohUBNoJzPR5T1OCpOB2dMK70oqIhQwcmDlh8J6nCDzWwzAmrIqblnEFZqGgUDYzcaAgNJGxEAIfkEBQoADwAsAQAIABEAGAAABFyQMDaevfiOyVbJ4GNwjCGEWLGQaLZRbYZUcW3feK7vaGEYNsXh96sRgYiW73e4JAYn0O9zKQwGhAdhi5pdLdts6DpQgLkgBfkSHl+TZ7ELi2mDEHKLgmC+JRQJEQAh+QQFCgAPACwAAAIADgAdAAAEcvDJ+cqgeDJmMt4M4U3DtozTsl1oASJpRxnbkS6LIT4Cw0oHHO4A8xAMwhPqgSssH4nnknAwWK+Zq1ZGoW650vAOpRgMBCOEee2xrAtRTNlcQEsI8Yd6oKAICARFHgmAYx4KgIIZCIB9ZIB5RgR2KAmKEQA7);background-image:url(/w/resources/src/jquery.spinner/images/spinner-large.gif?57f34)!ie;height:32px;width:32px; min-width:32px}.mw-spinner-block{display:block; width:100%}.mw-spinner-inline{display:inline-block;vertical-align:middle}\n"
297 "@media print{#centralNotice{display:none}}.cn-closeButton{display:inline-block;zoom:1;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUBAMAAAB/pwA+AAAAElBMVEUAAAAQEBDPz88AAABAQEDv7+9oe1vvAAAABnRSTlMA3rLe3rJS22KzAAAARElEQVQI12PAAUIUQCSTK5BwFgIxFU1AhKECUFAYKAAioXwwBeZChMGCEGGQIFQYJohgIhQgtCEMQ7ECYTHCOciOxA4AADgJTXIb9s8AAAAASUVORK5CYII=) no-repeat;background:url(/w/extensions/CentralNotice/resources/subscribing/close.png?8e3d8) no-repeat!ie;width:20px;height:20px;text-indent:20px;white-space:nowrap;overflow:hidden}</style><style>\n"
298 ".suggestions a.mw-searchSuggest-link,.suggestions a.mw-searchSuggest-link:hover,.suggestions a.mw-searchSuggest-link:active,.suggestions a.mw-searchSuggest-link:focus{color:#000;text-decoration:none}.suggestions-result-current a.mw-searchSuggest-link,.suggestions-result-current a.mw-searchSuggest-link:hover,.suggestions-result-current a.mw-searchSuggest-link:active,.suggestions-result-current a.mw-searchSuggest-link:focus{color:#fff}.suggestions a.mw-searchSuggest-link .special-query{ overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n"
299 ".mw-mmv-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000;background-color:#000}body.mw-mmv-lightbox-open{overflow-y:auto; }body.mw-mmv-lightbox-open #mw-page-base,body.mw-mmv-lightbox-open #mw-head-base,body.mw-mmv-lightbox-open #mw-navigation,body.mw-mmv-lightbox-open #content,body.mw-mmv-lightbox-open #footer,body.mw-mmv-lightbox-open #globalWrapper{ display:none}body.mw-mmv-lightbox-open > *{ display:none}body.mw-mmv-lightbox-open > .mw-mmv-overlay,body.mw-mmv-lightbox-open > .mw-mmv-wrapper{display:block}.mw-mmv-filepage-buttons{margin-top:5px}.mw-mmv-filepage-buttons .mw-mmv-view-expanded,.mw-mmv-filepage-buttons .mw-mmv-view-config{display:block;line-height:inherit}.mw-mmv-filepage-buttons .mw-mmv-view-expanded.mw-ui-icon:before{background-image:url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1024 768%22%3E %3Cpath d=%22M851.2 71.6L690.7 232.1l-40.1-40.3-9.6 164.8 164.8-9.3-40.3-40.4L926 146.4l58.5 58.5L997.6 0 792.7 13.1%22/%3E %3Cpath d=%22M769.6 89.3H611.9l70.9 70.8 7.9 7.5m-47.1 234.6l-51.2 3 3-51.2 9.4-164.4 5.8-100.3H26.4V768h883.1V387l-100.9 5.8-165 9.4zM813.9 678H113.6l207.2-270.2 31.5-12.9L548 599.8l105.9-63.2 159.8 140.8.2.6zm95.6-291.9V228l-79.1 78.9 7.8 7.9%22/%3E %3C/svg%3E\")}.mw-mmv-filepage-buttons .mw-mmv-view-config.mw-ui-icon:before{background-image:url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1024 768%22%3E %3Cpath d=%22M897 454.6V313.4L810.4 299c-6.4-23.3-16-45.7-27.3-65.8l50.5-71.4-99.4-100.2-71.4 50.5c-20.9-11.2-42.5-20.9-65.8-27.3L582.6-1H441.4L427 85.6c-23.3 6.4-45.7 16-65.8 27.3l-71.4-50.5-100.3 99.5 50.5 71.4c-11.2 20.9-20.9 42.5-27.3 66.6L127 313.4v141.2l85.8 14.4c6.4 23.3 16 45.7 27.3 66.6L189.6 607l99.5 99.5 71.4-50.5c20.9 11.2 42.5 20.9 66.6 27.3l14.4 85.8h141.2l14.4-86.6c23.3-6.4 45.7-16 65.8-27.3l71.4 50.5 99.5-99.5-50.5-71.4c11.2-20.9 20.9-42.5 27.3-66.6l86.4-13.6zm-385 77c-81.8 0-147.6-66.6-147.6-147.6 0-81.8 66.6-147.6 147.6-147.6S659.6 302.2 659.6 384 593.8 531.6 512 531.6z%22/%3E %3C/svg%3E\");opacity:0.75}.mw-mmv-filepage-buttons .mw-mmv-view-config.mw-ui-icon:before:hover{opacity:1}.mw-mmv-button{background-color:transparent;min-width:0;border:0;padding:0;overflow-x:hidden;text-indent:-9999em}\n"
300 ".ve-init-mw-tempWikitextEditorWidget{border:0;padding:0;color:inherit;line-height:1.5em; }.ve-init-mw-tempWikitextEditorWidget:focus{outline:0;padding:0}.ve-init-mw-tempWikitextEditorWidget::selection{background:rgba(109,169,247,0.5); }\n"
301 "#uls-settings-block{background-color:#f8f9fa;border-top:1px solid #c8ccd1;padding-left:10px;line-height:1.2em;border-radius:0 0 2px 2px}#uls-settings-block > button{background:left top transparent no-repeat;background-size:20px auto;color:#54595d;display:inline-block;margin:8px 15px;border:0;padding:0 0 0 26px;font-size:medium;cursor:pointer}#uls-settings-block > button:hover{color:#222}#uls-settings-block > button.display-settings-block{background-image:url(/w/extensions/UniversalLanguageSelector/resources/images/display.png?d25f1);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E %3Cpath fill=%22%23222%22 d=%22M.002 2.275V15.22h8.405c.535 1.624-.975 1.786-1.902 2.505 0 0 2.293-.024 3.439-.024 1.144 0 3.432.024 3.432.024-.905-.688-2.355-.868-1.902-2.505h8.527V2.275h-20zm6.81 1.84h.797l3.313 8.466H9.879L8.836 9.943H5.462l-1.043 2.638h-.982zm.368 1.104c-.084.369-.211.785-.368 1.227L5.83 9.023h2.699l-.982-2.577c-.128-.33-.234-.747-.368-1.227zm7.117.982c.753 0 1.295.157 1.656.491.365.334.552.858.552 1.595v4.294h-.675l-.184-.859h-.062c-.315.396-.605.655-.92.798-.311.138-.758.184-1.227.184-.626 0-1.115-.168-1.472-.491-.353-.323-.491-.754-.491-1.35 0-1.275 1.028-1.963 3.068-2.025h1.043v-.429c0-.495-.091-.87-.307-1.104-.211-.238-.574-.307-1.043-.307-.526 0-1.115.107-1.779.429l-.307-.675a4.748 4.748 0 0 1 1.043-.429 4.334 4.334 0 0 1 1.104-.123zm.307 3.313c-.761.027-1.318.157-1.656.368-.334.207-.491.54-.491.982 0 .346.1.617.307.798.211.181.544.245.92.245.595 0 1.012-.164 1.35-.491.342-.326.552-.762.552-1.35v-.552z%22/%3E %3C/svg%3E\")}#uls-settings-block > button.input-settings-block{background-image:url(/w/extensions/UniversalLanguageSelector/resources/images/input.png?aea9e);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E %3Cpath fill=%22%23222%22 d=%22M9 1.281c-.124.259-.185.599-.5.688-.55.081-1.133.018-1.688 0-.866-.032-1.733-.148-2.594 0-.588.157-.953.727-1.188 1.25-.178.416-.271.836-.344 1.281H-.002V16h20V4.5H3.654c.109-.52.203-1.057.563-1.469.222-.231.587-.17.875-.188 1.212.003 2.415.179 3.625.063.463-.058.812-.455.969-.875l.188-.438-.875-.313zM1.875 7.125h1.563c.094 0 .188.093.188.188v1.531a.201.201 0 0 1-.188.188H1.875c-.094 0-.156-.093-.156-.188V7.313c0-.094.062-.188.156-.188zm2.844 0h1.563c.094 0 .156.093.156.188v1.531c0 .094-.062.188-.156.188H4.719c-.094 0-.156-.093-.156-.188V7.313c0-.094.062-.188.156-.188zm2.844 0h1.563c.094 0 .156.093.156.188v1.531c0 .094-.062.188-.156.188H7.563a.201.201 0 0 1-.188-.188V7.313c0-.094.093-.188.188-.188zm2.813 0h1.563c.094 0 .188.093.188.188v1.531a.201.201 0 0 1-.188.188h-1.563c-.094 0-.156-.093-.156-.188V7.313c0-.094.062-.188.156-.188zm2.844 0h1.563c.094 0 .156.093.156.188v1.531c0 .094-.062.188-.156.188H13.22c-.094 0-.156-.093-.156-.188V7.313c0-.094.062-.188.156-.188zm2.844 0h1.531c.094 0 .188.093.188.188v1.531a.201.201 0 0 1-.188.188h-1.531a.201.201 0 0 1-.188-.188V7.313c0-.094.093-.188.188-.188zm-12.844 3h1.563c.094 0 .156.093.156.188v1.563c0 .094-.062.156-.156.156H3.22c-.094 0-.156-.062-.156-.156v-1.563c0-.094.062-.188.156-.188zm2.906 0h1.563c.094 0 .188.093.188.188v1.563c0 .094-.093.156-.188.156H6.126c-.094 0-.156-.062-.156-.156v-1.563c0-.094.062-.188.156-.188zm2.938 0h1.531c.094 0 .188.093.188.188v1.563c0 .094-.093.156-.188.156H9.064c-.094 0-.188-.062-.188-.156v-1.563c0-.094.093-.188.188-.188zm2.906 0h1.563c.094 0 .156.093.156.188v1.563c0 .094-.062.156-.156.156H11.97c-.094 0-.188-.062-.188-.156v-1.563c0-.094.093-.188.188-.188zm2.906 0h1.563c.094 0 .156.093.156.188v1.563c0 .094-.062.156-.156.156h-1.563c-.094 0-.156-.062-.156-.156v-1.563c0-.094.062-.188.156-.188zM4.001 13.688h12c.088 0 .156.068.156.156v.844a.154.154 0 0 1-.156.156h-12a.154.154 0 0 1-.156-.156v-.844c0-.088.068-.156.156-.156z%22/%3E %3C/svg%3E\")}\n"
302 ".mw-3d-wrapper{display:inline-block;position:relative;overflow:hidden;vertical-align:top}.mw-3d-badge{position:absolute;top:11px;left:11px;color:#1e1f21;font-size:14px;line-height:19px;font-weight:bold;opacity:0.8;padding:2px 5px;background-color:#f8f9fa;border-radius:2px}.mw-3d-thumb-placeholder{display:inline-block;text-decoration:none;color:#222}</style><style>\n"
303 ".ve-activated .ve-init-mw-desktopArticleTarget-editableContent #toc,.ve-activated #siteNotice,.ve-activated .mw-indicators,.ve-activated #t-print,.ve-activated #t-permalink,.ve-activated #p-coll-print_export,.ve-activated #t-cite,.ve-deactivating .ve-ui-surface,.ve-active .ve-init-mw-desktopArticleTarget-editableContent,.ve-active .ve-init-mw-tempWikitextEditorWidget{display:none} .ve-activating .ve-ui-surface{height:0;padding:0 !important; overflow:hidden} .ve-loading #content > :not(.ve-init-mw-desktopArticleTarget-loading-overlay), .ve-activated .ve-init-mw-desktopArticleTarget-uneditableContent{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:0.5}.ve-activated #catlinks{cursor:pointer}.ve-activated #catlinks a{opacity:1} .ve-activated #content{position:relative} .ve-init-mw-desktopArticleTarget-loading-overlay{position:absolute;top:1.25em;left:0;right:0;z-index:1;margin-top:-0.5em}.ve-init-mw-desktopArticleTarget-progress{height:1em;overflow:hidden;margin:0 25%}.ve-init-mw-desktopArticleTarget-progress-bar{height:1em;width:0}.ve-init-mw-desktopArticleTarget-toolbarPlaceholder{transition:height 250ms ease;height:0; } .oo-ui-element-hidden{display:none !important; } .mw-editsection{white-space:nowrap; unicode-bidi:-moz-isolate;unicode-bidi:-webkit-isolate;unicode-bidi:isolate}.mw-editsection-divider{color:#54595d} .ve-init-mw-desktopArticleTarget-progress{height:0.75em;border:1px solid #36c;background:#fff;border-radius:2px;box-shadow:0 0.1em 0 0 rgba(0,0,0,0.15)}.ve-init-mw-desktopArticleTarget-progress-bar{height:0.75em;background:#36c}.ve-init-mw-desktopArticleTarget-toolbarPlaceholder{border-bottom:1px solid #c8ccd1;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}.ve-init-mw-desktopArticleTarget-toolbarPlaceholder-open{height:40px} .skin-vector .ve-init-mw-desktopArticleTarget-toolbar,.skin-vector .ve-init-mw-desktopArticleTarget-toolbarPlaceholder{font-size:0.875em; margin:-1.14em -1.14em 1.14em -1.14em; }@media screen and (min-width:982px){.skin-vector .ve-init-mw-desktopArticleTarget-toolbar,.skin-vector .ve-init-mw-desktopArticleTarget-toolbarPlaceholder{ margin:-1.43em -1.71em 1.43em -1.71em}}</style><style>\n"
304 ".mw-ui-icon-popups-settings:before{background-image:url(/w/load.php?modules=ext.popups.images&image=popups-settings&format=rasterized&lang=en&skin=vector&version=0ojwxaj);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg width=%2220px%22 height=%2220px%22 viewbox=%220 0 20 20%22 xmlns=%22http://www.w3.org/2000/svg%22%3E %3Cg fill=%22%2354595D%22%3E %3Cpath d=%22M10.112 4.554a5.334 5.334 0 1 0 0 10.668 5.334 5.334 0 0 0 0-10.668zm0 7.823a2.49 2.49 0 1 1 0-4.978 2.49 2.49 0 0 1 0 4.978z%22/%3E %3Cpath d=%22M11.4 5.303L11.05 3h-2.1L8.6 5.303a4.9 4.9 0 0 1 2.8 0zm-2.8 9.394L8.95 17h2.1l.35-2.303a4.9 4.9 0 0 1-2.8 0zm5.712-7.028l1.4-1.876L14.2 4.309l-1.876 1.4a4.9 4.9 0 0 1 1.981 1.981l.007-.021zm-8.624 4.662L4.309 14.2 5.8 15.691l1.876-1.4a4.9 4.9 0 0 1-1.981-1.981l-.007.021zm9.009-.931L17 11.05v-2.1l-2.303-.35a4.9 4.9 0 0 1 0 2.8zM5.303 8.6L3 8.95v2.1l2.303.35a4.9 4.9 0 0 1 0-2.8zm7.028 5.712l1.876 1.4 1.484-1.512-1.4-1.876a4.9 4.9 0 0 1-1.981 1.981l.021.007zM7.669 5.688L5.8 4.309 4.309 5.8l1.4 1.876a4.9 4.9 0 0 1 1.96-1.988z%22/%3E %3C/g%3E %3C/svg%3E\")}.mw-ui-icon-popups-close:before{background-image:url(/w/load.php?modules=ext.popups.images&image=popups-close&format=rasterized&lang=en&skin=vector&version=0ojwxaj);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E %3Cpath d=%22M3.636 2.222l14.142 14.142-1.414 1.414L2.222 3.636z%22/%3E %3Cpath d=%22M17.778 3.636L3.636 17.778l-1.414-1.414L16.364 2.222z%22/%3E %3C/svg%3E\")}.mw-ui-icon-preview-generic:before{background-image:url(/w/load.php?modules=ext.popups.images&image=preview-generic&format=rasterized&lang=en&skin=vector&version=0ojwxaj);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg width=%2237%22 height=%2227%22 xmlns=%22http://www.w3.org/2000/svg%22%3E %3Cg id=%22Page-1%22 fill=%22none%22 fill-rule=%22evenodd%22%3E %3Cg id=%22sad-face%22 fill=%22%23C8CCD1%22%3E %3Cpath d=%22M5.475.7v20.075L0 26.25h31.025c3.102 0 5.475-2.372 5.475-5.475V.7H5.475zm20.44 4.562c1.277 0 2.19 1.095 2.19 2.19 0 1.096-.913 2.373-2.19 2.373-1.278 0-2.19-1.095-2.19-2.19s1.095-2.373 2.19-2.373zm-9.855 0c1.277 0 2.19 1.095 2.19 2.19 0 1.096-1.095 2.373-2.19 2.373s-2.19-1.095-2.19-2.19.913-2.373 2.19-2.373zm4.928 8.213c-7.153 0-8.415 7.012-8.415 7.012s2.805-1.403 8.415-1.403c5.61 0 8.414 1.403 8.414 1.403S28 13.475 20.988 13.475z%22 id=%22Shape%22/%3E %3C/g%3E %3C/g%3E %3C/svg%3E\")}.mw-ui-icon-footer:before{background-image:url(/w/load.php?modules=ext.popups.images&image=footer&format=rasterized&lang=en&skin=vector&version=0ojwxaj);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22230%22 height=%22179%22 xmlns:xlink=%22http://www.w3.org/1999/xlink%22 viewBox=%220 0 230 179%22%3E %3Cdefs%3E %3Crect id=%22a%22 width=%22201%22 height=%2213%22 rx=%222%22/%3E %3Crect id=%22b%22 width=%22201%22 height=%22169%22 y=%2210%22 rx=%222%22/%3E %3Crect id=%22c%22 width=%2230%22 height=%222%22 x=%22135%22 y=%22158%22 rx=%221%22/%3E %3C/defs%3E %3Cg fill=%22none%22 fill-rule=%22evenodd%22%3E %3Cg transform=%22matrix%281 0 0 -1 0 13%29%22%3E %3Cuse fill=%22%23f8f9fa%22 xlink:href=%22%23a%22/%3E %3Crect width=%22199%22 height=%2211%22 x=%221%22 y=%221%22 stroke=%22%23a2a9b1%22 stroke-width=%222%22 rx=%222%22/%3E %3C/g%3E %3Cuse fill=%22%23fff%22 xlink:href=%22%23b%22/%3E %3Crect width=%22199%22 height=%22167%22 x=%221%22 y=%2211%22 stroke=%22%23a2a9b1%22 stroke-width=%222%22 rx=%222%22/%3E %3Cg opacity=%22.4%22 transform=%22translate%2867 35%29%22%3E %3Crect width=%2273%22 height=%222%22 y=%227%22 fill=%22%23c8ccd1%22 rx=%221%22/%3E %3Crect width=%2281%22 height=%222%22 y=%2231%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2232%22 height=%222%22 y=%2285%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2273%22 height=%222%22 x=%2235%22 y=%2285%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2217%22 height=%222%22 y=%2245%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2217%22 height=%222%22 x=%2291%22 y=%2245%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2268%22 height=%222%22 x=%2220%22 y=%2245%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2217%22 height=%222%22 y=%2278%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2237%22 height=%222%22 x=%2272%22 y=%2278%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2249%22 height=%222%22 x=%2220%22 y=%2278%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2224%22 height=%222%22 x=%2284%22 y=%2231%22 fill=%22%2372777d%22 rx=%221%22 transform=%22matrix%28-1 0 0 1 192 0%29%22/%3E %3Crect width=%2281%22 height=%222%22 y=%2266%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2214%22 height=%222%22 x=%2254%22 y=%2224%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2237%22 height=%222%22 x=%2271%22 y=%2224%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2251%22 height=%222%22 y=%2224%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%22108%22 height=%222%22 y=%2259%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%22108%22 height=%222%22 y=%2252%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%22108%22 height=%222%22 y=%2292%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%22108%22 height=%222%22 y=%2238%22 fill=%22%2372777d%22 rx=%221%22/%3E %3Crect width=%2251%22 height=%222%22 fill=%22%2372777d%22 rx=%221%22/%3E %3C/g%3E %3Crect width=%2230%22 height=%222%22 x=%2267%22 y=%22158%22 fill=%22%2372777d%22 opacity=%22.4%22 rx=%221%22/%3E %3Crect width=%2230%22 height=%222%22 x=%2299%22 y=%22158%22 fill=%22%2372777d%22 opacity=%22.4%22 rx=%221%22/%3E %3Cuse fill=%22%2336c%22 xlink:href=%22%23c%22/%3E %3Crect width=%2233%22 height=%225%22 x=%22133.5%22 y=%22156.5%22 stroke=%22%23ffc057%22 stroke-opacity=%22.447%22 stroke-width=%223%22 rx=%222.5%22/%3E %3Ccircle cx=%2234%22 cy=%2249%22 r=%2219%22 fill=%22%23eaecf0%22/%3E %3Cg fill=%22%23a2a9b1%22 transform=%22translate%285 5%29%22%3E %3Ccircle cx=%221.5%22 cy=%221.5%22 r=%221.5%22/%3E %3Ccircle cx=%226%22 cy=%221.5%22 r=%221.5%22/%3E %3Ccircle cx=%2210.5%22 cy=%221.5%22 r=%221.5%22/%3E %3C/g%3E %3Cpath stroke=%22%23ff00af%22 d=%22M174.5 159.5h54.01%22 stroke-linecap=%22square%22/%3E %3C/g%3E %3C/svg%3E\")}.mw-ui-icon-preview-disambiguation:before{background-image:url(/w/load.php?modules=ext.popups.images&image=preview-disambiguation&format=rasterized&lang=en&skin=vector&version=0ojwxaj);background-image:linear-gradient(transparent,transparent),url(\"data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%222 2 20 20%22%3E %3Cpath fill=%22%23C8CCD1%22 d=%22M11 12h4V7h-4v5zm-5 2h9v-1H6v1zm0 2h9v-1H6v1zm0 2h9v-1H6v1zm4-9H6v1h4V9zm0 2H6v1h4v-1zm0-4H6v1h4V7zM4 5h13v16H7c-1.7 0-3-1.3-3-3V5z%22/%3E %3Cpath fill-rule=%22evenodd%22 fill=%22%23C8CCD1%22 d=%22M18 4v14h2V2H7v2%22/%3E %3C/svg%3E\")}</style><style>\n"
305 "@-webkit-keyframes mwe-popups-fade-in-up{0%{opacity:0;-webkit-transform:translate(0,20px);-moz-transform:translate(0,20px);-ms-transform:translate(0,20px);transform:translate(0,20px)}100%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}}@-moz-keyframes mwe-popups-fade-in-up{0%{opacity:0;-webkit-transform:translate(0,20px);-moz-transform:translate(0,20px);-ms-transform:translate(0,20px);transform:translate(0,20px)}100%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}}@keyframes mwe-popups-fade-in-up{0%{opacity:0;-webkit-transform:translate(0,20px);-moz-transform:translate(0,20px);-ms-transform:translate(0,20px);transform:translate(0,20px)}100%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes mwe-popups-fade-in-down{0%{opacity:0;-webkit-transform:translate(0,-20px);-moz-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}100%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}}@-moz-keyframes mwe-popups-fade-in-down{0%{opacity:0;-webkit-transform:translate(0,-20px);-moz-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}100%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}}@keyframes mwe-popups-fade-in-down{0%{opacity:0;-webkit-transform:translate(0,-20px);-moz-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}100%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}}@-webkit-keyframes mwe-popups-fade-out-down{0%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}100%{opacity:0;-webkit-transform:translate(0,20px);-moz-transform:translate(0,20px);-ms-transform:translate(0,20px);transform:translate(0,20px)}}@-moz-keyframes mwe-popups-fade-out-down{0%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}100%{opacity:0;-webkit-transform:translate(0,20px);-moz-transform:translate(0,20px);-ms-transform:translate(0,20px);transform:translate(0,20px)}}@keyframes mwe-popups-fade-out-down{0%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}100%{opacity:0;-webkit-transform:translate(0,20px);-moz-transform:translate(0,20px);-ms-transform:translate(0,20px);transform:translate(0,20px)}}@-webkit-keyframes mwe-popups-fade-out-up{0%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}100%{opacity:0;-webkit-transform:translate(0,-20px);-moz-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}}@-moz-keyframes mwe-popups-fade-out-up{0%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}100%{opacity:0;-webkit-transform:translate(0,-20px);-moz-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}}@keyframes mwe-popups-fade-out-up{0%{opacity:1;-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}100%{opacity:0;-webkit-transform:translate(0,-20px);-moz-transform:translate(0,-20px);-ms-transform:translate(0,-20px);transform:translate(0,-20px)}}.mwe-popups-fade-in-up{-webkit-animation:mwe-popups-fade-in-up 0.2s ease forwards;-moz-animation:mwe-popups-fade-in-up 0.2s ease forwards;animation:mwe-popups-fade-in-up 0.2s ease forwards}.mwe-popups-fade-in-down{-webkit-animation:mwe-popups-fade-in-down 0.2s ease forwards;-moz-animation:mwe-popups-fade-in-down 0.2s ease forwards;animation:mwe-popups-fade-in-down 0.2s ease forwards}.mwe-popups-fade-out-down{-webkit-animation:mwe-popups-fade-out-down 0.2s ease forwards;-moz-animation:mwe-popups-fade-out-down 0.2s ease forwards;animation:mwe-popups-fade-out-down 0.2s ease forwards}.mwe-popups-fade-out-up{-webkit-animation:mwe-popups-fade-out-up 0.2s ease forwards;-moz-animation:mwe-popups-fade-out-up 0.2s ease forwards;animation:mwe-popups-fade-out-up 0.2s ease forwards} #mwe-popups-settings{z-index:1000;background:#fff;width:420px;border:1px solid #a2a9b1;box-shadow:0 2px 2px 0 rgba(0,0,0,0.25);border-radius:2px;font-size:14px}#mwe-popups-settings header{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-bottom:1px solid #c8ccd1;position:relative;display:table;width:100%;padding:5px 7px 5px 0}#mwe-popups-settings header > div{display:table-cell;width:3.5em;vertical-align:middle;cursor:pointer}#mwe-popups-settings header h1{margin-bottom:0.6em;padding-top:0.5em;border:0;width:100%;font-family:sans-serif;font-size:18px;font-weight:bold;text-align:center}#mwe-popups-settings .mwe-ui-icon-popups-close{opacity:0.87;-webkit-transition:opacity 100ms;-moz-transition:opacity 100ms;transition:opacity 100ms}#mwe-popups-settings .mwe-ui-icon-popups-close:hover{opacity:0.73}#mwe-popups-settings .mwe-ui-icon-popups-close:active{opacity:1}#mwe-popups-settings main{display:block;width:350px;padding:32px 0 24px;margin:0 auto}#mwe-popups-settings main p{color:#54595d;font-size:17px;margin:16px 0 0}#mwe-popups-settings main p:first-child{margin-top:0}#mwe-popups-settings main form img,#mwe-popups-settings main form input,#mwe-popups-settings main form label{vertical-align:top}#mwe-popups-settings main form img{margin-right:60px}#mwe-popups-settings main form input{display:inline-block;margin:0 10px 0 0;padding:0}#mwe-popups-settings main form label{font-size:13px;display:inline-block;line-height:16px;width:300px}#mwe-popups-settings main form label > span{color:#000;font-size:18px;font-weight:bold;display:block;margin-bottom:5px;line-height:18px}.mwe-popups-settings-help{font-size:13px;font-weight:800;margin:40px;position:relative}.mwe-popups-settings-help .mw-ui-icon:before,.mwe-popups-settings-help .mw-ui-icon{height:140px;width:180px;max-width:none;margin:0}.mwe-popups-settings-help p{left:180px;bottom:20px;position:absolute}.mwe-popups{cursor:pointer;background:#fff;position:absolute;z-index:110;-webkit-box-shadow:0 30px 90px -20px rgba(0,0,0,0.3),0 0 1px #a2a9b1;box-shadow:0 30px 90px -20px rgba(0,0,0,0.3),0 0 1px #a2a9b1;padding:0;display:none;font-size:14px;line-height:20px;min-width:300px;border-radius:2px; }.mwe-popups .mw-ui-icon{font-size:16px}.mwe-popups .mw-ui-icon-preview-disambiguation,.mwe-popups .mw-ui-icon-preview-generic{margin:21px 0 8px 0}.mwe-popups .mwe-popups-container{color:#222222;margin-top:-9px;padding-top:9px;text-decoration:none}.mwe-popups .mwe-popups-container footer{padding:16px;margin:0;font-size:10px;position:absolute;bottom:0;left:0}.mwe-popups .mwe-popups-extract{margin:16px;display:block;color:#222222;text-decoration:none;position:relative; }.mwe-popups .mwe-popups-extract:hover{text-decoration:none}.mwe-popups .mwe-popups-extract:after{content:' ';position:absolute;bottom:0;width:25%;height:20px;background-color:transparent}.mwe-popups .mwe-popups-extract[dir='ltr']:after{ right:0; background-image:-webkit-linear-gradient(to right,rgba(255,255,255,0),#ffffff 50%); background-image:-moz-linear-gradient(to right,rgba(255,255,255,0),#ffffff 50%); background-image:-o-linear-gradient(to right,rgba(255,255,255,0),#ffffff 50%); background-image:linear-gradient(to right,rgba(255,255,255,0),#ffffff 50%)}.mwe-popups .mwe-popups-extract[dir='rtl']:after{ left:0; background-image:-webkit-linear-gradient(to left,rgba(255,255,255,0),#ffffff 50%); background-image:-moz-linear-gradient(to left,rgba(255,255,255,0),#ffffff 50%); background-image:-o-linear-gradient(to left,rgba(255,255,255,0),#ffffff 50%); background-image:linear-gradient(to left,rgba(255,255,255,0),#ffffff 50%)}.mwe-popups .mwe-popups-extract p{margin:0}.mwe-popups .mwe-popups-extract ul,.mwe-popups .mwe-popups-extract ol,.mwe-popups .mwe-popups-extract li,.mwe-popups .mwe-popups-extract dl,.mwe-popups .mwe-popups-extract dd,.mwe-popups .mwe-popups-extract dt{margin-top:0;margin-bottom:0}.mwe-popups svg{overflow:hidden}.mwe-popups.mwe-popups-is-tall{width:450px}.mwe-popups.mwe-popups-is-tall > div > a > svg{vertical-align:middle}.mwe-popups.mwe-popups-is-tall .mwe-popups-extract{width:215px;height:180px;overflow:hidden;float:left}.mwe-popups.mwe-popups-is-tall footer{width:215px;left:0}.mwe-popups.mwe-popups-is-not-tall{width:320px}.mwe-popups.mwe-popups-is-not-tall .mwe-popups-extract{min-height:40px;max-height:140px;overflow:hidden;margin-bottom:47px;padding-bottom:0}.mwe-popups.mwe-popups-is-not-tall footer{width:290px}.mwe-popups.mwe-popups-type-generic .mwe-popups-extract,.mwe-popups.mwe-popups-type-disambiguation .mwe-popups-extract{min-height:auto;padding-top:4px;margin-bottom:60px;margin-top:0}.mwe-popups.mwe-popups-type-generic .mwe-popups-read-link,.mwe-popups.mwe-popups-type-disambiguation .mwe-popups-read-link{font-weight:bold;font-size:12px}.mwe-popups.mwe-popups-type-generic .mwe-popups-extract:hover + footer .mwe-popups-read-link,.mwe-popups.mwe-popups-type-disambiguation .mwe-popups-extract:hover + footer .mwe-popups-read-link{text-decoration:underline}.mwe-popups.mwe-popups-no-image-pointer:before{content:'';position:absolute;border:8px solid transparent;border-top:0;border-bottom:8px solid #a2a9b1;top:-8px;left:10px}.mwe-popups.mwe-popups-no-image-pointer:after{content:'';position:absolute;border:11px solid transparent;border-top:0;border-bottom:11px solid #ffffff;top:-7px;left:7px}.mwe-popups.flipped-x.mwe-popups-no-image-pointer:before{left:auto;right:10px}.mwe-popups.flipped-x.mwe-popups-no-image-pointer:after{left:auto;right:7px}.mwe-popups.mwe-popups-image-pointer:before{content:'';position:absolute;border:9px solid transparent;border-top:0;border-bottom:9px solid #a2a9b1;top:-9px;left:9px;z-index:111}.mwe-popups.mwe-popups-image-pointer:after{content:'';position:absolute;border:12px solid transparent;border-top:0;border-bottom:12px solid #ffffff;top:-8px;left:6px;z-index:112}.mwe-popups.mwe-popups-image-pointer.flipped-x:before{content:'';position:absolute;border:9px solid transparent;border-top:0;border-bottom:9px solid #a2a9b1;top:-9px;left:273px}.mwe-popups.mwe-popups-image-pointer.flipped-x:after{content:'';position:absolute;border:12px solid transparent;border-top:0;border-bottom:12px solid #ffffff;top:-8px;left:269px}.mwe-popups.mwe-popups-image-pointer .mwe-popups-extract{padding-top:16px;margin-top:200px}.mwe-popups.mwe-popups-image-pointer > div > a > svg{margin-top:-8px;position:absolute;z-index:113;left:0}.mwe-popups.flipped-x.mwe-popups-is-tall{min-height:242px}.mwe-popups.flipped-x.mwe-popups-is-tall:before{content:'';position:absolute;border:9px solid transparent;border-top:0;border-bottom:9px solid #a2a9b1;top:-9px;left:420px;z-index:111}.mwe-popups.flipped-x.mwe-popups-is-tall > div > a > svg{margin:0;margin-top:-8px;margin-bottom:-7px;position:absolute;z-index:113;right:0}.mwe-popups.flipped-x-y:before{content:'';position:absolute;border:9px solid transparent;border-bottom:0;border-top:9px solid #a2a9b1;bottom:-9px;left:272px;z-index:111}.mwe-popups.flipped-x-y:after{content:'';position:absolute;border:12px solid transparent;border-bottom:0;border-top:12px solid #ffffff;bottom:-8px;left:269px;z-index:112}.mwe-popups.flipped-x-y.mwe-popups-is-tall{min-height:242px}.mwe-popups.flipped-x-y.mwe-popups-is-tall:before{content:'';position:absolute;border:9px solid transparent;border-bottom:0;border-top:9px solid #a2a9b1;bottom:-9px;left:420px}.mwe-popups.flipped-x-y.mwe-popups-is-tall:after{content:'';position:absolute;border:12px solid transparent;border-bottom:0;border-top:12px solid #ffffff;bottom:-8px;left:417px}.mwe-popups.flipped-x-y.mwe-popups-is-tall > div > a > svg{margin:0;margin-bottom:-9px;position:absolute;z-index:113;right:0}.mwe-popups.flipped-y:before{content:'';position:absolute;border:8px solid transparent;border-bottom:0;border-top:8px solid #a2a9b1;bottom:-8px;left:10px}.mwe-popups.flipped-y:after{content:'';position:absolute;border:11px solid transparent;border-bottom:0;border-top:11px solid #ffffff;bottom:-7px;left:7px}.mwe-popups-is-tall polyline{-webkit-transform:translate(0,0);-moz-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.mwe-popups-is-tall.flipped-x-y polyline{-webkit-transform:translate(0,-8px);-moz-transform:translate(0,-8px);-ms-transform:translate(0,-8px);transform:translate(0,-8px)}.mwe-popups-is-tall.flipped-x polyline{-webkit-transform:translate(0,8px);-moz-transform:translate(0,8px);-ms-transform:translate(0,8px);transform:translate(0,8px)}.rtl .mwe-popups-is-tall polyline{-webkit-transform:translate(-100%,0);-moz-transform:translate(-100%,0);-ms-transform:translate(-100%,0);transform:translate(-100%,0)}.rtl .mwe-popups-is-tall.flipped-x-y polyline{-webkit-transform:translate(-100%,-8px);-moz-transform:translate(-100%,-8px);-ms-transform:translate(-100%,-8px);transform:translate(-100%,-8px)}.rtl .mwe-popups-is-tall.flipped-x polyline{-webkit-transform:translate(-100%,8px);-moz-transform:translate(-100%,8px);-ms-transform:translate(-100%,8px);transform:translate(-100%,8px)}.mwe-popups-settings-icon{display:block;overflow:hidden;font-size:16px;width:1.5em;height:1.5em;padding:3px;float:right;margin:4px 4px 2px 4px;text-indent:-1em;border-radius:2px}.mwe-popups-settings-icon:hover{background-color:#eaecf0}.mwe-popups-settings-icon:active{background-color:#c8ccd1}.mwe-popups .mwe-popups-title{display:block;font-weight:bold;margin:0 16px}.mwe-popups-overlay{background-color:rgba(255,255,255,0.9);z-index:999;position:fixed;height:100%;width:100%;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center}#mwe-popups-svg{position:absolute;top:-1000px}</style><meta name=\"ResourceLoaderDynamicStyles\" content=\"\">\n"
306 "<link rel=\"stylesheet\" href=\"/w/load.php?debug=false&lang=en&modules=ext.gadget.charinsert-styles&only=styles&skin=vector\">\n"
307 "<link rel=\"stylesheet\" href=\"/w/load.php?debug=false&lang=en&modules=site.styles&only=styles&skin=vector\">\n"
308 "<meta name=\"generator\" content=\"MediaWiki 1.32.0-wmf.15\">\n"
309 "<meta name=\"referrer\" content=\"origin\">\n"
310 "<meta name=\"referrer\" content=\"origin-when-crossorigin\">\n"
311 "<meta name=\"referrer\" content=\"origin-when-cross-origin\">\n"
312 "<meta property=\"og:image\" content=\"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg/1200px-A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg\">\n"
313 "<link rel=\"alternate\" href=\"android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/Main_Page\">\n"
314 "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"Wikipedia picture of the day feed\" href=\"/w/api.php?action=featuredfeed&feed=potd&feedformat=atom\">\n"
315 "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"Wikipedia featured articles feed\" href=\"/w/api.php?action=featuredfeed&feed=featured&feedformat=atom\">\n"
316 "<link rel=\"alternate\" type=\"application/atom+xml\" title=\"Wikipedia "On this day..." feed\" href=\"/w/api.php?action=featuredfeed&feed=onthisday&feedformat=atom\">\n"
317 "<link rel=\"apple-touch-icon\" href=\"/static/apple-touch/wikipedia.png\">\n"
318 "<link rel=\"shortcut icon\" href=\"/static/favicon/wikipedia.ico\">\n"
319 "<link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"/w/opensearch_desc.php\" title=\"Wikipedia (en)\">\n"
320 "<link rel=\"EditURI\" type=\"application/rsd+xml\" href=\"//en.wikipedia.org/w/api.php?action=rsd\">\n"
321 "<link rel=\"license\" href=\"//creativecommons.org/licenses/by-sa/3.0/\">\n"
322 "<link rel=\"canonical\" href=\"https://en.wikipedia.org/wiki/Main_Page\">\n"
323 "<link rel=\"dns-prefetch\" href=\"//login.wikimedia.org\">\n"
324 "<link rel=\"dns-prefetch\" href=\"//meta.wikimedia.org\">\n"
325 "<!--[if lt IE 9]><script src=\"/w/load.php?debug=false&lang=en&modules=html5shiv&only=scripts&skin=vector&sync=1\"></script><![endif]-->\n"
326 "<script src=\"/w/load.php?debug=false&lang=en&modules=jquery%7Cmediawiki.base%7Cmediawiki.legacy.wikibits&only=scripts&skin=vector&version=19lyfvl\"></script></head>\n"
327 "<body class=\"mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Main_Page rootpage-Main_Page skin-vector action-view\">\t\t<div id=\"mw-page-base\" class=\"noprint\"></div>\n"
328 "\t\t<div id=\"mw-head-base\" class=\"noprint\"></div>\n"
329 "\t\t<div id=\"content\" class=\"mw-body\" role=\"main\">\n"
330 "\t\t\t<a id=\"top\"></a>\n"
331 "\t\t\t<div id=\"siteNotice\" class=\"mw-body-content\"><div id=\"centralNotice\" class=\"cn-RSC2018_en\"><div class=\"transparant\">\n"
332 "<center><big><img alt=\"ESPC 2015\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Logo_for_e-Science_Photo_Competition_v2_without_text.svg/100px-Logo_for_e-Science_Photo_Competition_v2_without_text.svg.png\" title=\"ESPC 2015\" width=\"100\" height=\"23\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Logo_for_e-Science_Photo_Competition_v2_without_text.svg/150px-Logo_for_e-Science_Photo_Competition_v2_without_text.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1f/Logo_for_e-Science_Photo_Competition_v2_without_text.svg/200px-Logo_for_e-Science_Photo_Competition_v2_without_text.svg.png 2x\" data-file-width=\"668\" data-file-height=\"154\"> Take part in «<b><a class=\"external text\" href=\"https://ru.wikimedia.org/wiki/%D0%9A%D0%BE%D0%BD%D0%BA%D1%83%D1%80%D1%81%D1%8B/%D0%9A%D0%BE%D0%BD%D0%BA%D1%83%D1%80%D1%81_%D0%BD%D0%B0%D1%83%D1%87%D0%BD%D1%8B%D1%85_%D1%84%D0%BE%D1%82%D0%BE%D0%B3%D1%80%D0%B0%D1%84%D0%B8%D0%B9_2018/en\">2018 Science Photo Competition</a></b>». Shoot Science for Wikipedia!</big><div style=\"display:inline\" ;=\"\"><a href=\"#\" title=\"Hide\" onclick=\"hideBanner();return false;\"><img border=\"0\" src=\"//upload.wikimedia.org/wikipedia/foundation/2/20/CloseWindow19x19.png\" alt=\"Hide\"></a></div></center>\n"
333 "</div></div><!-- CentralNotice --></div><div class=\"mw-indicators mw-body-content\">\n"
334 "</div>\n"
335 "<h1 id=\"firstHeading\" class=\"firstHeading\" lang=\"en\">Main Page</h1>\t\t\t<div id=\"bodyContent\" class=\"mw-body-content\">\n"
336 "\t\t\t\t<div id=\"siteSub\" class=\"noprint\">From Wikipedia, the free encyclopedia</div>\t\t\t\t<div id=\"contentSub\"></div>\n"
337 "\t\t\t\t<div id=\"jump-to-nav\"></div>\t\t\t\t<a class=\"mw-jump-link\" href=\"#mw-head\">Jump to navigation</a>\n"
338 "\t\t\t\t<a class=\"mw-jump-link\" href=\"#p-search\">Jump to search</a>\n"
339 "\t\t\t\t<div id=\"mw-content-text\" lang=\"en\" dir=\"ltr\" class=\"mw-content-ltr\"><div class=\"mw-parser-output\"><div id=\"mp-topbanner\" style=\"clear:both; position:relative; box-sizing:border-box; width:100%; margin:1.2em 0 6px; min-width:47em; border:1px solid #ddd; background-color:#f9f9f9; color:#000; white-space:nowrap;\">\n"
340 "<div style=\"margin:0.4em; width:22em; text-align:center;\">\n"
341 "<div style=\"font-size:162%; padding:.1em;\">Welcome to <a href=\"/wiki/Wikipedia\" title=\"Wikipedia\">Wikipedia</a>,</div>\n"
342 "<div style=\"font-size:95%;\">the <a href=\"/wiki/Free_content\" title=\"Free content\">free</a> <a href=\"/wiki/Encyclopedia\" title=\"Encyclopedia\">encyclopedia</a> that <a href=\"/wiki/Wikipedia:Introduction\" title=\"Wikipedia:Introduction\">anyone can edit</a>.</div>\n"
343 "<div id=\"articlecount\" style=\"font-size:85%;\"><a href=\"/wiki/Special:Statistics\" title=\"Special:Statistics\">5,694,751</a> articles in <a href=\"/wiki/English_language\" title=\"English language\">English</a></div>\n"
344 "</div>\n"
345 "<ul style=\"position:absolute; right:-1em; top:50%; margin-top:-2.4em; width:38%; min-width:25em; font-size:95%;\">\n"
346 "<li style=\"position:absolute; left:0; top:0;\"><a href=\"/wiki/Portal:Arts\" title=\"Portal:Arts\">Arts</a></li>\n"
347 "<li style=\"position:absolute; left:0; top:1.6em;\"><a href=\"/wiki/Portal:Biography\" title=\"Portal:Biography\">Biography</a></li>\n"
348 "<li style=\"position:absolute; left:0; top:3.2em;\"><a href=\"/wiki/Portal:Geography\" title=\"Portal:Geography\">Geography</a></li>\n"
349 "<li style=\"position:absolute; left:33%; top:0;\"><a href=\"/wiki/Portal:History\" title=\"Portal:History\">History</a></li>\n"
350 "<li style=\"position:absolute; left:33%; top:1.6em;\"><a href=\"/wiki/Portal:Mathematics\" title=\"Portal:Mathematics\">Mathematics</a></li>\n"
351 "<li style=\"position:absolute; left:33%; top:3.2em;\"><a href=\"/wiki/Portal:Science\" title=\"Portal:Science\">Science</a></li>\n"
352 "<li style=\"position:absolute; left:66%; top:0;\"><a href=\"/wiki/Portal:Society\" title=\"Portal:Society\">Society</a></li>\n"
353 "<li style=\"position:absolute; left:66%; top:1.6em;\"><a href=\"/wiki/Portal:Technology\" title=\"Portal:Technology\">Technology</a></li>\n"
354 "<li style=\"position:absolute; left:66%; top:3.2em;\"><strong><a href=\"/wiki/Portal:Contents/Portals\" title=\"Portal:Contents/Portals\">All portals</a></strong></li>\n"
355 "</ul>\n"
356 "</div>\n"
357 "<table role=\"presentation\" id=\"mp-upper\" style=\"width: 100%; margin-top:4px; border-spacing: 0px;\">\n"
358 "<tbody><tr>\n"
359 "<td id=\"mp-left\" class=\"MainPageBG\" style=\"width:55%; border:1px solid #cef2e0; padding:0; background:#f5fffa; vertical-align:top; color:#000;\">\n"
360 "<h2 id=\"mp-tfa-h2\" style=\"margin:0.5em; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; color:#000; padding:0.2em 0.4em;\"><span id=\"From_today.27s_featured_article\"></span><span class=\"mw-headline\" id=\"From_today's_featured_article\">From today's featured article</span></h2>\n"
361 "<div id=\"mp-tfa\" style=\"padding:0.1em 0.6em;\"><div id=\"mp-tfa-img\" style=\"float: left; margin: 0.5em 0.9em 0.4em 0em;\"><a href=\"/wiki/File:A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship,_USS_Princeton.jpg\" class=\"image\" title=\"Helicopter 66 pictured during the Apollo 10 recovery in 1969\"><img alt=\"Helicopter 66 pictured during the Apollo 10 recovery in 1969\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/5/5d/A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg/120px-A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg\" width=\"120\" height=\"120\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/5/5d/A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg/180px-A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5d/A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg/240px-A_member_of_the_Apollo_10_crew_is_hoisted_into_a_helicopter_from_the_prime_recovery_ship%2C_USS_Princeton.jpg 2x\" data-file-width=\"4104\" data-file-height=\"4104\"></a>\n"
362 "</div>\n"
363 "<p><b><a href=\"/wiki/Helicopter_66\" title=\"Helicopter 66\">Helicopter 66</a></b> (US Navy <a href=\"/wiki/United_States_military_aircraft_serial_numbers#United_States_Navy_and_Marine_Corps\" title=\"United States military aircraft serial numbers\">bureau no.</a> 152711) was a <a href=\"/wiki/Sikorsky_Sea_King\" class=\"mw-redirect\" title=\"Sikorsky Sea King\">Sikorsky Sea King</a> used for the water recovery of many of <a href=\"/wiki/NASA\" title=\"NASA\">NASA</a>'s <a href=\"/wiki/Apollo_program\" title=\"Apollo program\">Apollo</a> astronauts, including those returning from the first <a href=\"/wiki/Apollo_11\" title=\"Apollo 11\">manned moon landing</a> in 1969. Space historian <a href=\"/wiki/Dwayne_A._Day\" title=\"Dwayne A. Day\">Dwayne A. Day</a> has called it \"one of the most famous, or at least most iconic, helicopters in history\". Delivered to the navy in 1967, Helicopter 66 was in the inventory of <a href=\"/wiki/HSC-4\" title=\"HSC-4\">U.S. Navy Helicopter Anti-Submarine Squadron Four</a> for the duration of its active life. One of its pilots, <a href=\"/wiki/Donald_S._Jones\" title=\"Donald S. Jones\">Donald S. Jones</a>, went on to command the <a href=\"/wiki/United_States_Third_Fleet\" title=\"United States Third Fleet\">United States Third Fleet</a>. It transported the <a href=\"/wiki/Mohammad_Reza_Pahlavi\" title=\"Mohammad Reza Pahlavi\">Shah of Iran</a> during his 1973 visit to the aircraft carrier <a href=\"/wiki/USS_Kitty_Hawk_(CV-63)\" title=\"USS Kitty Hawk (CV-63)\">USS <i>Kitty Hawk</i></a>. Later re-numbered Helicopter 740, it crashed in the <a href=\"/wiki/Pacific_Ocean\" title=\"Pacific Ocean\">Pacific Ocean</a> in 1975 during a training exercise, having logged more than 3,200 hours of service. It was the subject of a 1969 song by <a href=\"/wiki/Manuela_(singer)\" title=\"Manuela (singer)\">Manuela</a> and was made into a <a href=\"/wiki/Die-cast_toy\" title=\"Die-cast toy\">die-cast model</a> by <a href=\"/wiki/Dinky_Toys\" title=\"Dinky Toys\">Dinky Toys</a>. Replicas of \"Old 66\" are on display at the <a href=\"/wiki/USS_Hornet_Museum\" title=\"USS Hornet Museum\">USS Hornet Museum</a> and the <a href=\"/wiki/USS_Midway_Museum\" title=\"USS Midway Museum\">USS Midway Museum</a>. (<a href=\"/wiki/Helicopter_66\" title=\"Helicopter 66\"><b>Full article...</b></a>)\n"
364 "</p>\n"
365 "<div class=\"tfa-recent\" style=\"text-align: right;\">\n"
366 "Recently featured: <div class=\"hlist inline\">\n"
367 "<ul><li><a href=\"/wiki/The_Dawn_of_Love_(painting)\" title=\"The Dawn of Love (painting)\"><i>The Dawn of Love</i> (painting)</a></li>\n"
368 "<li><a href=\"/wiki/Mistle_thrush\" title=\"Mistle thrush\">Mistle thrush</a></li>\n"
369 "<li><a href=\"/wiki/SMS_W%C3%B6rth\" title=\"SMS Wörth\">SMS <i>Wörth</i></a></li></ul>\n"
370 "</div></div>\n"
371 "<div class=\"tfa-footer hlist noprint\" style=\"text-align: right;\">\n"
372 "<ul><li><b><a href=\"/wiki/Wikipedia:Today%27s_featured_article/August_2018\" title=\"Wikipedia:Today's featured article/August 2018\">Archive</a></b></li>\n"
373 "<li><b><a href=\"https://lists.wikimedia.org/mailman/listinfo/daily-article-l\" class=\"extiw\" title=\"mail:daily-article-l\">By email</a></b></li>\n"
374 "<li><b><a href=\"/wiki/Wikipedia:Featured_articles\" title=\"Wikipedia:Featured articles\">More featured articles</a></b></li></ul>\n"
375 "</div></div>\n"
376 "<h2 id=\"mp-dyk-h2\" style=\"clear:both; margin:0.5em; background:#cef2e0; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3bfb1; color:#000; padding:0.2em 0.4em;\"><span class=\"mw-headline\" id=\"Did_you_know...\">Did you know...</span></h2>\n"
377 "<div id=\"mp-dyk\" style=\"padding:0.1em 0.6em 0.5em;\">\n"
378 "<div style=\"float:right; margin-left:0.5em;\" id=\"mp-dyk-img\">\n"
379 "<div class=\"thumbinner mp-thumb\" style=\"background: transparent; border: none; padding: 0; max-width: 120px;\">\n"
380 "<a href=\"/wiki/File:Teuira_Henry.jpg\" class=\"image\" title=\"Teuira Henry\"><img alt=\"Teuira Henry\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Teuira_Henry.jpg/92px-Teuira_Henry.jpg\" width=\"92\" height=\"133\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/1/10/Teuira_Henry.jpg/139px-Teuira_Henry.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/10/Teuira_Henry.jpg/185px-Teuira_Henry.jpg 2x\" data-file-width=\"331\" data-file-height=\"476\"></a><div class=\"thumbcaption\" style=\"padding: 0.25em 0; word-wrap: break-word; text-align: center;\">Teuira Henry</div></div>\n"
381 "</div>\n"
382 "<ul><li>... that <b><a href=\"/wiki/Teuira_Henry\" title=\"Teuira Henry\">Teuira Henry</a></b> <i>(pictured)</i> reconstructed her English missionary grandfather's lost manuscript describing <a href=\"/wiki/Tahiti#History\" title=\"Tahiti\">Tahitian history</a> by using his notes?</li>\n"
383 "<li>... that <b><a href=\"/wiki/Mexico_at_the_2014_Winter_Paralympics\" title=\"Mexico at the 2014 Winter Paralympics\">Mexico was represented by a single athlete</a></b> at the <a href=\"/wiki/2014_Winter_Paralympics\" title=\"2014 Winter Paralympics\">2014 Winter Paralympics</a>?</li>\n"
384 "<li>... that the Argentinian mezzo-soprano <b><a href=\"/wiki/Alicia_Naf%C3%A9\" title=\"Alicia Nafé\">Alicia Nafé</a></b> appeared in her signature role as Bizet's <a href=\"/wiki/Carmen\" title=\"Carmen\">Carmen</a> alongside <a href=\"/wiki/Pl%C3%A1cido_Domingo\" title=\"Plácido Domingo\">Plácido Domingo</a> in <a href=\"/wiki/San_Francisco_Opera\" title=\"San Francisco Opera\">San Francisco</a>, and at the <a href=\"/wiki/Metropolitan_Opera\" title=\"Metropolitan Opera\">Metropolitan Opera</a> with Domingo as conductor?</li>\n"
385 "<li>... that the <a href=\"/wiki/Antependium\" title=\"Antependium\">antependium</a> of <b><a href=\"/wiki/Lyngsj%C3%B6_Church\" title=\"Lyngsjö Church\">Lyngsjö Church</a></b> has been said to be \"better suited for the high altar of a cathedral than a countryside church\"?</li>\n"
386 "<li>... that the <i>Samec'niero</i>, written by <b><a href=\"/wiki/Iase_Tushi\" title=\"Iase Tushi\">Iase Tushi</a></b>, contains one of the earliest examples of a <a href=\"/wiki/Georgian_language\" title=\"Georgian language\">Georgian</a>–<a href=\"/wiki/Persian_language\" title=\"Persian language\">Persian</a> dictionary, and is the earliest Georgian manuscript so far discovered in <a href=\"/wiki/Iran\" title=\"Iran\">Iran</a>?</li>\n"
387 "<li>... that <a href=\"/wiki/Brass_band\" title=\"Brass band\">brass bands</a> have been a feature of <b><a href=\"/wiki/Vale_Park,_New_Brighton\" title=\"Vale Park, New Brighton\">Vale Park</a></b> since its opening in 1899, when one played the crowd in through the gates?</li>\n"
388 "<li>... that <i><b><a href=\"/wiki/Neocalanus_plumchrus\" title=\"Neocalanus plumchrus\">Neocalanus plumchrus</a></b></i> is able to uptake dissolved <a href=\"/wiki/Glucose\" title=\"Glucose\">glucose</a> directly from seawater despite its <a href=\"/wiki/Exoskeleton\" title=\"Exoskeleton\">exoskeleton</a>?</li>\n"
389 "<li>... that the <a href=\"/wiki/Association_football\" title=\"Association football\">footballer</a> <b><a href=\"/wiki/Mark_Aizlewood\" title=\"Mark Aizlewood\">Mark Aizlewood</a></b> once celebrated scoring a goal by <a href=\"/wiki/V_sign#As_an_insult\" title=\"V sign\">flicking the V</a> at fans of his own team?</li></ul>\n"
390 "<div class=\"dyk-footer hlist noprint\" style=\"margin-top: 0.5em; text-align: right;\">\n"
391 "<ul><li><b><a href=\"/wiki/Wikipedia:Recent_additions\" title=\"Wikipedia:Recent additions\">Archive</a></b></li>\n"
392 "<li><b><a href=\"/wiki/Wikipedia:Your_first_article\" title=\"Wikipedia:Your first article\">Start a new article</a></b></li>\n"
393 "<li><b><a href=\"/wiki/Template_talk:Did_you_know\" title=\"Template talk:Did you know\">Nominate an article</a></b></li></ul>\n"
394 "</div>\n"
395 "</div>\n"
396 "</td>\n"
397 "<td style=\"border:1px solid transparent;\">\n"
398 "</td>\n"
399 "<td id=\"mp-right\" class=\"MainPageBG\" style=\"width:45%; border:1px solid #cedff2; padding:0; background:#f5faff; vertical-align:top;\">\n"
400 "<h2 id=\"mp-itn-h2\" style=\"margin:0.5em; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; color:#000; padding:0.2em 0.4em;\"><span class=\"mw-headline\" id=\"In_the_news\">In the news</span></h2>\n"
401 "<div id=\"mp-itn\" style=\"padding:0.1em 0.6em;\"><div role=\"figure\" class=\"itn-img\" style=\"float: right; margin-left: 0.5em;\">\n"
402 "<div class=\"thumbinner mp-thumb\" style=\"background: transparent; border: none; padding: 0; max-width: 140px;\">\n"
403 "<a href=\"/wiki/File:Students_Blocked_Road_for_safe_road.jpg\" class=\"image\" title=\"Student protests in Dhaka, Bangladesh\"><img alt=\"Student protests in Dhaka, Bangladesh\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Students_Blocked_Road_for_safe_road.jpg/140px-Students_Blocked_Road_for_safe_road.jpg\" width=\"140\" height=\"105\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Students_Blocked_Road_for_safe_road.jpg/210px-Students_Blocked_Road_for_safe_road.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Students_Blocked_Road_for_safe_road.jpg/280px-Students_Blocked_Road_for_safe_road.jpg 2x\" data-file-width=\"4032\" data-file-height=\"3024\"></a><div class=\"thumbcaption\" style=\"padding: 0.25em 0; word-wrap: break-word;\">Student protests in <a href=\"/wiki/Dhaka\" title=\"Dhaka\">Dhaka</a>, Bangladesh</div></div>\n"
404 "</div>\n"
405 "<ul><li><b><a href=\"/wiki/August_2018_Lombok_earthquake\" title=\"August 2018 Lombok earthquake\">A 6.9 magnitude earthquake</a></b> strikes <a href=\"/wiki/Lombok\" title=\"Lombok\">Lombok</a>, Indonesia, killing more than 250 people after its <b><a href=\"/wiki/July_2018_Lombok_earthquake\" title=\"July 2018 Lombok earthquake\">6.4 magnitude foreshock</a></b> killed at least 20 others a week prior.</li>\n"
406 "<li>More than 140 people are injured in <b><a href=\"/wiki/2018_Bangladesh_road-safety_protests\" title=\"2018 Bangladesh road-safety protests\">road-safety protests</a></b> <i>(pictured)</i> in Bangladesh.</li>\n"
407 "<li>A 79-year-old <a href=\"/wiki/Junkers_Ju_52\" title=\"Junkers Ju 52\">Junkers Ju 52</a> aircraft <b><a href=\"/wiki/2018_Ju-Air_Junkers_Ju_52_crash\" title=\"2018 Ju-Air Junkers Ju 52 crash\">crashes in Switzerland</a></b>, killing all 20 people on board.</li>\n"
408 "<li>In mathematics, the <a href=\"/wiki/Fields_Medal\" title=\"Fields Medal\">Fields Medal</a> is awarded to <b><a href=\"/wiki/Caucher_Birkar\" title=\"Caucher Birkar\">Caucher Birkar</a></b>, <b><a href=\"/wiki/Alessio_Figalli\" title=\"Alessio Figalli\">Alessio Figalli</a></b>, <b><a href=\"/wiki/Peter_Scholze\" title=\"Peter Scholze\">Peter Scholze</a></b> and <b><a href=\"/wiki/Akshay_Venkatesh\" title=\"Akshay Venkatesh\">Akshay Venkatesh</a></b>.</li></ul>\n"
409 "<div class=\"itn-footer\" style=\"margin-top: 0.5em;\">\n"
410 "<div><b><a href=\"/wiki/Portal:Current_events\" title=\"Portal:Current events\">Ongoing</a></b>: <div class=\"hlist inline\">\n"
411 "<ul><li><a href=\"/wiki/Carr_Fire\" title=\"Carr Fire\">Carr Fire, California</a></li></ul></div></div>\n"
412 "<div><b><a href=\"/wiki/Deaths_in_2018\" title=\"Deaths in 2018\">Recent deaths</a></b>: <div class=\"hlist inline\">\n"
413 "<ul><li><a href=\"/wiki/Stan_Mikita\" title=\"Stan Mikita\">Stan Mikita</a></li>\n"
414 "<li><a href=\"/wiki/Alan_Rabinowitz\" title=\"Alan Rabinowitz\">Alan Rabinowitz</a></li>\n"
415 "<li><a href=\"/wiki/Chuckle_Brothers\" title=\"Chuckle Brothers\">Barry Chuckle</a></li>\n"
416 "<li><a href=\"/wiki/Ingrid_Espelid_Hovig\" title=\"Ingrid Espelid Hovig\">Ingrid Espelid Hovig</a></li></ul></div></div></div>\n"
417 "<div class=\"itn-footer hlist noprint\" style=\"text-align: right;\">\n"
418 "<ul><li><b><a href=\"/wiki/Wikipedia:In_the_news/Candidates\" title=\"Wikipedia:In the news/Candidates\">Nominate an article</a></b></li></ul></div>\n"
419 "</div>\n"
420 "<h2 id=\"mp-otd-h2\" style=\"clear:both; margin:0.5em; background:#cedff2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #a3b0bf; color:#000; padding:0.2em 0.4em;\"><span class=\"mw-headline\" id=\"On_this_day\">On this day</span></h2>\n"
421 "<div id=\"mp-otd\" style=\"padding:0.1em 0.6em 0.5em;\">\n"
422 "<p><b><a href=\"/wiki/August_9\" title=\"August 9\">August 9</a></b>: <b><a href=\"/wiki/International_Day_of_the_World%27s_Indigenous_Peoples\" title=\"International Day of the World's Indigenous Peoples\">International Day of the World's Indigenous Peoples</a></b>; <b><a href=\"/wiki/National_Women%27s_Day\" title=\"National Women's Day\">National Women's Day</a></b> in South Africa\n"
423 "</p>\n"
424 "<div style=\"float:right;margin-left:0.5em;\" id=\"mp-otd-img\">\n"
425 "<div class=\"thumbinner mp-thumb\" style=\"background: transparent; border: none; padding: 0; max-width: 100px;\">\n"
426 "<a href=\"/wiki/File:Nagasakibomb.jpg\" class=\"image\" title=\"Mushroom cloud over Nagasaki\"><img alt=\"Mushroom cloud over Nagasaki\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Nagasakibomb.jpg/100px-Nagasakibomb.jpg\" width=\"100\" height=\"119\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Nagasakibomb.jpg/150px-Nagasakibomb.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Nagasakibomb.jpg/200px-Nagasakibomb.jpg 2x\" data-file-width=\"3245\" data-file-height=\"3877\"></a><div class=\"thumbcaption\" style=\"padding: 0.25em 0; word-wrap: break-word;\"><a href=\"/wiki/Mushroom_cloud\" title=\"Mushroom cloud\">Mushroom cloud</a> over Nagasaki</div></div>\n"
427 "</div>\n"
428 "<ul><li><a href=\"/wiki/1902\" title=\"1902\">1902</a> – <b><a href=\"/wiki/Edward_VII\" title=\"Edward VII\">Edward VII</a></b> and <b><a href=\"/wiki/Alexandra_of_Denmark\" title=\"Alexandra of Denmark\">Alexandra of Denmark</a></b> were crowned King and Queen of the <a href=\"/wiki/United_Kingdom_of_Great_Britain_and_Ireland\" title=\"United Kingdom of Great Britain and Ireland\">United Kingdom of Great Britain and Ireland</a>.</li>\n"
429 "<li><a href=\"/wiki/1945\" title=\"1945\">1945</a> – <a href=\"/wiki/World_War_II\" title=\"World War II\">World War II</a>: <a href=\"/wiki/United_States_Army_Air_Forces\" title=\"United States Army Air Forces\">USAAF</a> bomber <i><b><a href=\"/wiki/Bockscar\" title=\"Bockscar\">Bockscar</a></b></i> <a href=\"/wiki/Atomic_bombings_of_Hiroshima_and_Nagasaki\" title=\"Atomic bombings of Hiroshima and Nagasaki\">dropped</a> a <b><a href=\"/wiki/Fat_Man\" title=\"Fat Man\">\"Fat Man\" atomic bomb</a></b> on <a href=\"/wiki/Nagasaki\" title=\"Nagasaki\">Nagasaki</a>, Japan <i>(pictured)</i>.</li>\n"
430 "<li><a href=\"/wiki/1956\" title=\"1956\">1956</a> – An estimated 20,000 women <b><a href=\"/wiki/Women%27s_March_(South_Africa)\" title=\"Women's March (South Africa)\">marched</a></b> on <a href=\"/wiki/Pretoria\" title=\"Pretoria\">Pretoria</a>, South Africa, to protest the introduction of the <a href=\"/wiki/Apartheid\" title=\"Apartheid\">Apartheid</a> <a href=\"/wiki/Pass_laws\" title=\"Pass laws\">pass laws</a> for black women in 1952.</li>\n"
431 "<li><a href=\"/wiki/1988\" title=\"1988\">1988</a> – <b><a href=\"/wiki/Wayne_Gretzky\" title=\"Wayne Gretzky\">Wayne Gretzky</a></b> was traded from the <a href=\"/wiki/Edmonton_Oilers\" title=\"Edmonton Oilers\">Edmonton Oilers</a> to the <a href=\"/wiki/Los_Angeles_Kings\" title=\"Los Angeles Kings\">Los Angeles Kings</a> in one of the most controversial player transactions in <a href=\"/wiki/Ice_hockey\" title=\"Ice hockey\">ice hockey</a> history.</li>\n"
432 "<li><a href=\"/wiki/2001\" title=\"2001\">2001</a> – A suicide bomber <b><a href=\"/wiki/Sbarro_restaurant_suicide_bombing\" title=\"Sbarro restaurant suicide bombing\">attacked</a></b> a <a href=\"/wiki/Sbarro\" title=\"Sbarro\">Sbarro</a> pizza restaurant in Jerusalem, killing 15 people and wounding 130 others.</li></ul>\n"
433 "<p><b><a href=\"/wiki/Michael_the_Brave\" title=\"Michael the Brave\">Michael the Brave</a></b> (d. 1601) <b>·</b> <b><a href=\"/wiki/Eileen_Gray\" title=\"Eileen Gray\">Eileen Gray</a></b> (b. 1878) <b>·</b> <b><a href=\"/wiki/Philip_Larkin\" title=\"Philip Larkin\">Philip Larkin</a></b> (b. 1922)\n"
434 "</p>\n"
435 "<div style=\"margin-top: 0.5em;\">\n"
436 "More anniversaries: <div class=\"hlist inline nowraplinks\">\n"
437 "<ul><li><a href=\"/wiki/August_8\" title=\"August 8\">August 8</a></li>\n"
438 "<li><b><a href=\"/wiki/August_9\" title=\"August 9\">August 9</a></b></li>\n"
439 "<li><a href=\"/wiki/August_10\" title=\"August 10\">August 10</a></li></ul>\n"
440 "</div></div>\n"
441 "<div class=\"otd-footer hlist noprint\" style=\"text-align: right;\">\n"
442 "<ul><li><b><a href=\"/wiki/Wikipedia:Selected_anniversaries/August\" title=\"Wikipedia:Selected anniversaries/August\">Archive</a></b></li>\n"
443 "<li><b><a href=\"https://lists.wikimedia.org/mailman/listinfo/daily-article-l\" class=\"extiw\" title=\"mail:daily-article-l\">By email</a></b></li>\n"
444 "<li><b><a href=\"/wiki/List_of_historical_anniversaries\" title=\"List of historical anniversaries\">List of historical anniversaries</a></b></li></ul>\n"
445 "</div></div>\n"
446 "</td></tr></tbody></table>\n"
447 "<div id=\"mp-lower\" class=\"MainPageBG\" style=\"margin-top:4px; border:1px solid #ddcef2; background:#faf5ff; overflow:auto;\">\n"
448 "<div id=\"mp-bottom\">\n"
449 "<h2 id=\"mp-tfp-h2\" style=\"margin:0.5em; background:#ddcef2; font-family:inherit; font-size:120%; font-weight:bold; border:1px solid #afa3bf; color:#000; padding:0.2em 0.4em\"><span id=\"Today.27s_featured_picture\"></span><span class=\"mw-headline\" id=\"Today's_featured_picture\">Today's featured picture</span></h2>\n"
450 "<div id=\"mp-tfp\" style=\"margin:0.1em 0.4em 0.6em;\">\n"
451 "<table role=\"presentation\" style=\"margin:0 3px 3px; width:100%; text-align:left; background-color:transparent; border-collapse: collapse;\">\n"
452 "<tbody><tr>\n"
453 "<td style=\"padding:0 0.9em 0 0;\"><a href=\"/wiki/File:Chrysopidae_01_(MK).jpg\" class=\"image\" title=\"Chrysopa perla\"><img alt=\"Chrysopa perla\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/5/57/Chrysopidae_01_%28MK%29.jpg/380px-Chrysopidae_01_%28MK%29.jpg\" width=\"380\" height=\"214\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/5/57/Chrysopidae_01_%28MK%29.jpg/570px-Chrysopidae_01_%28MK%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/57/Chrysopidae_01_%28MK%29.jpg/760px-Chrysopidae_01_%28MK%29.jpg 2x\" data-file-width=\"5271\" data-file-height=\"2965\"></a>\n"
454 "</td>\n"
455 "<td style=\"padding:0 6px 0 0\">\n"
456 "<p><i><b><a href=\"/wiki/Chrysopa_perla\" title=\"Chrysopa perla\">Chrysopa perla</a></b></i> is a species of insect in the family <a href=\"/wiki/Chrysopidae\" title=\"Chrysopidae\">Chrysopidae</a>. Present in most of Europe and in temperate zones of Asia, these insects prefer cool and shady areas. They may reach 10–12 millimetres (0.39–0.47 in) in length, with a wingspan of 25–30 millimetres (0.98–1.18 in).\n"
457 "</p>\n"
458 "<p><small>Photograph: <a href=\"https://commons.wikimedia.org/wiki/User:Leviathan1983\" class=\"extiw\" title=\"commons:User:Leviathan1983\">Mathias Krumbholz</a></small></p>\n"
459 "<div class=\"potd-recent\" style=\"text-align:right;\">\n"
460 "Recently featured: <div class=\"hlist inline\">\n"
461 "<ul><li><a href=\"/wiki/Template:POTD/2018-08-08\" title=\"Template:POTD/2018-08-08\">Indian Head half eagle</a></li>\n"
462 "<li><a href=\"/wiki/Template:POTD/2018-08-07\" title=\"Template:POTD/2018-08-07\"><i>View of Delft</i></a></li>\n"
463 "<li><a href=\"/wiki/Template:POTD/2018-08-06\" title=\"Template:POTD/2018-08-06\">Rufous-tailed flycatcher</a></li></ul>\n"
464 "</div></div>\n"
465 "<div class=\"potd-footer hlist noprint\" style=\"text-align:right;\">\n"
466 "<ul><li><b><a href=\"/wiki/Wikipedia:Picture_of_the_day/August_2018\" title=\"Wikipedia:Picture of the day/August 2018\">Archive</a></b></li>\n"
467 "<li><b><a href=\"/wiki/Wikipedia:Featured_pictures\" title=\"Wikipedia:Featured pictures\">More featured pictures</a></b></li></ul>\n"
468 "</div>\n"
469 "</td></tr></tbody></table></div>\n"
470 "</div>\n"
471 "</div>\n"
472 "<div id=\"mp-lower\" style=\"padding-top:4px; padding-bottom:2px; overflow:auto; border:1px solid #e2e2e2; overflow:auto; margin-top:4px;\">\n"
473 "<h2 id=\"mp-other\" style=\"margin:0.5em; background:#eeeeee; border:1px solid #ddd; color:#222; padding:0.2em 0.4em; font-size:120%; font-weight:bold; font-family:inherit;\"><span class=\"mw-headline\" id=\"Other_areas_of_Wikipedia\">Other areas of Wikipedia</span></h2>\n"
474 "<div id=\"mp-other-content\" style=\"padding:0.1em 0.6em;\">\n"
475 "<ul><li><b><a href=\"/wiki/Wikipedia:Community_portal\" title=\"Wikipedia:Community portal\">Community portal</a></b> – Bulletin board, projects, resources and activities covering a wide range of Wikipedia areas.</li>\n"
476 "<li><b><a href=\"/wiki/Wikipedia:Help_desk\" title=\"Wikipedia:Help desk\">Help desk</a></b> – Ask questions about using Wikipedia.</li>\n"
477 "<li><b><a href=\"/wiki/Wikipedia:Local_Embassy\" title=\"Wikipedia:Local Embassy\">Local embassy</a></b> – For Wikipedia-related communication in languages other than English.</li>\n"
478 "<li><b><a href=\"/wiki/Wikipedia:Reference_desk\" title=\"Wikipedia:Reference desk\">Reference desk</a></b> – Serving as virtual librarians, Wikipedia volunteers tackle your questions on a wide range of subjects.</li>\n"
479 "<li><b><a href=\"/wiki/Wikipedia:News\" title=\"Wikipedia:News\">Site news</a></b> – Announcements, updates, articles and press releases on Wikipedia and the Wikimedia Foundation.</li>\n"
480 "<li><b><a href=\"/wiki/Wikipedia:Village_pump\" title=\"Wikipedia:Village pump\">Village pump</a></b> – For discussions about Wikipedia itself, including areas for technical issues and policies.</li></ul>\n"
481 "</div>\n"
482 "<h2 id=\"mp-sister\" style=\"margin:0.5em; background:#eeeeee; border:1px solid #ddd; color:#222; padding:0.2em 0.4em; font-size:120%; font-weight:bold; font-family:inherit;\"><span id=\"Wikipedia.27s_sister_projects\"></span><span class=\"mw-headline\" id=\"Wikipedia's_sister_projects\">Wikipedia's sister projects</span></h2>\n"
483 "<div id=\"mp-sister-content\" style=\"padding:0.1em 0.6em;\">\n"
484 "<p>Wikipedia is hosted by the <a href=\"/wiki/Wikimedia_Foundation\" title=\"Wikimedia Foundation\">Wikimedia Foundation</a>, a non-profit organization that also hosts a range of other <a href=\"https://foundation.wikimedia.org/wiki/Our_projects\" class=\"extiw\" title=\"wmf:Our projects\">projects</a>:\n"
485 "</p>\n"
486 " <table class=\"layout plainlinks\" style=\"width:100%; margin:auto; text-align:left; background:transparent;\">\n"
487 " <tbody><tr>\n"
488 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://commons.wikimedia.org/wiki/\" title=\"Commons\"><img alt=\"Commons\" src=\"//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/31px-Commons-logo.svg.png\" width=\"31\" height=\"42\" srcset=\"//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/47px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/62px-Commons-logo.svg.png 2x\" data-file-width=\"1024\" data-file-height=\"1376\"></a> </td>\n"
489 " <td style=\"width:33%; padding:4px;\"> <b><a class=\"external text\" href=\"//commons.wikimedia.org/\">Commons</a></b> <br> Free media repository </td>\n"
490 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://www.mediawiki.org/wiki/\" title=\"MediaWiki\"><img alt=\"MediaWiki\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/35px-Mediawiki-logo.png\" width=\"35\" height=\"26\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/53px-Mediawiki-logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Mediawiki-logo.png/70px-Mediawiki-logo.png 2x\" data-file-width=\"135\" data-file-height=\"102\"></a> </td>\n"
491 " <td style=\"width:33%; padding:4px;\"> <b><a class=\"external text\" href=\"//mediawiki.org/\">MediaWiki</a></b> <br> Wiki software development </td>\n"
492 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://meta.wikimedia.org/wiki/\" title=\"Meta-Wiki\"><img alt=\"Meta-Wiki\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/35px-Wikimedia_Community_Logo.svg.png\" width=\"35\" height=\"35\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/53px-Wikimedia_Community_Logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/75/Wikimedia_Community_Logo.svg/70px-Wikimedia_Community_Logo.svg.png 2x\" data-file-width=\"900\" data-file-height=\"900\"></a> </td>\n"
493 " <td style=\"width:33%; padding:4px;\"> <b><a class=\"external text\" href=\"//meta.wikimedia.org/\">Meta-Wiki</a></b> <br> Wikimedia project coordination </td>\n"
494 " </tr><tr>\n"
495 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://en.wikibooks.org/wiki/\" title=\"Wikibooks\"><img alt=\"Wikibooks\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/35px-Wikibooks-logo.svg.png\" width=\"35\" height=\"35\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/53px-Wikibooks-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikibooks-logo.svg/70px-Wikibooks-logo.svg.png 2x\" data-file-width=\"300\" data-file-height=\"300\"></a> </td>\n"
496 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//en.wikibooks.org/\">Wikibooks</a></b> <br> Free textbooks and manuals </td>\n"
497 " <td style=\"min-width: 50px; text-align:center; padding:3px;\"> <a href=\"https://www.wikidata.org/wiki/\" title=\"Wikidata\"><img alt=\"Wikidata\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/47px-Wikidata-logo.svg.png\" width=\"47\" height=\"26\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/71px-Wikidata-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/94px-Wikidata-logo.svg.png 2x\" data-file-width=\"1050\" data-file-height=\"590\"></a> </td>\n"
498 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//www.wikidata.org/\">Wikidata</a></b> <br> Free knowledge base </td>\n"
499 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://en.wikinews.org/wiki/\" title=\"Wikinews\"><img alt=\"Wikinews\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/51px-Wikinews-logo.svg.png\" width=\"51\" height=\"28\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/77px-Wikinews-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/102px-Wikinews-logo.svg.png 2x\" data-file-width=\"759\" data-file-height=\"415\"></a> </td>\n"
500 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//en.wikinews.org/\">Wikinews</a></b> <br> Free-content news </td>\n"
501 " </tr><tr>\n"
502 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://en.wikiquote.org/wiki/\" title=\"Wikiquote\"><img alt=\"Wikiquote\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/35px-Wikiquote-logo.svg.png\" width=\"35\" height=\"41\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/53px-Wikiquote-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/70px-Wikiquote-logo.svg.png 2x\" data-file-width=\"300\" data-file-height=\"355\"></a> </td>\n"
503 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//en.wikiquote.org/\">Wikiquote</a></b> <br> Collection of quotations </td>\n"
504 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://en.wikisource.org/wiki/\" title=\"Wikisource\"><img alt=\"Wikisource\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/35px-Wikisource-logo.svg.png\" width=\"35\" height=\"37\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/53px-Wikisource-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/70px-Wikisource-logo.svg.png 2x\" data-file-width=\"410\" data-file-height=\"430\"></a> </td>\n"
505 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//en.wikisource.org/\">Wikisource</a></b> <br> Free-content library </td>\n"
506 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://species.wikimedia.org/wiki/\" title=\"Wikispecies\"><img alt=\"Wikispecies\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/35px-Wikispecies-logo.svg.png\" width=\"35\" height=\"41\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/53px-Wikispecies-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/df/Wikispecies-logo.svg/70px-Wikispecies-logo.svg.png 2x\" data-file-width=\"941\" data-file-height=\"1103\"></a> </td>\n"
507 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//species.wikimedia.org/\">Wikispecies</a></b> <br> Directory of species </td>\n"
508 " </tr><tr>\n"
509 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://en.wikiversity.org/wiki/\" title=\"Wikiversity\"><img alt=\"Wikiversity\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/41px-Wikiversity_logo_2017.svg.png\" width=\"41\" height=\"34\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/62px-Wikiversity_logo_2017.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Wikiversity_logo_2017.svg/82px-Wikiversity_logo_2017.svg.png 2x\" data-file-width=\"626\" data-file-height=\"512\"></a> </td>\n"
510 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//en.wikiversity.org/\">Wikiversity</a></b> <br> Free learning materials and activities </td>\n"
511 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://en.wikivoyage.org/wiki/\" title=\"Wikivoyage\"><img alt=\"Wikivoyage\" src=\"//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/35px-Wikivoyage-Logo-v3-icon.svg.png\" width=\"35\" height=\"35\" srcset=\"//upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/53px-Wikivoyage-Logo-v3-icon.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Wikivoyage-Logo-v3-icon.svg/70px-Wikivoyage-Logo-v3-icon.svg.png 2x\" data-file-width=\"193\" data-file-height=\"193\"></a> </td>\n"
512 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//en.wikivoyage.org/\">Wikivoyage</a></b> <br> Free travel guide </td>\n"
513 " <td style=\"min-width: 50px; text-align:center; padding:4px;\"> <a href=\"https://en.wiktionary.org/wiki/\" title=\"Wiktionary\"><img alt=\"Wiktionary\" src=\"//upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/35px-Wiktionary-logo-v2.svg.png\" width=\"35\" height=\"35\" srcset=\"//upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/53px-Wiktionary-logo-v2.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/70px-Wiktionary-logo-v2.svg.png 2x\" data-file-width=\"391\" data-file-height=\"391\"></a> </td>\n"
514 " <td style=\"padding:4px;\"> <b><a class=\"external text\" href=\"//en.wiktionary.org/\">Wiktionary</a></b> <br> Dictionary and thesaurus </td>\n"
515 " </tr></tbody></table></div>\n"
516 "<h2 id=\"mp-lang\" style=\"margin:0.5em; background:#efefef; border:1px solid #ddd; color:#222; padding:0.2em 0.4em; font-size:120%; font-weight:bold; font-family:inherit;\"><span class=\"mw-headline\" id=\"Wikipedia_languages\">Wikipedia languages</span></h2>\n"
517 "<div style=\"padding:0.1em 0.6em;\">\n"
518 "<div id=\"lang\" class=\"nowraplinks nourlexpansion plainlinks\">\n"
519 "<p>This Wikipedia is written in <a href=\"/wiki/English_language\" title=\"English language\">English</a>. Started in 2001<span style=\"display:none\"> (<span class=\"bday dtstart published updated\">2001</span>)</span>, it currently contains <a href=\"/wiki/Special:Statistics\" title=\"Special:Statistics\">5,694,751</a> articles. \n"
520 "Many other Wikipedias are available; some of the largest are listed below.\n"
521 "</p>\n"
522 "<ul>\n"
523 "<li id=\"lang-3\">More than 1,000,000 articles: <div class=\"hlist inline\">\n"
524 "<ul><li><a class=\"external text\" href=\"https://de.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"German (de:)\" lang=\"de\">Deutsch</span></a></li>\n"
525 "<li><a class=\"external text\" href=\"https://es.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Spanish (es:)\" lang=\"es\">Español</span></a></li>\n"
526 "<li><a class=\"external text\" href=\"https://fr.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"French (fr:)\" lang=\"fr\">Français</span></a></li>\n"
527 "<li><a class=\"external text\" href=\"https://it.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Italian (it:)\" lang=\"it\">Italiano</span></a></li>\n"
528 "<li><a class=\"external text\" href=\"https://nl.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Dutch (nl:)\" lang=\"nl\">Nederlands</span></a></li>\n"
529 "<li><a class=\"external text\" href=\"https://ja.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Japanese (ja:)\" lang=\"ja\">日本語</span></a></li>\n"
530 "<li><a class=\"external text\" href=\"https://pl.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Polish (pl:)\" lang=\"pl\">Polski</span></a></li>\n"
531 "<li><a class=\"external text\" href=\"https://pt.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Portuguese (pt:)\" lang=\"pt\">Português</span></a></li>\n"
532 "<li><a class=\"external text\" href=\"https://ru.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Russian (ru:)\" lang=\"ru\">РуÑÑкий</span></a></li>\n"
533 "<li><a class=\"external text\" href=\"https://sv.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Swedish (sv:)\" lang=\"sv\">Svenska</span></a></li>\n"
534 "<li><a class=\"external text\" href=\"https://vi.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Vietnamese (vi:)\" lang=\"vi\">Tiếng Việt</span></a></li>\n"
535 "<li><a class=\"external text\" href=\"https://zh.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Chinese (zh:)\" lang=\"zh\">䏿–‡</span></a></li></ul>\n"
536 "</div></li>\n"
537 "<li id=\"lang-2\">More than 250,000 articles: <div class=\"hlist inline\">\n"
538 "<ul><li><a class=\"external text\" href=\"https://ar.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Arabic (ar:)\" lang=\"ar\">العربية</span></a></li>\n"
539 "<li><a class=\"external text\" href=\"https://id.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Indonesian (id:)\" lang=\"id\">Bahasa Indonesia</span></a></li>\n"
540 "<li><a class=\"external text\" href=\"https://ms.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Malay (ms:)\" lang=\"ms\">Bahasa Melayu</span></a></li>\n"
541 "<li><a class=\"external text\" href=\"https://ca.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Catalan (ca:)\" lang=\"ca\">Català </span></a></li>\n"
542 "<li><a class=\"external text\" href=\"https://cs.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Czech (cs:)\" lang=\"cs\">Čeština</span></a></li>\n"
543 "<li><a class=\"external text\" href=\"https://eu.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Basque (eu:)\" lang=\"eu\">Euskara</span></a></li>\n"
544 "<li><a class=\"external text\" href=\"https://fa.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Persian (fa:)\" lang=\"fa\">ÙØ§Ø±Ø³ÛŒ</span></a></li>\n"
545 "<li><a class=\"external text\" href=\"https://ko.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Korean (ko:)\" lang=\"ko\">한êµì–´</span></a></li>\n"
546 "<li><a class=\"external text\" href=\"https://hu.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Hungarian (hu:)\" lang=\"hu\">Magyar</span></a></li>\n"
547 "<li><a class=\"external text\" href=\"https://no.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Norwegian (no:)\" lang=\"no\">Norsk</span></a></li>\n"
548 "<li><a class=\"external text\" href=\"https://ro.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Romanian (ro:)\" lang=\"ro\">Română</span></a></li>\n"
549 "<li><a class=\"external text\" href=\"https://sr.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Serbian (sr:)\" lang=\"sr\">Srpski</span></a></li>\n"
550 "<li><a class=\"external text\" href=\"https://sh.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Serbo-Croatian (sh:)\" lang=\"sh\">Srpskohrvatski</span></a></li>\n"
551 "<li><a class=\"external text\" href=\"https://fi.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Finnish (fi:)\" lang=\"fi\">Suomi</span></a></li>\n"
552 "<li><a class=\"external text\" href=\"https://tr.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Turkish (tr:)\" lang=\"tr\">Türkçe</span></a></li>\n"
553 "<li><a class=\"external text\" href=\"https://uk.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Ukrainian (uk:)\" lang=\"uk\">УкраїнÑька</span></a></li></ul>\n"
554 "</div></li>\n"
555 "<li id=\"lang-1\">More than 50,000 articles: <div class=\"hlist inline\">\n"
556 "<ul><li><a class=\"external text\" href=\"https://bs.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Bosnian (bs:)\" lang=\"bs\">Bosanski</span></a></li>\n"
557 "<li><a class=\"external text\" href=\"https://bg.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Bulgarian (bg:)\" lang=\"bg\">БългарÑки</span></a></li>\n"
558 "<li><a class=\"external text\" href=\"https://da.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Danish (da:)\" lang=\"da\">Dansk</span></a></li>\n"
559 "<li><a class=\"external text\" href=\"https://et.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Estonian (et:)\" lang=\"et\">Eesti</span></a></li>\n"
560 "<li><a class=\"external text\" href=\"https://el.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Greek (el:)\" lang=\"el\">Ελληνικά</span></a></li>\n"
561 "<li><a class=\"external text\" href=\"https://simple.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Simple English (simple:)\" lang=\"simple\">English (simple form)</span></a></li>\n"
562 "<li><a class=\"external text\" href=\"https://eo.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Esperanto (eo:)\" lang=\"eo\">Esperanto</span></a></li>\n"
563 "<li><a class=\"external text\" href=\"https://gl.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Galician (gl:)\" lang=\"gl\">Galego</span></a></li>\n"
564 "<li><a class=\"external text\" href=\"https://he.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Hebrew (he:)\" lang=\"he\">עברית</span></a></li>\n"
565 "<li><a class=\"external text\" href=\"https://hr.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Croatian (hr:)\" lang=\"hr\">Hrvatski</span></a></li>\n"
566 "<li><a class=\"external text\" href=\"https://lv.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Latvian (lv:)\" lang=\"lv\">Latviešu</span></a></li>\n"
567 "<li><a class=\"external text\" href=\"https://lt.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Lithuanian (lt:)\" lang=\"lt\">Lietuvių</span></a></li>\n"
568 "<li><a class=\"external text\" href=\"https://ml.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Malayalam (ml:)\" lang=\"ml\">മലയാളം</span></a></li>\n"
569 "<li><a class=\"external text\" href=\"https://nn.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Norwegian Nynorsk (nn:)\" lang=\"nn\">Norsk nynorsk</span></a></li>\n"
570 "<li><a class=\"external text\" href=\"https://sk.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Slovak (sk:)\" lang=\"sk\">SlovenÄina</span></a></li>\n"
571 "<li><a class=\"external text\" href=\"https://sl.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Slovenian (sl:)\" lang=\"sl\">SlovenÅ¡Äina</span></a></li>\n"
572 "<li><a class=\"external text\" href=\"https://th.wikipedia.org/wiki/\"><span class=\"autonym\" title=\"Thai (th:)\" lang=\"th\">ไทย</span></a></li></ul>\n"
573 "</div></li>\n"
574 "</ul>\n"
575 "</div>\n"
576 "<div id=\"metalink\" style=\"text-align:center;\" class=\"plainlinks\"><strong><a href=\"https://meta.wikimedia.org/wiki/List_of_Wikipedias\" class=\"extiw\" title=\"meta:List of Wikipedias\">Complete list of Wikipedias</a></strong></div></div>\n"
577 "</div>\n"
578 "\n"
579 "<!-- \n"
580 "NewPP limit report\n"
581 "Parsed by mw1324\n"
582 "Cached time: 20180809181018\n"
583 "Cache expiry: 3600\n"
584 "Dynamic content: true\n"
585 "CPU time usage: 0.268 seconds\n"
586 "Real time usage: 0.339 seconds\n"
587 "Preprocessor visited node count: 3080/1000000\n"
588 "Preprocessor generated node count: 0/1500000\n"
589 "Postâ€expand include size: 109481/2097152 bytes\n"
590 "Template argument size: 6453/2097152 bytes\n"
591 "Highest expansion depth: 16/40\n"
592 "Expensive parser function count: 6/500\n"
593 "Unstrip recursion depth: 0/20\n"
594 "Unstrip postâ€expand size: 0/5000000 bytes\n"
595 "Number of Wikibase entities loaded: 0/400\n"
596 "Lua time usage: 0.055/10.000 seconds\n"
597 "Lua memory usage: 1.82 MB/50 MB\n"
598 "-->\n"
599 "<!--\n"
600 "Transclusion expansion time report (%,ms,calls,template)\n"
601 "100.00% 233.997 1 -total\n"
602 " 40.53% 94.842 1 Wikipedia:Main_Page/Tomorrow\n"
603 " 33.27% 77.861 7 Template:Main_page_image\n"
604 " 17.57% 41.106 2 Template:Wikipedia_languages\n"
605 " 16.89% 39.521 9 Template:Remove_file_prefix\n"
606 " 14.56% 34.067 1 Wikipedia:Today's_featured_article/August_9,_2018\n"
607 " 12.32% 28.835 90 Template:Wikipedia_languages/core\n"
608 " 12.08% 28.265 2 Template:TFAIMAGE\n"
609 " 11.84% 27.709 1 Template:Did_you_know\n"
610 " 11.79% 27.600 20 Template:If_empty\n"
611 "-->\n"
612 "</div>\n"
613 "<!-- Saved in parser cache with key enwiki:pcache:idhash:15580374-0!canonical and timestamp 20180809181018 and revision id 847600508\n"
614 " -->\n"
615 "<noscript><img src=\"//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1\" alt=\"\" title=\"\" width=\"1\" height=\"1\" style=\"border: none; position: absolute;\" /></noscript></div>\t\t\t\t\t<div class=\"printfooter\">\n"
616 "\t\t\t\t\t\tRetrieved from \"<a dir=\"ltr\" href=\"https://en.wikipedia.org/w/index.php?title=Main_Page&oldid=847600508\">https://en.wikipedia.org/w/index.php?title=Main_Page&oldid=847600508</a>\"\t\t\t\t\t</div>\n"
617 "\t\t\t\t<div id=\"catlinks\" class=\"catlinks catlinks-allhidden\" data-mw=\"interface\"></div>\t\t\t\t<div class=\"visualClear\"></div>\n"
618 "\t\t\t\t\t\t\t</div>\n"
619 "\t\t</div>\n"
620 "\t\t<div id=\"mw-navigation\">\n"
621 "\t\t\t<h2>Navigation menu</h2>\n"
622 "\t\t\t<div id=\"mw-head\">\n"
623 "\t\t\t\t\t\t\t\t\t<div id=\"p-personal\" role=\"navigation\" class=\"\" aria-labelledby=\"p-personal-label\">\n"
624 "\t\t\t\t\t\t<h3 id=\"p-personal-label\">Personal tools</h3>\n"
625 "\t\t\t\t\t\t<ul>\n"
626 "\t\t\t\t\t\t\t<li id=\"pt-anonuserpage\">Not logged in</li><li id=\"pt-anontalk\"><a href=\"/wiki/Special:MyTalk\" title=\"Discussion about edits from this IP address [alt-shift-n]\" accesskey=\"n\">Talk</a></li><li id=\"pt-anoncontribs\"><a href=\"/wiki/Special:MyContributions\" title=\"A list of edits made from this IP address [alt-shift-y]\" accesskey=\"y\">Contributions</a></li><li id=\"pt-createaccount\"><a href=\"/w/index.php?title=Special:CreateAccount&returnto=Main+Page\" title=\"You are encouraged to create an account and log in; however, it is not mandatory\">Create account</a></li><li id=\"pt-login\"><a href=\"/w/index.php?title=Special:UserLogin&returnto=Main+Page\" title=\"You're encouraged to log in; however, it's not mandatory. [alt-shift-o]\" accesskey=\"o\">Log in</a></li>\t\t\t\t\t\t</ul>\n"
627 "\t\t\t\t\t</div>\n"
628 "\t\t\t\t\t\t\t\t\t<div id=\"left-navigation\">\n"
629 "\t\t\t\t\t\t\t\t\t\t<div id=\"p-namespaces\" role=\"navigation\" class=\"vectorTabs\" aria-labelledby=\"p-namespaces-label\">\n"
630 "\t\t\t\t\t\t<h3 id=\"p-namespaces-label\">Namespaces</h3>\n"
631 "\t\t\t\t\t\t<ul>\n"
632 "\t\t\t\t\t\t\t<li id=\"ca-nstab-main\" class=\"selected\"><span><a href=\"/wiki/Main_Page\" title=\"View the content page [alt-shift-c]\" accesskey=\"c\">Main Page</a></span></li><li id=\"ca-talk\"><span><a href=\"/wiki/Talk:Main_Page\" rel=\"discussion\" title=\"Discussion about the content page [alt-shift-t]\" accesskey=\"t\">Talk</a></span></li>\t\t\t\t\t\t</ul>\n"
633 "\t\t\t\t\t</div>\n"
634 "\t\t\t\t\t\t\t\t\t\t<div id=\"p-variants\" role=\"navigation\" class=\"vectorMenu emptyPortlet\" aria-labelledby=\"p-variants-label\">\n"
635 "\t\t\t\t\t\t\t\t\t\t\t\t<input type=\"checkbox\" class=\"vectorMenuCheckbox\" aria-labelledby=\"p-variants-label\">\n"
636 "\t\t\t\t\t\t<h3 id=\"p-variants-label\">\n"
637 "\t\t\t\t\t\t\t<span>Variants</span>\n"
638 "\t\t\t\t\t\t</h3>\n"
639 "\t\t\t\t\t\t<div class=\"menu\">\n"
640 "\t\t\t\t\t\t\t<ul>\n"
641 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ul>\n"
642 "\t\t\t\t\t\t</div>\n"
643 "\t\t\t\t\t</div>\n"
644 "\t\t\t\t\t\t\t\t\t</div>\n"
645 "\t\t\t\t<div id=\"right-navigation\">\n"
646 "\t\t\t\t\t\t\t\t\t\t<div id=\"p-views\" role=\"navigation\" class=\"vectorTabs\" aria-labelledby=\"p-views-label\">\n"
647 "\t\t\t\t\t\t<h3 id=\"p-views-label\">Views</h3>\n"
648 "\t\t\t\t\t\t<ul>\n"
649 "\t\t\t\t\t\t\t<li id=\"ca-view\" class=\"collapsible selected\"><span><a href=\"/wiki/Main_Page\">Read</a></span></li><li id=\"ca-viewsource\" class=\"collapsible\"><span><a href=\"/w/index.php?title=Main_Page&action=edit\" title=\"This page is protected.\n"
650 "You can view its source [alt-shift-e]\" accesskey=\"e\">View source</a></span></li><li id=\"ca-history\" class=\"collapsible\"><span><a href=\"/w/index.php?title=Main_Page&action=history\" title=\"Past revisions of this page [alt-shift-h]\" accesskey=\"h\">View history</a></span></li>\t\t\t\t\t\t</ul>\n"
651 "\t\t\t\t\t</div>\n"
652 "\t\t\t\t\t\t\t\t\t\t<div id=\"p-cactions\" role=\"navigation\" class=\"vectorMenu emptyPortlet\" aria-labelledby=\"p-cactions-label\" style=\"\">\n"
653 "\t\t\t\t\t\t<input type=\"checkbox\" class=\"vectorMenuCheckbox\" aria-labelledby=\"p-cactions-label\">\n"
654 "\t\t\t\t\t\t<h3 id=\"p-cactions-label\"><span>More</span></h3>\n"
655 "\t\t\t\t\t\t<div class=\"menu\">\n"
656 "\t\t\t\t\t\t\t<ul>\n"
657 "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</ul>\n"
658 "\t\t\t\t\t\t</div>\n"
659 "\t\t\t\t\t</div>\n"
660 "\t\t\t\t\t\t\t\t\t\t<div id=\"p-search\" role=\"search\">\n"
661 "\t\t\t\t\t\t<h3>\n"
662 "\t\t\t\t\t\t\t<label for=\"searchInput\">Search</label>\n"
663 "\t\t\t\t\t\t</h3>\n"
664 "\t\t\t\t\t\t<form action=\"/w/index.php\" id=\"searchform\">\n"
665 "\t\t\t\t\t\t\t<div id=\"simpleSearch\">\n"
666 "\t\t\t\t\t\t\t\t<input type=\"search\" name=\"search\" placeholder=\"Search Wikipedia\" title=\"Search Wikipedia [alt-shift-f]\" accesskey=\"f\" id=\"searchInput\" tabindex=\"1\" autocomplete=\"off\"><input type=\"hidden\" value=\"Special:Search\" name=\"title\"><input type=\"submit\" name=\"go\" value=\"Go\" title=\"Go to a page with this exact name if it exists\" id=\"searchButton\" class=\"searchButton\">\t\t\t\t\t\t\t</div>\n"
667 "\t\t\t\t\t\t</form>\n"
668 "\t\t\t\t\t</div>\n"
669 "\t\t\t\t\t\t\t\t\t</div>\n"
670 "\t\t\t</div>\n"
671 "\t\t\t<div id=\"mw-panel\">\n"
672 "\t\t\t\t<div id=\"p-logo\" role=\"banner\"><a class=\"mw-wiki-logo\" href=\"/wiki/Main_Page\" title=\"Visit the main page\"></a></div>\n"
673 "\t\t\t\t\t\t<div class=\"portal\" role=\"navigation\" id=\"p-navigation\" aria-labelledby=\"p-navigation-label\">\n"
674 "\t\t\t<h3 id=\"p-navigation-label\">Navigation</h3>\n"
675 "\t\t\t<div class=\"body\">\n"
676 "\t\t\t\t\t\t\t\t<ul>\n"
677 "\t\t\t\t\t<li id=\"n-mainpage-description\"><a href=\"/wiki/Main_Page\" title=\"Visit the main page [alt-shift-z]\" accesskey=\"z\">Main page</a></li><li id=\"n-contents\"><a href=\"/wiki/Portal:Contents\" title=\"Guides to browsing Wikipedia\">Contents</a></li><li id=\"n-featuredcontent\"><a href=\"/wiki/Portal:Featured_content\" title=\"Featured content – the best of Wikipedia\">Featured content</a></li><li id=\"n-currentevents\"><a href=\"/wiki/Portal:Current_events\" title=\"Find background information on current events\">Current events</a></li><li id=\"n-randompage\"><a href=\"/wiki/Special:Random\" title=\"Load a random article [alt-shift-x]\" accesskey=\"x\">Random article</a></li><li id=\"n-sitesupport\"><a href=\"https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=C13_en.wikipedia.org&uselang=en\" title=\"Support us\">Donate to Wikipedia</a></li><li id=\"n-shoplink\"><a href=\"//shop.wikimedia.org\" title=\"Visit the Wikipedia store\">Wikipedia store</a></li>\t\t\t\t</ul>\n"
678 "\t\t\t\t\t\t\t</div>\n"
679 "\t\t</div>\n"
680 "\t\t\t<div class=\"portal\" role=\"navigation\" id=\"p-interaction\" aria-labelledby=\"p-interaction-label\">\n"
681 "\t\t\t<h3 id=\"p-interaction-label\">Interaction</h3>\n"
682 "\t\t\t<div class=\"body\">\n"
683 "\t\t\t\t\t\t\t\t<ul>\n"
684 "\t\t\t\t\t<li id=\"n-help\"><a href=\"/wiki/Help:Contents\" title=\"Guidance on how to use and edit Wikipedia\">Help</a></li><li id=\"n-aboutsite\"><a href=\"/wiki/Wikipedia:About\" title=\"Find out about Wikipedia\">About Wikipedia</a></li><li id=\"n-portal\"><a href=\"/wiki/Wikipedia:Community_portal\" title=\"About the project, what you can do, where to find things\">Community portal</a></li><li id=\"n-recentchanges\"><a href=\"/wiki/Special:RecentChanges\" title=\"A list of recent changes in the wiki [alt-shift-r]\" accesskey=\"r\">Recent changes</a></li><li id=\"n-contactpage\"><a href=\"//en.wikipedia.org/wiki/Wikipedia:Contact_us\" title=\"How to contact Wikipedia\">Contact page</a></li>\t\t\t\t</ul>\n"
685 "\t\t\t\t\t\t\t</div>\n"
686 "\t\t</div>\n"
687 "\t\t\t<div class=\"portal\" role=\"navigation\" id=\"p-tb\" aria-labelledby=\"p-tb-label\">\n"
688 "\t\t\t<h3 id=\"p-tb-label\">Tools</h3>\n"
689 "\t\t\t<div class=\"body\">\n"
690 "\t\t\t\t\t\t\t\t<ul>\n"
691 "\t\t\t\t\t<li id=\"t-whatlinkshere\"><a href=\"/wiki/Special:WhatLinksHere/Main_Page\" title=\"List of all English Wikipedia pages containing links to this page [alt-shift-j]\" accesskey=\"j\">What links here</a></li><li id=\"t-recentchangeslinked\"><a href=\"/wiki/Special:RecentChangesLinked/Main_Page\" rel=\"nofollow\" title=\"Recent changes in pages linked from this page [alt-shift-k]\" accesskey=\"k\">Related changes</a></li><li id=\"t-upload\"><a href=\"/wiki/Wikipedia:File_Upload_Wizard\" title=\"Upload files [alt-shift-u]\" accesskey=\"u\">Upload file</a></li><li id=\"t-specialpages\"><a href=\"/wiki/Special:SpecialPages\" title=\"A list of all special pages [alt-shift-q]\" accesskey=\"q\">Special pages</a></li><li id=\"t-permalink\"><a href=\"/w/index.php?title=Main_Page&oldid=847600508\" title=\"Permanent link to this revision of the page\">Permanent link</a></li><li id=\"t-info\"><a href=\"/w/index.php?title=Main_Page&action=info\" title=\"More information about this page\">Page information</a></li><li id=\"t-wikibase\"><a href=\"https://www.wikidata.org/wiki/Special:EntityPage/Q5296\" title=\"Link to connected data repository item [alt-shift-g]\" accesskey=\"g\">Wikidata item</a></li><li id=\"t-cite\"><a href=\"/w/index.php?title=Special:CiteThisPage&page=Main_Page&id=847600508\" title=\"Information on how to cite this page\">Cite this page</a></li>\t\t\t\t</ul>\n"
692 "\t\t\t\t\t\t\t</div>\n"
693 "\t\t</div>\n"
694 "\t\t\t<div class=\"portal\" role=\"navigation\" id=\"p-coll-print_export\" aria-labelledby=\"p-coll-print_export-label\">\n"
695 "\t\t\t<h3 id=\"p-coll-print_export-label\">Print/export</h3>\n"
696 "\t\t\t<div class=\"body\">\n"
697 "\t\t\t\t\t\t\t\t<ul>\n"
698 "\t\t\t\t\t<li id=\"coll-create_a_book\"><a href=\"/w/index.php?title=Special:Book&bookcmd=book_creator&referer=Main+Page\">Create a book</a></li><li id=\"coll-download-as-rdf2latex\"><a href=\"/w/index.php?title=Special:ElectronPdf&page=Main+Page&action=show-download-screen\">Download as PDF</a></li><li id=\"t-print\"><a href=\"/w/index.php?title=Main_Page&printable=yes\" title=\"Printable version of this page [alt-shift-p]\" accesskey=\"p\">Printable version</a></li>\t\t\t\t</ul>\n"
699 "\t\t\t\t\t\t\t</div>\n"
700 "\t\t</div>\n"
701 "\t\t\t<div class=\"portal\" role=\"navigation\" id=\"p-wikibase-otherprojects\" aria-labelledby=\"p-wikibase-otherprojects-label\">\n"
702 "\t\t\t<h3 id=\"p-wikibase-otherprojects-label\">In other projects</h3>\n"
703 "\t\t\t<div class=\"body\">\n"
704 "\t\t\t\t\t\t\t\t<ul>\n"
705 "\t\t\t\t\t<li class=\"wb-otherproject-link wb-otherproject-commons\"><a href=\"https://commons.wikimedia.org/wiki/Main_Page\" hreflang=\"en\">Wikimedia Commons</a></li><li class=\"wb-otherproject-link wb-otherproject-mediawiki\"><a href=\"https://www.mediawiki.org/wiki/MediaWiki\" hreflang=\"en\">MediaWiki</a></li><li class=\"wb-otherproject-link wb-otherproject-meta\"><a href=\"https://meta.wikimedia.org/wiki/Main_Page\" hreflang=\"en\">Meta-Wiki</a></li><li class=\"wb-otherproject-link wb-otherproject-species\"><a href=\"https://species.wikimedia.org/wiki/Main_Page\" hreflang=\"en\">Wikispecies</a></li><li class=\"wb-otherproject-link wb-otherproject-wikibooks\"><a href=\"https://en.wikibooks.org/wiki/Main_Page\" hreflang=\"en\">Wikibooks</a></li><li class=\"wb-otherproject-link wb-otherproject-wikidata\"><a href=\"https://www.wikidata.org/wiki/Wikidata:Main_Page\" hreflang=\"en\">Wikidata</a></li><li class=\"wb-otherproject-link wb-otherproject-wikinews\"><a href=\"https://en.wikinews.org/wiki/Main_Page\" hreflang=\"en\">Wikinews</a></li><li class=\"wb-otherproject-link wb-otherproject-wikiquote\"><a href=\"https://en.wikiquote.org/wiki/Main_Page\" hreflang=\"en\">Wikiquote</a></li><li class=\"wb-otherproject-link wb-otherproject-wikisource\"><a href=\"https://en.wikisource.org/wiki/Main_Page\" hreflang=\"en\">Wikisource</a></li><li class=\"wb-otherproject-link wb-otherproject-wikiversity\"><a href=\"https://en.wikiversity.org/wiki/Wikiversity:Main_Page\" hreflang=\"en\">Wikiversity</a></li><li class=\"wb-otherproject-link wb-otherproject-wikivoyage\"><a href=\"https://en.wikivoyage.org/wiki/Main_Page\" hreflang=\"en\">Wikivoyage</a></li><li class=\"wb-otherproject-link wb-otherproject-wiktionary\"><a href=\"https://en.wiktionary.org/wiki/Wiktionary:Main_Page\" hreflang=\"en\">Wiktionary</a></li>\t\t\t\t</ul>\n"
706 "\t\t\t\t\t\t\t</div>\n"
707 "\t\t</div>\n"
708 "\t\t\t<div class=\"portal\" role=\"navigation\" id=\"p-lang\" aria-labelledby=\"p-lang-label\"><button class=\"uls-settings-trigger\" title=\"Language settings\"></button>\n"
709 "\t\t\t<h3 id=\"p-lang-label\">Languages</h3>\n"
710 "\t\t\t<div class=\"body\">\n"
711 "\t\t\t\t\t\t\t\t<ul>\n"
712 "\t\t\t\t\t<li class=\"interlanguage-link interwiki-ar\"><a href=\"https://ar.wikipedia.org/wiki/\" title=\"Arabic\" lang=\"ar\" hreflang=\"ar\" class=\"interlanguage-link-target\">العربية</a></li><li class=\"interlanguage-link interwiki-bg\"><a href=\"https://bg.wikipedia.org/wiki/\" title=\"Bulgarian\" lang=\"bg\" hreflang=\"bg\" class=\"interlanguage-link-target\">БългарÑки</a></li><li class=\"interlanguage-link interwiki-bs\"><a href=\"https://bs.wikipedia.org/wiki/\" title=\"Bosnian\" lang=\"bs\" hreflang=\"bs\" class=\"interlanguage-link-target\">Bosanski</a></li><li class=\"interlanguage-link interwiki-ca\"><a href=\"https://ca.wikipedia.org/wiki/\" title=\"Catalan\" lang=\"ca\" hreflang=\"ca\" class=\"interlanguage-link-target\">Català </a></li><li class=\"interlanguage-link interwiki-cs\"><a href=\"https://cs.wikipedia.org/wiki/\" title=\"Czech\" lang=\"cs\" hreflang=\"cs\" class=\"interlanguage-link-target\">ÄŒeÅ¡tina</a></li><li class=\"interlanguage-link interwiki-da\"><a href=\"https://da.wikipedia.org/wiki/\" title=\"Danish\" lang=\"da\" hreflang=\"da\" class=\"interlanguage-link-target\">Dansk</a></li><li class=\"interlanguage-link interwiki-de\"><a href=\"https://de.wikipedia.org/wiki/\" title=\"German\" lang=\"de\" hreflang=\"de\" class=\"interlanguage-link-target\">Deutsch</a></li><li class=\"interlanguage-link interwiki-et\"><a href=\"https://et.wikipedia.org/wiki/\" title=\"Estonian\" lang=\"et\" hreflang=\"et\" class=\"interlanguage-link-target\">Eesti</a></li><li class=\"interlanguage-link interwiki-el\"><a href=\"https://el.wikipedia.org/wiki/\" title=\"Greek\" lang=\"el\" hreflang=\"el\" class=\"interlanguage-link-target\">Ελληνικά</a></li><li class=\"interlanguage-link interwiki-es\"><a href=\"https://es.wikipedia.org/wiki/\" title=\"Spanish\" lang=\"es\" hreflang=\"es\" class=\"interlanguage-link-target\">Español</a></li><li class=\"interlanguage-link interwiki-eo\"><a href=\"https://eo.wikipedia.org/wiki/\" title=\"Esperanto\" lang=\"eo\" hreflang=\"eo\" class=\"interlanguage-link-target\">Esperanto</a></li><li class=\"interlanguage-link interwiki-eu\"><a href=\"https://eu.wikipedia.org/wiki/\" title=\"Basque\" lang=\"eu\" hreflang=\"eu\" class=\"interlanguage-link-target\">Euskara</a></li><li class=\"interlanguage-link interwiki-fa\"><a href=\"https://fa.wikipedia.org/wiki/\" title=\"Persian\" lang=\"fa\" hreflang=\"fa\" class=\"interlanguage-link-target\">ÙØ§Ø±Ø³ÛŒ</a></li><li class=\"interlanguage-link interwiki-fr\"><a href=\"https://fr.wikipedia.org/wiki/\" title=\"French\" lang=\"fr\" hreflang=\"fr\" class=\"interlanguage-link-target\">Français</a></li><li class=\"interlanguage-link interwiki-gl\"><a href=\"https://gl.wikipedia.org/wiki/\" title=\"Galician\" lang=\"gl\" hreflang=\"gl\" class=\"interlanguage-link-target\">Galego</a></li><li class=\"interlanguage-link interwiki-ko\"><a href=\"https://ko.wikipedia.org/wiki/\" title=\"Korean\" lang=\"ko\" hreflang=\"ko\" class=\"interlanguage-link-target\">한êµì–´</a></li><li class=\"interlanguage-link interwiki-hr\"><a href=\"https://hr.wikipedia.org/wiki/\" title=\"Croatian\" lang=\"hr\" hreflang=\"hr\" class=\"interlanguage-link-target\">Hrvatski</a></li><li class=\"interlanguage-link interwiki-id\"><a href=\"https://id.wikipedia.org/wiki/\" title=\"Indonesian\" lang=\"id\" hreflang=\"id\" class=\"interlanguage-link-target\">Bahasa Indonesia</a></li><li class=\"interlanguage-link interwiki-it\"><a href=\"https://it.wikipedia.org/wiki/\" title=\"Italian\" lang=\"it\" hreflang=\"it\" class=\"interlanguage-link-target\">Italiano</a></li><li class=\"interlanguage-link interwiki-he\"><a href=\"https://he.wikipedia.org/wiki/\" title=\"Hebrew\" lang=\"he\" hreflang=\"he\" class=\"interlanguage-link-target\">עברית</a></li><li class=\"interlanguage-link interwiki-ka\"><a href=\"https://ka.wikipedia.org/wiki/\" title=\"Georgian\" lang=\"ka\" hreflang=\"ka\" class=\"interlanguage-link-target\">ქáƒáƒ თული</a></li><li class=\"interlanguage-link interwiki-lv\"><a href=\"https://lv.wikipedia.org/wiki/\" title=\"Latvian\" lang=\"lv\" hreflang=\"lv\" class=\"interlanguage-link-target\">LatvieÅ¡u</a></li><li class=\"interlanguage-link interwiki-lt\"><a href=\"https://lt.wikipedia.org/wiki/\" title=\"Lithuanian\" lang=\"lt\" hreflang=\"lt\" class=\"interlanguage-link-target\">Lietuvių</a></li><li class=\"interlanguage-link interwiki-hu\"><a href=\"https://hu.wikipedia.org/wiki/\" title=\"Hungarian\" lang=\"hu\" hreflang=\"hu\" class=\"interlanguage-link-target\">Magyar</a></li><li class=\"interlanguage-link interwiki-ms\"><a href=\"https://ms.wikipedia.org/wiki/\" title=\"Malay\" lang=\"ms\" hreflang=\"ms\" class=\"interlanguage-link-target\">Bahasa Melayu</a></li><li class=\"interlanguage-link interwiki-nl\"><a href=\"https://nl.wikipedia.org/wiki/\" title=\"Dutch\" lang=\"nl\" hreflang=\"nl\" class=\"interlanguage-link-target\">Nederlands</a></li><li class=\"interlanguage-link interwiki-ja\"><a href=\"https://ja.wikipedia.org/wiki/\" title=\"Japanese\" lang=\"ja\" hreflang=\"ja\" class=\"interlanguage-link-target\">日本語</a></li><li class=\"interlanguage-link interwiki-no\"><a href=\"https://no.wikipedia.org/wiki/\" title=\"Norwegian\" lang=\"no\" hreflang=\"no\" class=\"interlanguage-link-target\">Norsk</a></li><li class=\"interlanguage-link interwiki-nn\"><a href=\"https://nn.wikipedia.org/wiki/\" title=\"Norwegian Nynorsk\" lang=\"nn\" hreflang=\"nn\" class=\"interlanguage-link-target\">Norsk nynorsk</a></li><li class=\"interlanguage-link interwiki-pl\"><a href=\"https://pl.wikipedia.org/wiki/\" title=\"Polish\" lang=\"pl\" hreflang=\"pl\" class=\"interlanguage-link-target\">Polski</a></li><li class=\"interlanguage-link interwiki-pt\"><a href=\"https://pt.wikipedia.org/wiki/\" title=\"Portuguese\" lang=\"pt\" hreflang=\"pt\" class=\"interlanguage-link-target\">Português</a></li><li class=\"interlanguage-link interwiki-ro\"><a href=\"https://ro.wikipedia.org/wiki/\" title=\"Romanian\" lang=\"ro\" hreflang=\"ro\" class=\"interlanguage-link-target\">Română</a></li><li class=\"interlanguage-link interwiki-ru\"><a href=\"https://ru.wikipedia.org/wiki/\" title=\"Russian\" lang=\"ru\" hreflang=\"ru\" class=\"interlanguage-link-target\">РуÑÑкий</a></li><li class=\"interlanguage-link interwiki-simple\"><a href=\"https://simple.wikipedia.org/wiki/\" title=\"Simple English\" lang=\"simple\" hreflang=\"simple\" class=\"interlanguage-link-target\">Simple English</a></li><li class=\"interlanguage-link interwiki-sk\"><a href=\"https://sk.wikipedia.org/wiki/\" title=\"Slovak\" lang=\"sk\" hreflang=\"sk\" class=\"interlanguage-link-target\">SlovenÄina</a></li><li class=\"interlanguage-link interwiki-sl\"><a href=\"https://sl.wikipedia.org/wiki/\" title=\"Slovenian\" lang=\"sl\" hreflang=\"sl\" class=\"interlanguage-link-target\">SlovenÅ¡Äina</a></li><li class=\"interlanguage-link interwiki-sr\"><a href=\"https://sr.wikipedia.org/wiki/\" title=\"Serbian\" lang=\"sr\" hreflang=\"sr\" class=\"interlanguage-link-target\">СрпÑки / srpski</a></li><li class=\"interlanguage-link interwiki-sh\"><a href=\"https://sh.wikipedia.org/wiki/\" title=\"Serbo-Croatian\" lang=\"sh\" hreflang=\"sh\" class=\"interlanguage-link-target\">Srpskohrvatski / ÑрпÑкохрватÑки</a></li><li class=\"interlanguage-link interwiki-fi\"><a href=\"https://fi.wikipedia.org/wiki/\" title=\"Finnish\" lang=\"fi\" hreflang=\"fi\" class=\"interlanguage-link-target\">Suomi</a></li><li class=\"interlanguage-link interwiki-sv\"><a href=\"https://sv.wikipedia.org/wiki/\" title=\"Swedish\" lang=\"sv\" hreflang=\"sv\" class=\"interlanguage-link-target\">Svenska</a></li><li class=\"interlanguage-link interwiki-th\"><a href=\"https://th.wikipedia.org/wiki/\" title=\"Thai\" lang=\"th\" hreflang=\"th\" class=\"interlanguage-link-target\">ไทย</a></li><li class=\"interlanguage-link interwiki-tr\"><a href=\"https://tr.wikipedia.org/wiki/\" title=\"Turkish\" lang=\"tr\" hreflang=\"tr\" class=\"interlanguage-link-target\">Türkçe</a></li><li class=\"interlanguage-link interwiki-uk\"><a href=\"https://uk.wikipedia.org/wiki/\" title=\"Ukrainian\" lang=\"uk\" hreflang=\"uk\" class=\"interlanguage-link-target\">УкраїнÑька</a></li><li class=\"interlanguage-link interwiki-vi\"><a href=\"https://vi.wikipedia.org/wiki/\" title=\"Vietnamese\" lang=\"vi\" hreflang=\"vi\" class=\"interlanguage-link-target\">Tiếng Việt</a></li><li class=\"interlanguage-link interwiki-zh\"><a href=\"https://zh.wikipedia.org/wiki/\" title=\"Chinese\" lang=\"zh\" hreflang=\"zh\" class=\"interlanguage-link-target\">䏿–‡</a></li>\t\t\t\t<li id=\"interwiki-completelist\"><a href=\"//meta.wikimedia.org/wiki/List_of_Wikipedias\" title=\"Complete list of Wikipedias\">Complete list</a></li></ul>\n"
713 "\t\t\t\t\t\t\t</div>\n"
714 "\t\t</div>\n"
715 "\t\t\t\t</div>\n"
716 "\t\t</div>\n"
717 "\t\t\t\t<div id=\"footer\" role=\"contentinfo\">\n"
718 "\t\t\t\t\t\t<ul id=\"footer-info\">\n"
719 "\t\t\t\t\t\t\t\t<li id=\"footer-info-lastmod\"> This page was last edited on 26 June 2018, at 14:19<span class=\"anonymous-show\"> (UTC)</span>.</li>\n"
720 "\t\t\t\t\t\t\t\t<li id=\"footer-info-copyright\">Text is available under the <a rel=\"license\" href=\"//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License\">Creative Commons Attribution-ShareAlike License</a><a rel=\"license\" href=\"//creativecommons.org/licenses/by-sa/3.0/\" style=\"display:none;\"></a>;\n"
721 "additional terms may apply. By using this site, you agree to the <a href=\"//wikimediafoundation.org/wiki/Terms_of_Use\">Terms of Use</a> and <a href=\"//wikimediafoundation.org/wiki/Privacy_policy\">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a href=\"//www.wikimediafoundation.org/\">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>\n"
722 "\t\t\t\t\t\t\t</ul>\n"
723 "\t\t\t\t\t\t<ul id=\"footer-places\">\n"
724 "\t\t\t\t\t\t\t\t<li id=\"footer-places-privacy\"><a href=\"https://foundation.wikimedia.org/wiki/Privacy_policy\" class=\"extiw\" title=\"wmf:Privacy policy\">Privacy policy</a></li>\n"
725 "\t\t\t\t\t\t\t\t<li id=\"footer-places-about\"><a href=\"/wiki/Wikipedia:About\" title=\"Wikipedia:About\">About Wikipedia</a></li>\n"
726 "\t\t\t\t\t\t\t\t<li id=\"footer-places-disclaimer\"><a href=\"/wiki/Wikipedia:General_disclaimer\" title=\"Wikipedia:General disclaimer\">Disclaimers</a></li>\n"
727 "\t\t\t\t\t\t\t\t<li id=\"footer-places-contact\"><a href=\"//en.wikipedia.org/wiki/Wikipedia:Contact_us\">Contact Wikipedia</a></li>\n"
728 "\t\t\t\t\t\t\t\t<li id=\"footer-places-developers\"><a href=\"https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute\">Developers</a></li>\n"
729 "\t\t\t\t\t\t\t\t<li id=\"footer-places-cookiestatement\"><a href=\"https://foundation.wikimedia.org/wiki/Cookie_statement\">Cookie statement</a></li>\n"
730 "\t\t\t\t\t\t\t\t<li id=\"footer-places-mobileview\"><a href=\"//en.m.wikipedia.org/w/index.php?title=Main_Page&mobileaction=toggle_view_mobile\" class=\"noprint stopMobileRedirectToggle\">Mobile view</a></li>\n"
731 "\t\t\t\t\t\t\t<li style=\"display: none;\"><a href=\"#\">Enable previews</a></li></ul>\n"
732 "\t\t\t\t\t\t\t\t\t\t<ul id=\"footer-icons\" class=\"noprint\">\n"
733 "\t\t\t\t\t\t\t\t\t\t<li id=\"footer-copyrightico\">\n"
734 "\t\t\t\t\t\t<a href=\"https://wikimediafoundation.org/\"><img src=\"/static/images/wikimedia-button.png\" srcset=\"/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x\" width=\"88\" height=\"31\" alt=\"Wikimedia Foundation\"></a>\t\t\t\t\t</li>\n"
735 "\t\t\t\t\t\t\t\t\t\t<li id=\"footer-poweredbyico\">\n"
736 "\t\t\t\t\t\t<a href=\"//www.mediawiki.org/\"><img src=\"/static/images/poweredby_mediawiki_88x31.png\" alt=\"Powered by MediaWiki\" srcset=\"/static/images/poweredby_mediawiki_132x47.png 1.5x, /static/images/poweredby_mediawiki_176x62.png 2x\" width=\"88\" height=\"31\"></a>\t\t\t\t\t</li>\n"
737 "\t\t\t\t\t\t\t\t\t</ul>\n"
738 "\t\t\t\t\t\t<div style=\"clear: both;\"></div>\n"
739 "\t\t</div>\n"
740 "\t\t\n"
741 "<script>(window.RLQ=window.RLQ||[]).push(function(){mw.config.set({\"wgPageParseReport\":{\"limitreport\":{\"cputime\":\"0.268\",\"walltime\":\"0.339\",\"ppvisitednodes\":{\"value\":3080,\"limit\":1000000},\"ppgeneratednodes\":{\"value\":0,\"limit\":1500000},\"postexpandincludesize\":{\"value\":109481,\"limit\":2097152},\"templateargumentsize\":{\"value\":6453,\"limit\":2097152},\"expansiondepth\":{\"value\":16,\"limit\":40},\"expensivefunctioncount\":{\"value\":6,\"limit\":500},\"unstrip-depth\":{\"value\":0,\"limit\":20},\"unstrip-size\":{\"value\":0,\"limit\":5000000},\"entityaccesscount\":{\"value\":0,\"limit\":400},\"timingprofile\":[\"100.00% 233.997 1 -total\",\" 40.53% 94.842 1 Wikipedia:Main_Page/Tomorrow\",\" 33.27% 77.861 7 Template:Main_page_image\",\" 17.57% 41.106 2 Template:Wikipedia_languages\",\" 16.89% 39.521 9 Template:Remove_file_prefix\",\" 14.56% 34.067 1 Wikipedia:Today's_featured_article/August_9,_2018\",\" 12.32% 28.835 90 Template:Wikipedia_languages/core\",\" 12.08% 28.265 2 Template:TFAIMAGE\",\" 11.84% 27.709 1 Template:Did_you_know\",\" 11.79% 27.600 20 Template:If_empty\"]},\"scribunto\":{\"limitreport-timeusage\":{\"value\":\"0.055\",\"limit\":\"10.000\"},\"limitreport-memusage\":{\"value\":1912302,\"limit\":52428800}},\"cachereport\":{\"origin\":\"mw1324\",\"timestamp\":\"20180809181018\",\"ttl\":3600,\"transientcontent\":true}}});mw.config.set({\"wgBackendResponseTime\":81,\"wgHostname\":\"mw1253\"});});</script>\n"
742 "\t\n"
743 "\n"
744 "<div class=\"suggestions\" style=\"display: none; font-size: 13px;\"><div class=\"suggestions-results\"></div><div class=\"suggestions-special\"></div></div><div id=\"mwe-popups-svg\"><svg xmlns=\"http://www.w3.org/2000/svg\" width=\"0\" height=\"0\"><defs><clipPath id=\"mwe-popups-mask\"><polygon points=\"0 8, 10 8, 18 0, 26 8, 1000 8, 1000 1000, 0 1000\"></polygon></clipPath><clipPath id=\"mwe-popups-mask-flip\"><polygon points=\"0 8, 274 8, 282 0, 290 8, 1000 8, 1000 1000, 0 1000\"></polygon></clipPath><clipPath id=\"mwe-popups-landscape-mask\"><polygon points=\"0 8, 174 8, 182 0, 190 8, 1000 8, 1000 1000, 0 1000\"></polygon></clipPath><clipPath id=\"mwe-popups-landscape-mask-flip\"><polygon points=\"0 0, 1000 0, 1000 242, 190 242, 182 250, 174 242, 0 242\"></polygon></clipPath></defs></svg></div></body></html>";
745 Tag* html = parse(testHtml);
746 html->repr();
747}