From 7f9d1bb4f0c36b7e614ffb940edd58550eef32d5 Mon Sep 17 00:00:00 2001 From: Christoph Hart Date: Thu, 8 Jun 2017 12:25:18 +0200 Subject: [PATCH] - Scripting API: added viewport - implemented #24 --- .../scripting/api/ScriptComponentWrappers.cpp | 51 + .../scripting/api/ScriptComponentWrappers.h | 14 + .../scripting/api/ScriptingApiContent.cpp | 27 + .../scripting/api/ScriptingApiContent.h | 22 + .../scripting/api/ScriptingApiWrappers.cpp | 20 + hi_scripting/scripting/api/XmlApi.cpp | 3430 +++++++++-------- hi_scripting/scripting/api/XmlApi.h | 2 +- .../components/ScriptingContentComponent.cpp | 15 +- .../components/ScriptingContentOverlay.cpp | 42 +- .../components/ScriptingContentOverlay.h | 1 + 10 files changed, 1904 insertions(+), 1720 deletions(-) diff --git a/hi_scripting/scripting/api/ScriptComponentWrappers.cpp b/hi_scripting/scripting/api/ScriptComponentWrappers.cpp index 61da9423b..7b24f39c5 100644 --- a/hi_scripting/scripting/api/ScriptComponentWrappers.cpp +++ b/hi_scripting/scripting/api/ScriptComponentWrappers.cpp @@ -448,6 +448,57 @@ void ScriptCreatedComponentWrappers::ModulatorMeterWrapper::updateComponent() dynamic_cast(component.get())->setTooltip(GET_SCRIPT_PROPERTY(tooltip)); } + +class DummyComponent: public Component +{ +public: + + DummyComponent() + { + setSize(4000, 4000); + } + + void paint(Graphics& g) + { + g.setGradientFill(ColourGradient(Colours::white.withAlpha(0.2f), 0.0f, 0.0f, Colours::black.withAlpha(0.2f), getWidth(), getHeight(), false)); + + g.fillAll(); + g.setColour(Colours::white.withAlpha(0.6f)); + g.drawRect(getLocalBounds(), 1.0f); + + } +}; + +ScriptCreatedComponentWrappers::ViewportWrapper::ViewportWrapper(ScriptContentComponent* content, ScriptingApi::Content::ScriptedViewport* viewport, int index): + ScriptCreatedComponentWrapper(content, index) +{ + Viewport* vp = new Viewport(); + + vp->setName(viewport->name.toString()); + + vp->setViewedComponent(new DummyComponent(), true); + + component = vp; +} + + +ScriptCreatedComponentWrappers::ViewportWrapper::~ViewportWrapper() +{ + +} + +void ScriptCreatedComponentWrappers::ViewportWrapper::updateComponent() +{ + auto vp = dynamic_cast(component.get()); + + auto vpc = dynamic_cast(getScriptComponent()); + + vp->setScrollBarThickness(vpc->getScriptObjectProperty(ScriptingApi::Content::ScriptedViewport::Properties::scrollbarThickness)); + + vp->setColour(ScrollBar::ColourIds::thumbColourId, GET_OBJECT_COLOUR(itemColour)); + +} + ScriptCreatedComponentWrappers::PlotterWrapper::PlotterWrapper(ScriptContentComponent *content, ScriptingApi::Content::ScriptedPlotter *p, int index): ScriptCreatedComponentWrapper(content, index) { diff --git a/hi_scripting/scripting/api/ScriptComponentWrappers.h b/hi_scripting/scripting/api/ScriptComponentWrappers.h index 7a4dae436..638531ce7 100644 --- a/hi_scripting/scripting/api/ScriptComponentWrappers.h +++ b/hi_scripting/scripting/api/ScriptComponentWrappers.h @@ -401,6 +401,20 @@ class ScriptCreatedComponentWrappers JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(PanelWrapper) }; + + class ViewportWrapper : public ScriptCreatedComponentWrapper + { + public: + + ViewportWrapper(ScriptContentComponent* content, ScriptingApi::Content::ScriptedViewport* viewport, int index); + + ~ViewportWrapper(); + + void updateComponent() override; + + + }; + class SliderPackWrapper : public ScriptCreatedComponentWrapper, public SliderPack::Listener { diff --git a/hi_scripting/scripting/api/ScriptingApiContent.cpp b/hi_scripting/scripting/api/ScriptingApiContent.cpp index 9a9b9205e..818809752 100644 --- a/hi_scripting/scripting/api/ScriptingApiContent.cpp +++ b/hi_scripting/scripting/api/ScriptingApiContent.cpp @@ -2239,6 +2239,25 @@ void ScriptingApi::Content::ScriptPanel::AsyncControlCallbackSender::handleAsync } +ScriptCreatedComponentWrapper * ScriptingApi::Content::ScriptedViewport::createComponentWrapper(ScriptContentComponent *content, int index) +{ + return new ScriptCreatedComponentWrappers::ViewportWrapper(content, this, index); +} + +ScriptingApi::Content::ScriptedViewport::ScriptedViewport(ProcessorWithScriptingContent* base, Content* parentContent, Identifier viewportName, int x, int y, int width, int height): + ScriptComponent(base, parentContent, viewportName, x, y, width, height) +{ + deactivatedProperties.add(getIdFor(ScriptComponent::Properties::macroControl)); + + propertyIds.add("scrollBarThickness"); ADD_AS_SLIDER_TYPE(0, 40, 1); + propertyIds.add("autoHide"); ADD_TO_TYPE_SELECTOR(SelectorTypes::ToggleSelector); + + + setDefaultValue(scrollbarThickness, 16.0); + setDefaultValue(autoHide, true); +} + + struct ScriptingApi::Content::ScriptedPlotter::Wrapper { API_VOID_METHOD_WRAPPER_2(ScriptedPlotter, addModulatorToPlotter); @@ -2518,6 +2537,7 @@ colour(Colour(0xff777777)) setMethod("addImage", Wrapper::addImage); setMethod("addModulatorMeter", Wrapper::addModulatorMeter); setMethod("addPlotter", Wrapper::addPlotter); + setMethod("addViewport", Wrapper::addScriptedViewport); setMethod("addPanel", Wrapper::addPanel); setMethod("addAudioWaveform", Wrapper::addAudioWaveform); setMethod("addSliderPack", Wrapper::addSliderPack); @@ -2636,6 +2656,13 @@ ScriptingApi::Content::ScriptLabel * ScriptingApi::Content::addLabel(Identifier return addComponent(labelName, x, y, 100, 50); }; + +ScriptingApi::Content::ScriptedViewport* ScriptingApi::Content::addScriptedViewport(Identifier viewportName, int x, int y) +{ + return addComponent(viewportName, x, y, 200, 100); +} + + ScriptingApi::Content::ScriptTable * ScriptingApi::Content::addTable(Identifier labelName, int x, int y) { return addComponent(labelName, x, y, 100, 50); diff --git a/hi_scripting/scripting/api/ScriptingApiContent.h b/hi_scripting/scripting/api/ScriptingApiContent.h index 40b62a46a..8f73a68cb 100644 --- a/hi_scripting/scripting/api/ScriptingApiContent.h +++ b/hi_scripting/scripting/api/ScriptingApiContent.h @@ -801,6 +801,25 @@ class ScriptingApi::Content : public ScriptingObject, // ======================================================================================================== }; + struct ScriptedViewport : public ScriptComponent + { + public: + + enum Properties + { + scrollbarThickness = ScriptComponent::numProperties, + autoHide, + numProperties + }; + + ScriptedViewport(ProcessorWithScriptingContent* base, Content* parentContent, Identifier viewportName, int x, int y, int width, int height); + + virtual Identifier getObjectName() const override { return "ScriptedViewport"; } + ScriptCreatedComponentWrapper *createComponentWrapper(ScriptContentComponent *content, int index) override; + + + }; + struct ScriptedPlotter : public ScriptComponent { @@ -956,6 +975,9 @@ class ScriptingApi::Content : public ScriptingObject, /** Adds a slider pack. */ ScriptSliderPack *addSliderPack(Identifier sliderPackName, int x, int y); + /** Adds a viewport. */ + ScriptedViewport* addScriptedViewport(Identifier viewportName, int x, int y); + /** Restore the widget from a JSON object. */ void setPropertiesFromJSON(const Identifier &name, const var &jsonData); diff --git a/hi_scripting/scripting/api/ScriptingApiWrappers.cpp b/hi_scripting/scripting/api/ScriptingApiWrappers.cpp index ec0bd513e..73fc8fbf8 100644 --- a/hi_scripting/scripting/api/ScriptingApiWrappers.cpp +++ b/hi_scripting/scripting/api/ScriptingApiWrappers.cpp @@ -64,6 +64,7 @@ struct ScriptingApi::Content::Wrapper static var addTable(const var::NativeFunctionArgs& args); static var addImage(const var::NativeFunctionArgs& args); static var addModulatorMeter(const var::NativeFunctionArgs& args); + static var addScriptedViewport(const var::NativeFunctionArgs& args); static var addPlotter(const var::NativeFunctionArgs& args); static var addModulatorToPlotter(const var::NativeFunctionArgs& args); static var addPanel(const var::NativeFunctionArgs& args); @@ -253,6 +254,25 @@ var ScriptingApi::Content::Wrapper::addPlotter (const var::NativeFunctionArgs& a }; +var ScriptingApi::Content::Wrapper::addScriptedViewport(const var::NativeFunctionArgs& args) +{ + if (ScriptingApi::Content* thisObject = GET_OBJECT(Content)) + { + if (args.numArguments == 1) + { + return thisObject->addScriptedViewport(Identifier(args.arguments[0]), 0, 0); + } + + CHECK_ARGUMENTS("addScriptedViewport()", 3); + + return thisObject->addScriptedViewport(Identifier(args.arguments[0]), args.arguments[1], args.arguments[2]); + } + + return var::undefined(); +} + + + var ScriptingApi::Content::Wrapper::addPanel (const var::NativeFunctionArgs& args) { if (ScriptingApi::Content* thisObject = GET_OBJECT(Content)) diff --git a/hi_scripting/scripting/api/XmlApi.cpp b/hi_scripting/scripting/api/XmlApi.cpp index 8f95831c5..c70959bb7 100644 --- a/hi_scripting/scripting/api/XmlApi.cpp +++ b/hi_scripting/scripting/api/XmlApi.cpp @@ -19,7 +19,7 @@ static const unsigned char temp1[] = {65,112,105,0,0,1,31,67,111,108,111,117,114 104,111,100,0,1,4,110,97,109,101,0,1,6,5,115,116,111,112,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114, 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,83,116,111,112,115,32,116,104,101,32,98,101,110,99,104, 109,97,114,107,32,97,110,100,32,112,114,105,110,116,115,32,116,104,101,32,114,101,115,117,108,116,46,32,0,0,67,111,110,116,101,110,116,0,0,1, - 22,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,97,100,100,65,117,100,105,111,87,97,118,101,102,111,114,109,0,97,114,103,117,109, + 23,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,97,100,100,65,117,100,105,111,87,97,118,101,102,111,114,109,0,97,114,103,117,109, 101,110,116,115,0,1,42,5,40,83,116,114,105,110,103,32,97,117,100,105,111,87,97,118,101,102,111,114,109,78,97,109,101,44,32,105,110,116,32,120, 44,32,105,110,116,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,24,5,83,99,114,105,112,116,65,117,100,105,111,87,97,118,101,102,111, 114,109,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,65,100,100,115,32,97,32,97,117,100,105,111,32,119,97,118,101,102,111, @@ -58,1159 +58,1321 @@ static const unsigned char temp1[] = {65,112,105,0,0,1,31,67,111,108,111,117,114 32,105,110,116,32,120,44,32,105,110,116,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,20,5,83,99,114,105,112,116,101,100,80,108,111, 116,116,101,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,65,100,100,115,32,97,32,112,108,111,116,116,101,114,32,116,104, 97,116,32,112,108,111,116,115,32,109,117,108,116,105,112,108,101,32,109,111,100,117,108,97,116,111,114,115,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,15,5,97,100,100,83,108,105,100,101,114,80,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,83,116,114, - 105,110,103,32,115,108,105,100,101,114,80,97,99,107,78,97,109,101,44,32,105,110,116,32,120,44,32,105,110,116,32,121,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,21,5,83,99,114,105,112,116,83,108,105,100,101,114,80,97,99,107,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,22,5,65,100,100,115,32,97,32,115,108,105,100,101,114,32,112,97,99,107,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 10,5,97,100,100,84,97,98,108,101,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,116,97,98,108,101,78,97,109, - 101,44,32,105,110,116,32,120,44,32,105,110,116,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,16,5,83,99,114,105,112,116,84,97,98, - 108,101,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,70,5,65,100,100,115,32,97,32,116,97,98,108,101,32,101,100,105,116,111,114, - 32,116,111,32,116,104,101,32,67,111,110,116,101,110,116,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,99,111,109,112,111,110,101,110, - 116,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,99,114,101,97,116,101,80,97,116,104,0,97, - 114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,53,5,67,114,101,97,116,101,115,32,97,32,80,97,116,104,32,116,104,97,116,32,99,97,110,32,98,101,32,100,114,97,119, - 110,32,116,111,32,97,32,83,99,114,105,112,116,80,97,110,101,108,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,109, - 97,107,101,70,114,111,110,116,73,110,116,101,114,102,97,99,101,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,105,110,116,32,119,105,100,116, - 104,44,32,105,110,116,32,104,101,105,103,104,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,58,5,83,101,116,115,32,116,104,105,115,32,115,99,114,105,112,116,32,97,115,32,109,97,105,110,32,105,110,116,101,114,102,97,99,101,32, - 119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,115,105,122,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,30,5, - 114,101,115,116,111,114,101,65,108,108,67,111,110,116,114,111,108,115,70,114,111,109,80,114,101,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1, - 20,5,40,32,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,63,5,82,101,115,116,111,114,101,115,32,97,108,108,32,99,111,110,116,114,111,108,115,32,102,114,111,109,32,97,32, - 112,114,101,118,105,111,117,115,108,121,32,115,97,118,101,100,32,88,77,76,32,100,97,116,97,32,102,105,108,101,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,32,5,40,105,110,116,32,114, - 101,100,44,32,105,110,116,32,103,114,101,101,110,44,32,105,110,116,32,98,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,83,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,102,111,114,32,116,104,101,32,112, - 97,110,101,108,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,115,101,116,67,111,110,116,101,110,116,84,111,111,108,116, - 105,112,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,84,111,83,104,111,119,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,88,5,115,101,116,115,32,116,104,101,32,84, - 111,111,108,116,105,112,32,116,104,97,116,32,119,105,108,108,32,98,101,32,115,104,111,119,110,32,105,102,32,116,104,101,32,109,111,117,115,101,32,104, - 111,118,101,114,115,32,111,118,101,114,32,116,104,101,32,115,99,114,105,112,116,39,115,32,116,97,98,32,98,117,116,116,111,110,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,105, - 110,116,32,110,101,119,72,101,105,103,104,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,34,5,83,101,116,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,110,116,101,110,116,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101,116,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116, - 114,105,110,103,32,110,101,119,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,58,5,83,101,116,115,32,116,104,101,32,110,97,109,101,32,116,104,97,116,32,119,105,108,108,32,98,101,32,100,105,115,112,108,97,121,101,100, - 32,105,110,32,98,105,103,32,102,97,116,32,73,109,112,97,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115, - 101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,31,5,40,32,83,116,114,105, - 110,103,32,110,97,109,101,44,32,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, - 101,115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,115,116,111,114,101,32,116,104,101,32,119,105,100,103,101,116,32,102,114,111,109,32,97,32, - 74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,115,101,116,84,111,111,108,98, - 97,114,80,114,111,112,101,114,116,105,101,115,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,32,118,97,114,32,116,111,111,108,98,97,114,80, - 114,111,112,101,114,116,105,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,55, - 5,83,101,116,115,32,116,104,101,32,109,97,105,110,32,116,111,111,108,98,97,114,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97, - 32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,87,105,100,116, - 104,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,105,110,116,32,110,101,119,87,105,100,116,104,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,83,101,116,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116, - 104,101,32,99,111,110,116,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,26,5,115,116,111,114,101,65,108,108,67, - 111,110,116,114,111,108,115,65,115,80,114,101,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,47,5,40,32,83,116,114,105,110,103,32,102,105, - 108,101,78,97,109,101,44,32,32,86,97,108,117,101,84,114,101,101,32,97,117,116,111,109,97,116,105,111,110,68,97,116,97,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,64,5,83,97,118,101,115,32,97,108,108,32,99,111,110,116,114, - 111,108,115,32,116,104,97,116,32,115,104,111,117,108,100,32,98,101,32,115,97,118,101,100,32,105,110,116,111,32,97,32,88,77,76,32,100,97,116,97, - 32,102,105,108,101,46,32,0,0,69,110,103,105,110,101,0,0,1,33,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,97,108,108,78, - 111,116,101,115,79,102,102,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, - 101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,110,100,115,32,97,110,32,97,108,108,78,111,116,101,115,79,102,102,32,109,101,115,115,97, - 103,101,32,97,116,32,116,104,101,32,110,101,120,116,32,98,117,102,102,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 21,5,99,114,101,97,116,101,77,101,115,115,97,103,101,72,111,108,100,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,45,5,83,99,114,105,112,116,105,110,103,79,98,106,101,99,116,115,58,58,83,99,114,105,112,116,105,110,103,77, - 101,115,115,97,103,101,72,111,108,100,101,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,114,101,97,116,101,115,32,97, - 32,115,116,111,114,97,103,101,32,111,98,106,101,99,116,32,102,111,114,32,77,101,115,115,97,103,101,32,101,118,101,110,116,115,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,99,114,101,97,116,101,77,105,100,105,76,105,115,116,0,97,114,103,117,109,101,110,116,115,0, - 1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,31,5,83,99,114,105,112,116,105,110,103,79,98,106,101,99,116,115,58,58,77,105, - 100,105,76,105,115,116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,30,5,67,114,101,97,116,101,115,32,97,32,77,73,68,73,32, - 76,105,115,116,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,99,114,101,97,116,101,84,105, - 109,101,114,79,98,106,101,99,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,34,5, - 83,99,114,105,112,116,105,110,103,79,98,106,101,99,116,115,58,58,84,105,109,101,114,79,98,106,101,99,116,32,42,32,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,30,5,67,114,101,97,116,101,115,32,97,32,110,101,119,32,116,105,109,101,114,32,111,98,106,101,99,116,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,100,111,117,98,108,101,84,111,83,116,114,105,110,103,0,97,114,103,117,109,101,110,116,115,0, - 1,28,5,40,100,111,117,98,108,101,32,118,97,108,117,101,44,32,105,110,116,32,100,105,103,105,116,115,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,68,5,82,101,116,117,114,110,115,32,97,32,115,116,114, - 105,110,103,32,111,102,32,116,104,101,32,118,97,108,117,101,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,110,117,109,98,101, - 114,32,111,102,32,100,105,103,105,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,100,117,109,112,65,115,74,83, - 79,78,0,97,114,103,117,109,101,110,116,115,0,1,31,5,40,118,97,114,32,111,98,106,101,99,116,44,32,83,116,114,105,110,103,32,102,105,108,101, - 78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,69,120,112,111, - 114,116,115,32,97,110,32,111,98,106,101,99,116,32,97,115,32,74,83,79,78,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 26,5,103,101,116,68,101,99,105,98,101,108,115,70,111,114,71,97,105,110,70,97,99,116,111,114,0,97,114,103,117,109,101,110,116,115,0,1,21,5, - 40,100,111,117,98,108,101,32,103,97,105,110,70,97,99,116,111,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,63,5,67,111,110,118,101,114,116,115,32,103,97,105,110,32,102,97,99,116,111,114,32,40,48, - 46,48,32,46,46,32,49,46,48,41,32,116,111,32,100,101,99,105,98,101,108,32,40,45,49,48,48,46,48,32,46,46,46,32,48,41,46,32,0,0, - 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,31,5,103,101,116,70,114,101,113,117,101,110,99,121,70,111,114,77,105,100,105,78,111,116,101, - 78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,105,100,105,78,117,109,98,101,114,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,66,5,67,111,110,118,101,114, - 116,115,32,109,105,100,105,32,110,111,116,101,32,110,117,109,98,101,114,32,48,32,46,46,46,32,49,50,55,32,116,111,32,70,114,101,113,117,101,110, - 99,121,32,50,48,32,46,46,46,32,50,48,46,48,48,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,26,5,103,101,116, - 71,97,105,110,70,97,99,116,111,114,70,111,114,68,101,99,105,98,101,108,115,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,100,111,117,98, - 108,101,32,100,101,99,105,98,101,108,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,66,5,67,111,110,118,101,114,116,115,32,100,101,99,105,98,101,108,32,40,45,49,48,48,46,48,32,46,46,46,32,48, - 46,48,41,32,116,111,32,103,97,105,110,32,102,97,99,116,111,114,32,40,48,46,48,32,46,46,46,32,49,46,48,41,46,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,72,111,115,116,66,112,109,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,82,101,116, - 117,114,110,115,32,116,104,101,32,66,112,109,32,111,102,32,116,104,101,32,104,111,115,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,14,5,103,101,116,77,97,99,114,111,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101, - 120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5, - 82,101,116,117,114,110,115,32,116,104,101,32,110,97,109,101,32,102,111,114,32,116,104,101,32,103,105,118,101,110,32,109,97,99,114,111,32,105,110,100, - 101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,103,101,116,77,105,100,105,78,111,116,101,70,114,111,109,78,97, - 109,101,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,109,105,100,105,78,111,116,101,78,97,109,101,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,67,111,110,118,101,114,116,115, - 32,77,73,68,73,32,110,111,116,101,32,110,97,109,101,32,116,111,32,77,73,68,73,32,110,117,109,98,101,114,32,40,34,67,51,34,32,102,111,114, - 32,109,105,100,100,108,101,32,67,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,77,105,100,105,78,111, - 116,101,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,105,100,105,78,117,109,98,101,114,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,67,5,67,111,110,118,101,114, - 116,115,32,77,73,68,73,32,110,111,116,101,32,110,117,109,98,101,114,32,116,111,32,77,105,100,105,32,110,111,116,101,32,110,97,109,101,32,40,34, - 67,51,34,32,102,111,114,32,109,105,100,100,108,101,32,67,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,27,5,103,101, - 116,77,105,108,108,105,83,101,99,111,110,100,115,70,111,114,83,97,109,112,108,101,115,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,100,111, - 117,98,108,101,32,115,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,37,5,67,111,110,118,101,114,116,115,32,115,97,109,112,108,101,115,32,116,111,32,109,105,108,108,105,32,115,101,99, - 111,110,100,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,25,5,103,101,116,77,105,108,108,105,83,101,99,111,110,100,115, - 70,111,114,84,101,109,112,111,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,116,101,109,112,111,73,110,100,101,120,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,97,5,82,101,116,117, - 114,110,115,32,116,104,101,32,109,105,108,108,105,115,101,99,111,110,100,32,118,97,108,117,101,32,102,111,114,32,116,104,101,32,115,117,112,112,108,105, - 101,100,32,116,101,109,112,111,32,40,72,73,78,84,58,32,85,115,101,32,34,84,101,109,112,111,83,121,110,99,34,32,109,111,100,101,32,102,114,111, - 109,32,83,108,105,100,101,114,33,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,103,101,116,79,83,0,97,114,103,117, - 109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,58,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,111,112,101,114,97,116,105,110,103,32,115, - 121,115,116,101,109,32,40,34,79,83,88,34,32,111,114,32,40,34,87,73,78,34,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,28,5,103,101,116,80,105,116,99,104,82,97,116,105,111,70,114,111,109,83,101,109,105,116,111,110,101,115,0,97,114,103,117,109,101,110,116,115, - 0,1,20,5,40,100,111,117,98,108,101,32,115,101,109,105,84,111,110,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117, - 98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,75,5,67,111,110,118,101,114,116,115,32,97,32,115,101,109,105,116,111,110,101,32, - 118,97,108,117,101,32,116,111,32,97,32,112,105,116,99,104,32,114,97,116,105,111,32,40,45,49,50,32,46,46,46,32,49,50,41,32,45,62,32,40, - 48,46,53,32,46,46,46,32,50,46,48,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,80,108,97,121,72, - 101,97,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,18,5,68,121,110,97,109,105, - 99,79,98,106,101,99,116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,65,108,108,111,119,115,32,97,99,99,101,115,115,32, - 116,111,32,116,104,101,32,100,97,116,97,32,111,102,32,116,104,101,32,104,111,115,116,32,40,112,108,97,121,105,110,103,32,115,116,97,116,117,115,44, - 32,116,105,109,101,108,105,110,101,44,32,101,116,99,46,46,46,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103, - 101,116,82,101,103,101,120,77,97,116,99,104,101,115,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,83,116,114,105,110,103,32,115,116,114,105, - 110,103,84,111,77,97,116,99,104,44,32,83,116,114,105,110,103,32,114,101,103,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118, - 97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,82,101,116,117,114,110,115,32,97,110,32,97,114,114,97,121,32,119,105,116,104, - 32,97,108,108,32,109,97,116,99,104,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,83,97,109,112, - 108,101,82,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117, - 98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,35,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32, - 115,97,109,112,108,101,32,114,97,116,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,27,5,103,101,116,83,97,109,112,108, - 101,115,70,111,114,77,105,108,108,105,83,101,99,111,110,100,115,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,100,111,117,98,108,101,32,109, - 105,108,108,105,83,101,99,111,110,100,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,36,5,67,111,110,118,101,114,116,115,32,109,105,108,108,105,32,115,101,99,111,110,100,115,32,116,111,32,115,97,109,112, - 108,101,115,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,28,5,103,101,116,83,101,109,105,116,111,110,101,115,70,114,111,109,80, - 105,116,99,104,82,97,116,105,111,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,100,111,117,98,108,101,32,112,105,116,99,104,82,97,116,105, - 111,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,68,5, - 67,111,110,118,101,114,116,115,32,97,32,112,105,116,99,104,32,114,97,116,105,111,32,116,111,32,115,101,109,105,116,111,110,101,115,32,40,48,46,53, - 32,46,46,46,32,50,46,48,41,32,45,62,32,40,45,49,50,32,46,46,46,32,49,50,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,11,5,103,101,116,85,112,116,105,109,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,82,101,116,117,114,110,115,32,116,104,101,32, - 117,112,116,105,109,101,32,111,102,32,116,104,101,32,101,110,103,105,110,101,32,105,110,32,115,101,99,111,110,100,115,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,86,101,114,115,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,55,5,82,101,116,117, - 114,110,115,32,116,104,101,32,112,114,111,100,117,99,116,32,118,101,114,115,105,111,110,32,40,110,111,116,32,116,104,101,32,72,73,83,69,32,118,101, - 114,115,105,111,110,33,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,108,111,97,100,70,111,110,116,0,97,114,103, - 117,109,101,110,116,115,0,1,20,5,40,32,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,76,111,97,100,115,32,97,32,102,111,110,116,32,102,105,108,101,46,32,0,0, - 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,108,111,97,100,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0, - 1,19,5,40,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,73,109,112,111,114,116,115,32,97,32,74,83,79,78,32,102,105,108,101,32,97,115,32,111,98, - 106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,109,97,116,99,104,101,115,82,101,103,101,120,0,97,114, - 103,117,109,101,110,116,115,0,1,38,5,40,83,116,114,105,110,103,32,115,116,114,105,110,103,84,111,77,97,116,99,104,44,32,83,116,114,105,110,103, - 32,114,101,103,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,46,5,77,97,116,99,104,101,115,32,116,104,101,32,115,116,114,105,110,103,32,97,103,97,105,110,115,116,32,116,104,101,32,114,101,103,101,120,32, - 116,111,107,101,110,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,114,101,100,111,0,97,114,103,117,109,101,110,116,115, - 0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,35,5,82,101,100, - 111,32,116,104,101,32,108,97,115,116,32,99,111,110,116,114,111,108,108,101,114,32,99,104,97,110,103,101,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,20,5,115,101,116,67,111,109,112,105,108,101,80,114,111,103,114,101,115,115,0,97,114,103,117,109,101,110,116,115,0,1,16, - 5,40,118,97,114,32,112,114,111,103,114,101,115,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105, - 111,110,0,1,72,5,68,105,115,112,108,97,121,115,32,116,104,101,32,112,114,111,103,114,101,115,115,32,40,48,46,48,32,116,111,32,49,46,48,41, - 32,105,110,32,116,104,101,32,112,114,111,103,114,101,115,115,32,98,97,114,32,111,102,32,116,104,101,32,101,100,105,116,111,114,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,75,101,121,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,34, - 5,40,105,110,116,32,107,101,121,78,117,109,98,101,114,44,32,105,110,116,32,99,111,108,111,117,114,65,115,72,101,120,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,129,5,83,101,116,115,32,97,32,107,101,121,32,111,102,32,116,104, - 101,32,103,108,111,98,97,108,32,107,101,121,98,111,97,114,100,32,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,99,111,108,111,117, - 114,32,40,117,115,105,110,103,32,116,104,101,32,102,111,114,109,32,48,120,48,48,70,70,48,48,32,102,111,114,32,101,103,46,32,111,102,32,116,104, - 101,32,107,101,121,32,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,99,111,108,111,117,114,46,32,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,23,5,115,101,116,76,111,119,101,115,116,75,101,121,84,111,68,105,115,112,108,97,121,0,97,114,103,117,109,101,110,116, - 115,0,1,17,5,40,105,110,116,32,107,101,121,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,60,5,67,104,97,110,103,101,115,32,116,104,101,32,108,111,119,101,115,116,32,118,105,115,105,98,108,101,32,107,101, - 121,32,111,110,32,116,104,101,32,111,110,32,115,99,114,101,101,110,32,107,101,121,98,111,97,114,100,46,32,0,0,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,18,5,115,104,111,119,69,114,114,111,114,77,101,115,115,97,103,101,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83, - 116,114,105,110,103,32,109,101,115,115,97,103,101,44,32,98,111,111,108,32,105,115,67,114,105,116,105,99,97,108,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,137,5,83,104,111,119,115,32,97,32,101,114,114,111,114,32,109,101,115,115, - 97,103,101,32,111,110,32,116,104,101,32,99,111,109,112,105,108,101,100,32,112,108,117,103,105,110,32,40,111,114,32,112,114,105,110,116,115,32,105,116, - 32,111,110,32,116,104,101,32,99,111,110,115,111,108,101,41,46,32,85,115,101,32,105,115,67,114,105,116,105,99,97,108,32,105,102,32,121,111,117,32, - 119,97,110,116,32,116,111,32,100,105,115,97,98,108,101,32,116,104,101,32,34,73,103,110,111,114,101,34,32,66,117,116,116,111,110,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,117,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,118,101,114,116,115,32,116,104,101,32,108, - 97,115,116,32,99,111,110,116,114,111,108,108,101,114,32,99,104,97,110,103,101,46,32,0,0,77,97,116,104,0,0,1,30,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,5,5,97,98,115,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,116,117,114,110,115, - 32,116,104,101,32,97,98,115,111,108,117,116,101,32,40,117,110,115,105,103,110,101,100,41,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,6,5,97,99,111,115,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,97,108,99,117, - 108,97,116,101,115,32,116,104,101,32,97,99,111,115,105,110,101,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,97,99,111,115,104,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118, + 4,110,97,109,101,0,1,21,5,97,100,100,83,99,114,105,112,116,101,100,86,105,101,119,112,111,114,116,0,97,114,103,117,109,101,110,116,115,0,1, + 37,5,40,83,116,114,105,110,103,32,118,105,101,119,112,111,114,116,78,97,109,101,44,32,105,110,116,32,120,44,32,105,110,116,32,121,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,21,5,83,99,114,105,112,116,101,100,86,105,101,119,112,111,114,116,32,42,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,19,5,65,100,100,115,32,97,32,118,105,101,119,112,111,114,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,15,5,97,100,100,83,108,105,100,101,114,80,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,83,116,114,105,110,103,32,115,108, + 105,100,101,114,80,97,99,107,78,97,109,101,44,32,105,110,116,32,120,44,32,105,110,116,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 21,5,83,99,114,105,112,116,83,108,105,100,101,114,80,97,99,107,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,22,5,65,100,100, + 115,32,97,32,115,108,105,100,101,114,32,112,97,99,107,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,97,100,100,84, + 97,98,108,101,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,116,97,98,108,101,78,97,109,101,44,32,105,110,116, + 32,120,44,32,105,110,116,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,16,5,83,99,114,105,112,116,84,97,98,108,101,32,42,32,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,70,5,65,100,100,115,32,97,32,116,97,98,108,101,32,101,100,105,116,111,114,32,116,111,32,116,104, + 101,32,67,111,110,116,101,110,116,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,110,100,101, + 120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,99,114,101,97,116,101,80,97,116,104,0,97,114,103,117,109,101,110, + 116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,53,5,67,114,101,97,116,101,115,32,97,32,80,97,116,104,32,116,104,97,116,32,99,97,110,32,98,101,32,100,114,97,119,110,32,116,111,32,97, + 32,83,99,114,105,112,116,80,97,110,101,108,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,109,97,107,101,70,114,111, + 110,116,73,110,116,101,114,102,97,99,101,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,105,110,116,32,119,105,100,116,104,44,32,105,110,116, + 32,104,101,105,103,104,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,58,5,83, + 101,116,115,32,116,104,105,115,32,115,99,114,105,112,116,32,97,115,32,109,97,105,110,32,105,110,116,101,114,102,97,99,101,32,119,105,116,104,32,116, + 104,101,32,103,105,118,101,110,32,115,105,122,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,30,5,114,101,115,116,111,114, + 101,65,108,108,67,111,110,116,114,111,108,115,70,114,111,109,80,114,101,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,32,83,116, + 114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,63,5,82,101,115,116,111,114,101,115,32,97,108,108,32,99,111,110,116,114,111,108,115,32,102,114,111,109,32,97,32,112,114,101,118,105,111, + 117,115,108,121,32,115,97,118,101,100,32,88,77,76,32,100,97,116,97,32,102,105,108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,32,5,40,105,110,116,32,114,101,100,44,32,105,110, + 116,32,103,114,101,101,110,44,32,105,110,116,32,98,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,33,5,83,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,102,111,114,32,116,104,101,32,112,97,110,101,108,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,115,101,116,67,111,110,116,101,110,116,84,111,111,108,116,105,112,0,97,114,103, + 117,109,101,110,116,115,0,1,25,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,84,111,83,104,111,119,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,88,5,115,101,116,115,32,116,104,101,32,84,111,111,108,116,105,112, + 32,116,104,97,116,32,119,105,108,108,32,98,101,32,115,104,111,119,110,32,105,102,32,116,104,101,32,109,111,117,115,101,32,104,111,118,101,114,115,32, + 111,118,101,114,32,116,104,101,32,115,99,114,105,112,116,39,115,32,116,97,98,32,98,117,116,116,111,110,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,11,5,115,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,105,110,116,32,110,101,119, + 72,101,105,103,104,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,83,101, + 116,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,110,116,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,9,5,115,101,116,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,110, + 101,119,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,58,5,83,101, + 116,115,32,116,104,101,32,110,97,109,101,32,116,104,97,116,32,119,105,108,108,32,98,101,32,100,105,115,112,108,97,121,101,100,32,105,110,32,98,105, + 103,32,102,97,116,32,73,109,112,97,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112, + 101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,31,5,40,32,83,116,114,105,110,103,32,110,97,109, + 101,44,32,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, + 116,105,111,110,0,1,41,5,82,101,115,116,111,114,101,32,116,104,101,32,119,105,100,103,101,116,32,102,114,111,109,32,97,32,74,83,79,78,32,111, + 98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,115,101,116,84,111,111,108,98,97,114,80,114,111,112, + 101,114,116,105,101,115,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,32,118,97,114,32,116,111,111,108,98,97,114,80,114,111,112,101,114,116, + 105,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,55,5,83,101,116,115,32, + 116,104,101,32,109,97,105,110,32,116,111,111,108,98,97,114,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32, + 111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,87,105,100,116,104,0,97,114,103,117, + 109,101,110,116,115,0,1,16,5,40,105,110,116,32,110,101,119,87,105,100,116,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,34,5,83,101,116,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,110, + 116,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,26,5,115,116,111,114,101,65,108,108,67,111,110,116,114,111,108, + 115,65,115,80,114,101,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,47,5,40,32,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101, + 44,32,32,86,97,108,117,101,84,114,101,101,32,97,117,116,111,109,97,116,105,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,64,5,83,97,118,101,115,32,97,108,108,32,99,111,110,116,114,111,108,115,32,116,104, + 97,116,32,115,104,111,117,108,100,32,98,101,32,115,97,118,101,100,32,105,110,116,111,32,97,32,88,77,76,32,100,97,116,97,32,102,105,108,101,46, + 32,0,0,69,110,103,105,110,101,0,0,1,33,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,97,108,108,78,111,116,101,115,79,102, + 102,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, + 116,105,111,110,0,1,51,5,83,101,110,100,115,32,97,110,32,97,108,108,78,111,116,101,115,79,102,102,32,109,101,115,115,97,103,101,32,97,116,32, + 116,104,101,32,110,101,120,116,32,98,117,102,102,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,99,114,101,97, + 116,101,77,101,115,115,97,103,101,72,111,108,100,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,45,5,83,99,114,105,112,116,105,110,103,79,98,106,101,99,116,115,58,58,83,99,114,105,112,116,105,110,103,77,101,115,115,97,103,101, + 72,111,108,100,101,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,114,101,97,116,101,115,32,97,32,115,116,111,114,97, + 103,101,32,111,98,106,101,99,116,32,102,111,114,32,77,101,115,115,97,103,101,32,101,118,101,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,16,5,99,114,101,97,116,101,77,105,100,105,76,105,115,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,31,5,83,99,114,105,112,116,105,110,103,79,98,106,101,99,116,115,58,58,77,105,100,105,76,105,115,116, + 32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,30,5,67,114,101,97,116,101,115,32,97,32,77,73,68,73,32,76,105,115,116,32,111, + 98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,99,114,101,97,116,101,84,105,109,101,114,79,98,106, + 101,99,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,34,5,83,99,114,105,112,116, + 105,110,103,79,98,106,101,99,116,115,58,58,84,105,109,101,114,79,98,106,101,99,116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 30,5,67,114,101,97,116,101,115,32,97,32,110,101,119,32,116,105,109,101,114,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,16,5,100,111,117,98,108,101,84,111,83,116,114,105,110,103,0,97,114,103,117,109,101,110,116,115,0,1,28,5,40,100,111, + 117,98,108,101,32,118,97,108,117,101,44,32,105,110,116,32,100,105,103,105,116,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116, + 114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,68,5,82,101,116,117,114,110,115,32,97,32,115,116,114,105,110,103,32,111,102, + 32,116,104,101,32,118,97,108,117,101,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,110,117,109,98,101,114,32,111,102,32,100, + 105,103,105,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,100,117,109,112,65,115,74,83,79,78,0,97,114,103, + 117,109,101,110,116,115,0,1,31,5,40,118,97,114,32,111,98,106,101,99,116,44,32,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,69,120,112,111,114,116,115,32,97,110, + 32,111,98,106,101,99,116,32,97,115,32,74,83,79,78,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,26,5,103,101,116,68, + 101,99,105,98,101,108,115,70,111,114,71,97,105,110,70,97,99,116,111,114,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,100,111,117,98,108, + 101,32,103,97,105,110,70,97,99,116,111,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,63,5,67,111,110,118,101,114,116,115,32,103,97,105,110,32,102,97,99,116,111,114,32,40,48,46,48,32,46,46,32, + 49,46,48,41,32,116,111,32,100,101,99,105,98,101,108,32,40,45,49,48,48,46,48,32,46,46,46,32,48,41,46,32,0,0,109,101,116,104,111,100, + 0,1,4,110,97,109,101,0,1,31,5,103,101,116,70,114,101,113,117,101,110,99,121,70,111,114,77,105,100,105,78,111,116,101,78,117,109,98,101,114, + 0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,105,100,105,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,66,5,67,111,110,118,101,114,116,115,32,109,105,100, + 105,32,110,111,116,101,32,110,117,109,98,101,114,32,48,32,46,46,46,32,49,50,55,32,116,111,32,70,114,101,113,117,101,110,99,121,32,50,48,32, + 46,46,46,32,50,48,46,48,48,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,26,5,103,101,116,71,97,105,110,70,97, + 99,116,111,114,70,111,114,68,101,99,105,98,101,108,115,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,100,111,117,98,108,101,32,100,101,99, + 105,98,101,108,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,66,5,67,111,110,118,101,114,116,115,32,100,101,99,105,98,101,108,32,40,45,49,48,48,46,48,32,46,46,46,32,48,46,48,41,32,116,111, + 32,103,97,105,110,32,102,97,99,116,111,114,32,40,48,46,48,32,46,46,46,32,49,46,48,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,12,5,103,101,116,72,111,115,116,66,112,109,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,82,101,116,117,114,110,115,32,116, + 104,101,32,66,112,109,32,111,102,32,116,104,101,32,104,111,115,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103, + 101,116,77,97,99,114,111,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110, + 115,32,116,104,101,32,110,97,109,101,32,102,111,114,32,116,104,101,32,103,105,118,101,110,32,109,97,99,114,111,32,105,110,100,101,120,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,103,101,116,77,105,100,105,78,111,116,101,70,114,111,109,78,97,109,101,0,97,114,103, + 117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,109,105,100,105,78,111,116,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,67,111,110,118,101,114,116,115,32,77,73,68,73,32, + 110,111,116,101,32,110,97,109,101,32,116,111,32,77,73,68,73,32,110,117,109,98,101,114,32,40,34,67,51,34,32,102,111,114,32,109,105,100,100,108, + 101,32,67,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,77,105,100,105,78,111,116,101,78,97,109,101, + 0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,105,100,105,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,67,5,67,111,110,118,101,114,116,115,32,77,73,68, + 73,32,110,111,116,101,32,110,117,109,98,101,114,32,116,111,32,77,105,100,105,32,110,111,116,101,32,110,97,109,101,32,40,34,67,51,34,32,102,111, + 114,32,109,105,100,100,108,101,32,67,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,27,5,103,101,116,77,105,108,108,105, + 83,101,99,111,110,100,115,70,111,114,83,97,109,112,108,101,115,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,100,111,117,98,108,101,32,115, + 97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,37,5,67,111,110,118,101,114,116,115,32,115,97,109,112,108,101,115,32,116,111,32,109,105,108,108,105,32,115,101,99,111,110,100,115,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,25,5,103,101,116,77,105,108,108,105,83,101,99,111,110,100,115,70,111,114,84,101,109, + 112,111,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,116,101,109,112,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,97,5,82,101,116,117,114,110,115,32,116,104, + 101,32,109,105,108,108,105,115,101,99,111,110,100,32,118,97,108,117,101,32,102,111,114,32,116,104,101,32,115,117,112,112,108,105,101,100,32,116,101,109, + 112,111,32,40,72,73,78,84,58,32,85,115,101,32,34,84,101,109,112,111,83,121,110,99,34,32,109,111,100,101,32,102,114,111,109,32,83,108,105,100, + 101,114,33,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,103,101,116,79,83,0,97,114,103,117,109,101,110,116,115,0, + 1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,58,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,111,112,101,114,97,116,105,110,103,32,115,121,115,116,101,109,32, + 40,34,79,83,88,34,32,111,114,32,40,34,87,73,78,34,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,28,5,103,101, + 116,80,105,116,99,104,82,97,116,105,111,70,114,111,109,83,101,109,105,116,111,110,101,115,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,100, + 111,117,98,108,101,32,115,101,109,105,84,111,110,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,75,5,67,111,110,118,101,114,116,115,32,97,32,115,101,109,105,116,111,110,101,32,118,97,108,117,101,32, + 116,111,32,97,32,112,105,116,99,104,32,114,97,116,105,111,32,40,45,49,50,32,46,46,46,32,49,50,41,32,45,62,32,40,48,46,53,32,46,46, + 46,32,50,46,48,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,80,108,97,121,72,101,97,100,0,97,114, + 103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,18,5,68,121,110,97,109,105,99,79,98,106,101,99, + 116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,65,108,108,111,119,115,32,97,99,99,101,115,115,32,116,111,32,116,104,101, + 32,100,97,116,97,32,111,102,32,116,104,101,32,104,111,115,116,32,40,112,108,97,121,105,110,103,32,115,116,97,116,117,115,44,32,116,105,109,101,108, + 105,110,101,44,32,101,116,99,46,46,46,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,82,101,103,101, + 120,77,97,116,99,104,101,115,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,83,116,114,105,110,103,32,115,116,114,105,110,103,84,111,77,97, + 116,99,104,44,32,83,116,114,105,110,103,32,114,101,103,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,37,5,82,101,116,117,114,110,115,32,97,110,32,97,114,114,97,121,32,119,105,116,104,32,97,108,108,32,109, + 97,116,99,104,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,83,97,109,112,108,101,82,97,116,101, + 0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,35,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,115,97,109,112,108,101, + 32,114,97,116,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,27,5,103,101,116,83,97,109,112,108,101,115,70,111,114,77, + 105,108,108,105,83,101,99,111,110,100,115,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,100,111,117,98,108,101,32,109,105,108,108,105,83,101, + 99,111,110,100,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,36,5,67,111,110,118,101,114,116,115,32,109,105,108,108,105,32,115,101,99,111,110,100,115,32,116,111,32,115,97,109,112,108,101,115,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,28,5,103,101,116,83,101,109,105,116,111,110,101,115,70,114,111,109,80,105,116,99,104,82,97, + 116,105,111,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,100,111,117,98,108,101,32,112,105,116,99,104,82,97,116,105,111,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,68,5,67,111,110,118,101,114, + 116,115,32,97,32,112,105,116,99,104,32,114,97,116,105,111,32,116,111,32,115,101,109,105,116,111,110,101,115,32,40,48,46,53,32,46,46,46,32,50, + 46,48,41,32,45,62,32,40,45,49,50,32,46,46,46,32,49,50,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103, + 101,116,85,112,116,105,109,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100, + 111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,82,101,116,117,114,110,115,32,116,104,101,32,117,112,116,105,109,101, + 32,111,102,32,116,104,101,32,101,110,103,105,110,101,32,105,110,32,115,101,99,111,110,100,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,12,5,103,101,116,86,101,114,115,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,55,5,82,101,116,117,114,110,115,32,116,104, + 101,32,112,114,111,100,117,99,116,32,118,101,114,115,105,111,110,32,40,110,111,116,32,116,104,101,32,72,73,83,69,32,118,101,114,115,105,111,110,33, + 41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,108,111,97,100,70,111,110,116,0,97,114,103,117,109,101,110,116,115, + 0,1,20,5,40,32,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,21,5,76,111,97,100,115,32,97,32,102,111,110,116,32,102,105,108,101,46,32,0,0,109,101,116,104,111,100, + 0,1,4,110,97,109,101,0,1,14,5,108,111,97,100,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,83,116, + 114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,33,5,73,109,112,111,114,116,115,32,97,32,74,83,79,78,32,102,105,108,101,32,97,115,32,111,98,106,101,99,116,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,109,97,116,99,104,101,115,82,101,103,101,120,0,97,114,103,117,109,101,110,116, + 115,0,1,38,5,40,83,116,114,105,110,103,32,115,116,114,105,110,103,84,111,77,97,116,99,104,44,32,83,116,114,105,110,103,32,114,101,103,101,120, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,77,97,116, + 99,104,101,115,32,116,104,101,32,115,116,114,105,110,103,32,97,103,97,105,110,115,116,32,116,104,101,32,114,101,103,101,120,32,116,111,107,101,110,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,114,101,100,111,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41, + 0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,35,5,82,101,100,111,32,116,104,101,32, + 108,97,115,116,32,99,111,110,116,114,111,108,108,101,114,32,99,104,97,110,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,20,5,115,101,116,67,111,109,112,105,108,101,80,114,111,103,114,101,115,115,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32, + 112,114,111,103,114,101,115,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,72,5, + 68,105,115,112,108,97,121,115,32,116,104,101,32,112,114,111,103,114,101,115,115,32,40,48,46,48,32,116,111,32,49,46,48,41,32,105,110,32,116,104, + 101,32,112,114,111,103,114,101,115,115,32,98,97,114,32,111,102,32,116,104,101,32,101,100,105,116,111,114,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,14,5,115,101,116,75,101,121,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,105,110,116,32, + 107,101,121,78,117,109,98,101,114,44,32,105,110,116,32,99,111,108,111,117,114,65,115,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,129,5,83,101,116,115,32,97,32,107,101,121,32,111,102,32,116,104,101,32,103,108,111,98, + 97,108,32,107,101,121,98,111,97,114,100,32,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,99,111,108,111,117,114,32,40,117,115,105, + 110,103,32,116,104,101,32,102,111,114,109,32,48,120,48,48,70,70,48,48,32,102,111,114,32,101,103,46,32,111,102,32,116,104,101,32,107,101,121,32, + 116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,99,111,108,111,117,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, + 0,1,23,5,115,101,116,76,111,119,101,115,116,75,101,121,84,111,68,105,115,112,108,97,121,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40, + 105,110,116,32,107,101,121,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,60,5,67,104,97,110,103,101,115,32,116,104,101,32,108,111,119,101,115,116,32,118,105,115,105,98,108,101,32,107,101,121,32,111,110,32,116, + 104,101,32,111,110,32,115,99,114,101,101,110,32,107,101,121,98,111,97,114,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, + 18,5,115,104,111,119,69,114,114,111,114,77,101,115,115,97,103,101,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,116,114,105,110,103,32, + 109,101,115,115,97,103,101,44,32,98,111,111,108,32,105,115,67,114,105,116,105,99,97,108,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,137,5,83,104,111,119,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,111,110, + 32,116,104,101,32,99,111,109,112,105,108,101,100,32,112,108,117,103,105,110,32,40,111,114,32,112,114,105,110,116,115,32,105,116,32,111,110,32,116,104, + 101,32,99,111,110,115,111,108,101,41,46,32,85,115,101,32,105,115,67,114,105,116,105,99,97,108,32,105,102,32,121,111,117,32,119,97,110,116,32,116, + 111,32,100,105,115,97,98,108,101,32,116,104,101,32,34,73,103,110,111,114,101,34,32,66,117,116,116,111,110,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,6,5,117,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,118,101,114,116,115,32,116,104,101,32,108,97,115,116,32,99,111, + 110,116,114,111,108,108,101,114,32,99,104,97,110,103,101,46,32,0,0,77,97,116,104,0,0,1,30,109,101,116,104,111,100,0,1,4,110,97,109,101, + 0,1,5,5,97,98,115,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,116,117,114,110,115,32,116,104,101,32,97, + 98,115,111,108,117,116,101,32,40,117,110,115,105,103,110,101,100,41,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,6,5,97,99,111,115,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,97,108,99,117,108,97,116,101,115,32, + 116,104,101,32,97,99,111,115,105,110,101,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,7,5,97,99,111,115,104,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108, + 117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,67,97, + 108,99,117,108,97,116,101,115,32,116,104,101,32,97,99,111,115,104,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,97,115,105,110,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118, 97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,99,111,115,104,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98, - 97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,97,115,105,110,0,97,114,103,117,109,101,110,116,115, - 0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,115,105,110,101,32,118,97,108,117,101,32,40,114,97, - 100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,97,115,105,110,104,0,97,114, + 0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,115,105,110,101,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98, + 97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,97,115,105,110,104,0,97,114,103,117,109,101,110,116, + 115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,115,105,110,104,32,118,97,108,117,101,32,40,114, + 97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,97,116,97,110,0,97,114, 103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,115,105,110,104,32,118,97, - 108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,97, - 116,97,110,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,116, - 97,110,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,7,5,97,116,97,110,104,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,67,97,108,99,117,108,97,116,101,115,32, - 116,104,101,32,97,116,97,110,104,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,6,5,99,101,105,108,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,23,5,82,111,117,110,100, - 115,32,117,112,32,116,104,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,99,111,115,0,97, - 114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97, - 114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,99,111,115,105,110,101,32, - 118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6, - 5,99,111,115,104,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32, - 99,111,115,104,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,5,5,101,120,112,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,28,5,67,97,108,99,117,108,97,116,101,115,32, - 116,104,101,32,101,120,112,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,102,108,111,111,114,0, - 97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118, - 97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,25,5,82,111,117,110,100,115,32,100,111,119,110,32,116,104,101,32,118,97,108,117,101, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,108,111,103,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118, - 97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,42,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,108,111,103,32,118,97,108,117,101,32,40,119,105,116,104,32,98,97,115,101,32, - 69,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,108,111,103,49,48,0,97,114,103,117,109,101,110,116,115,0,1, - 13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,43,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,108,111,103,32,118,97,108,117,101,32,40,119,105,116,104,32,98, - 97,115,101,32,49,48,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,109,97,120,0,97,114,103,117,109,101,110,116, - 115,0,1,25,5,40,118,97,114,32,102,105,114,115,116,44,32,118,97,114,32,115,101,99,111,110,100,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,98,105,103,103,101, - 114,32,110,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,109,105,110,0,97,114,103,117,109,101,110, - 116,115,0,1,25,5,40,118,97,114,32,102,105,114,115,116,44,32,118,97,114,32,115,101,99,111,110,100,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,30,5,82,101,116,117,114,110,115,32,116,104,101,32,115,109,97,108, - 108,101,114,32,110,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,112,111,119,0,97,114,103,117,109, - 101,110,116,115,0,1,21,5,40,118,97,114,32,98,97,115,101,44,32,118,97,114,32,101,120,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,112,111,119, - 101,114,32,111,102,32,98,97,115,101,32,97,110,100,32,101,120,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,9,5,114,97,110,100,73,110,116,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,118,97,114,32,108,111,119,44,32,118,97,114,32,104, - 105,103,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,64,5,82, - 101,116,117,114,110,115,32,97,32,114,97,110,100,111,109,32,105,110,116,101,103,101,114,32,98,101,116,119,101,101,110,32,116,104,101,32,108,111,119,32, - 97,110,100,32,116,104,101,32,104,105,103,104,32,118,97,108,117,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5, - 114,97,110,100,111,109,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,82,101,116,117,114,110,115,32,97,32,114,97,110,100,111,109,32,110,117,109,98,101,114, - 32,98,101,116,119,101,101,110,32,48,46,48,32,97,110,100,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7, - 5,114,97,110,103,101,0,97,114,103,117,109,101,110,116,115,0,1,45,5,40,118,97,114,32,118,97,108,117,101,44,32,118,97,114,32,108,111,119,101, - 114,76,105,109,105,116,44,32,118,97,114,32,117,112,112,101,114,76,105,109,105,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97, - 114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,76,105,109,105,116,115,32,116,104,101,32,118,97,108,117,101,32,116,111,32,116,104, - 101,32,103,105,118,101,110,32,114,97,110,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,114,111,117,110,100,0, + 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,116,97,110,32,118,97,108, + 117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,97,116, + 97,110,104,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,97,116, + 97,110,104,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,6,5,99,101,105,108,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,23,5,82,111,117,110,100,115,32,117,112,32,116, + 104,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,99,111,115,0,97,114,103,117,109,101,110, + 116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,46,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,99,111,115,105,110,101,32,118,97,108,117,101,32, + 40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,99,111,115,104,0, 97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118, - 97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,82,111,117,110,100,115,32,116,104,101,32,118,97,108,117,101,32,116,111,32,116, - 104,101,32,110,101,120,116,32,105,110,116,101,103,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,115,105,103,110, - 0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5, - 118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,82,101,116,117,114,110,115,32,116,104,101,32,115,105,103,110,32,111,102,32, - 116,104,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,105,110,0,97,114,103,117,109,101, + 97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,99,111,115,104,32,118, + 97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5, + 101,120,112,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,28,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,101,120, + 112,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,102,108,111,111,114,0,97,114,103,117,109,101, 110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,115,105,110,101,32,118,97,108,117,101,32,40, - 114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,115,105,110,104,0,97, - 114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97, - 114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,115,105,110,104,32,118,97, - 108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115, - 113,114,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,115,113,117, - 97,114,101,32,40,120,42,120,41,32,111,102,32,116,104,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,6,5,115,113,114,116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,67,97,108,99,117,108,97,116,101,115,32,116,104, - 101,32,115,113,117,97,114,101,32,114,111,111,116,32,111,102,32,116,104,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110, - 97,109,101,0,1,5,5,116,97,110,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,67,97,108,99,117,108,97,116,101,115, - 32,116,104,101,32,116,97,110,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,6,5,116,97,110,104,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108, - 97,116,101,115,32,116,104,101,32,116,97,110,104,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,116,111,68,101,103,114,101,101,115,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118, - 97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,51,5,67,111,110,118,101,114,116,115,32,114,97,100,105,97,110,32,40,48,46,46,46,50,42,80,73,41,32,116,111,32,100,101,103,114,101,101, - 32,40,48,46,46,46,51,54,48,48,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,116,111,82,97,100,105,97,110, - 115,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6, - 5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,67,111,110,118,101,114,116,115,32,100,101,103,114,101,101,32,40,48,46, - 46,46,51,54,48,48,41,32,116,111,32,114,97,100,105,97,110,32,40,48,46,46,46,50,42,80,73,41,46,32,0,0,77,101,115,115,97,103,101,0, - 0,1,25,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,100,101,108,97,121,69,118,101,110,116,0,97,114,103,117,109,101,110,116,115, - 0,1,22,5,40,105,110,116,32,115,97,109,112,108,101,115,84,111,68,101,108,97,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,68,101,108,97,121,115,32,116,104,101,32,101,118,101,110,116,32,98,121,32,116,104,101,32,115, - 97,109,112,108,101,65,109,111,117,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,67,104,97,110,110, - 101,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,116,117,114,110,115,32,116,104,101,32,77,73,68,73,32,67,104,97,110,110,101,108,32,102,114, - 111,109,32,49,32,116,111,32,49,54,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,67,111,97,114,115,101, - 68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,82,101,116,117,114,110,115,32,116,104,101,32,99,111,97,114,115,101,32,100,101,116,117, - 110,101,32,97,109,111,117,110,116,32,105,110,32,115,101,109,105,116,111,110,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,21,5,103,101,116,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,116,5,114,101,116,117,114,110,115, - 32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,32,110,117,109,98,101,114,32,111,114,32,39,117,110,100,101,102,105,110,101,100,39,44,32,105, - 102,32,116,104,101,32,109,101,115,115,97,103,101,32,105,115,32,110,101,105,116,104,101,114,32,99,111,110,116,114,111,108,108,101,114,32,110,111,114,32, - 112,105,116,99,104,32,119,104,101,101,108,32,110,111,114,32,97,102,116,101,114,116,111,117,99,104,46,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,20,5,103,101,116,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114, - 110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,12,5,103,101,116,69,118,101,110,116,73,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,82,101,116,117,114,110,115,32, - 116,104,101,32,101,118,101,110,116,32,105,100,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,109,101,115,115,97,103,101,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,70,105,110,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0, - 1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5, - 82,101,116,117,114,110,115,32,116,104,101,32,102,105,110,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,116,32,99,101,110,116,115, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,103,101,116,71,97,105,110,0,97,114,103,117,109,101,110,116,115,0,1, - 4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,82, - 101,116,117,114,110,115,32,116,104,101,32,118,111,108,117,109,101,32,111,102,32,116,104,101,32,110,111,116,101,46,32,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,15,5,103,101,116,78,111,116,101,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,75,5,82,101,116,117,114,110, - 32,116,104,101,32,110,111,116,101,32,110,117,109,98,101,114,46,32,84,104,105,115,32,99,97,110,32,98,101,32,99,97,108,108,101,100,32,111,110,108, - 121,32,111,110,32,109,105,100,105,32,101,118,101,110,116,32,99,97,108,108,98,97,99,107,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,14,5,103,101,116,84,105,109,101,115,116,97,109,112,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,82,101,116,117,114,110,115,32,116,104,101, - 32,116,105,109,101,115,116,97,109,112,32,111,102,32,116,104,101,32,109,101,115,115,97,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,20,5,103,101,116,84,114,97,110,115,112,111,115,101,65,109,111,117,110,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,71,101,116,115,32, - 116,104,101,32,116,114,97,110,112,111,115,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103, - 101,116,86,101,108,111,99,105,116,121,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6, - 5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,82,101,116,117,114,110,115,32,116,104,101,32,86,101,108,111,99,105,116, - 121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,105,103,110,111,114,101,69,118,101,110,116,0,97,114,103,117,109,101, - 110,116,115,0,1,29,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,73,103,110,111,114,101,100,61,116,114,117,101,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,73,103,110,111,114,101,115,32,116,104,101,32,101,118,101, - 110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,105,115,65,114,116,105,102,105,99,105,97,108,0,97,114,103,117, + 115,99,114,105,112,116,105,111,110,0,1,25,5,82,111,117,110,100,115,32,100,111,119,110,32,116,104,101,32,118,97,108,117,101,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,108,111,103,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108, + 117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,42,5,67,97, + 108,99,117,108,97,116,101,115,32,116,104,101,32,108,111,103,32,118,97,108,117,101,32,40,119,105,116,104,32,98,97,115,101,32,69,41,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,108,111,103,49,48,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114, + 32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 43,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,108,111,103,32,118,97,108,117,101,32,40,119,105,116,104,32,98,97,115,101,32,49,48, + 41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,109,97,120,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40, + 118,97,114,32,102,105,114,115,116,44,32,118,97,114,32,115,101,99,111,110,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114, + 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,98,105,103,103,101,114,32,110,117,109,98, + 101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,109,105,110,0,97,114,103,117,109,101,110,116,115,0,1,25,5, + 40,118,97,114,32,102,105,114,115,116,44,32,118,97,114,32,115,101,99,111,110,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97, + 114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,30,5,82,101,116,117,114,110,115,32,116,104,101,32,115,109,97,108,108,101,114,32,110,117, + 109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,112,111,119,0,97,114,103,117,109,101,110,116,115,0,1, + 21,5,40,118,97,114,32,98,97,115,101,44,32,118,97,114,32,101,120,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,112,111,119,101,114,32,111,102,32, + 98,97,115,101,32,97,110,100,32,101,120,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,114,97, + 110,100,73,110,116,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,118,97,114,32,108,111,119,44,32,118,97,114,32,104,105,103,104,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,64,5,82,101,116,117,114,110,115, + 32,97,32,114,97,110,100,111,109,32,105,110,116,101,103,101,114,32,98,101,116,119,101,101,110,32,116,104,101,32,108,111,119,32,97,110,100,32,116,104, + 101,32,104,105,103,104,32,118,97,108,117,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,114,97,110,100,111,109, + 0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,47,5,82,101,116,117,114,110,115,32,97,32,114,97,110,100,111,109,32,110,117,109,98,101,114,32,98,101,116,119,101, + 101,110,32,48,46,48,32,97,110,100,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,114,97,110,103,101, + 0,97,114,103,117,109,101,110,116,115,0,1,45,5,40,118,97,114,32,118,97,108,117,101,44,32,118,97,114,32,108,111,119,101,114,76,105,109,105,116, + 44,32,118,97,114,32,117,112,112,101,114,76,105,109,105,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,39,5,76,105,109,105,116,115,32,116,104,101,32,118,97,108,117,101,32,116,111,32,116,104,101,32,103,105,118,101, + 110,32,114,97,110,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,114,111,117,110,100,0,97,114,103,117,109,101, + 110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,40,5,82,111,117,110,100,115,32,116,104,101,32,118,97,108,117,101,32,116,111,32,116,104,101,32,110,101,120, + 116,32,105,110,116,101,103,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,115,105,103,110,0,97,114,103,117,109, + 101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,33,5,82,101,116,117,114,110,115,32,116,104,101,32,115,105,103,110,32,111,102,32,116,104,101,32,118,97, + 108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,105,110,0,97,114,103,117,109,101,110,116,115,0,1,13, + 5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,115,105,110,101,32,118,97,108,117,101,32,40,114,97,100,105,97,110, + 32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,115,105,110,104,0,97,114,103,117,109,101,110, + 116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,115,105,110,104,32,118,97,108,117,101,32,40,114, + 97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,113,114,0,97,114,103, + 117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,115,113,117,97,114,101,32,40,120, + 42,120,41,32,111,102,32,116,104,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,115,113,114, + 116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6, + 5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,115,113,117,97, + 114,101,32,114,111,111,116,32,111,102,32,116,104,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5, + 5,116,97,110,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,116, + 97,110,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, + 0,1,6,5,116,97,110,104,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,97,108,99,117,108,97,116,101,115,32,116, + 104,101,32,116,97,110,104,32,118,97,108,117,101,32,40,114,97,100,105,97,110,32,98,97,115,101,100,41,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,11,5,116,111,68,101,103,114,101,101,115,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108, + 117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,67,111, + 110,118,101,114,116,115,32,114,97,100,105,97,110,32,40,48,46,46,46,50,42,80,73,41,32,116,111,32,100,101,103,114,101,101,32,40,48,46,46,46, + 51,54,48,48,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,116,111,82,97,100,105,97,110,115,0,97,114,103,117, + 109,101,110,116,115,0,1,13,5,40,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,67,111,110,118,101,114,116,115,32,100,101,103,114,101,101,32,40,48,46,46,46,51,54,48,48, + 41,32,116,111,32,114,97,100,105,97,110,32,40,48,46,46,46,50,42,80,73,41,46,32,0,0,77,101,115,115,97,103,101,0,0,1,25,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,12,5,100,101,108,97,121,69,118,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105, + 110,116,32,115,97,109,112,108,101,115,84,111,68,101,108,97,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,40,5,68,101,108,97,121,115,32,116,104,101,32,101,118,101,110,116,32,98,121,32,116,104,101,32,115,97,109,112,108,101,65, + 109,111,117,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,67,104,97,110,110,101,108,0,97,114,103, + 117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,41,5,82,101,116,117,114,110,115,32,116,104,101,32,77,73,68,73,32,67,104,97,110,110,101,108,32,102,114,111,109,32,49,32,116, + 111,32,49,54,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,67,111,97,114,115,101,68,101,116,117,110,101, + 0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,49,5,82,101,116,117,114,110,115,32,116,104,101,32,99,111,97,114,115,101,32,100,101,116,117,110,101,32,97,109,111, + 117,110,116,32,105,110,32,115,101,109,105,116,111,110,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,103,101,116, + 67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,116,5,114,101,116,117,114,110,115,32,116,104,101,32,99, + 111,110,116,114,111,108,108,101,114,32,110,117,109,98,101,114,32,111,114,32,39,117,110,100,101,102,105,110,101,100,39,44,32,105,102,32,116,104,101,32, + 109,101,115,115,97,103,101,32,105,115,32,110,101,105,116,104,101,114,32,99,111,110,116,114,111,108,108,101,114,32,110,111,114,32,112,105,116,99,104,32, + 119,104,101,101,108,32,110,111,114,32,97,102,116,101,114,116,111,117,99,104,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5, + 103,101,116,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101, + 32,118,97,108,117,101,32,111,102,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,12,5,103,101,116,69,118,101,110,116,73,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,82,101,116,117,114,110,115,32,116,104,101,32,101,118, + 101,110,116,32,105,100,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,109,101,115,115,97,103,101,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,15,5,103,101,116,70,105,110,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117,114,110, + 115,32,116,104,101,32,102,105,110,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,116,32,99,101,110,116,115,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,103,101,116,71,97,105,110,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,82,101,116,117,114,110,115, + 32,116,104,101,32,118,111,108,117,109,101,32,111,102,32,116,104,101,32,110,111,116,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, + 0,1,15,5,103,101,116,78,111,116,101,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,75,5,82,101,116,117,114,110,32,116,104,101,32,110, + 111,116,101,32,110,117,109,98,101,114,46,32,84,104,105,115,32,99,97,110,32,98,101,32,99,97,108,108,101,100,32,111,110,108,121,32,111,110,32,109, + 105,100,105,32,101,118,101,110,116,32,99,97,108,108,98,97,99,107,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5, + 103,101,116,84,105,109,101,115,116,97,109,112,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,82,101,116,117,114,110,115,32,116,104,101,32,116,105,109,101,115, + 116,97,109,112,32,111,102,32,116,104,101,32,109,101,115,115,97,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5, + 103,101,116,84,114,97,110,115,112,111,115,101,65,109,111,117,110,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,71,101,116,115,32,116,104,101,32,116,114, + 97,110,112,111,115,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,86,101,108,111, + 99,105,116,121,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,82,101,116,117,114,110,115,32,116,104,101,32,86,101,108,111,99,105,116,121,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,105,103,110,111,114,101,69,118,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,29, + 5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,73,103,110,111,114,101,100,61,116,114,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,73,103,110,111,114,101,115,32,116,104,101,32,101,118,101,110,116,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,105,115,65,114,116,105,102,105,99,105,97,108,0,97,114,103,117,109,101,110,116,115,0, + 1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,55, + 5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,101,118,101,110,116,32,119,97,115,32,99,114,101,97,116,101,100,32,98,121,32,97,32,115,99, + 114,105,112,116,32,101,97,114,108,105,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,109,97,107,101,65,114,116, + 105,102,105,99,105,97,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110, + 116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,72,5,67,114,101,97,116,101,115,32,97,32,97,114,116,105,102,105,99,105,97,108,32,99, + 111,112,121,32,111,102,32,116,104,105,115,32,101,118,101,110,116,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,110,101,119,32,101,118, + 101,110,116,32,73,68,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,67,104,97,110,110,101,108,0,97,114, + 103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,110,101,119,67,104,97,110,110,101,108,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,67,104,97,110,103,101,115,32,116,104,101,32,77,73,68,73,32,99,104,97,110,110, + 101,108,32,102,114,111,109,32,49,32,116,111,32,49,54,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,115,101,116,67, + 111,97,114,115,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,115,101,109,105,84,111,110,101,68,101, + 116,117,110,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,83,101,116,115, + 32,116,104,101,32,99,111,97,114,115,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,115,101,109,105,116,111,110,101,115,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,115,101,116,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,0,97, + 114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,110,101,119,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,67,104,97,110,103,101,115,32,116,104,101,32, + 67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116, + 67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,105,110,116,32,110,101,119,67,111,110, + 116,114,111,108,108,101,114,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,48,5,67,104,97,110,103,101,115,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,32,118,97,108,117,101,32,40,114,97,110,103,101,32, + 48,32,45,32,49,50,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,70,105,110,101,68,101,116,117, + 110,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,99,101,110,116,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,83,101,116,115,32,116,104,101,32,102,105,110,101,32,100,101,116,117,110,101,32,97, + 109,111,117,110,116,32,105,110,32,99,101,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101,116,71,97, + 105,110,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,103,97,105,110,73,110,68,101,99,105,98,101,108,115,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5,83,101,116,115,32,116,104,101,32,118,111,108,117, + 109,101,32,111,102,32,116,104,101,32,110,111,116,101,32,40,45,49,48,48,32,61,32,115,105,108,101,110,99,101,41,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,78,111,116,101,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40, + 105,110,116,32,110,101,119,78,111,116,101,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,27,5,67,104,97,110,103,101,115,32,116,104,101,32,110,111,116,101,32,110,117,109,98,101,114,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,84,114,97,110,115,112,111,115,101,65,109,111,117,110,116,0,97,114,103,117,109,101,110,116, + 115,0,1,21,5,40,105,110,116,32,116,114,97,110,112,111,115,101,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,26,5,84,114,97,110,115,112,111,115,101,115,32,116,104,101,32,110,111,116,101,32,111,110,46,32,0, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,86,101,108,111,99,105,116,121,0,97,114,103,117,109,101,110,116,115,0, + 1,19,5,40,105,110,116,32,110,101,119,86,101,108,111,99,105,116,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,40,5,67,104,97,110,103,101,115,32,116,104,101,32,118,101,108,111,99,105,116,121,32,40,114,97,110,103,101,32,49, + 32,45,32,49,50,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,115,116,111,114,101,0,97,114,103,117,109,101, + 110,116,115,0,1,26,5,40,118,97,114,32,109,101,115,115,97,103,101,69,118,101,110,116,72,111,108,100,101,114,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,67,5,83,116,111,114,101,115,32,97,32,99,111,112,121,32,111,102,32,116, + 104,101,32,99,117,114,114,101,110,116,32,101,118,101,110,116,32,105,110,116,111,32,116,104,101,32,103,105,118,101,110,32,104,111,108,100,101,114,32,111, + 98,106,101,99,116,46,32,0,0,83,121,110,116,104,0,0,1,43,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,97,100,100,67,111, + 110,116,114,111,108,108,101,114,0,97,114,103,117,109,101,110,116,115,0,1,60,5,40,105,110,116,32,99,104,97,110,110,101,108,44,32,105,110,116,32, + 110,117,109,98,101,114,44,32,105,110,116,32,118,97,108,117,101,44,32,105,110,116,32,116,105,109,101,83,116,97,109,112,83,97,109,112,108,101,115,41, + 0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,35,5,65,100,100,115,32,97,32,99,111, + 110,116,114,111,108,108,101,114,32,116,111,32,116,104,101,32,98,117,102,102,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,11,5,97,100,100,69,102,102,101,99,116,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,32,83,116,114,105,110,103,32,116,121,112,101,44, + 32,32,83,116,114,105,110,103,32,105,100,44,32,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,17,5,83,99, + 114,105,112,116,69,102,102,101,99,116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,65,100,100,115,32,97,32,101,102,102,101, + 99,116,32,40,105,110,100,101,120,32,61,32,45,49,32,116,111,32,97,112,112,101,110,100,32,105,116,32,97,116,32,116,104,101,32,101,110,100,41,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,97,100,100,77,101,115,115,97,103,101,70,114,111,109,72,111,108,100,101,114, + 0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,118,97,114,32,109,101,115,115,97,103,101,72,111,108,100,101,114,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,65,100,100,115,32,116,104,101,32,101,118,101, + 110,116,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,104,111,108,100,101,114,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,101, + 118,101,110,116,32,105,100,32,102,111,114,32,110,111,116,101,32,111,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14, + 5,97,100,100,77,111,100,117,108,97,116,111,114,0,97,114,103,117,109,101,110,116,115,0,1,41,5,40,105,110,116,32,99,104,97,105,110,73,100,44, + 32,32,83,116,114,105,110,103,32,116,121,112,101,44,32,32,83,116,114,105,110,103,32,105,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,20, + 5,83,99,114,105,112,116,77,111,100,117,108,97,116,111,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,85,5,65,100,100,115,32, + 97,32,77,111,100,117,108,97,116,111,114,32,116,111,32,116,104,101,32,115,121,110,116,104,39,115,32,99,104,97,105,110,46,32,73,102,32,105,116,32, + 97,108,114,101,97,100,121,32,101,120,105,115,116,115,44,32,105,116,32,114,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,97,100,100,78,111,116,101,79,102,102,0,97,114,103,117,109,101,110,116,115,0,1,53, + 5,40,105,110,116,32,99,104,97,110,110,101,108,44,32,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110,116,32,116,105,109,101,83, + 116,97,109,112,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,33,5,65,100,100,115,32,97,32,110,111,116,101,32,111,102,102,32,116,111,32,116,104,101,32,98,117,102,102,101,114,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,11,5,97,100,100,78,111,116,101,79,110,0,97,114,103,117,109,101,110,116,115,0,1,67,5,40,105,110,116, + 32,99,104,97,110,110,101,108,44,32,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110,116,32,118,101,108,111,99,105,116,121,44,32, + 105,110,116,32,116,105,109,101,83,116,97,109,112,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,65,100,100,115,32,97,32,110,111,116,101,32,111,110,32,116,111,32,116,104,101,32,98,117, + 102,102,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,97,100,100,80,105,116,99,104,70,97,100,101,0,97,114, + 103,117,109,101,110,116,115,0,1,85,5,40,105,110,116,32,101,118,101,110,116,73,100,44,32,105,110,116,32,102,97,100,101,84,105,109,101,77,105,108, + 108,105,115,101,99,111,110,100,115,44,32,105,110,116,32,116,97,114,103,101,116,67,111,97,114,115,101,80,105,116,99,104,44,32,105,110,116,32,116,97, + 114,103,101,116,70,105,110,101,80,105,116,99,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,43,5,65,100,100,115,32,97,32,112,105,116,99,104,32,102,97,100,101,32,116,111,32,116,104,101,32,103,105,118,101,110,32,101,118,101,110, + 116,32,73,68,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,97,100,100,84,111,70,114,111,110,116,0,97,114,103,117, + 109,101,110,116,115,0,1,19,5,40,98,111,111,108,32,97,100,100,84,111,70,114,111,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, + 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,85,5,65,100,100,115,32,116,104,101,32,105,110,116,101,114,102,97,99,101,32,116,111,32,116, + 104,101,32,67,111,110,116,97,105,110,101,114,39,115,32,98,111,100,121,32,40,111,114,32,116,104,101,32,102,114,111,110,116,101,110,100,32,105,110,116, + 101,114,102,97,99,101,32,105,102,32,99,111,109,112,105,108,101,100,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,97, + 100,100,86,111,108,117,109,101,70,97,100,101,0,97,114,103,117,109,101,110,116,115,0,1,59,5,40,105,110,116,32,101,118,101,110,116,73,100,44,32, + 105,110,116,32,102,97,100,101,84,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,44,32,105,110,116,32,116,97,114,103,101,116,86,111,108,117, + 109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,79,5,70,97,100,101,115,32, + 97,108,108,32,118,111,105,99,101,115,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,101,118,101,110,116,32,105,100,32,116,111,32,116,104, + 101,32,116,97,114,103,101,116,32,118,111,108,117,109,101,32,40,105,110,32,100,101,99,105,98,101,108,115,41,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,16,5,100,101,102,101,114,67,97,108,108,98,97,99,107,115,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,98, + 111,111,108,32,109,97,107,101,65,115,121,110,99,104,114,111,110,111,117,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,80,5,68,101,102,101,114,115,32,97,108,108,32,99,97,108,108,98,97,99,107,115,32,116,111,32,116,104,101,32, + 109,101,115,115,97,103,101,32,116,104,114,101,97,100,32,40,109,105,100,105,32,99,97,108,108,98,97,99,107,115,32,98,101,99,111,109,101,32,114,101, + 97,100,45,111,110,108,121,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116,116,114,105,98,117,116, + 101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,97,116,116,114,105,98,117,116,101,73,110,100,101,120,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,82,101,116,117,114,110,115,32, + 116,104,101,32,97,116,116,114,105,98,117,116,101,32,111,102,32,116,104,101,32,112,97,114,101,110,116,32,115,121,110,116,104,46,32,0,0,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,25,5,103,101,116,65,117,100,105,111,83,97,109,112,108,101,80,114,111,99,101,115,115,111,114,0,97,114, + 103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,31,5, + 83,99,114,105,112,116,65,117,100,105,111,83,97,109,112,108,101,80,114,111,99,101,115,115,111,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,50,5,82,101,116,117,114,110,115,32,116,104,101,32,99,104,105,108,100,32,115,121,110,116,104,32,119,105,116,104,32,116,104,101,32,115,117, + 112,112,108,105,101,100,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,67,104,105,108,100, + 83,121,110,116,104,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,16,5,83,99,114,105,112,116,83,121,110,116,104,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,50,5,82,101, + 116,117,114,110,115,32,116,104,101,32,99,104,105,108,100,32,115,121,110,116,104,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32, + 110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,103,101,116,67,104,105,108,100,83,121,110,116,104,66,121, + 73,110,100,101,120,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,16,5,83,99,114,105,112,116,83,121,110,116,104,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5,82,101,116,117,114, + 110,115,32,116,104,101,32,99,104,105,108,100,32,115,121,110,116,104,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,69,102,102,101,99,116,0,97,114,103,117,109,101,110,116,115,0, + 1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,17,5,83,99,114,105,112,116,69,102, + 102,101,99,116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,116,5,82,101,116,117,114,110,115,32,116,104,101,32,69,102,102,101,99, + 116,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,67,97,110,32,111,110,108,121,32,98,101,32,99,97, + 108,108,101,100,32,105,110,32,111,110,73,110,105,116,40,41,46,32,73,116,32,108,111,111,107,115,32,97,108,115,111,32,105,110,32,97,108,108,32,99, + 104,105,108,100,32,112,114,111,99,101,115,115,111,114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,73, + 100,76,105,115,116,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,116,121,112,101,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,84,5,83,101,97,114,99,104,101,115,32,116,104,101, + 32,99,104,105,108,100,32,112,114,111,99,101,115,115,111,114,115,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,108,105,115,116,32,119,105,116, + 104,32,101,118,101,114,121,32,73,68,32,111,102,32,116,104,101,32,103,105,118,101,110,32,116,121,112,101,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,18,5,103,101,116,77,105,100,105,80,114,111,99,101,115,115,111,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40, + 32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,24,5,83,99,114,105,112,116,77,105,100,105,80,114, + 111,99,101,115,115,111,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,77,5,82,101,116,117,114,110,115,32,116,104,101,32,77,105, + 100,105,80,114,111,99,101,115,115,111,114,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,67,97,110,32, + 110,111,116,32,98,101,32,116,104,101,32,111,119,110,32,110,97,109,101,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5, + 103,101,116,77,111,100,117,108,97,116,111,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41, + 0,114,101,116,117,114,110,84,121,112,101,0,1,20,5,83,99,114,105,112,116,77,111,100,117,108,97,116,111,114,32,42,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,117,5,82,101,116,117,114,110,115,32,116,104,101,32,77,111,100,117,108,97,116,111,114,32,119,105,116,104,32,116,104,101,32, + 115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,67,97,110,32,98,101,32,111,110,108,121,32,99,97,108,108,101,100,32,105,110,32,111,110,73, + 110,105,116,46,32,73,116,32,108,111,111,107,115,32,97,108,115,111,32,105,110,32,97,108,108,32,99,104,105,108,100,32,112,114,111,99,101,115,115,111, + 114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,103,101,116,77,111,100,117,108,97,116,111,114,73,110,100,101,120, + 0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,99,104,97,105,110,73,100,44,32,32,83,116,114,105,110,103,32,105,100,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,82,101,116,117,114,110, + 115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,77,111,100,117,108,97,116,111,114,32,105,110,32,116,104,101,32,99,104,97,105, + 110,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,99,104,97,105,110,73,100,32,0,0,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,19,5,103,101,116,78,117,109,67,104,105,108,100,83,121,110,116,104,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41, + 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,78,5,82,101,116,117,114, + 110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,99,104,105,108,100,32,115,121,110,116,104,115,46,32,87,111,114,107,115,32,119,105,116, + 104,32,83,121,110,116,104,71,114,111,117,112,115,32,97,110,100,32,83,121,110,116,104,67,104,97,105,110,115,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,19,5,103,101,116,78,117,109,80,114,101,115,115,101,100,75,101,121,115,0,97,114,103,117,109,101,110,116,115,0,1,4, + 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,73,5,82,101, + 116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,112,114,101,115,115,101,100,32,107,101,121,115,32,40,33,61,32,116,104,101, + 32,110,117,109,98,101,114,32,111,102,32,112,108,97,121,105,110,103,32,118,111,105,99,101,115,33,41,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,12,5,103,101,116,83,97,109,112,108,101,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103, + 32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,12,5,83,97,109,112,108,101,114,32,42,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,115,97,109,112,108,101,114,32,119,105,116,104,32,116,104,101,32,115,117,112,112, + 108,105,101,100,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,103,101,116,84,97,98,108,101,80,114, + 111,99,101,115,115,111,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,25,5,83,99,114,105,112,116,84,97,98,108,101,80,114,111,99,101,115,115,111,114,32,42,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,51,5,82,101,116,117,114,110,115,32,116,104,101,32,116,97,98,108,101,32,112,114,111,99,101,115,115,111,114,32,119,105,116, + 104,32,116,104,101,32,103,105,118,101,110,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,103,101,116, + 84,105,109,101,114,73,110,116,101,114,118,97,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,82,101,116,117,114,110,115,32,116,104,101,32,99, + 117,114,114,101,110,116,32,116,105,109,101,114,32,105,110,116,101,114,118,97,108,32,105,110,32,115,101,99,111,110,100,115,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,11,5,105,115,75,101,121,68,111,119,110,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116, + 32,110,111,116,101,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112, + 116,105,111,110,0,1,38,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,103,105,118,101,110,32,107,101,121,32,105,115,32,112,114,101,115,115, + 101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,76,101,103,97,116,111,73,110,116,101,114,118,97,108,0, + 97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,32,5,67,104,101,99,107,115,32,105,102,32,97,110,121,32,107,101,121,32,105,115,32,112,114,101,115,115,101,100,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,105,115,83,117,115,116,97,105,110,80,101,100,97,108,68,111,119,110,0,97, + 114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114, + 105,112,116,105,111,110,0,1,48,5,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,101,32,115,117,115,116,97,105,110,32,112,101, + 100,97,108,32,105,115,32,112,114,101,115,115,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,105,115,84,105,109, + 101,114,82,117,110,110,105,110,103,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5, + 98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,50,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,116,105,109,101,114, + 32,102,111,114,32,116,104,105,115,32,115,99,114,105,112,116,32,105,115,32,114,117,110,110,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,9,5,110,111,116,101,79,102,102,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,110,111,116,101,78,117, + 109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,57,5,83,101,110,100, + 115,32,97,32,110,111,116,101,32,111,102,102,32,109,101,115,115,97,103,101,46,32,84,104,101,32,101,110,118,101,108,111,112,101,115,32,119,105,108,108, + 32,116,97,105,108,32,111,102,102,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,110,111,116,101,79,102,102,66,121,69, + 118,101,110,116,73,100,0,97,114,103,117,109,101,110,116,115,0,1,15,5,40,105,110,116,32,101,118,101,110,116,73,100,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,112,5,83,101,110,100,115,32,97,32,110,111,116,101,32,111,102,102, + 32,109,101,115,115,97,103,101,32,102,111,114,32,116,104,101,32,115,117,112,112,108,105,101,100,32,101,118,101,110,116,32,73,68,46,32,84,104,105,115, + 32,105,115,32,109,111,114,101,32,115,116,97,98,108,101,32,116,104,97,110,32,116,104,101,32,100,101,112,114,101,99,97,116,101,100,32,110,111,116,101, + 79,102,102,40,41,32,109,101,116,104,111,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,112,108,97,121,78,111,116, + 101,0,97,114,103,117,109,101,110,116,115,0,1,32,5,40,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110,116,32,118,101,108,111, + 99,105,116,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5, + 80,108,97,121,115,32,97,32,110,111,116,101,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,101,118,101,110,116,32,105,100,46,32,66, + 101,32,99,97,114,101,102,117,108,32,111,114,32,121,111,117,32,103,101,116,32,115,116,117,99,107,32,110,111,116,101,115,33,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,14,5,114,101,109,111,118,101,69,102,102,101,99,116,0,97,114,103,117,109,101,110,116,115,0,1,14,5,40, + 118,97,114,32,101,102,102,101,99,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,28,5,82,101,109,111,118,101,115,32,116,104,101,32,103,105,118,101,110,32,101,102,102,101,99,116,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,17,5,114,101,109,111,118,101,77,111,100,117,108,97,116,111,114,0,97,114,103,117,109,101,110,116,115,0,1,11, + 5,40,118,97,114,32,109,111,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105, + 111,110,0,1,25,5,82,101,109,111,118,101,115,32,116,104,101,32,109,111,100,117,108,97,116,111,114,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,16,5,115,101,110,100,67,111,110,116,114,111,108,108,101,114,0,97,114,103,117,109,101,110,116,115,0,1,45,5,40,105,110,116, + 32,99,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,44,32,105,110,116,32,99,111,110,116,114,111,108,108,101,114,86,97,108,117,101,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,83,101,110,100,115,32,97,32,99,111, + 110,116,114,111,108,108,101,114,32,101,118,101,110,116,32,116,111,32,116,104,101,32,115,121,110,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,29,5,115,101,110,100,67,111,110,116,114,111,108,108,101,114,84,111,67,104,105,108,100,83,121,110,116,104,115,0,97,114,103,117, + 109,101,110,116,115,0,1,45,5,40,105,110,116,32,99,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,44,32,105,110,116,32,99,111,110,116, + 114,111,108,108,101,114,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,59,5,84,104,101,32,115,97,109,101,32,97,115,32,115,101,110,100,67,111,110,116,114,111,108,108,101,114,32,40,102,111,114,32,98,97,99,107,119, + 97,114,100,115,32,99,111,109,112,97,116,105,98,105,108,105,116,121,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115, + 101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,42,5,40,105,110,116,32,97,116,116,114,105,98,117,116,101,73, + 110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,65,116,116,114,105,98,117,116,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,83,101,116,115,32,97,110,32,97,116,116,114,105,98,117,116,101,32,111,102,32,116,104,101, + 32,112,97,114,101,110,116,32,115,121,110,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,67,108,111, + 99,107,83,112,101,101,100,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,99,108,111,99,107,83,112,101,101,100,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,83,101,116,115,32,116,104,101,32,105,110,116, + 101,114,110,97,108,32,99,108,111,99,107,32,115,112,101,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,115,101, + 116,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,105,110,116,32,109,97,99,114,111,73,110,100, + 101,120,44,32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, + 105,112,116,105,111,110,0,1,58,5,83,101,116,115,32,111,110,101,32,111,102,32,116,104,101,32,101,105,103,104,116,32,109,97,99,114,111,32,99,111, + 110,116,114,111,108,108,101,114,115,32,116,111,32,116,104,101,32,110,101,119,86,97,108,117,101,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,23,5,115,101,116,77,111,100,117,108,97,116,111,114,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,71,5, + 40,105,110,116,32,99,104,97,105,110,73,100,44,32,105,110,116,32,109,111,100,117,108,97,116,111,114,73,110,100,101,120,44,32,105,110,116,32,97,116, + 116,114,105,98,117,116,101,73,110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,28,5,83,101,116,115,32,97,32,77,111,100,117,108,97,116,111,114,65,116,116,114, + 105,98,117,116,101,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,115,101,116,86,111,105,99,101,71,97,105,110,86,97,108, + 117,101,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,105,110,116,32,118,111,105,99,101,73,110,100,101,120,44,32,102,108,111,97,116,32,103, + 97,105,110,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5, + 65,112,112,108,105,101,115,32,97,32,103,97,105,110,32,102,97,99,116,111,114,32,116,111,32,97,32,115,112,101,99,105,102,105,101,100,32,118,111,105, + 99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,111,105,99,101,80,105,116,99,104,86,97,108,117, + 101,0,97,114,103,117,109,101,110,116,115,0,1,37,5,40,105,110,116,32,118,111,105,99,101,73,110,100,101,120,44,32,100,111,117,98,108,101,32,112, + 105,116,99,104,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61, + 5,65,112,112,108,105,101,115,32,97,32,112,105,116,99,104,32,102,97,99,116,111,114,32,40,48,46,53,32,46,46,46,32,50,46,48,41,32,116,111, + 32,97,32,115,112,101,99,105,102,105,101,100,32,118,111,105,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115, + 116,97,114,116,84,105,109,101,114,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,100,111,117,98,108,101,32,115,101,99,111,110,100,115,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,83,116,97,114,116,115,32,116,104,101, + 32,116,105,109,101,114,32,111,102,32,116,104,101,32,115,121,110,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5, + 115,116,111,112,84,105,109,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,78,5,83,116,111,112,115,32,116,104,101,32,116,105,109,101,114,32,111,102,32,116,104,101,32,115, + 121,110,116,104,46,32,89,111,117,32,99,97,110,32,99,97,108,108,32,116,104,105,115,32,97,108,115,111,32,105,110,32,116,104,101,32,116,105,109,101, + 114,32,99,97,108,108,98,97,99,107,46,32,0,0,83,97,109,112,108,101,114,0,0,1,18,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, + 18,5,101,110,97,98,108,101,82,111,117,110,100,82,111,98,105,110,0,97,114,103,117,109,101,110,116,115,0,1,28,5,40,98,111,111,108,32,115,104, + 111,117,108,100,85,115,101,82,111,117,110,100,82,111,98,105,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,91,5,69,110,97,98,108,101,115,32,47,32,68,105,115,97,98,108,101,115,32,116,104,101,32,97,117,116,111,109,97,116,105, + 99,32,114,111,117,110,100,32,114,111,98,105,110,32,103,114,111,117,112,32,115,116,97,114,116,32,108,111,103,105,99,32,40,119,111,114,107,115,32,111, + 110,108,121,32,111,110,32,115,97,109,112,108,101,114,115,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116, + 65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,71,101,116,115,32,116,104,101,32,97,116, + 116,114,105,98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,32,40,117,115,101,32,116,104,101,32,99,111, + 110,115,116,97,110,116,115,32,102,111,114,32,99,108,101,97,114,101,114,32,99,111,100,101,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,20,5,103,101,116,77,105,99,80,111,115,105,116,105,111,110,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,105, + 110,116,32,99,104,97,110,110,101,108,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,79,5,82,101,116,117,114,110,115,32,116,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,99,104, + 97,110,110,101,108,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,32,40,77,117,108,116,105,109,105,99,32,115,97,109, + 112,108,101,115,32,111,110,108,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,78,117,109,77,105,99,80, + 111,115,105,116,105,111,110,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105, + 110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102, + 32,109,105,99,32,112,111,115,105,116,105,111,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,103,101,116,78,117, + 109,83,101,108,101,99,116,101,100,83,111,117,110,100,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,42,5,82,101,116,117,114,110,115,32,116,104,101,32,97,109, + 111,117,110,116,32,111,102,32,115,101,108,101,99,116,101,100,32,115,97,109,112,108,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,23,5,103,101,116,82,82,71,114,111,117,112,115,70,111,114,77,101,115,115,97,103,101,0,97,114,103,117,109,101,110,116,115,0,1,32,5, + 40,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110,116,32,118,101,108,111,99,105,116,121,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,73,5,82,101,116,117,114,110,115,32,116,104,101,32,97,109,111, + 117,110,116,32,111,102,32,97,99,116,117,97,108,32,82,82,32,103,114,111,117,112,115,32,102,111,114,32,116,104,101,32,110,111,116,101,110,117,109,98, + 101,114,32,97,110,100,32,118,101,108,111,99,105,116,121,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,103,101,116,83,97, + 109,112,108,101,77,97,112,76,105,115,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,82,101,116,117,114,110,115,32,97,110,32,97,114,114,97,121,32,119, + 105,116,104,32,97,108,108,32,97,118,97,105,108,97,98,108,101,32,115,97,109,112,108,101,32,109,97,112,115,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,18,5,103,101,116,83,111,117,110,100,80,114,111,112,101,114,116,121,0,97,114,103,117,109,101,110,116,115,0,1,37,5, + 40,105,110,116,32,112,114,111,112,101,114,116,121,73,110,100,101,120,44,32,105,110,116,32,115,111,117,110,100,73,110,100,101,120,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,82,101,116,117,114,110,115,32,116,104, + 101,32,112,114,111,112,101,114,116,121,32,111,102,32,116,104,101,32,115,111,117,110,100,32,119,105,116,104,32,116,104,101,32,115,112,101,99,105,102,105, + 101,100,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,105,115,77,105,99,80,111,115,105,116,105, + 111,110,80,117,114,103,101,100,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,105,110,116,32,109,105,99,73,110,100,101,120,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,67,104,101,99,107,115,32,105, + 102,32,116,104,101,32,109,105,99,32,112,111,115,105,116,105,111,110,32,105,115,32,112,117,114,103,101,100,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,15,5,108,111,97,100,83,97,109,112,108,101,77,97,112,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,32,83,116, + 114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,43,5,76,111,97,100,115,32,97,32,110,101,119,32,115,97,109,112,108,101,109,97,112,32,105,110,116,111,32,116,104,105,115,32,115,97,109, + 112,108,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,112,117,114,103,101,77,105,99,80,111,115,105,116,105,111, + 110,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,83,116,114,105,110,103,32,109,105,99,78,97,109,101,44,32,98,111,111,108,32,115,104,111, + 117,108,100,66,101,80,117,114,103,101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,63,5,80,117,114,103,101,115,32,97,108,108,32,115,97,109,112,108,101,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,109,105,99,32,40, + 77,117,108,116,105,109,105,99,32,115,97,109,112,108,101,115,32,111,110,108,121,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,18,5,114,101,102,114,101,115,104,73,110,116,101,114,102,97,99,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,71,5,82,101,102,114,101,115,104,101,115,32,116,104,101,32, + 105,110,116,101,114,102,97,99,101,46,32,67,97,108,108,32,116,104,105,115,32,97,102,116,101,114,32,121,111,117,32,99,104,97,110,103,101,100,32,116, + 104,101,32,112,114,111,112,101,114,116,105,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,114,101,102,114,101,115, + 104,82,82,77,97,112,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,98,5,82,101,99,97,108,99,117,108,97,116,101,115,32,116,104,101,32,82,82,32,77,97,112,46,32,67,97, + 108,108,32,116,104,105,115,32,97,116,32,99,111,109,112,105,108,101,32,116,105,109,101,32,105,102,32,121,111,117,32,119,97,110,116,32,116,111,32,117, + 115,101,32,39,103,101,116,82,82,71,114,111,117,112,70,111,114,77,101,115,115,97,103,101,40,41,39,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,14,5,115,101,108,101,99,116,83,111,117,110,100,115,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,83,116,114,105,110, + 103,32,114,101,103,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,102,5,83, + 101,108,101,99,116,115,32,115,97,109,112,108,101,115,32,117,115,105,110,103,32,116,104,101,32,114,101,103,101,120,32,115,116,114,105,110,103,32,97,115, + 32,119,105,108,100,99,97,114,100,32,97,110,100,32,116,104,101,32,115,101,108,101,99,116,77,111,100,101,32,40,34,83,69,76,69,67,84,34,44,32, + 34,65,68,68,34,44,32,34,83,85,66,84,82,65,67,84,34,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,115,101, + 116,65,99,116,105,118,101,71,114,111,117,112,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,105,110,116,32,97,99,116,105,118,101,71,114,111, + 117,112,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,110,5,69, + 110,97,98,108,101,115,32,116,104,101,32,103,114,111,117,112,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,32,40,111, + 110,101,45,98,97,115,101,100,41,46,32,87,111,114,107,115,32,111,110,108,121,32,119,105,116,104,32,115,97,109,112,108,101,114,115,32,97,110,100,32, + 96,101,110,97,98,108,101,82,111,117,110,100,82,111,98,105,110,40,102,97,108,115,101,41,96,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,105,110,100, + 101,120,44,32,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, + 116,105,111,110,0,1,39,5,83,101,116,115,32,97,32,97,116,116,114,105,98,117,116,101,32,116,111,32,116,104,101,32,103,105,118,101,110,32,118,97, + 108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,83,111,117,110,100,80,114,111,112,101,114,116,121, + 0,97,114,103,117,109,101,110,116,115,0,1,51,5,40,105,110,116,32,115,111,117,110,100,73,110,100,101,120,44,32,105,110,116,32,112,114,111,112,101, + 114,116,121,73,110,100,101,120,44,32,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,56,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,102,111,114,32,116,104,101,32, + 105,110,100,101,120,32,119,105,116,104,105,110,32,116,104,101,32,115,101,108,101,99,116,105,111,110,46,32,0,0,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,30,5,115,101,116,83,111,117,110,100,80,114,111,112,101,114,116,121,70,111,114,83,101,108,101,99,116,105,111,110,0,97,114,103,117, + 109,101,110,116,115,0,1,35,5,40,105,110,116,32,112,114,111,112,101,114,116,121,73,110,100,101,120,44,32,118,97,114,32,110,101,119,86,97,108,117, + 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,60,5,83,101,116,115,32,116,104, + 101,32,112,114,111,112,101,114,116,121,32,111,102,32,116,104,101,32,115,97,109,112,108,101,114,32,115,111,117,110,100,32,102,111,114,32,116,104,101,32, + 115,101,108,101,99,116,105,111,110,46,32,0,0,77,111,100,117,108,101,73,100,115,0,0,1,1,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,9,5,103,101,116,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,15,5,40,41,32,32,32,111,118,101,114,114,105,100,101,0,114,101, + 116,117,114,110,84,121,112,101,0,1,13,5,73,100,101,110,116,105,102,105,101,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,20,5,82, + 101,116,117,114,110,115,32,116,104,101,32,110,97,109,101,46,32,0,0,68,115,112,77,111,100,117,108,101,0,0,1,16,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,13,5,68,115,112,73,110,115,116,97,110,99,101,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,32,68,115,112,70, + 97,99,116,111,114,121,32,42,102,44,32,32,83,116,114,105,110,103,32,109,111,100,117,108,101,78,97,109,101,95,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,3,5,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,72,5,67,114,101,97,116,101,115,32,97,32,110,101,119,32,105,110,115, + 116,97,110,99,101,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,70,97,99,116,111,114,121,32,119,105,116,104,32,116,104,101,32,115,117, + 112,112,108,105,101,100,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,67,111,110,115,116, + 97,110,116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,116,117,114,110,115,32,116,104,101,32,99,111,110,115,116, + 97,110,116,32,97,116,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,15,5,103,101,116,67,111,110,115,116,97,110,116,73,100,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,36,5,82,101,116,117, + 114,110,115,32,116,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,99,111,110,115,116,97,110,116,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,9,5,103,101,116,73,110,102,111,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,82,101,116,117,114,110,115,32,97,110,32,105,110, + 102,111,114,109,97,116,105,118,101,32,83,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116, + 78,117,109,67,111,110,115,116,97,110,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,35,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101, + 114,32,111,102,32,99,111,110,115,116,97,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,103,101,116,78,117, + 109,80,97,114,97,109,101,116,101,114,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,36,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114, + 32,111,102,32,112,97,114,97,109,101,116,101,114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,80,97, + 114,97,109,101,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,112, + 97,114,97,109,101,116,101,114,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,20,5,103,101,116,83,116,114,105,110,103,80,97,114,97,109,101,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1, + 13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,25,5,71,101,116,115,32,116,104,101,32,115,116,114,105,110,103,32,118,97,108,117,101,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,12,5,105,115,66,121,112,97,115,115,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,67,104,101,99,107, + 115,32,105,102,32,116,104,101,32,112,114,111,99,101,115,115,105,110,103,32,105,115,32,101,110,97,98,108,101,100,46,32,0,0,109,101,116,104,111,100, + 0,1,4,110,97,109,101,0,1,12,5,111,112,101,114,97,116,111,114,60,60,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,32,118,97,114, + 32,100,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,65,112,112, + 108,105,101,115,32,116,104,101,32,109,111,100,117,108,101,32,111,110,32,116,104,101,32,100,97,116,97,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,12,5,111,112,101,114,97,116,111,114,62,62,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,32,118,97,114,32,100,97, + 116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,65,112,112,108,105,101, + 115,32,116,104,101,32,109,111,100,117,108,101,32,111,110,32,116,104,101,32,100,97,116,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,15,5,112,114,101,112,97,114,101,84,111,80,108,97,121,0,97,114,103,117,109,101,110,116,115,0,1,42,5,40,100,111,117,98,108,101,32, + 115,97,109,112,108,101,82,97,116,101,44,32,105,110,116,32,115,97,109,112,108,101,115,80,101,114,66,108,111,99,107,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,67,97,108,108,115,32,116,104,101,32,115,101,116,117,112,32,109, + 101,116,104,111,100,32,111,102,32,116,104,101,32,101,120,116,101,114,110,97,108,32,109,111,100,117,108,101,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,14,5,112,114,111,99,101,115,115,66,108,111,99,107,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,32,118,97,114, + 32,100,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,50,5,67,97,108, + 108,115,32,116,104,101,32,112,114,111,99,101,115,115,77,101,116,104,111,100,32,111,102,32,116,104,101,32,101,120,116,101,114,110,97,108,32,109,111,100, + 117,108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,66,121,112,97,115,115,101,100,0,97,114,103,117, + 109,101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,66,121,112,97,115,115,101,100,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,69,110,97,98,108,101,115,32,47,32,68,105,115,97,98,108,101, + 115,32,116,104,101,32,112,114,111,99,101,115,115,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116, + 80,97,114,97,109,101,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,29,5,40,105,110,116,32,105,110,100,101,120,44,32,102,108,111,97,116, + 32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49, + 5,83,101,116,115,32,116,104,101,32,102,108,111,97,116,32,112,97,114,97,109,101,116,101,114,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110, + 32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,83,116,114,105,110,103,80,97,114,97, + 109,101,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,105,110,100,101,120,44,32,83,116,114,105,110,103,32,118,97, + 108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,23,5,83,101,116,115,32, + 97,32,83,116,114,105,110,103,32,118,97,108,117,101,46,32,0,0,83,116,114,105,110,103,0,0,1,11,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,8,5,99,104,97,114,65,116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117,114,110, + 115,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,97,116,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,99,104,97,114,67,111,100,101,65,116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40, + 118,97,114,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,63,5,82,101,116,117,114,110,115,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,97,116,32,116,104,101,32,103,105,118,101,110,32, + 112,111,115,105,116,105,111,110,32,97,115,32,65,83,67,73,73,32,110,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,8,5,99,111,110,99,97,116,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,118,97,114,32,115,116,114,105,110,103,108,105,115,116, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,63,5,74, + 111,105,110,115,32,116,119,111,32,111,114,32,109,111,114,101,32,115,116,114,105,110,103,115,44,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32, + 110,101,119,32,106,111,105,110,101,100,32,115,116,114,105,110,103,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,105, + 110,100,101,120,79,102,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,118,97,114,32,115,117,98,115,116,114,105,110,103,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,82,101,116,117,114,110,115,32,116,104, + 101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,102,105,114,115,116,32,102,111,117,110,100,32,111,99,99,117,114,114,101,110,99,101, + 32,111,102,32,97,32,115,112,101,99,105,102,105,101,100,32,118,97,108,117,101,32,105,110,32,97,32,115,116,114,105,110,103,46,32,0,0,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,13,5,108,97,115,116,73,110,100,101,120,79,102,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40, + 118,97,114,32,115,117,98,115,116,114,105,110,103,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,86,5,82,101,116,117,114,110,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,108,97,115, + 116,32,102,111,117,110,100,32,111,99,99,117,114,114,101,110,99,101,32,111,102,32,97,32,115,112,101,99,105,102,105,101,100,32,118,97,108,117,101,32, + 105,110,32,97,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,114,101,112,108,97,99,101,0, + 97,114,103,117,109,101,110,116,115,0,1,43,5,40,118,97,114,32,115,117,98,115,116,114,105,110,103,84,111,76,111,111,107,70,111,114,44,32,118,97, + 114,32,114,101,112,108,97,99,101,109,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,76,5,82,101,116,117,114,110,115,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32,115,116,114,105,110,103, + 32,97,110,100,32,114,101,112,108,97,99,101,115,32,97,108,108,32,111,99,99,117,114,101,110,99,101,115,32,111,102,32,96,97,96,32,119,105,116,104, + 32,96,98,96,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,115,112,108,105,116,0,97,114,103,117,109,101,110,116,115, + 0,1,23,5,40,118,97,114,32,115,101,112,97,114,97,116,111,114,83,116,114,105,110,103,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5, + 65,114,114,97,121,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,60,5,83,112,108,105,116,115,32,116,104,101,32,115,116,114,105,110,103,32, + 105,110,116,111,32,97,110,32,97,114,114,97,121,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,115,101,112,97,114,97,116,111,114,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,117,98,115,116,114,105,110,103,0,97,114,103,117,109,101,110,116,115,0,1, + 32,5,40,105,110,116,32,115,116,97,114,116,73,110,100,101,120,44,32,105,110,116,32,101,110,100,73,110,100,101,120,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117,114,110,115,32,116,104, + 101,32,115,117,98,115,116,114,105,110,103,32,105,110,32,116,104,101,32,103,105,118,101,110,32,114,97,110,103,101,46,32,0,0,109,101,116,104,111,100, + 0,1,4,110,97,109,101,0,1,13,5,116,111,76,111,119,101,114,67,97,115,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,42,5,67,111,110,118, + 101,114,116,115,32,97,32,115,116,114,105,110,103,32,116,111,32,108,111,119,101,114,99,97,115,101,32,108,101,116,116,101,114,115,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,116,111,85,112,112,101,114,67,97,115,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5, + 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,42,5, + 67,111,110,118,101,114,116,115,32,97,32,115,116,114,105,110,103,32,116,111,32,117,112,112,101,114,99,97,115,101,32,108,101,116,116,101,114,115,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,116,114,105,109,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,95,5,82,101,116, + 117,114,110,115,32,97,32,99,111,112,121,32,111,102,32,116,104,105,115,32,115,116,114,105,110,103,32,119,105,116,104,32,97,110,121,32,119,104,105,116, + 101,115,112,97,99,101,32,99,104,97,114,97,99,116,101,114,115,32,114,101,109,111,118,101,100,32,102,114,111,109,32,116,104,101,32,115,116,97,114,116, + 32,97,110,100,32,101,110,100,46,32,0,0,65,114,114,97,121,0,0,1,9,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,99,111, + 110,116,97,105,110,115,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,118,97,114,32,101,108,101,109,101,110,116,84,111,76,111,111,107,70,111, + 114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,83,101, + 97,114,99,104,101,115,32,102,111,114,32,116,104,101,32,101,108,101,109,101,110,116,32,105,110,32,116,104,101,32,97,114,114,97,121,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,105,110,100,101,120,79,102,0,97,114,103,117,109,101,110,116,115,0,1,61,5,40,118,97, + 114,32,101,108,101,109,101,110,116,84,111,76,111,111,107,70,111,114,44,32,105,110,116,32,115,116,97,114,116,79,102,102,115,101,116,44,32,105,110,116, + 32,116,121,112,101,83,116,114,105,99,116,110,101,115,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,50,5,83,101,97,114,99,104,101,115,32,116,104,101,32,97,114,114,97,121,32,97,110,100,32,114,101,116,117,114,110, + 115,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,105,110, + 115,101,114,116,0,97,114,103,117,109,101,110,116,115,0,1,36,5,40,105,110,116,32,102,105,114,115,116,73,110,100,101,120,44,32,118,97,114,32,97, + 114,103,117,109,101,110,116,76,105,115,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,49,5,73,110,115,101,114,116,115,32,116,104,101,32,103,105,118,101,110,32,97,114,103,117,109,101,110,116,115,32,97,116,32,116,104,101,32,102,105, + 114,115,116,73,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,105,115,65,114,114,97,121,0,97,114,103, + 117,109,101,110,116,115,0,1,22,5,40,118,97,114,32,118,97,114,105,97,98,108,101,84,111,84,101,115,116,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32, + 103,105,118,101,110,32,118,97,114,105,97,98,108,101,32,105,115,32,97,110,32,97,114,114,97,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,6,5,106,111,105,110,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,115,101,112,97,114,97,116,111,114,83, + 116,114,105,110,103,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,58,5,74,111,105,110,115,32,116,104,101,32,97,114,114,97,121,32,105,110,116,111,32,97,32,115,116,114,105,110,103,32,119,105,116,104,32,116, + 104,101,32,103,105,118,101,110,32,115,101,112,97,114,97,116,111,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,112, + 117,115,104,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,101,108,101,109,101,110,116,84,111,73,110,115,101,114,116,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,58,5,65,100,100,115,32,116,104, + 101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,32,97,116,32,116,104,101,32,101,110,100,32,97,110,100,32,114,101,116,117,114,110,115,32,116, + 104,101,32,115,105,122,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,114,101,109,111,118,101,0,97,114,103,117,109, + 101,110,116,115,0,1,23,5,40,118,97,114,32,101,108,101,109,101,110,116,84,111,82,101,109,111,118,101,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,109,111,118,101,115,32,97,108,108,32,105,110,115,116, + 97,110,99,101,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,9,5,114,101,118,101,114,115,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,82,101,118,101,114,115,101,115,32,116,104,101,32,111,114,100,101,114,32, + 111,102,32,116,104,101,32,101,108,101,109,101,110,116,115,32,105,110,32,116,104,101,32,97,114,114,97,121,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,6,5,115,111,114,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,19,5,83,111,114,116,115,32,116,104,101,32,97,114,114,97,121,46,32,0,0,77, + 111,100,117,108,97,116,111,114,0,0,1,7,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120,105,115,116,115,0,97,114,103,117, 109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,55,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,101,118,101,110,116,32,119,97,115,32,99,114,101,97,116,101,100,32,98, - 121,32,97,32,115,99,114,105,112,116,32,101,97,114,108,105,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,109, - 97,107,101,65,114,116,105,102,105,99,105,97,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,72,5,67,114,101,97,116,101,115,32,97,32,97,114,116,105,102,105, - 99,105,97,108,32,99,111,112,121,32,111,102,32,116,104,105,115,32,101,118,101,110,116,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32, - 110,101,119,32,101,118,101,110,116,32,73,68,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,67,104,97,110, - 110,101,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,110,101,119,67,104,97,110,110,101,108,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,67,104,97,110,103,101,115,32,116,104,101,32,77,73,68,73, - 32,99,104,97,110,110,101,108,32,102,114,111,109,32,49,32,116,111,32,49,54,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 17,5,115,101,116,67,111,97,114,115,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,115,101,109,105, - 84,111,110,101,68,101,116,117,110,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 46,5,83,101,116,115,32,116,104,101,32,99,111,97,114,115,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,115,101,109,105,116, - 111,110,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,115,101,116,67,111,110,116,114,111,108,108,101,114,78,117, - 109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,110,101,119,67,111,110,116,114,111,108,108,101,114,78,117,109,98, - 101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,67,104,97,110,103,101, - 115,32,116,104,101,32,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,20,5,115,101,116,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,105,110,116,32, - 110,101,119,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,48,5,67,104,97,110,103,101,115,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,32,118,97,108,117,101,32,40, - 114,97,110,103,101,32,48,32,45,32,49,50,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,70,105, - 110,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,99,101,110,116,115,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,83,101,116,115,32,116,104,101,32,102,105,110,101,32,100,101, - 116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,99,101,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9, - 5,115,101,116,71,97,105,110,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,103,97,105,110,73,110,68,101,99,105,98,101,108, - 115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5,83,101,116,115,32,116,104, - 101,32,118,111,108,117,109,101,32,111,102,32,116,104,101,32,110,111,116,101,32,40,45,49,48,48,32,61,32,115,105,108,101,110,99,101,41,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,78,111,116,101,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116, - 115,0,1,21,5,40,105,110,116,32,110,101,119,78,111,116,101,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,67,104,97,110,103,101,115,32,116,104,101,32,110,111,116,101,32,110,117,109,98,101,114,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,84,114,97,110,115,112,111,115,101,65,109,111,117,110,116,0,97,114, - 103,117,109,101,110,116,115,0,1,21,5,40,105,110,116,32,116,114,97,110,112,111,115,101,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,26,5,84,114,97,110,115,112,111,115,101,115,32,116,104,101,32,110,111,116,101, - 32,111,110,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,86,101,108,111,99,105,116,121,0,97,114,103,117, - 109,101,110,116,115,0,1,19,5,40,105,110,116,32,110,101,119,86,101,108,111,99,105,116,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, - 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,67,104,97,110,103,101,115,32,116,104,101,32,118,101,108,111,99,105,116,121,32,40,114, - 97,110,103,101,32,49,32,45,32,49,50,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,115,116,111,114,101,0, - 97,114,103,117,109,101,110,116,115,0,1,26,5,40,118,97,114,32,109,101,115,115,97,103,101,69,118,101,110,116,72,111,108,100,101,114,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,67,5,83,116,111,114,101,115,32,97,32,99,111,112, - 121,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,101,118,101,110,116,32,105,110,116,111,32,116,104,101,32,103,105,118,101,110,32,104,111, - 108,100,101,114,32,111,98,106,101,99,116,46,32,0,0,83,121,110,116,104,0,0,1,43,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15, - 5,97,100,100,67,111,110,116,114,111,108,108,101,114,0,97,114,103,117,109,101,110,116,115,0,1,60,5,40,105,110,116,32,99,104,97,110,110,101,108, - 44,32,105,110,116,32,110,117,109,98,101,114,44,32,105,110,116,32,118,97,108,117,101,44,32,105,110,116,32,116,105,109,101,83,116,97,109,112,83,97, - 109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,35,5,65,100,100, - 115,32,97,32,99,111,110,116,114,111,108,108,101,114,32,116,111,32,116,104,101,32,98,117,102,102,101,114,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,11,5,97,100,100,69,102,102,101,99,116,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,32,83,116,114,105,110,103, - 32,116,121,112,101,44,32,32,83,116,114,105,110,103,32,105,100,44,32,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,17,5,83,99,114,105,112,116,69,102,102,101,99,116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,65,100,100,115,32, - 97,32,101,102,102,101,99,116,32,40,105,110,100,101,120,32,61,32,45,49,32,116,111,32,97,112,112,101,110,100,32,105,116,32,97,116,32,116,104,101, - 32,101,110,100,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,97,100,100,77,101,115,115,97,103,101,70,114,111,109, - 72,111,108,100,101,114,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,118,97,114,32,109,101,115,115,97,103,101,72,111,108,100,101,114,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,65,100,100,115,32,116, - 104,101,32,101,118,101,110,116,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,104,111,108,100,101,114,32,97,110,100,32,114,101,116,117,114, - 110,115,32,97,32,101,118,101,110,116,32,105,100,32,102,111,114,32,110,111,116,101,32,111,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110, - 97,109,101,0,1,14,5,97,100,100,77,111,100,117,108,97,116,111,114,0,97,114,103,117,109,101,110,116,115,0,1,41,5,40,105,110,116,32,99,104, - 97,105,110,73,100,44,32,32,83,116,114,105,110,103,32,116,121,112,101,44,32,32,83,116,114,105,110,103,32,105,100,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,20,5,83,99,114,105,112,116,77,111,100,117,108,97,116,111,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,85, - 5,65,100,100,115,32,97,32,77,111,100,117,108,97,116,111,114,32,116,111,32,116,104,101,32,115,121,110,116,104,39,115,32,99,104,97,105,110,46,32, - 73,102,32,105,116,32,97,108,114,101,97,100,121,32,101,120,105,115,116,115,44,32,105,116,32,114,101,116,117,114,110,115,32,116,104,101,32,105,110,100, - 101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,97,100,100,78,111,116,101,79,102,102,0,97,114,103,117,109,101, - 110,116,115,0,1,53,5,40,105,110,116,32,99,104,97,110,110,101,108,44,32,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110,116, - 32,116,105,109,101,83,116,97,109,112,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,33,5,65,100,100,115,32,97,32,110,111,116,101,32,111,102,102,32,116,111,32,116,104,101,32,98,117,102,102,101,114,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,97,100,100,78,111,116,101,79,110,0,97,114,103,117,109,101,110,116,115,0,1, - 67,5,40,105,110,116,32,99,104,97,110,110,101,108,44,32,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110,116,32,118,101,108,111, - 99,105,116,121,44,32,105,110,116,32,116,105,109,101,83,116,97,109,112,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,65,100,100,115,32,97,32,110,111,116,101,32,111,110,32,116,111,32, - 116,104,101,32,98,117,102,102,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,97,100,100,80,105,116,99,104,70, - 97,100,101,0,97,114,103,117,109,101,110,116,115,0,1,85,5,40,105,110,116,32,101,118,101,110,116,73,100,44,32,105,110,116,32,102,97,100,101,84, - 105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,44,32,105,110,116,32,116,97,114,103,101,116,67,111,97,114,115,101,80,105,116,99,104,44,32, - 105,110,116,32,116,97,114,103,101,116,70,105,110,101,80,105,116,99,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,43,5,65,100,100,115,32,97,32,112,105,116,99,104,32,102,97,100,101,32,116,111,32,116,104,101,32,103,105,118,101, - 110,32,101,118,101,110,116,32,73,68,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,97,100,100,84,111,70,114,111,110, - 116,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,98,111,111,108,32,97,100,100,84,111,70,114,111,110,116,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,85,5,65,100,100,115,32,116,104,101,32,105,110,116,101,114,102,97,99, - 101,32,116,111,32,116,104,101,32,67,111,110,116,97,105,110,101,114,39,115,32,98,111,100,121,32,40,111,114,32,116,104,101,32,102,114,111,110,116,101, - 110,100,32,105,110,116,101,114,102,97,99,101,32,105,102,32,99,111,109,112,105,108,101,100,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,15,5,97,100,100,86,111,108,117,109,101,70,97,100,101,0,97,114,103,117,109,101,110,116,115,0,1,59,5,40,105,110,116,32,101,118,101, - 110,116,73,100,44,32,105,110,116,32,102,97,100,101,84,105,109,101,77,105,108,108,105,115,101,99,111,110,100,115,44,32,105,110,116,32,116,97,114,103, - 101,116,86,111,108,117,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,79,5, - 70,97,100,101,115,32,97,108,108,32,118,111,105,99,101,115,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,101,118,101,110,116,32,105,100, - 32,116,111,32,116,104,101,32,116,97,114,103,101,116,32,118,111,108,117,109,101,32,40,105,110,32,100,101,99,105,98,101,108,115,41,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,100,101,102,101,114,67,97,108,108,98,97,99,107,115,0,97,114,103,117,109,101,110,116,115, - 0,1,25,5,40,98,111,111,108,32,109,97,107,101,65,115,121,110,99,104,114,111,110,111,117,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,68,101,102,101,114,115,32,97,108,108,32,99,97,108,108,98,97,99,107,115,32,116, - 111,32,116,104,101,32,109,101,115,115,97,103,101,32,116,104,114,101,97,100,32,40,109,105,100,105,32,99,97,108,108,98,97,99,107,115,32,98,101,99, - 111,109,101,32,114,101,97,100,45,111,110,108,121,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116, - 116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,97,116,116,114,105,98,117,116,101,73,110,100,101,120, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,82,101, - 116,117,114,110,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,111,102,32,116,104,101,32,112,97,114,101,110,116,32,115,121,110,116,104,46, - 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,25,5,103,101,116,65,117,100,105,111,83,97,109,112,108,101,80,114,111,99,101,115, - 115,111,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,31,5,83,99,114,105,112,116,65,117,100,105,111,83,97,109,112,108,101,80,114,111,99,101,115,115,111,114,32,42,32,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,50,5,82,101,116,117,114,110,115,32,116,104,101,32,99,104,105,108,100,32,115,121,110,116,104,32,119,105,116,104,32, - 116,104,101,32,115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101, - 116,67,104,105,108,100,83,121,110,116,104,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,16,5,83,99,114,105,112,116,83,121,110,116,104,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,50,5,82,101,116,117,114,110,115,32,116,104,101,32,99,104,105,108,100,32,115,121,110,116,104,32,119,105,116,104,32,116,104,101,32,115,117,112, - 112,108,105,101,100,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,103,101,116,67,104,105,108,100,83, - 121,110,116,104,66,121,73,110,100,101,120,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,16,5,83,99,114,105,112,116,83,121,110,116,104,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48, - 5,82,101,116,117,114,110,115,32,116,104,101,32,99,104,105,108,100,32,115,121,110,116,104,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32, - 105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,69,102,102,101,99,116,0,97,114,103,117, - 109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,17,5,83,99, - 114,105,112,116,69,102,102,101,99,116,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,116,5,82,101,116,117,114,110,115,32,116,104,101, - 32,69,102,102,101,99,116,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,67,97,110,32,111,110,108,121, - 32,98,101,32,99,97,108,108,101,100,32,105,110,32,111,110,73,110,105,116,40,41,46,32,73,116,32,108,111,111,107,115,32,97,108,115,111,32,105,110, - 32,97,108,108,32,99,104,105,108,100,32,112,114,111,99,101,115,115,111,114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 11,5,103,101,116,73,100,76,105,115,116,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,116,121,112,101,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,84,5,83,101,97,114,99,104, - 101,115,32,116,104,101,32,99,104,105,108,100,32,112,114,111,99,101,115,115,111,114,115,32,97,110,100,32,114,101,116,117,114,110,115,32,97,32,108,105, - 115,116,32,119,105,116,104,32,101,118,101,114,121,32,73,68,32,111,102,32,116,104,101,32,103,105,118,101,110,32,116,121,112,101,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,103,101,116,77,105,100,105,80,114,111,99,101,115,115,111,114,0,97,114,103,117,109,101,110,116, - 115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,24,5,83,99,114,105,112,116, - 77,105,100,105,80,114,111,99,101,115,115,111,114,32,42,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,77,5,82,101,116,117,114,110,115,32, - 116,104,101,32,77,105,100,105,80,114,111,99,101,115,115,111,114,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,110,97,109,101, - 46,32,67,97,110,32,110,111,116,32,98,101,32,116,104,101,32,111,119,110,32,110,97,109,101,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,14,5,103,101,116,77,111,100,117,108,97,116,111,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103, - 32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,20,5,83,99,114,105,112,116,77,111,100,117,108,97,116,111,114,32,42,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,117,5,82,101,116,117,114,110,115,32,116,104,101,32,77,111,100,117,108,97,116,111,114,32,119,105,116, - 104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,67,97,110,32,98,101,32,111,110,108,121,32,99,97,108,108,101,100,32, - 105,110,32,111,110,73,110,105,116,46,32,73,116,32,108,111,111,107,115,32,97,108,115,111,32,105,110,32,97,108,108,32,99,104,105,108,100,32,112,114, - 111,99,101,115,115,111,114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,103,101,116,77,111,100,117,108,97,116,111, - 114,73,110,100,101,120,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,99,104,97,105,110,73,100,44,32,32,83,116,114,105,110, - 103,32,105,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5, - 82,101,116,117,114,110,115,32,116,104,101,32,105,110,100,101,120,32,111,102,32,116,104,101,32,77,111,100,117,108,97,116,111,114,32,105,110,32,116,104, - 101,32,99,104,97,105,110,32,119,105,116,104,32,116,104,101,32,115,117,112,112,108,105,101,100,32,99,104,97,105,110,73,100,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,19,5,103,101,116,78,117,109,67,104,105,108,100,83,121,110,116,104,115,0,97,114,103,117,109,101,110,116,115, - 0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,78, - 5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,99,104,105,108,100,32,115,121,110,116,104,115,46,32,87,111,114, - 107,115,32,119,105,116,104,32,83,121,110,116,104,71,114,111,117,112,115,32,97,110,100,32,83,121,110,116,104,67,104,97,105,110,115,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,103,101,116,78,117,109,80,114,101,115,115,101,100,75,101,121,115,0,97,114,103,117,109,101, - 110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,73,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,112,114,101,115,115,101,100,32,107,101,121,115,32,40, - 33,61,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,112,108,97,121,105,110,103,32,118,111,105,99,101,115,33,41,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,83,97,109,112,108,101,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32, - 83,116,114,105,110,103,32,110,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,12,5,83,97,109,112,108,101,114,32,42,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,115,97,109,112,108,101,114,32,119,105,116,104,32,116,104, - 101,32,115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,103,101,116,84, - 97,98,108,101,80,114,111,99,101,115,115,111,114,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,32,83,116,114,105,110,103,32,110,97,109,101, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,25,5,83,99,114,105,112,116,84,97,98,108,101,80,114,111,99,101,115,115,111,114,32,42,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,82,101,116,117,114,110,115,32,116,104,101,32,116,97,98,108,101,32,112,114,111,99,101,115,115, - 111,114,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,18,5,103,101,116,84,105,109,101,114,73,110,116,101,114,118,97,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,82,101,116,117,114,110,115, - 32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,109,101,114,32,105,110,116,101,114,118,97,108,32,105,110,32,115,101,99,111,110,100,115,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,105,115,75,101,121,68,111,119,110,0,97,114,103,117,109,101,110,116,115,0,1, - 18,5,40,105,110,116,32,110,111,116,101,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100, - 101,115,99,114,105,112,116,105,111,110,0,1,38,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,103,105,118,101,110,32,107,101,121,32,105,115, - 32,112,114,101,115,115,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,76,101,103,97,116,111,73,110,116, - 101,114,118,97,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,67,104,101,99,107,115,32,105,102,32,97,110,121,32,107,101,121,32,105,115,32,112,114, - 101,115,115,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,105,115,83,117,115,116,97,105,110,80,101,100,97,108, - 68,111,119,110,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32, - 0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5,82,101,116,117,114,110,115,32,116,114,117,101,32,105,102,32,116,104,101,32,115,117,115,116, - 97,105,110,32,112,101,100,97,108,32,105,115,32,112,114,101,115,115,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16, - 5,105,115,84,105,109,101,114,82,117,110,110,105,110,103,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,50,5,67,104,101,99,107,115,32,105,102,32,116,104,101, - 32,116,105,109,101,114,32,102,111,114,32,116,104,105,115,32,115,99,114,105,112,116,32,105,115,32,114,117,110,110,105,110,103,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,9,5,110,111,116,101,79,102,102,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32, - 110,111,116,101,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 57,5,83,101,110,100,115,32,97,32,110,111,116,101,32,111,102,102,32,109,101,115,115,97,103,101,46,32,84,104,101,32,101,110,118,101,108,111,112,101, - 115,32,119,105,108,108,32,116,97,105,108,32,111,102,102,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,110,111,116,101, - 79,102,102,66,121,69,118,101,110,116,73,100,0,97,114,103,117,109,101,110,116,115,0,1,15,5,40,105,110,116,32,101,118,101,110,116,73,100,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,112,5,83,101,110,100,115,32,97,32,110,111, - 116,101,32,111,102,102,32,109,101,115,115,97,103,101,32,102,111,114,32,116,104,101,32,115,117,112,112,108,105,101,100,32,101,118,101,110,116,32,73,68, - 46,32,84,104,105,115,32,105,115,32,109,111,114,101,32,115,116,97,98,108,101,32,116,104,97,110,32,116,104,101,32,100,101,112,114,101,99,97,116,101, - 100,32,110,111,116,101,79,102,102,40,41,32,109,101,116,104,111,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,112, - 108,97,121,78,111,116,101,0,97,114,103,117,109,101,110,116,115,0,1,32,5,40,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110, - 116,32,118,101,108,111,99,105,116,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105, - 111,110,0,1,76,5,80,108,97,121,115,32,97,32,110,111,116,101,32,97,110,100,32,114,101,116,117,114,110,115,32,116,104,101,32,101,118,101,110,116, - 32,105,100,46,32,66,101,32,99,97,114,101,102,117,108,32,111,114,32,121,111,117,32,103,101,116,32,115,116,117,99,107,32,110,111,116,101,115,33,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,114,101,109,111,118,101,69,102,102,101,99,116,0,97,114,103,117,109,101,110,116, - 115,0,1,14,5,40,118,97,114,32,101,102,102,101,99,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,28,5,82,101,109,111,118,101,115,32,116,104,101,32,103,105,118,101,110,32,101,102,102,101,99,116,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,114,101,109,111,118,101,77,111,100,117,108,97,116,111,114,0,97,114,103,117,109,101, - 110,116,115,0,1,11,5,40,118,97,114,32,109,111,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115, - 99,114,105,112,116,105,111,110,0,1,25,5,82,101,109,111,118,101,115,32,116,104,101,32,109,111,100,117,108,97,116,111,114,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,16,5,115,101,110,100,67,111,110,116,114,111,108,108,101,114,0,97,114,103,117,109,101,110,116,115,0,1, - 45,5,40,105,110,116,32,99,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,44,32,105,110,116,32,99,111,110,116,114,111,108,108,101,114,86, - 97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,83,101,110,100, - 115,32,97,32,99,111,110,116,114,111,108,108,101,114,32,101,118,101,110,116,32,116,111,32,116,104,101,32,115,121,110,116,104,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,29,5,115,101,110,100,67,111,110,116,114,111,108,108,101,114,84,111,67,104,105,108,100,83,121,110,116,104, - 115,0,97,114,103,117,109,101,110,116,115,0,1,45,5,40,105,110,116,32,99,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,44,32,105,110, - 116,32,99,111,110,116,114,111,108,108,101,114,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,59,5,84,104,101,32,115,97,109,101,32,97,115,32,115,101,110,100,67,111,110,116,114,111,108,108,101,114,32,40,102,111,114, - 32,98,97,99,107,119,97,114,100,115,32,99,111,109,112,97,116,105,98,105,108,105,116,121,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,42,5,40,105,110,116,32,97,116,116,114, - 105,98,117,116,101,73,110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,65,116,116,114,105,98,117,116,101,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,83,101,116,115,32,97,110,32,97,116,116,114,105,98,117,116,101,32, - 111,102,32,116,104,101,32,112,97,114,101,110,116,32,115,121,110,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5, - 115,101,116,67,108,111,99,107,83,112,101,101,100,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,99,108,111,99,107,83,112,101, - 101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,83,101,116,115,32,116, - 104,101,32,105,110,116,101,114,110,97,108,32,99,108,111,99,107,32,115,112,101,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,17,5,115,101,116,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,105,110,116,32,109,97, - 99,114,111,73,110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, - 0,100,101,115,99,114,105,112,116,105,111,110,0,1,58,5,83,101,116,115,32,111,110,101,32,111,102,32,116,104,101,32,101,105,103,104,116,32,109,97, - 99,114,111,32,99,111,110,116,114,111,108,108,101,114,115,32,116,111,32,116,104,101,32,110,101,119,86,97,108,117,101,46,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,23,5,115,101,116,77,111,100,117,108,97,116,111,114,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110, - 116,115,0,1,71,5,40,105,110,116,32,99,104,97,105,110,73,100,44,32,105,110,116,32,109,111,100,117,108,97,116,111,114,73,110,100,101,120,44,32, - 105,110,116,32,97,116,116,114,105,98,117,116,101,73,110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,28,5,83,101,116,115,32,97,32,77,111,100,117,108,97,116, - 111,114,65,116,116,114,105,98,117,116,101,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,115,101,116,86,111,105,99,101,71, - 97,105,110,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,105,110,116,32,118,111,105,99,101,73,110,100,101,120,44,32,102, - 108,111,97,116,32,103,97,105,110,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105, - 111,110,0,1,46,5,65,112,112,108,105,101,115,32,97,32,103,97,105,110,32,102,97,99,116,111,114,32,116,111,32,97,32,115,112,101,99,105,102,105, - 101,100,32,118,111,105,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,111,105,99,101,80,105,116, - 99,104,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,37,5,40,105,110,116,32,118,111,105,99,101,73,110,100,101,120,44,32,100,111, - 117,98,108,101,32,112,105,116,99,104,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,61,5,65,112,112,108,105,101,115,32,97,32,112,105,116,99,104,32,102,97,99,116,111,114,32,40,48,46,53,32,46,46,46,32,50, - 46,48,41,32,116,111,32,97,32,115,112,101,99,105,102,105,101,100,32,118,111,105,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,12,5,115,116,97,114,116,84,105,109,101,114,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,100,111,117,98,108,101,32,115,101,99, - 111,110,100,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,83,116,97,114, - 116,115,32,116,104,101,32,116,105,109,101,114,32,111,102,32,116,104,101,32,115,121,110,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,11,5,115,116,111,112,84,105,109,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,78,5,83,116,111,112,115,32,116,104,101,32,116,105,109,101,114,32,111,102, - 32,116,104,101,32,115,121,110,116,104,46,32,89,111,117,32,99,97,110,32,99,97,108,108,32,116,104,105,115,32,97,108,115,111,32,105,110,32,116,104, - 101,32,116,105,109,101,114,32,99,97,108,108,98,97,99,107,46,32,0,0,83,97,109,112,108,101,114,0,0,1,18,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,18,5,101,110,97,98,108,101,82,111,117,110,100,82,111,98,105,110,0,97,114,103,117,109,101,110,116,115,0,1,28,5,40,98, - 111,111,108,32,115,104,111,117,108,100,85,115,101,82,111,117,110,100,82,111,98,105,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,91,5,69,110,97,98,108,101,115,32,47,32,68,105,115,97,98,108,101,115,32,116,104,101,32,97,117, - 116,111,109,97,116,105,99,32,114,111,117,110,100,32,114,111,98,105,110,32,103,114,111,117,112,32,115,116,97,114,116,32,108,111,103,105,99,32,40,119, - 111,114,107,115,32,111,110,108,121,32,111,110,32,115,97,109,112,108,101,114,115,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,14,5,103,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,71,101,116,115,32, - 116,104,101,32,97,116,116,114,105,98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,32,40,117,115,101,32, - 116,104,101,32,99,111,110,115,116,97,110,116,115,32,102,111,114,32,99,108,101,97,114,101,114,32,99,111,100,101,41,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,77,105,99,80,111,115,105,116,105,111,110,78,97,109,101,0,97,114,103,117,109,101,110,116,115, - 0,1,20,5,40,105,110,116,32,99,104,97,110,110,101,108,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114, - 105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,79,5,82,101,116,117,114,110,115,32,116,104,101,32,110,97,109,101,32,111,102,32, - 116,104,101,32,99,104,97,110,110,101,108,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,32,40,77,117,108,116,105,109, - 105,99,32,115,97,109,112,108,101,115,32,111,110,108,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,78, - 117,109,77,105,99,80,111,115,105,116,105,111,110,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109, - 98,101,114,32,111,102,32,109,105,99,32,112,111,115,105,116,105,111,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22, - 5,103,101,116,78,117,109,83,101,108,101,99,116,101,100,83,111,117,110,100,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,42,5,82,101,116,117,114,110,115,32, - 116,104,101,32,97,109,111,117,110,116,32,111,102,32,115,101,108,101,99,116,101,100,32,115,97,109,112,108,101,115,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,23,5,103,101,116,82,82,71,114,111,117,112,115,70,111,114,77,101,115,115,97,103,101,0,97,114,103,117,109,101,110, - 116,115,0,1,32,5,40,105,110,116,32,110,111,116,101,78,117,109,98,101,114,44,32,105,110,116,32,118,101,108,111,99,105,116,121,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,73,5,82,101,116,117,114,110,115,32,116, - 104,101,32,97,109,111,117,110,116,32,111,102,32,97,99,116,117,97,108,32,82,82,32,103,114,111,117,112,115,32,102,111,114,32,116,104,101,32,110,111, - 116,101,110,117,109,98,101,114,32,97,110,100,32,118,101,108,111,99,105,116,121,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18, - 5,103,101,116,83,97,109,112,108,101,77,97,112,76,105,115,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,82,101,116,117,114,110,115,32,97,110,32,97, - 114,114,97,121,32,119,105,116,104,32,97,108,108,32,97,118,97,105,108,97,98,108,101,32,115,97,109,112,108,101,32,109,97,112,115,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,103,101,116,83,111,117,110,100,80,114,111,112,101,114,116,121,0,97,114,103,117,109,101,110, - 116,115,0,1,37,5,40,105,110,116,32,112,114,111,112,101,114,116,121,73,110,100,101,120,44,32,105,110,116,32,115,111,117,110,100,73,110,100,101,120, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,82,101,116,117, - 114,110,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,111,102,32,116,104,101,32,115,111,117,110,100,32,119,105,116,104,32,116,104,101,32,115, - 112,101,99,105,102,105,101,100,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,105,115,77,105,99, - 80,111,115,105,116,105,111,110,80,117,114,103,101,100,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,105,110,116,32,109,105,99,73,110,100,101, - 120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,67,104, - 101,99,107,115,32,105,102,32,116,104,101,32,109,105,99,32,112,111,115,105,116,105,111,110,32,105,115,32,112,117,114,103,101,100,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,108,111,97,100,83,97,109,112,108,101,77,97,112,0,97,114,103,117,109,101,110,116,115,0,1, - 20,5,40,32,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,43,5,76,111,97,100,115,32,97,32,110,101,119,32,115,97,109,112,108,101,109,97,112,32,105,110,116,111,32,116,104, - 105,115,32,115,97,109,112,108,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,112,117,114,103,101,77,105,99,80, - 111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,83,116,114,105,110,103,32,109,105,99,78,97,109,101,44,32,98,111, - 111,108,32,115,104,111,117,108,100,66,101,80,117,114,103,101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,63,5,80,117,114,103,101,115,32,97,108,108,32,115,97,109,112,108,101,115,32,111,102,32,116,104,101,32,103,105,118,101,110, - 32,109,105,99,32,40,77,117,108,116,105,109,105,99,32,115,97,109,112,108,101,115,32,111,110,108,121,41,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,18,5,114,101,102,114,101,115,104,73,110,116,101,114,102,97,99,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,71,5,82,101,102,114,101,115,104,101, - 115,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,67,97,108,108,32,116,104,105,115,32,97,102,116,101,114,32,121,111,117,32,99,104,97, - 110,103,101,100,32,116,104,101,32,112,114,111,112,101,114,116,105,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5, - 114,101,102,114,101,115,104,82,82,77,97,112,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,98,5,82,101,99,97,108,99,117,108,97,116,101,115,32,116,104,101,32,82,82,32,77, - 97,112,46,32,67,97,108,108,32,116,104,105,115,32,97,116,32,99,111,109,112,105,108,101,32,116,105,109,101,32,105,102,32,121,111,117,32,119,97,110, - 116,32,116,111,32,117,115,101,32,39,103,101,116,82,82,71,114,111,117,112,70,111,114,77,101,115,115,97,103,101,40,41,39,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,108,101,99,116,83,111,117,110,100,115,0,97,114,103,117,109,101,110,116,115,0,1,16,5, - 40,83,116,114,105,110,103,32,114,101,103,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,102,5,83,101,108,101,99,116,115,32,115,97,109,112,108,101,115,32,117,115,105,110,103,32,116,104,101,32,114,101,103,101,120,32,115,116,114, - 105,110,103,32,97,115,32,119,105,108,100,99,97,114,100,32,97,110,100,32,116,104,101,32,115,101,108,101,99,116,77,111,100,101,32,40,34,83,69,76, - 69,67,84,34,44,32,34,65,68,68,34,44,32,34,83,85,66,84,82,65,67,84,34,41,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,16,5,115,101,116,65,99,116,105,118,101,71,114,111,117,112,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,105,110,116,32,97,99,116, - 105,118,101,71,114,111,117,112,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,110,5,69,110,97,98,108,101,115,32,116,104,101,32,103,114,111,117,112,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110, - 100,101,120,32,40,111,110,101,45,98,97,115,101,100,41,46,32,87,111,114,107,115,32,111,110,108,121,32,119,105,116,104,32,115,97,109,112,108,101,114, - 115,32,97,110,100,32,96,101,110,97,98,108,101,82,111,117,110,100,82,111,98,105,110,40,102,97,108,115,101,41,96,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105, - 110,116,32,105,110,100,101,120,44,32,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, - 101,115,99,114,105,112,116,105,111,110,0,1,39,5,83,101,116,115,32,97,32,97,116,116,114,105,98,117,116,101,32,116,111,32,116,104,101,32,103,105, - 118,101,110,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,83,111,117,110,100,80,114, - 111,112,101,114,116,121,0,97,114,103,117,109,101,110,116,115,0,1,51,5,40,105,110,116,32,115,111,117,110,100,73,110,100,101,120,44,32,105,110,116, - 32,112,114,111,112,101,114,116,121,73,110,100,101,120,44,32,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,102,111, - 114,32,116,104,101,32,105,110,100,101,120,32,119,105,116,104,105,110,32,116,104,101,32,115,101,108,101,99,116,105,111,110,46,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,30,5,115,101,116,83,111,117,110,100,80,114,111,112,101,114,116,121,70,111,114,83,101,108,101,99,116,105,111, - 110,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,105,110,116,32,112,114,111,112,101,114,116,121,73,110,100,101,120,44,32,118,97,114,32,110, - 101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,60,5,83, - 101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,32,111,102,32,116,104,101,32,115,97,109,112,108,101,114,32,115,111,117,110,100,32,102,111, - 114,32,116,104,101,32,115,101,108,101,99,116,105,111,110,46,32,0,0,77,111,100,117,108,101,73,100,115,0,0,1,1,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,9,5,103,101,116,78,97,109,101,0,97,114,103,117,109,101,110,116,115,0,1,15,5,40,41,32,32,32,111,118,101,114,114, - 105,100,101,0,114,101,116,117,114,110,84,121,112,101,0,1,13,5,73,100,101,110,116,105,102,105,101,114,32,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,20,5,82,101,116,117,114,110,115,32,116,104,101,32,110,97,109,101,46,32,0,0,68,115,112,77,111,100,117,108,101,0,0,1,16,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,68,115,112,73,110,115,116,97,110,99,101,0,97,114,103,117,109,101,110,116,115,0,1,39,5, - 40,32,68,115,112,70,97,99,116,111,114,121,32,42,102,44,32,32,83,116,114,105,110,103,32,109,111,100,117,108,101,78,97,109,101,95,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,3,5,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,72,5,67,114,101,97,116,101,115,32,97,32,110, - 101,119,32,105,110,115,116,97,110,99,101,32,102,114,111,109,32,116,104,101,32,103,105,118,101,110,32,70,97,99,116,111,114,121,32,119,105,116,104,32, - 116,104,101,32,115,117,112,112,108,105,101,100,32,110,97,109,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101, - 116,67,111,110,115,116,97,110,116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,116,117,114,110,115,32,116,104,101, - 32,99,111,110,115,116,97,110,116,32,97,116,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,15,5,103,101,116,67,111,110,115,116,97,110,116,73,100,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116, - 32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 36,5,82,101,116,117,114,110,115,32,116,104,101,32,110,97,109,101,32,111,102,32,116,104,101,32,99,111,110,115,116,97,110,116,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,103,101,116,73,110,102,111,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,82,101,116,117,114,110,115, - 32,97,110,32,105,110,102,111,114,109,97,116,105,118,101,32,83,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,17,5,103,101,116,78,117,109,67,111,110,115,116,97,110,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,35,5,82,101,116,117,114,110,115,32,116,104,101, - 32,110,117,109,98,101,114,32,111,102,32,99,111,110,115,116,97,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18, - 5,103,101,116,78,117,109,80,97,114,97,109,101,116,101,114,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,36,5,82,101,116,117,114,110,115,32,116,104,101,32, - 110,117,109,98,101,114,32,111,102,32,112,97,114,97,109,101,116,101,114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14, - 5,103,101,116,80,97,114,97,109,101,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115, - 32,116,104,101,32,112,97,114,97,109,101,116,101,114,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,83,116,114,105,110,103,80,97,114,97,109,101,116,101,114,0,97,114,103,117,109, - 101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,25,5,71,101,116,115,32,116,104,101,32,115,116,114,105,110,103,32,118,97,108,117,101,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,105,115,66,121,112,97,115,115,101,100,0,97,114,103,117,109,101,110,116,115,0, - 1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39, - 5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,112,114,111,99,101,115,115,105,110,103,32,105,115,32,101,110,97,98,108,101,100,46,32,0,0, - 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,111,112,101,114,97,116,111,114,60,60,0,97,114,103,117,109,101,110,116,115,0,1,13, - 5,40,32,118,97,114,32,100,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,34,5,65,112,112,108,105,101,115,32,116,104,101,32,109,111,100,117,108,101,32,111,110,32,116,104,101,32,100,97,116,97,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,12,5,111,112,101,114,97,116,111,114,62,62,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,32, - 118,97,114,32,100,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5, - 65,112,112,108,105,101,115,32,116,104,101,32,109,111,100,117,108,101,32,111,110,32,116,104,101,32,100,97,116,97,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,15,5,112,114,101,112,97,114,101,84,111,80,108,97,121,0,97,114,103,117,109,101,110,116,115,0,1,42,5,40,100, - 111,117,98,108,101,32,115,97,109,112,108,101,82,97,116,101,44,32,105,110,116,32,115,97,109,112,108,101,115,80,101,114,66,108,111,99,107,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,67,97,108,108,115,32,116,104,101,32,115, - 101,116,117,112,32,109,101,116,104,111,100,32,111,102,32,116,104,101,32,101,120,116,101,114,110,97,108,32,109,111,100,117,108,101,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,112,114,111,99,101,115,115,66,108,111,99,107,0,97,114,103,117,109,101,110,116,115,0,1,13, - 5,40,32,118,97,114,32,100,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,50,5,67,97,108,108,115,32,116,104,101,32,112,114,111,99,101,115,115,77,101,116,104,111,100,32,111,102,32,116,104,101,32,101,120,116,101,114,110, - 97,108,32,109,111,100,117,108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,66,121,112,97,115,115,101, - 100,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,66,121,112,97,115,115,101,100,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,69,110,97,98,108,101,115,32,47,32,68, - 105,115,97,98,108,101,115,32,116,104,101,32,112,114,111,99,101,115,115,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,14,5,115,101,116,80,97,114,97,109,101,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,29,5,40,105,110,116,32,105,110,100,101,120,44, - 32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,49,5,83,101,116,115,32,116,104,101,32,102,108,111,97,116,32,112,97,114,97,109,101,116,101,114,32,119,105,116,104,32,116,104,101, - 32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,83,116,114,105, - 110,103,80,97,114,97,109,101,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,105,110,100,101,120,44,32,83,116,114, - 105,110,103,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,23, - 5,83,101,116,115,32,97,32,83,116,114,105,110,103,32,118,97,108,117,101,46,32,0,0,83,116,114,105,110,103,0,0,1,11,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,8,5,99,104,97,114,65,116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101, - 120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5, - 82,101,116,117,114,110,115,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,97,116,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,99,104,97,114,67,111,100,101,65,116,0,97,114,103,117,109,101,110,116, - 115,0,1,13,5,40,118,97,114,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,63,5,82,101,116,117,114,110,115,32,116,104,101,32,99,104,97,114,97,99,116,101,114,32,97,116,32,116,104,101,32, - 103,105,118,101,110,32,112,111,115,105,116,105,111,110,32,97,115,32,65,83,67,73,73,32,110,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,8,5,99,111,110,99,97,116,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,118,97,114,32,115,116,114,105, - 110,103,108,105,115,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,63,5,74,111,105,110,115,32,116,119,111,32,111,114,32,109,111,114,101,32,115,116,114,105,110,103,115,44,32,97,110,100,32,114,101,116,117, - 114,110,115,32,97,32,110,101,119,32,106,111,105,110,101,100,32,115,116,114,105,110,103,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,9,5,105,110,100,101,120,79,102,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,118,97,114,32,115,117,98,115,116,114,105,110,103, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,82,101,116,117, - 114,110,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,102,105,114,115,116,32,102,111,117,110,100,32,111,99,99,117, - 114,114,101,110,99,101,32,111,102,32,97,32,115,112,101,99,105,102,105,101,100,32,118,97,108,117,101,32,105,110,32,97,32,115,116,114,105,110,103,46, - 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,108,97,115,116,73,110,100,101,120,79,102,0,97,114,103,117,109,101,110,116, - 115,0,1,17,5,40,118,97,114,32,115,117,98,115,116,114,105,110,103,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,86,5,82,101,116,117,114,110,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116, - 104,101,32,108,97,115,116,32,102,111,117,110,100,32,111,99,99,117,114,114,101,110,99,101,32,111,102,32,97,32,115,112,101,99,105,102,105,101,100,32, - 118,97,108,117,101,32,105,110,32,97,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,114,101, - 112,108,97,99,101,0,97,114,103,117,109,101,110,116,115,0,1,43,5,40,118,97,114,32,115,117,98,115,116,114,105,110,103,84,111,76,111,111,107,70, - 111,114,44,32,118,97,114,32,114,101,112,108,97,99,101,109,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110, - 103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,82,101,116,117,114,110,115,32,97,32,99,111,112,121,32,111,102,32,116,104,101,32, - 115,116,114,105,110,103,32,97,110,100,32,114,101,112,108,97,99,101,115,32,97,108,108,32,111,99,99,117,114,101,110,99,101,115,32,111,102,32,96,97, - 96,32,119,105,116,104,32,96,98,96,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,115,112,108,105,116,0,97,114,103, - 117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,115,101,112,97,114,97,116,111,114,83,116,114,105,110,103,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,8,5,65,114,114,97,121,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,60,5,83,112,108,105,116,115,32,116,104,101,32,115, - 116,114,105,110,103,32,105,110,116,111,32,97,110,32,97,114,114,97,121,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,115,101,112,97,114, - 97,116,111,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,117,98,115,116,114,105,110,103,0,97,114,103,117,109, - 101,110,116,115,0,1,32,5,40,105,110,116,32,115,116,97,114,116,73,110,100,101,120,44,32,105,110,116,32,101,110,100,73,110,100,101,120,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117, - 114,110,115,32,116,104,101,32,115,117,98,115,116,114,105,110,103,32,105,110,32,116,104,101,32,103,105,118,101,110,32,114,97,110,103,101,46,32,0,0, - 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,116,111,76,111,119,101,114,67,97,115,101,0,97,114,103,117,109,101,110,116,115,0,1, - 4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 42,5,67,111,110,118,101,114,116,115,32,97,32,115,116,114,105,110,103,32,116,111,32,108,111,119,101,114,99,97,115,101,32,108,101,116,116,101,114,115, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,116,111,85,112,112,101,114,67,97,115,101,0,97,114,103,117,109,101,110, - 116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105, - 111,110,0,1,42,5,67,111,110,118,101,114,116,115,32,97,32,115,116,114,105,110,103,32,116,111,32,117,112,112,101,114,99,97,115,101,32,108,101,116, - 116,101,114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,116,114,105,109,0,97,114,103,117,109,101,110,116,115,0, - 1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,95,5,82,101,116,117,114,110,115,32,97,32,99,111,112,121,32,111,102,32,116,104,105,115,32,115,116,114,105,110,103,32,119,105,116,104,32,97,110, - 121,32,119,104,105,116,101,115,112,97,99,101,32,99,104,97,114,97,99,116,101,114,115,32,114,101,109,111,118,101,100,32,102,114,111,109,32,116,104,101, - 32,115,116,97,114,116,32,97,110,100,32,101,110,100,46,32,0,0,65,114,114,97,121,0,0,1,9,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,10,5,99,111,110,116,97,105,110,115,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,118,97,114,32,101,108,101,109,101,110,116,84,111, - 76,111,111,107,70,111,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,41,5,83,101,97,114,99,104,101,115,32,102,111,114,32,116,104,101,32,101,108,101,109,101,110,116,32,105,110,32,116,104,101,32,97,114,114,97, - 121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,105,110,100,101,120,79,102,0,97,114,103,117,109,101,110,116,115,0, - 1,61,5,40,118,97,114,32,101,108,101,109,101,110,116,84,111,76,111,111,107,70,111,114,44,32,105,110,116,32,115,116,97,114,116,79,102,102,115,101, - 116,44,32,105,110,116,32,116,121,112,101,83,116,114,105,99,116,110,101,115,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,50,5,83,101,97,114,99,104,101,115,32,116,104,101,32,97,114,114,97,121,32,97,110,100,32, - 114,101,116,117,114,110,115,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,8,5,105,110,115,101,114,116,0,97,114,103,117,109,101,110,116,115,0,1,36,5,40,105,110,116,32,102,105,114,115,116,73,110,100,101,120,44, - 32,118,97,114,32,97,114,103,117,109,101,110,116,76,105,115,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,49,5,73,110,115,101,114,116,115,32,116,104,101,32,103,105,118,101,110,32,97,114,103,117,109,101,110,116,115,32,97,116,32, - 116,104,101,32,102,105,114,115,116,73,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,105,115,65,114,114, - 97,121,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,118,97,114,32,118,97,114,105,97,98,108,101,84,111,84,101,115,116,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,67,104,101,99,107,115,32,105, - 102,32,116,104,101,32,103,105,118,101,110,32,118,97,114,105,97,98,108,101,32,105,115,32,97,110,32,97,114,114,97,121,46,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,6,5,106,111,105,110,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,115,101,112,97, - 114,97,116,111,114,83,116,114,105,110,103,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,58,5,74,111,105,110,115,32,116,104,101,32,97,114,114,97,121,32,105,110,116,111,32,97,32,115,116,114,105,110,103,32, - 119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,115,101,112,97,114,97,116,111,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,6,5,112,117,115,104,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,101,108,101,109,101,110,116,84,111,73,110,115, - 101,114,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,58,5,65, - 100,100,115,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,32,97,116,32,116,104,101,32,101,110,100,32,97,110,100,32,114,101,116, - 117,114,110,115,32,116,104,101,32,115,105,122,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,114,101,109,111,118,101, - 0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,101,108,101,109,101,110,116,84,111,82,101,109,111,118,101,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,109,111,118,101,115,32,97,108, - 108,32,105,110,115,116,97,110,99,101,115,32,111,102,32,116,104,101,32,103,105,118,101,110,32,101,108,101,109,101,110,116,46,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,9,5,114,101,118,101,114,115,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,82,101,118,101,114,115,101,115,32,116,104,101,32, - 111,114,100,101,114,32,111,102,32,116,104,101,32,101,108,101,109,101,110,116,115,32,105,110,32,116,104,101,32,97,114,114,97,121,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,115,111,114,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,19,5,83,111,114,116,115,32,116,104,101,32,97,114,114,97, - 121,46,32,0,0,77,111,100,117,108,97,116,111,114,0,0,1,7,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120,105,115,116, - 115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105,115,116,115, - 32,97,110,100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111,110,115,111, - 108,101,32,105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,101,120,112,111,114,116,83,116,97,116, - 101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,69,120,112,111,114,116,115,32,116,104,101,32,115,116,97,116,101,32,97,115,32,98,97,115,101, - 54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116,116,114,105,98,117, - 116,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,97,116,116,114, - 105,98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110, - 97,109,101,0,1,14,5,114,101,115,116,111,114,101,83,116,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,83,116,114,105,110,103, - 32,98,97,115,101,54,52,83,116,97,116,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,43,5,82,101,115,116,111,114,101,115,32,116,104,101,32,115,116,97,116,101,32,102,114,111,109,32,97,32,98,97,115,101,54,52,32,115,116,114, - 105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103, - 117,109,101,110,116,115,0,1,26,5,40,105,110,116,32,105,110,100,101,120,44,32,102,108,111,97,116,32,118,97,108,117,101,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,101,5,83,101,116,115,32,116,104,101,32,97,116,116,114,105,98, - 117,116,101,32,111,102,32,116,104,101,32,77,111,100,117,108,97,116,111,114,46,32,89,111,117,32,99,97,110,32,108,111,111,107,32,117,112,32,116,104, - 101,32,115,112,101,99,105,102,105,99,32,112,97,114,97,109,101,116,101,114,32,105,110,100,101,120,101,115,32,105,110,32,116,104,101,32,109,97,110,117, - 97,108,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,66,121,112,97,115,115,101,100,0,97,114,103,117,109, - 101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,66,121,112,97,115,115,101,100,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,26,5,66,121,112,97,115,115,101,115,32,116,104,101,32,77,111,100,117,108, - 97,116,111,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,73,110,116,101,110,115,105,116,121,0,97,114, - 103,117,109,101,110,116,115,0,1,22,5,40,102,108,111,97,116,32,110,101,119,73,110,116,101,110,115,105,116,121,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,91,5,67,104,97,110,103,101,115,32,116,104,101,32,73,110,116,101,110,115, - 105,116,121,32,111,102,32,116,104,101,32,77,111,100,117,108,97,116,111,114,46,32,82,97,110,103,101,115,58,32,71,97,105,110,32,77,111,100,101,32, - 48,32,46,46,46,32,49,44,32,80,105,116,99,104,77,111,100,101,32,45,49,50,32,46,46,46,32,49,50,46,32,0,0,77,105,100,105,76,105,115, - 116,0,0,1,10,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,99,108,101,97,114,0,97,114,103,117,109,101,110,116,115,0,1,4, - 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,67,108,101,97,114,115, - 32,116,104,101,32,77,105,100,105,76,105,115,116,32,116,111,32,45,49,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5, - 102,105,108,108,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,105,110,116,32,118,97,108,117,101,84,111,70,105,108,108,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,63,5,70,105,108,108,115,32,116,104,101,32,77,105,100,105, - 76,105,115,116,32,119,105,116,104,32,97,32,110,117,109,98,101,114,32,115,112,101,99,105,102,105,101,100,32,119,105,116,104,32,118,97,108,117,101,84, - 111,70,105,108,108,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,66,97,115,101,54,52,83,116,114,105,110, - 103,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,63,5,69,110,99,111,100,101,115,32,97,108,108,32,118,97,108,117,101,115,32,105,110,116,111,32,97, - 32,98,97,115,101,54,52,32,101,110,99,111,100,101,100,32,115,116,114,105,110,103,32,102,111,114,32,115,116,111,114,97,103,101,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,73,110,100,101,120,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110, - 116,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,52,5,82,101,116,117,114,110,115,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,32,116,104,97,116,32,99,111,110,116,97,105,110,115, - 32,116,104,105,115,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,78,117,109,83,101, - 116,86,97,108,117,101,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110, - 116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32, - 118,97,108,117,101,115,32,116,104,97,116,32,97,114,101,32,110,111,116,32,45,49,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,116,117,114,110,115,32,116, - 104,101,32,118,97,108,117,101,32,97,116,32,116,104,101,32,103,105,118,101,110,32,110,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,16,5,103,101,116,86,97,108,117,101,65,109,111,117,110,116,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,105,110, - 116,32,118,97,108,117,101,84,111,67,104,101,99,107,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,53,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,111,99,99,117,114,101,110,99, - 101,115,32,111,102,32,39,118,97,108,117,101,84,111,67,104,101,99,107,39,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5, - 105,115,69,109,112,116,121,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111, - 111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,108,105,115,116,32,99,111, - 110,116,97,105,110,115,32,97,110,121,32,100,97,116,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,25,5,114,101,115,116, - 111,114,101,70,114,111,109,66,97,115,101,54,52,83,116,114,105,110,103,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,83,116,114,105,110,103, - 32,98,97,115,101,54,52,101,110,99,111,100,101,100,86,97,108,117,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, - 99,114,105,112,116,105,111,110,0,1,76,5,82,101,115,116,111,114,101,32,116,104,101,32,118,97,108,117,101,115,32,102,114,111,109,32,97,32,83,116, - 114,105,110,103,32,116,104,97,116,32,119,97,115,32,99,114,101,97,116,101,100,32,119,105,116,104,32,103,101,116,66,97,115,101,54,52,83,116,114,105, - 110,103,40,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101, - 110,116,115,0,1,24,5,40,105,110,116,32,105,110,100,101,120,44,32,105,110,116,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,53,5,83,101,116,115,32,116,104,101,32,110,117,109,98,101,114,32,116,111,32,115, - 111,109,101,116,104,105,110,103,32,98,101,116,119,101,101,110,32,45,49,50,55,32,97,110,100,32,49,50,56,46,32,0,0,77,101,115,115,97,103,101, - 72,111,108,100,101,114,0,0,1,24,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,97,100,100,84,111,84,105,109,101,115,116,97,109, - 112,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,105,110,116,32,100,101,108,116,97,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,57,5,65,100,100,115,32,116,104,101,32,103,105,118,101,110,32,115, - 97,109,112,108,101,32,97,109,111,117,110,116,32,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,109,101,115,116,97,109,112,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,100,117,109,112,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,67,114,101,97, - 116,101,115,32,97,32,105,110,102,111,32,115,116,114,105,110,103,32,102,111,114,32,100,101,98,117,103,103,105,110,103,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,67,104,97,110,110,101,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,116,117,114,110,115, - 32,116,104,101,32,77,73,68,73,32,67,104,97,110,110,101,108,32,102,114,111,109,32,49,32,116,111,32,49,54,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,17,5,103,101,116,67,111,97,114,115,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5, - 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,82,101,116, - 117,114,110,115,32,116,104,101,32,99,111,97,114,115,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,115,101,109,105,116,111,110, - 101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,103,101,116,67,111,110,116,114,111,108,108,101,114,78,117,109,98, - 101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,116,5,114,101,116,117,114,110,115,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,32,110,117,109,98, - 101,114,32,111,114,32,39,117,110,100,101,102,105,110,101,100,39,44,32,105,102,32,116,104,101,32,109,101,115,115,97,103,101,32,105,115,32,110,101,105, - 116,104,101,114,32,99,111,110,116,114,111,108,108,101,114,32,110,111,114,32,112,105,116,99,104,32,119,104,101,101,108,32,110,111,114,32,97,102,116,101, - 114,116,111,117,99,104,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,67,111,110,116,114,111,108,108,101,114,86, - 97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32, - 99,111,110,116,114,111,108,108,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,69,118,101,110,116,73, - 100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115, - 99,114,105,112,116,105,111,110,0,1,47,5,82,101,116,117,114,110,115,32,116,104,101,32,101,118,101,110,116,32,105,100,32,111,102,32,116,104,101,32, - 99,117,114,114,101,110,116,32,109,101,115,115,97,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,70, - 105,110,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5, - 105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117,114,110,115,32,116,104,101,32,102,105,110,101,32,100,101,116, - 117,110,101,32,97,109,111,117,110,116,32,105,110,116,32,99,101,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9, - 5,103,101,116,71,97,105,110,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105, - 110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,82,101,116,117,114,110,115,32,116,104,101,32,118,111,108,117,109,101,32,111,102, - 32,116,104,101,32,110,111,116,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,78,111,116,101,78,117,109, - 98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100, - 101,115,99,114,105,112,116,105,111,110,0,1,75,5,82,101,116,117,114,110,32,116,104,101,32,110,111,116,101,32,110,117,109,98,101,114,46,32,84,104, - 105,115,32,99,97,110,32,98,101,32,99,97,108,108,101,100,32,111,110,108,121,32,111,110,32,109,105,100,105,32,101,118,101,110,116,32,99,97,108,108, - 98,97,99,107,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,84,105,109,101,115,116,97,109,112,0,97, - 114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,33,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,109,101,115,116,97,109,112,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,84,114,97,110,115,112,111,115,101,65,109,111,117,110,116,0,97,114, + 105,111,110,0,1,80,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105,115,116,115,32,97,110,100,32,112, + 114,105,110,116,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111,110,115,111,108,101,32,105,102,32, + 110,111,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,101,120,112,111,114,116,83,116,97,116,101,0,97,114,103,117, + 109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,38,5,69,120,112,111,114,116,115,32,116,104,101,32,115,116,97,116,101,32,97,115,32,98,97,115,101,54,52,32,115,116,114, + 105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103, + 117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5,102,108,111,97, + 116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32, + 119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14, + 5,114,101,115,116,111,114,101,83,116,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,83,116,114,105,110,103,32,98,97,115,101,54, + 52,83,116,97,116,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101, + 115,116,111,114,101,115,32,116,104,101,32,115,116,97,116,101,32,102,114,111,109,32,97,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115, + 0,1,26,5,40,105,110,116,32,105,110,100,101,120,44,32,102,108,111,97,116,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,101,5,83,101,116,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,111,102, + 32,116,104,101,32,77,111,100,117,108,97,116,111,114,46,32,89,111,117,32,99,97,110,32,108,111,111,107,32,117,112,32,116,104,101,32,115,112,101,99, + 105,102,105,99,32,112,97,114,97,109,101,116,101,114,32,105,110,100,101,120,101,115,32,105,110,32,116,104,101,32,109,97,110,117,97,108,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,66,121,112,97,115,115,101,100,0,97,114,103,117,109,101,110,116,115,0,1, + 25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,66,121,112,97,115,115,101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,26,5,66,121,112,97,115,115,101,115,32,116,104,101,32,77,111,100,117,108,97,116,111,114,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,73,110,116,101,110,115,105,116,121,0,97,114,103,117,109,101,110,116, + 115,0,1,22,5,40,102,108,111,97,116,32,110,101,119,73,110,116,101,110,115,105,116,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,91,5,67,104,97,110,103,101,115,32,116,104,101,32,73,110,116,101,110,115,105,116,121,32,111,102, + 32,116,104,101,32,77,111,100,117,108,97,116,111,114,46,32,82,97,110,103,101,115,58,32,71,97,105,110,32,77,111,100,101,32,48,32,46,46,46,32, + 49,44,32,80,105,116,99,104,77,111,100,101,32,45,49,50,32,46,46,46,32,49,50,46,32,0,0,77,105,100,105,76,105,115,116,0,0,1,10,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,99,108,101,97,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,67,108,101,97,114,115,32,116,104,101,32,77, + 105,100,105,76,105,115,116,32,116,111,32,45,49,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,6,5,102,105,108,108,0,97, + 114,103,117,109,101,110,116,115,0,1,19,5,40,105,110,116,32,118,97,108,117,101,84,111,70,105,108,108,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,63,5,70,105,108,108,115,32,116,104,101,32,77,105,100,105,76,105,115,116,32,119, + 105,116,104,32,97,32,110,117,109,98,101,114,32,115,112,101,99,105,102,105,101,100,32,119,105,116,104,32,118,97,108,117,101,84,111,70,105,108,108,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,66,97,115,101,54,52,83,116,114,105,110,103,0,97,114,103,117, + 109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,63,5,69,110,99,111,100,101,115,32,97,108,108,32,118,97,108,117,101,115,32,105,110,116,111,32,97,32,98,97,115,101,54, + 52,32,101,110,99,111,100,101,100,32,115,116,114,105,110,103,32,102,111,114,32,115,116,111,114,97,103,101,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,10,5,103,101,116,73,110,100,101,120,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,118,97,108,117, + 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,52,5,82,101,116, + 117,114,110,115,32,116,104,101,32,102,105,114,115,116,32,105,110,100,101,120,32,116,104,97,116,32,99,111,110,116,97,105,110,115,32,116,104,105,115,32, + 118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,78,117,109,83,101,116,86,97,108,117,101, + 115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,48,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,118,97,108,117,101,115, + 32,116,104,97,116,32,97,114,101,32,110,111,116,32,45,49,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116, + 86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108, + 117,101,32,97,116,32,116,104,101,32,103,105,118,101,110,32,110,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,16,5,103,101,116,86,97,108,117,101,65,109,111,117,110,116,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,105,110,116,32,118,97,108,117, + 101,84,111,67,104,101,99,107,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,53,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,111,99,99,117,114,101,110,99,101,115,32,111,102,32, + 39,118,97,108,117,101,84,111,67,104,101,99,107,39,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,105,115,69,109,112,116, + 121,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,40,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,108,105,115,116,32,99,111,110,116,97,105,110,115, + 32,97,110,121,32,100,97,116,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,25,5,114,101,115,116,111,114,101,70,114,111, + 109,66,97,115,101,54,52,83,116,114,105,110,103,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,83,116,114,105,110,103,32,98,97,115,101,54, + 52,101,110,99,111,100,101,100,86,97,108,117,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105, + 111,110,0,1,76,5,82,101,115,116,111,114,101,32,116,104,101,32,118,97,108,117,101,115,32,102,114,111,109,32,97,32,83,116,114,105,110,103,32,116, + 104,97,116,32,119,97,115,32,99,114,101,97,116,101,100,32,119,105,116,104,32,103,101,116,66,97,115,101,54,52,83,116,114,105,110,103,40,41,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,24, + 5,40,105,110,116,32,105,110,100,101,120,44,32,105,110,116,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,53,5,83,101,116,115,32,116,104,101,32,110,117,109,98,101,114,32,116,111,32,115,111,109,101,116,104,105, + 110,103,32,98,101,116,119,101,101,110,32,45,49,50,55,32,97,110,100,32,49,50,56,46,32,0,0,77,101,115,115,97,103,101,72,111,108,100,101,114, + 0,0,1,24,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,97,100,100,84,111,84,105,109,101,115,116,97,109,112,0,97,114,103,117, + 109,101,110,116,115,0,1,20,5,40,105,110,116,32,100,101,108,116,97,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,57,5,65,100,100,115,32,116,104,101,32,103,105,118,101,110,32,115,97,109,112,108,101,32, + 97,109,111,117,110,116,32,116,111,32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,109,101,115,116,97,109,112,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,6,5,100,117,109,112,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,67,114,101,97,116,101,115,32,97,32, + 105,110,102,111,32,115,116,114,105,110,103,32,102,111,114,32,100,101,98,117,103,103,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,12,5,103,101,116,67,104,97,110,110,101,108,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,82,101,116,117,114,110,115,32,116,104,101,32,77, + 73,68,73,32,67,104,97,110,110,101,108,32,102,114,111,109,32,49,32,116,111,32,49,54,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,17,5,103,101,116,67,111,97,114,115,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,82,101,116,117,114,110,115,32,116, + 104,101,32,99,111,97,114,115,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,115,101,109,105,116,111,110,101,115,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,103,101,116,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,0,97,114,103, + 117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,116,5,114,101,116,117,114,110,115,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,32,110,117,109,98,101,114,32,111,114,32, + 39,117,110,100,101,102,105,110,101,100,39,44,32,105,102,32,116,104,101,32,109,101,115,115,97,103,101,32,105,115,32,110,101,105,116,104,101,114,32,99, + 111,110,116,114,111,108,108,101,114,32,110,111,114,32,112,105,116,99,104,32,119,104,101,101,108,32,110,111,114,32,97,102,116,101,114,116,111,117,99,104, + 46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,0,97, + 114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,99,111,110,116,114,111, + 108,108,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,103,101,116,69,118,101,110,116,73,100,0,97,114,103,117, + 109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105, + 111,110,0,1,47,5,82,101,116,117,114,110,115,32,116,104,101,32,101,118,101,110,116,32,105,100,32,111,102,32,116,104,101,32,99,117,114,114,101,110, + 116,32,109,101,115,115,97,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,70,105,110,101,68,101,116, + 117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117,114,110,115,32,116,104,101,32,102,105,110,101,32,100,101,116,117,110,101,32,97,109, + 111,117,110,116,32,105,110,116,32,99,101,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,103,101,116,71,97, + 105,110,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,34,5,82,101,116,117,114,110,115,32,116,104,101,32,118,111,108,117,109,101,32,111,102,32,116,104,101,32,110, + 111,116,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,78,111,116,101,78,117,109,98,101,114,0,97,114, 103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,27,5,71,101,116,115,32,116,104,101,32,116,114,97,110,112,111,115,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,86,101,108,111,99,105,116,121,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,82,101,116,117,114,110, - 115,32,116,104,101,32,86,101,108,111,99,105,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,105,103,110,111,114, - 101,69,118,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,29,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,73,103,110,111,114,101, - 100,61,116,114,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,73,103, - 110,111,114,101,115,32,116,104,101,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,67, - 104,97,110,110,101,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,110,101,119,67,104,97,110,110,101,108,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,67,104,97,110,103,101,115,32,116,104,101,32,77, - 73,68,73,32,99,104,97,110,110,101,108,32,102,114,111,109,32,49,32,116,111,32,49,54,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,17,5,115,101,116,67,111,97,114,115,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,115, - 101,109,105,84,111,110,101,68,101,116,117,110,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,46,5,83,101,116,115,32,116,104,101,32,99,111,97,114,115,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,115,101, - 109,105,116,111,110,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,115,101,116,67,111,110,116,114,111,108,108,101, - 114,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,110,101,119,67,111,110,116,114,111,108,108,101,114,78, - 117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,67,104,97, - 110,103,101,115,32,116,104,101,32,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,105, - 110,116,32,110,101,119,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,48,5,67,104,97,110,103,101,115,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,32,118,97,108,117, - 101,32,40,114,97,110,103,101,32,48,32,45,32,49,50,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101, - 116,70,105,110,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,99,101,110,116,115,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,83,101,116,115,32,116,104,101,32,102,105,110,101, - 32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,99,101,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,9,5,115,101,116,71,97,105,110,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,103,97,105,110,73,110,68,101,99,105, - 98,101,108,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5,83,101,116,115, - 32,116,104,101,32,118,111,108,117,109,101,32,111,102,32,116,104,101,32,110,111,116,101,32,40,45,49,48,48,32,61,32,115,105,108,101,110,99,101,41, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,78,111,116,101,78,117,109,98,101,114,0,97,114,103,117,109, - 101,110,116,115,0,1,21,5,40,105,110,116,32,110,101,119,78,111,116,101,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,67,104,97,110,103,101,115,32,116,104,101,32,110,111,116,101,32,110,117,109,98,101, - 114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,84,105,109,101,115,116,97,109,112,0,97,114,103,117,109, - 101,110,116,115,0,1,24,5,40,105,110,116,32,116,105,109,101,115,116,97,109,112,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,83,101,116,115,32,116,104,101,32,116,105,109,101,115,116,97,109,112,32, - 105,110,32,115,97,109,112,108,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,84,114,97,110,115,112, - 111,115,101,65,109,111,117,110,116,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,105,110,116,32,116,114,97,110,112,111,115,101,86,97,108,117, - 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,26,5,84,114,97,110,115,112,111, - 115,101,115,32,116,104,101,32,110,111,116,101,32,111,110,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,86, - 101,108,111,99,105,116,121,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,105,110,116,32,110,101,119,86,101,108,111,99,105,116,121,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,67,104,97,110,103,101,115,32,116,104,101, - 32,118,101,108,111,99,105,116,121,32,40,114,97,110,103,101,32,49,32,45,32,49,50,55,41,46,32,0,0,69,102,102,101,99,116,0,0,1,6,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120,105,115,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115, - 32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105,115,116,115,32,97,110,100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114, - 32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111,110,115,111,108,101,32,105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,13,5,101,120,112,111,114,116,83,116,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,69,120,112,111, - 114,116,115,32,116,104,101,32,115,116,97,116,101,32,97,115,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110, - 116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101, - 110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,114,101,115,116,111,114,101,83,116,97,116,101, - 0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,83,116,114,105,110,103,32,98,97,115,101,54,52,83,116,97,116,101,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,115,116,111,114,101,115,32,116,104,101,32,115,116, - 97,116,101,32,102,114,111,109,32,97,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,112,97,114,97, - 109,101,116,101,114,73,110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,89,5,67,104,97,110,103,101,115,32,111,110,101,32,111,102,32,116,104,101,32,80,97,114, - 97,109,101,116,101,114,46,32,76,111,111,107,32,105,110,32,116,104,101,32,109,97,110,117,97,108,32,102,111,114,32,116,104,101,32,105,110,100,101,120, - 32,110,117,109,98,101,114,115,32,111,102,32,101,97,99,104,32,101,102,102,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, + 116,105,111,110,0,1,75,5,82,101,116,117,114,110,32,116,104,101,32,110,111,116,101,32,110,117,109,98,101,114,46,32,84,104,105,115,32,99,97,110, + 32,98,101,32,99,97,108,108,101,100,32,111,110,108,121,32,111,110,32,109,105,100,105,32,101,118,101,110,116,32,99,97,108,108,98,97,99,107,115,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,84,105,109,101,115,116,97,109,112,0,97,114,103,117,109,101,110, + 116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,33,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,116,105,109,101,115,116,97,109,112,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,84,114,97,110,115,112,111,115,101,65,109,111,117,110,116,0,97,114,103,117,109,101,110,116, + 115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 27,5,71,101,116,115,32,116,104,101,32,116,114,97,110,112,111,115,101,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,13,5,103,101,116,86,101,108,111,99,105,116,121,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,82,101,116,117,114,110,115,32,116,104,101,32, + 86,101,108,111,99,105,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,105,103,110,111,114,101,69,118,101,110,116, + 0,97,114,103,117,109,101,110,116,115,0,1,29,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,73,103,110,111,114,101,100,61,116,114,117,101, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,73,103,110,111,114,101,115,32, + 116,104,101,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,67,104,97,110,110,101,108, + 0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,110,101,119,67,104,97,110,110,101,108,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,41,5,67,104,97,110,103,101,115,32,116,104,101,32,77,73,68,73,32,99,104, + 97,110,110,101,108,32,102,114,111,109,32,49,32,116,111,32,49,54,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,115, + 101,116,67,111,97,114,115,101,68,101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,115,101,109,105,84,111,110, + 101,68,101,116,117,110,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,83, + 101,116,115,32,116,104,101,32,99,111,97,114,115,101,32,100,101,116,117,110,101,32,97,109,111,117,110,116,32,105,110,32,115,101,109,105,116,111,110,101, + 115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,115,101,116,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101, + 114,0,97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,110,101,119,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,41, + 0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,67,104,97,110,103,101,115,32,116, + 104,101,32,67,111,110,116,114,111,108,108,101,114,78,117,109,98,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5, + 115,101,116,67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,105,110,116,32,110,101,119, + 67,111,110,116,114,111,108,108,101,114,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,48,5,67,104,97,110,103,101,115,32,116,104,101,32,99,111,110,116,114,111,108,108,101,114,32,118,97,108,117,101,32,40,114,97,110, + 103,101,32,48,32,45,32,49,50,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,70,105,110,101,68, + 101,116,117,110,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,99,101,110,116,115,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,83,101,116,115,32,116,104,101,32,102,105,110,101,32,100,101,116,117,110, + 101,32,97,109,111,117,110,116,32,105,110,32,99,101,110,116,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101, + 116,71,97,105,110,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,105,110,116,32,103,97,105,110,73,110,68,101,99,105,98,101,108,115,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5,83,101,116,115,32,116,104,101,32,118, + 111,108,117,109,101,32,111,102,32,116,104,101,32,110,111,116,101,32,40,45,49,48,48,32,61,32,115,105,108,101,110,99,101,41,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,78,111,116,101,78,117,109,98,101,114,0,97,114,103,117,109,101,110,116,115,0,1, + 21,5,40,105,110,116,32,110,101,119,78,111,116,101,78,117,109,98,101,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,27,5,67,104,97,110,103,101,115,32,116,104,101,32,110,111,116,101,32,110,117,109,98,101,114,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,84,105,109,101,115,116,97,109,112,0,97,114,103,117,109,101,110,116,115,0,1, + 24,5,40,105,110,116,32,116,105,109,101,115,116,97,109,112,83,97,109,112,108,101,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,83,101,116,115,32,116,104,101,32,116,105,109,101,115,116,97,109,112,32,105,110,32,115,97,109, + 112,108,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,84,114,97,110,115,112,111,115,101,65,109,111, + 117,110,116,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,105,110,116,32,116,114,97,110,112,111,115,101,86,97,108,117,101,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,26,5,84,114,97,110,115,112,111,115,101,115,32,116,104, + 101,32,110,111,116,101,32,111,110,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,86,101,108,111,99,105,116, + 121,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,105,110,116,32,110,101,119,86,101,108,111,99,105,116,121,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,67,104,97,110,103,101,115,32,116,104,101,32,118,101,108,111,99, + 105,116,121,32,40,114,97,110,103,101,32,49,32,45,32,49,50,55,41,46,32,0,0,69,102,102,101,99,116,0,0,1,6,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,8,5,101,120,105,115,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115,32,105,102,32,116,104, + 101,32,79,98,106,101,99,116,32,101,120,105,115,116,115,32,97,110,100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97, + 103,101,32,111,110,32,116,104,101,32,99,111,110,115,111,108,101,32,105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,13,5,101,120,112,111,114,116,83,116,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,69,120,112,111,114,116,115,32,116,104, + 101,32,115,116,97,116,101,32,97,115,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,14,5,103,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101, + 120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82, + 101,116,117,114,110,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101, + 120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,114,101,115,116,111,114,101,83,116,97,116,101,0,97,114,103,117,109, + 101,110,116,115,0,1,22,5,40,83,116,114,105,110,103,32,98,97,115,101,54,52,83,116,97,116,101,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,115,116,111,114,101,115,32,116,104,101,32,115,116,97,116,101,32,102,114, + 111,109,32,97,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115, + 101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,112,97,114,97,109,101,116,101,114,73, + 110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,89,5,67,104,97,110,103,101,115,32,111,110,101,32,111,102,32,116,104,101,32,80,97,114,97,109,101,116,101,114, + 46,32,76,111,111,107,32,105,110,32,116,104,101,32,109,97,110,117,97,108,32,102,111,114,32,116,104,101,32,105,110,100,101,120,32,110,117,109,98,101, + 114,115,32,111,102,32,101,97,99,104,32,101,102,102,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101, + 116,66,121,112,97,115,115,101,100,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,66,121,112, + 97,115,115,101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,23,5,66,121,112, + 97,115,115,101,115,32,116,104,101,32,101,102,102,101,99,116,46,32,0,0,77,105,100,105,80,114,111,99,101,115,115,111,114,0,0,1,6,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120,105,115,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115,32,105, + 102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105,115,116,115,32,97,110,100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114,32,109, + 101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111,110,115,111,108,101,32,105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,13,5,101,120,112,111,114,116,83,116,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,69,120,112,111,114,116, + 115,32,116,104,101,32,115,116,97,116,101,32,97,115,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,14,5,103,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32, + 105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32, + 105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,114,101,115,116,111,114,101,83,116,97,116,101,0,97, + 114,103,117,109,101,110,116,115,0,1,22,5,40,83,116,114,105,110,103,32,98,97,115,101,54,52,83,116,97,116,101,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,115,116,111,114,101,115,32,116,104,101,32,115,116,97,116, + 101,32,102,114,111,109,32,97,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,105,110,116,32,105,110,100,101,120,44, + 32,102,108,111,97,116,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,103,5,83,101,116,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,111,102,32,116,104,101,32,77,105,100,105,80,114,111,99,101,115, + 115,111,114,46,32,73,102,32,105,116,32,105,115,32,97,32,115,99,114,105,112,116,44,32,116,104,101,110,32,116,104,101,32,105,110,100,101,120,32,111, + 102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,117,115,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, 0,1,13,5,115,101,116,66,121,112,97,115,115,101,100,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108, 100,66,101,66,121,112,97,115,115,101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,23,5,66,121,112,97,115,115,101,115,32,116,104,101,32,101,102,102,101,99,116,46,32,0,0,77,105,100,105,80,114,111,99,101,115,115,111,114,0, - 0,1,6,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120,105,115,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5, - 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,67,104, - 101,99,107,115,32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105,115,116,115,32,97,110,100,32,112,114,105,110,116,115,32,97,32,101, - 114,114,111,114,32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111,110,115,111,108,101,32,105,102,32,110,111,116,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,101,120,112,111,114,116,83,116,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5, - 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5, - 69,120,112,111,114,116,115,32,116,104,101,32,115,116,97,116,101,32,97,115,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,13, - 5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,119,105,116,104,32,116,104,101,32, - 103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,114,101,115,116,111,114,101,83, - 116,97,116,101,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,83,116,114,105,110,103,32,98,97,115,101,54,52,83,116,97,116,101,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,115,116,111,114,101,115,32,116,104, - 101,32,115,116,97,116,101,32,102,114,111,109,32,97,32,98,97,115,101,54,52,32,115,116,114,105,110,103,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,14,5,115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,105,110,116,32, - 105,110,100,101,120,44,32,102,108,111,97,116,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,103,5,83,101,116,115,32,116,104,101,32,97,116,116,114,105,98,117,116,101,32,111,102,32,116,104,101,32,77,105,100,105, - 80,114,111,99,101,115,115,111,114,46,32,73,102,32,105,116,32,105,115,32,97,32,115,99,114,105,112,116,44,32,116,104,101,110,32,116,104,101,32,105, - 110,100,101,120,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,117,115,101,100,46,32,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,13,5,115,101,116,66,121,112,97,115,115,101,100,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,98,111,111,108, - 32,115,104,111,117,108,100,66,101,66,121,112,97,115,115,101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,30,5,66,121,112,97,115,115,101,115,32,116,104,101,32,77,105,100,105,80,114,111,99,101,115,115,111,114,46,32,0,0,65, - 117,100,105,111,83,97,109,112,108,101,80,114,111,99,101,115,115,111,114,0,0,1,7,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5, - 101,120,105,115,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111, - 108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101, - 120,105,115,116,115,32,97,110,100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32, - 99,111,110,115,111,108,101,32,105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116, - 116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101, - 32,97,116,116,114,105,98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,17,5,103,101,116,83,97,109,112,108,101,76,101,110,103,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4, - 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,65,5,82,101, - 116,117,114,110,115,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,115,97,109,112,108,101,32,115, - 101,108,101,99,116,105,111,110,32,105,110,32,115,97,109,112,108,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5, - 115,101,116,65,116,116,114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,112,97,114,97,109,101,116,101,114, - 73,110,100,101,120,44,32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,89,5,67,104,97,110,103,101,115,32,111,110,101,32,111,102,32,116,104,101,32,80,97,114,97,109,101,116,101, - 114,46,32,76,111,111,107,32,105,110,32,116,104,101,32,109,97,110,117,97,108,32,102,111,114,32,116,104,101,32,105,110,100,101,120,32,110,117,109,98, - 101,114,115,32,111,102,32,101,97,99,104,32,101,102,102,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115, - 101,116,66,121,112,97,115,115,101,100,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,66,121, - 112,97,115,115,101,100,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,23,5,66,121, - 112,97,115,115,101,115,32,116,104,101,32,101,102,102,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101, - 116,70,105,108,101,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,114,5,108,111,97,100,115,32,116,104,101,32,102,105,108, - 101,46,32,89,111,117,32,99,97,110,32,117,115,101,32,116,104,101,32,119,105,108,100,99,97,114,100,32,123,80,82,79,74,69,67,84,95,70,79,76, - 68,69,82,125,32,116,111,32,103,101,116,32,116,104,101,32,97,117,100,105,111,32,102,105,108,101,32,102,111,108,100,101,114,32,102,111,114,32,116,104, - 101,32,99,117,114,114,101,110,116,32,112,114,111,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,115,101, - 116,83,97,109,112,108,101,82,97,110,103,101,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,105,110,116,32,115,116,97,114,116,83,97,109,112, - 108,101,44,32,105,110,116,32,101,110,100,83,97,109,112,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,62,5,83,101,116,115,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32, - 115,97,109,112,108,101,32,115,101,108,101,99,116,105,111,110,32,105,110,32,115,97,109,112,108,101,115,46,32,0,0,84,97,98,108,101,80,114,111,99, - 101,115,115,111,114,0,0,1,4,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,97,100,100,84,97,98,108,101,80,111,105,110,116,0, - 97,114,103,117,109,101,110,116,115,0,1,36,5,40,105,110,116,32,116,97,98,108,101,73,110,100,101,120,44,32,102,108,111,97,116,32,120,44,32,102, - 108,111,97,116,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,63,5,65,100, - 100,115,32,97,32,110,101,119,32,116,97,98,108,101,32,112,111,105,110,116,32,40,120,32,97,110,100,32,121,32,97,114,101,32,110,111,114,109,97,108, - 105,122,101,100,32,99,111,111,114,100,105,110,97,116,101,115,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120, - 105,115,116,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32, - 0,100,101,115,99,114,105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105, - 115,116,115,32,97,110,100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111, - 110,115,111,108,101,32,105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,114,101,115,101,116,0,97, - 114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,116,97,98,108,101,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,82,101,115,101,116,115,32,116,104,101,32,116,97,98,108,101,32,119,105,116,104, - 32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,32,116,111,32,97,32,48,46,46,49,32,108,105,110,101,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,15,5,115,101,116,84,97,98,108,101,80,111,105,110,116,0,97,114,103,117,109,101,110,116,115,0,1,65,5,40, - 105,110,116,32,116,97,98,108,101,73,110,100,101,120,44,32,105,110,116,32,112,111,105,110,116,73,110,100,101,120,44,32,102,108,111,97,116,32,120,44, - 32,102,108,111,97,116,32,121,44,32,102,108,111,97,116,32,99,117,114,118,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,53,5,83,101,116,115,32,116,104,101,32,112,111,105,110,116,32,119,105,116,104,32,116,104,101,32,103,105,118, - 101,110,32,105,110,100,101,120,32,116,111,32,116,104,101,32,118,97,108,117,101,115,46,32,0,0,71,114,97,112,104,105,99,115,0,0,1,21,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,24,5,97,100,100,68,114,111,112,83,104,97,100,111,119,70,114,111,109,65,108,112,104,97,0,97,114, - 103,117,109,101,110,116,115,0,1,26,5,40,105,110,116,32,99,111,108,111,117,114,44,32,105,110,116,32,114,97,100,105,117,115,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,69,5,65,100,100,115,32,97,32,100,114,111,112,32,115,104, - 97,100,111,119,32,98,97,115,101,100,32,111,110,32,116,104,101,32,97,108,112,104,97,32,118,97,108,117,101,115,32,111,102,32,116,104,101,32,99,117, - 114,114,101,110,116,32,105,109,97,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,100,114,97,119,68,114,111,112, - 83,104,97,100,111,119,0,97,114,103,117,109,101,110,116,115,0,1,36,5,40,118,97,114,32,97,114,101,97,44,32,105,110,116,32,99,111,108,111,117, - 114,44,32,105,110,116,32,114,97,100,105,117,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,42,5,68,114,97,119,115,32,97,32,100,114,111,112,32,115,104,97,100,111,119,32,97,114,111,117,110,100,32,97,32,114,101,99,116,97,110, - 103,108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,100,114,97,119,69,108,108,105,112,115,101,0,97,114,103,117, - 109,101,110,116,115,0,1,33,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,108,105,110,101,84,104,105,99,107,110,101,115,115,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,68,114,97,119,115,32,97,32,101, - 108,108,105,112,115,101,32,105,110,32,116,104,101,32,103,105,118,101,110,32,97,114,101,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,20,5,100,114,97,119,72,111,114,105,122,111,110,116,97,108,76,105,110,101,0,97,114,103,117,109,101,110,116,115,0,1,29,5,40,105,110, - 116,32,121,44,32,102,108,111,97,116,32,120,49,44,32,102,108,111,97,116,32,120,50,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,68,114,97,119,115,32,97,32,40,110,111,110,32,105,110,116,101,114,112,111,108,97,116,101,100, - 41,32,104,111,114,105,122,111,110,116,97,108,32,108,105,110,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,100,114, - 97,119,73,109,97,103,101,0,97,114,103,117,109,101,110,116,115,0,1,56,5,40,83,116,114,105,110,103,32,105,109,97,103,101,78,97,109,101,44,32, - 118,97,114,32,97,114,101,97,44,32,105,110,116,32,120,79,102,102,115,101,116,44,32,105,110,116,32,121,79,102,102,115,101,116,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,68,114,97,119,115,32,97,32,105,109,97,103,101,32, - 105,110,116,111,32,116,104,101,32,97,114,101,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,76,105, - 110,101,0,97,114,103,117,109,101,110,116,115,0,1,63,5,40,102,108,111,97,116,32,120,49,44,32,102,108,111,97,116,32,120,50,44,32,102,108,111, - 97,116,32,121,49,44,32,102,108,111,97,116,32,121,50,44,32,102,108,111,97,116,32,108,105,110,101,84,104,105,99,107,110,101,115,115,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,16,5,68,114,97,119,115,32,97,32,108,105,110,101, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,80,97,116,104,0,97,114,103,117,109,101,110,116,115,0, - 1,37,5,40,118,97,114,32,112,97,116,104,44,32,118,97,114,32,97,114,101,97,44,32,118,97,114,32,116,104,105,99,107,78,101,115,115,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,68,114,97,119,115,32,116,104,101,32,103, - 105,118,101,110,32,112,97,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,82,101,99,116,0,97, - 114,103,117,109,101,110,116,115,0,1,30,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,98,111,114,100,101,114,83,105,122,101,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,68,114,97,119,115,32,97,32,114, - 101,99,116,97,110,103,108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,100,114,97,119,82,111,117,110,100,101,100, - 82,101,99,116,97,110,103,108,101,0,97,114,103,117,109,101,110,116,115,0,1,48,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32, - 99,111,114,110,101,114,83,105,122,101,44,32,102,108,111,97,116,32,98,111,114,100,101,114,83,105,122,101,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,68,114,97,119,115,32,97,32,114,111,117,110,100,101,100,32,114,101,99,116, - 97,110,103,108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,84,101,120,116,0,97,114,103,117,109, - 101,110,116,115,0,1,25,5,40,83,116,114,105,110,103,32,116,101,120,116,44,32,118,97,114,32,97,114,101,97,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,68,114,97,119,115,32,97,32,40,99,101,110,116,101,114,101,100,41, - 32,116,101,120,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,100,114,97,119,84,114,105,97,110,103,108,101,0,97, - 114,103,117,109,101,110,116,115,0,1,46,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,97,110,103,108,101,44,32,102,108,111,97, - 116,32,108,105,110,101,84,104,105,99,107,110,101,115,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,52,5,68,114,97,119,115,32,97,32,116,114,105,97,110,103,108,101,32,114,111,116,97,116,101,100,32,98,121,32,116,104,101,32,97, - 110,103,108,101,32,105,110,32,114,97,100,105,97,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,102,105,108,108, - 65,108,108,0,97,114,103,117,109,101,110,116,115,0,1,14,5,40,105,110,116,32,99,111,108,111,117,114,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,70,105,108,108,115,32,116,104,101,32,119,104,111,108,101,32,97,114,101,97, - 32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,99,111,108,111,117,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,13,5,102,105,108,108,69,108,108,105,112,115,101,0,97,114,103,117,109,101,110,116,115,0,1,12,5,40,118,97,114,32,97,114,101,97,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,70,105,108,108,115,32,97,32,101,108,108, - 105,112,115,101,32,105,110,32,116,104,101,32,103,105,118,101,110,32,97,114,101,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,10,5,102,105,108,108,80,97,116,104,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,118,97,114,32,112,97,116,104,44,32,118,97,114,32, - 97,114,101,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,16,5,70,105,108,108, - 115,32,97,32,80,97,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,102,105,108,108,82,101,99,116,0,97,114, - 103,117,109,101,110,116,115,0,1,12,5,40,118,97,114,32,97,114,101,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, - 99,114,105,112,116,105,111,110,0,1,43,5,70,105,108,108,115,32,97,32,114,101,99,116,97,110,103,108,101,32,119,105,116,104,32,116,104,101,32,103, - 105,118,101,110,32,99,111,108,111,117,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,102,105,108,108,82,111,117,110, - 100,101,100,82,101,99,116,97,110,103,108,101,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111, - 97,116,32,99,111,114,110,101,114,83,105,122,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,29,5,70,105,108,108,115,32,97,32,114,111,117,110,100,101,100,32,114,101,99,116,97,110,103,108,101,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,14,5,102,105,108,108,84,114,105,97,110,103,108,101,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,118,97, - 114,32,97,114,101,97,44,32,102,108,111,97,116,32,97,110,103,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,52,5,70,105,108,108,115,32,97,32,116,114,105,97,110,103,108,101,32,114,111,116,97,116,101,100,32,98,121,32,116, - 104,101,32,97,110,103,108,101,32,105,110,32,114,97,100,105,97,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5, - 115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,14,5,40,105,110,116,32,99,111,108,111,117,114,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101, - 110,116,32,99,111,108,111,117,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101,116,70,111,110,116,0,97,114, - 103,117,109,101,110,116,115,0,1,35,5,40,83,116,114,105,110,103,32,102,111,110,116,78,97,109,101,44,32,102,108,111,97,116,32,102,111,110,116,83, - 105,122,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,25,5,83,101,116,115,32, - 116,104,101,32,99,117,114,114,101,110,116,32,102,111,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,115,101,116, - 71,114,97,100,105,101,110,116,70,105,108,108,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,118,97,114,32,103,114,97,100,105,101,110,116,68, - 97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,83,101,116,115,32, - 116,104,101,32,99,117,114,114,101,110,116,32,103,114,97,100,105,101,110,116,32,118,105,97,32,97,110,32,97,114,114,97,121,32,91,67,111,108,111,117, - 114,49,44,32,120,49,44,32,121,49,44,32,67,111,108,111,117,114,50,44,32,120,50,44,32,121,50,93,32,0,0,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,12,5,115,101,116,79,112,97,99,105,116,121,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,102,108,111,97,116,32,97, - 108,112,104,97,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,36, - 5,83,101,116,115,32,97,32,103,108,111,98,97,108,32,116,114,97,110,115,112,97,114,101,110,99,121,32,108,101,118,101,108,46,32,0,0,80,97,116, - 104,0,0,1,6,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,99,108,101,97,114,0,97,114,103,117,109,101,110,116,115,0,1,4, - 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,19,5,67,108,101,97,114,115, - 32,116,104,101,32,80,97,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,99,108,111,115,101,83,117,98,80,97, - 116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,19,5,67,108,111,115,101,115,32,116,104,101,32,80,97,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,8,5,108,105,110,101,84,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,120,44,32,118,97,114,32,121,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,65,100,100,115,32,97,32,108,105,110, - 101,32,116,111,32,91,120,44,121,93,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,108,111,97,100,70,114,111,109,68, - 97,116,97,0,97,114,103,117,109,101,110,116,115,0,1,12,5,40,118,97,114,32,100,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,34,5,76,111,97,100,115,32,97,32,112,97,116,104,32,102,114,111,109,32,97,32,100,97, - 116,97,32,97,114,114,97,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,113,117,97,100,114,97,116,105,99,84,111, - 0,97,114,103,117,109,101,110,116,115,0,1,32,5,40,118,97,114,32,99,120,44,32,118,97,114,32,99,121,44,32,118,97,114,32,120,44,32,118,97, - 114,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,88,5,65,100,100,115,32, - 97,32,113,117,97,100,114,97,116,105,99,32,98,101,122,105,101,114,32,99,117,114,118,101,32,119,105,116,104,32,116,104,101,32,99,111,110,116,114,111, - 108,32,112,111,105,110,116,32,91,99,120,44,99,121,93,32,97,110,100,32,116,104,101,32,101,110,100,32,112,111,105,110,116,32,91,120,44,121,93,46, - 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,115,116,97,114,116,78,101,119,83,117,98,80,97,116,104,0,97,114,103,117, - 109,101,110,116,115,0,1,16,5,40,118,97,114,32,120,44,32,118,97,114,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, - 101,115,99,114,105,112,116,105,111,110,0,1,103,5,83,116,97,114,116,115,32,97,32,110,101,119,32,80,97,116,104,46,32,73,116,32,100,111,101,115, - 32,110,111,116,32,99,108,101,97,114,32,116,104,101,32,112,97,116,104,44,32,115,111,32,117,115,101,32,39,99,108,101,97,114,40,41,39,32,105,102, - 32,121,111,117,32,119,97,110,116,32,116,111,32,115,116,97,114,116,32,97,108,108,32,111,118,101,114,32,97,103,97,105,110,46,32,0,0,83,99,114, - 105,112,116,66,117,116,116,111,110,0,0,1,19,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111, - 67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111, - 98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48, - 32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115, - 0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5, - 118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102, - 32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111, - 98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108, - 117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0, - 97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111, - 110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32, - 104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101, - 110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,86,97,108,117,101,78,111,114, - 109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111, - 117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115,32,116,104,101,32,110,111,114,109,97,108,105, - 122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100,116,104,0,97, - 114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111,109,112,111,110, - 101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111,110,101,110,116, - 0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108,100,67,111,109, - 112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108,100,32,99,111, - 109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115, - 0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112, - 101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109, - 101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116, - 72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32, - 116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84, - 50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97, - 108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105, - 110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101, - 110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109, + 1,30,5,66,121,112,97,115,115,101,115,32,116,104,101,32,77,105,100,105,80,114,111,99,101,115,115,111,114,46,32,0,0,65,117,100,105,111,83,97, + 109,112,108,101,80,114,111,99,101,115,115,111,114,0,0,1,7,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120,105,115,116,115, + 0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105,115,116,115,32, + 97,110,100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111,110,115,111,108, + 101,32,105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,103,101,116,65,116,116,114,105,98,117,116, + 101,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8, + 5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,116,117,114,110,115,32,116,104,101,32,97,116,116,114,105, + 98,117,116,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,17,5,103,101,116,83,97,109,112,108,101,76,101,110,103,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,65,5,82,101,116,117,114,110,115,32, + 116,104,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,115,97,109,112,108,101,32,115,101,108,101,99,116,105, + 111,110,32,105,110,32,115,97,109,112,108,101,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,65,116,116, + 114,105,98,117,116,101,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,112,97,114,97,109,101,116,101,114,73,110,100,101,120,44, + 32,102,108,111,97,116,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,89,5,67,104,97,110,103,101,115,32,111,110,101,32,111,102,32,116,104,101,32,80,97,114,97,109,101,116,101,114,46,32,76,111,111, + 107,32,105,110,32,116,104,101,32,109,97,110,117,97,108,32,102,111,114,32,116,104,101,32,105,110,100,101,120,32,110,117,109,98,101,114,115,32,111,102, + 32,101,97,99,104,32,101,102,102,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,66,121,112,97, + 115,115,101,100,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,66,121,112,97,115,115,101,100, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,23,5,66,121,112,97,115,115,101,115, + 32,116,104,101,32,101,102,102,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101,116,70,105,108,101,0, + 97,114,103,117,109,101,110,116,115,0,1,19,5,40,83,116,114,105,110,103,32,102,105,108,101,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,114,5,108,111,97,100,115,32,116,104,101,32,102,105,108,101,46,32,89,111,117, + 32,99,97,110,32,117,115,101,32,116,104,101,32,119,105,108,100,99,97,114,100,32,123,80,82,79,74,69,67,84,95,70,79,76,68,69,82,125,32,116, + 111,32,103,101,116,32,116,104,101,32,97,117,100,105,111,32,102,105,108,101,32,102,111,108,100,101,114,32,102,111,114,32,116,104,101,32,99,117,114,114, + 101,110,116,32,112,114,111,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,115,101,116,83,97,109,112,108, + 101,82,97,110,103,101,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,105,110,116,32,115,116,97,114,116,83,97,109,112,108,101,44,32,105,110, + 116,32,101,110,100,83,97,109,112,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,62,5,83,101,116,115,32,116,104,101,32,108,101,110,103,116,104,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32,115,97,109,112,108,101, + 32,115,101,108,101,99,116,105,111,110,32,105,110,32,115,97,109,112,108,101,115,46,32,0,0,84,97,98,108,101,80,114,111,99,101,115,115,111,114,0, + 0,1,4,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,97,100,100,84,97,98,108,101,80,111,105,110,116,0,97,114,103,117,109,101, + 110,116,115,0,1,36,5,40,105,110,116,32,116,97,98,108,101,73,110,100,101,120,44,32,102,108,111,97,116,32,120,44,32,102,108,111,97,116,32,121, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,63,5,65,100,100,115,32,97,32,110, + 101,119,32,116,97,98,108,101,32,112,111,105,110,116,32,40,120,32,97,110,100,32,121,32,97,114,101,32,110,111,114,109,97,108,105,122,101,100,32,99, + 111,111,114,100,105,110,97,116,101,115,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,101,120,105,115,116,115,0,97, + 114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114, + 105,112,116,105,111,110,0,1,80,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,79,98,106,101,99,116,32,101,120,105,115,116,115,32,97,110, + 100,32,112,114,105,110,116,115,32,97,32,101,114,114,111,114,32,109,101,115,115,97,103,101,32,111,110,32,116,104,101,32,99,111,110,115,111,108,101,32, + 105,102,32,110,111,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,114,101,115,101,116,0,97,114,103,117,109,101,110, + 116,115,0,1,18,5,40,105,110,116,32,116,97,98,108,101,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,56,5,82,101,115,101,116,115,32,116,104,101,32,116,97,98,108,101,32,119,105,116,104,32,116,104,101,32,103, + 105,118,101,110,32,105,110,100,101,120,32,116,111,32,97,32,48,46,46,49,32,108,105,110,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,15,5,115,101,116,84,97,98,108,101,80,111,105,110,116,0,97,114,103,117,109,101,110,116,115,0,1,65,5,40,105,110,116,32,116,97, + 98,108,101,73,110,100,101,120,44,32,105,110,116,32,112,111,105,110,116,73,110,100,101,120,44,32,102,108,111,97,116,32,120,44,32,102,108,111,97,116, + 32,121,44,32,102,108,111,97,116,32,99,117,114,118,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,53,5,83,101,116,115,32,116,104,101,32,112,111,105,110,116,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,105,110,100, + 101,120,32,116,111,32,116,104,101,32,118,97,108,117,101,115,46,32,0,0,71,114,97,112,104,105,99,115,0,0,1,21,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,24,5,97,100,100,68,114,111,112,83,104,97,100,111,119,70,114,111,109,65,108,112,104,97,0,97,114,103,117,109,101,110,116, + 115,0,1,26,5,40,105,110,116,32,99,111,108,111,117,114,44,32,105,110,116,32,114,97,100,105,117,115,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,69,5,65,100,100,115,32,97,32,100,114,111,112,32,115,104,97,100,111,119,32,98, + 97,115,101,100,32,111,110,32,116,104,101,32,97,108,112,104,97,32,118,97,108,117,101,115,32,111,102,32,116,104,101,32,99,117,114,114,101,110,116,32, + 105,109,97,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,16,5,100,114,97,119,68,114,111,112,83,104,97,100,111,119, + 0,97,114,103,117,109,101,110,116,115,0,1,36,5,40,118,97,114,32,97,114,101,97,44,32,105,110,116,32,99,111,108,111,117,114,44,32,105,110,116, + 32,114,97,100,105,117,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,42,5,68, + 114,97,119,115,32,97,32,100,114,111,112,32,115,104,97,100,111,119,32,97,114,111,117,110,100,32,97,32,114,101,99,116,97,110,103,108,101,46,32,0, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,100,114,97,119,69,108,108,105,112,115,101,0,97,114,103,117,109,101,110,116,115,0, + 1,33,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,108,105,110,101,84,104,105,99,107,110,101,115,115,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,68,114,97,119,115,32,97,32,101,108,108,105,112,115,101, + 32,105,110,32,116,104,101,32,103,105,118,101,110,32,97,114,101,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,100, + 114,97,119,72,111,114,105,122,111,110,116,97,108,76,105,110,101,0,97,114,103,117,109,101,110,116,115,0,1,29,5,40,105,110,116,32,121,44,32,102, + 108,111,97,116,32,120,49,44,32,102,108,111,97,116,32,120,50,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,46,5,68,114,97,119,115,32,97,32,40,110,111,110,32,105,110,116,101,114,112,111,108,97,116,101,100,41,32,104,111,114,105, + 122,111,110,116,97,108,32,108,105,110,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,100,114,97,119,73,109,97,103, + 101,0,97,114,103,117,109,101,110,116,115,0,1,56,5,40,83,116,114,105,110,103,32,105,109,97,103,101,78,97,109,101,44,32,118,97,114,32,97,114, + 101,97,44,32,105,110,116,32,120,79,102,102,115,101,116,44,32,105,110,116,32,121,79,102,102,115,101,116,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,68,114,97,119,115,32,97,32,105,109,97,103,101,32,105,110,116,111,32,116, + 104,101,32,97,114,101,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,76,105,110,101,0,97,114,103, + 117,109,101,110,116,115,0,1,63,5,40,102,108,111,97,116,32,120,49,44,32,102,108,111,97,116,32,120,50,44,32,102,108,111,97,116,32,121,49,44, + 32,102,108,111,97,116,32,121,50,44,32,102,108,111,97,116,32,108,105,110,101,84,104,105,99,107,110,101,115,115,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,16,5,68,114,97,119,115,32,97,32,108,105,110,101,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,80,97,116,104,0,97,114,103,117,109,101,110,116,115,0,1,37,5,40,118,97, + 114,32,112,97,116,104,44,32,118,97,114,32,97,114,101,97,44,32,118,97,114,32,116,104,105,99,107,78,101,115,115,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,68,114,97,119,115,32,116,104,101,32,103,105,118,101,110,32,112, + 97,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,82,101,99,116,0,97,114,103,117,109,101,110, + 116,115,0,1,30,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,98,111,114,100,101,114,83,105,122,101,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,68,114,97,119,115,32,97,32,114,101,99,116,97,110,103, + 108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,100,114,97,119,82,111,117,110,100,101,100,82,101,99,116,97,110, + 103,108,101,0,97,114,103,117,109,101,110,116,115,0,1,48,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,99,111,114,110,101,114, + 83,105,122,101,44,32,102,108,111,97,116,32,98,111,114,100,101,114,83,105,122,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,29,5,68,114,97,119,115,32,97,32,114,111,117,110,100,101,100,32,114,101,99,116,97,110,103,108,101,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,100,114,97,119,84,101,120,116,0,97,114,103,117,109,101,110,116,115,0,1, + 25,5,40,83,116,114,105,110,103,32,116,101,120,116,44,32,118,97,114,32,97,114,101,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,68,114,97,119,115,32,97,32,40,99,101,110,116,101,114,101,100,41,32,116,101,120,116,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,100,114,97,119,84,114,105,97,110,103,108,101,0,97,114,103,117,109,101,110, + 116,115,0,1,46,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,97,110,103,108,101,44,32,102,108,111,97,116,32,108,105,110,101, + 84,104,105,99,107,110,101,115,115,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,52, + 5,68,114,97,119,115,32,97,32,116,114,105,97,110,103,108,101,32,114,111,116,97,116,101,100,32,98,121,32,116,104,101,32,97,110,103,108,101,32,105, + 110,32,114,97,100,105,97,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,102,105,108,108,65,108,108,0,97,114, + 103,117,109,101,110,116,115,0,1,14,5,40,105,110,116,32,99,111,108,111,117,114,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,46,5,70,105,108,108,115,32,116,104,101,32,119,104,111,108,101,32,97,114,101,97,32,119,105,116,104,32, + 116,104,101,32,103,105,118,101,110,32,99,111,108,111,117,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,102,105,108, + 108,69,108,108,105,112,115,101,0,97,114,103,117,109,101,110,116,115,0,1,12,5,40,118,97,114,32,97,114,101,97,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,70,105,108,108,115,32,97,32,101,108,108,105,112,115,101,32,105, + 110,32,116,104,101,32,103,105,118,101,110,32,97,114,101,97,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,102,105,108, + 108,80,97,116,104,0,97,114,103,117,109,101,110,116,115,0,1,22,5,40,118,97,114,32,112,97,116,104,44,32,118,97,114,32,97,114,101,97,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,16,5,70,105,108,108,115,32,97,32,80,97, + 116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,102,105,108,108,82,101,99,116,0,97,114,103,117,109,101,110,116, + 115,0,1,12,5,40,118,97,114,32,97,114,101,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105, + 111,110,0,1,43,5,70,105,108,108,115,32,97,32,114,101,99,116,97,110,103,108,101,32,119,105,116,104,32,116,104,101,32,103,105,118,101,110,32,99, + 111,108,111,117,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,22,5,102,105,108,108,82,111,117,110,100,101,100,82,101,99, + 116,97,110,103,108,101,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,118,97,114,32,97,114,101,97,44,32,102,108,111,97,116,32,99,111,114, + 110,101,114,83,105,122,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,70, + 105,108,108,115,32,97,32,114,111,117,110,100,101,100,32,114,101,99,116,97,110,103,108,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,14,5,102,105,108,108,84,114,105,97,110,103,108,101,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,118,97,114,32,97,114,101,97, + 44,32,102,108,111,97,116,32,97,110,103,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,52,5,70,105,108,108,115,32,97,32,116,114,105,97,110,103,108,101,32,114,111,116,97,116,101,100,32,98,121,32,116,104,101,32,97,110,103, + 108,101,32,105,110,32,114,97,100,105,97,110,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108, + 111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,14,5,40,105,110,116,32,99,111,108,111,117,114,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,27,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,99,111,108, + 111,117,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101,116,70,111,110,116,0,97,114,103,117,109,101,110,116, + 115,0,1,35,5,40,83,116,114,105,110,103,32,102,111,110,116,78,97,109,101,44,32,102,108,111,97,116,32,102,111,110,116,83,105,122,101,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,25,5,83,101,116,115,32,116,104,101,32,99,117, + 114,114,101,110,116,32,102,111,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,115,101,116,71,114,97,100,105,101, + 110,116,70,105,108,108,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,118,97,114,32,103,114,97,100,105,101,110,116,68,97,116,97,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,76,5,83,101,116,115,32,116,104,101,32,99,117, + 114,114,101,110,116,32,103,114,97,100,105,101,110,116,32,118,105,97,32,97,110,32,97,114,114,97,121,32,91,67,111,108,111,117,114,49,44,32,120,49, + 44,32,121,49,44,32,67,111,108,111,117,114,50,44,32,120,50,44,32,121,50,93,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, + 12,5,115,101,116,79,112,97,99,105,116,121,0,97,114,103,117,109,101,110,116,115,0,1,20,5,40,102,108,111,97,116,32,97,108,112,104,97,86,97, + 108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,36,5,83,101,116,115,32, + 97,32,103,108,111,98,97,108,32,116,114,97,110,115,112,97,114,101,110,99,121,32,108,101,118,101,108,46,32,0,0,80,97,116,104,0,0,1,6,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,7,5,99,108,101,97,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,19,5,67,108,101,97,114,115,32,116,104,101,32,80, + 97,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,99,108,111,115,101,83,117,98,80,97,116,104,0,97,114,103, + 117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,19,5,67,108,111,115,101,115,32,116,104,101,32,80,97,116,104,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,8,5,108, + 105,110,101,84,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,120,44,32,118,97,114,32,121,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,65,100,100,115,32,97,32,108,105,110,101,32,116,111,32,91, + 120,44,121,93,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,108,111,97,100,70,114,111,109,68,97,116,97,0,97,114, + 103,117,109,101,110,116,115,0,1,12,5,40,118,97,114,32,100,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,34,5,76,111,97,100,115,32,97,32,112,97,116,104,32,102,114,111,109,32,97,32,100,97,116,97,32,97,114,114, + 97,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,113,117,97,100,114,97,116,105,99,84,111,0,97,114,103,117,109, + 101,110,116,115,0,1,32,5,40,118,97,114,32,99,120,44,32,118,97,114,32,99,121,44,32,118,97,114,32,120,44,32,118,97,114,32,121,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,88,5,65,100,100,115,32,97,32,113,117,97,100, + 114,97,116,105,99,32,98,101,122,105,101,114,32,99,117,114,118,101,32,119,105,116,104,32,116,104,101,32,99,111,110,116,114,111,108,32,112,111,105,110, + 116,32,91,99,120,44,99,121,93,32,97,110,100,32,116,104,101,32,101,110,100,32,112,111,105,110,116,32,91,120,44,121,93,46,32,0,0,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,17,5,115,116,97,114,116,78,101,119,83,117,98,80,97,116,104,0,97,114,103,117,109,101,110,116,115,0, + 1,16,5,40,118,97,114,32,120,44,32,118,97,114,32,121,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, + 116,105,111,110,0,1,103,5,83,116,97,114,116,115,32,97,32,110,101,119,32,80,97,116,104,46,32,73,116,32,100,111,101,115,32,110,111,116,32,99, + 108,101,97,114,32,116,104,101,32,112,97,116,104,44,32,115,111,32,117,115,101,32,39,99,108,101,97,114,40,41,39,32,105,102,32,121,111,117,32,119, + 97,110,116,32,116,111,32,115,116,97,114,116,32,97,108,108,32,111,118,101,114,32,97,103,97,105,110,46,32,0,0,83,99,114,105,112,116,66,117,116, + 116,111,110,0,0,1,19,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111, + 108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117, + 116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41, + 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83, + 116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112, + 114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115, + 105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116, + 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45, + 112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101, + 110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97, + 116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, + 11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116, + 32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101, + 116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114, + 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108, + 117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101, + 100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115,32,116,104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97, + 108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110, + 116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109, + 101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101, + 99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110, + 116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83, + 116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1, + 38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111, + 108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84, + 41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107, + 0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32, + 102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1, + 30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111, + 102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80, + 114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111, + 110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115, + 116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46, + 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115, + 0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32, + 109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101, + 0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117, + 101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97, + 114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114, + 101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116, + 115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, + 105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100, + 115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102, + 114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111, + 110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32, + 83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99,114,105,112,116,67,111,109,98,111,66,111,120,0,0,1,21,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,97,100,100,73,116,101,109,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83, + 116,114,105,110,103,32,110,101,119,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,31,5,65,100,100,115,32,97,110,32,105,116,101,109,32,116,111,32,97,32,99,111,109,98,111,32,98,111,120,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115, + 0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109, + 97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101, + 114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0, + 1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117, + 109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105, + 111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101, + 108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, + 0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115, + 32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101, + 32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116, + 0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109, + 112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,73,116,101,109,84,101,120,116,0,97, + 114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110,103,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,108,121,32,115,101,108,101,99,116, + 101,100,32,105,116,101,109,32,116,101,120,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117, + 101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103, + 117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114, + 105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115,32,116,104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4, + 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101, + 116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0, + 1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105, + 102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103, + 32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110, + 116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32, + 111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117, + 109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116, + 105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110, + 116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, + 0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101, + 32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114, + 116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115, + 32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40, + 32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101, + 32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117, + 109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101, + 110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118, + 97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5, + 40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32, + 116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111, + 110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108, + 0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115, + 32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99,114,105,112,116,83,108,105,100,101,114,0,0,1,27,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5, + 40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111, + 32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,10,5,99,111,110,116,97,105,110,115,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,100,111,117,98,108,101,32,118,97,108,117, + 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,49,5,67,104, + 101,99,107,115,32,105,102,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,32,105,115,32,119,105,116,104,105,110,32,116,104,101,32,114,97, + 110,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23, + 5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114, + 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104, + 101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108, + 80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5, + 105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101, + 32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103, + 117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114, + 101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105, + 103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13, + 5,103,101,116,77,97,120,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,82,101,116,117,114,110,115,32,116,104,101,32,117,112, + 112,101,114,32,114,97,110,103,101,32,101,110,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,77,105,110, + 86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98, + 108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,82,101,116,117,114,110,115,32,116,104,101,32,108,111,119,101,114,32,114,97,110, + 103,101,32,101,110,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117, + 109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105, + 111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116, + 104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114, + 105,112,116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99, + 111,109,112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114, + 116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117, + 114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, + 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32, + 99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1, + 23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114, + 32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,13,5,115,101,116,77,97,120,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,14,5,40,100,111,117,98,108,101,32,109,97, + 120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,83,101,116,115,32,116,104, + 101,32,117,112,112,101,114,32,114,97,110,103,101,32,101,110,100,32,116,111,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,77,105,100,80,111,105,110,116,0,97,114,103,117,109,101,110,116,115,0,1, + 27,5,40,100,111,117,98,108,101,32,118,97,108,117,101,70,111,114,77,105,100,80,111,105,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,55,5,83,101,116,115,32,116,104,101,32,118,97,108,117,101,32,116,104,97,116,32,105,115, + 32,115,104,111,119,110,32,105,110,32,116,104,101,32,109,105,100,100,108,101,32,112,111,115,105,116,105,111,110,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,13,5,115,101,116,77,105,110,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,14,5,40,100,111,117,98, + 108,101,32,109,105,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,83,101, + 116,115,32,116,104,101,32,108,111,119,101,114,32,114,97,110,103,101,32,101,110,100,32,116,111,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117, + 101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101,116,77,111,100,101,0,97,114,103,117,109,101,110,116,115,0, + 1,15,5,40,83,116,114,105,110,103,32,109,111,100,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,39,5,83,101,116,115,32,116,104,101,32,107,110,111,98,32,116,111,32,116,104,101,32,115,112,101,99,105,102,105,101,100,32,109,111, + 100,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109, 101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116, 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105, 116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, 23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118, 97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, 1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111, - 98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103, - 117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101, - 120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101, - 116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110, - 116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108, - 105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117, - 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104, - 101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114, - 103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, - 0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97, - 110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32, - 116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5, - 115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86, - 105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105, - 100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99,114,105,112,116,67,111,109,98,111,66,111, - 120,0,0,1,21,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,97,100,100,73,116,101,109,0,97,114,103,117,109,101,110,116,115,0, - 1,19,5,40,32,83,116,114,105,110,103,32,110,101,119,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,31,5,65,100,100,115,32,97,110,32,105,116,101,109,32,116,111,32,97,32,99,111,109,98,111,32,98,111,120,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103, - 117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, - 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32, - 116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103, - 32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114, - 116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110, - 88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115, - 99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116, - 105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1, - 4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82, - 101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32, - 116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116, - 72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116, - 104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,103,101,116,73,116,101,109, - 84,101,120,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,83,116,114,105,110, - 103,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,108,121,32, - 115,101,108,101,99,116,101,100,32,105,116,101,109,32,116,101,120,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103, + 98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,82,97,110,103,101,0,97,114,103,117,109, + 101,110,116,115,0,1,43,5,40,100,111,117,98,108,101,32,109,105,110,44,32,100,111,117,98,108,101,32,109,97,120,44,32,100,111,117,98,108,101,32, + 115,116,101,112,83,105,122,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,48,5, + 83,101,116,115,32,116,104,101,32,114,97,110,103,101,32,97,110,100,32,116,104,101,32,115,116,101,112,32,115,105,122,101,32,111,102,32,116,104,101,32, + 107,110,111,98,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,83,116,121,108,101,0,97,114,103,117,109,101, + 110,116,115,0,1,16,5,40,83,116,114,105,110,103,32,115,116,121,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,45,5,83,101,116,115,32,116,104,101,32,115,116,121,108,101,32,75,110,111,98,44,32,72,111,114,105,122,111,110, + 116,97,108,44,32,86,101,114,116,105,99,97,108,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111, + 108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109, + 97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117, + 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104, + 101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108, + 117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108, + 105,122,101,100,86,97,108,117,101,41,32,111,118,101,114,114,105,100,101,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, + 105,112,116,105,111,110,0,1,40,5,83,101,116,32,116,104,101,32,118,97,108,117,101,32,102,114,111,109,32,97,32,48,46,48,32,116,111,32,49,46, + 48,32,114,97,110,103,101,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85, + 110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118, + 97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116, + 32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111, + 117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99,114,105,112,116,76, + 97,98,101,108,0,0,1,20,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114, + 111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98, + 117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55, + 41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40, + 83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32, + 112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111, + 115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110, + 116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120, + 45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109, + 101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108, + 97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104, + 116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103, 101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97, 114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97, 108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122, @@ -1234,116 +1396,167 @@ static const unsigned char temp1[] = {65,112,105,0,0,1,31,67,111,108,111,117,114 107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116, 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101, 32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0, - 1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32, - 111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116, - 80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115, - 111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101, - 115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116, - 115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110, - 32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117, - 101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108, - 117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0, - 97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114, - 114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110, - 116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100, - 100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32, - 102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67, - 111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108, - 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47, - 32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99,114,105,112,116,83,108,105,100,101,114,0,0,1,27,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110, - 116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97, - 32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,10,5,99,111,110,116,97,105,110,115,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,100,111,117,98,108, - 101,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,49,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,32,105,115,32,119,105,116,104,105,110,32, - 116,104,101,32,114,97,110,103,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101, - 110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101, - 32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116, - 71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98, - 115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102, - 97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111, - 110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105, - 116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116, - 104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110, - 97,109,101,0,1,13,5,103,101,116,77,97,120,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,82,101,116,117,114,110,115,32, - 116,104,101,32,117,112,112,101,114,32,114,97,110,103,101,32,101,110,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5, - 103,101,116,77,105,110,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,31,5,82,101,116,117,114,110,115,32,116,104,101,32,108,111,119, - 101,114,32,114,97,110,103,101,32,101,110,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117, - 101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115, - 99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5, - 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116, - 117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1, - 35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102, - 32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32, - 112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116, - 32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111, - 102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109, - 101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105, - 111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,13,5,115,101,116,77,97,120,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,14,5,40,100,111,117, - 98,108,101,32,109,97,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,83, - 101,116,115,32,116,104,101,32,117,112,112,101,114,32,114,97,110,103,101,32,101,110,100,32,116,111,32,116,104,101,32,103,105,118,101,110,32,118,97,108, - 117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,77,105,100,80,111,105,110,116,0,97,114,103,117,109, - 101,110,116,115,0,1,27,5,40,100,111,117,98,108,101,32,118,97,108,117,101,70,111,114,77,105,100,80,111,105,110,116,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,55,5,83,101,116,115,32,116,104,101,32,118,97,108,117,101,32,116, - 104,97,116,32,105,115,32,115,104,111,119,110,32,105,110,32,116,104,101,32,109,105,100,100,108,101,32,112,111,115,105,116,105,111,110,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,77,105,110,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,14, - 5,40,100,111,117,98,108,101,32,109,105,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,47,5,83,101,116,115,32,116,104,101,32,108,111,119,101,114,32,114,97,110,103,101,32,101,110,100,32,116,111,32,116,104,101,32,103,105,118,101, - 110,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,115,101,116,77,111,100,101,0,97,114,103,117, - 109,101,110,116,115,0,1,15,5,40,83,116,114,105,110,103,32,109,111,100,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,39,5,83,101,116,115,32,116,104,101,32,107,110,111,98,32,116,111,32,116,104,101,32,115,112,101,99,105,102, - 105,101,100,32,109,111,100,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110, - 0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32, - 104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104, - 101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0, - 1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32, - 74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,82,97,110,103,101, - 0,97,114,103,117,109,101,110,116,115,0,1,43,5,40,100,111,117,98,108,101,32,109,105,110,44,32,100,111,117,98,108,101,32,109,97,120,44,32,100, - 111,117,98,108,101,32,115,116,101,112,83,105,122,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105, - 111,110,0,1,48,5,83,101,116,115,32,116,104,101,32,114,97,110,103,101,32,97,110,100,32,116,104,101,32,115,116,101,112,32,115,105,122,101,32,111, - 102,32,116,104,101,32,107,110,111,98,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,83,116,121,108,101,0, - 97,114,103,117,109,101,110,116,115,0,1,16,5,40,83,116,114,105,110,103,32,115,116,121,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,83,101,116,115,32,116,104,101,32,115,116,121,108,101,32,75,110,111,98,44,32,72, - 111,114,105,122,111,110,116,97,108,44,32,86,101,114,116,105,99,97,108,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5, - 115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32, - 105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110, - 101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83, - 101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5, - 115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,100,111,117,98,108,101,32, - 110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,32,111,118,101,114,114,105,100,101,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, - 0,100,101,115,99,114,105,112,116,105,111,110,0,1,40,5,83,101,116,32,116,104,101,32,118,97,108,117,101,32,102,114,111,109,32,97,32,48,46,48, - 32,116,111,32,49,46,48,32,114,97,110,103,101,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,69,100,105,116,97,98,108,101,0,97,114,103,117,109,101,110,116,115,0, + 1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,69,100,105,116,97,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, + 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,109,97,107,101,115,32,97,32,108,97,98,101,108,32,96,101,100,105,116,97,98,108,101, + 96,46,32,62,32,84,104,105,115,32,105,115,32,97,32,116,101,115,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5, + 115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32, + 105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78, + 0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116, + 105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108, + 116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115, + 32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101, + 116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97, + 114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98, + 108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, + 105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32, + 114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101, + 116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117, + 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104, + 101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32, + 108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1, + 24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108, + 46,32,0,0,77,111,100,117,108,97,116,111,114,77,101,116,101,114,0,0,1,19,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97, + 100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111, + 73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100, + 115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101, + 114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0, + 97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101, + 32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32, + 116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32, + 105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80, + 111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105, + 110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32, + 121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5, + 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116, + 117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32, + 116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101, + 116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115,32,116,104, + 101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103, + 101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97, + 114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116, + 104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108,100, + 67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116,32, + 42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,97, + 32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0, + 97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118, + 97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115, + 32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108, + 111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111, + 117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71, + 44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116, + 67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111, + 108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54, + 5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108, + 108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116, + 105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105, + 110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115, + 32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100, + 0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110, + 116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109, + 32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,84,111, + 111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102,111,114, + 109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108, + 117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115,32,116, + 104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,97, + 108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111,114,109,97, + 108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101,32,48,46, + 48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101,87,105, + 116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110, + 116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32,68,111, + 110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111,108,32, + 115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99,114,105, + 112,116,84,97,98,108,101,0,0,1,21,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111, + 110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32, + 47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116, + 111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,99,111,110,110,101,99,116,84,111,79,116,104,101,114,84, + 97,98,108,101,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,32,83,116,114,105,110,103,32,105,100,44,32,105,110,116,32,105,110,100,101,120, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,111,110,110,101,99,116,115, + 32,116,104,101,32,116,97,98,108,101,32,116,111,32,97,110,32,101,120,105,115,116,105,110,103,32,80,114,111,99,101,115,115,111,114,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103, + 32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114, + 116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110, + 88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116, + 105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1, + 4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82, + 101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32, + 116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116, + 72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114, + 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116, + 104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,84,97,98,108, + 101,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,105,110,112,117,116,86,97,108,117,101,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,86,5,82,101,116,117,114,110,115, + 32,116,104,101,32,116,97,98,108,101,32,118,97,108,117,101,32,102,114,111,109,32,48,46,48,32,116,111,32,49,46,48,32,97,99,99,111,114,100,105, + 110,103,32,116,111,32,116,104,101,32,105,110,112,117,116,32,118,97,108,117,101,32,102,114,111,109,32,48,32,116,111,32,49,50,55,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41, + 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114, + 110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20, + 5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115, + 32,116,104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, + 10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6, + 5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111, + 102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104, + 105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101, + 110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105, + 115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115, + 101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97, + 114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83, + 101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116, + 67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99, + 111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32, + 40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5, + 115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110, + 116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32, + 99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111, + 115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119, + 44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83, + 101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117, + 109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, + 100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102, + 114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101, + 116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110, + 102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119, + 86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116, + 115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101, + 116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111, + 114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101, + 32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117, 101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101, 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114, 114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46, @@ -1351,7 +1564,7 @@ static const unsigned char temp1[] = {65,112,105,0,0,1,31,67,111,108,111,117,114 100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111, 111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, 105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83, - 99,114,105,112,116,76,97,98,101,108,0,0,1,20,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114, + 99,114,105,112,116,73,109,97,103,101,0,0,1,21,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114, 111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114, 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110, 111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32, @@ -1384,135 +1597,237 @@ static const unsigned char temp1[] = {65,112,105,0,0,1,31,67,111,108,111,117,114 111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116, 115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101, 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111, - 112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117, - 109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105, - 116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115, - 32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73, - 84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67, - 97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111, - 110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32, - 105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118, - 101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,69,100,105,116,97,98,108,101,0,97,114,103,117, - 109,101,110,116,115,0,1,25,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,69,100,105,116,97,98,108,101,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,109,97,107,101,115,32,97,32,108,97,98,101,108,32,96,101,100, - 105,116,97,98,108,101,96,46,32,62,32,84,104,105,115,32,105,115,32,97,32,116,101,115,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105, - 110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111, - 110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114, - 111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112, - 114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110, - 103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43, - 5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114, - 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0, - 1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26, - 5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, - 0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102, - 114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110, - 101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83, - 101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101, - 32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114, - 111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109, - 101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99, - 111,110,116,114,111,108,46,32,0,0,77,111,100,117,108,97,116,111,114,77,101,116,101,114,0,0,1,19,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116, - 32,109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110, - 116,114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114, - 110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4, - 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101, - 116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116, - 111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71, - 108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115, - 111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97, - 99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110, - 116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4, - 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101, - 116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117, - 114,110,115,32,116,104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116, - 104,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105, - 115,67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112, - 111,110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111, - 108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110, - 116,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44, - 32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5, - 115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110, - 116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101, - 110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32, - 99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116, - 111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101, - 116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110, - 116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0, - 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97, - 114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101, - 115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12, - 5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105, - 112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97, - 32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32, - 110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5, - 83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20, - 5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101, - 32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97, - 110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86, - 97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32, - 99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105, - 115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5, - 40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32, - 0,0,83,99,114,105,112,116,84,97,98,108,101,0,0,1,21,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77, - 97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101, - 32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114, - 111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,21,5,99,111,110,110,101,99,116,84,111, - 79,116,104,101,114,84,97,98,108,101,0,97,114,103,117,109,101,110,116,115,0,1,25,5,40,32,83,116,114,105,110,103,32,105,100,44,32,105,110,116, - 32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,111, - 110,110,101,99,116,115,32,116,104,101,32,116,97,98,108,101,32,116,111,32,97,110,32,101,120,105,115,116,105,110,103,32,80,114,111,99,101,115,115,111, - 114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40, - 83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32, - 112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111, - 115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110, - 116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120, + 112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,65,108,112,104,97,0,97,114,103,117,109, + 101,110,116,115,0,1,23,5,40,102,108,111,97,116,32,110,101,119,65,108,112,104,97,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,71,5,83,101,116,115,32,116,104,101,32,116,114,97,110,115,112,97,114,101,110,99, + 121,32,40,48,46,48,32,61,32,102,117,108,108,32,116,114,97,110,115,112,97,114,101,110,99,121,44,32,49,46,48,32,61,32,102,117,108,108,32,111, + 112,97,99,105,116,121,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114, + 103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50, + 98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101, + 116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44, + 32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111, + 108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116, + 105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32, + 97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32, + 101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,73,109,97,103,101,70,105,108,101,0,97, + 114,103,117,109,101,110,116,115,0,1,51,5,40,32,83,116,114,105,110,103,32,97,98,115,111,108,117,116,101,70,105,108,101,78,97,109,101,44,32,98, + 111,111,108,32,102,111,114,99,101,85,115,101,82,101,97,108,70,105,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,45,5,83,101,116,115,32,116,104,101,32,105,109,97,103,101,32,102,105,108,101,32,116,104,97,116,32,119,105,108, + 108,32,98,101,32,100,105,115,112,108,97,121,101,100,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115, + 105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44, + 32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101, + 116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109, + 101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114, + 111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116, + 84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102, + 111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1, + 4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86, + 97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115, + 32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116, + 86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111,114, + 109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, + 0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101,32, + 48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101, + 87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114, + 101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32, + 68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100, + 0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111, + 108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99, + 114,105,112,116,80,97,110,101,108,0,0,1,26,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84,111,77,97,99,114,111, + 67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100,101,120,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116,104,101,32,107,110,111, + 98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40,102,114,111,109,32,48, + 32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,99,104,97,110,103,101,100,0,97,114,103,117,109, + 101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,93, + 5,67,97,108,108,32,116,104,105,115,32,116,111,32,105,110,100,105,99,97,116,101,32,116,104,97,116,32,116,104,101,32,118,97,108,117,101,32,104,97, + 115,32,99,104,97,110,103,101,100,32,40,116,104,101,32,111,110,67,111,110,116,114,111,108,32,99,97,108,108,98,97,99,107,32,119,105,108,108,32,98, + 101,32,101,120,101,99,117,116,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109, + 101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117, + 101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101, + 116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97, + 98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114, + 102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105, + 111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100, + 101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115, + 105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32, + 116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99, + 117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,86,97,108,117, + 101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115,32,116,104,101,32,110,111,114, + 109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100, + 116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101, + 115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111, + 109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111, + 110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108, + 100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108, + 100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,108,111,97,100,73,109,97,103,101, + 0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,83,116,114,105,110,103,32,105,109,97,103,101,78,97,109,101,44,32,83,116,114,105,110,103,32, + 112,114,101,116,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 69,5,76,111,97,100,115,32,97,32,105,109,97,103,101,32,119,104,105,99,104,32,99,97,110,32,98,101,32,100,114,97,119,110,32,119,105,116,104,32, + 116,104,101,32,112,97,105,110,116,32,102,117,110,99,116,105,111,110,32,108,97,116,101,114,32,111,110,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,9,5,114,101,112,97,105,110,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,22,5,84,114,105,103,103,101,114,115,32,97,32,114,101,112,97,105,110,116, + 46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83, + 116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1, + 38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114, + 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111, + 108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84, + 41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107, + 0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32, + 102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,115,101,116,68,114,97,103,103,105,110,103,66,111,117,110,100,115,0,97,114,103,117,109, + 101,110,116,115,0,1,12,5,40,118,97,114,32,97,114,101,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,97,5,73,102,32,96,97,108,108,111,119,101,100,68,114,97,103,103,105,110,103,96,32,105,115,32,101,110,97,98,108,101,100, + 44,32,105,116,32,119,105,108,108,32,100,101,102,105,110,101,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,32,119,104,101,114,101,32,116,104, + 101,32,112,97,110,101,108,32,99,97,110,32,98,101,32,100,114,97,103,103,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,18,5,115,101,116,77,111,117,115,101,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,29,5,40,118,97,114,32,109,111, + 117,115,101,67,97,108,108,98,97,99,107,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, + 114,105,112,116,105,111,110,0,1,25,5,83,101,116,115,32,97,32,109,111,117,115,101,32,99,97,108,108,98,97,99,107,46,32,0,0,109,101,116,104, + 111,100,0,1,4,110,97,109,101,0,1,17,5,115,101,116,80,97,105,110,116,82,111,117,116,105,110,101,0,97,114,103,117,109,101,110,116,115,0,1, + 21,5,40,118,97,114,32,112,97,105,110,116,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,56,5,83,101,116,115,32,97,32,112,97,105,110,116,32,114,111,117,116,105,110,101,32,40,97,32,102,117,110,99, + 116,105,111,110,32,119,105,116,104,32,111,110,101,32,112,97,114,97,109,101,116,101,114,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110, + 116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110, + 101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111, + 109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114, + 110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114, + 111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,18,5,115,101,116,84,105,109,101,114,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,21,5,40,118, + 97,114,32,116,105,109,101,114,67,97,108,108,98,97,99,107,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, + 116,105,111,110,0,1,25,5,83,101,116,115,32,97,32,116,105,109,101,114,32,99,97,108,108,98,97,99,107,46,32,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105, + 110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101, + 114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115, + 0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0, + 1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1, + 26,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, + 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32, + 102,114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, + 101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32, + 110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5, + 83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104, + 101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116, + 114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117, + 109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121, + 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32, + 99,111,110,116,114,111,108,46,32,0,0,83,99,114,105,112,116,101,100,80,108,111,116,116,101,114,0,0,1,21,109,101,116,104,111,100,0,1,4,110, + 97,109,101,0,1,23,5,97,100,100,77,111,100,117,108,97,116,111,114,84,111,80,108,111,116,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1, + 46,5,40,83,116,114,105,110,103,32,112,114,111,99,101,115,115,111,114,78,97,109,101,44,32,83,116,114,105,110,103,32,109,111,100,117,108,97,116,111, + 114,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,83,101,97, + 114,99,104,101,115,32,97,32,112,114,111,99,101,115,115,111,114,32,97,110,100,32,97,100,100,115,32,116,104,101,32,109,111,100,117,108,97,116,111,114, + 32,116,111,32,116,104,101,32,112,108,111,116,116,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84, + 111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100, + 101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116, + 104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40, + 102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,99,108,101,97,114,77,111, + 100,117,108,97,116,111,114,80,108,111,116,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, + 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,109,111,118,101,115,32,97,108,108,32,109,111,100,117,108,97,116, + 111,114,115,32,102,114,111,109,32,116,104,101,32,112,108,111,116,116,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5, + 5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110, + 115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4, + 110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5, + 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116, + 117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111, + 32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108, + 111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101, + 0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111, + 108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99, + 101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116, + 115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, + 39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0, + 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5, + 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116, + 117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, + 1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, + 116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114, + 110,115,32,116,104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, + 0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, + 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104, + 32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115, + 67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111, + 110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108, + 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116, + 32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5, + 5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32, + 118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21, + 5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115, + 101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116, + 32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, + 112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110, + 116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, + 20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99, + 111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105, + 111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111, + 109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116, + 80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116, + 32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38, + 5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114, + 103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, + 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115, + 32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5, + 115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32, + 105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110, + 101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83, + 101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5, + 115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32, + 110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, + 105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110, + 103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97, + 108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0, + 114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99, + 117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115, + 116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40, + 98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, + 99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0, + 0,83,99,114,105,112,116,83,108,105,100,101,114,80,97,99,107,0,0,1,23,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100, + 100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73, + 110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115, + 32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114, + 32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97, + 114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110, + 84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32, + 118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, + 20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, + 117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116, + 104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105, + 110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111, + 115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110, + 116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121, 45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109, - 101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108, - 97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0, - 1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104, - 116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103, - 101,116,84,97,98,108,101,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,105,110,112,117,116,86,97,108,117, - 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,8,5,102,108,111,97,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,86,5,82, - 101,116,117,114,110,115,32,116,104,101,32,116,97,98,108,101,32,118,97,108,117,101,32,102,114,111,109,32,48,46,48,32,116,111,32,49,46,48,32,97, - 99,99,111,114,100,105,110,103,32,116,111,32,116,104,101,32,105,110,112,117,116,32,118,97,108,117,101,32,102,114,111,109,32,48,32,116,111,32,49,50, - 55,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117, + 114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111, + 100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,78,117,109,83,108,105,100,101,114,115,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40, + 41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,33,5,82,101,116,117, + 114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,115,108,105,100,101,114,115,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, + 109,101,0,1,18,5,103,101,116,83,108,105,100,101,114,86,97,108,117,101,65,116,0,97,114,103,117,109,101,110,116,115,0,1,13,5,40,105,110,116, + 32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111, + 110,0,1,40,5,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,97,116,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101, + 120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115, 0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29, 5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110, 97,109,101,0,1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40, @@ -1528,21 +1843,28 @@ static const unsigned char temp1[] = {65,112,105,0,0,1,31,67,111,108,111,117,114 101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97, 109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, 110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44, - 32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112, - 111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118, - 97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99, - 117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13, - 5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44, - 32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46, - 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79, - 78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114, - 116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, + 1,14,5,115,101,116,65,108,108,86,97,108,117,101,115,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,100,111,117,98,108,101,32,118,97,108, + 117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,83,101,116,115,32,97, + 108,108,32,115,108,105,100,101,114,32,118,97,108,117,101,115,32,116,111,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117,101,46,32,0,0,109, + 101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40, + 105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117, + 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117, + 114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32, + 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114, + 103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110, + 99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116, + 104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40, + 105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1, + 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116, + 104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112, + 101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97, + 116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114, + 101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0, + 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,83,108,105,100,101,114,65,116,73,110,100,101,120,0,97,114,103,117,109,101, + 110,116,115,0,1,27,5,40,105,110,116,32,105,110,100,101,120,44,32,100,111,117,98,108,101,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84, + 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,115,101,116,115,32,116,104,101,32,115,108,105,100,101,114,32,118, + 97,108,117,101,32,97,116,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, 0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111, 108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119, 115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109, @@ -1560,324 +1882,6 @@ static const unsigned char temp1[] = {65,112,105,0,0,1,31,67,111,108,111,117,114 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0, 1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5, 0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111, - 108,46,32,0,0,83,99,114,105,112,116,73,109,97,103,101,0,0,1,21,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100, - 84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110, - 100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32, - 116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32, - 40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116,0,97,114, - 103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104,101,32,118, - 97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20, - 5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104, - 101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110, - 116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115, - 105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116, - 32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,121,45, - 112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101,116,117,114, - 110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104, - 101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,86, - 97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112, - 101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115,32,116,104,101,32, - 110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116, - 87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32, - 0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101, - 32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108,100,67,111, - 109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116,32,42,99, - 104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32,97,32,99, - 104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114, - 103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108, - 117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116, - 104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,65,108,112,104,97, - 0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,102,108,111,97,116,32,110,101,119,65,108,112,104,97,86,97,108,117,101,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,71,5,83,101,116,115,32,116,104,101,32,116,114,97,110,115, - 112,97,114,101,110,99,121,32,40,48,46,48,32,61,32,102,117,108,108,32,116,114,97,110,115,112,97,114,101,110,99,121,44,32,49,46,48,32,61,32, - 102,117,108,108,32,111,112,97,99,105,116,121,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108, - 111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111, - 117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71, - 44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116, - 67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111, - 108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54, - 5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108, - 108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,14,5,115,101,116,73,109,97,103,101, - 70,105,108,101,0,97,114,103,117,109,101,110,116,115,0,1,51,5,40,32,83,116,114,105,110,103,32,97,98,115,111,108,117,116,101,70,105,108,101,78, - 97,109,101,44,32,98,111,111,108,32,102,111,114,99,101,85,115,101,82,101,97,108,70,105,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5,83,101,116,115,32,116,104,101,32,105,109,97,103,101,32,102,105,108,101,32,116,104, - 97,116,32,119,105,108,108,32,98,101,32,100,105,115,112,108,97,121,101,100,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5, - 115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32, - 105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110, - 0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78, - 0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116, - 105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116,111,111,108, - 116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104,111,119,115, - 32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0,0,109,101, - 116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97, - 114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100,111,117,98, - 108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114, - 105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109,32,97,32, - 114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101, - 116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117, - 101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115,32,116,104, - 101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110,100,111,32, - 108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33,32,0,0, - 109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1, - 24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116,114,111,108, - 46,32,0,0,83,99,114,105,112,116,80,97,110,101,108,0,0,1,26,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,97,100,100,84, - 111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97,99,114,111,73,110,100, - 101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5,65,100,100,115,32,116, - 104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111,108,108,101,114,32,40, - 102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,9,5,99,104,97,110,103,101,100, - 0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,93,5,67,97,108,108,32,116,104,105,115,32,116,111,32,105,110,100,105,99,97,116,101,32,116,104,97,116,32,116,104,101,32,118,97, - 108,117,101,32,104,97,115,32,99,104,97,110,103,101,100,32,40,116,104,101,32,111,110,67,111,110,116,114,111,108,32,99,97,108,108,98,97,99,107,32, - 119,105,108,108,32,98,101,32,101,120,101,99,117,116,101,100,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,103,101,116, - 0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110,115,32,116,104, - 101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115, - 32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101, - 32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108, - 80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5, - 105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101, - 32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116,115,0,1,4, - 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,39,5,82,101, - 116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,82,101,116,117,114,110,115, - 32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103, - 101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32,5,82,101,116,117,114,110,115,32,116, - 104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5, - 103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118, - 97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101,32,119,105,100,116,104,32,111,102,32, - 116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,105,115,67,104,105,108, - 100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112,116,67,111,109,112,111,110,101,110,116, - 32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1,7,5,98,111,111,108,32,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,105,115,32, - 97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,108,111,97, - 100,73,109,97,103,101,0,97,114,103,117,109,101,110,116,115,0,1,39,5,40,83,116,114,105,110,103,32,105,109,97,103,101,78,97,109,101,44,32,83, - 116,114,105,110,103,32,112,114,101,116,116,121,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,69,5,76,111,97,100,115,32,97,32,105,109,97,103,101,32,119,104,105,99,104,32,99,97,110,32,98,101,32,100,114,97,119,110, - 32,119,105,116,104,32,116,104,101,32,112,97,105,110,116,32,102,117,110,99,116,105,111,110,32,108,97,116,101,114,32,111,110,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,9,5,114,101,112,97,105,110,116,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,22,5,84,114,105,103,103,101,114,115,32,97,32,114, - 101,112,97,105,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115, - 0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112, - 101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109, - 101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116, - 72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32, - 116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84, - 50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97, - 108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105, - 110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101, - 110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,19,5,115,101,116,68,114,97,103,103,105,110,103,66,111,117,110,100,115, - 0,97,114,103,117,109,101,110,116,115,0,1,12,5,40,118,97,114,32,97,114,101,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,97,5,73,102,32,96,97,108,108,111,119,101,100,68,114,97,103,103,105,110,103,96,32,105,115,32,101, - 110,97,98,108,101,100,44,32,105,116,32,119,105,108,108,32,100,101,102,105,110,101,32,116,104,101,32,98,111,117,110,100,97,114,105,101,115,32,119,104, - 101,114,101,32,116,104,101,32,112,97,110,101,108,32,99,97,110,32,98,101,32,100,114,97,103,103,101,100,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,18,5,115,101,116,77,111,117,115,101,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,29,5,40, - 118,97,114,32,109,111,117,115,101,67,97,108,108,98,97,99,107,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, - 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,25,5,83,101,116,115,32,97,32,109,111,117,115,101,32,99,97,108,108,98,97,99,107,46,32, - 0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,17,5,115,101,116,80,97,105,110,116,82,111,117,116,105,110,101,0,97,114,103,117,109, - 101,110,116,115,0,1,21,5,40,118,97,114,32,112,97,105,110,116,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,83,101,116,115,32,97,32,112,97,105,110,116,32,114,111,117,116,105,110,101,32,40, - 97,32,102,117,110,99,116,105,111,110,32,119,105,116,104,32,111,110,101,32,112,97,114,97,109,101,116,101,114,41,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116, - 32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32, - 99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116, - 105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41, - 0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32, - 97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,84,105,109,101,114,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115, - 0,1,21,5,40,118,97,114,32,116,105,109,101,114,67,97,108,108,98,97,99,107,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100, - 101,115,99,114,105,112,116,105,111,110,0,1,25,5,83,101,116,115,32,97,32,116,105,109,101,114,32,99,97,108,108,98,97,99,107,46,32,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5, - 40,32,83,116,114,105,110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115, - 101,32,104,111,118,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103, - 117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109, - 101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109, - 101,110,116,115,0,1,26,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32, - 118,97,108,117,101,32,102,114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16, - 5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105, - 111,110,0,1,87,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116, - 32,116,111,32,116,104,101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32, - 111,110,67,111,110,116,114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111, - 108,0,97,114,103,117,109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101, - 116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119, - 115,32,116,104,101,32,99,111,110,116,114,111,108,46,32,0,0,83,99,114,105,112,116,101,100,80,108,111,116,116,101,114,0,0,1,21,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,23,5,97,100,100,77,111,100,117,108,97,116,111,114,84,111,80,108,111,116,116,101,114,0,97,114,103,117,109, - 101,110,116,115,0,1,46,5,40,83,116,114,105,110,103,32,112,114,111,99,101,115,115,111,114,78,97,109,101,44,32,83,116,114,105,110,103,32,109,111, - 100,117,108,97,116,111,114,78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,62,5,83,101,97,114,99,104,101,115,32,97,32,112,114,111,99,101,115,115,111,114,32,97,110,100,32,97,100,100,115,32,116,104,101,32,109,111,100, - 117,108,97,116,111,114,32,116,111,32,116,104,101,32,112,108,111,116,116,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1, - 19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32,109,97, - 99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,62,5, - 65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116,114,111, - 108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,99, - 108,101,97,114,77,111,100,117,108,97,116,111,114,80,108,111,116,116,101,114,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116, - 117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,82,101,109,111,118,101,115,32,97,108,108,32,109, - 111,100,117,108,97,116,111,114,115,32,102,114,111,109,32,116,104,101,32,112,108,111,116,116,101,114,46,32,0,0,109,101,116,104,111,100,0,1,4,110, - 97,109,101,0,1,5,5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121, - 78,97,109,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5, - 114,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110, - 116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116, - 105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20, - 5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117, - 114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104, - 101,32,97,98,115,111,108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110, - 116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114, - 103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112, - 116,105,111,110,0,1,39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110, - 101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110, - 116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0, - 1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,4, - 5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,32, - 5,82,101,116,117,114,110,115,32,116,104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114, - 110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115,32,116,104,101, - 32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83,99,114,105,112, - 116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101,32,99,111,109, - 112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100,0,1,4,110, - 97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121, - 78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116,115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73, - 100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0, - 100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101,32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111, - 109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32,84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98,97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5, - 40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115, - 99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105,110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97, - 32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0, - 1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116,115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32, - 121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111,110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110, - 116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115,101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74, - 83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32,106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84, - 121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5,82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112, - 101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101,99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105,110,103,32,116, - 111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,43,5,83,104, - 111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101,114,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115,0,1,16,5, - 40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0,1,4,110,97, - 109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1,26,5,40,100, - 111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101, - 115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,102,114,111,109, - 32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18, - 5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32,110,101,119,86, - 97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5,83,101,116,115, - 32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104,101,32,117,110, - 100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116,114,111,108,33, - 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116, - 115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1, - 2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32,99,111,110,116, - 114,111,108,46,32,0,0,83,99,114,105,112,116,83,108,105,100,101,114,80,97,99,107,0,0,1,23,109,101,116,104,111,100,0,1,4,110,97,109,101, - 0,1,19,5,97,100,100,84,111,77,97,99,114,111,67,111,110,116,114,111,108,0,97,114,103,117,109,101,110,116,115,0,1,18,5,40,105,110,116,32, - 109,97,99,114,111,73,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 62,5,65,100,100,115,32,116,104,101,32,107,110,111,98,32,47,32,98,117,116,116,111,110,32,116,111,32,97,32,109,97,99,114,111,32,99,111,110,116, - 114,111,108,108,101,114,32,40,102,114,111,109,32,48,32,116,111,32,55,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,5, - 5,103,101,116,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,83,116,114,105,110,103,32,112,114,111,112,101,114,116,121,78,97,109,101,41,0, - 114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,37,5,114,101,116,117,114,110, - 115,32,116,104,101,32,118,97,108,117,101,32,111,102,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,20,5,103,101,116,71,108,111,98,97,108,80,111,115,105,116,105,111,110,88,0,97,114,103,117,109,101,110,116,115,0,1,4,5, - 40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116, - 117,114,110,115,32,116,104,101,32,97,98,115,111,108,117,116,101,32,120,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111, - 32,116,104,101,32,105,110,116,101,114,102,97,99,101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,71,108, - 111,98,97,108,80,111,115,105,116,105,111,110,89,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101, - 0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,61,5,82,101,116,117,114,110,115,32,116,104,101,32,97,98,115,111, - 108,117,116,101,32,121,45,112,111,115,105,116,105,111,110,32,114,101,108,97,116,105,118,101,32,116,111,32,116,104,101,32,105,110,116,101,114,102,97,99, - 101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,103,101,116,72,101,105,103,104,116,0,97,114,103,117,109,101,110,116, - 115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 39,5,82,101,116,117,114,110,115,32,116,104,101,32,104,101,105,103,104,116,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0, - 0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,15,5,103,101,116,78,117,109,83,108,105,100,101,114,115,0,97,114,103,117,109,101,110,116, - 115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,105,110,116,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 33,5,82,101,116,117,114,110,115,32,116,104,101,32,110,117,109,98,101,114,32,111,102,32,115,108,105,100,101,114,115,46,32,0,0,109,101,116,104,111, - 100,0,1,4,110,97,109,101,0,1,18,5,103,101,116,83,108,105,100,101,114,86,97,108,117,101,65,116,0,97,114,103,117,109,101,110,116,115,0,1, - 13,5,40,105,110,116,32,105,110,100,101,120,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,40,5,82,101,116,117,114,110,115,32,116,104,101,32,118,97,108,117,101,32,97,116,32,116,104,101,32,103,105,118,101, - 110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,86,97,108,117,101,0,97,114,103, - 117,109,101,110,116,115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116, - 105,111,110,0,1,29,5,82,101,116,117,114,110,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,46,32,0,0,109,101,116,104, - 111,100,0,1,4,110,97,109,101,0,1,20,5,103,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116, - 115,0,1,4,5,40,41,0,114,101,116,117,114,110,84,121,112,101,0,1,9,5,100,111,117,98,108,101,32,0,100,101,115,99,114,105,112,116,105,111, - 110,0,1,32,5,82,101,116,117,114,110,115,32,116,104,101,32,110,111,114,109,97,108,105,122,101,100,32,118,97,108,117,101,46,32,0,0,109,101,116, - 104,111,100,0,1,4,110,97,109,101,0,1,10,5,103,101,116,87,105,100,116,104,0,97,114,103,117,109,101,110,116,115,0,1,4,5,40,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,6,5,118,97,114,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,82,101,116,117,114,110,115, - 32,116,104,101,32,119,105,100,116,104,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4, - 110,97,109,101,0,1,18,5,105,115,67,104,105,108,100,67,111,109,112,111,110,101,110,116,0,97,114,103,117,109,101,110,116,115,0,1,35,5,40,83, - 99,114,105,112,116,67,111,109,112,111,110,101,110,116,32,42,99,104,105,108,100,67,111,109,112,111,110,101,110,116,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,7,5,98,111,111,108,32,0,100,101,115,99,114,105,112,116,105,111,110,0,1,47,5,67,104,101,99,107,115,32,105,102,32,116,104,101, - 32,99,111,109,112,111,110,101,110,116,32,105,115,32,97,32,99,104,105,108,100,32,99,111,109,112,111,110,101,110,116,46,0,0,109,101,116,104,111,100, - 0,1,4,110,97,109,101,0,1,5,5,115,101,116,0,97,114,103,117,109,101,110,116,115,0,1,34,5,40,83,116,114,105,110,103,32,112,114,111,112, - 101,114,116,121,78,97,109,101,44,32,118,97,114,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99, - 114,105,112,116,105,111,110,0,1,21,5,83,101,116,115,32,116,104,101,32,112,114,111,112,101,114,116,121,46,32,0,0,109,101,116,104,111,100,0,1, - 4,110,97,109,101,0,1,14,5,115,101,116,65,108,108,86,97,108,117,101,115,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,100,111,117,98, - 108,101,32,118,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,45,5, - 83,101,116,115,32,97,108,108,32,115,108,105,100,101,114,32,118,97,108,117,101,115,32,116,111,32,116,104,101,32,103,105,118,101,110,32,118,97,108,117, - 101,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,11,5,115,101,116,67,111,108,111,117,114,0,97,114,103,117,109,101,110,116, - 115,0,1,38,5,40,105,110,116,32,99,111,108,111,117,114,73,100,44,32,105,110,116,32,99,111,108,111,117,114,65,115,51,50,98,105,116,72,101,120, - 41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,56,5,115,101,116,115,32,116,104,101, - 32,99,111,108,111,117,114,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,32,40,66,71,44,32,73,84,49,44,32,73,84,50,44,32, - 84,88,84,41,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,20,5,115,101,116,67,111,110,116,114,111,108,67,97,108,108,98, - 97,99,107,0,97,114,103,117,109,101,110,116,115,0,1,23,5,40,118,97,114,32,99,111,110,116,114,111,108,70,117,110,99,116,105,111,110,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,54,5,80,97,115,115,32,97,32,105,110,108,105, - 110,101,32,102,117,110,99,116,105,111,110,32,102,111,114,32,97,32,99,117,115,116,111,109,32,99,97,108,108,98,97,99,107,32,101,118,101,110,116,46, - 32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,101,116,80,111,115,105,116,105,111,110,0,97,114,103,117,109,101,110,116, - 115,0,1,30,5,40,105,110,116,32,120,44,32,105,110,116,32,121,44,32,105,110,116,32,119,44,32,105,110,116,32,104,41,0,114,101,116,117,114,110, - 84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,38,5,83,101,116,115,32,116,104,101,32,112,111,115,105,116,105,111, - 110,32,111,102,32,116,104,101,32,99,111,109,112,111,110,101,110,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,23,5,115, - 101,116,80,114,111,112,101,114,116,105,101,115,70,114,111,109,74,83,79,78,0,97,114,103,117,109,101,110,116,115,0,1,17,5,40,32,118,97,114,32, - 106,115,111,110,68,97,116,97,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,46,5, - 82,101,115,116,111,114,101,115,32,97,108,108,32,112,114,111,112,101,114,116,105,101,115,32,102,114,111,109,32,97,32,74,83,79,78,32,111,98,106,101, - 99,116,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,18,5,115,101,116,83,108,105,100,101,114,65,116,73,110,100,101,120,0, - 97,114,103,117,109,101,110,116,115,0,1,27,5,40,105,110,116,32,105,110,100,101,120,44,32,100,111,117,98,108,101,32,118,97,108,117,101,41,0,114, - 101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,44,5,115,101,116,115,32,116,104,101,32,115,108, - 105,100,101,114,32,118,97,108,117,101,32,97,116,32,116,104,101,32,103,105,118,101,110,32,105,110,100,101,120,46,32,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,12,5,115,101,116,84,111,111,108,116,105,112,0,97,114,103,117,109,101,110,116,115,0,1,19,5,40,32,83,116,114,105, - 110,103,32,116,111,111,108,116,105,112,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1, - 43,5,83,104,111,119,115,32,97,32,105,110,102,111,114,109,97,116,105,118,101,32,116,101,120,116,32,111,110,32,109,111,117,115,101,32,104,111,118,101, - 114,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,10,5,115,101,116,86,97,108,117,101,0,97,114,103,117,109,101,110,116,115, - 0,1,16,5,40,118,97,114,32,110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105, - 112,116,105,111,110,0,1,24,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,0,0,109,101,116,104,111,100,0, - 1,4,110,97,109,101,0,1,20,5,115,101,116,86,97,108,117,101,78,111,114,109,97,108,105,122,101,100,0,97,114,103,117,109,101,110,116,115,0,1, - 26,5,40,100,111,117,98,108,101,32,110,111,114,109,97,108,105,122,101,100,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2, - 5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,51,5,83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32, - 102,114,111,109,32,97,32,114,97,110,103,101,32,48,46,48,32,46,46,46,32,49,46,48,46,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109, - 101,0,1,18,5,115,101,116,86,97,108,117,101,87,105,116,104,85,110,100,111,0,97,114,103,117,109,101,110,116,115,0,1,16,5,40,118,97,114,32, - 110,101,119,86,97,108,117,101,41,0,114,101,116,117,114,110,84,121,112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,87,5, - 83,101,116,115,32,116,104,101,32,99,117,114,114,101,110,116,32,118,97,108,117,101,32,97,110,100,32,97,100,100,115,32,105,116,32,116,111,32,116,104, - 101,32,117,110,100,111,32,108,105,115,116,46,32,68,111,110,39,116,32,99,97,108,108,32,116,104,105,115,32,102,114,111,109,32,111,110,67,111,110,116, - 114,111,108,33,32,0,0,109,101,116,104,111,100,0,1,4,110,97,109,101,0,1,13,5,115,104,111,119,67,111,110,116,114,111,108,0,97,114,103,117, - 109,101,110,116,115,0,1,24,5,40,98,111,111,108,32,115,104,111,117,108,100,66,101,86,105,115,105,98,108,101,41,0,114,101,116,117,114,110,84,121, - 112,101,0,1,2,5,0,100,101,115,99,114,105,112,116,105,111,110,0,1,29,5,72,105,100,101,115,32,47,32,83,104,111,119,115,32,116,104,101,32, - 99,111,110,116,114,111,108,46,32,0,0,0,0}; + 108,46,32,0,0,0,0}; const char* XmlApi::apivaluetree_dat = (const char*) temp1; diff --git a/hi_scripting/scripting/api/XmlApi.h b/hi_scripting/scripting/api/XmlApi.h index 8115fd8fc..5ad3be42e 100644 --- a/hi_scripting/scripting/api/XmlApi.h +++ b/hi_scripting/scripting/api/XmlApi.h @@ -6,7 +6,7 @@ namespace XmlApi { extern const char* apivaluetree_dat; - const int apivaluetree_datSize = 75051; + const int apivaluetree_datSize = 75205; } diff --git a/hi_scripting/scripting/components/ScriptingContentComponent.cpp b/hi_scripting/scripting/components/ScriptingContentComponent.cpp index de5441cc6..6bea2b990 100644 --- a/hi_scripting/scripting/components/ScriptingContentComponent.cpp +++ b/hi_scripting/scripting/components/ScriptingContentComponent.cpp @@ -244,7 +244,11 @@ void ScriptContentComponent::updateComponent(int i) if (localBounds != currentPosition) { - componentWrappers[i]->getComponent()->setBounds(contentData->components[i]->getPosition()); + const bool isInViewport = dynamic_cast(componentWrappers[i]->getComponent()->getParentComponent()); + const bool sizeChanged = localBounds.getWidth() != currentPosition.getWidth() || localBounds.getHeight() != currentPosition.getHeight(); + + if (!isInViewport || sizeChanged) + componentWrappers[i]->getComponent()->setBounds(contentData->components[i]->getPosition()); } componentWrappers[i]->updateComponent(); @@ -326,7 +330,14 @@ void ScriptContentComponent::setNewContent(ScriptingApi::Content *c) if (parentComponentOfSc != nullptr) { - parentComponentOfSc->addAndMakeVisible(componentWrappers.getLast()->getComponent()); + if (auto vp = dynamic_cast(parentComponentOfSc)) + { + vp->setViewedComponent(componentWrappers.getLast()->getComponent(), false); + } + else + { + parentComponentOfSc->addAndMakeVisible(componentWrappers.getLast()->getComponent()); + } } } else diff --git a/hi_scripting/scripting/components/ScriptingContentOverlay.cpp b/hi_scripting/scripting/components/ScriptingContentOverlay.cpp index dcc18a256..d451e6aee 100644 --- a/hi_scripting/scripting/components/ScriptingContentOverlay.cpp +++ b/hi_scripting/scripting/components/ScriptingContentOverlay.cpp @@ -59,6 +59,7 @@ void ScriptEditHandler::createNewComponent(Widgets componentType, int x, int y) case Widgets::ComboBox: widgetType = "ComboBox"; break; case Widgets::Label: widgetType = "Label"; break; case Widgets::Image: widgetType = "Image"; break; + case Widgets::Viewport: widgetType = "Viewport"; break; case Widgets::Plotter: widgetType = "Plotter"; break; case Widgets::ModulatorMeter: widgetType = "ModulatorMeter"; break; case Widgets::Panel: widgetType = "Panel"; break; @@ -912,15 +913,47 @@ void ScriptingContentOverlay::mouseDown(const MouseEvent& e) if (e.mods.isLeftButtonDown() && parentHandler->editModeEnabled()) { - ScriptingApi::Content::ScriptComponent *sc = content->getScriptComponentFor(e.getEventRelativeTo(content).getPosition()); + Array components; + + parentHandler->getScriptEditHandlerContent()->getScriptComponentsFor(components, e.getEventRelativeTo(content).getPosition()); auto mc = dynamic_cast(parentHandler->getScriptEditHandlerProcessor())->getMainController(); - mc->setEditedScriptComponent(sc, parentHandler->getAsComponent()); + if (components.size > 1) + { + PopupMenu m; + ScopedPointer luf = new PopupLookAndFeel(); + m.setLookAndFeel(luf); + + m.addSectionHeader("Choose Control to Edit"); + for (int i = 0; i < components.size(); i++) + { + auto name = components[i]->getName().toString(); + + if (!components[i]->getScriptObjectProperty(ScriptingApi::Content::ScriptComponent::Properties::visible)) + name << " (Hidden)"; + + m.addItem(i + 1, name); - auto root = findParentComponentOfClass()->getRootFloatingTile(); + const int result = m.show(); - BackendPanelHelpers::toggleVisibilityForRightColumnPanel>(root, sc != nullptr); + if (result > 0) + { + auto sc = components[result - 1]; + mc->setEditedScriptComponent(sc, parentHandler->getAsComponent()); + auto root = findParentComponentOfClass()->getRootFloatingTile(); + BackendPanelHelpers::toggleVisibilityForRightColumnPanel>(root, sc != nullptr); + } + } + + } + else + { + ScriptingApi::Content::ScriptComponent *sc = content->getScriptComponentFor(e.getEventRelativeTo(content).getPosition()); + mc->setEditedScriptComponent(sc, parentHandler->getAsComponent()); + auto root = findParentComponentOfClass()->getRootFloatingTile(); + BackendPanelHelpers::toggleVisibilityForRightColumnPanel>(root, sc != nullptr); + } } if (e.mods.isRightButtonDown()) @@ -950,6 +983,7 @@ void ScriptingContentOverlay::mouseDown(const MouseEvent& e) m.addItem((int)ScriptEditHandler::Widgets::ComboBox, "Add new ComboBox"); m.addItem((int)ScriptEditHandler::Widgets::Label, "Add new Label"); m.addItem((int)ScriptEditHandler::Widgets::Image, "Add new Image"); + m.addItem((int)ScriptEditHandler::Widgets::Viewport, "Add new Viewport"); m.addItem((int)ScriptEditHandler::Widgets::Plotter, "Add new Plotter"); m.addItem((int)ScriptEditHandler::Widgets::ModulatorMeter, "Add new ModulatorMeter"); m.addItem((int)ScriptEditHandler::Widgets::Panel, "Add new Panel"); diff --git a/hi_scripting/scripting/components/ScriptingContentOverlay.h b/hi_scripting/scripting/components/ScriptingContentOverlay.h index 3b5a9c428..2ecda725f 100644 --- a/hi_scripting/scripting/components/ScriptingContentOverlay.h +++ b/hi_scripting/scripting/components/ScriptingContentOverlay.h @@ -64,6 +64,7 @@ class ScriptEditHandler : public ScriptComponentEditListener ComboBox, Label, Image, + Viewport, Plotter, ModulatorMeter, Panel,