diff --git a/src/AllThemeResources.h b/src/AllThemeResources.h index 016b6a099..1df5045fb 100644 --- a/src/AllThemeResources.h +++ b/src/AllThemeResources.h @@ -69,6 +69,8 @@ from there. Audacity will look for a file called "Pause.png". DEFINE_IMAGE( bmpAppendRecordDisabled, wxImage( 16, 16 ), wxT("AppendRecordDisabled")); DEFINE_IMAGE( bmpScrubDisabled, wxImage( 16, 16 ), wxT("ScrubDisabled")); DEFINE_IMAGE( bmpScrub, wxImage( 16, 16 ), wxT("Scrub")); + DEFINE_IMAGE( bmpSeekDisabled, wxImage( 24, 16 ), wxT("SeekDisabled")); + DEFINE_IMAGE( bmpSeek, wxImage( 24, 16 ), wxT("Seek")); SET_THEME_FLAGS( resFlagNewLine ); DEFINE_IMAGE( bmpUpButtonLarge, wxImage( 48, 48 ), wxT("UpButtonLarge")); @@ -123,6 +125,9 @@ from there. Audacity will look for a file called "Pause.png". DEFINE_IMAGE( bmpMic, wxImage( 25, 25 ), wxT("Mic")); DEFINE_IMAGE( bmpSpeaker, wxImage( 25, 25 ), wxT("Speaker")); + DEFINE_IMAGE( bmpPinnedPlayRecordHead, wxImage( 27, 27 ), wxT("PinnedPlayRecordHead")); + DEFINE_IMAGE( bmpUnpinnedPlayRecordHead, wxImage( 27, 27 ), wxT("UnpinnedPlayRecordHead")); + SET_THEME_FLAGS( resFlagPaired ); DEFINE_IMAGE( bmpZoomFit, wxImage( 27, 27 ), wxT("ZoomFit")); DEFINE_IMAGE( bmpZoomFitDisabled, wxImage( 27, 27 ), wxT("ZoomFitDisabled")); diff --git a/src/Menus.cpp b/src/Menus.cpp index 909332752..22e6d73eb 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -69,6 +69,7 @@ simplifies construction of menu items. #include "export/Export.h" #include "export/ExportMultiple.h" #include "prefs/PrefsDialog.h" +#include "prefs/PlaybackPrefs.h" #include "ShuttleGui.h" #include "HistoryWindow.h" #include "LyricsWindow.h" @@ -772,6 +773,11 @@ void AudacityProject::CreateMenusAndCommands() c->AddSeparator(); + c->AddCheck(wxT("PinnedHead"), _("Pinned Recording/Playback Head"), + FN(OnTogglePinnedHead), 0, + // Switching of scrolling on and off is permitted even during transport + AlwaysEnabledFlag, AlwaysEnabledFlag); + c->AddCheck(wxT("Duplex"), _("&Overdub (on/off)"), FN(OnTogglePlayRecording), 0); c->AddCheck(wxT("SWPlaythrough"), _("So&ftware Playthrough (on/off)"), FN(OnToggleSWPlaythrough), 0); @@ -1840,6 +1846,10 @@ void AudacityProject::ModifyToolbarMenus() gPrefs->Read(wxT("/AudioIO/AutomatedInputLevelAdjustment"),&active, false); mCommandManager.Check(wxT("AutomatedInputLevelAdjustmentOnOff"), active); #endif + + active = PlaybackPrefs::GetPinnedHeadPreference(); + mCommandManager.Check(wxT("PinnedHead"), active); + gPrefs->Read(wxT("/AudioIO/Duplex"),&active, true); mCommandManager.Check(wxT("Duplex"), active); gPrefs->Read(wxT("/AudioIO/SWPlaythrough"),&active, false); @@ -2360,6 +2370,27 @@ void AudacityProject::OnToggleSoundActivated() ModifyAllProjectToolbarMenus(); } +void AudacityProject::OnTogglePinnedHead() +{ + bool value = !PlaybackPrefs::GetPinnedHeadPreference(); + PlaybackPrefs::SetPinnedHeadPreference(value, true); + ModifyAllProjectToolbarMenus(); + + // Change what happens in case transport is in progress right now + auto ctb = GetActiveProject()->GetControlToolBar(); + if (ctb) + ctb->StartScrollingIfPreferred(); + + auto ruler = GetRulerPanel(); + if (ruler) + // Update button image + ruler->UpdateButtonStates(); + + auto &scrubber = GetScrubber(); + if (scrubber.HasStartedScrubbing()) + scrubber.SetScrollScrubbing(value); +} + void AudacityProject::OnTogglePlayRecording() { bool Duplex; diff --git a/src/Menus.h b/src/Menus.h index d88c187d3..88391d723 100644 --- a/src/Menus.h +++ b/src/Menus.h @@ -313,6 +313,7 @@ void OnResetToolBars(); void OnSoundActivated(); void OnToggleSoundActivated(); +void OnTogglePinnedHead(); void OnTogglePlayRecording(); void OnToggleSWPlaythrough(); #ifdef EXPERIMENTAL_AUTOMATED_INPUT_LEVEL_ADJUSTMENT diff --git a/src/Project.cpp b/src/Project.cpp index 1b8a42a8f..e52a0805d 100644 --- a/src/Project.cpp +++ b/src/Project.cpp @@ -890,7 +890,7 @@ AudacityProject::AudacityProject(wxWindow * parent, wxWindowID id, mRuler = safenew AdornedRulerPanel( this, wxID_ANY, wxDefaultPosition, - wxSize( -1, AdornedRulerPanel::GetRulerHeight() ), + wxSize( -1, AdornedRulerPanel::GetRulerHeight(false) ), &mViewInfo ); // diff --git a/src/Theme.cpp b/src/Theme.cpp index 20f08d937..41d187ade 100644 --- a/src/Theme.cpp +++ b/src/Theme.cpp @@ -65,6 +65,7 @@ and use it for toolbar and window layouts too. #include "Project.h" #include "toolbars/ToolBar.h" #include "toolbars/ToolManager.h" +#include "widgets/Ruler.h" #include "ImageManipulation.h" #include "Theme.h" #include "Experimental.h" @@ -230,6 +231,7 @@ void Theme::ApplyUpdatedImages() if( pToolBar ) pToolBar->ReCreateButtons(); } + p->GetRulerPanel()->ReCreateButtons(); } void Theme::RegisterImages() @@ -958,27 +960,41 @@ void ThemeBase::SaveComponents() if( (mBitmapFlags[i] & resFlagInternal)==0) { FileName = FileNames::ThemeComponent( mBitmapNames[i] ); - if( !wxFileExists( FileName )) + if( wxFileExists( FileName )) { - if( !mImages[i].SaveFile( FileName, wxBITMAP_TYPE_PNG )) - { - wxMessageBox( - wxString::Format( - _("Audacity could not save file:\n %s"), - FileName.c_str() )); - return; - } - n++; + ++n; + break; } } } - if( n==0 ) + + if (n > 0) { - wxMessageBox( - wxString::Format( - _("All required files in:\n %s\nwere already present."), - FileNames::ThemeComponentsDir().c_str() )); - return; + auto result = + wxMessageBox( + wxString::Format( + _("Some required files in:\n %s\nwere already present. Overwrite?"), + FileNames::ThemeComponentsDir().c_str()), + wxMessageBoxCaptionStr, + wxYES_NO | wxNO_DEFAULT); + if(result == wxNO) + return; + } + + for(i=0;i<(int)mImages.GetCount();i++) + { + if( (mBitmapFlags[i] & resFlagInternal)==0) + { + FileName = FileNames::ThemeComponent( mBitmapNames[i] ); + if( !mImages[i].SaveFile( FileName, wxBITMAP_TYPE_PNG )) + { + wxMessageBox( + wxString::Format( + _("Audacity could not save file:\n %s"), + FileName.c_str() )); + return; + } + } } wxMessageBox( wxString::Format( diff --git a/src/ThemeAsCeeCode.h b/src/ThemeAsCeeCode.h index 937b96620..4549f2baa 100644 --- a/src/ThemeAsCeeCode.h +++ b/src/ThemeAsCeeCode.h @@ -7,4201 +7,4326 @@ 137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,184, 0,0,3,68,8,6,0,0,0,194,5,58,248,0,0,0,4,115,66,73, 84,8,8,8,8,124,8,100,136,0,0,32,0,73,68,65,84,120,156,236, - 189,123,124,212,213,157,255,255,250,204,124,230,150,11,36,40,152,104,80,2, - 73,133,168,107,65,91,37,82,9,172,109,127,95,252,46,235,106,117,183,213, - 109,251,213,126,183,173,8,22,240,134,109,5,218,173,120,65,84,20,237,186, - 245,215,86,161,238,234,202,218,139,184,74,5,162,52,96,21,80,91,131,74, - 32,8,72,48,33,23,146,204,204,103,230,115,57,223,63,102,206,228,61,39, - 159,207,204,132,100,38,147,112,158,143,199,60,50,243,185,156,91,102,206,235, - 243,126,159,247,57,71,9,6,131,138,91,85,85,69,81,20,0,10,0,102, - 154,38,51,13,195,40,46,46,102,233,206,3,192,153,23,150,205,104,223,223, - 209,20,233,141,118,99,136,152,187,108,246,238,45,171,234,103,144,207,243,182, - 172,170,223,52,84,233,231,51,133,62,95,209,101,83,167,206,174,46,47,175, - 81,221,110,127,75,103,103,203,59,251,247,55,28,248,236,179,70,241,90,5, - 192,123,141,239,179,11,107,254,70,57,153,188,152,240,249,205,170,170,234,16, - 112,91,200,237,190,72,241,168,37,80,20,151,101,152,65,166,235,239,77,0, - 30,254,82,83,211,174,76,210,189,243,190,59,207,62,209,118,66,3,128,177, - 227,199,250,239,191,235,254,67,118,215,41,138,34,22,65,34,145,72,134,4, - 37,18,137,148,182,118,134,206,238,236,208,198,48,102,185,24,131,165,40,172, - 123,194,56,245,96,73,201,152,94,151,203,93,212,218,25,154,100,119,126,236, - 216,49,221,5,5,5,236,138,31,205,89,113,225,117,23,220,184,237,129,55, - 239,219,181,126,207,19,131,41,208,220,101,179,239,159,181,96,230,181,219,215, - 237,168,220,178,170,94,33,199,15,204,90,48,51,186,125,221,142,39,182,172, - 170,95,59,248,170,39,51,253,220,89,43,246,124,180,125,133,221,57,69,113, - 141,103,204,106,75,117,172,164,248,244,241,93,61,199,147,174,177,59,198,185, - 241,239,238,92,241,255,255,254,254,164,252,10,253,254,162,219,231,207,191,235, - 198,43,174,184,69,117,185,198,134,162,81,232,134,1,195,52,97,88,22,222, - 105,106,218,241,200,203,47,223,254,193,161,67,127,74,148,3,192,175,94,255, - 21,59,116,230,1,156,123,228,60,252,227,151,255,113,64,66,199,213,101,123, - 213,148,2,221,229,190,207,84,148,115,85,203,122,83,101,214,211,179,154,246, - 183,196,207,77,52,20,215,183,12,151,235,50,55,99,7,61,150,185,104,86, - 211,126,221,41,205,229,143,44,63,219,87,236,251,191,122,68,223,14,0,30, - 159,103,86,164,39,242,239,43,127,176,178,159,200,73,129,147,72,36,217,66, - 105,220,215,118,241,207,95,48,190,113,172,221,156,166,192,242,50,166,68,139, - 124,237,141,215,255,127,230,51,181,95,172,105,58,220,210,91,245,248,127,24, - 223,60,214,110,214,208,243,223,248,170,241,204,204,47,214,52,22,22,20,232, - 127,123,119,221,138,47,221,122,217,242,104,111,4,173,31,29,255,224,245,123, - 183,45,105,222,126,240,181,129,22,102,238,178,217,31,206,90,48,243,92,0, - 8,159,208,176,107,253,158,61,91,86,213,207,152,187,108,246,188,89,11,102, - 190,28,142,25,4,216,181,126,207,3,91,86,213,223,73,239,101,237,139,25, - 122,162,64,212,76,157,137,97,225,68,107,8,75,215,188,181,242,233,223,237, - 91,193,15,255,225,161,38,246,191,151,86,245,19,135,234,137,231,223,236,81, - 253,19,26,155,223,89,145,234,216,162,127,92,177,226,224,209,131,173,191,123, - 243,87,79,164,58,230,148,223,89,227,198,85,108,250,209,143,54,159,81,82, - 50,181,189,167,7,189,154,6,221,48,96,177,88,255,239,82,98,151,106,186, - 142,199,55,109,186,253,165,63,255,121,53,16,23,184,63,254,146,53,95,208, - 132,104,111,4,234,167,62,92,225,251,42,102,95,114,121,70,66,199,16,19, - 183,168,219,253,11,6,197,235,51,141,175,83,241,218,94,53,165,220,130,82, - 115,121,83,211,235,219,171,166,156,174,187,220,247,50,69,25,227,53,141,239, - 206,106,218,127,66,76,111,217,207,150,157,49,182,162,120,145,234,85,191,174, - 245,68,23,3,128,191,216,251,176,17,53,158,59,113,164,103,237,170,31,174, - 250,140,94,47,5,78,34,145,100,11,215,209,150,182,177,135,143,118,214,116, - 132,198,95,218,25,30,63,179,61,88,114,233,167,159,182,158,119,248,240,145, - 49,186,174,187,91,90,90,199,28,62,218,121,158,120,254,200,145,79,199,232, - 186,238,2,0,198,24,44,195,130,161,91,56,109,242,184,243,254,233,151,215, - 188,122,253,134,127,220,122,198,121,19,102,164,43,0,135,139,91,248,132,134, - 240,9,13,237,251,219,155,249,185,45,171,234,55,109,95,183,227,86,254,249, - 162,27,166,223,49,119,217,236,111,36,37,208,19,133,121,60,140,208,177,32, - 130,45,189,142,175,19,199,122,241,241,193,46,28,107,15,39,221,222,27,238, - 233,87,166,169,147,206,191,249,217,149,111,172,235,13,117,37,142,77,169,248, - 220,77,226,177,88,27,0,183,92,119,239,186,218,11,190,122,19,61,182,232, - 31,239,91,87,55,99,254,205,98,218,52,191,66,191,191,104,211,143,126,180, - 249,180,226,226,169,135,143,31,199,241,238,110,4,35,17,68,185,245,102,154, - 136,26,6,162,166,9,5,192,183,231,204,121,240,242,154,154,239,36,242,1, - 18,237,31,153,16,198,43,227,126,139,250,183,222,200,88,56,116,151,251,94, - 0,166,139,89,31,233,110,247,147,244,156,5,101,70,212,237,94,252,102,85, - 85,205,172,166,253,199,61,150,185,64,97,172,83,119,185,31,20,211,89,188, - 124,241,184,226,51,139,191,163,250,212,155,224,118,149,38,78,184,93,165,170, - 79,189,169,248,204,226,239,44,94,190,120,92,166,229,146,72,36,146,193,224, - 50,13,195,13,166,123,97,105,126,88,154,31,76,247,51,166,123,77,211,112, - 91,150,165,152,166,105,123,222,48,117,151,101,89,125,41,49,6,88,12,150, - 105,193,52,44,76,252,194,89,117,55,190,244,205,93,127,183,122,222,51,197, - 101,69,21,169,10,17,119,75,158,203,45,52,59,182,172,170,95,187,107,253, - 158,235,201,161,235,146,46,136,154,136,132,116,244,132,116,244,134,13,199,87, - 119,208,64,79,72,71,68,183,146,51,16,70,163,166,78,58,255,230,223,63, - 244,254,186,125,135,246,65,55,162,0,128,113,99,78,251,202,198,251,223,94, - 215,116,184,9,81,35,146,116,189,105,2,62,143,15,223,186,242,246,117,211, - 38,205,248,10,0,88,22,224,85,189,184,105,254,221,235,102,79,23,69,174, - 47,191,219,231,207,191,171,172,164,100,106,75,103,39,122,53,13,166,101,197, - 218,83,44,33,99,128,162,192,235,241,224,107,51,103,62,80,228,247,79,32, - 39,147,218,63,83,222,172,170,170,54,21,101,154,215,52,191,11,0,166,162, - 76,222,250,185,207,81,145,211,161,160,192,84,148,235,0,96,86,211,126,93, - 181,172,199,76,69,57,179,190,170,234,235,252,162,155,151,223,92,52,254,236, - 241,55,120,124,234,119,93,46,215,25,73,229,103,12,46,151,235,12,143,79, - 253,238,248,179,199,223,112,243,242,155,139,50,46,160,68,34,145,156,36,46, - 196,188,92,39,131,227,125,204,98,48,117,11,166,110,226,188,249,211,254,249, - 123,127,252,78,83,221,109,95,186,215,91,228,29,227,112,203,181,153,100,184, - 101,85,253,111,118,173,223,243,0,0,92,116,195,244,191,159,187,108,246,75, - 73,249,198,59,85,198,152,227,11,140,197,251,94,81,64,92,137,119,83,39, - 157,127,243,31,214,188,191,238,147,150,86,4,181,30,120,84,31,74,139,79, - 251,74,253,207,15,252,174,171,71,247,117,246,180,37,242,74,228,29,111,146, - 113,99,207,240,45,254,250,131,191,187,96,202,37,95,113,41,177,227,1,127, - 17,110,154,191,204,70,228,98,1,37,55,94,113,197,45,199,123,122,16,140, - 68,250,165,107,135,234,114,161,180,168,168,244,146,234,234,127,177,59,207,172, - 254,105,252,242,143,191,180,77,216,112,185,110,85,45,235,205,248,71,55,0, - 152,138,82,85,95,93,181,88,184,110,214,182,234,234,21,0,240,165,166,166, - 70,213,178,222,177,92,174,57,0,240,173,229,223,242,159,57,177,236,58,79, - 64,189,197,173,186,38,58,149,219,173,186,38,122,2,234,45,103,78,44,187, - 238,91,203,191,229,79,91,81,137,68,34,25,4,174,244,151,156,60,140,49, - 152,186,9,151,234,242,93,250,47,95,92,246,253,215,191,211,52,227,250,207, - 223,236,246,186,125,252,154,120,240,72,37,31,115,219,181,126,207,3,187,214, - 239,249,232,224,142,67,93,118,105,110,89,85,127,231,174,245,123,246,196,63, - 254,253,80,149,181,168,32,166,189,125,226,214,134,238,96,7,138,10,198,226, - 252,41,95,172,121,102,197,246,245,157,61,166,175,163,187,13,166,229,60,206, - 231,82,92,40,41,30,239,187,237,134,71,214,159,83,62,173,198,48,117,40, - 80,18,34,55,231,162,171,146,68,238,178,169,83,103,171,46,215,216,158,112, - 56,49,222,230,4,127,162,112,185,92,240,123,60,56,247,172,179,230,15,164, - 142,119,239,186,131,253,231,230,255,76,202,196,84,148,41,241,128,146,16,0, - 51,158,145,91,119,185,191,252,70,85,213,223,146,204,93,134,219,117,249,182, - 234,234,59,0,192,197,216,219,150,162,140,191,246,218,107,189,159,59,107,202, - 124,111,192,183,200,165,186,170,210,149,193,165,186,170,188,1,223,162,207,157, - 53,101,254,181,215,94,235,29,72,249,37,18,137,100,32,168,185,200,196,50, - 45,40,22,224,31,235,31,255,149,229,127,187,238,11,223,158,177,100,235,131, - 111,46,251,248,181,125,47,0,168,164,1,37,241,91,238,76,149,94,54,56, - 99,92,57,170,42,206,191,249,183,15,246,137,155,197,44,248,189,1,124,239, - 234,149,215,250,60,126,164,19,55,0,80,20,5,46,151,11,99,11,199,141, - 47,63,109,226,181,193,112,55,20,69,73,136,220,119,255,97,249,186,226,130, - 18,244,134,98,51,42,170,203,203,107,194,209,40,116,211,180,117,75,246,75, - 31,49,171,208,29,179,226,106,6,82,71,163,208,192,238,226,63,227,135,219, - 239,98,151,153,151,99,222,236,121,10,20,248,120,180,36,128,62,171,74,129, - 63,234,118,47,246,88,214,54,154,134,229,82,62,255,102,85,213,23,1,116, - 49,160,184,102,118,205,92,79,129,111,177,219,227,190,64,201,192,27,160,0, - 138,219,227,190,0,5,190,197,53,179,107,186,241,95,3,169,129,68,34,145, - 100,78,86,45,56,10,99,128,169,155,136,246,70,225,9,120,166,212,221,246, - 165,231,47,186,225,243,203,115,149,127,58,76,211,196,163,75,126,191,238,192, - 167,71,112,162,183,29,204,98,9,119,97,212,208,208,19,58,1,203,50,51, - 112,33,198,250,120,195,210,209,19,58,145,24,191,3,98,22,109,56,18,196, - 53,115,191,187,238,112,107,19,0,64,117,187,253,17,18,45,153,41,44,150, - 94,96,32,247,240,246,239,66,39,254,59,242,95,248,249,198,159,39,101,202, - 20,229,116,161,38,186,165,40,83,232,49,11,74,161,165,224,98,6,148,196, - 202,175,214,1,152,1,198,92,153,212,32,230,29,102,46,0,51,226,247,74, - 36,18,73,86,200,137,192,49,139,193,136,24,8,119,134,209,117,164,11,251, - 235,15,236,126,233,214,223,207,217,181,254,221,149,233,238,157,187,108,246,238, - 248,235,195,185,203,102,223,63,119,217,236,221,179,22,204,156,30,63,221,156, - 242,230,1,208,210,126,4,55,253,108,246,130,150,246,79,96,152,6,44,196, - 2,53,116,35,138,19,189,29,136,26,17,88,204,74,43,112,140,89,48,140, - 40,186,123,59,160,69,67,96,96,176,152,5,211,52,209,209,253,25,246,124, - 244,38,30,121,238,246,5,74,188,233,143,118,118,182,152,150,149,241,64,40, - 207,93,139,70,209,214,221,221,146,242,98,1,222,254,202,71,46,124,107,236, - 141,248,222,213,223,83,192,16,217,94,53,101,34,0,40,140,29,33,25,245, - 168,166,249,188,106,89,63,167,105,120,44,115,219,236,125,77,79,32,54,94, - 23,140,134,162,175,234,33,189,193,212,77,19,140,245,27,217,236,87,246,152, - 219,218,212,67,122,67,52,20,125,117,32,229,151,72,36,146,129,144,221,49, - 56,11,9,97,59,113,164,27,7,119,30,250,96,243,79,183,94,247,202,15, - 55,95,212,186,183,109,91,252,178,223,2,192,69,55,76,159,62,119,217,236, - 251,237,210,153,181,96,102,201,172,5,51,207,157,181,96,230,29,23,221,48, - 125,122,220,165,217,188,101,85,253,228,161,42,107,36,26,198,177,246,67,79, - 252,240,201,27,22,180,118,28,137,88,150,5,69,81,208,221,219,129,159,191, - 184,252,133,15,14,188,221,102,154,6,92,174,84,77,198,96,152,58,62,109, - 59,136,183,62,120,189,237,173,191,254,241,5,175,234,131,101,89,104,235,252, - 20,59,255,178,57,242,219,55,126,185,96,207,199,219,159,168,56,35,86,244, - 93,251,247,55,24,166,153,152,231,150,9,134,105,162,179,183,23,159,180,182, - 54,12,164,142,86,147,130,171,11,174,195,227,55,61,169,204,186,100,150,2, - 0,110,198,246,25,138,235,91,241,75,220,241,106,88,30,203,252,227,236,166, - 166,231,24,112,6,63,166,154,214,27,110,198,30,7,0,75,81,102,184,25, - 59,252,198,239,222,120,51,220,173,61,20,13,233,59,83,137,28,21,183,104, - 72,223,25,238,214,30,122,227,119,111,188,105,115,169,68,34,145,12,9,46, - 244,15,39,204,20,199,251,24,3,204,168,9,237,68,24,221,159,114,97,219, - 114,221,203,119,252,207,249,135,223,62,242,2,189,118,203,170,250,171,118,173, - 223,195,69,174,255,252,182,56,124,126,28,0,180,239,111,7,128,23,236,174, - 59,121,98,213,105,57,254,201,19,119,174,251,167,249,109,157,71,35,134,161, - 35,18,13,227,112,107,83,227,125,191,190,165,110,223,161,247,219,12,195,112, - 76,65,55,116,28,105,61,128,55,223,219,212,246,155,87,31,169,235,13,119, - 55,250,60,1,124,214,113,24,59,254,242,90,228,247,219,127,61,255,147,99, - 31,63,1,0,5,254,98,0,192,129,207,62,107,124,167,169,105,7,0,64, - 81,98,174,199,20,37,100,140,161,59,28,198,167,29,29,248,235,225,195,79, - 219,94,231,144,192,207,111,252,55,229,239,174,248,187,36,37,85,45,235,215, - 134,203,117,89,220,138,51,1,192,205,88,163,155,177,231,232,117,110,102,237, - 169,219,183,111,197,172,166,253,250,155,85,85,53,134,203,117,177,203,178,254, - 84,95,95,111,180,126,220,250,170,22,138,220,23,13,27,111,153,134,101,217, - 22,128,49,152,134,101,69,195,198,91,90,40,114,95,235,199,173,175,214,215, - 215,59,55,166,68,34,145,12,18,23,0,147,49,68,77,203,212,44,139,105, - 150,105,106,140,33,138,88,103,199,156,206,43,80,250,77,182,98,140,197,132, - 173,43,140,19,159,118,227,211,119,143,30,174,127,120,251,2,59,97,19,120, - 158,191,185,232,134,233,27,230,46,155,189,200,233,194,246,253,237,56,184,227, - 208,71,226,74,38,48,44,24,166,133,168,110,65,79,245,50,99,215,165,34, - 24,238,126,237,142,199,175,157,255,201,177,143,186,205,248,184,155,97,234,141, - 43,126,113,83,93,211,145,247,219,236,58,112,203,178,208,114,252,19,108,127, - 111,83,219,230,157,255,89,215,19,58,209,168,186,61,104,235,58,138,237,239, - 110,234,126,101,199,115,243,219,79,124,150,88,221,133,90,108,143,190,252,242, - 237,154,174,131,206,43,164,57,112,209,99,140,161,87,211,112,176,181,21,123, - 14,28,216,124,180,163,35,201,197,71,219,95,228,255,92,241,127,108,77,196, - 47,53,53,237,114,51,118,80,119,187,151,3,112,187,45,214,232,177,204,187, - 102,53,237,63,206,175,81,24,58,84,139,61,5,0,219,171,166,140,53,92, - 174,133,110,198,14,206,110,106,122,14,0,158,122,234,41,189,181,177,245,213, - 72,48,178,38,26,138,238,233,39,114,92,220,66,209,61,145,96,100,77,107, - 99,235,171,79,61,245,148,227,82,95,18,137,68,50,20,168,110,151,121,194, - 239,58,222,120,226,196,199,204,130,229,5,67,52,80,100,54,122,61,69,221, - 186,174,155,128,209,237,119,181,127,224,112,62,214,35,51,192,52,44,68,186, - 35,8,117,132,208,222,220,113,248,47,27,27,239,59,240,70,243,211,150,97, - 69,210,148,1,91,86,213,255,6,192,133,23,221,48,253,14,0,184,232,134, - 233,143,2,104,226,139,43,135,79,104,149,64,146,184,77,21,211,56,209,26, - 194,199,135,186,209,19,210,83,6,35,26,38,195,209,182,48,12,131,9,199, - 147,141,137,96,184,231,181,31,62,249,207,51,111,253,167,251,183,41,138,43, - 126,141,222,184,226,223,111,170,251,193,63,61,144,56,150,184,94,235,197,142, - 191,188,218,246,218,206,231,235,130,90,79,35,0,132,34,189,104,120,255,127, - 218,254,176,253,217,186,160,214,157,180,80,50,205,239,175,135,14,253,233,241, - 77,155,110,255,246,156,57,15,122,85,21,170,170,194,21,183,230,128,184,112, - 89,22,186,195,97,28,108,109,197,174,253,251,247,111,251,224,131,111,38,18, - 16,218,95,105,115,97,246,183,51,91,170,11,0,60,150,185,40,234,86,159, - 133,2,159,199,180,126,30,159,50,0,0,80,128,102,213,52,255,243,75,77, - 77,251,222,172,170,170,209,93,174,133,76,65,129,215,180,86,208,52,158,122, - 234,41,125,225,194,133,127,24,91,57,214,173,0,119,120,11,188,9,247,49, - 51,25,211,67,209,61,90,79,228,129,19,205,39,254,32,197,77,34,145,228, - 2,117,252,56,239,254,171,46,55,126,125,236,179,158,49,166,105,186,20,197, - 101,141,25,83,220,125,246,89,99,15,90,150,165,77,24,231,59,120,213,229, - 198,51,118,231,153,101,25,0,96,68,76,244,28,235,69,235,71,199,187,247, - 60,247,238,138,125,175,239,127,34,19,97,163,196,45,178,79,39,205,60,251, - 230,131,59,14,121,185,184,197,167,14,176,73,51,207,110,62,184,227,208,11, - 253,44,183,56,75,214,188,181,242,88,123,24,81,221,66,58,175,171,110,48, - 52,31,237,217,70,143,125,214,113,164,223,117,134,169,55,62,242,31,119,212, - 149,20,157,86,71,143,61,252,31,183,39,29,3,128,79,90,62,110,253,235, - 129,183,146,132,204,238,152,83,126,47,253,249,207,171,59,122,123,187,174,157, - 57,243,129,210,162,162,82,191,199,3,183,203,5,11,64,36,26,69,71,48, - 136,163,237,237,216,125,224,192,230,109,31,124,240,77,77,215,143,241,123,45, - 211,66,207,177,94,244,28,8,226,114,127,29,110,252,246,141,3,154,188,63, - 171,105,191,190,189,106,202,119,117,151,251,193,136,219,189,108,91,117,245,59, - 46,198,222,86,128,54,0,80,128,200,182,234,234,21,17,151,235,98,55,99, - 7,189,166,181,98,86,83,83,191,0,159,199,30,123,44,178,112,225,194,223, - 186,38,151,186,21,69,249,190,101,232,12,0,244,48,254,26,233,213,159,60, - 209,124,226,183,143,61,246,216,128,190,23,18,137,68,114,178,40,237,237,237, - 138,22,137,168,154,166,41,166,105,42,138,162,48,85,85,89,192,239,55,202, - 202,202,88,186,243,0,48,227,27,23,46,102,192,152,191,108,252,224,97,67, - 51,6,189,101,142,184,53,142,184,117,206,104,166,200,239,159,112,73,117,245, - 191,156,123,214,89,243,75,139,138,106,24,99,129,227,221,221,45,7,91,91, - 27,254,122,248,240,211,162,91,82,1,240,236,166,103,89,111,184,23,223,191, - 230,251,3,94,149,70,124,20,216,52,109,218,119,13,183,251,10,211,165,140, - 103,80,138,98,121,176,144,219,98,135,85,211,124,99,222,222,189,255,150,46, - 205,107,23,95,27,56,247,172,170,175,70,52,227,8,0,248,252,106,197,71, - 159,54,189,250,194,195,47,244,243,157,202,197,150,37,18,73,182,80,127,245, - 171,95,65,81,20,128,70,241,177,190,57,96,233,206,3,192,156,115,254,182, - 62,26,212,155,246,104,239,13,201,126,112,91,86,213,111,90,243,252,234,221, - 75,174,187,109,70,252,243,140,53,207,175,158,183,228,186,219,70,253,126,112, - 189,154,214,122,94,93,221,35,227,138,138,246,20,250,124,53,138,162,248,11, - 117,189,101,108,40,212,240,218,154,53,253,44,65,0,168,187,176,14,19,207, - 154,120,178,75,174,37,177,161,180,244,21,0,229,0,38,3,224,43,206,68, - 0,52,1,200,40,234,241,133,135,95,8,95,177,252,178,221,7,94,107,209, - 0,96,242,87,202,91,255,248,240,159,250,15,12,74,36,18,73,22,81,214, - 172,89,83,170,27,214,217,166,97,141,97,177,160,19,11,96,221,30,85,57, - 168,170,106,47,128,34,221,176,38,57,156,239,94,178,100,9,91,254,200,61, - 43,198,148,143,185,177,125,127,199,125,247,222,125,239,160,246,131,91,243,252, - 234,251,17,91,155,178,114,201,117,183,41,228,248,1,0,81,0,79,44,185, - 238,182,33,223,15,238,138,57,95,93,241,199,173,175,174,176,59,23,8,4, - 198,135,195,225,182,84,199,126,112,235,226,241,143,60,250,112,210,53,118,199, - 56,247,253,100,205,138,187,238,89,146,148,223,162,133,11,139,166,148,149,221, - 53,241,244,211,111,81,128,177,38,99,96,150,149,8,48,233,10,6,119,52, - 183,182,222,126,223,234,213,73,251,193,109,217,177,133,237,59,190,15,127,115, - 230,133,152,121,209,165,39,181,31,220,245,181,181,126,0,119,0,56,23,192, - 118,0,47,108,104,104,56,30,63,87,6,224,31,0,204,4,240,9,128,149, - 27,26,26,28,35,32,175,88,126,217,217,190,226,49,207,70,123,34,135,0, - 192,91,236,59,59,210,211,253,207,127,92,249,39,185,31,156,68,34,201,25, - 202,189,171,30,188,248,120,23,251,70,212,96,211,0,120,1,68,221,46,163, - 241,180,98,60,83,84,20,104,138,68,205,170,182,78,246,205,168,193,106,232, - 249,113,197,236,153,162,162,130,198,165,75,150,232,203,31,190,103,197,184,202, - 113,203,45,211,68,180,87,255,224,120,211,241,37,15,254,116,245,128,247,131, - 91,243,252,234,15,17,235,96,57,123,150,92,119,219,140,53,207,175,158,7, - 224,101,114,252,129,37,215,221,150,52,22,183,245,181,117,12,134,5,216,44, - 52,156,4,3,140,168,137,198,3,157,43,111,189,253,39,43,248,225,95,175, - 251,47,246,173,5,95,235,39,14,151,124,97,230,205,133,133,69,19,182,108, - 219,188,34,213,177,213,63,123,116,69,72,11,183,222,243,211,187,158,72,117, - 204,41,191,165,63,248,65,197,23,171,171,55,251,60,158,169,81,195,128,105, - 89,177,213,77,184,165,28,183,160,45,203,194,193,214,214,219,127,252,179,159, - 37,246,131,219,178,99,11,123,255,179,247,97,153,38,198,168,99,49,171,230, - 75,152,90,125,110,198,251,193,197,197,237,126,196,254,191,11,169,120,93,95, - 91,123,58,128,41,27,26,26,222,186,190,182,182,4,49,17,44,6,176,108, - 67,67,67,111,191,246,90,116,201,25,147,47,61,231,39,101,211,206,248,114, - 227,31,246,190,5,0,53,255,123,218,37,199,246,126,182,249,192,206,79,238, - 121,107,237,91,114,63,56,137,68,146,19,92,186,161,143,213,116,163,38,106, - 121,46,141,90,158,153,17,83,189,84,139,24,231,233,186,62,134,49,230,214, - 117,125,140,166,27,231,137,231,13,221,24,195,44,43,17,74,200,24,3,179, - 0,79,129,231,188,51,47,44,127,245,222,95,252,108,235,146,187,22,103,60, - 110,102,35,110,137,32,134,184,107,242,86,114,238,142,53,207,175,78,158,47, - 103,88,96,81,11,102,196,76,249,50,34,6,130,33,29,145,104,242,84,1, - 195,236,191,198,228,204,47,206,188,249,7,255,119,217,58,195,236,11,250,187, - 120,198,23,110,18,143,1,49,161,152,116,230,185,235,126,116,215,138,155,232, - 177,202,51,167,174,187,231,238,159,244,219,69,128,230,183,104,225,194,162,47, - 86,87,111,246,170,234,212,112,52,10,46,112,204,178,250,118,66,176,250,86, - 81,169,56,237,180,7,127,124,231,157,223,161,233,241,246,63,17,61,129,77, - 239,253,1,207,190,188,126,32,194,113,27,98,211,66,246,1,248,169,112,174, - 6,192,247,174,175,173,157,188,161,161,161,11,192,61,0,186,0,220,45,38, - 82,115,109,205,184,51,42,79,123,186,108,234,248,191,87,125,106,41,159,224, - 160,250,212,210,178,169,227,255,254,140,202,211,158,174,185,182,70,238,7,39, - 145,72,114,130,11,12,110,48,230,5,179,252,96,150,31,96,126,6,230,101, - 96,110,198,152,2,56,158,183,95,210,35,190,29,77,160,196,95,55,241,226, - 138,93,63,89,183,242,153,91,151,44,74,185,31,92,220,45,121,110,170,107, - 226,110,73,231,253,224,226,123,161,25,38,203,224,101,193,234,103,233,37,127, - 158,249,197,153,55,47,253,222,61,235,122,195,193,196,246,51,83,42,167,124, - 101,201,247,126,184,46,24,14,130,89,201,2,201,24,224,82,220,152,120,198, - 148,117,119,222,118,247,87,120,146,46,197,133,137,103,84,219,136,92,95,126, - 83,202,202,238,242,121,60,83,53,93,239,219,11,206,105,63,56,196,118,19, - 40,47,45,125,96,209,194,133,19,108,46,202,100,205,230,4,215,215,214,158, - 13,96,26,250,4,107,242,245,181,181,84,228,12,0,5,0,174,4,128,184, - 117,247,75,0,229,215,215,214,206,227,23,213,92,91,83,52,233,226,137,235, - 43,191,84,249,55,170,223,115,6,232,162,212,150,9,213,239,57,163,242,75, - 149,127,51,233,226,137,235,107,174,173,145,251,193,73,36,146,172,147,149,253, - 224,192,88,124,177,98,160,248,140,162,127,62,231,210,179,155,238,121,232,199, - 247,46,92,180,112,80,251,193,45,185,238,182,223,0,120,32,254,241,239,215, - 60,191,250,37,251,43,153,243,139,57,77,34,232,171,206,204,47,206,188,121, - 233,247,239,89,23,142,68,96,90,6,20,151,11,147,43,167,124,229,95,151, - 61,244,59,203,82,124,186,17,117,156,136,224,81,125,190,201,103,77,251,221, - 93,183,255,240,43,188,36,110,151,27,19,207,168,178,181,228,22,45,92,88, - 52,241,244,211,111,225,86,91,166,59,10,120,84,181,180,180,176,208,118,63, - 56,187,52,94,123,115,179,83,194,55,34,54,230,6,240,165,186,128,41,215, - 215,214,126,75,184,238,178,235,107,107,23,2,192,134,134,134,3,0,118,3, - 152,5,0,231,204,62,199,127,206,244,179,214,79,169,155,92,229,45,240,76, - 116,90,171,203,91,224,153,56,165,110,114,213,57,211,207,90,127,206,236,115, - 228,126,112,18,137,36,171,100,119,177,229,184,208,65,81,124,165,231,148,44, - 59,103,230,196,166,187,239,93,118,243,45,11,111,73,236,7,23,15,30,169, - 140,127,220,131,152,128,125,132,152,27,172,31,241,177,183,33,223,15,78,117, - 199,118,14,74,136,155,22,129,97,234,80,221,42,206,169,168,172,185,125,193, - 242,245,22,115,197,197,45,181,8,121,84,175,111,74,197,121,235,11,252,69, - 53,140,197,44,61,183,75,141,139,220,79,147,68,110,92,81,209,108,5,24, - 107,218,184,72,69,184,4,43,138,2,183,162,160,208,239,31,208,126,112,143, - 111,124,156,237,216,181,67,44,252,100,196,2,74,52,240,253,224,98,66,55, - 247,250,218,218,75,132,236,103,93,95,91,203,93,163,239,1,56,29,53,240, - 78,189,162,250,153,170,186,41,147,252,197,190,170,116,171,45,251,139,125,85, - 85,117,83,38,77,189,162,250,25,212,64,238,7,39,145,72,178,70,78,246, - 131,227,11,240,186,84,247,248,241,159,59,125,93,201,196,177,75,238,88,113, - 199,178,7,86,60,240,2,136,184,241,105,1,24,134,253,224,188,94,63,46, - 249,66,204,45,201,197,141,49,6,151,226,198,223,206,154,119,173,75,113,35, - 170,71,211,238,38,160,40,10,24,3,84,183,119,188,207,19,184,214,180,140, - 248,49,6,183,75,197,57,101,159,91,247,147,31,223,151,88,201,164,208,231, - 171,177,24,139,237,93,48,128,253,224,20,69,129,87,85,7,180,31,92,196, - 140,96,71,115,3,254,237,165,159,179,75,170,103,226,243,231,93,168,0,240, - 241,104,73,244,77,11,0,98,123,195,125,15,253,167,6,92,112,125,109,237, - 249,0,186,1,140,153,119,211,188,185,147,46,62,107,162,111,172,239,2,176, - 12,188,1,12,138,111,172,239,130,41,151,87,134,231,21,204,155,251,202,109, - 175,12,164,10,18,137,68,146,49,57,219,15,14,44,54,134,100,25,22,20, - 151,107,202,105,147,199,61,127,247,189,203,242,102,63,56,48,134,155,191,125, - 219,186,160,22,134,97,234,73,126,76,203,178,98,199,6,176,46,53,99,177, - 123,172,164,177,58,6,211,50,80,126,250,217,235,180,104,16,0,160,40,138, - 223,178,210,111,195,211,47,253,216,107,64,251,193,241,246,63,17,236,198,255, - 236,122,5,127,124,243,143,98,166,167,9,159,117,244,61,128,112,10,1,92, - 0,96,12,0,88,90,244,135,138,75,153,193,12,230,202,164,14,140,49,48, - 131,185,20,151,50,195,210,162,63,28,72,249,37,18,137,100,32,228,102,63, - 56,196,246,132,179,116,19,186,102,32,212,17,220,125,236,131,207,230,220,123, - 247,170,180,251,193,173,121,126,245,238,248,235,195,53,207,175,190,127,205,243, - 171,119,3,24,242,253,224,180,104,24,143,61,125,223,130,72,52,12,198,172, - 132,27,146,11,21,75,236,5,151,110,63,56,214,39,110,204,236,59,6,134, - 168,17,69,119,176,3,205,159,238,93,192,29,142,154,174,183,48,100,62,16, - 202,115,183,44,11,81,93,31,208,126,112,188,253,199,186,199,224,234,203,174, - 193,21,95,186,66,1,16,137,207,115,3,128,163,228,242,30,0,47,1,120, - 86,72,230,205,13,13,13,207,33,230,198,236,13,117,133,238,57,184,227,208, - 209,112,183,102,50,51,117,128,11,99,0,51,25,194,221,154,121,112,199,161, - 163,161,174,208,61,3,41,191,68,34,145,12,132,236,238,7,7,65,216,58, - 195,31,28,223,119,252,186,229,11,87,94,244,240,253,15,111,139,95,246,219, - 248,223,233,241,104,74,59,74,16,139,178,188,3,68,220,150,92,119,219,144, - 237,7,103,89,22,222,217,253,246,19,79,61,243,232,130,80,56,20,225,82, - 98,152,58,94,127,115,211,11,173,29,199,218,98,162,151,90,138,24,24,180, - 104,24,93,61,199,219,186,122,142,191,16,219,63,142,33,26,213,208,213,221, - 22,57,214,126,120,193,189,15,252,244,9,191,175,0,0,112,34,20,106,96, - 140,37,175,20,147,6,198,24,116,211,68,56,26,29,208,126,112,133,74,17, - 254,215,69,255,11,223,253,167,239,41,159,155,82,205,51,108,66,108,18,55, - 208,23,100,194,0,108,219,208,208,176,9,192,233,228,216,118,0,27,226,159, - 207,7,112,228,141,7,27,222,236,237,232,93,248,201,142,67,159,106,221,154, - 201,76,199,221,114,192,76,11,90,183,102,126,178,227,208,167,189,29,189,11, - 223,120,176,65,238,7,39,145,72,178,70,118,246,131,67,220,29,166,91,201, - 194,118,203,138,243,87,255,236,161,164,109,115,150,92,119,219,85,232,19,185, - 254,243,219,156,201,202,126,112,239,236,254,243,19,15,61,241,147,249,97,45, - 20,137,173,226,111,226,232,177,195,141,171,215,254,180,174,189,189,181,45,149, - 27,142,49,11,90,36,132,142,238,214,182,79,219,14,212,25,166,209,232,82, - 220,136,68,53,116,246,180,69,62,235,56,50,127,245,154,7,158,0,98,65, - 39,0,240,224,154,53,141,93,193,96,198,251,193,1,177,57,116,90,52,138, - 158,112,216,126,63,56,155,99,19,74,198,99,193,55,22,40,159,191,224,243, - 162,146,254,23,128,153,113,43,142,7,153,52,2,248,131,112,221,158,13,13, - 13,143,109,104,104,48,174,175,173,157,12,96,6,128,63,3,48,234,55,111, - 127,181,183,35,188,224,147,157,135,142,106,61,154,197,87,95,161,229,97,150, - 5,173,71,179,62,217,121,232,104,111,71,120,65,253,230,237,175,34,54,5, - 65,34,145,72,178,130,11,177,78,45,202,0,13,128,6,198,52,8,251,193, - 57,156,239,191,169,90,124,82,50,23,54,173,91,59,220,209,220,177,192,78, - 216,4,158,39,239,55,172,121,126,181,227,126,112,113,62,18,87,50,225,99, - 124,124,194,179,211,203,202,96,158,88,243,193,230,215,86,175,251,201,252,19, - 61,29,221,60,64,166,189,163,189,241,254,199,86,212,181,119,182,218,46,189, - 5,22,179,220,58,186,91,219,218,58,143,214,61,186,246,209,70,69,81,16, - 213,53,116,116,183,118,183,118,30,157,255,240,163,107,18,171,187,80,149,105, - 110,109,189,93,28,135,179,219,15,14,0,12,203,66,40,26,197,137,80,104, - 243,67,143,60,146,180,240,50,109,127,17,27,97,3,0,108,104,104,104,68, - 108,249,173,91,17,179,224,246,2,120,32,62,169,155,211,1,224,57,0,184, - 190,182,182,8,192,255,1,240,73,220,194,3,118,65,175,223,92,255,106,184, - 91,91,124,112,231,225,99,90,183,102,49,50,207,144,89,12,90,183,102,29, - 220,121,248,88,184,91,91,92,191,185,254,85,236,130,220,50,71,34,145,100, - 21,23,192,78,184,20,163,17,70,207,78,102,116,239,128,209,179,211,237,178, - 62,80,20,165,155,49,102,2,172,219,165,24,31,56,156,39,59,116,198,2, - 24,12,46,108,7,58,22,28,251,224,179,234,7,86,62,152,118,109,74,97, - 126,27,0,60,26,95,158,139,67,3,29,62,90,114,221,109,253,246,131,51, - 162,38,130,97,3,193,176,142,94,205,249,21,212,12,104,81,51,182,12,22, - 65,180,204,154,15,54,191,246,179,135,126,52,179,227,68,123,27,87,134,246, - 246,246,198,251,215,174,168,235,232,58,222,38,170,133,97,153,232,236,105,107, - 107,235,60,90,183,246,177,71,27,1,192,180,76,116,244,180,181,125,214,113, - 100,230,35,68,220,196,252,238,91,189,250,79,7,91,91,111,55,204,88,185, - 18,251,192,161,79,216,24,99,208,13,3,65,77,195,137,96,112,127,123,79, - 207,55,145,156,96,162,253,189,150,23,147,199,15,200,123,187,18,64,17,98, - 139,44,191,20,159,50,192,57,18,63,118,40,110,185,221,137,88,112,203,191, - 39,165,176,11,250,235,207,109,251,67,168,75,91,252,201,91,135,143,69,122, - 163,140,87,32,210,27,101,159,188,117,248,88,168,75,91,252,250,115,219,254, - 32,197,77,34,145,228,2,85,85,149,253,227,138,240,107,221,48,199,128,193, - 5,5,150,219,229,234,246,168,174,131,0,52,213,173,28,28,87,132,103,236, - 206,51,198,12,0,176,44,6,35,98,32,18,140,118,119,127,218,189,162,247, - 120,240,137,117,143,175,27,208,190,95,75,174,187,237,206,53,207,175,254,20, - 192,205,0,188,124,231,128,248,90,148,12,177,128,146,23,250,89,110,113,26, - 15,116,174,212,162,22,88,186,181,40,17,179,226,66,154,185,141,30,139,232, - 90,191,235,218,59,218,27,31,94,183,170,238,156,115,42,235,18,199,218,251, - 31,3,128,176,22,108,237,9,117,38,196,205,233,152,83,126,63,254,217,207, - 86,255,248,206,59,187,206,44,45,125,192,163,170,165,46,69,137,77,47,64, - 108,124,80,143,187,37,79,132,66,155,219,123,122,190,249,216,227,143,39,246, - 131,99,12,48,34,6,16,85,80,123,238,101,184,124,102,230,155,157,2,177, - 213,73,174,175,173,93,134,216,106,38,183,94,95,91,187,27,177,121,110,29, - 241,75,162,241,73,222,51,16,179,246,30,222,208,208,240,105,191,132,154,16, - 217,250,31,91,127,251,213,27,174,112,127,210,112,104,21,3,142,1,192,39, - 13,135,186,245,94,125,217,214,255,216,250,91,52,65,238,7,39,145,72,114, - 130,242,224,131,15,42,140,49,213,178,44,133,49,166,64,81,152,162,40,204, - 165,40,198,29,119,220,193,210,157,7,128,187,239,93,182,24,192,152,238,150, - 158,135,31,127,236,241,65,111,153,31,165,176,233,0,0,32,0,73,68,65, - 84,35,110,141,67,183,206,25,237,44,90,184,112,66,105,97,225,191,20,250, - 253,243,189,170,90,195,128,64,84,215,91,194,209,104,67,79,56,252,180,232, - 150,84,0,188,249,214,118,22,137,106,60,42,114,64,136,143,3,215,214,214, - 126,29,192,28,0,227,89,108,81,101,128,177,160,162,40,135,1,252,233,133, - 88,4,101,74,42,42,42,2,83,190,62,233,171,221,135,187,142,0,192,152, - 137,37,21,251,159,59,248,234,145,35,71,228,126,112,18,137,36,103,40,239, - 188,243,78,218,14,134,187,211,148,120,164,95,44,50,48,246,87,85,85,40, - 138,2,151,203,149,248,43,186,251,24,99,176,44,11,166,105,66,81,20,152, - 166,9,139,44,36,108,9,235,58,42,3,136,40,180,131,175,10,226,118,187, - 147,142,243,188,232,95,211,52,147,202,35,150,133,151,199,229,114,193,237,118, - 39,222,243,23,173,59,99,44,209,54,98,190,131,169,87,62,183,255,133,23, - 94,8,37,110,109,2,49,107,211,178,172,68,123,208,244,104,57,51,133,151, - 117,213,170,85,216,188,121,51,10,10,10,96,154,102,226,127,155,234,61,175, - 187,97,196,98,89,220,110,55,24,99,80,20,5,30,143,39,233,30,183,219, - 141,162,162,34,92,118,217,101,88,176,96,65,162,78,217,174,151,162,40,248, - 235,95,222,203,248,62,73,246,81,20,5,159,159,126,81,202,107,222,221,179, - 11,51,102,92,172,0,41,86,255,3,160,240,225,118,249,32,55,44,100,188, - 146,9,237,216,221,110,55,84,85,77,252,165,157,63,37,17,244,65,58,88, - 222,225,112,113,225,29,199,201,76,118,22,225,249,240,178,82,104,62,134,97, - 36,94,209,104,20,166,105,194,48,140,132,216,241,250,58,213,219,227,241,36, - 181,129,219,237,78,92,195,243,167,109,193,59,69,222,185,158,12,249,218,254, - 145,72,4,31,126,248,225,73,213,105,160,204,153,51,7,87,93,117,85,214, - 243,97,140,33,26,141,226,163,143,62,74,122,152,160,136,15,79,64,242,119, - 134,255,191,248,195,3,109,103,254,153,49,134,67,135,14,225,236,137,103,101, - 179,58,146,1,146,137,184,189,253,246,219,0,120,108,155,243,239,70,81,20, - 166,100,62,205,85,50,196,100,36,112,188,3,117,187,221,240,120,60,240,120, - 60,73,29,189,248,244,74,173,2,222,169,242,142,95,252,203,173,10,254,158, - 126,89,236,196,194,9,222,97,136,101,17,133,45,26,141,66,215,117,68,34, - 17,68,34,17,232,186,14,93,215,19,157,61,96,47,110,180,13,84,85,133, - 170,170,240,122,189,253,218,130,90,81,180,236,252,239,201,88,115,249,220,254, - 220,18,26,109,120,60,158,68,187,218,9,23,199,229,114,193,235,245,38,30, - 98,120,155,113,220,110,55,44,203,74,252,165,150,155,101,89,216,185,115,39, - 206,158,120,77,206,235,39,201,140,119,247,236,74,250,60,126,66,89,63,113, - 171,175,255,200,241,254,135,30,250,29,150,46,157,207,164,194,13,15,142,2, - 199,59,104,238,6,227,29,58,127,217,117,0,244,199,203,211,16,211,19,59, - 75,46,6,188,211,16,173,9,154,134,83,71,203,173,20,241,169,90,20,182, - 104,52,10,77,211,16,14,135,17,14,135,147,132,141,223,207,235,228,36,28, - 92,4,248,203,52,77,120,60,30,88,150,149,16,30,94,47,90,239,116,117, - 24,169,237,111,231,146,205,22,153,44,72,61,20,80,247,36,173,51,255,95, - 208,135,30,254,153,186,47,121,57,249,67,134,170,170,176,44,43,113,15,247, - 20,40,138,130,214,214,214,156,212,233,84,133,255,238,45,139,33,18,137,32, - 170,71,97,89,86,236,125,36,130,242,242,51,49,118,236,24,219,239,177,40, - 110,0,208,214,122,172,223,49,73,254,210,79,224,168,133,193,221,96,94,175, - 23,62,159,15,62,159,47,209,185,242,31,63,117,117,209,241,44,106,57,0, - 125,63,118,42,14,118,249,114,104,250,188,115,118,114,241,241,206,67,60,198, - 221,144,220,90,11,6,131,8,133,66,8,135,195,73,98,32,90,70,98,39, - 198,203,35,150,145,138,29,29,211,242,122,189,137,247,212,154,203,132,145,214, - 254,118,99,150,217,194,206,45,152,13,68,119,50,255,95,208,241,78,234,30, - 6,146,133,94,85,213,36,87,48,127,120,18,191,167,118,223,91,73,230,164, - 19,47,106,49,243,241,87,241,189,223,239,67,32,16,64,36,50,248,224,222, - 217,179,251,182,180,76,101,213,73,114,71,146,192,137,157,171,170,170,240,249, - 124,240,251,253,240,251,253,240,122,189,9,203,134,119,172,92,68,116,93,79, - 26,199,162,227,13,118,240,188,168,197,32,222,67,59,98,39,145,160,46,54, - 14,21,55,77,211,16,12,6,209,219,219,139,80,40,4,77,211,18,121,120, - 60,158,132,112,80,241,224,238,64,222,161,210,50,136,101,165,79,238,134,97, - 192,229,114,33,26,141,38,210,161,117,17,173,65,187,49,179,145,214,254,131, - 13,8,202,87,168,184,241,7,31,46,110,118,214,179,120,15,16,19,100,254, - 63,161,150,53,13,4,42,44,44,204,101,181,70,12,49,15,75,44,56,40, - 20,10,65,55,244,196,123,67,215,147,30,236,156,196,139,255,134,189,241,223, - 16,255,77,249,125,254,248,57,23,170,170,170,224,114,185,112,248,240,225,65, - 151,121,205,154,223,39,222,95,116,209,231,6,157,158,100,240,244,179,224,104, - 231,202,59,214,64,32,0,159,207,151,248,81,243,142,53,26,141,38,198,177, - 120,176,70,186,206,149,91,76,252,189,40,30,212,18,2,146,159,140,157,198, - 175,196,167,98,222,225,135,195,97,4,131,65,244,244,244,160,183,183,23,122, - 252,135,193,235,86,80,80,128,130,130,130,132,192,113,139,73,116,77,82,247, - 29,45,39,175,47,117,115,210,8,78,209,122,19,173,2,59,209,24,108,251, - 139,193,12,20,158,223,80,183,127,174,200,165,139,146,255,165,150,26,29,111, - 115,10,36,18,143,241,239,84,52,26,77,178,246,237,44,186,83,1,238,81, - 49,205,216,247,211,73,188,116,61,118,204,227,241,56,190,79,39,94,126,191, - 63,173,213,63,148,237,47,69,45,255,72,18,56,234,126,225,29,43,237,92, - 185,149,18,137,68,160,105,26,52,77,67,52,26,77,8,138,24,126,46,166, - 203,93,53,188,163,162,66,66,127,252,52,216,131,190,183,235,68,232,23,152, - 139,14,183,220,122,123,123,209,221,221,141,222,222,94,24,70,108,95,54,159, - 207,135,194,194,66,20,21,21,161,176,176,48,201,114,227,117,231,249,81,196, - 232,55,49,10,145,186,163,128,100,203,82,20,9,241,73,127,176,237,207,235, - 108,215,246,180,237,120,135,74,93,112,131,109,127,49,175,108,146,75,23,37, - 128,36,55,53,183,158,1,244,19,56,81,236,68,171,151,91,129,188,115,230, - 99,118,212,75,48,26,160,226,101,154,38,180,136,150,228,73,49,227,223,81, - 211,52,19,223,115,39,241,242,122,189,80,61,30,20,20,196,22,37,247,168, - 228,189,71,69,32,48,160,157,162,114,130,116,81,230,31,73,2,199,127,200, - 62,95,204,47,205,173,27,254,131,52,12,35,17,160,161,105,90,194,122,160, - 157,171,93,228,157,232,234,226,121,217,61,193,242,251,184,32,241,78,159,142, - 133,57,97,89,86,194,114,235,233,233,193,137,19,39,16,12,6,161,235,58, - 92,46,23,2,129,0,138,139,139,49,102,204,24,4,2,129,132,219,207,110, - 44,69,236,184,69,107,140,62,133,139,81,114,180,174,188,77,50,41,255,64, - 219,159,90,205,226,3,69,170,128,16,58,30,39,142,45,14,166,253,71,27, - 124,252,147,63,252,0,169,197,77,252,206,211,135,9,222,161,243,255,21,191, - 182,168,168,40,199,181,58,57,50,25,239,162,226,197,61,13,226,123,110,17, - 123,227,94,19,96,100,136,87,38,72,23,101,254,161,138,227,62,30,143,39, - 105,204,135,63,197,71,163,209,68,231,26,10,133,18,226,70,173,54,142,221, - 83,61,143,46,164,157,42,205,219,78,20,121,71,76,195,228,121,103,33,194, - 173,24,30,76,210,211,211,131,96,48,8,195,48,224,118,187,81,80,80,128, - 49,99,198,96,204,152,49,73,150,155,93,231,237,20,76,65,173,24,26,125, - 72,199,92,184,208,57,33,10,202,201,180,127,56,28,78,136,155,147,176,57, - 185,113,69,241,165,101,58,153,246,207,165,224,229,202,69,73,189,13,252,225, - 71,180,198,197,9,245,169,198,226,120,251,210,104,74,26,85,57,220,12,69, - 176,6,119,201,83,241,114,185,92,240,251,252,241,7,4,37,17,1,60,90, - 80,0,69,81,20,198,88,108,170,128,40,106,187,118,125,140,165,75,231,243, - 201,222,114,162,247,48,160,2,201,157,43,13,186,224,63,62,222,185,6,131, - 65,4,131,193,132,184,209,160,11,78,42,203,129,158,231,29,170,157,197,199, - 59,18,93,215,147,230,12,241,78,71,236,140,249,15,144,79,3,8,133,66, - 9,113,83,20,5,5,5,5,24,59,118,44,198,142,29,139,194,194,66,4, - 2,129,126,29,23,71,236,244,41,118,194,77,197,153,119,254,98,155,208,235, - 236,130,54,6,210,254,161,80,40,241,96,33,90,17,118,245,225,237,79,243, - 166,174,76,42,116,212,29,153,105,251,231,82,224,248,138,36,217,134,91,90, - 116,18,191,216,190,118,223,89,10,125,104,224,127,121,128,10,119,103,59,89, - 218,67,137,83,176,198,64,197,107,40,198,187,70,35,92,228,186,187,187,177, - 123,119,223,126,193,130,184,73,134,137,132,192,137,225,232,252,9,149,6,107, - 4,131,65,104,154,150,232,248,128,228,78,209,9,234,222,179,11,84,176,179, - 66,104,167,76,199,133,248,60,34,110,17,242,50,112,235,141,139,27,119,75, - 250,253,126,148,148,148,96,204,152,49,40,42,42,74,18,55,158,158,93,25, - 40,180,147,231,231,237,130,71,68,235,78,180,146,104,253,196,115,153,180,63, - 21,55,154,22,191,223,169,243,165,214,134,104,61,138,98,199,211,205,180,253, - 115,41,112,157,157,157,57,203,139,183,41,181,208,237,234,42,90,105,244,59, - 97,7,183,134,121,123,159,172,69,51,216,96,13,42,106,82,188,6,135,2, - 40,99,198,140,73,136,156,20,183,252,65,229,63,100,62,15,140,174,200,33, - 138,6,159,28,109,215,113,115,196,227,226,132,103,167,206,194,206,130,227,131, - 208,244,201,93,81,98,3,246,212,2,228,99,111,188,172,145,72,4,140,49, - 248,124,62,20,23,23,163,168,168,40,33,110,116,14,25,45,175,88,14,58, - 78,69,207,217,29,231,159,69,151,43,21,9,154,39,117,97,102,218,254,161, - 80,40,225,150,164,22,5,127,217,89,24,180,44,52,76,157,138,26,173,19, - 61,151,105,251,231,82,224,90,90,90,114,146,15,175,23,125,136,18,93,137, - 162,23,129,183,191,232,1,16,45,118,241,247,97,39,28,185,10,214,144,226, - 53,116,80,145,171,171,155,42,197,45,79,80,169,123,140,14,168,139,226,22, - 137,68,250,69,10,2,246,161,227,118,22,80,170,177,6,59,177,163,34,199, - 127,220,252,28,237,216,169,245,198,131,47,76,211,132,215,235,69,65,65,65, - 66,224,248,52,0,154,190,157,21,230,228,114,21,235,45,186,27,237,234,36, - 190,196,233,12,60,207,116,237,207,45,55,222,142,212,186,160,159,197,124,104, - 61,169,213,64,45,51,177,46,244,255,154,73,251,231,82,224,194,225,126,155, - 17,100,5,234,82,228,164,170,167,248,80,225,244,125,160,215,210,188,236,48, - 140,228,8,93,110,181,155,241,247,163,57,88,99,164,194,69,78,138,91,254, - 160,242,142,138,187,38,104,52,32,15,71,167,115,172,156,126,188,118,98,1, - 196,58,114,190,178,131,157,245,70,127,240,92,176,104,39,202,59,110,198,250, - 86,133,167,157,43,157,247,198,199,6,21,37,54,160,93,84,84,132,130,130, - 130,196,83,170,216,33,139,229,21,93,141,78,79,223,20,49,104,131,151,73, - 12,76,176,179,94,105,160,65,170,246,231,86,51,191,151,215,133,183,13,93, - 3,211,110,28,142,183,43,45,167,24,52,67,39,172,211,99,233,218,63,151, - 2,151,203,105,2,169,30,200,82,141,65,218,125,167,196,243,244,30,187,181, - 60,93,46,23,10,11,251,230,103,154,166,153,8,138,50,12,35,241,32,196, - 231,214,1,72,120,45,248,247,38,85,160,147,100,136,176,217,33,32,254,159, - 149,1,37,121,130,202,59,87,186,242,6,143,218,227,115,173,120,132,98,186, - 39,83,59,68,107,66,188,87,28,195,160,29,11,21,57,254,227,229,130,73, - 197,128,46,199,197,24,131,39,238,146,225,47,254,180,43,230,149,234,73,90, - 180,206,236,172,214,84,215,137,214,30,157,67,69,221,128,233,218,159,215,201, - 78,248,233,223,116,110,74,113,92,144,186,45,233,120,42,93,28,152,186,192, - 156,218,223,201,2,25,201,136,214,122,186,107,69,215,163,211,195,144,221,189, - 37,37,37,253,142,211,168,85,209,90,166,223,19,254,157,230,199,69,119,180, - 219,237,78,136,157,162,40,73,194,199,151,171,147,72,70,51,42,93,150,138, - 90,68,92,48,248,68,238,116,79,132,226,15,156,67,45,26,17,39,183,13, - 61,70,127,224,92,100,163,209,104,162,147,165,227,111,60,178,144,187,39,249, - 152,27,239,40,196,178,218,149,69,116,227,209,58,56,137,160,211,103,49,66, - 148,191,167,145,136,233,218,159,182,61,109,11,81,220,196,23,205,143,138,46, - 173,7,21,55,81,236,237,210,180,107,255,92,146,171,14,153,183,79,42,215, - 186,216,94,118,223,95,167,242,210,239,9,119,41,218,93,195,195,247,157,224, - 194,198,3,85,248,131,18,127,15,244,77,93,161,255,47,85,85,81,92,92, - 156,120,239,36,130,124,231,141,209,248,16,35,57,53,80,1,36,69,21,242, - 14,150,10,27,23,14,218,249,139,56,253,224,169,155,139,95,39,90,24,78, - 240,78,156,174,216,206,199,147,120,217,184,192,241,57,97,124,21,16,191,223, - 111,43,110,169,158,174,197,0,1,254,158,138,187,232,186,164,127,197,180,168, - 59,80,92,181,130,186,75,157,218,159,46,230,44,134,171,167,18,58,187,241, - 35,81,184,197,118,160,171,156,240,191,180,115,116,106,255,92,90,1,185,116, - 81,138,19,246,157,196,78,116,81,139,81,185,118,15,65,98,80,207,96,202, - 153,78,4,129,88,187,241,241,56,151,203,5,159,207,151,40,43,221,211,80, - 20,65,222,6,60,114,150,255,175,105,224,145,20,65,73,62,163,210,249,96, - 64,223,106,32,252,37,70,13,138,162,228,36,120,28,187,78,201,110,28,204, - 233,188,216,113,243,206,159,175,216,79,55,43,101,140,37,66,237,249,164,82, - 187,232,183,76,203,78,175,17,59,34,81,232,236,126,224,52,114,145,90,164, - 52,221,84,237,79,231,75,137,109,145,137,200,137,227,137,78,46,73,177,174, - 162,192,165,106,255,209,56,214,67,31,78,196,99,162,85,76,45,127,0,253, - 30,6,233,57,62,142,153,110,205,208,161,198,52,77,244,246,246,166,188,198, - 73,4,185,71,132,62,56,241,40,90,234,246,230,223,107,57,46,40,201,39, - 18,243,224,128,228,181,28,233,184,155,221,152,147,221,56,22,133,10,67,170, - 113,56,17,59,87,15,21,0,222,129,208,160,23,222,81,208,241,44,42,28, - 162,200,137,86,140,56,54,39,94,43,6,104,216,117,124,78,109,64,161,11, - 48,139,174,68,160,127,251,83,235,200,46,80,133,187,56,237,68,78,108,107, - 39,161,166,110,84,222,86,116,18,185,24,45,41,182,127,46,201,245,152,17, - 181,220,168,37,158,233,125,118,191,27,187,253,4,243,129,76,68,144,11,31, - 247,200,240,232,77,46,130,64,250,113,65,69,81,164,8,74,114,134,74,159, - 64,121,7,43,138,27,189,38,157,245,37,30,23,197,77,116,79,166,74,143, - 94,67,163,249,168,91,82,156,132,44,10,28,47,55,77,211,201,197,40,214, - 211,206,74,203,196,114,163,136,79,233,60,15,49,170,83,108,127,39,113,19, - 45,183,84,46,75,90,95,167,142,131,62,137,211,246,162,34,156,170,253,211, - 61,176,12,37,185,114,81,82,49,23,31,142,236,172,94,254,151,254,47,237, - 190,23,177,229,176,250,44,55,238,98,28,41,88,150,149,52,85,163,167,167, - 167,223,53,233,198,5,185,215,34,83,17,20,199,5,101,112,140,100,32,168, - 98,167,78,59,88,59,11,77,116,201,216,193,239,19,87,230,119,26,127,19, - 223,139,2,35,118,50,116,94,16,133,11,28,21,55,90,30,59,215,146,88, - 110,90,6,234,218,163,215,164,179,218,68,203,144,166,43,142,141,165,107,127, - 209,202,179,115,65,82,145,19,167,16,0,201,174,82,187,178,82,183,36,205, - 135,62,56,56,181,255,104,29,123,225,238,68,94,119,26,49,106,24,134,99, - 128,141,157,213,198,211,18,191,83,185,114,81,230,18,46,218,131,9,142,161, - 34,200,199,6,249,57,25,28,35,25,8,42,253,129,209,221,160,57,162,245, - 99,247,222,238,26,209,114,179,115,201,137,194,39,166,193,159,234,104,199,75, - 119,170,230,107,77,210,177,35,186,167,27,77,91,124,210,118,170,151,104,213, - 137,110,80,177,190,252,26,158,14,181,122,69,33,164,238,86,46,94,169,218, - 159,94,71,219,148,214,203,78,232,168,171,82,108,71,90,126,187,123,105,185, - 104,89,157,218,63,151,228,58,138,146,10,156,248,16,192,173,87,209,234,21, - 31,106,120,59,137,150,27,127,241,85,71,78,37,78,70,4,179,21,28,35, - 25,221,168,0,146,58,85,209,90,113,114,65,137,99,87,20,209,194,160,157, - 173,232,102,162,29,130,24,128,33,90,20,78,79,100,180,163,161,110,63,81, - 200,104,7,47,138,139,152,182,221,211,182,147,107,147,99,183,61,136,147,11, - 139,150,47,85,251,219,69,238,57,89,196,244,56,23,58,218,241,166,122,209, - 180,197,180,82,181,127,46,93,148,185,90,153,131,6,79,208,249,159,188,99, - 21,221,212,20,241,255,76,197,141,138,30,127,69,34,145,156,212,105,164,145, - 137,8,2,131,15,142,41,42,42,68,40,20,202,69,149,36,195,64,194,207, - 146,201,120,18,253,98,112,247,1,221,216,147,195,63,211,113,38,209,101,41, - 90,82,162,184,209,180,0,251,221,180,237,202,151,41,212,50,116,18,55,106, - 173,80,87,165,248,20,207,143,113,196,109,108,196,54,73,149,103,42,82,185, - 118,237,112,234,136,197,116,104,90,118,229,6,156,219,63,151,110,160,41,83, - 166,228,36,31,26,101,10,36,63,144,152,166,153,180,63,156,157,139,145,62, - 180,136,22,27,109,63,187,239,137,100,96,12,54,56,38,182,118,237,200,25, - 7,149,12,12,21,72,158,155,227,52,46,192,159,130,196,137,193,78,22,4, - 125,209,117,18,105,122,244,175,120,92,68,116,19,210,251,51,89,245,157,167, - 97,119,78,180,242,104,103,78,255,242,246,113,178,172,232,121,17,209,13,104, - 87,55,126,191,83,251,139,101,119,234,28,249,184,68,42,43,131,166,107,135, - 83,25,197,246,207,37,115,230,204,201,73,62,186,174,39,158,246,121,125,117, - 93,79,218,66,70,12,242,225,80,107,205,78,220,68,143,128,20,184,236,147, - 73,112,140,29,227,39,148,161,173,245,88,210,177,183,223,126,123,72,203,38, - 201,46,42,127,146,180,235,120,233,88,12,21,55,113,37,14,160,191,96,57, - 205,201,74,135,157,8,137,79,195,116,124,139,142,57,217,9,128,232,34,20, - 59,21,218,1,241,207,60,79,59,43,142,150,137,94,79,211,19,223,243,50, - 210,182,226,47,30,176,97,215,254,162,203,145,70,153,217,181,27,47,39,31, - 115,163,86,153,216,217,58,137,31,205,91,116,161,218,181,255,170,85,171,108, - 239,207,6,87,94,121,101,210,255,60,83,196,255,159,232,34,166,46,116,218, - 62,219,183,111,199,251,239,191,15,160,47,16,130,175,144,195,119,91,231,155, - 210,2,201,174,71,62,246,198,195,224,249,158,126,124,109,87,190,74,80,87, - 87,23,230,212,93,62,148,205,36,25,2,222,221,179,75,138,217,40,64,21, - 59,116,187,144,118,234,82,20,133,204,105,252,70,124,186,165,29,38,189,199, - 169,83,23,159,122,233,252,48,113,229,124,46,180,180,243,181,179,164,236,196, - 199,201,85,40,138,66,58,203,133,230,45,10,19,255,75,199,197,104,94,118, - 237,47,150,139,135,167,139,150,153,40,108,98,121,232,103,209,58,180,43,135, - 221,245,169,218,127,229,202,149,182,237,145,13,114,153,87,46,89,177,252,199, - 195,93,4,9,33,19,113,251,194,23,190,144,163,210,72,6,131,202,24,75, - 138,134,163,79,183,78,214,130,93,71,78,239,17,3,74,156,198,215,232,189, - 226,83,181,104,61,208,149,61,120,218,116,240,152,71,79,113,235,133,118,252, - 52,250,205,78,228,232,123,59,113,115,186,135,166,231,36,124,92,124,233,122, - 147,162,37,229,212,254,118,136,245,162,86,29,21,97,59,193,75,229,34,115, - 178,234,184,133,239,212,254,146,193,115,209,197,95,28,238,34,72,36,163,18, - 85,156,44,77,59,76,234,150,20,197,201,110,204,13,72,158,30,192,255,114, - 55,16,61,206,211,116,58,198,203,194,93,61,60,172,215,110,252,131,135,9, - 219,141,117,80,215,159,56,54,69,243,20,173,33,241,156,211,125,226,103,209, - 122,163,161,204,220,149,74,173,203,116,237,111,103,173,217,189,168,184,209,192, - 31,39,139,207,201,93,73,133,143,78,250,119,106,127,137,68,34,201,87,84, - 222,169,241,57,101,64,255,240,116,59,87,37,61,231,100,201,217,185,49,237, - 44,63,154,54,141,212,164,226,198,119,11,0,144,36,24,138,210,183,97,40, - 29,127,18,35,216,68,75,209,201,61,151,202,109,231,132,120,191,40,114,118, - 43,171,240,50,166,106,127,94,7,42,82,84,180,105,125,41,116,220,83,44, - 167,221,88,28,125,209,50,80,113,115,106,127,137,68,34,201,87,84,222,145, - 1,201,115,157,68,43,194,174,179,79,39,124,162,229,147,202,237,70,239,161, - 110,52,93,215,19,251,162,25,134,145,52,177,147,142,107,169,170,154,112,245, - 137,243,202,196,136,71,59,87,28,255,44,186,32,197,250,166,106,7,241,152, - 219,237,78,44,250,204,67,203,105,152,56,181,148,128,254,237,79,255,218,185, - 37,237,220,147,252,90,39,129,19,173,62,218,214,188,189,104,24,123,186,246, - 151,72,36,146,124,69,229,29,26,237,12,105,40,60,31,35,114,178,206,56, - 118,193,36,118,110,73,39,49,224,80,215,29,143,60,11,133,66,137,165,119, - 84,85,133,215,235,77,114,249,113,11,142,238,42,64,173,34,49,66,209,201, - 213,40,90,66,169,246,243,178,171,7,21,22,94,78,190,43,51,157,55,197, - 197,131,70,220,57,181,63,191,158,111,68,42,142,225,209,200,86,113,10,131, - 184,92,153,152,190,104,209,209,177,57,30,1,152,174,253,37,18,137,36,95, - 81,197,142,14,112,182,100,156,92,118,118,157,189,24,216,97,151,70,42,11, - 131,111,98,202,67,171,117,93,135,203,229,74,218,14,71,28,135,243,122,189, - 136,70,163,137,113,40,59,23,37,207,215,206,53,41,142,87,241,137,236,244, - 26,167,250,242,227,220,170,228,203,12,249,124,190,164,205,89,185,240,242,21, - 46,210,181,191,120,204,110,170,0,29,119,163,203,109,217,9,180,40,140,226, - 188,45,46,190,124,195,213,116,237,47,145,72,36,249,138,10,244,5,58,208, - 165,157,168,53,67,197,74,180,54,156,198,227,40,84,220,156,198,227,248,103, - 42,110,161,80,8,61,61,61,8,135,195,176,44,203,86,220,128,152,245,194, - 39,230,210,178,211,57,126,212,154,20,5,196,78,76,196,115,244,94,39,68, - 177,245,249,124,240,251,253,137,133,99,185,184,209,157,16,50,105,127,90,22, - 234,166,164,101,113,90,162,204,206,58,182,27,139,163,214,36,31,115,203,180, - 253,37,18,137,36,31,73,172,100,34,254,181,235,248,129,244,11,36,243,247, - 212,85,38,98,55,102,71,173,27,77,211,16,10,133,208,221,221,157,112,143, - 169,170,10,191,223,143,64,32,0,159,207,151,216,173,155,151,131,143,13,113, - 129,164,105,218,5,80,136,245,178,19,46,81,100,104,217,233,125,116,188,146, - 238,40,94,80,80,144,52,133,129,70,35,82,129,203,164,253,249,123,113,194, - 189,56,111,209,206,53,44,90,166,180,110,226,60,55,234,22,206,164,253,37, - 18,137,36,95,73,90,139,146,206,35,163,22,130,157,149,150,234,233,157,187, - 247,68,209,176,115,83,82,1,226,226,22,12,6,209,221,221,141,222,222,94, - 68,34,17,40,138,146,232,92,253,126,191,237,110,1,138,162,36,89,113,116, - 44,143,70,255,137,243,191,196,242,240,52,169,80,136,110,74,106,5,210,57, - 127,84,4,248,74,23,188,76,60,96,35,26,141,218,110,247,147,73,251,211, - 169,0,220,45,41,174,15,202,5,80,20,63,49,47,177,125,184,229,22,14, - 135,7,212,254,18,137,68,146,175,36,118,19,176,11,196,16,59,89,42,108, - 212,162,224,240,115,118,209,152,52,93,218,97,243,124,120,80,67,48,24,68, - 79,79,15,186,187,187,161,105,26,24,99,253,68,131,78,17,224,121,240,142, - 157,187,3,233,66,182,162,5,42,134,221,139,22,14,189,222,78,220,196,180, - 248,152,155,207,231,75,148,51,16,8,36,182,240,224,1,51,124,121,38,113, - 55,236,129,180,63,45,39,183,92,69,247,171,203,229,234,23,24,100,103,37, - 210,136,201,104,52,154,120,184,24,104,251,75,36,18,73,62,162,2,201,46, - 67,49,220,156,238,173,196,59,115,250,215,9,39,23,165,104,189,241,128,11, - 62,230,115,226,196,9,244,244,244,32,24,12,38,86,110,47,40,40,64,97, - 97,33,252,126,127,194,229,103,231,30,21,203,70,197,139,78,80,166,101,17, - 93,142,162,248,81,104,158,116,138,2,15,40,225,110,73,238,198,227,66,203, - 199,20,185,184,137,251,168,13,180,253,185,133,44,90,164,116,158,29,47,163, - 216,246,84,224,168,85,57,152,246,151,72,36,146,124,196,118,91,98,58,174, - 4,244,133,182,211,113,38,187,78,151,118,210,226,42,28,0,146,196,134,167, - 105,24,70,98,204,167,167,167,7,189,189,189,137,160,6,143,199,131,226,226, - 98,20,21,21,161,160,160,32,17,176,97,39,156,84,36,184,117,33,238,74, - 46,6,101,208,249,100,226,57,209,61,72,3,109,0,36,173,80,194,45,55, - 62,246,198,119,39,230,209,136,116,145,221,76,118,26,206,180,253,121,59,243, - 207,220,101,73,3,81,236,210,166,109,175,235,250,144,180,191,68,34,145,228, - 27,73,2,71,67,208,237,58,89,126,158,90,47,78,187,6,56,5,104,112, - 247,28,237,92,131,193,32,194,225,112,98,204,7,0,60,30,15,138,138,138, - 18,29,108,32,16,72,218,135,139,187,14,185,27,144,167,159,202,122,225,127, - 249,61,116,110,154,56,54,199,221,157,98,249,105,189,233,60,55,254,158,138, - 27,119,251,241,137,210,233,196,109,48,237,79,119,84,112,178,156,21,165,111, - 247,130,161,106,127,137,68,34,201,87,84,49,132,95,236,128,169,181,64,87, - 8,161,235,44,138,2,231,244,132,79,93,146,116,251,144,216,166,131,49,23, - 30,23,142,130,130,2,20,21,21,161,168,168,40,41,212,222,46,34,146,142, - 53,217,149,157,67,203,38,78,51,224,105,137,214,156,120,47,93,251,146,151, - 139,79,124,230,81,156,220,245,199,235,167,105,90,210,188,55,154,38,103,164, - 182,191,68,34,145,228,43,9,19,133,90,13,98,72,58,237,100,169,5,198, - 239,227,157,171,184,131,55,135,186,196,232,218,134,252,47,239,252,105,20,98, - 97,97,33,10,11,11,19,86,17,23,15,94,46,209,5,106,23,80,97,23, - 24,67,143,137,86,167,24,228,65,211,228,117,227,110,73,30,38,79,3,46, - 168,101,196,93,147,52,106,210,73,220,70,122,251,75,36,18,73,62,146,228, - 131,19,45,10,126,140,118,236,140,197,54,111,4,144,216,62,69,28,175,18, - 163,246,196,49,31,254,151,186,221,248,164,104,30,173,231,247,251,147,230,91, - 137,229,161,249,57,133,249,139,101,178,115,165,138,145,136,226,132,105,81,64, - 232,242,96,116,252,145,206,35,163,47,59,113,19,219,120,164,183,191,68,34, - 145,228,35,182,65,38,118,22,15,63,206,59,91,62,153,154,142,233,240,206, - 86,92,254,137,11,128,184,122,6,95,140,152,143,99,241,14,150,47,80,44, - 110,240,73,203,38,150,215,46,132,223,206,157,198,215,117,164,215,81,161,3, - 146,119,35,167,243,220,68,235,136,90,84,186,174,39,44,55,46,34,162,0, - 137,101,115,98,164,181,191,68,34,145,228,35,182,2,7,36,207,95,227,29, - 45,183,92,232,53,186,174,39,58,127,113,156,73,236,24,249,189,188,227,228, - 225,245,226,139,119,226,180,51,181,115,189,165,195,78,248,40,180,179,167,98, - 40,230,195,211,17,231,204,209,253,210,168,117,196,143,59,137,91,166,101,31, - 233,237,47,145,72,36,195,137,163,192,81,196,78,159,143,201,24,134,145,88, - 197,159,47,63,69,93,95,116,41,42,126,47,13,212,224,86,2,29,207,18, - 231,215,81,23,97,186,50,114,156,198,228,248,113,187,181,31,249,123,110,197, - 209,53,55,197,160,13,46,34,84,204,168,21,101,23,168,226,228,78,205,132, - 145,208,254,18,137,68,146,111,100,36,112,64,255,229,171,248,123,59,151,152, - 216,193,210,52,232,184,150,24,222,238,228,126,28,104,231,154,202,114,163,86, - 149,104,177,81,87,101,170,124,69,215,31,253,236,20,129,201,239,59,89,70, - 82,251,75,36,18,73,62,160,48,198,216,238,221,187,209,220,220,140,104,52, - 138,194,194,194,126,251,125,57,5,63,56,145,238,26,26,205,23,12,6,225, - 245,122,81,89,89,137,25,51,102,160,165,165,5,45,45,45,120,249,229,151, - 97,24,70,98,226,180,184,36,213,80,150,71,220,220,83,85,85,92,121,229, - 149,40,47,47,7,0,180,180,180,228,69,251,148,151,151,99,199,142,29,142, - 233,14,53,45,45,45,152,58,117,106,210,218,150,162,88,115,161,165,238,91, - 209,181,10,208,69,162,25,24,75,94,40,186,169,169,9,19,38,76,200,89, - 189,174,190,250,234,156,229,37,201,13,114,241,1,137,29,234,123,239,189,135, - 15,63,252,16,231,159,127,62,206,56,227,12,20,20,20,0,72,142,200,163, - 100,50,7,42,221,53,188,115,180,44,11,225,112,24,199,142,29,195,7,31, - 124,144,16,140,151,94,122,9,149,149,149,24,55,110,28,124,62,95,78,203, - 19,141,70,209,222,222,142,151,94,122,9,215,92,115,13,0,228,93,251,92, - 126,249,229,40,45,45,237,39,36,153,252,229,56,89,183,0,208,219,219,139, - 215,95,127,29,193,96,16,157,157,157,0,146,59,16,58,225,156,222,199,24, - 75,218,89,157,90,153,0,159,211,103,192,52,145,116,175,166,105,57,173,87, - 87,87,151,99,219,75,36,146,209,131,218,219,219,139,64,32,128,242,242,114, - 20,20,20,56,6,88,216,117,58,252,188,72,186,107,184,43,207,229,114,161, - 168,168,8,103,158,121,38,14,28,56,128,222,222,94,188,251,238,187,240,249, - 124,56,237,180,211,224,247,251,251,221,159,205,242,184,221,110,4,2,1,156, - 126,250,233,104,105,105,193,246,237,219,241,249,207,127,62,175,218,7,0,122, - 122,122,108,167,51,216,165,39,150,141,158,23,131,81,248,248,100,48,24,4, - 0,116,116,116,36,45,94,205,55,128,21,235,106,154,102,98,10,3,93,182, - 13,64,34,248,165,111,18,188,2,85,237,139,102,181,44,11,173,173,173,56, - 251,236,179,115,86,47,46,168,146,252,37,28,14,3,72,254,95,241,254,32, - 16,8,12,75,153,36,35,15,85,215,117,148,149,149,33,16,8,244,11,102, - 0,250,207,173,162,231,237,198,186,210,93,67,207,243,14,40,16,8,160,172, - 172,12,145,72,4,166,105,246,179,220,114,89,30,198,24,124,62,31,198,141, - 27,7,93,215,241,241,199,31,99,234,212,169,121,209,62,31,126,248,33,198, - 142,29,139,246,246,118,68,34,145,164,241,51,126,159,184,88,51,191,134,143, - 209,241,206,190,207,221,107,37,44,42,69,81,16,137,68,18,157,10,157,224, - 77,167,80,136,86,19,143,206,180,19,106,126,158,239,104,174,170,74,82,122, - 138,162,36,172,226,92,213,139,119,148,146,252,67,211,52,52,55,55,227,197, - 23,119,163,161,161,5,123,247,30,67,87,23,80,82,2,76,155,86,134,218, - 218,114,92,115,205,12,84,86,86,202,255,163,36,45,234,103,159,125,134,115, - 207,61,183,223,170,245,28,177,51,179,59,118,50,215,80,55,156,101,89,8, - 4,2,248,240,195,15,209,210,210,130,234,234,234,36,55,216,96,243,202,244, - 26,94,30,46,114,135,14,29,66,113,113,49,2,129,64,94,180,15,135,11, - 15,143,130,52,12,163,223,2,204,84,20,168,59,81,81,148,196,122,153,0, - 96,24,12,62,31,18,233,120,189,222,132,16,248,124,62,219,77,77,105,89, - 233,162,206,162,181,37,142,211,217,141,147,240,64,151,92,214,171,164,164,164, - 95,57,36,195,143,166,105,216,180,105,55,30,127,124,7,128,18,204,152,81, - 139,43,175,41,69,73,137,31,93,93,26,154,155,59,177,101,75,51,26,26, - 182,224,150,91,102,226,234,171,107,165,200,73,82,162,134,66,33,120,60,30, - 116,119,119,39,45,59,37,90,42,67,9,183,148,98,46,43,51,17,238,206, - 113,187,221,8,6,131,253,34,252,114,81,30,62,121,155,118,236,249,214,62, - 220,109,200,59,120,190,194,10,21,18,106,37,217,185,14,249,113,159,175,207, - 210,225,46,67,110,145,113,203,11,72,237,106,21,23,165,166,231,197,124,105, - 254,220,229,201,173,245,92,213,75,142,193,229,31,154,166,97,195,134,45,120, - 122,67,51,42,167,77,195,188,43,167,161,180,196,15,191,31,208,0,148,106, - 64,229,180,50,76,159,94,142,141,27,247,226,95,87,239,64,75,203,49,92, - 127,253,92,41,114,18,71,84,32,217,101,67,199,135,232,147,50,61,47,30, - 19,201,228,26,122,157,88,6,222,225,137,215,102,187,60,20,90,134,124,107, - 31,0,240,122,189,9,209,179,219,194,70,236,240,237,172,97,142,203,213,103, - 141,137,233,218,89,112,98,186,34,162,187,149,167,45,150,139,151,137,150,61, - 23,245,146,99,112,249,69,56,28,198,222,189,205,120,250,197,70,248,203,107, - 80,94,83,14,127,137,31,240,3,90,0,0,2,64,32,12,132,1,127,121, - 9,202,166,151,161,69,11,227,233,23,27,49,109,90,25,166,77,171,28,238, - 42,72,242,148,148,243,224,82,117,94,3,189,111,40,144,229,73,190,95,236, - 252,157,210,77,23,66,205,5,219,229,114,37,141,99,209,245,47,69,1,225, - 215,167,75,147,191,167,121,208,52,236,166,127,100,187,94,242,137,63,191,8, - 135,195,216,180,105,47,58,3,149,8,248,129,22,0,199,52,13,37,240,35, - 246,159,226,1,39,241,135,147,210,0,58,75,2,64,184,18,155,54,237,149, - 2,39,113,100,192,2,55,20,216,61,109,103,130,44,79,12,113,98,182,157, - 5,73,59,127,187,177,49,59,43,139,46,190,12,32,41,176,132,166,109,151, - 31,205,75,252,204,199,205,156,44,62,186,63,95,46,234,197,199,224,54,109, - 218,132,134,134,6,236,217,179,71,138,94,142,208,52,13,211,167,79,71,109, - 109,45,230,205,155,7,0,184,230,154,107,208,208,92,9,76,155,11,248,253, - 104,233,12,99,119,51,80,94,226,135,63,16,19,57,13,128,22,214,208,169, - 1,205,45,97,192,239,71,87,41,240,244,166,29,216,187,119,227,176,214,73, - 146,191,168,0,18,235,25,138,193,19,217,234,192,237,160,29,165,97,24,73, - 193,28,195,177,122,61,45,79,190,181,15,93,110,11,72,222,40,149,190,167, - 247,210,113,67,113,199,117,0,9,11,135,6,141,164,18,28,59,104,154,244, - 30,158,39,117,119,82,87,47,221,201,33,23,245,234,234,234,194,150,45,91, - 176,97,195,6,148,150,150,202,136,188,28,162,105,26,142,29,59,134,167,159, - 126,26,154,166,97,238,220,185,40,43,43,131,214,17,167,55,27,0,0,32, - 0,73,68,65,84,89,137,146,18,63,74,75,99,227,110,177,107,227,55,5, - 0,45,220,103,193,5,252,64,105,169,31,26,128,174,146,74,148,149,133,135, - 171,58,146,60,71,5,250,58,178,108,4,116,100,106,29,217,137,199,64,58, - 215,108,150,39,223,218,135,127,166,145,133,28,59,17,73,101,129,241,247,60, - 140,95,172,119,170,213,90,236,220,148,78,255,47,113,44,143,223,199,235,144, - 203,122,105,154,134,189,123,247,162,178,178,18,165,165,165,0,100,100,101,174, - 232,234,234,66,56,28,70,73,73,9,246,238,221,139,218,218,90,148,150,150, - 162,164,178,18,229,165,126,148,151,148,162,164,212,143,82,127,76,232,252,129, - 62,193,3,128,82,191,31,72,216,116,157,64,101,37,74,75,91,134,169,54, - 146,124,39,73,224,128,220,90,73,78,136,29,222,112,147,111,237,163,40,125, - 123,211,1,246,150,147,147,59,144,95,99,103,13,137,22,20,253,63,136,121, - 80,235,73,204,143,158,227,227,119,78,227,101,226,67,76,46,234,229,247,251, - 209,210,210,130,242,242,114,148,149,149,1,64,66,232,36,217,165,180,180,20, - 157,157,157,208,52,13,45,45,205,240,251,253,40,41,41,65,105,103,24,229, - 37,149,40,43,143,137,91,73,192,143,64,73,0,126,196,254,95,154,166,65, - 43,9,32,220,21,142,31,3,128,82,104,157,45,242,225,68,226,72,210,142, - 222,217,232,188,237,210,204,196,106,145,229,201,236,62,59,225,77,37,0,244, - 189,211,60,60,209,189,104,151,166,120,156,78,196,22,219,138,138,29,125,15, - 160,159,165,150,139,122,149,148,148,160,182,182,22,225,112,24,129,64,64,118, - 144,57,196,239,247,195,239,247,163,179,179,19,149,149,181,40,41,41,137,253, - 15,208,21,183,220,74,80,82,26,64,105,9,224,71,108,12,14,136,89,114, - 90,88,131,191,12,64,87,0,232,12,67,43,237,66,73,115,151,92,217,68, - 226,72,202,13,79,179,133,56,231,140,111,24,234,68,46,202,3,244,5,35, - 48,198,18,235,41,14,87,121,82,181,79,42,183,32,29,219,226,199,168,8, - 137,187,17,208,60,45,171,255,189,116,236,145,142,133,138,59,21,80,107,139, - 78,200,230,174,68,113,12,141,190,167,99,112,185,168,87,87,87,23,42,43, - 43,209,216,216,152,232,112,101,39,153,27,248,18,92,129,64,0,149,149,149, - 232,234,234,66,89,89,25,202,155,155,81,90,194,197,45,110,193,249,99,83, - 5,184,67,50,224,247,35,172,105,241,79,241,192,147,64,39,202,202,100,20, - 165,196,30,21,112,238,176,197,121,94,67,213,177,211,244,196,16,238,225,42, - 143,232,114,203,196,114,24,174,246,161,215,165,27,3,179,179,110,236,172,209, - 190,188,250,142,137,219,6,165,107,19,81,188,168,32,58,229,201,243,201,101, - 189,52,77,75,4,150,104,154,134,206,206,78,233,162,204,17,225,112,56,17, - 216,83,90,90,10,77,211,98,159,75,154,209,121,108,15,74,43,231,38,196, - 205,95,18,19,55,63,15,50,241,3,232,234,27,144,107,222,219,128,202,18, - 233,94,150,56,51,44,211,4,196,244,237,58,180,225,44,15,144,217,246,27, - 195,213,62,118,86,80,186,52,248,123,113,87,114,122,141,203,213,63,90,83, - 20,56,59,55,38,144,126,186,0,95,145,132,158,231,159,197,64,150,108,215, - 139,71,76,86,86,202,39,255,92,99,215,230,211,167,79,7,0,108,105,216, - 139,150,189,229,40,159,59,19,126,63,80,18,0,2,241,152,146,128,31,8, - 107,64,23,0,104,126,236,221,189,7,165,157,123,49,183,118,70,226,126,137, - 68,100,88,5,142,231,145,105,62,178,60,201,199,236,2,46,210,29,167,75, - 95,137,240,227,52,200,132,46,17,198,133,132,95,71,133,197,46,2,83,92, - 117,132,90,89,124,218,64,242,2,201,185,169,151,28,115,203,47,248,3,135, - 166,105,104,104,108,64,243,158,48,102,206,157,139,64,73,44,152,196,143,184, - 245,22,159,54,176,99,199,22,104,45,123,80,59,163,18,211,167,79,79,236, - 219,40,145,136,12,219,60,56,241,105,155,50,28,243,224,82,149,39,223,218, - 103,176,249,59,221,39,230,41,6,128,240,99,116,204,139,186,31,83,185,17, - 197,114,83,55,166,104,157,102,187,94,114,45,202,252,131,143,201,117,118,118, - 98,239,238,77,216,216,184,3,149,51,166,97,218,244,233,152,86,89,137,230, - 230,102,236,221,179,7,205,187,247,2,90,39,166,85,86,162,178,178,18,129, - 64,64,46,189,38,113,68,206,131,203,160,60,249,214,62,188,76,118,174,61, - 106,197,136,129,25,78,214,141,152,135,25,31,176,226,107,65,138,150,19,77, - 135,207,51,163,15,0,226,148,1,187,181,34,169,192,209,197,154,115,81,47, - 217,33,230,39,101,101,101,152,49,99,6,74,75,75,209,220,220,140,230,45, - 91,208,176,97,3,52,77,131,223,239,71,121,121,57,202,203,203,81,89,19, - 219,46,135,79,241,144,255,79,137,19,114,30,92,6,228,91,251,240,8,75, - 0,253,44,203,76,239,23,239,225,46,68,186,192,49,223,190,70,188,134,10, - 188,101,89,9,55,166,56,13,128,187,34,249,57,14,189,159,231,153,203,122, - 201,85,75,242,19,30,205,90,86,86,134,202,202,74,132,195,97,116,117,117, - 37,4,142,79,41,224,251,87,202,255,163,36,29,114,30,220,8,45,15,119, - 237,81,241,21,59,120,209,210,161,247,242,188,169,104,113,215,48,135,46,132, - 12,36,47,157,101,103,209,209,252,237,118,1,176,179,186,68,11,47,23,245, - 146,99,112,249,15,31,87,179,219,209,91,10,155,36,83,228,60,56,140,188, - 121,112,116,236,74,220,27,141,191,167,215,138,1,26,162,112,208,107,104,189, - 249,110,2,118,229,19,5,199,9,46,84,78,215,40,138,2,93,215,97,24, - 70,206,234,37,199,224,70,38,92,236,164,75,82,146,41,3,154,7,103,135, - 24,54,46,226,20,104,192,255,14,102,30,220,80,150,103,40,230,193,13,101, - 121,248,95,167,246,17,59,112,167,121,114,78,86,144,221,181,226,188,55,209, - 130,75,103,69,165,251,44,194,211,224,187,110,231,170,94,178,131,148,72,78, - 13,6,61,77,96,48,214,140,216,145,15,69,94,67,81,30,96,232,230,193, - 101,163,125,20,37,182,139,182,199,227,25,180,53,73,5,152,7,124,112,171, - 141,238,168,78,243,166,238,68,211,52,109,199,189,168,72,217,137,60,63,46, - 6,149,228,162,94,210,197,37,145,156,26,200,121,112,54,121,140,132,242,112, - 119,106,186,177,46,106,233,208,52,105,58,64,242,152,24,143,54,228,203,88, - 209,180,69,139,137,139,17,157,104,109,39,104,124,156,141,49,128,31,166,105, - 133,66,161,156,213,75,142,193,73,36,167,6,253,92,148,118,99,27,226,123, - 241,30,122,77,170,14,136,146,206,125,101,119,237,112,149,39,223,218,199,52, - 77,4,131,193,126,193,19,98,94,169,16,163,28,121,58,145,72,4,209,104, - 20,64,76,224,120,244,33,189,142,138,24,79,75,156,38,64,243,16,203,66, - 243,165,215,231,170,94,114,12,78,34,57,53,112,140,162,228,131,253,118,29, - 115,98,178,175,162,0,164,179,231,127,233,121,139,164,151,56,70,220,83,116, - 28,134,98,87,30,81,88,232,117,177,242,41,80,148,228,142,208,238,60,63, - 222,119,44,217,234,176,115,153,158,76,251,40,138,43,169,60,98,251,40,138, - 11,64,95,71,204,143,49,102,165,108,159,119,223,125,55,195,127,239,224,240, - 122,189,240,120,60,142,225,247,188,124,226,196,124,81,196,105,251,136,162,71, - 199,217,114,85,47,57,6,39,145,156,26,36,9,28,13,207,166,147,154,237, - 6,251,105,135,107,119,13,63,239,182,185,199,69,162,22,157,66,190,169,208, - 216,5,31,216,89,5,98,121,196,99,241,119,253,142,197,220,102,201,161,229, - 118,229,201,70,251,208,22,234,139,28,236,219,12,84,44,207,215,190,246,53, - 72,6,71,71,71,199,112,23,65,34,145,228,128,132,139,146,15,246,211,14, - 220,105,5,138,129,70,206,217,29,163,79,244,118,129,12,220,106,161,194,150, - 237,242,240,177,31,113,93,197,124,107,31,201,224,24,55,110,220,112,23,65, - 34,145,228,128,36,129,83,20,5,30,143,39,33,44,212,234,160,238,38,110, - 89,48,69,1,108,214,37,164,231,221,54,199,148,184,165,228,118,187,17,141, - 70,109,195,224,249,103,62,6,228,100,41,37,91,94,12,150,213,127,37,20, - 122,30,112,245,59,198,88,223,103,93,215,109,215,71,60,153,246,17,203,35, - 182,143,162,48,40,138,187,223,49,94,30,167,246,145,72,36,18,73,122,18, - 75,117,169,170,138,64,32,208,111,121,38,142,93,112,132,83,32,5,125,239, - 20,140,1,196,22,85,118,187,221,182,22,147,219,237,134,207,231,131,170,170, - 253,198,231,178,85,30,46,36,162,53,149,111,237,35,145,72,36,146,244,184, - 0,160,181,181,21,62,159,15,129,64,192,182,243,6,250,7,89,216,117,184, - 118,231,83,221,163,170,42,124,62,31,188,94,47,62,251,236,179,196,241,174, - 174,46,120,60,30,248,124,62,91,113,203,86,121,220,110,119,66,192,58,59, - 59,1,0,19,38,76,200,187,246,145,72,36,18,73,122,92,167,159,126,58, - 26,27,27,135,205,66,224,238,191,189,123,247,226,244,211,79,199,216,177,99, - 113,240,224,193,97,47,207,39,159,124,130,177,99,199,194,178,172,188,105,31, - 137,68,34,145,100,142,171,176,176,16,45,45,45,88,191,126,61,246,237,219, - 151,243,2,236,219,183,15,235,215,175,71,75,75,11,10,11,11,225,247,251, - 209,222,222,142,215,94,123,13,71,142,28,201,121,121,142,28,57,130,215,94, - 123,13,237,237,237,240,251,253,200,167,246,57,231,156,115,114,158,191,68,34, - 145,140,84,148,189,123,247,178,125,251,246,225,47,127,249,11,14,28,56,128, - 206,206,78,68,34,145,140,39,97,159,116,198,138,2,159,207,135,210,210,82, - 76,158,60,25,23,92,112,1,170,171,171,1,0,47,189,244,18,14,28,56, - 128,163,71,143,162,167,167,7,186,174,231,164,60,30,143,7,197,197,197,56, - 243,204,51,49,121,242,100,92,117,213,85,0,98,34,147,47,237,83,83,83, - 147,213,124,37,18,137,100,180,160,48,198,216,177,99,199,208,214,214,134,246, - 246,246,196,74,18,185,232,192,85,85,69,97,97,33,78,59,237,52,140,31, - 63,30,101,101,101,208,52,13,93,93,93,104,107,107,195,214,173,91,17,14, - 135,97,154,102,78,202,227,118,187,17,8,4,48,103,206,28,140,31,63,62, - 177,164,19,47,207,112,183,79,73,73,9,10,10,10,178,154,175,68,34,145, - 140,22,20,6,100,183,167,150,72,36,18,73,94,226,26,229,209,217,114,114, - 149,68,34,145,72,70,37,82,224,36,18,137,68,50,42,145,2,39,145,72, - 36,146,81,137,20,56,137,68,34,145,140,74,164,192,73,36,18,137,100,84, - 146,114,71,111,73,127,50,137,57,146,97,169,18,201,169,129,130,225,253,189, - 15,119,254,249,206,232,16,56,58,39,45,7,97,175,169,230,192,201,69,145, - 37,146,83,3,5,100,209,244,83,48,255,145,192,73,205,131,19,187,112,38, - 28,203,105,99,11,43,240,179,216,238,165,89,205,146,127,177,250,29,63,21, - 191,104,98,59,228,90,224,135,59,255,83,16,167,22,62,149,190,251,98,31, - 144,235,223,254,80,229,63,218,231,193,13,122,162,55,111,158,97,249,114,219, - 108,57,19,59,156,123,145,59,85,197,205,110,75,160,156,137,76,14,243,31, - 214,239,249,0,200,102,57,19,105,59,120,48,18,219,62,101,33,239,124,98, - 184,31,112,135,50,255,209,46,112,35,55,200,196,65,220,114,150,61,146,183, - 188,25,237,63,234,126,208,125,236,200,75,81,148,254,86,213,40,201,159,49, - 150,209,24,236,112,225,212,241,13,101,218,169,210,79,108,34,156,149,18,228, - 7,169,218,56,23,117,31,238,252,71,26,35,126,12,110,56,45,8,222,161, - 158,170,226,198,235,77,173,134,68,155,100,243,255,144,98,220,33,219,249,231, - 235,152,71,46,196,45,233,152,221,239,142,188,207,199,54,26,42,134,123,156, - 125,184,243,31,73,140,76,129,35,214,27,48,188,255,240,92,143,55,2,72, - 221,113,103,114,205,32,203,144,73,123,103,77,100,114,156,255,72,237,74,178, - 234,170,20,196,107,164,182,209,201,48,220,162,61,220,249,143,52,70,174,139, - 50,78,174,199,222,134,13,198,224,202,80,201,93,177,222,61,187,197,65,172, - 99,163,5,226,159,115,241,35,164,249,139,175,161,202,159,142,57,81,87,120, - 190,185,130,168,133,197,133,61,241,121,8,211,78,164,159,226,60,39,223,218, - 72,114,106,50,242,4,78,176,222,78,9,6,32,110,156,92,136,220,169,128, - 157,235,45,241,126,184,10,69,176,19,55,206,80,255,70,210,137,155,162,40, - 210,125,38,201,43,70,166,139,50,206,41,97,189,217,137,91,134,29,151,75, - 81,20,43,214,43,15,121,177,168,165,36,186,195,114,241,95,72,101,169,141, - 194,111,65,222,225,100,217,201,182,151,228,19,35,75,224,78,53,235,205,70, - 220,78,198,146,27,82,145,203,48,114,53,107,15,28,195,157,191,68,78,145, - 145,140,24,70,150,192,17,78,9,235,77,81,96,49,198,168,168,89,25,168, - 123,191,235,135,178,109,136,184,56,89,110,185,136,160,28,182,252,79,113,164, - 184,73,70,18,35,111,12,14,167,88,152,108,92,228,196,99,142,47,66,54, - 197,45,246,177,47,144,33,215,226,150,171,252,105,126,98,228,110,62,116,236, - 116,62,166,104,217,14,245,239,68,156,7,151,105,192,137,68,50,92,140,88, - 11,142,115,74,60,173,219,88,114,233,200,137,184,217,185,139,115,41,110,89, - 206,63,17,169,73,4,4,200,31,113,227,208,185,127,253,86,245,25,194,180, - 41,153,4,156,228,83,27,73,78,77,70,180,192,229,131,184,229,42,44,222, - 214,146,115,32,87,226,198,203,149,117,134,49,255,92,6,206,12,37,185,90, - 50,42,145,95,142,44,183,76,254,15,163,89,88,79,245,250,15,148,17,43, - 112,121,35,110,185,92,181,33,147,250,102,121,98,117,206,219,125,184,243,23, - 200,87,203,196,201,210,202,86,218,233,118,212,200,102,27,157,234,187,121,156, - 234,245,31,8,35,114,12,110,184,59,57,32,217,37,147,47,115,162,134,156, - 225,22,151,225,206,95,32,95,197,141,67,199,227,178,149,118,170,244,249,249, - 172,138,27,156,235,152,239,255,159,161,224,84,175,255,64,25,121,219,229,228, - 153,184,37,29,31,141,95,48,58,53,99,56,218,125,184,243,151,244,195,233, - 191,144,203,239,254,169,62,230,55,84,245,31,237,187,9,12,122,187,156,83, - 141,116,145,98,163,242,135,54,220,226,50,220,249,75,242,146,156,15,17,228, - 25,67,81,127,41,112,146,36,228,32,175,68,146,63,228,44,200,43,79,25, - 108,253,71,187,192,141,216,32,147,225,226,84,254,49,73,36,249,198,169,254, - 123,60,213,235,159,142,17,25,100,34,145,72,36,18,73,58,164,192,73,36, - 18,137,100,84,34,5,78,34,145,72,36,163,18,41,112,18,137,68,34,25, - 149,72,129,147,72,36,18,201,168,36,167,65,162,185,158,8,42,145,228,28, - 69,145,129,109,18,73,158,32,45,56,137,68,34,145,140,74,164,192,73,36, - 18,137,100,84,114,202,78,244,62,171,162,34,173,43,233,211,35,71,164,167, - 83,34,145,72,70,40,167,172,192,1,192,225,195,135,29,207,77,156,56,49, - 135,37,145,12,6,113,185,57,69,14,193,74,36,18,12,192,69,201,98,75, - 222,50,6,176,203,103,207,102,226,231,108,22,50,27,124,122,228,136,226,36, - 98,19,39,78,148,214,219,8,129,1,172,169,169,9,47,191,252,50,154,154, - 154,176,122,245,234,126,130,55,84,108,171,175,31,113,223,115,137,228,84,230, - 164,162,40,25,192,102,207,158,141,55,234,235,7,116,251,201,246,14,21,130, - 59,241,72,6,226,147,105,193,206,170,168,96,212,146,27,141,226,54,90,45, - 28,94,175,198,198,70,120,189,94,108,219,182,13,117,117,117,120,248,225,135, - 177,110,221,186,33,175,231,223,92,120,33,123,255,189,247,82,167,41,163,40, - 37,146,188,33,175,131,76,54,110,220,184,162,162,162,130,237,219,183,15,135, - 15,31,198,225,195,135,241,251,223,189,132,138,138,10,182,113,227,198,21,67, - 145,7,181,228,70,163,184,113,246,237,219,151,120,101,203,194,225,22,253,61, - 203,151,103,189,147,231,150,91,103,103,39,106,106,106,208,218,218,138,186,186, - 58,60,249,228,147,88,188,120,49,230,205,155,55,168,122,222,250,131,31,244, - 187,183,162,162,194,246,184,68,34,201,83,148,147,120,33,102,193,177,147,184, - 111,64,84,84,84,48,206,198,141,27,217,198,141,27,19,159,211,137,220,64, - 203,86,81,81,49,160,250,220,188,240,192,128,235,63,28,47,0,108,223,190, - 125,73,47,0,89,41,59,98,130,194,150,47,95,158,245,182,1,192,14,28, - 56,192,154,154,154,88,103,103,39,3,192,126,241,139,95,176,166,166,38,54, - 119,238,92,214,212,212,52,168,122,58,221,27,8,4,82,167,169,40,76,190, - 228,75,190,242,227,149,183,65,38,220,114,3,128,255,254,239,255,198,63,252, - 195,63,36,157,223,183,111,31,170,171,171,151,3,88,49,20,249,101,98,185, - 125,127,225,129,17,249,244,94,93,93,13,222,150,213,213,213,88,187,118,45, - 110,93,180,104,152,75,53,120,44,203,66,107,107,43,0,160,161,161,1,181, - 181,181,168,172,172,196,230,205,155,241,229,47,127,249,164,211,189,228,210,75, - 217,206,157,59,147,62,191,181,115,167,2,0,119,223,125,55,94,126,249,229, - 196,103,137,68,146,191,228,181,139,210,239,247,219,138,27,63,7,196,220,152, - 67,145,215,247,23,30,96,118,2,198,143,15,70,220,50,113,219,101,195,181, - 199,0,198,24,3,99,12,213,213,213,168,174,174,30,218,180,51,172,87,182, - 220,150,85,85,85,152,48,97,2,222,123,239,61,76,152,48,1,243,230,205, - 67,115,115,51,170,170,170,208,220,220,60,160,180,150,221,125,55,227,47,42, - 110,0,16,8,4,176,236,238,187,25,0,220,243,227,31,43,226,121,137,68, - 146,159,228,173,5,199,177,19,183,161,230,251,11,15,176,117,107,43,227,159, - 210,11,217,147,143,77,206,248,233,125,32,227,64,43,87,174,196,242,229,203, - 217,79,86,174,28,82,235,160,169,169,137,91,188,88,187,118,237,144,164,169, - 32,182,27,124,170,50,243,186,47,95,190,28,67,93,39,14,15,44,121,242, - 201,39,177,118,237,90,236,221,187,55,33,110,74,194,219,152,158,123,239,189, - 215,57,143,173,91,149,173,91,183,50,105,178,73,36,35,139,188,22,56,77, - 211,18,150,154,221,185,116,12,181,75,113,32,194,6,12,76,220,56,67,37, - 114,220,122,179,227,214,69,139,134,164,175,22,69,110,229,202,149,73,249,3, - 217,17,55,30,96,82,85,85,133,239,124,231,59,248,215,127,253,87,116,117, - 117,97,209,162,69,39,37,110,18,137,100,116,146,215,211,4,42,132,16,126, - 202,196,137,19,177,118,237,218,149,0,112,245,213,87,175,16,207,43,24,26, - 129,27,168,168,113,6,27,169,56,88,97,224,2,215,212,212,4,0,73,214, - 219,80,9,28,205,203,238,120,182,197,205,137,147,17,183,75,46,189,52,81, - 7,238,130,228,233,252,228,167,63,101,47,191,252,50,248,184,27,139,5,160, - 216,231,161,200,105,2,18,73,190,144,183,22,28,159,251,54,113,226,68,236, - 219,183,47,97,201,105,154,198,59,107,71,113,27,10,78,86,216,56,220,186, - 225,159,211,117,246,3,185,54,29,185,176,222,134,3,59,113,27,42,75,77, - 8,26,73,106,188,123,239,189,23,90,56,60,98,219,77,34,57,101,57,217, - 16,234,108,78,19,168,168,168,96,252,197,231,194,137,199,210,5,151,100,59, - 76,125,32,109,133,12,66,231,51,189,46,211,60,25,99,73,211,2,214,174, - 93,203,214,174,93,59,228,225,251,180,220,252,61,125,13,213,148,1,196,196, - 45,41,237,108,253,207,126,16,155,235,198,232,103,254,254,202,43,175,100,244, - 115,191,87,30,132,70,203,151,124,201,87,236,117,210,157,77,182,4,206,73, - 200,248,251,76,196,13,67,220,225,13,69,231,156,137,192,13,165,24,128,204, - 127,67,92,224,178,81,47,90,238,116,159,7,147,79,174,196,141,191,46,188, - 240,194,126,121,172,94,189,154,217,29,79,122,229,193,143,90,190,228,75,190, - 98,175,147,238,112,178,33,112,3,181,210,82,49,208,178,13,116,162,119,62, - 191,32,88,81,217,176,222,96,35,94,153,30,27,104,62,185,22,55,5,64, - 125,125,125,191,124,78,59,237,52,102,119,60,233,149,7,63,106,249,146,47, - 249,138,189,242,102,30,28,93,111,50,219,227,107,34,124,61,202,76,182,208, - 25,105,100,43,176,68,1,20,5,80,210,141,21,102,122,93,42,178,49,230, - 150,142,186,217,179,251,229,243,181,175,125,205,246,184,68,34,201,79,242,66, - 224,242,65,220,128,216,246,57,163,73,228,178,37,110,185,34,223,22,137,126, - 234,223,254,109,68,182,163,68,114,170,114,82,219,229,204,158,61,27,245,245, - 245,137,99,131,221,46,135,139,218,112,138,27,103,180,136,220,72,23,55,10, - 183,2,135,187,28,18,137,100,100,113,82,243,224,78,150,84,170,193,199,219, - 134,74,220,210,213,203,78,220,40,35,125,103,129,71,215,174,101,35,89,220, - 82,206,53,203,103,20,57,15,78,34,201,23,242,70,224,134,154,76,4,46, - 93,26,35,89,224,70,50,35,86,220,0,41,112,18,73,30,113,202,10,156, - 68,146,21,164,192,73,36,121,67,94,4,153,72,36,18,137,68,50,212,228, - 237,82,93,146,83,12,105,249,72,36,146,33,70,90,112,18,137,68,34,25, - 149,200,161,42,137,35,242,203,33,25,141,228,187,171,64,145,222,140,33,67, - 186,40,37,18,137,36,153,36,129,153,52,105,210,156,131,7,15,110,59,217, - 196,150,46,93,154,148,222,139,47,190,56,168,244,36,153,35,93,148,18,137, - 68,146,76,194,121,49,88,113,3,128,135,30,122,40,145,158,20,183,220,34, - 5,78,34,145,72,82,48,105,210,164,73,249,156,158,196,153,1,15,179,84, - 8,19,164,143,200,201,208,3,38,151,109,56,152,188,78,213,127,108,229,228, - 201,73,109,214,124,224,192,169,218,20,163,18,167,1,174,186,186,186,73,219, - 182,109,251,21,128,217,194,169,250,73,147,38,173,24,168,229,245,236,179,207, - 78,122,247,221,119,109,211,123,241,197,23,29,211,147,99,112,195,0,223,120, - 52,28,14,51,206,158,221,239,36,182,182,25,238,242,141,4,114,217,134,98, - 94,27,55,110,92,49,208,188,82,109,11,179,98,197,10,199,109,99,48,200, - 45,109,38,79,158,204,38,79,158,204,188,94,111,226,197,143,77,158,60,121, - 200,183,203,161,105,243,23,99,96,140,161,223,241,161,200,63,211,246,25,108, - 59,166,75,99,40,210,31,137,47,145,186,186,186,73,0,182,1,96,151,95, - 190,130,237,222,189,155,245,244,244,48,198,24,219,189,123,55,251,246,183,191, - 205,183,106,218,54,105,210,164,58,155,36,146,120,246,217,103,39,45,93,186, - 116,219,210,165,75,217,226,197,139,217,111,126,243,27,246,202,43,175,176,87, - 94,121,133,253,230,55,191,97,207,62,251,44,91,186,116,41,91,186,116,169, - 109,122,195,189,197,204,104,122,165,251,95,37,168,168,168,72,116,202,27,55, - 110,100,27,55,110,76,124,206,182,200,137,59,122,103,43,159,108,231,149,203, - 54,228,121,197,132,238,87,172,162,226,87,3,206,43,85,39,193,5,78,20, - 186,201,49,235,199,246,92,166,175,201,147,39,179,119,222,121,199,246,53,212, - 34,55,121,242,100,246,198,27,231,177,191,190,187,147,109,221,26,219,111,142, - 177,190,189,231,248,251,173,91,193,254,250,238,78,246,198,27,231,13,58,127, - 222,62,51,102,236,76,74,71,252,140,65,10,208,140,25,59,83,238,159,55, - 216,244,71,234,203,134,109,117,117,117,108,247,238,221,172,162,226,87,172,167, - 231,255,177,119,238,241,81,84,119,255,255,204,222,178,185,65,18,174,70,34, - 33,128,138,85,238,177,168,20,2,90,171,173,55,30,169,197,86,43,143,151, - 74,197,95,188,160,181,246,241,33,129,250,104,173,21,43,150,138,82,219,216, - 90,107,189,129,130,197,82,202,77,84,36,132,128,40,88,46,33,16,8,9, - 132,92,55,155,205,222,206,239,143,221,51,153,157,157,217,157,217,157,221,220, - 190,239,215,107,94,187,59,51,231,124,207,156,221,61,159,249,158,239,57,115, - 218,216,238,221,187,217,238,221,187,25,99,76,252,92,84,84,196,16,16,194, - 136,44,90,180,104,203,139,47,190,200,222,120,227,13,86,84,84,36,138,155, - 116,123,227,141,55,216,139,47,190,200,22,45,90,20,150,95,119,139,66,95, - 218,52,197,224,70,140,24,193,14,29,58,4,0,88,189,122,53,230,204,153, - 131,57,115,230,136,199,15,29,58,132,226,226,226,18,45,121,233,129,123,33, - 135,14,29,66,77,77,13,150,47,95,142,181,31,172,65,34,61,30,110,171, - 166,166,198,80,91,201,172,67,110,107,245,234,213,75,230,204,153,19,150,103, - 34,190,175,146,210,210,164,116,171,84,85,85,225,173,183,222,10,235,70,140, - 135,156,1,175,226,157,53,31,97,214,44,224,203,61,59,240,213,222,29,248, - 114,207,142,144,247,179,102,1,239,172,249,8,57,3,94,53,196,230,164,128, - 248,68,125,141,37,207,88,210,199,98,175,47,16,244,222,102,46,91,182,12, - 147,38,77,2,0,140,27,247,46,170,171,171,81,93,93,141,202,202,74,100, - 100,100,96,236,216,177,88,182,108,25,0,204,140,228,197,253,229,47,127,201, - 7,48,115,208,160,65,200,206,206,6,0,60,243,204,51,97,231,101,103,103, - 99,208,160,65,81,243,35,226,67,243,32,19,187,221,46,54,204,74,199,128, - 174,21,1,140,162,184,184,184,164,166,166,6,235,215,175,71,94,222,107,40, - 46,110,197,196,73,83,80,83,83,131,226,226,226,18,35,237,113,91,252,58, - 87,175,94,109,184,173,100,214,225,250,245,235,151,20,23,183,150,228,229,189, - 38,238,203,203,123,13,121,121,175,197,100,171,164,180,148,73,183,37,165,165, - 130,252,149,175,223,86,90,90,26,49,109,44,215,179,110,221,58,241,253,212, - 169,109,0,254,132,81,5,91,153,213,182,89,220,70,21,108,101,163,10,182, - 234,206,255,76,211,52,241,253,197,19,167,41,110,137,160,114,247,52,33,210, - 103,61,40,9,163,214,252,140,16,87,41,163,10,10,24,223,238,93,176,192, - 80,225,188,119,193,2,38,205,63,222,252,182,108,217,82,54,127,254,124,76, - 154,52,9,149,149,149,88,178,228,60,92,123,109,10,230,204,153,131,111,127, - 251,219,152,52,105,18,150,45,219,131,125,251,28,24,59,118,44,230,207,159, - 143,234,234,234,82,53,81,218,179,103,79,217,196,137,19,69,113,187,226,138, - 43,194,206,217,190,125,59,142,31,63,142,236,236,108,76,156,56,17,55,223, - 124,179,106,126,68,124,232,154,7,167,212,48,39,10,137,23,130,57,115,230, - 160,184,248,181,144,227,135,14,29,194,216,177,99,75,0,148,26,101,11,128, - 162,0,25,105,43,89,117,56,103,206,156,18,121,157,41,49,98,196,8,182, - 124,249,242,37,209,150,41,90,82,90,26,181,177,44,40,40,64,91,91,27, - 148,196,79,123,201,67,89,183,110,29,174,187,238,58,241,243,174,93,187,48, - 117,106,27,142,28,153,161,120,254,232,209,219,116,219,24,146,189,3,51,103, - 78,195,151,123,118,224,76,211,52,12,201,86,123,189,38,40,134,5,177,94, - 78,66,169,220,61,77,136,85,156,226,73,203,225,130,115,245,213,87,227,229, - 149,43,5,0,216,176,97,3,27,85,80,192,164,251,98,225,222,5,11,216, - 134,13,27,176,97,195,6,113,208,79,112,31,3,226,26,8,52,179,184,184, - 24,14,135,3,213,213,213,184,229,150,111,163,164,228,93,228,229,189,134,154, - 154,59,192,111,16,127,242,147,49,200,200,200,64,113,113,49,202,202,202,228, - 131,70,66,242,51,155,205,226,135,233,211,167,227,147,79,62,193,51,207,60, - 131,199,30,123,76,244,230,166,79,159,14,0,8,158,27,41,63,34,14,52, - 123,112,46,151,43,166,99,241,176,126,253,122,20,23,183,194,40,47,36,154, - 45,238,37,114,27,70,219,74,102,29,186,92,46,212,212,220,129,154,154,59, - 196,125,252,179,212,150,17,30,170,212,123,59,115,230,76,28,165,14,120,123, - 109,109,109,33,30,155,20,181,253,156,170,42,191,110,155,74,98,54,107,214, - 102,92,60,177,67,241,245,196,9,99,186,41,123,59,82,15,138,139,216,209, - 170,42,65,42,100,71,171,170,132,163,85,85,194,134,13,27,16,171,55,199, - 197,141,231,197,247,191,188,114,165,112,180,170,74,184,250,234,171,195,202,162, - 39,255,177,99,199,130,223,224,102,100,100,224,161,135,38,0,128,216,238,28, - 56,112,51,50,50,50,224,112,56,196,110,76,0,170,195,253,185,247,198,225, - 94,28,23,183,199,30,123,76,241,92,154,62,96,60,154,4,238,196,137,19, - 194,216,177,99,85,143,143,29,59,86,92,141,219,72,146,233,49,38,218,86, - 50,235,80,175,173,88,99,114,74,158,153,16,140,227,199,234,181,45,41,45, - 21,50,51,51,113,221,117,215,137,222,155,252,85,49,221,146,174,170,99,208, - 215,93,169,228,177,1,0,99,69,138,27,0,88,109,155,251,101,204,74,14, - 239,42,140,230,161,113,145,139,5,169,215,166,196,203,43,87,138,34,23,75, - 183,37,143,177,229,231,231,195,225,112,224,225,135,39,138,199,184,184,241,243, - 28,14,135,238,242,115,111,13,8,21,55,34,241,104,234,162,228,163,9,243, - 242,242,112,232,208,33,209,163,113,185,92,33,141,165,81,171,113,115,184,23, - 18,176,29,184,155,226,159,19,229,241,168,29,139,151,100,214,161,220,150,180, - 206,164,182,138,139,91,75,138,139,95,19,143,191,247,222,123,165,177,216,231, - 222,91,85,85,85,216,40,181,120,186,39,213,196,44,36,255,37,75,80,82, - 210,165,205,92,128,0,237,221,149,74,30,28,176,89,245,124,183,27,56,112, - 96,56,38,76,216,204,60,238,89,17,175,79,169,219,111,247,110,237,49,61, - 121,250,88,226,116,106,93,143,122,202,161,70,85,85,21,10,10,10,226,234, - 126,52,130,151,87,174,20,70,21,20,48,94,30,61,84,86,86,98,210,164, - 73,24,59,118,172,40,98,53,53,119,192,225,112,136,226,6,0,14,135,67, - 244,244,34,209,212,212,20,230,197,169,9,91,83,83,147,174,178,18,250,136, - 42,112,210,161,242,203,151,47,95,18,140,69,65,186,15,48,94,220,130,94, - 8,171,169,169,81,60,158,0,143,39,97,182,146,89,135,90,109,21,23,183, - 198,53,138,82,238,29,85,85,205,68,65,193,86,28,173,50,62,156,160,36, - 116,114,97,147,238,239,98,150,166,252,149,61,184,142,136,54,199,141,171,131, - 205,22,168,135,163,85,51,85,27,119,21,65,210,236,101,196,51,240,68,67, - 30,113,123,161,92,76,70,21,20,176,238,156,16,207,61,55,189,226,6,96, - 235,242,229,203,103,190,248,226,139,162,184,73,95,165,100,100,100,96,249,242, - 229,0,176,53,82,126,62,159,79,243,159,192,231,243,69,203,143,136,131,136, - 2,39,111,44,129,128,24,200,227,53,70,139,155,212,118,52,47,36,17,30, - 143,145,222,85,50,235,80,171,173,57,115,230,148,72,123,100,245,122,168,210, - 70,157,191,231,243,170,98,43,185,54,164,66,87,82,82,34,10,142,252,149, - 243,231,63,27,227,193,25,225,37,246,69,122,210,19,94,98,45,75,126,126, - 126,105,89,89,217,230,226,226,226,16,15,78,46,110,64,192,211,43,43,43, - 67,126,126,126,41,128,102,165,252,222,125,247,221,82,0,155,167,76,153,18, - 230,197,201,105,106,106,194,158,61,123,120,26,197,252,136,248,80,21,56,165, - 198,146,55,194,137,16,180,72,182,123,130,199,99,148,184,37,170,14,163,217, - 26,49,98,68,66,189,97,238,209,69,243,104,180,114,203,45,183,224,196,137, - 19,226,231,17,35,70,136,239,11,10,254,4,0,138,30,92,44,100,102,238, - 194,153,166,169,97,30,156,145,94,98,50,137,103,52,100,162,230,195,73,226, - 116,186,211,94,125,245,213,216,176,97,67,66,60,196,224,227,178,182,62,252, - 240,195,51,151,45,91,22,38,114,252,181,178,178,18,15,63,252,48,208,229, - 109,53,67,65,148,120,126,103,207,158,157,9,132,15,56,225,52,53,53,225, - 236,217,179,81,243,35,226,67,81,224,34,53,150,137,166,39,122,60,70,139, - 155,209,68,179,149,172,248,159,220,171,139,61,159,240,134,236,104,85,149,248, - 126,84,65,168,167,24,143,208,29,173,170,18,110,185,229,22,22,24,250,255, - 67,116,189,190,106,168,151,24,9,185,168,196,34,50,188,27,146,15,247,215, - 59,7,46,150,180,90,80,154,58,160,151,151,87,174,20,12,154,18,160,72, - 126,126,126,233,150,45,91,74,39,79,158,60,115,254,252,249,40,46,46,198, - 164,73,147,196,152,219,242,229,203,81,86,86,6,4,159,73,137,160,16,85, - 87,87,171,122,113,55,223,124,115,105,117,117,245,204,137,19,39,194,108,54, - 139,66,215,212,212,4,159,207,135,61,123,246,0,193,103,82,70,203,143,136, - 157,176,31,74,79,19,183,238,18,133,158,154,183,94,91,242,227,242,209,146, - 145,202,23,169,21,225,30,155,146,168,25,229,197,69,178,173,54,15,78,202, - 232,209,219,16,107,57,228,54,212,4,46,22,27,44,240,136,44,49,141,92, - 84,248,103,249,121,177,16,41,15,6,176,201,147,119,24,18,231,235,77,168, - 221,61,228,231,231,23,85,87,87,151,66,229,97,203,193,247,220,211,106,142, - 38,72,249,249,249,69,55,223,124,179,98,126,65,97,83,204,79,215,51,20, - 137,136,132,121,112,188,17,148,55,124,35,70,148,177,19,39,230,107,254,35, - 232,63,191,231,136,66,188,168,213,97,120,57,66,235,72,111,157,69,179,149, - 72,15,53,145,2,166,197,246,232,209,1,129,61,113,66,121,222,219,136,17, - 198,174,4,101,84,119,168,18,70,62,209,36,94,219,253,153,96,247,98,145, - 202,83,69,164,93,136,81,197,141,231,247,220,115,207,25,150,31,161,31,197, - 31,55,111,0,67,27,203,178,96,131,18,189,1,214,115,110,224,252,190,35, - 110,28,165,58,12,45,71,120,29,233,173,183,72,182,140,184,78,189,45,159, - 220,171,235,205,36,195,75,36,186,7,45,238,145,202,164,235,152,133,72,79, - 126,228,193,25,135,46,143,76,111,230,90,27,234,247,222,123,175,84,139,199, - 99,4,201,180,37,39,145,117,24,106,199,24,17,239,207,173,182,116,26,68, - 52,47,145,4,174,151,65,2,210,111,208,45,112,137,240,224,128,232,30,143, - 145,36,211,150,26,70,122,112,161,249,26,231,161,82,171,77,244,73,72,224, - 8,57,122,189,143,88,188,149,254,134,188,142,140,168,51,190,236,207,123,239, - 189,87,26,239,179,51,5,218,104,235,139,91,15,88,167,140,182,36,109,32, - 250,28,70,121,168,244,227,32,250,36,228,193,245,27,168,13,35,84,161,96, - 55,65,16,189,25,99,199,82,19,4,65,16,68,15,129,4,142,32,8,130, - 232,147,80,23,37,161,10,253,56,136,190,136,209,253,238,212,149,223,115,33, - 15,142,32,8,34,20,38,221,84,158,68,66,244,2,72,224,8,130,32,66, - 17,59,47,242,243,243,103,5,31,225,69,244,66,72,224,8,130,32,34,160, - 242,152,45,162,23,160,59,204,178,104,209,162,144,254,230,231,158,123,142,66, - 53,58,73,102,29,198,99,171,191,126,177,143,60,250,104,72,157,253,230,217, - 103,251,107,85,244,73,212,2,102,69,69,69,249,91,182,108,41,131,202,106, - 2,106,158,28,197,224,122,46,154,255,184,139,22,45,42,5,80,114,213,85, - 87,137,251,134,15,27,130,215,255,250,55,0,88,242,220,115,207,101,248,254, - 74,0,0,32,0,73,68,65,84,149,26,93,184,190,70,50,235,144,219,2, - 128,194,194,66,148,151,151,47,225,159,181,218,138,244,227,248,237,11,47,176, - 7,31,120,64,241,148,251,22,46,100,191,95,177,34,102,81,224,2,35,93, - 105,156,175,97,7,24,47,56,114,65,3,128,217,179,157,0,128,77,155,210, - 194,206,143,215,190,214,250,137,183,30,163,229,97,68,254,189,17,249,151,45, - 21,182,25,51,74,241,219,223,222,32,46,124,90,89,89,25,182,30,156,92, - 232,72,224,122,46,122,186,40,197,134,121,227,198,141,216,184,113,35,234,234, - 207,32,184,175,36,216,160,38,132,69,139,22,49,233,150,40,59,73,176,149, - 204,58,44,41,44,44,4,128,37,43,87,174,68,69,69,69,73,97,97,33, - 130,251,12,179,245,219,23,94,8,169,35,169,88,200,143,233,97,202,148,41, - 184,226,138,43,196,109,202,148,41,152,50,101,74,152,141,120,121,228,209,71, - 217,196,137,102,20,78,157,140,9,19,156,112,58,157,152,61,219,137,117,235, - 128,117,235,2,66,231,116,58,49,97,130,19,133,83,39,99,226,68,179,97, - 246,31,255,197,223,88,164,207,70,231,79,40,179,101,203,150,178,162,162,162, - 153,187,119,239,70,85,85,62,198,142,29,139,67,135,14,161,178,178,18,147, - 38,77,194,139,47,190,136,221,187,119,163,168,168,104,102,112,189,56,162,151, - 160,73,224,22,45,90,196,164,13,243,85,87,93,5,169,23,194,27,104,163, - 11,183,104,209,162,82,110,155,111,183,253,232,86,46,66,165,189,201,86,50, - 235,144,11,115,121,121,249,146,194,194,66,181,60,13,253,190,226,17,51,61, - 56,157,78,76,153,50,197,80,145,179,90,38,224,84,221,105,124,246,25,48, - 115,198,116,180,181,78,199,204,25,211,67,222,127,246,25,112,170,238,52,172, - 150,9,134,216,228,226,19,237,53,150,60,99,73,223,95,197,176,168,168,40, - 31,192,204,101,203,150,97,210,164,73,0,128,113,227,222,69,117,117,53,170, - 171,171,81,89,89,137,140,140,12,140,29,59,22,203,150,45,3,128,153,52, - 170,178,247,16,182,224,105,36,120,195,172,198,162,69,139,74,13,238,170,20, - 61,158,103,158,121,6,0,240,216,99,143,225,170,171,174,194,198,141,27,75, - 22,45,90,4,3,237,133,120,87,0,68,17,50,210,86,18,235,112,73,69, - 69,69,73,69,69,133,184,99,229,202,149,0,128,5,11,22,160,188,188,92, - 151,45,185,128,61,248,192,3,2,239,166,228,175,247,45,92,200,0,224,252, - 243,207,143,154,86,239,197,212,215,215,99,216,176,97,0,128,143,63,246,34, - 45,109,2,30,121,244,117,38,233,197,4,239,197,252,205,179,183,233,202,223, - 237,217,14,32,80,230,173,219,182,235,45,90,204,60,253,212,173,130,84,88, - 228,159,245,32,21,198,167,159,186,85,224,249,241,239,68,79,90,105,30,177, - 32,189,249,152,50,101,10,110,157,55,207,176,110,208,191,189,249,38,147,254, - 166,227,237,46,222,178,101,75,217,252,249,243,49,105,210,36,84,86,86,98, - 201,146,243,176,99,71,61,230,204,153,3,135,195,129,140,140,12,44,91,182, - 7,151,93,54,28,151,92,50,22,243,231,207,71,89,89,89,105,164,152,28, - 209,115,208,37,112,145,26,102,163,145,123,60,74,101,217,184,113,99,9,128, - 82,163,109,201,175,211,72,91,201,170,195,194,194,194,16,113,83,35,232,237, - 69,141,201,105,17,165,180,180,52,120,189,94,69,241,211,92,112,25,82,97, - 3,128,111,125,235,91,248,248,99,47,102,207,30,164,120,254,166,77,103,117, - 219,176,89,167,99,208,160,237,152,57,99,58,220,158,237,176,89,213,94,135, - 6,197,48,60,46,215,19,136,71,32,227,73,203,225,194,38,21,181,71,30, - 125,148,61,242,232,163,44,94,161,227,194,86,81,81,33,138,218,223,222,124, - 147,113,155,113,8,221,204,226,226,98,56,28,14,84,87,87,227,150,91,190, - 141,146,146,119,145,151,247,26,106,106,238,64,94,222,107,0,128,159,252,100, - 12,50,50,50,80,92,92,140,178,178,50,249,32,20,162,135,162,75,224,186, - 3,238,185,201,63,63,246,216,99,0,140,245,26,121,222,114,97,72,132,173, - 68,83,94,94,142,5,11,22,0,8,245,220,248,49,78,112,0,74,92,30, - 170,212,123,115,187,221,113,149,251,183,47,188,192,170,171,171,195,132,141,83, - 95,95,15,64,89,220,0,192,233,212,111,83,73,204,62,251,236,50,0,62, - 0,225,175,38,154,92,3,32,32,94,92,88,212,68,76,122,252,111,111,190, - 201,98,17,57,46,110,114,17,227,121,113,161,147,218,210,35,120,60,230,6, - 0,25,25,25,120,232,161,9,120,254,249,189,162,184,29,56,112,51,50,50, - 50,224,112,56,196,110,76,32,48,125,160,186,186,186,90,239,245,16,201,67, - 211,95,245,185,231,158,19,148,188,40,78,240,216,18,131,202,212,39,73,102, - 29,106,156,10,32,183,165,59,38,167,228,153,241,81,121,177,122,109,15,62, - 240,128,96,177,88,48,108,216,48,81,228,228,175,74,28,60,120,80,124,127, - 223,194,215,217,35,143,6,54,45,54,149,60,54,0,184,238,186,65,138,27, - 0,220,255,255,180,229,221,215,209,234,161,253,230,217,103,5,45,61,10,74, - 40,137,155,148,91,231,205,19,120,92,54,150,216,44,143,177,229,231,231,195, - 225,112,224,225,135,39,138,199,184,184,241,243,28,14,71,44,151,64,116,19, - 154,60,56,62,104,65,169,251,78,218,48,39,194,187,225,222,147,220,115,75, - 4,137,204,59,153,117,40,25,100,2,64,209,115,91,2,0,60,70,23,75, - 76,78,10,247,222,156,10,238,83,60,221,147,106,98,38,229,224,193,131,33, - 49,63,46,64,128,246,238,74,37,15,46,224,177,41,227,247,3,69,69,41, - 0,94,103,191,123,49,114,188,79,169,219,175,165,69,123,156,79,158,62,150, - 216,152,90,215,163,158,114,168,225,116,58,145,150,150,102,104,156,45,22,110, - 157,55,79,120,228,209,71,25,47,143,30,248,104,73,62,53,192,225,112,160, - 166,230,14,49,6,199,113,56,28,162,167,71,244,14,162,10,156,108,168,252, - 146,96,44,74,74,66,196,45,232,133,48,181,152,85,2,60,158,132,217,74, - 102,29,202,109,1,40,145,118,73,66,34,110,241,216,145,123,71,78,231,103, - 72,75,187,12,192,138,120,178,85,68,73,232,228,194,38,221,223,133,122,87, - 166,20,101,15,206,23,209,230,150,45,157,48,153,2,245,16,105,80,139,146, - 32,105,25,248,17,41,189,94,212,242,208,83,14,53,184,152,232,237,22,52, - 26,238,185,233,21,55,0,91,151,47,95,62,243,197,23,95,20,197,77,250, - 42,37,35,35,3,203,151,47,7,128,173,134,20,154,72,56,17,5,78,161, - 177,196,115,207,61,39,200,135,205,39,194,115,147,123,60,82,239,42,81,30, - 79,34,188,171,100,214,161,86,91,133,133,133,124,142,28,128,208,152,156,22, - 164,141,122,232,251,203,18,218,109,39,21,186,243,207,63,95,20,28,249,43, - 231,196,9,99,60,56,35,188,196,190,72,79,122,194,75,172,101,201,207,207, - 47,45,43,43,219,92,92,92,28,226,193,201,197,13,8,120,122,101,101,101, - 200,207,207,47,5,208,28,103,145,137,36,160,42,112,42,141,101,169,244,53, - 81,116,167,199,99,164,173,100,214,97,52,91,139,22,45,98,82,81,83,32, - 46,111,152,123,116,209,60,26,173,84,84,84,168,62,201,36,45,45,48,23, - 77,201,131,139,5,139,229,91,112,123,62,14,243,224,140,244,18,147,73,60, - 163,33,19,53,31,142,199,233,98,129,199,215,18,33,168,193,161,254,91,31, - 126,248,225,153,203,150,45,11,19,57,254,90,89,89,137,135,31,126,24,232, - 242,222,154,65,34,215,227,81,20,184,72,141,101,162,233,137,30,143,209,226, - 102,52,209,108,201,99,114,92,232,228,49,185,120,203,167,228,213,197,150,79, - 228,134,76,222,61,26,143,208,253,230,217,103,133,64,247,86,26,128,221,232, - 122,157,96,168,151,24,9,35,158,104,34,157,251,166,103,30,155,210,60,60, - 35,186,69,57,74,83,7,244,114,235,188,121,130,65,83,2,20,201,207,207, - 47,221,178,101,75,233,228,201,147,103,206,159,63,31,197,197,197,152,52,105, - 146,24,115,147,63,170,11,65,97,171,174,174,38,129,235,225,132,9,92,15, - 20,183,210,68,148,33,145,182,122,162,184,73,142,43,198,228,244,148,239,55, - 207,222,38,112,145,49,194,91,51,138,88,133,78,169,193,228,215,103,148,151, - 40,71,77,144,164,159,99,141,145,233,21,40,233,249,70,138,27,96,156,24, - 37,114,16,75,208,139,43,202,207,207,47,42,43,43,43,85,152,231,198,133, - 13,232,242,220,72,220,122,1,74,30,28,127,40,111,72,195,183,104,209,34, - 166,231,73,244,177,156,47,43,67,183,137,130,1,40,214,161,82,57,164,117, - 164,183,206,162,217,74,164,135,218,157,194,22,176,253,122,240,129,204,202,231, - 72,122,52,13,33,81,66,7,132,139,138,209,34,163,199,118,127,70,42,116, - 10,135,165,162,214,76,222,91,239,64,241,199,205,27,64,165,198,82,75,3, - 172,231,92,233,249,65,122,187,184,113,59,165,145,242,86,170,35,189,245,22, - 201,150,17,215,169,183,229,235,137,94,93,172,60,242,232,235,76,237,105,41, - 82,54,109,58,219,39,174,183,63,161,197,45,86,89,3,78,81,216,104,53, - 129,158,75,172,30,150,38,116,8,92,41,52,120,60,70,144,76,91,10,182, - 19,86,135,17,236,196,124,157,253,185,213,150,198,249,162,121,137,36,112,189, - 12,18,164,126,131,110,129,75,132,7,23,76,83,26,76,83,170,53,77,172, - 36,211,86,132,50,24,230,193,41,229,27,36,46,17,167,86,155,232,147,144, - 192,17,114,244,122,31,137,94,183,173,47,32,175,35,35,234,140,47,251,19, - 124,45,141,39,47,129,54,218,250,226,38,8,140,182,126,178,129,232,115,24, - 229,161,210,143,131,232,147,144,7,215,111,160,54,140,80,133,130,231,4,65, - 244,102,104,225,15,130,32,8,162,79,66,2,71,16,4,65,244,73,4,234, - 163,36,136,94,6,117,29,19,132,38,200,131,35,8,130,32,250,36,154,22, - 60,37,136,190,8,211,246,80,11,205,8,178,65,91,137,206,159,32,136,200, - 132,116,81,38,243,15,73,182,226,183,149,44,140,190,38,41,70,92,95,180, - 242,197,99,227,247,203,203,24,0,220,87,60,63,33,223,67,76,249,83,23, - 37,65,104,34,196,131,211,218,16,240,63,101,52,238,43,158,175,122,44,153, - 182,94,90,94,166,37,11,67,26,177,100,218,210,194,117,215,93,207,0,96, - 221,186,181,49,219,19,0,129,1,76,122,109,63,45,158,31,242,29,198,123, - 60,94,24,83,254,153,8,20,101,38,136,126,75,92,49,184,23,254,56,69, - 241,85,47,23,76,220,199,148,94,19,129,81,101,54,138,68,95,251,218,117, - 107,177,118,221,90,35,179,236,22,24,192,248,150,136,252,181,124,15,122,190, - 171,68,252,134,19,249,191,32,136,190,72,76,49,56,169,40,40,9,198,3, - 119,86,104,206,75,173,209,232,250,51,107,207,43,26,106,226,214,29,34,39, - 109,172,148,174,253,63,123,46,49,180,235,142,1,172,39,116,119,198,195,191, - 55,117,0,0,174,156,157,106,232,181,68,254,13,86,68,61,71,254,93,25, - 253,61,202,127,43,255,217,59,62,222,44,9,162,95,16,243,32,147,43,10, - 211,21,247,127,82,222,222,173,121,245,36,91,209,72,100,89,184,184,113,33, - 224,222,79,188,194,16,237,6,38,222,227,201,134,139,135,252,187,120,117,85, - 1,238,186,167,74,252,124,69,97,122,216,62,32,240,93,201,133,140,231,21, - 233,123,84,250,46,34,125,63,210,242,253,103,111,180,171,34,8,2,136,210, - 69,169,214,37,164,214,48,243,99,187,246,205,208,100,252,206,123,170,24,207, - 235,213,85,5,120,117,85,129,102,59,122,217,181,111,70,212,114,203,73,100, - 151,152,82,131,202,175,255,138,194,116,220,121,79,85,92,118,149,26,74,35, - 196,237,138,194,116,85,143,55,222,227,90,249,247,166,14,195,6,190,92,81, - 152,174,248,93,168,161,244,27,85,251,93,169,125,143,145,202,174,247,255,70, - 16,132,58,17,5,78,122,247,159,232,130,240,59,227,72,141,75,50,145,123, - 64,137,132,95,179,220,59,136,151,220,220,92,81,164,115,115,115,227,206,143, - 55,180,145,26,244,120,142,203,145,199,221,174,156,157,170,175,192,49,16,233, - 187,48,226,55,26,233,119,149,204,255,27,65,244,7,162,14,50,233,143,34, - 215,23,196,13,0,78,213,214,10,74,239,123,3,12,96,255,222,212,1,249, - 198,69,206,72,47,142,163,229,187,136,231,55,170,229,119,69,34,71,16,198, - 161,41,6,199,135,137,39,99,160,194,93,247,84,137,221,117,137,104,244,163, - 209,87,196,13,0,238,253,127,11,216,202,23,87,138,239,95,126,113,101,175, - 16,57,46,110,74,112,145,83,59,174,21,121,215,161,84,176,66,222,71,200, - 67,250,27,229,249,253,113,85,65,88,29,223,121,79,21,147,230,41,21,47, - 222,157,175,36,104,241,118,83,19,68,127,71,20,184,72,127,120,41,90,239, - 44,163,197,225,164,246,212,108,189,186,170,0,208,216,248,223,121,79,21,83, - 106,92,180,148,133,35,31,117,40,61,38,23,33,181,134,108,215,62,77,166, - 84,27,84,169,173,72,215,164,5,46,110,252,125,175,80,55,29,4,197,46, - 38,17,224,245,202,127,135,252,198,138,191,231,76,189,100,27,128,208,223,144, - 210,121,145,190,167,63,174,42,16,4,40,223,60,77,189,100,91,64,24,101, - 115,6,149,202,72,16,132,62,68,129,147,255,65,229,255,86,217,159,51,234, - 31,110,234,37,219,240,199,8,199,255,184,170,64,144,54,46,82,164,13,8, - 111,96,162,17,105,226,244,212,75,182,105,18,57,238,169,242,247,178,242,70, - 77,255,199,85,5,130,214,137,233,80,105,80,229,249,105,202,75,129,235,174, - 187,158,173,93,183,54,164,203,235,186,235,174,103,122,39,124,71,19,217,72, - 199,249,49,185,7,163,39,255,100,162,165,247,32,30,175,91,75,79,72,50, - 123,16,8,162,175,163,105,162,119,95,234,182,139,70,95,137,57,74,197,13, - 8,92,87,44,19,190,165,55,34,114,164,2,22,41,109,52,1,212,93,168, - 4,18,233,59,49,226,183,25,233,247,69,226,70,16,198,18,85,224,250,147, - 184,113,122,187,200,77,153,50,85,181,220,145,142,169,161,38,66,124,127,180, - 238,185,88,142,105,225,202,217,169,113,255,46,63,41,111,15,155,175,166,101, - 144,73,164,244,242,227,114,180,12,50,145,242,199,85,5,66,119,204,211,36, - 136,222,78,196,65,38,253,81,220,56,189,121,96,205,174,138,93,170,195,208, - 119,85,236,98,61,221,61,16,0,225,202,217,169,138,3,77,140,24,96,34, - 229,63,123,46,17,46,152,184,143,201,5,228,194,137,251,240,73,121,59,166, - 94,18,248,252,73,121,187,184,79,41,15,233,103,45,98,20,203,60,69,18, - 57,130,208,71,212,121,112,74,127,186,104,119,172,90,227,102,210,59,211,187, - 238,169,82,188,59,54,138,169,151,108,139,233,78,59,81,226,166,228,53,240, - 235,255,164,188,61,102,239,102,202,101,83,35,10,178,0,8,83,46,211,239, - 197,37,155,160,200,65,190,73,30,215,101,216,141,23,23,40,181,87,173,231, - 40,157,107,196,163,186,162,217,35,8,66,153,152,31,213,101,164,248,36,243, - 206,180,39,221,5,39,162,44,187,62,219,21,181,213,215,114,142,18,159,148, - 183,227,138,194,116,213,114,199,123,92,142,84,192,34,77,29,48,2,189,194, - 165,118,142,252,220,68,148,145,32,8,109,196,180,154,0,127,150,160,210,171, - 222,231,12,74,239,114,245,52,32,177,32,45,159,218,107,178,136,116,205,177, - 94,247,148,41,145,189,55,142,0,8,177,196,226,30,184,179,2,159,148,183, - 171,214,85,188,199,181,98,164,247,70,16,68,223,37,102,15,206,104,129,72, - 180,184,73,233,110,113,227,24,125,205,21,21,187,52,167,215,115,174,148,104, - 117,21,239,241,100,162,101,16,209,79,187,214,25,140,122,174,92,116,19,157, - 63,65,16,145,9,17,56,173,163,6,37,127,202,136,68,250,55,38,211,150, - 214,60,160,177,76,145,26,154,100,218,234,111,240,199,116,25,85,39,137,174, - 91,250,238,8,162,123,137,105,69,111,35,32,91,132,30,168,94,9,130,208, - 139,64,173,6,17,141,68,206,7,52,66,184,162,149,175,207,137,163,32,244, - 248,81,176,4,209,19,32,129,35,250,31,36,16,4,209,47,136,105,20,37, - 65,16,4,65,244,116,72,224,8,130,32,136,62,9,117,81,18,68,111,131, - 186,88,9,66,19,228,193,17,4,65,16,125,146,152,39,122,19,68,111,231, - 103,143,61,102,168,39,244,235,103,158,9,233,16,89,178,116,169,161,249,151, - 44,94,76,29,46,4,161,131,144,46,202,197,37,37,134,254,33,151,46,89, - 162,250,135,36,91,241,219,74,22,70,95,147,20,35,174,47,90,249,226,177, - 241,233,246,93,12,0,46,159,62,53,33,223,67,249,231,123,24,0,20,126, - 115,162,246,252,169,139,146,32,52,17,83,12,238,243,29,149,154,254,96,223, - 156,54,41,238,70,193,8,91,189,173,188,70,242,250,95,255,202,0,224,182, - 31,253,40,46,123,139,75,74,216,247,174,189,73,252,252,225,250,53,33,194, - 17,239,241,120,203,86,90,90,170,120,172,180,180,148,4,142,32,250,41,113, - 197,224,62,175,60,71,241,85,47,203,95,170,99,74,175,137,192,168,50,27, - 69,162,175,253,224,193,131,56,120,240,160,145,89,118,11,139,75,74,24,223, - 18,145,255,179,191,61,197,148,94,245,158,195,249,221,203,245,134,151,51,17, - 121,18,68,95,38,38,129,251,188,242,28,85,161,208,43,24,106,13,252,242, - 151,234,152,209,141,125,164,50,39,91,232,164,215,151,40,145,147,138,65,34, - 187,25,147,197,143,239,248,31,252,248,142,255,49,252,90,212,132,75,42,96, - 90,206,225,112,33,50,74,144,126,247,114,61,51,58,79,130,232,15,196,236, - 193,229,229,218,20,183,238,206,171,39,217,234,206,178,112,17,88,186,100,137, - 192,187,232,140,16,134,104,55,2,241,30,79,54,92,160,70,142,176,133,108, - 103,78,253,22,35,71,116,125,23,210,125,210,77,154,7,39,47,215,138,188, - 92,107,68,187,74,3,80,34,13,74,225,121,70,203,151,32,136,46,34,10, - 156,90,151,80,164,70,56,47,215,134,218,250,145,154,140,175,126,191,145,241, - 188,42,119,191,128,202,221,47,104,182,163,151,218,250,145,81,203,45,39,145, - 93,98,114,123,210,235,207,203,181,97,245,251,141,113,217,85,138,59,197,27, - 243,250,188,242,28,228,229,218,84,69,42,222,227,90,49,210,139,147,10,21, - 103,87,249,175,85,207,151,31,83,74,207,201,203,181,226,253,181,225,223,99, - 36,33,83,58,70,162,70,16,177,17,81,224,140,188,243,143,198,164,201,15, - 0,64,152,200,117,23,82,15,40,209,182,248,53,243,58,48,138,204,204,76, - 81,164,51,51,51,227,206,143,139,178,218,141,66,188,199,229,200,227,110,127, - 126,237,255,244,21,56,6,184,128,77,45,252,89,216,49,190,47,146,0,70, - 131,11,152,210,144,127,190,207,232,233,5,4,209,95,137,218,69,217,31,69, - 174,47,136,27,0,60,250,200,35,130,210,251,222,192,226,146,18,198,99,110, - 210,141,139,92,34,98,113,145,196,141,19,143,200,69,18,55,14,137,28,65, - 24,135,166,137,222,75,151,44,17,248,157,116,162,27,253,73,147,31,16,187, - 235,18,209,232,71,163,175,136,27,0,124,240,225,90,182,107,231,46,241,253, - 13,223,187,190,87,136,28,23,55,37,184,200,169,29,215,202,91,239,156,13, - 17,16,169,96,133,188,143,144,199,174,242,95,139,130,199,243,187,101,238,160, - 176,58,126,127,109,35,219,83,249,59,241,179,84,188,106,79,159,23,182,79, - 154,46,218,117,16,4,161,142,40,112,242,152,143,154,23,165,245,174,57,90, - 28,78,106,79,205,86,229,238,23,0,141,141,255,234,247,27,217,156,27,115, - 20,27,112,173,49,193,72,163,14,229,34,164,100,107,245,251,141,172,182,94, - 147,169,144,107,150,95,63,183,21,233,154,180,192,197,77,254,190,175,16,20, - 185,152,68,128,11,17,23,166,169,133,63,83,244,224,70,12,63,10,0,56, - 81,55,74,220,167,116,158,146,176,113,110,188,62,39,196,43,147,122,112,229, - 159,223,192,0,224,70,201,62,126,30,79,71,66,71,16,177,33,10,92,180, - 134,84,234,217,172,126,255,129,168,127,184,220,97,199,34,30,159,115,99,142, - 192,69,78,46,30,82,207,38,90,62,156,72,19,167,115,135,29,211,36,114, - 220,83,229,239,67,143,46,137,154,126,206,141,57,130,214,137,222,8,122,170, - 128,186,7,23,143,184,189,254,215,191,178,131,7,15,134,116,49,191,254,215, - 191,50,189,19,190,163,137,108,164,227,252,216,234,247,27,153,218,77,76,188, - 34,110,36,92,228,164,158,153,28,45,221,152,106,148,44,94,44,44,89,186, - 148,45,89,186,148,169,117,83,106,233,198,36,8,66,27,154,166,9,244,165, - 110,187,104,244,149,152,163,84,220,128,192,117,197,50,225,91,122,35,34,71, - 42,96,145,210,70,19,64,221,133,74,32,145,98,108,241,136,27,39,82,140, - 141,196,141,32,140,37,170,192,245,39,113,227,244,118,145,91,185,242,101,213, - 114,71,58,166,134,154,8,241,253,145,68,42,214,99,90,248,243,107,255,23, - 247,239,242,216,9,55,142,157,112,135,236,211,50,200,36,82,122,41,53,181, - 158,176,125,90,6,153,72,185,241,250,28,65,41,31,130,32,34,19,117,30, - 28,208,191,196,141,211,155,69,174,246,84,173,234,60,184,218,83,181,134,216, - 72,36,75,151,44,17,212,166,4,24,49,192,68,202,163,15,158,35,0,93, - 66,197,183,33,231,60,24,34,92,210,125,210,77,154,7,167,166,214,35,110, - 106,68,154,38,160,70,180,60,9,130,8,37,234,60,56,165,134,178,166,54, - 210,29,171,91,115,220,108,206,141,57,2,207,107,210,228,7,194,196,45,146, - 29,189,228,14,59,22,181,220,114,212,174,223,8,228,246,164,215,95,83,235, - 142,217,187,89,185,234,229,136,35,93,151,46,89,34,172,92,165,223,139,75, - 54,92,228,228,27,23,55,35,188,55,14,23,40,181,87,173,231,112,238,191, - 119,152,192,95,249,251,120,145,230,105,68,126,4,209,31,136,121,61,56,35, - 197,199,200,188,122,146,173,104,36,162,44,181,39,162,123,104,90,206,81,162, - 166,214,141,188,92,155,106,185,227,61,46,71,190,26,129,145,158,155,28,45, - 194,165,229,28,78,34,132,136,196,141,32,244,17,211,179,40,191,57,233,148, - 234,43,127,175,149,226,159,14,23,138,127,58,92,224,239,149,94,141,66,90, - 62,181,215,100,17,233,154,99,189,238,149,43,35,123,111,156,165,75,150,8, - 177,196,226,190,57,233,20,106,106,221,170,117,21,239,113,173,24,233,189,17, - 4,209,119,137,217,131,51,90,32,18,45,110,82,186,91,220,56,70,95,243, - 130,5,247,106,78,175,231,92,41,209,234,42,222,227,201,68,203,138,222,107, - 214,190,173,249,220,88,86,244,254,199,63,63,208,124,46,141,174,36,8,125, - 132,8,156,214,1,21,31,174,95,19,183,225,100,218,210,154,135,214,50,69, - 242,30,146,105,171,191,193,7,158,24,85,39,114,65,50,26,18,36,130,232, - 94,66,4,46,153,141,41,217,34,244,64,245,74,16,132,94,4,106,53,136, - 104,36,114,170,132,17,194,21,173,124,125,78,28,5,161,199,143,130,37,136, - 158,0,9,28,209,255,32,129,32,136,126,65,204,43,122,19,4,65,16,68, - 79,134,4,142,32,8,130,232,147,196,60,77,128,32,122,36,212,253,72,16, - 68,16,242,224,8,130,32,136,62,9,9,28,65,16,4,209,39,137,218,69, - 201,36,43,38,11,64,196,65,151,122,206,141,150,214,200,188,140,58,55,90, - 90,42,179,49,231,70,75,27,79,94,4,65,244,31,52,121,112,155,54,53, - 99,211,166,230,144,134,70,14,3,24,63,79,47,106,105,181,216,5,0,63, - 99,204,207,88,200,57,90,203,204,24,131,44,169,230,50,43,165,213,90,102, - 37,122,122,61,43,230,25,172,131,88,202,172,244,189,105,77,171,197,46,65, - 16,253,27,234,162,36,8,130,32,250,36,186,4,78,237,46,159,223,101,199, - 130,150,180,145,188,139,104,30,64,164,50,199,226,185,105,77,27,171,71,20, - 41,109,119,214,115,212,252,85,188,41,45,118,213,190,67,45,105,201,139,35, - 8,66,13,69,129,99,0,227,27,0,204,158,157,165,57,67,126,174,60,15, - 189,105,245,218,21,4,1,177,150,89,8,62,207,37,150,50,75,211,234,181, - 219,27,235,89,110,79,208,241,44,28,121,153,99,77,171,215,46,65,16,253, - 147,176,102,66,237,174,121,246,236,44,49,14,50,123,118,150,24,220,151,158, - 47,61,71,158,86,105,48,128,214,180,74,118,129,174,59,127,65,16,116,165, - 149,122,96,145,210,170,149,89,75,90,181,50,43,229,35,69,154,103,164,122, - 86,75,171,165,158,245,216,85,203,71,126,189,210,58,209,251,219,224,105,77, - 18,213,210,155,86,180,75,243,224,8,130,8,18,226,193,69,234,18,218,180, - 169,57,226,157,190,90,35,196,211,70,242,48,162,165,141,100,87,77,100,140, - 72,27,169,204,241,216,141,212,197,201,24,139,90,207,145,210,70,171,231,88, - 237,70,251,109,68,242,168,162,125,191,137,74,75,16,68,255,38,166,65,38, - 188,241,79,116,76,72,205,46,16,61,246,166,150,54,209,177,55,53,187,177, - 216,235,9,245,172,219,94,80,100,99,177,203,191,211,88,210,82,44,142,32, - 8,57,52,138,146,32,8,130,232,147,144,192,17,4,65,16,125,146,152,4, - 142,15,66,16,0,65,207,8,60,41,177,164,149,14,126,48,233,12,190,72, - 203,28,107,220,38,150,180,106,3,54,244,164,237,206,122,214,109,47,56,216, - 35,22,187,252,59,141,37,173,218,0,27,130,32,250,47,33,2,23,169,97, - 137,20,236,7,34,15,172,136,214,96,70,75,27,201,110,164,193,17,241,166, - 141,84,230,120,236,70,18,202,72,131,87,128,200,3,43,162,53,242,209,210, - 70,43,115,164,235,141,20,155,140,246,253,38,42,45,65,16,253,27,197,230, - 78,41,88,31,105,8,185,124,72,119,152,145,72,66,17,37,109,180,161,235, - 210,169,2,122,203,44,29,98,174,183,204,145,210,70,43,179,52,31,189,101, - 238,174,122,142,84,102,165,41,2,90,237,42,77,17,208,155,54,196,46,77, - 19,32,8,34,136,98,23,165,216,149,23,108,52,244,140,104,227,231,202,243, - 208,155,86,175,93,198,24,98,45,179,216,80,198,80,102,105,90,189,118,123, - 99,61,203,237,233,241,160,228,101,142,53,173,94,187,4,65,244,79,116,197, - 224,212,238,238,19,29,35,138,228,85,68,139,197,69,42,115,34,99,113,70, - 196,222,148,236,118,87,61,71,205,95,165,123,84,139,93,181,239,80,75,90, - 138,189,17,4,161,6,141,162,36,8,130,32,250,36,81,125,24,105,204,37, - 218,157,178,158,115,163,165,53,50,47,163,206,141,150,150,202,108,204,185,209, - 210,70,204,139,98,112,4,65,4,161,7,29,17,125,11,18,56,130,32,130, - 80,23,37,65,16,4,209,39,33,129,35,8,130,32,250,36,22,0,184,103, - 233,110,230,118,181,1,0,108,246,76,172,90,60,57,164,231,146,31,151,31, - 83,219,175,132,17,121,68,203,91,94,126,233,126,139,37,21,175,46,189,52, - 225,61,178,70,217,228,249,200,243,80,219,111,84,30,209,126,11,226,121,139, - 119,50,183,219,9,155,45,13,25,217,35,240,252,67,185,198,214,45,117,53, - 18,4,17,39,194,79,150,238,102,123,182,151,161,225,196,126,0,192,224,17, - 23,97,226,244,249,98,195,54,247,190,183,217,127,246,172,133,211,209,128,156, - 225,99,48,126,218,109,120,117,233,165,130,124,191,52,141,28,35,242,80,226, - 174,197,59,217,153,218,253,56,186,127,19,28,205,181,33,229,7,0,233,117, - 101,100,229,98,212,69,179,49,36,247,34,205,194,224,247,250,162,150,193,100, - 49,139,66,112,143,172,46,245,216,148,219,223,179,189,12,141,117,135,145,150, - 49,24,23,76,188,30,239,252,254,251,194,93,139,119,178,47,118,188,30,182, - 223,168,60,228,229,151,255,22,56,119,252,124,11,59,248,197,63,208,120,250, - 48,210,211,7,225,220,209,133,200,25,122,62,114,134,157,31,38,116,92,8, - 253,110,119,244,186,180,217,96,179,165,97,213,210,75,105,93,55,130,32,226, - 198,226,118,181,161,225,196,126,108,249,232,143,168,171,171,195,188,249,191,128, - 203,17,152,84,59,247,190,183,217,151,59,254,134,99,135,63,193,206,79,255, - 141,27,110,121,16,45,13,199,112,195,221,101,97,251,121,26,57,70,228,33, - 135,11,219,206,141,191,67,211,153,42,156,173,63,132,175,191,44,15,41,191, - 201,98,22,175,171,181,181,21,151,94,126,37,154,206,84,33,123,72,1,110, - 184,187,140,169,137,142,180,145,247,120,92,81,203,98,181,218,49,120,196,69, - 162,40,198,98,83,142,52,159,11,47,46,132,199,229,192,13,119,151,177,150, - 134,99,97,251,231,222,247,54,83,18,185,88,242,112,57,154,85,127,11,0, - 240,208,243,181,172,177,254,32,106,171,118,226,196,225,79,240,201,191,223,196, - 55,38,92,134,51,167,246,99,200,57,23,225,220,209,133,184,227,231,91,24, - 23,186,123,22,239,100,255,217,251,1,234,79,238,135,219,221,30,181,46,109, - 182,116,12,59,247,34,220,179,120,39,91,245,203,111,70,61,159,32,8,34, - 18,22,191,215,7,143,199,133,214,214,86,52,55,55,195,227,113,161,195,113, - 54,68,128,184,120,56,154,79,225,216,225,143,209,88,119,24,181,213,21,248, - 250,203,114,28,63,126,92,85,8,164,226,22,107,30,82,212,132,173,181,181, - 21,117,117,117,98,249,1,128,95,23,103,203,198,181,72,75,75,139,42,58, - 82,97,136,68,107,107,43,0,192,233,116,134,8,65,44,54,229,72,203,190, - 101,227,90,20,93,117,61,60,94,23,114,134,143,129,163,249,84,200,126,94, - 207,114,145,211,155,199,13,119,151,177,14,199,217,176,223,2,231,161,231,107, - 89,205,161,143,81,245,213,70,212,29,223,139,150,179,199,224,118,187,177,99, - 251,6,120,189,94,76,47,250,110,152,208,53,53,28,69,205,209,114,108,253, - 240,15,129,186,141,224,197,117,118,118,162,189,189,29,183,255,244,105,140,26, - 119,85,196,186,39,8,130,208,130,69,250,193,235,245,162,179,189,41,76,128, - 184,120,180,53,215,226,63,187,215,194,237,108,198,127,190,222,139,186,186,58, - 177,161,151,163,36,110,122,243,224,168,9,27,0,177,49,110,108,108,132,195, - 225,128,213,106,15,75,239,116,58,209,220,220,12,183,219,29,85,116,164,194, - 208,218,218,10,167,211,169,218,48,59,157,78,120,189,94,241,124,147,197,12, - 171,213,46,150,137,167,141,85,232,120,189,108,248,199,187,248,246,213,215,227, - 76,237,1,184,157,205,33,251,175,254,238,205,98,125,43,121,114,90,243,224, - 226,215,217,222,4,32,240,91,144,82,115,232,99,236,219,249,119,212,86,237, - 196,87,123,63,131,219,237,70,103,103,39,154,155,3,194,254,209,186,183,96, - 181,90,113,229,119,230,136,66,151,145,53,12,94,151,3,0,208,212,212,132, - 206,206,78,120,60,30,197,107,229,2,231,118,183,107,234,206,36,8,130,136, - 134,69,190,67,46,64,188,177,118,185,92,232,116,181,160,211,213,130,234,234, - 106,180,182,182,162,161,161,65,81,84,228,226,22,75,30,128,54,97,107,109, - 109,133,195,225,128,215,235,197,221,11,30,194,152,139,191,3,155,61,3,238, - 96,195,10,116,121,14,78,167,51,170,232,212,85,239,130,183,211,41,158,207, - 27,112,37,188,94,47,28,142,46,59,54,123,38,178,134,142,198,165,151,95, - 137,53,239,252,5,94,175,23,173,173,173,176,88,44,186,132,142,11,37,47, - 187,211,233,196,191,54,172,197,140,25,51,66,174,201,233,116,170,138,156,222, - 60,164,226,39,231,158,197,59,89,197,214,85,168,173,218,137,202,242,173,104, - 107,107,67,123,123,59,28,14,7,60,30,79,200,13,192,27,127,94,137,244, - 244,116,220,118,231,99,200,108,31,129,246,150,211,162,24,74,235,74,10,207, - 195,233,116,170,214,53,65,16,132,94,66,4,206,98,177,132,9,80,109,109, - 45,28,14,7,230,206,157,11,0,248,226,139,47,68,111,172,185,185,57,68, - 84,0,101,113,211,155,135,94,97,187,235,238,133,200,26,60,10,99,46,254, - 14,46,152,120,61,94,93,122,169,112,251,207,54,169,14,82,80,19,186,51, - 39,190,132,207,219,137,182,224,128,149,72,93,106,64,64,224,164,158,206,170, - 197,147,133,185,247,189,205,188,238,14,220,113,247,207,209,220,112,20,239,190, - 243,87,221,66,39,21,202,13,255,120,87,44,243,182,109,219,48,99,198,12, - 140,31,63,30,219,182,109,19,247,43,137,156,222,60,228,226,39,197,237,118, - 162,169,233,56,42,203,183,138,158,178,84,216,184,48,121,189,94,252,247,221, - 63,69,138,61,19,0,224,114,54,193,209,118,26,0,68,207,77,205,131,227, - 233,9,130,32,140,34,68,224,210,210,210,0,4,4,72,77,152,0,136,194, - 116,215,221,11,113,238,152,203,68,81,185,103,233,110,182,107,211,203,81,197, - 45,90,30,123,182,151,225,212,209,221,97,194,198,61,42,135,195,1,151,203, - 133,187,238,94,136,204,172,92,228,95,56,11,231,79,190,65,247,104,69,169, - 208,109,248,199,187,176,217,108,152,54,109,154,104,47,22,248,72,197,51,181, - 251,113,112,247,7,152,127,247,163,104,107,174,197,251,107,254,174,106,179,232, - 170,235,209,116,166,10,67,206,253,6,238,89,186,155,113,161,108,109,172,193, - 183,175,190,30,255,218,176,86,76,247,209,71,31,225,154,107,174,193,140,25, - 51,176,109,219,54,113,255,154,119,254,130,155,230,222,14,171,61,3,119,45, - 222,25,83,30,92,252,228,240,46,195,198,198,70,212,215,215,227,134,27,110, - 4,0,124,240,193,251,112,187,221,176,88,44,152,59,247,251,0,128,140,172, - 115,144,57,48,23,109,45,181,248,120,243,251,184,248,226,75,98,170,71,130, - 32,136,120,9,153,232,205,27,63,46,36,94,175,87,20,166,29,59,118,0, - 128,184,127,222,188,121,176,165,101,33,119,196,68,113,152,185,219,213,134,214, - 198,26,81,220,120,140,74,111,30,141,117,135,177,126,245,74,236,252,244,223, - 33,3,72,164,101,186,237,182,219,96,75,203,194,136,243,167,227,252,201,55, - 224,131,63,204,23,98,153,115,198,189,171,198,198,70,52,52,52,224,163,143, - 62,18,69,56,86,94,93,122,169,240,193,31,230,11,231,79,190,1,35,206, - 159,14,91,90,22,174,185,230,26,92,115,205,53,226,77,4,183,89,87,87, - 135,119,222,252,19,94,93,177,24,173,141,53,224,115,208,222,249,253,247,133, - 220,252,137,176,165,101,97,198,140,25,72,75,75,19,187,68,63,250,232,35, - 0,8,219,255,230,235,171,224,104,174,133,215,219,17,83,30,173,173,173,216, - 182,109,155,88,207,114,60,30,15,110,190,229,71,200,200,58,7,86,123,6, - 114,114,114,48,119,238,247,69,113,219,190,253,99,116,186,218,208,214,82,139, - 206,224,117,0,129,248,26,65,16,68,178,9,17,56,175,215,139,107,174,185, - 70,28,32,97,177,88,176,110,221,58,0,192,180,105,211,196,59,125,190,223, - 237,108,70,237,137,61,152,123,223,219,12,8,196,160,6,228,228,225,194,139, - 11,69,47,37,150,60,114,134,143,193,181,115,22,224,210,203,175,68,109,109, - 173,216,37,233,245,122,97,177,88,240,209,71,31,97,219,182,109,112,59,155, - 113,226,224,118,28,220,253,1,110,184,187,140,221,181,120,167,230,185,83,94, - 175,23,46,151,11,46,151,11,14,135,3,14,135,3,205,205,205,184,230,154, - 107,132,28,91,186,0,0,32,0,73,68,65,84,48,126,252,248,184,226,65, - 119,45,222,201,110,184,187,140,29,220,253,1,78,28,220,14,183,179,25,213, - 213,213,162,112,114,145,225,219,205,115,127,132,187,22,46,197,128,156,60,216, - 130,221,123,115,239,123,155,213,86,239,17,211,242,116,0,112,205,53,215,0, - 232,242,134,249,117,204,187,237,30,100,100,229,194,98,73,141,41,15,135,195, - 129,25,51,102,136,55,38,28,147,205,38,190,79,177,103,34,115,96,46,82, - 236,153,152,62,253,91,0,128,61,123,42,177,103,79,37,172,86,43,60,46, - 7,28,205,167,176,127,223,110,180,183,183,135,216,36,8,130,72,38,138,143, - 234,226,141,31,0,81,80,128,128,64,113,15,196,98,177,224,253,53,127,71, - 109,117,5,254,179,103,173,216,45,54,250,162,171,48,114,204,21,226,240,243, - 88,242,24,63,237,54,76,158,121,55,198,92,252,29,220,113,247,207,113,227, - 77,63,0,16,30,243,218,186,229,159,216,180,225,239,56,118,248,19,236,222, - 250,7,236,220,248,59,81,40,213,144,10,27,223,120,28,111,209,207,127,131, - 193,195,199,33,197,62,80,44,163,94,230,222,247,54,219,185,241,119,216,189, - 245,15,56,118,248,19,236,218,177,62,100,176,78,99,99,163,232,33,113,155, - 99,39,94,143,201,51,239,198,228,25,119,137,19,198,143,236,223,24,168,151, - 96,218,214,214,86,184,92,174,144,174,94,167,211,41,238,191,123,193,67,24, - 57,230,138,144,174,94,189,121,204,155,55,15,64,160,171,218,98,233,234,189, - 182,217,210,48,124,196,4,204,155,255,40,172,214,84,209,67,59,118,172,26, - 135,14,29,4,0,113,16,201,246,237,31,227,243,207,119,160,190,190,30,77, - 77,77,49,213,33,65,16,132,17,132,141,162,76,177,15,132,45,45,11,55, - 222,244,3,49,110,227,245,122,177,110,221,58,92,119,221,117,33,113,27,175, - 215,139,119,222,252,19,238,127,100,153,56,106,241,157,223,127,95,224,34,115, - 245,119,111,198,134,127,188,171,59,15,222,213,40,125,82,201,93,11,158,136, - 56,104,3,128,40,170,119,45,222,201,164,163,40,57,92,204,164,66,201,7, - 168,140,157,120,61,70,93,52,27,29,173,167,177,111,199,155,81,43,78,201, - 43,17,99,144,7,63,198,190,221,91,1,68,30,20,195,109,42,205,197,107, - 62,125,68,236,234,61,126,252,56,154,155,155,113,219,109,183,1,232,18,166, - 134,134,6,113,144,206,200,49,87,224,226,105,183,134,116,245,234,201,227,174, - 187,23,34,51,103,36,220,206,102,216,36,30,27,0,172,90,122,169,112,199, - 207,183,176,140,140,193,248,122,207,251,88,247,206,75,176,88,44,226,208,127, - 62,58,178,189,189,93,244,218,220,110,183,216,117,201,137,52,192,132,32,8, - 194,104,194,4,46,51,43,23,35,206,159,142,214,198,26,81,160,248,29,62, - 23,63,62,104,129,239,151,79,210,86,18,57,189,121,0,250,132,14,0,214, - 188,243,23,44,120,240,215,33,83,4,248,96,17,169,183,6,132,11,27,23, - 153,219,127,182,137,29,168,252,0,64,215,60,55,181,46,54,249,126,46,42, - 251,118,111,141,73,216,56,210,201,247,188,139,86,42,64,0,66,70,160,202, - 197,45,150,60,206,29,115,25,6,228,228,225,196,193,237,97,30,28,0,188, - 246,171,34,225,142,159,111,97,14,71,3,174,155,251,83,52,214,29,198,218, - 247,223,12,27,77,201,235,235,190,251,31,69,246,144,2,113,20,101,103,103, - 103,196,81,169,209,70,172,18,4,65,232,69,108,197,120,227,148,146,158,141, - 188,49,151,1,184,12,86,139,29,87,127,247,102,113,78,151,92,252,248,126, - 37,228,34,23,75,30,156,104,66,39,245,204,148,132,146,139,12,160,46,108, - 252,92,62,127,140,215,7,23,167,72,240,249,102,74,162,162,71,216,228,56, - 157,78,177,251,81,42,64,78,167,19,14,135,67,85,220,98,201,227,252,201, - 55,0,0,206,156,252,42,44,6,199,121,237,87,69,194,61,139,119,178,193, - 195,199,224,228,145,114,220,118,231,99,104,57,123,12,111,190,241,42,220,110, - 55,188,94,47,126,178,224,33,12,28,52,18,23,76,10,228,87,119,124,175, - 56,137,91,45,95,14,63,102,146,121,144,4,65,16,177,96,225,13,58,191, - 131,182,90,237,24,152,115,30,254,242,235,217,162,64,221,52,247,118,188,249, - 250,42,164,164,103,99,244,69,87,193,237,110,135,213,98,23,247,43,77,210, - 6,66,69,46,214,60,164,168,9,93,75,243,73,188,94,246,18,188,94,175, - 152,15,191,46,62,193,92,171,200,216,236,153,24,60,226,34,204,155,255,11, - 93,207,162,180,103,100,193,237,106,19,197,209,229,114,225,142,249,247,198,36, - 108,210,239,100,222,109,247,136,2,100,179,165,227,204,201,175,224,118,187,113, - 219,252,159,70,20,183,88,242,184,253,103,155,152,252,183,32,103,213,210,75, - 133,135,158,175,101,57,67,207,199,185,163,11,113,242,72,57,238,253,127,75, - 209,114,246,24,254,92,246,18,6,14,26,137,111,20,206,69,110,193,165,240, - 187,221,72,73,207,198,237,63,125,90,243,179,40,243,70,21,194,102,139,45, - 254,73,16,4,33,133,86,19,80,64,207,106,2,0,96,207,200,234,87,171, - 9,112,248,195,151,27,79,31,196,201,35,229,104,111,63,139,156,161,99,112, - 254,248,239,226,181,95,21,5,242,164,213,4,8,130,232,38,4,1,209,215, - 0,187,107,241,78,230,245,118,132,29,83,219,175,132,17,121,68,202,219,237, - 114,132,44,93,3,132,10,149,205,158,145,212,245,224,226,181,217,211,215,131, - 147,242,208,243,181,204,209,116,2,124,125,184,85,70,212,51,9,28,65,16, - 113,34,44,91,182,140,185,92,234,93,113,118,187,114,215,225,220,185,55,225, - 157,119,214,32,214,180,0,144,151,55,74,71,81,187,168,169,57,218,235,210, - 10,0,30,251,249,207,197,207,207,252,234,87,208,210,130,63,249,228,147,49, - 217,3,128,39,158,120,34,226,241,170,170,42,140,46,40,208,88,174,72,154, - 21,158,194,136,59,9,61,10,247,244,211,79,107,58,239,241,199,31,15,249, - 108,18,132,132,221,244,212,159,62,205,246,239,223,143,253,251,247,99,207,158, - 61,0,128,85,175,188,66,11,195,18,68,146,176,0,192,77,55,221,164,43, - 209,184,113,227,80,83,115,20,241,166,5,128,3,7,14,0,0,4,65,128, - 201,20,62,45,143,177,192,255,215,239,247,3,0,62,250,232,35,81,32,141, - 72,171,149,120,211,226,161,135,80,80,80,16,118,172,170,170,42,98,218,31, - 254,240,135,120,227,141,55,0,64,124,140,88,36,174,186,234,42,49,223,104, - 121,191,241,198,27,192,19,79,40,150,171,11,45,237,49,63,167,171,173,61, - 18,197,246,232,130,2,212,213,215,71,206,118,216,48,13,182,187,144,139,151, - 156,173,91,183,226,233,167,159,142,122,94,172,148,239,218,197,62,252,240,67, - 236,218,181,11,149,149,149,200,205,205,197,240,225,195,113,254,249,231,163,176, - 176,48,33,54,9,130,80,71,113,162,119,178,17,4,65,20,41,249,102,54, - 155,97,50,153,160,118,163,29,79,218,100,83,80,80,32,110,122,248,225,15, - 127,8,32,240,168,179,236,236,108,213,77,42,110,198,148,75,111,189,133,158, - 95,80,80,128,141,27,55,170,126,6,128,97,195,134,97,239,222,189,170,159, - 141,230,241,199,31,87,244,246,202,95,158,194,164,219,225,35,71,88,115,75, - 139,46,239,232,195,15,63,196,201,147,39,113,237,181,215,226,245,215,95,71, - 109,109,45,78,158,56,33,108,222,180,73,248,245,51,207,8,227,198,69,127, - 46,231,230,45,91,216,230,45,91,200,43,35,8,3,8,155,7,151,108,184, - 64,153,205,230,176,185,87,64,192,11,99,140,137,94,152,81,105,187,3,189, - 194,38,133,123,114,235,215,175,199,181,215,94,27,118,124,202,148,41,0,244, - 139,155,122,185,98,189,41,16,192,61,185,170,170,42,81,116,149,62,3,64, - 125,125,61,38,76,152,160,250,217,72,164,182,23,47,94,44,78,60,47,127, - 121,10,43,188,183,34,228,130,203,95,190,133,53,77,121,25,205,45,45,44, - 107,224,64,77,149,49,105,210,36,148,150,148,196,124,55,181,255,192,1,182, - 112,225,66,204,158,61,59,214,44,8,130,144,208,35,4,142,123,92,249,249, - 249,138,231,28,59,118,12,62,159,47,76,168,226,73,43,101,220,184,113,138, - 251,181,116,69,234,73,27,143,192,1,234,34,23,143,184,25,81,174,100,33, - 8,130,216,237,28,11,92,208,182,110,221,42,138,29,23,55,63,123,57,36, - 99,147,112,175,80,254,242,189,236,80,69,224,28,241,64,5,144,253,216,91, - 24,60,120,48,180,10,159,86,182,109,219,134,109,219,182,97,208,160,65,186, - 132,149,32,8,101,194,4,142,63,51,82,142,244,249,148,106,196,154,150,123, - 98,207,63,255,188,226,241,185,115,231,70,237,162,140,37,45,71,45,173,150, - 107,214,147,54,68,128,98,20,21,185,200,197,43,110,202,229,138,183,93,21, - 0,28,65,65,65,1,94,121,229,21,81,76,228,159,129,64,151,228,134,13, - 27,68,175,77,254,57,44,231,56,69,78,9,185,184,241,125,38,225,222,176, - 138,88,249,19,176,179,127,255,59,126,240,131,31,24,90,134,253,7,14,176, - 59,239,188,19,0,176,122,245,234,48,79,151,32,8,253,132,9,220,67,15, - 61,164,120,162,22,111,38,150,180,92,124,4,65,192,173,183,222,170,120,14, - 127,194,133,92,168,226,73,43,69,139,144,25,145,214,8,129,3,186,68,206, - 8,113,51,178,92,74,249,38,162,139,50,17,34,135,10,160,162,226,149,144, - 93,33,158,91,8,239,162,105,227,187,56,124,228,8,27,51,122,116,220,94, - 86,253,233,211,108,225,194,133,40,47,47,23,247,61,243,204,51,216,188,101, - 11,155,85,84,68,94,28,65,196,72,152,192,233,29,33,104,84,218,254,128, - 92,136,170,170,170,196,17,146,177,18,207,52,2,105,57,140,102,180,6,161, - 28,30,109,148,100,132,155,18,67,69,174,162,2,21,21,21,144,199,225,148, - 240,239,122,153,153,166,222,43,172,252,9,216,217,179,127,55,196,252,142,29, - 59,80,80,80,128,9,19,38,96,239,222,189,200,201,201,193,176,97,195,176, - 125,251,118,28,175,169,97,231,229,229,133,148,235,120,77,13,3,0,249,126, - 130,32,66,233,246,24,156,148,225,195,135,43,238,63,113,226,68,66,211,38, - 43,6,119,239,79,126,18,242,121,116,65,1,16,101,174,90,36,254,23,136, - 43,61,71,94,46,65,215,12,52,101,4,133,105,27,122,137,86,10,163,61, - 57,165,174,202,48,42,42,224,103,47,179,87,238,189,87,92,99,47,30,154, - 91,90,88,67,67,3,110,188,225,6,225,151,79,62,201,248,8,210,199,31, - 127,28,211,166,77,11,91,44,182,254,244,105,182,122,245,106,92,112,193,5, - 113,219,38,136,190,78,143,136,193,113,212,226,89,223,255,254,247,21,247,39, - 58,173,209,49,184,191,189,217,181,12,207,173,243,230,105,146,145,53,107,214, - 104,56,75,153,104,115,20,79,159,62,141,97,67,135,42,148,43,126,199,192, - 100,200,84,239,200,148,150,150,38,220,134,17,108,222,178,133,109,221,186,21, - 7,14,236,11,59,38,29,72,146,147,147,3,32,240,128,236,79,62,249,4, - 55,222,112,67,72,37,214,159,62,205,158,120,226,9,100,103,103,139,107,247, - 17,4,161,78,183,199,224,164,68,139,163,37,42,109,178,98,112,67,135,14, - 13,219,119,250,244,233,136,105,46,191,252,114,124,250,233,167,0,16,118,55, - 175,4,31,252,112,250,244,233,168,121,127,250,233,167,192,77,55,41,150,171, - 39,32,23,48,233,231,210,210,82,148,148,148,36,183,64,0,42,80,129,41, - 152,18,182,255,120,77,13,171,172,172,12,219,95,186,100,9,227,113,199,25, - 51,102,68,204,123,196,136,17,24,62,124,56,234,234,234,240,246,219,111,99, - 229,203,47,179,57,115,230,160,179,179,19,149,149,149,184,241,198,27,209,220, - 220,140,151,94,122,201,240,17,156,4,209,23,161,24,92,18,57,115,230,76, - 76,233,184,200,165,164,164,168,14,192,96,140,137,195,253,163,9,155,81,229, - 74,52,114,1,227,2,151,80,113,171,168,136,114,28,144,234,219,254,3,7, - 216,247,190,247,61,140,26,53,74,81,192,86,173,90,37,190,127,240,193,7, - 177,121,211,38,213,172,167,77,155,134,203,46,187,12,171,87,175,198,241,227, - 199,241,203,95,254,18,235,214,173,3,0,124,254,249,231,104,108,108,196,138, - 21,43,64,3,79,8,66,27,20,131,67,242,98,112,179,102,205,138,154,159, - 26,92,228,246,238,221,27,38,114,241,136,91,188,229,74,54,221,229,185,169, - 113,219,109,183,225,248,241,227,0,128,49,99,198,132,9,216,191,254,245,47, - 108,222,188,25,179,102,205,194,69,227,198,69,20,166,97,67,135,10,43,126, - 255,123,182,122,245,106,0,64,93,93,29,214,175,95,15,32,208,125,89,90, - 90,138,5,247,134,79,93,32,8,66,25,138,193,69,72,107,116,12,46,222, - 174,64,169,200,141,31,63,30,64,96,160,69,60,226,102,68,185,146,69,34, - 196,45,251,170,183,80,177,241,22,0,64,197,189,175,160,2,81,60,56,0, - 21,247,222,139,117,167,174,199,101,151,229,35,59,59,27,77,77,77,184,234, - 170,171,240,236,179,207,98,213,43,161,83,13,162,137,154,156,185,115,231,162, - 177,177,17,191,250,213,175,224,114,185,96,183,219,113,201,37,151,224,222,123, - 23,98,206,156,235,241,191,6,12,42,34,136,254,2,197,224,144,188,24,92, - 136,0,197,40,42,92,228,190,248,226,11,140,31,63,30,163,70,141,10,207, - 91,39,70,148,43,25,68,19,183,173,91,183,234,206,115,240,224,193,104,154, - 242,50,54,108,216,128,106,84,3,10,241,53,37,46,187,44,31,87,95,125, - 53,10,167,78,21,0,96,213,43,175,132,137,91,44,12,27,58,52,68,16, - 219,29,14,236,248,236,51,236,248,236,51,252,247,252,184,179,39,136,126,5, - 197,224,146,200,230,205,155,187,62,196,241,36,12,46,114,241,122,110,70,151, - 171,59,89,188,120,113,76,233,178,6,14,20,154,91,90,88,118,118,182,184, - 146,185,22,108,54,27,6,15,30,28,147,77,130,32,146,3,197,224,144,188, - 24,220,144,33,67,66,62,159,62,125,90,28,33,25,43,241,76,35,224,200, - 203,213,83,80,90,2,201,240,252,5,129,101,101,101,197,158,9,173,199,70, - 16,61,22,138,193,69,72,107,116,12,238,74,217,83,226,135,13,29,10,232, - 92,79,47,140,120,211,35,188,92,134,76,244,238,25,43,49,17,4,209,143, - 161,24,28,146,23,131,139,101,69,239,68,162,190,162,119,239,152,232,77,16, - 4,17,9,138,193,37,145,88,86,244,142,150,215,147,79,62,41,46,136,170, - 23,109,43,122,19,4,65,244,78,40,6,135,222,179,30,156,60,159,138,224, - 164,228,55,222,120,35,102,145,51,178,92,4,65,16,61,137,94,29,131,227, - 15,218,101,140,69,92,15,78,122,174,30,187,70,199,224,140,16,18,185,184, - 93,123,237,181,88,191,126,125,92,34,23,94,46,134,248,214,132,99,0,197, - 224,8,130,232,102,122,117,12,142,49,6,191,223,15,65,16,68,33,147,31, - 231,171,121,71,18,184,100,197,224,226,21,56,185,184,113,226,21,57,242,224, - 8,130,232,139,244,234,24,156,207,231,19,69,142,35,21,50,198,88,136,200, - 117,55,241,44,44,170,38,110,156,120,68,78,185,92,177,122,113,221,61,116, - 134,32,8,34,64,175,142,193,57,157,78,8,130,0,65,16,66,230,76,73, - 187,46,129,46,33,84,35,158,24,156,30,98,21,56,46,110,27,55,110,140, - 120,222,180,105,211,176,99,199,14,221,34,167,94,46,189,34,71,226,70,16, - 68,207,193,208,24,92,188,232,141,193,157,58,117,10,66,112,213,103,190,248, - 165,82,119,36,247,228,244,218,53,250,154,19,177,162,183,26,122,242,141,60, - 146,147,215,91,36,161,35,97,35,8,162,231,17,87,12,78,237,220,88,209, - 27,131,59,114,228,72,216,62,151,203,165,154,191,221,110,87,220,175,71,200, - 212,196,80,139,93,163,87,244,54,10,121,185,148,159,32,18,73,224,104,64, - 9,65,16,61,143,184,98,112,241,60,74,233,216,177,112,113,210,202,200,145, - 163,99,78,59,119,110,236,79,254,136,199,46,30,122,40,166,21,189,19,137, - 218,138,222,4,65,16,125,129,94,29,131,51,138,100,197,224,98,89,209,59, - 90,94,107,214,172,193,229,151,95,30,83,30,61,125,69,111,130,32,136,120, - 232,213,49,184,68,219,53,250,154,141,90,57,155,11,210,209,163,71,1,4, - 132,42,86,145,51,178,92,4,65,16,61,9,67,231,193,197,75,60,207,147, - 140,135,100,136,55,96,204,202,217,114,113,27,63,126,60,190,248,226,139,184, - 68,174,55,173,232,77,16,4,161,21,67,231,193,17,145,137,183,43,144,167, - 175,170,170,18,71,143,2,241,139,28,117,81,18,4,209,23,161,24,28,146, - 23,131,139,103,229,108,169,184,1,129,169,15,124,14,32,0,76,152,48,1, - 123,247,238,141,73,228,122,203,138,222,4,65,16,122,160,24,92,4,187,70, - 95,115,172,43,103,115,113,251,251,223,255,30,245,220,148,148,20,221,34,215, - 23,86,244,38,8,130,144,67,49,56,36,47,6,23,239,138,222,41,41,41, - 154,207,213,147,111,79,93,209,155,32,8,34,30,40,6,151,36,4,147,9, - 87,73,63,3,80,238,144,77,46,2,16,86,46,130,32,136,190,0,197,224, - 144,188,24,28,65,16,4,145,60,40,6,23,193,110,178,186,46,9,130,32, - 8,227,161,24,28,72,200,8,130,32,250,34,20,131,35,8,130,32,250,36, - 20,131,3,197,224,8,130,32,250,34,20,131,139,96,151,186,46,9,130,32, - 122,47,20,131,3,9,25,65,16,68,95,132,98,112,4,65,16,68,159,132, - 98,112,160,24,28,65,16,68,95,132,98,112,17,236,82,215,37,65,16,68, - 239,133,98,112,32,33,35,8,130,232,139,80,12,142,32,8,130,232,147,80, - 12,14,20,131,35,8,130,232,139,116,123,12,142,49,38,190,170,197,194,230, - 206,157,27,114,174,209,80,12,142,32,8,162,239,209,237,49,56,198,24,252, - 126,63,4,65,16,133,76,126,220,231,243,193,239,247,39,76,224,72,200,8, - 130,32,250,30,221,30,131,243,249,124,162,200,113,164,66,198,24,11,17,57, - 130,32,8,130,208,66,183,199,224,156,78,39,4,65,128,32,8,48,153,76, - 226,126,105,215,37,208,37,132,4,65,16,4,161,133,110,23,184,83,167,78, - 65,16,2,235,72,11,130,32,122,115,114,49,227,158,28,65,16,4,65,104, - 193,162,22,115,75,22,71,142,28,9,219,231,114,185,84,207,183,219,237,113, - 219,84,27,84,146,104,187,4,65,16,68,242,16,24,185,69,4,65,40,32, - 240,174,149,8,44,92,184,112,242,138,21,43,118,243,87,157,38,74,1,148, - 0,88,18,124,47,183,79,109,19,17,23,221,222,69,73,16,68,239,100,225, - 194,133,21,193,87,190,107,138,198,164,23,2,120,4,192,213,0,124,0,238, - 4,48,2,192,111,0,124,109,108,41,137,254,12,121,112,4,65,40,162,228, - 193,45,92,184,208,10,32,13,64,42,128,66,0,79,3,176,35,32,86,78, - 0,29,0,156,43,86,172,240,168,100,123,11,128,191,60,249,228,83,182,27, - 110,184,25,227,198,21,224,216,177,99,120,235,173,183,240,139,95,252,194,13, - 224,118,0,111,5,237,83,219,68,196,5,9,28,65,16,138,200,5,110,225, - 194,133,105,0,206,7,240,13,0,231,1,200,3,48,50,120,248,24,128,26, - 0,199,1,124,5,224,224,138,21,43,156,178,44,47,4,176,119,243,230,205, - 182,221,187,179,224,112,120,176,120,113,161,120,112,203,150,45,152,53,107,150, - 27,192,4,0,95,147,192,17,241,98,138,126,10,65,16,253,157,133,11,23, - 14,4,112,5,128,121,0,102,1,24,6,160,5,129,174,197,154,224,251,97, - 193,99,243,0,92,17,76,35,229,145,167,158,122,202,86,84,84,132,219,111, - 191,0,111,191,125,24,167,78,181,139,7,139,138,138,240,212,83,79,217,16, - 232,190,36,136,184,33,15,142,32,8,69,184,7,23,20,170,107,0,76,71, - 32,102,214,4,160,21,129,238,200,161,0,234,1,8,8,116,91,14,0,144, - 13,192,12,224,99,0,255,92,177,98,69,75,48,203,227,135,15,31,206,27, - 61,122,52,0,96,241,226,207,209,222,238,69,90,154,5,195,135,167,97,225, - 194,75,112,228,200,17,140,25,51,166,6,192,121,228,193,17,241,66,2,71, - 16,61,18,6,198,124,240,251,129,83,167,58,177,105,115,43,118,126,222,138, - 175,191,110,70,221,41,55,90,91,93,48,153,24,6,13,54,35,55,215,130, - 241,151,100,225,138,43,178,113,197,244,161,200,204,180,6,31,158,16,95,7, - 141,32,8,66,176,91,242,90,0,51,1,184,1,156,6,48,22,192,143,1, - 252,23,0,30,107,227,177,185,1,0,6,33,32,124,54,0,91,1,172,15, - 118,87,122,61,30,143,217,98,9,140,109,171,171,115,226,219,223,126,31,55, - 221,84,128,251,238,187,24,231,156,147,14,175,215,11,171,213,234,3,96,33, - 129,35,226,133,4,142,32,122,20,129,191,99,71,135,15,171,215,52,224,181, - 178,179,248,98,111,19,58,59,235,224,118,31,131,159,213,194,239,111,134,215, - 231,129,192,76,240,179,1,0,6,64,64,54,128,129,200,202,182,226,154,107, - 70,96,193,130,139,48,109,218,80,152,205,38,4,252,176,168,35,254,195,184, - 255,254,251,109,0,46,71,64,224,236,0,106,17,240,214,26,0,188,11,224, - 151,0,214,5,79,183,160,75,224,6,35,208,93,153,11,192,5,96,61,128, - 79,87,172,88,113,68,234,193,5,174,211,139,212,212,174,193,220,228,193,17, - 70,66,211,4,8,162,135,224,247,123,225,247,51,172,95,223,130,95,61,93, - 139,211,167,27,208,222,190,5,77,77,159,34,35,211,137,41,83,10,80,80, - 48,2,3,179,198,32,53,53,21,62,175,31,78,103,39,206,156,105,193,215, - 95,127,141,67,135,26,209,212,52,20,127,251,219,8,188,253,246,87,184,246, - 218,115,241,228,147,211,113,193,5,217,176,88,172,208,48,173,77,78,46,128, - 105,8,8,86,13,128,70,4,196,237,44,128,247,1,20,3,248,115,240,92, - 11,2,93,150,82,143,46,21,129,129,40,211,0,84,3,216,240,214,91,111, - 221,245,248,227,143,139,6,164,226,6,0,111,189,245,22,0,108,208,91,80, - 130,80,130,60,56,130,232,102,24,11,60,154,206,225,240,225,23,143,159,192, - 246,237,167,225,116,173,195,201,19,235,48,125,250,68,92,243,157,34,92,124, - 201,121,176,217,44,176,217,204,176,89,109,48,155,205,48,153,3,226,192,252, - 12,94,159,7,77,77,46,108,222,124,24,107,215,86,98,255,126,23,152,127, - 36,50,51,109,120,250,153,43,112,199,143,39,194,110,183,194,100,210,126,79, - 123,255,253,247,79,3,112,19,2,66,117,12,192,9,0,117,8,8,92,27, - 2,35,38,103,1,216,139,128,192,61,15,96,18,128,5,0,134,35,48,0, - 101,36,2,194,183,38,24,139,219,187,121,243,102,91,81,81,81,152,61,26, - 69,73,24,13,121,112,4,209,205,48,198,208,212,228,197,29,63,62,134,118, - 103,13,170,143,149,224,146,111,12,199,255,254,79,41,70,156,151,141,148,20, - 43,50,210,51,144,145,145,129,180,180,52,164,164,164,192,108,54,119,197,216, - 24,131,207,239,131,219,237,198,216,177,121,152,55,175,16,27,254,121,20,47, - 188,240,47,156,172,205,68,241,253,255,196,161,131,167,81,82,82,132,204,204, - 204,144,135,154,71,97,24,128,129,232,26,80,226,68,215,92,55,23,2,131, - 72,150,32,208,133,249,40,128,31,1,40,0,144,35,57,175,35,152,199,48, - 0,159,3,184,125,214,172,89,127,121,234,169,167,108,183,220,114,11,70,142, - 28,169,52,15,142,38,123,19,134,64,30,28,65,116,35,1,207,205,131,31, - 220,82,141,142,206,74,236,252,252,105,44,88,48,23,215,93,55,29,86,155, - 21,89,89,3,145,147,157,141,140,140,76,216,237,118,88,44,22,113,245,13, - 89,78,240,251,3,203,74,185,221,94,56,219,219,80,83,211,136,39,158,88, - 143,127,110,104,128,0,63,30,124,176,16,139,23,95,133,244,140,116,152,205, - 230,168,101,187,255,254,251,255,27,192,149,8,116,47,86,35,208,77,89,143, - 64,87,165,3,192,56,0,159,0,120,18,192,19,8,8,91,6,2,163,40, - 135,35,208,61,153,31,220,254,189,98,197,138,178,96,214,210,39,153,228,34, - 16,219,219,0,217,147,76,200,131,35,226,133,60,56,130,232,38,2,235,28, - 122,240,179,159,157,64,155,227,8,246,236,121,18,255,251,196,125,184,116,218, - 133,72,207,72,199,208,33,67,48,104,208,32,164,166,166,130,143,60,84,71, - 128,201,20,88,114,202,106,181,194,110,183,34,35,51,3,47,191,242,3,60, - 254,248,191,241,183,55,170,240,226,139,219,112,193,133,57,152,55,111,10,50, - 50,50,98,137,201,201,217,131,64,204,237,231,8,204,145,139,92,66,117,193, - 202,3,112,87,112,35,8,195,160,137,222,4,209,109,48,252,107,99,27,182, - 111,111,192,190,125,207,226,222,123,126,132,105,211,46,196,192,1,3,144,119, - 238,185,24,62,252,28,100,100,100,104,16,183,112,204,102,11,236,246,84,12, - 31,62,20,191,249,205,247,48,115,102,46,188,222,225,40,41,121,23,213,85, - 245,112,185,92,90,150,159,242,5,95,173,146,205,34,217,204,0,178,0,252, - 26,192,62,201,126,249,249,0,224,213,125,17,4,17,39,228,193,169,224,247, - 251,97,50,153,224,243,117,61,105,65,16,248,146,57,225,119,190,38,147,9, - 126,127,160,61,96,204,21,60,87,8,238,231,43,145,51,184,221,62,116,184, - 155,208,212,106,67,243,89,43,106,142,251,209,212,112,26,85,53,118,180,53, - 219,112,244,72,45,142,31,115,163,221,145,138,166,38,23,156,206,6,197,242, - 165,15,0,206,61,103,16,206,27,105,67,70,230,0,12,25,210,142,188,145, - 35,144,53,212,140,65,153,64,222,121,38,100,13,242,32,43,43,13,105,22, - 1,54,155,69,140,189,120,60,30,177,139,74,122,141,252,250,76,166,174,238, - 43,191,223,7,198,2,203,8,153,205,233,33,117,67,196,135,215,203,240,204, - 211,181,232,112,254,11,227,198,13,196,181,223,187,12,25,25,169,200,61,231, - 28,12,26,60,24,54,155,45,174,252,5,65,128,213,106,193,144,33,3,240, - 252,11,223,195,172,153,111,161,190,222,140,85,127,216,130,199,31,255,46,134, - 12,29,26,77,60,235,17,120,66,137,29,129,129,38,105,193,173,3,93,130, - 229,69,160,107,209,174,112,94,106,112,107,65,96,254,28,65,36,21,18,56, - 85,2,119,183,210,70,93,122,140,55,250,28,191,223,46,17,134,116,120,60, - 30,248,124,12,109,14,63,106,78,122,81,115,220,143,35,71,124,216,189,171, - 9,251,191,108,64,245,161,227,104,113,9,0,115,1,130,29,140,13,68,90, - 138,7,206,78,43,0,64,16,120,123,208,25,124,77,145,88,235,68,71,3, - 208,208,224,196,222,125,0,152,11,130,208,1,224,115,48,230,130,61,197,6, - 87,167,27,131,6,13,195,229,151,143,197,168,209,185,152,112,73,43,178,7, - 15,69,222,121,38,92,114,81,10,156,45,14,164,14,48,195,231,235,202,53, - 84,216,252,146,125,233,146,253,146,4,68,204,48,230,199,103,159,53,227,200, - 145,38,156,61,251,62,126,254,248,163,176,219,205,24,60,100,8,178,115,114, - 84,197,141,49,6,230,239,4,243,187,1,147,21,38,147,21,130,192,191,55, - 1,252,119,43,189,9,51,155,45,248,198,69,131,113,247,61,83,177,236,57, - 31,222,125,119,59,230,207,191,12,25,153,25,200,200,200,140,212,85,201,5, - 110,24,2,243,219,6,34,48,120,132,79,5,176,160,75,232,44,232,122,146, - 9,63,119,0,2,49,185,250,224,70,16,73,133,4,78,5,222,216,7,26, - 122,38,251,44,192,108,78,23,143,241,243,253,126,63,206,54,186,81,115,210, - 139,61,95,249,177,111,151,11,21,123,42,241,245,190,86,156,109,76,133,32, - 12,146,88,56,23,130,0,248,89,59,192,0,65,112,161,195,13,8,130,252, - 249,180,64,168,184,5,9,10,35,128,128,64,34,248,216,63,1,112,185,129, - 212,20,51,206,158,109,196,186,117,187,192,88,42,2,79,87,2,242,207,201, - 195,37,83,71,98,246,149,192,128,204,12,140,159,60,28,23,93,96,131,205, - 102,129,199,227,129,201,228,22,77,8,66,170,98,221,4,196,61,93,241,24, - 17,29,62,45,224,31,255,104,66,71,199,126,140,26,53,24,5,163,135,96, - 192,128,129,200,201,25,132,148,148,20,133,243,189,96,12,96,172,19,232,172, - 133,208,121,10,48,103,192,103,31,1,193,146,3,65,0,152,223,13,6,6, - 147,41,5,130,96,150,8,95,224,247,121,199,29,231,227,133,223,254,7,117, - 245,14,124,177,239,40,114,207,29,132,180,180,136,3,78,78,5,183,60,4, - 6,142,200,231,185,57,161,252,36,147,193,8,12,56,201,70,224,105,38,60, - 31,130,72,42,36,112,42,120,60,30,88,173,86,177,235,49,180,27,79,128, - 203,229,134,217,28,184,243,61,125,250,52,118,149,55,224,72,245,121,216,182, - 249,24,62,221,238,65,75,107,58,124,172,5,126,191,25,130,144,10,198,236, - 96,140,231,17,240,254,24,179,135,124,14,120,107,225,98,150,106,51,163,195, - 45,245,156,82,66,123,73,153,11,129,81,219,93,116,116,2,130,208,17,20, - 55,32,208,214,0,213,167,28,168,94,251,21,214,174,13,236,157,120,113,54, - 38,78,240,224,91,179,191,129,188,49,131,49,126,156,29,131,114,108,240,249, - 124,48,155,25,92,46,55,124,62,15,82,83,187,186,103,213,132,143,208,3, - 67,121,121,35,58,59,15,99,194,132,111,192,106,181,98,192,128,129,72,181, - 167,134,120,84,126,191,7,126,79,3,224,105,4,32,64,96,94,248,219,247, - 192,235,248,10,66,202,16,248,189,51,128,52,11,172,232,0,58,107,3,105, - 82,134,67,176,13,15,17,46,65,16,112,225,133,57,24,145,55,8,199,170, - 135,97,223,23,135,49,125,250,133,200,202,202,82,21,184,21,43,86,156,94, - 184,112,225,191,17,16,171,81,8,245,214,210,160,46,112,252,81,93,3,1, - 28,70,96,4,229,105,3,6,181,16,132,46,72,224,84,48,153,220,240,251, - 187,226,76,220,99,227,130,215,230,240,227,139,3,46,236,173,96,216,182,249, - 12,214,125,216,1,224,107,248,253,237,16,132,22,48,54,16,38,83,192,203, - 97,204,14,65,112,73,4,109,16,82,7,156,1,235,8,180,13,105,105,195, - 32,88,26,192,188,231,5,142,91,26,224,244,72,151,211,242,35,213,212,17, - 90,64,255,0,0,128,179,211,10,65,8,237,190,228,240,49,4,129,238,75, - 72,246,187,0,225,28,0,192,158,47,155,176,231,203,38,252,245,237,175,113, - 206,176,28,92,241,173,43,49,251,187,131,49,241,27,38,228,157,107,193,160, - 28,27,0,11,24,235,128,199,99,133,221,30,95,92,136,0,248,221,201,209, - 163,237,112,123,206,224,188,243,198,195,110,181,34,45,61,21,102,139,52,182, - 201,192,124,14,160,253,32,252,206,224,98,217,166,108,176,142,74,120,107,247, - 2,195,70,160,211,125,46,224,205,196,0,211,9,248,157,229,96,204,7,164, - 126,19,254,204,116,164,164,152,97,54,91,2,221,154,204,15,65,16,112,193, - 5,57,56,86,157,134,147,39,235,225,234,112,194,235,241,6,34,103,42,172, - 88,177,226,192,194,133,11,55,35,48,152,100,16,186,186,34,249,220,56,249, - 147,75,248,195,150,7,34,208,109,176,121,197,138,21,7,140,170,57,130,208, - 3,9,156,10,130,144,26,50,0,195,239,79,197,217,70,55,62,253,204,141, - 35,71,124,120,255,125,7,234,106,154,113,168,170,30,38,83,58,252,254,118, - 73,234,20,152,132,106,164,14,24,138,212,160,144,0,93,43,135,8,150,6, - 12,202,178,227,108,179,15,204,239,0,99,71,192,124,0,132,35,104,115,180, - 195,132,38,116,186,173,232,106,121,164,222,89,96,159,213,22,248,234,108,54, - 192,237,182,32,53,37,19,157,238,64,227,200,88,42,82,83,45,232,8,234, - 154,232,197,137,93,154,8,122,125,156,108,120,61,118,212,156,0,222,120,99, - 53,222,121,199,139,115,134,229,224,166,255,154,134,81,163,124,152,62,115,12, - 242,71,91,145,149,102,17,7,157,8,130,61,36,102,71,232,129,193,237,246, - 163,179,211,12,179,153,193,106,75,67,187,203,138,170,35,30,100,103,249,97, - 50,153,193,152,31,126,159,19,172,163,26,254,246,74,120,27,54,67,176,167, - 192,103,202,131,201,95,13,115,237,89,248,7,251,224,237,220,15,179,31,240, - 152,235,32,116,126,1,56,58,225,202,26,2,191,48,10,130,41,21,41,130, - 9,0,195,222,61,13,24,51,54,11,105,169,118,88,44,233,232,112,117,194, - 237,241,193,235,243,130,49,22,113,202,192,138,21,43,62,14,174,218,125,35, - 2,158,89,6,2,243,224,164,131,77,184,240,101,32,208,45,121,26,192,251, - 43,86,172,248,56,97,213,72,16,81,32,129,139,128,223,239,135,223,111,67, - 77,189,3,91,182,249,176,175,252,24,182,110,238,192,158,47,90,195,68,205, - 100,74,71,206,192,64,117,102,103,15,3,95,7,210,108,62,133,14,215,49, - 241,60,71,123,39,90,91,218,113,230,76,96,116,36,131,11,2,92,232,122, - 56,68,104,87,163,26,110,55,63,47,48,120,173,163,51,48,128,141,5,5, - 176,163,99,120,48,127,59,82,83,50,1,0,174,206,64,28,78,16,236,98, - 23,39,99,169,33,30,158,128,20,120,220,41,56,94,211,137,229,47,108,5, - 67,39,38,93,92,139,25,87,230,161,104,246,72,92,126,153,13,131,114,236, - 193,250,241,193,231,243,7,175,51,84,236,104,148,165,50,126,191,23,95,127, - 237,194,79,23,28,67,90,234,0,180,182,52,130,49,224,171,47,59,241,226, - 139,107,240,246,219,255,133,177,99,179,96,49,187,129,142,35,240,183,237,132, - 223,253,25,76,29,199,225,243,88,224,73,233,132,197,220,136,148,134,86,48, - 115,39,172,172,28,232,108,5,179,56,33,56,79,193,227,22,208,217,209,4, - 143,181,29,182,84,31,172,22,134,127,109,108,196,207,31,253,7,222,91,115, - 35,124,62,47,10,70,79,196,250,245,187,96,183,125,129,103,158,205,197,128, - 1,254,144,120,157,18,65,145,107,0,48,7,192,5,8,120,105,131,100,167, - 241,145,88,95,3,88,77,158,27,209,221,144,192,169,224,245,156,69,83,179, - 15,235,255,225,192,198,127,155,176,97,253,89,52,182,4,110,86,121,215,35, - 127,205,25,104,65,118,182,29,233,25,92,40,58,208,114,230,20,218,220,110, - 180,59,154,224,234,172,1,131,11,129,56,123,51,2,34,214,2,32,37,168, - 51,157,8,8,156,18,242,81,148,252,115,86,240,181,69,114,204,30,204,207, - 14,134,83,224,222,94,71,103,42,128,44,8,200,2,131,29,140,117,66,64, - 10,236,41,54,0,237,112,117,166,139,34,39,8,118,48,230,2,67,39,210, - 82,71,192,229,106,195,222,175,106,241,213,193,125,88,243,94,14,110,190,121, - 48,190,53,235,74,124,231,219,129,188,121,28,210,23,28,142,169,229,9,25, - 253,23,134,195,135,59,113,221,247,142,130,49,63,76,230,253,112,118,156,4, - 131,9,167,234,60,56,126,172,26,103,27,78,98,200,96,15,114,50,218,129, - 182,221,240,55,127,4,33,227,107,192,212,4,83,99,26,132,115,173,48,153, - 58,192,28,109,176,218,90,33,248,60,232,244,181,192,231,183,65,104,109,128, - 217,155,14,175,189,29,62,79,7,124,126,55,24,179,227,192,254,22,84,85, - 31,192,217,179,211,225,118,187,97,54,15,194,160,156,49,120,231,189,189,104, - 110,105,197,159,255,48,67,5,86,0,0,32,0,73,68,65,84,242,67,12, - 30,172,30,139,227,4,187,43,207,34,240,4,147,177,0,198,32,16,159,3, - 2,79,55,57,12,224,16,128,3,43,86,172,160,105,1,68,183,211,47,4, - 78,58,180,157,15,239,23,132,84,248,124,62,88,173,86,248,124,237,240,121, - 157,176,88,7,193,100,50,193,227,241,224,119,47,89,176,123,87,27,254,245, - 175,67,56,123,54,75,146,87,187,232,173,141,200,99,56,111,100,32,38,85, - 115,180,6,141,77,39,225,104,239,132,179,221,6,230,223,4,151,199,139,46, - 175,172,5,1,17,235,132,186,151,102,135,82,119,100,128,78,132,211,129,64, - 175,80,167,236,156,22,201,57,41,224,94,30,67,22,184,151,199,0,184,58, - 179,192,144,5,147,96,2,67,54,82,237,94,184,92,109,0,0,147,48,16, - 46,87,155,40,118,30,119,58,142,213,180,226,165,151,24,254,252,151,127,226, - 71,183,93,136,162,217,35,241,173,89,41,24,152,26,16,126,143,199,10,179, - 57,32,118,129,65,42,38,120,61,141,0,0,91,202,144,96,253,249,193,88, - 135,56,253,162,191,192,152,31,237,237,30,252,248,142,42,48,230,199,35,143, - 102,98,209,162,29,96,172,19,126,159,23,86,171,15,140,49,116,180,53,163, - 179,217,9,198,78,130,117,150,3,142,255,192,50,184,30,204,235,134,112,214, - 15,225,188,52,152,172,46,152,93,126,192,236,130,153,249,96,247,2,94,91, - 38,76,29,110,116,90,45,96,254,86,192,83,7,116,102,2,118,51,188,62, - 6,230,247,163,181,165,9,30,175,23,95,127,221,130,220,225,25,0,75,199, - 198,127,239,194,83,255,151,133,146,210,239,98,224,192,44,249,192,148,176,153, - 224,191,255,253,239,53,93,47,13,40,33,122,2,125,86,224,124,190,118,49, - 78,196,135,240,7,186,205,210,131,19,157,89,112,32,137,25,30,143,21,54, - 91,160,183,165,236,79,135,69,143,205,233,108,128,179,211,10,105,111,219,224, - 236,129,184,124,186,85,252,124,240,235,211,56,118,188,26,174,206,51,96,168, - 6,112,20,161,2,211,37,106,76,38,108,66,88,116,95,122,124,160,228,189, - 210,168,197,102,4,196,139,191,2,106,163,48,187,242,110,6,208,9,1,29, - 0,242,131,221,153,217,240,179,128,119,231,236,176,139,158,157,171,179,171,44, - 130,36,79,87,231,25,248,88,19,150,191,112,16,107,222,27,138,155,254,107, - 26,110,159,63,10,23,140,17,96,181,180,192,217,146,130,180,129,25,226,4, - 119,91,202,16,248,124,237,104,111,111,71,122,122,122,112,127,127,28,133,41, - 224,149,87,206,98,111,165,19,191,248,159,115,241,214,91,187,225,118,159,5, - 192,2,235,181,49,1,96,2,124,190,14,152,220,199,192,90,63,131,96,221, - 11,193,215,0,65,104,7,58,0,161,173,3,22,171,19,2,220,128,199,13, - 193,4,8,29,94,152,252,45,176,216,61,48,117,122,97,54,11,176,90,142, - 193,238,219,10,147,227,24,188,166,66,248,61,41,96,0,252,254,128,94,249, - 253,2,218,28,102,64,72,7,99,41,88,245,135,117,248,222,247,46,194,101, - 151,95,128,140,140,116,18,39,162,207,208,119,5,206,235,68,96,53,17,222, - 157,104,130,203,229,134,205,102,129,217,108,134,215,115,22,182,148,33,129,70, - 216,102,193,218,15,29,120,251,239,13,40,223,209,129,67,85,245,176,154,115, - 225,99,94,152,76,128,89,24,136,111,124,195,129,139,46,30,12,71,91,43, - 142,31,115,163,169,105,47,234,235,143,192,229,62,129,128,112,240,173,75,204, - 184,128,241,247,252,179,61,37,240,60,218,1,105,195,48,120,112,58,82,236, - 131,49,106,228,40,0,64,110,158,21,182,148,192,192,148,1,233,64,102,118, - 224,43,106,107,242,34,51,219,130,182,166,128,183,212,42,25,211,210,84,119, - 12,45,14,1,199,142,1,126,28,69,167,171,1,251,15,241,174,80,23,66, - 187,64,179,16,16,79,46,120,117,232,242,238,178,193,144,133,142,78,192,102, - 27,12,183,219,34,138,91,64,244,2,179,254,220,110,64,64,192,163,123,225, - 133,13,88,243,222,0,60,180,168,16,211,103,142,193,69,23,216,224,245,156, - 69,123,167,31,25,169,57,112,187,189,176,217,82,145,154,10,184,92,129,57, - 118,54,91,159,253,217,169,210,233,246,97,197,138,90,228,230,154,113,242,100, - 3,62,253,228,48,2,33,43,6,198,4,48,48,8,2,131,25,157,48,251, - 142,131,181,30,128,57,183,6,38,230,8,84,186,131,1,29,126,88,83,58, - 192,28,94,8,94,47,4,47,131,169,149,193,223,233,134,185,192,13,129,153, - 97,22,204,176,167,156,132,201,85,15,75,251,126,248,209,8,175,179,16,0, - 131,159,177,96,23,54,3,243,251,32,32,21,12,233,112,185,234,240,167,63, - 109,192,133,227,134,32,37,197,22,247,19,84,8,162,167,208,167,91,26,254, - 232,41,151,203,13,187,221,6,187,221,6,79,112,248,189,197,58,8,46,151, - 27,181,13,237,120,113,153,7,255,252,112,15,234,106,189,104,237,200,70,138, - 249,66,116,250,190,134,201,148,142,241,23,155,49,115,246,96,156,57,109,199, - 129,47,190,198,158,47,43,145,98,61,1,151,231,16,66,197,163,37,196,67, - 19,132,54,0,109,96,44,19,2,236,24,154,61,21,231,142,24,137,81,35, - 71,33,111,244,108,20,142,63,136,204,33,102,164,253,127,246,222,60,76,146, - 179,58,243,253,125,177,101,68,46,149,85,189,175,234,5,109,104,67,8,4, - 6,4,146,16,130,1,108,25,6,27,108,25,16,3,227,11,198,3,134,25, - 143,109,60,246,101,176,239,204,220,107,251,218,198,198,140,125,141,141,48,8, - 51,96,176,71,66,98,19,82,35,36,4,104,87,107,95,122,171,86,119,87, - 119,85,101,102,85,102,198,250,197,119,255,248,34,34,35,179,170,133,0,201, - 82,119,231,251,60,249,116,102,100,70,70,100,86,246,247,198,123,206,123,206, - 241,26,40,229,145,164,3,213,103,25,77,146,180,131,109,58,165,58,182,97, - 148,95,95,113,207,32,12,116,24,54,142,180,185,37,77,182,177,107,215,62, - 118,63,62,205,173,55,199,236,63,176,135,206,194,65,130,184,139,38,182,188, - 179,82,142,67,217,231,209,70,148,48,202,9,90,231,237,130,48,251,62,139, - 160,85,7,199,177,136,34,139,189,211,11,124,248,67,55,115,222,217,223,225, - 29,239,185,144,183,191,251,249,52,107,9,105,170,201,76,135,44,85,81,98, - 48,220,21,230,196,192,247,110,233,178,119,111,159,11,46,104,112,253,183,118, - 101,97,115,133,174,43,52,139,30,36,66,246,48,211,35,136,104,22,195,235, - 65,34,65,40,88,20,24,93,73,90,9,48,22,19,136,65,197,160,14,42, - 152,151,152,175,84,72,145,98,210,195,117,15,162,90,18,179,106,16,70,61, - 84,184,10,200,194,195,0,8,20,2,133,129,54,61,122,92,127,253,15,57, - 124,248,13,52,155,205,49,193,141,113,220,224,184,37,56,203,94,81,132,38, - 245,34,171,37,143,97,232,133,90,74,201,55,190,21,240,177,223,127,148,251, - 239,175,3,155,136,229,1,160,71,108,76,115,193,37,43,120,209,217,155,0, - 184,233,250,219,51,98,219,137,91,105,227,135,251,89,78,169,13,66,142,46, - 107,38,47,96,227,166,45,188,226,130,83,217,246,188,205,156,125,206,74,92, - 55,37,12,67,12,251,32,50,210,42,45,175,85,179,140,114,72,82,195,243, - 20,97,210,5,32,141,77,234,170,77,87,76,18,203,8,219,28,44,66,105, - 12,182,105,162,148,135,229,234,186,55,219,232,115,206,11,170,156,243,130,211, - 120,243,219,36,136,151,242,196,99,22,119,239,156,102,207,99,251,184,249,150, - 29,44,246,125,252,48,97,152,232,180,234,211,206,78,151,148,245,5,209,165, - 153,57,5,64,136,181,196,209,12,48,139,227,172,34,142,2,238,216,217,102, - 207,31,220,204,119,111,216,195,71,62,246,26,54,111,148,52,234,186,99,190, - 227,56,4,65,68,226,7,120,19,195,237,191,78,4,124,235,91,51,8,145, - 16,244,123,60,241,196,17,84,70,110,32,48,68,156,53,62,22,216,234,32, - 150,121,0,163,223,7,35,70,69,169,86,93,51,192,66,138,225,70,164,139, - 41,162,175,32,2,241,48,136,110,12,166,9,253,20,147,0,49,145,34,238, - 79,16,207,3,235,209,105,20,79,128,82,40,185,128,32,111,5,103,32,16, - 89,152,218,102,190,53,205,125,59,247,178,126,195,42,234,245,250,216,44,52, - 198,113,129,227,150,224,12,195,28,106,42,12,144,166,122,18,242,220,124,196, - 127,255,111,143,242,249,207,239,167,61,175,21,143,84,157,146,98,219,74,99, - 50,98,199,142,187,248,225,247,238,38,138,110,3,14,17,196,51,64,0,226, - 72,161,204,42,174,32,12,52,201,173,158,60,137,23,156,122,30,167,191,232, - 249,188,225,231,183,21,164,37,132,143,231,245,241,125,65,44,35,42,182,89, - 116,25,41,91,244,115,181,38,132,207,68,93,47,68,166,108,96,216,18,91, - 205,16,154,27,240,42,61,42,105,3,195,8,178,207,228,18,167,125,42,150, - 65,18,10,226,180,143,82,30,110,101,154,126,87,151,7,216,56,212,234,130, - 147,207,144,108,124,94,141,48,56,149,247,125,240,124,118,222,59,199,77,55, - 220,204,190,233,144,7,31,58,148,169,187,92,217,181,245,185,112,16,29,186, - 212,176,179,208,165,109,247,136,163,38,130,38,81,20,34,72,16,184,204,207, - 119,248,242,213,33,183,223,117,132,143,254,215,139,121,227,207,109,194,114,186, - 68,62,52,235,171,49,77,143,32,136,168,157,88,252,198,206,157,139,24,66, - 49,55,215,39,142,227,161,174,145,142,145,144,200,30,8,152,168,252,144,74, - 227,17,196,254,14,24,41,98,81,160,22,128,131,10,22,21,42,141,17,179, - 192,162,130,190,64,221,5,194,4,217,78,49,30,23,168,13,32,26,161,158, - 220,246,66,129,121,160,131,233,28,1,49,133,173,102,17,106,13,144,87,137, - 8,4,22,10,7,165,20,187,118,61,65,191,119,6,73,34,199,4,55,198, - 113,129,227,150,224,210,52,45,254,147,106,71,159,135,148,9,215,125,93,231, - 218,190,252,191,166,8,229,12,66,236,66,136,149,172,104,90,188,246,245,43, - 57,239,197,83,220,121,123,139,255,249,201,47,17,69,59,209,35,175,66,220, - 138,69,42,58,132,129,206,99,84,92,65,20,128,161,78,230,188,179,95,194, - 197,151,92,200,185,103,111,102,235,41,1,134,17,224,251,130,178,245,63,39, - 55,128,48,144,212,171,85,236,224,32,93,38,241,60,85,156,115,78,92,134, - 217,32,137,99,12,91,98,217,54,202,222,132,103,212,17,134,86,110,73,98, - 103,175,3,139,38,150,101,225,84,64,215,216,130,74,207,100,229,20,8,35, - 32,240,125,252,80,135,52,109,163,74,99,165,71,224,251,156,123,254,106,46, - 120,229,59,57,240,68,194,174,93,251,184,101,199,46,110,185,117,15,51,115, - 143,226,218,171,74,225,204,60,116,233,22,161,203,56,114,81,88,24,162,137, - 192,69,169,220,136,18,224,56,22,251,166,15,243,254,95,251,20,239,223,249, - 82,222,255,31,47,98,114,178,74,171,213,162,86,107,224,56,131,80,113,14, - 219,182,57,158,177,127,186,143,82,33,11,29,95,119,22,41,61,103,138,0, - 84,11,148,196,155,218,137,51,61,3,251,3,68,39,69,29,134,194,187,100, - 10,140,3,138,244,49,161,77,249,251,64,60,161,195,189,226,94,3,110,147, - 136,205,2,126,78,160,238,72,81,167,155,152,59,125,108,39,65,40,133,173, - 102,72,213,74,160,124,124,145,221,34,22,22,59,132,97,136,76,18,168,140, - 195,148,99,28,251,56,110,9,46,111,144,156,19,93,187,31,115,245,151,166, - 249,203,63,123,132,123,30,152,194,20,77,42,230,233,164,44,240,250,55,68, - 188,234,226,45,76,239,221,207,63,126,250,26,238,216,121,31,122,69,129,124, - 218,71,16,29,1,64,176,26,215,89,197,132,119,58,23,188,230,34,94,113, - 209,246,34,252,24,171,132,32,48,128,42,142,41,136,228,176,203,186,106,87, - 139,251,134,209,67,86,155,84,210,10,121,74,202,178,109,44,75,171,56,151, - 4,44,155,216,242,176,19,159,216,242,208,227,185,50,101,103,217,56,89,91, - 167,40,25,206,105,37,145,137,103,116,179,125,108,42,21,151,154,51,129,76, - 52,169,36,73,66,165,50,5,97,139,56,62,200,234,53,48,177,114,53,47, - 120,233,201,188,233,145,30,119,239,156,230,198,111,127,39,83,117,48,48,164, - 184,69,232,18,158,143,160,141,82,122,187,194,69,100,206,207,40,154,69,224, - 18,70,13,254,236,207,239,100,207,99,251,248,181,255,124,5,47,124,97,29, - 63,106,225,152,245,19,46,207,211,237,69,164,42,33,136,21,12,209,155,194, - 68,130,236,35,148,192,12,123,136,175,249,96,10,228,227,96,60,136,110,134, - 245,128,130,141,160,246,26,112,39,48,43,224,62,3,90,41,42,4,245,79, - 2,177,15,216,175,224,43,232,106,180,27,82,212,3,144,110,73,50,23,101, - 128,74,99,6,164,166,24,44,1,146,36,9,144,169,68,142,39,70,140,113, - 156,224,152,37,184,40,60,130,83,89,93,140,165,177,237,24,153,244,137,147, - 42,158,231,1,2,41,123,196,177,205,129,217,30,87,254,125,143,191,254,120, - 139,206,194,86,160,67,44,15,112,202,118,201,27,126,14,182,109,131,239,222, - 240,29,174,253,250,247,9,162,155,1,23,196,205,197,177,148,106,128,106,224, - 85,86,241,252,83,95,199,185,231,92,204,155,222,166,168,122,141,172,243,187, - 206,173,65,72,238,176,142,83,16,2,234,170,205,34,235,113,93,77,66,86, - 166,84,44,107,106,232,243,120,238,168,189,95,63,118,0,172,26,53,109,9, - 197,180,151,254,201,202,25,52,25,39,152,117,11,25,155,8,153,96,155,22, - 177,149,0,6,88,249,49,42,68,137,68,24,249,184,46,125,156,36,89,96, - 235,41,49,91,79,89,205,27,222,242,94,238,249,193,99,220,116,195,205,124, - 255,7,17,51,115,71,24,184,50,15,101,75,180,46,32,119,156,58,113,84, - 201,138,196,201,136,110,6,69,27,129,203,87,190,186,159,59,238,249,82,17, - 178,196,233,16,44,88,184,174,62,243,90,173,70,154,74,146,120,30,211,170, - 34,147,126,81,55,119,188,160,234,41,148,138,117,239,199,17,40,21,97,136, - 132,84,9,212,254,20,241,24,136,110,138,170,25,176,67,162,118,27,136,174, - 130,5,80,247,128,120,40,69,205,11,248,142,194,232,40,144,32,174,145,136, - 20,144,138,244,147,41,162,3,204,40,212,132,64,69,22,32,17,35,202,49, - 59,58,186,219,86,152,149,112,252,200,33,168,99,140,113,204,224,152,37,184, - 156,220,108,219,198,52,83,192,196,180,192,169,228,243,219,100,65,110,255,241, - 215,247,242,181,235,28,160,70,44,15,96,155,27,248,165,203,215,114,222,139, - 167,152,222,187,159,63,251,127,111,99,239,244,119,128,135,129,118,182,48,131, - 83,153,32,10,42,120,149,58,219,79,122,17,175,126,205,203,185,228,210,87, - 176,97,163,197,194,194,33,12,91,95,233,106,114,91,138,74,165,66,204,90, - 234,182,137,30,126,76,49,96,178,172,192,0,108,211,90,66,94,50,173,98, - 26,125,92,119,169,147,50,13,187,248,178,65,173,170,138,199,70,165,78,201, - 231,82,32,8,150,118,73,177,227,132,184,116,252,92,5,90,150,69,146,36, - 16,207,241,178,87,172,225,5,47,125,23,111,121,164,199,191,252,243,45,220, - 114,107,238,196,156,100,80,22,209,42,194,150,74,173,67,144,19,93,94,22, - 161,67,174,123,166,239,229,35,191,245,0,247,237,124,21,151,95,113,41,167, - 158,148,18,4,1,181,90,131,94,175,135,227,56,56,149,213,116,91,11,120, - 19,213,209,211,61,230,177,126,131,195,253,15,232,139,177,129,130,210,48,72, - 72,137,16,40,120,88,33,102,82,221,202,248,75,232,200,112,87,161,28,3, - 177,206,64,60,144,194,65,129,8,21,226,78,133,200,204,41,42,66,243,148, - 45,48,14,167,16,11,232,41,144,38,116,36,136,252,111,157,29,95,165,217, - 163,8,232,1,17,85,207,67,112,226,57,92,199,56,126,113,204,18,28,232, - 188,77,154,202,210,172,54,175,52,163,77,112,203,109,125,254,242,79,244,248, - 26,3,109,149,54,140,14,239,255,192,42,54,159,100,115,235,142,178,106,107, - 227,86,36,126,216,70,8,109,239,143,130,38,103,156,242,210,33,98,235,6, - 139,44,100,69,104,105,108,18,142,116,24,201,103,121,13,148,218,240,87,156, - 43,181,92,189,232,251,94,70,80,3,34,179,172,156,16,135,149,94,105,39, - 170,35,143,203,72,146,24,203,202,207,193,28,121,78,18,224,15,17,170,139, - 86,127,177,76,208,10,47,69,38,49,19,86,159,137,115,4,239,219,124,62, - 175,122,205,133,124,247,134,61,92,251,181,111,16,196,237,98,95,81,106,11, - 102,59,171,136,35,237,178,76,85,135,129,89,197,229,208,92,192,85,159,189, - 137,214,17,131,223,254,63,207,103,106,106,5,82,198,4,65,128,105,218,72, - 25,81,109,214,241,125,255,184,51,161,156,125,118,131,235,191,181,27,153,100, - 115,218,148,34,175,74,51,68,130,65,160,37,255,131,32,34,72,87,152,136, - 67,41,172,21,8,169,224,69,130,244,228,20,241,253,140,26,43,2,101,41, - 212,148,1,161,64,109,3,49,157,162,28,129,90,107,33,14,75,84,213,132, - 62,136,48,69,168,225,192,40,130,204,185,169,75,92,132,240,89,191,97,61, - 70,97,46,25,43,185,49,142,125,28,179,4,151,119,38,137,34,137,105,166, - 152,166,81,228,220,64,112,205,181,93,62,246,251,143,176,127,90,100,179,217, - 166,121,222,214,58,239,253,15,167,179,162,57,199,95,253,249,181,220,255,208, - 67,4,241,119,113,220,195,132,129,34,136,22,179,174,18,171,89,51,121,18, - 47,127,249,5,252,226,91,94,194,246,51,54,1,1,11,11,93,98,25,81, - 175,54,150,168,182,209,33,149,57,177,149,67,143,163,164,166,95,151,17,153, - 187,234,71,126,102,215,117,9,130,160,120,31,21,13,231,74,132,99,14,182, - 151,254,178,57,209,149,31,231,239,145,36,49,73,162,223,167,76,122,118,90, - 37,142,230,241,131,144,106,50,139,185,122,61,151,92,98,176,229,164,109,108, - 217,254,90,190,243,237,125,220,255,208,173,4,113,23,215,174,3,9,65,124, - 144,40,106,227,58,43,137,226,147,179,146,130,65,155,51,1,28,158,11,184, - 242,170,219,233,116,246,240,187,127,248,30,182,108,10,137,66,109,62,1,109, - 8,114,28,103,232,194,229,120,192,69,23,173,226,207,255,44,68,97,1,6, - 3,5,167,205,250,249,212,25,241,4,40,19,196,11,149,14,67,110,4,113, - 31,240,2,133,56,67,32,238,76,81,23,26,136,251,50,165,245,1,19,245, - 37,9,175,5,117,191,161,247,253,40,240,107,2,245,126,3,190,0,170,231, - 160,246,13,79,250,86,164,232,156,238,60,48,79,163,49,201,201,39,175,198, - 178,172,204,156,53,238,102,50,198,177,143,99,150,224,244,124,50,93,188,157, - 166,105,209,153,4,224,154,107,187,252,214,135,247,210,106,105,114,3,56,231, - 44,147,255,240,91,91,232,206,238,226,175,254,252,59,220,190,243,49,4,215, - 131,152,38,10,245,197,179,82,13,188,202,41,188,234,156,245,188,238,109,239, - 98,251,246,147,88,187,62,160,215,237,22,181,103,150,209,36,200,46,182,65, - 19,155,54,135,12,127,149,121,8,178,28,122,116,93,175,164,204,150,186,6, - 221,17,21,182,28,106,181,6,82,198,152,166,13,158,61,184,15,67,219,133, - 60,58,57,4,65,64,197,176,9,83,173,242,202,74,47,39,187,94,31,38, - 39,167,152,4,218,237,10,97,183,135,180,44,78,62,165,194,134,141,167,114, - 214,217,103,115,253,173,155,249,246,63,127,151,153,185,105,180,130,211,164,29, - 68,251,17,52,6,127,171,162,78,48,111,87,118,144,127,254,42,8,227,122, - 62,242,177,215,176,109,91,131,214,252,62,156,202,20,174,235,226,121,94,209, - 188,25,196,113,49,153,224,162,139,214,178,126,189,205,129,3,125,132,176,208, - 10,41,235,100,2,58,100,168,82,210,23,10,56,36,244,84,181,127,171,235, - 220,104,26,112,82,138,56,7,212,132,129,241,179,144,182,12,196,118,1,175, - 78,225,135,192,207,8,148,39,224,249,10,106,41,233,5,6,198,5,10,53, - 43,48,238,207,194,152,169,197,96,140,4,232,240,241,1,224,48,175,120,217, - 107,169,213,28,220,138,139,105,30,179,203,194,24,99,12,225,152,253,37,235, - 230,200,110,161,228,44,123,5,113,28,115,221,215,125,62,253,169,93,236,219, - 187,42,235,70,146,240,138,87,110,226,138,95,221,196,206,219,246,242,185,207, - 222,204,220,252,109,8,30,6,52,169,229,33,201,181,83,23,240,198,215,93, - 200,47,191,251,37,84,171,125,210,116,145,238,162,1,120,88,134,167,13,20, - 194,199,243,20,105,58,32,163,50,185,121,110,101,136,168,100,90,197,117,21, - 150,101,254,72,82,203,137,74,223,63,250,21,180,105,58,89,46,103,116,31, - 187,216,207,52,135,93,138,178,228,232,172,213,178,98,95,57,80,124,101,178, - 75,146,152,70,77,23,152,247,125,176,157,21,108,88,179,26,211,73,104,183, - 91,8,35,224,5,231,73,206,60,235,52,94,116,186,205,231,63,179,43,83, - 195,139,40,166,208,174,202,67,250,24,184,192,186,76,205,229,133,241,1,182, - 83,231,159,174,254,54,149,53,41,191,241,171,167,113,210,73,43,169,24,250, - 188,230,230,35,26,117,35,43,239,200,194,120,199,56,201,121,158,193,191,123, - 247,41,252,183,255,235,22,210,162,164,66,127,38,169,28,82,213,68,136,46, - 156,103,66,79,232,107,133,115,20,204,64,122,58,8,195,192,168,43,212,102, - 80,155,128,205,138,244,101,32,38,82,88,107,144,158,44,48,250,2,154,2, - 145,42,212,38,19,165,32,217,94,35,190,55,107,174,157,174,70,9,19,144, - 72,25,161,216,13,60,142,101,37,188,225,141,23,227,186,46,181,90,109,201, - 197,218,24,99,28,171,56,102,127,201,169,106,162,157,146,50,27,76,154,22, - 228,166,167,107,79,99,24,53,126,246,141,30,151,189,173,201,13,59,174,231, - 43,255,240,67,80,123,128,199,179,198,200,89,75,45,181,154,243,206,126,11, - 111,191,226,18,94,246,138,53,116,23,37,190,47,240,188,0,74,153,174,122, - 195,36,137,245,66,237,122,131,124,217,104,24,178,108,10,177,44,99,136,216, - 126,20,161,73,169,116,195,220,44,191,40,101,90,212,136,229,166,26,128,188, - 108,108,56,7,41,179,48,109,121,91,154,189,222,40,166,42,228,51,220,242, - 146,131,81,197,167,34,155,56,59,31,167,162,127,34,73,18,19,246,45,108, - 103,5,174,219,39,9,90,36,150,199,5,175,220,206,246,237,39,113,245,151, - 183,114,221,215,119,100,110,203,245,232,209,64,30,174,83,35,140,130,44,163, - 163,141,39,138,245,132,209,126,12,38,185,234,83,55,18,28,154,46,194,149, - 4,49,85,207,37,95,252,225,216,39,55,208,127,235,15,126,240,60,190,240, - 133,187,120,252,241,25,80,181,44,92,9,145,170,147,178,10,197,52,233,198, - 6,170,63,15,21,137,81,135,180,41,52,161,29,176,144,125,3,177,57,33, - 181,36,98,189,129,113,26,32,76,210,117,6,70,69,160,86,100,228,150,8, - 168,155,68,135,39,232,155,235,8,252,141,160,90,196,198,42,244,127,249,148, - 32,60,12,220,135,16,251,121,227,235,223,196,169,167,175,101,98,162,73,181, - 90,197,52,143,253,239,123,140,49,224,24,38,56,199,177,178,133,79,47,157, - 223,191,185,207,199,255,120,15,59,110,158,29,170,111,187,236,109,219,185,97, - 199,245,124,254,83,95,67,91,210,238,1,49,93,100,24,92,103,27,175,187, - 228,50,126,253,67,63,79,179,217,164,211,233,80,173,246,233,247,171,244,251, - 90,177,197,50,162,226,154,248,161,46,148,54,204,65,248,109,84,177,229,97, - 200,39,35,181,81,117,86,46,114,54,205,65,94,45,159,132,176,220,235,202, - 175,25,189,63,188,77,47,86,90,233,14,63,111,154,229,129,165,3,85,136, - 103,19,37,154,180,211,172,151,152,101,245,160,26,99,203,190,222,238,110,200, - 220,153,1,207,63,189,194,230,223,188,132,179,94,104,240,185,207,124,155,187, - 118,106,114,3,159,32,154,203,218,67,185,153,138,219,130,160,131,226,86,82, - 182,97,176,142,235,190,121,144,102,253,83,188,239,195,151,178,125,251,186,44, - 207,88,124,106,32,62,46,10,193,87,172,240,248,219,191,125,3,111,126,243, - 223,210,110,239,71,147,184,65,164,106,40,99,37,8,65,204,90,146,13,51, - 88,118,64,106,38,168,9,129,57,169,136,14,218,136,197,42,230,250,69,12, - 51,69,77,65,186,202,134,64,160,86,9,228,66,5,170,41,98,62,198,148, - 130,196,109,176,48,119,42,45,255,12,122,241,86,20,29,132,217,64,115,215, - 44,82,222,0,226,65,206,120,254,185,188,243,93,111,166,81,159,96,106,106, - 106,89,199,238,24,99,28,171,120,206,19,92,121,150,91,121,225,86,202,39, - 77,61,148,10,184,243,30,197,71,63,186,135,91,111,93,137,97,244,73,89, - 224,178,55,62,194,219,223,243,106,174,254,226,141,124,254,170,175,225,85,166, - 233,135,119,0,89,22,66,157,140,91,145,252,251,119,127,128,203,223,249,34, - 0,194,176,69,181,170,187,144,148,91,104,213,171,154,208,242,92,219,168,19, - 114,148,212,242,80,91,110,250,200,149,90,153,216,142,182,96,63,83,198,138, - 229,84,208,40,129,230,228,42,101,74,35,87,148,150,202,182,185,4,1,144, - 185,58,53,9,233,197,80,198,9,21,107,15,111,124,195,41,172,158,90,207, - 151,191,252,37,254,247,117,169,158,38,110,39,4,241,110,96,61,170,8,85, - 66,81,40,206,93,4,209,20,255,248,21,192,124,140,95,255,205,45,172,95, - 125,8,43,233,17,153,167,209,168,67,20,69,168,180,141,101,175,32,207,33, - 29,139,170,206,48,12,94,246,178,77,124,238,170,119,240,27,31,184,146,199, - 119,237,2,44,148,50,81,150,141,82,179,68,193,6,146,218,65,132,154,65, - 116,5,70,93,32,149,64,153,77,194,94,13,167,153,96,91,9,172,4,101, - 217,164,125,7,38,76,130,78,3,211,136,169,216,139,164,137,34,113,234,244, - 162,237,4,246,139,176,235,77,84,218,209,185,53,213,7,174,199,48,110,231, - 21,47,127,53,31,248,192,229,172,90,213,96,245,234,85,52,155,205,37,142, - 219,49,198,56,150,33,148,82,207,121,63,112,30,102,27,93,212,162,240,8, - 169,106,242,186,215,207,240,224,189,135,152,109,117,176,205,13,156,121,102,151, - 143,254,225,233,124,250,83,187,248,230,215,255,134,32,254,46,249,140,182,188, - 227,255,154,201,83,249,157,223,251,29,46,120,229,118,194,176,85,180,215,42, - 187,36,243,92,91,217,242,255,84,200,237,104,196,150,59,61,159,171,40,95, - 76,12,194,152,58,108,42,229,160,181,86,238,228,12,130,128,32,8,48,132, - 207,226,66,2,230,4,150,231,113,224,209,67,124,252,227,15,243,229,171,255, - 9,0,197,84,169,33,245,36,110,101,53,65,168,11,199,211,82,25,129,235, - 152,188,255,253,186,181,151,103,204,225,84,166,72,85,141,170,39,113,93,8, - 2,253,157,230,83,9,142,69,40,149,18,70,33,251,246,206,240,249,207,239, - 224,135,63,188,151,215,190,246,124,214,173,91,143,43,22,57,99,211,99,212, - 210,219,169,185,123,48,42,109,68,20,33,29,135,104,113,53,82,213,168,85, - 118,225,54,14,160,246,59,196,39,77,160,250,21,146,182,77,88,217,128,97, - 244,241,196,97,140,122,74,167,189,150,78,122,49,210,187,8,167,190,137,111, - 126,99,23,47,60,111,13,87,95,189,159,3,7,110,227,188,23,109,227,140, - 51,55,209,168,213,89,179,118,53,107,214,172,165,209,168,33,196,241,21,26, - 30,227,196,198,115,150,224,70,243,72,203,253,103,107,45,204,240,7,255,85, - 240,201,191,156,69,170,14,182,216,204,182,237,15,240,155,31,253,25,118,222, - 182,151,191,249,228,39,9,226,219,81,236,201,198,215,104,172,153,124,61,191, - 253,95,222,205,5,175,220,14,192,92,107,31,0,182,233,224,121,10,223,23, - 133,237,63,207,181,229,174,200,163,17,91,190,125,148,212,142,229,208,154,110, - 86,109,20,100,151,135,48,115,178,11,130,172,111,166,157,16,249,138,36,145, - 200,200,34,72,36,251,15,119,248,251,207,60,200,183,255,249,187,28,154,75, - 134,134,187,122,149,83,8,194,8,69,152,169,184,0,215,49,9,162,253,172, - 93,185,154,143,252,254,21,252,242,229,167,179,208,217,207,138,213,13,28,179, - 142,138,36,150,231,34,101,76,237,24,47,146,83,74,17,69,17,157,78,135, - 86,171,133,239,247,105,54,39,169,186,14,225,226,126,210,254,30,204,104,15, - 50,60,140,72,187,36,202,37,86,117,44,161,152,116,238,163,82,223,13,93, - 131,158,53,133,140,39,72,85,131,48,221,128,65,66,213,58,132,34,33,72, - 87,209,55,95,140,51,117,30,83,171,54,98,24,22,190,239,103,249,106,73, - 187,221,70,8,65,179,57,193,228,228,20,213,106,117,201,255,177,49,193,141, - 113,172,227,152,32,184,28,82,246,48,77,189,184,5,65,196,39,255,186,199, - 71,254,243,193,130,220,82,22,248,226,87,54,113,245,23,111,228,211,87,125, - 21,216,129,227,118,136,130,10,8,221,75,242,181,47,126,35,111,127,223,71, - 56,243,60,135,185,35,221,98,238,26,80,168,183,32,48,168,55,204,161,90, - 182,220,238,255,100,196,102,154,2,41,21,142,99,62,167,149,218,79,138,188, - 65,114,89,209,229,36,7,218,136,146,202,46,139,11,9,181,70,131,3,7, - 218,252,175,127,124,132,171,62,123,19,135,230,18,140,172,38,78,17,96,136, - 211,178,66,112,128,67,5,193,65,155,23,157,125,41,191,247,177,139,120,241, - 249,171,48,132,79,170,60,156,202,74,26,245,193,130,123,44,171,184,28,82, - 74,194,48,204,46,36,44,108,219,68,198,146,40,92,32,242,23,8,250,109, - 130,160,143,146,10,97,218,152,70,130,157,204,144,134,123,72,163,132,80,86, - 81,70,13,229,52,49,236,9,76,211,194,36,64,38,33,82,57,24,238,58, - 26,83,107,105,78,174,198,169,56,69,27,46,41,37,73,18,99,8,3,167, - 82,193,182,173,101,167,120,143,9,110,140,99,29,199,12,193,73,217,43,122, - 20,166,105,90,170,117,11,152,239,232,254,126,127,244,39,167,3,240,123,191, - 253,187,96,220,67,16,78,107,91,122,166,222,94,120,214,251,248,240,135,222, - 206,249,47,81,236,63,180,48,116,188,92,185,1,52,39,7,197,201,101,19, - 137,235,122,197,253,60,20,57,106,26,57,150,21,219,143,66,57,132,25,69, - 18,199,49,145,50,213,57,178,172,212,192,176,245,223,98,254,200,34,174,235, - 113,224,64,155,91,111,141,249,31,127,248,25,14,205,37,84,156,77,132,209, - 126,4,91,17,84,80,132,232,222,150,249,12,58,0,159,127,251,179,231,243, - 187,127,248,30,154,245,67,8,59,101,195,154,173,244,122,139,76,78,186,196, - 177,93,56,77,143,7,40,165,134,8,70,74,73,28,39,68,113,140,76,226, - 162,121,129,97,26,168,68,17,132,62,65,232,35,147,4,211,52,48,45,23, - 219,182,176,45,11,211,48,72,100,76,146,164,88,182,133,231,186,84,92,15, - 199,177,159,244,152,203,97,76,112,99,28,235,120,78,155,76,6,147,159,21, - 50,233,99,90,85,210,52,229,238,157,125,62,253,169,93,180,90,49,243,157, - 4,165,230,248,224,7,183,240,188,231,153,188,237,23,255,39,81,60,141,226, - 81,4,110,81,227,118,222,217,191,194,135,63,244,118,78,63,71,240,200,238, - 253,212,39,170,164,177,38,208,88,70,224,59,212,234,117,146,76,165,28,77, - 181,141,230,216,202,228,118,188,207,208,42,151,35,216,118,140,148,34,235,5, - 106,130,167,16,126,64,36,187,68,190,162,94,175,147,36,146,230,228,20,23, - 92,56,193,175,236,121,21,159,252,228,15,8,162,199,16,76,162,39,136,79, - 102,150,17,221,219,82,65,102,74,129,175,124,245,187,108,61,249,36,46,191, - 226,82,54,111,180,56,124,176,69,99,101,158,135,211,231,83,46,155,56,150, - 49,74,52,166,105,98,24,6,142,99,161,84,214,192,58,175,207,86,80,149, - 117,82,153,160,82,133,48,4,66,8,76,211,40,222,71,41,221,151,75,24, - 186,72,126,185,223,229,143,34,183,49,198,56,30,240,156,38,56,221,221,92, - 219,219,77,171,138,16,30,123,14,116,248,236,149,251,249,222,205,113,97,42, - 121,253,27,61,46,122,245,22,254,253,191,251,7,162,232,49,220,202,227,4, - 209,34,78,69,16,6,13,206,60,229,117,124,248,67,111,231,180,179,60,218, - 254,35,212,155,235,145,97,74,146,118,176,140,38,147,205,1,177,229,57,183, - 229,114,109,174,235,30,87,57,182,159,20,154,232,106,196,113,52,84,214,224, - 121,30,248,160,106,22,50,80,52,157,8,67,28,102,229,138,10,151,95,113, - 41,0,127,250,231,215,21,83,208,243,105,3,138,73,116,49,248,33,130,248, - 32,186,195,198,20,87,125,246,38,206,58,251,108,38,87,174,36,238,239,163, - 177,242,164,82,9,129,190,184,56,94,72,110,20,66,8,221,179,114,25,232, - 200,185,253,148,84,216,24,99,156,200,120,206,199,32,114,146,19,66,19,207, - 206,187,76,174,254,226,46,230,59,9,182,185,129,173,91,36,151,189,109,59, - 159,251,187,27,152,159,159,1,118,224,135,179,0,132,129,98,237,212,5,188, - 231,189,111,227,244,115,132,54,147,4,107,73,163,30,66,248,212,171,13,132, - 240,73,226,24,215,243,176,44,139,137,90,141,137,90,141,170,55,8,73,150, - 123,55,194,147,119,25,57,81,16,199,49,78,222,251,82,5,248,190,14,47, - 58,142,67,213,18,120,166,30,238,234,84,166,232,244,230,88,187,170,195,229, - 87,92,202,91,46,123,35,6,235,74,239,164,235,227,12,209,4,214,101,157, - 80,52,102,230,186,252,195,255,119,45,187,30,122,144,137,169,41,14,79,239, - 35,85,181,162,7,167,148,207,201,232,250,191,26,198,228,54,198,24,79,142, - 231,52,193,165,105,90,56,40,147,120,142,187,119,246,249,211,63,237,176,119, - 102,13,182,216,140,84,29,222,246,206,41,118,222,182,151,107,190,254,48,138, - 27,33,207,185,169,179,241,42,171,120,235,47,93,202,249,47,153,34,240,253, - 162,158,77,41,77,150,105,108,82,169,84,10,213,230,185,21,221,55,210,156, - 192,48,235,184,174,75,197,176,169,213,26,152,166,141,227,56,69,238,39,191, - 157,168,176,109,187,168,163,51,205,90,230,108,84,152,166,137,105,10,42,117, - 15,203,211,23,5,83,147,186,190,106,227,186,46,111,127,215,54,46,121,201, - 161,236,93,214,161,104,3,51,40,53,131,33,154,25,249,77,161,187,220,239, - 102,199,15,238,227,218,107,27,44,246,116,71,153,36,218,143,47,29,122,189, - 69,164,212,227,103,70,167,131,143,49,198,24,99,192,115,152,224,244,226,105, - 100,182,230,30,221,120,130,29,55,198,236,188,125,39,166,104,18,171,105,94, - 126,113,133,197,182,195,191,124,229,251,24,234,46,32,44,234,220,160,205,47, - 191,249,189,92,246,230,115,1,61,179,45,12,67,173,216,210,14,158,167,48, - 108,89,212,184,229,102,146,170,7,205,137,65,123,173,65,190,237,196,13,73, - 62,117,228,245,126,102,209,114,204,117,93,28,179,142,101,217,52,155,43,120, - 249,5,167,113,249,123,127,131,23,157,189,9,56,132,227,232,41,10,121,67, - 102,149,77,7,215,112,129,131,220,124,195,13,252,240,230,3,76,76,77,177, - 184,144,224,47,106,247,101,217,193,57,38,185,49,198,24,99,20,207,89,130, - 3,237,156,204,177,231,241,152,207,93,249,40,81,162,23,209,149,43,219,188, - 233,141,219,184,233,250,219,217,59,112,81,116,42,0,0,32,0,73,68,65, - 84,253,13,130,248,22,220,74,183,48,149,188,246,252,115,184,236,173,23,211, - 108,54,9,2,3,207,83,218,76,130,238,76,146,166,110,17,150,204,201,205, - 117,61,140,108,49,174,24,131,156,219,152,220,158,26,202,174,59,199,49,51, - 53,103,23,121,203,94,111,17,211,21,188,234,210,149,188,227,61,23,178,118, - 101,66,28,37,228,179,228,148,202,234,234,88,71,62,45,28,224,142,157,223, - 226,198,27,158,224,224,145,117,40,185,72,156,46,146,36,121,201,66,156,149, - 45,104,37,87,118,122,62,219,200,47,208,142,213,219,24,99,28,235,120,206, - 254,138,115,7,101,20,30,193,52,107,236,184,49,230,254,251,235,4,241,36, - 82,117,184,244,210,211,152,222,23,115,224,224,183,128,135,112,43,117,130,104, - 55,0,107,167,46,224,157,239,187,156,13,27,45,58,157,206,112,219,45,165, - 59,103,140,42,183,81,167,164,229,13,200,205,52,141,49,185,61,69,148,23, - 71,237,224,19,184,174,195,196,196,4,21,195,70,6,138,154,29,114,193,133, - 39,243,43,239,120,21,138,118,73,189,133,89,43,175,102,182,205,67,147,95, - 155,187,239,189,145,123,239,60,132,48,27,4,65,64,146,232,90,174,32,8, - 134,186,172,148,59,176,140,49,198,24,39,54,158,179,4,7,20,69,221,119, - 222,211,229,111,62,177,31,128,52,237,241,188,173,117,182,159,234,112,211,245, - 183,211,89,208,87,253,169,152,211,59,169,213,188,253,138,119,114,202,89,167, - 211,13,22,11,114,243,125,193,148,209,39,118,215,98,24,193,144,114,147,105, - 117,200,41,169,201,77,20,249,182,178,61,126,140,167,134,114,13,99,238,116, - 172,54,117,219,45,199,19,108,222,104,241,202,139,47,41,66,149,0,142,147, - 104,146,19,110,86,20,62,137,118,84,186,220,181,179,199,119,111,184,159,206, - 162,196,15,66,130,192,47,102,215,169,72,14,145,220,24,99,140,49,6,60, - 135,9,78,74,73,154,166,56,149,213,124,246,202,221,60,190,167,91,60,119, - 254,207,212,184,247,142,89,30,124,228,38,130,120,39,224,17,133,186,112,123, - 205,212,139,121,229,171,182,211,233,116,72,163,94,97,40,1,80,141,77,88, - 182,205,68,165,177,108,206,173,98,216,35,51,213,70,91,23,29,223,117,110, - 207,4,114,229,155,23,43,231,48,68,143,151,191,204,225,242,43,182,23,69, - 222,58,92,169,161,152,204,234,229,220,236,214,226,186,175,239,224,214,91,99, - 38,38,214,3,16,4,62,65,16,16,166,131,14,43,250,88,227,11,145,49, - 198,24,227,57,76,112,249,194,120,231,61,93,190,113,221,65,109,44,145,7, - 56,101,251,90,0,238,185,251,182,108,182,219,12,136,157,128,30,125,243,219, - 255,229,221,108,220,156,224,186,58,84,149,43,184,188,183,36,128,112,107,133, - 237,63,207,185,229,202,173,124,252,49,161,253,244,72,83,153,53,153,54,178, - 226,101,7,207,153,98,98,98,130,70,221,224,194,75,46,230,23,46,187,4, - 61,12,181,173,167,126,171,0,65,5,219,177,80,172,39,15,83,206,204,29, - 225,166,235,191,195,254,195,29,29,154,140,53,33,142,134,42,199,97,202,49, - 198,24,3,158,195,4,151,166,41,74,249,124,246,202,221,60,242,120,67,247, - 155,52,55,240,252,51,37,97,247,94,246,76,223,75,16,207,66,230,154,84, - 170,193,27,46,125,31,23,188,114,59,179,115,135,9,195,176,120,47,219,208, - 22,115,211,168,211,168,15,26,245,234,188,219,64,185,1,69,206,109,140,167, - 7,74,105,194,26,116,165,209,125,36,165,84,248,81,139,173,207,179,121,253, - 91,95,205,73,155,79,194,113,86,101,164,166,195,148,81,52,59,242,110,109, - 110,185,117,15,135,30,121,128,40,73,137,101,50,20,170,4,10,195,201,24, - 99,140,49,198,179,182,146,151,195,72,105,42,151,220,146,120,142,56,182,185, - 238,154,193,62,207,219,190,159,122,99,130,219,239,58,130,224,65,96,111,209, - 68,217,171,156,194,59,222,125,17,113,124,16,203,104,14,29,203,176,37,174, - 231,33,12,77,134,101,83,9,12,151,2,252,107,145,91,94,227,183,252,115, - 71,255,110,126,154,247,61,250,62,114,201,113,159,46,152,102,13,211,172,21, - 198,147,92,153,27,162,131,231,76,33,3,197,207,191,46,230,213,175,90,67, - 18,175,36,142,146,98,102,156,96,11,21,103,19,186,46,78,183,243,90,232, - 62,200,117,183,10,146,200,196,15,66,100,156,96,8,29,170,236,251,102,241, - 222,227,178,129,49,198,24,227,89,35,184,31,21,254,179,236,21,124,254,43, - 1,173,86,102,34,73,123,184,222,36,97,247,94,102,102,30,7,6,53,80, - 74,53,248,229,55,191,149,90,189,71,152,12,47,238,149,74,101,137,99,18, - 88,210,126,75,147,155,185,100,8,232,51,137,229,172,216,163,228,6,3,21, - 116,180,231,71,223,243,199,177,120,231,77,173,203,255,254,107,64,15,47,37, - 155,245,230,114,217,91,47,102,197,138,102,169,6,110,128,114,93,156,31,38, - 60,252,131,105,14,60,145,160,82,189,61,9,36,150,101,98,136,222,144,217, - 228,199,37,250,49,198,24,227,248,194,179,30,139,27,93,80,115,130,145,50, - 229,107,95,188,129,249,78,130,41,154,172,154,106,114,210,22,135,93,187,28, - 130,232,62,160,13,4,40,213,96,205,228,169,92,246,214,139,1,144,81,29, - 211,209,134,148,156,220,44,203,194,180,108,108,83,183,222,172,215,235,75,76, - 37,58,231,246,175,247,117,140,30,43,87,104,131,144,158,28,34,54,96,232, - 185,188,70,240,199,81,119,203,159,135,185,236,191,207,52,164,76,179,18,2, - 253,248,149,23,87,248,185,127,227,224,85,26,217,132,1,141,40,178,178,89, - 114,3,226,187,99,231,183,216,181,75,207,240,139,101,130,31,233,144,100,16, - 4,168,72,18,39,213,236,24,99,179,201,24,99,156,200,120,86,67,148,185, - 106,40,171,166,60,196,182,243,129,144,111,127,91,207,252,146,170,131,176,102, - 153,239,167,236,59,176,11,77,110,33,136,35,8,92,94,121,193,91,217,176, - 81,147,151,235,166,72,163,135,97,15,47,110,142,101,96,218,86,65,110,229, - 114,128,103,178,198,237,169,132,255,202,74,45,71,126,95,38,253,37,183,252, - 185,36,158,255,177,212,221,143,67,132,203,17,231,211,173,238,108,219,70,38, - 125,0,38,171,54,151,255,31,23,82,171,79,13,140,38,194,197,16,205,172, - 219,137,174,137,243,42,22,208,230,154,47,237,226,192,19,9,253,190,96,161, - 215,35,149,93,130,192,39,76,115,195,201,56,23,55,198,24,39,58,158,117, - 5,87,70,185,61,215,103,175,220,205,130,63,104,188,59,217,216,68,111,230, - 16,179,243,15,3,51,89,15,67,88,61,121,18,111,122,243,43,232,6,122, - 230,91,172,44,252,182,160,26,233,199,163,157,74,114,228,166,146,127,141,207, - 52,26,254,43,255,91,38,183,229,200,204,74,230,139,91,142,252,185,252,126, - 190,127,249,61,243,227,149,143,245,84,235,249,202,207,151,207,251,233,172,7, - 44,95,84,120,158,71,18,207,241,194,23,122,92,248,138,209,185,101,30,113, - 84,131,162,100,64,227,129,71,118,208,106,13,12,67,125,127,104,183,34,84, - 57,206,197,141,49,198,137,139,231,12,193,141,46,68,119,220,23,179,162,169, - 85,89,154,246,88,187,45,102,190,243,4,2,61,78,69,55,84,94,205,166, - 205,231,211,152,178,9,253,150,86,111,97,74,213,107,16,187,107,177,108,27, - 211,26,44,152,229,78,37,240,204,78,5,24,85,64,71,83,114,185,2,203, - 137,170,56,215,17,82,43,111,27,221,94,38,185,39,83,115,63,202,216,179, - 156,194,203,31,75,217,251,169,66,161,163,200,243,99,169,26,24,130,26,21, - 131,215,191,245,213,75,94,43,132,91,212,196,249,97,23,8,57,220,138,89, - 88,28,212,70,142,78,22,31,99,140,49,198,120,86,9,46,207,39,141,226, - 200,108,192,67,119,74,250,253,89,210,180,71,181,18,179,162,106,100,230,146, - 67,165,87,54,121,197,5,167,178,118,125,128,109,58,196,105,31,211,233,162, - 148,87,228,222,28,203,192,117,221,161,208,100,238,154,132,103,175,191,228,209, - 136,162,32,47,217,121,210,219,40,217,229,36,23,199,79,237,243,228,100,120, - 180,219,40,132,112,135,246,253,105,225,251,90,114,185,174,67,20,37,152,86, - 149,40,138,248,185,215,58,172,88,81,114,193,10,23,165,60,108,167,60,186, - 208,7,218,60,246,240,247,10,229,238,7,58,111,87,38,186,113,119,147,49, - 198,56,177,241,172,18,156,16,110,17,246,202,137,38,8,34,90,179,123,232, - 44,212,240,163,62,134,81,163,90,93,197,190,189,17,126,212,131,44,52,153, - 227,37,47,126,9,237,206,60,134,45,9,3,73,197,210,31,201,178,142,62, - 203,181,220,99,242,153,198,114,121,181,209,199,203,169,183,28,50,156,31,186, - 61,25,100,210,199,182,227,101,205,41,203,221,47,31,247,104,247,151,219,183, - 76,118,63,41,114,115,73,16,68,184,174,83,180,101,107,212,13,78,218,176, - 189,100,52,169,128,112,179,46,39,121,111,74,29,106,158,222,187,151,208,111, - 145,36,186,224,91,198,9,97,102,190,201,103,198,141,49,198,24,39,46,158, - 181,137,222,218,68,224,21,243,222,226,56,70,165,109,28,103,37,95,253,250, - 90,164,122,8,165,154,40,213,99,106,106,45,173,214,247,17,236,134,108,225, - 83,170,193,153,167,232,81,56,21,215,68,70,117,170,182,32,76,22,49,43, - 154,184,242,220,219,209,92,147,79,23,202,106,108,57,117,147,196,154,152,76, - 171,90,152,39,242,109,101,88,201,60,200,206,48,145,37,29,72,51,82,55, - 38,145,73,39,123,113,19,179,162,173,246,22,144,88,250,190,76,250,152,86, - 181,56,23,33,220,130,144,242,115,43,135,68,159,42,177,229,239,243,116,185, - 44,243,1,182,182,29,35,101,140,16,46,181,90,141,35,179,1,63,255,243, - 33,247,220,223,68,41,15,197,195,89,93,220,86,114,231,44,84,128,144,239, - 255,32,226,93,253,13,244,107,14,174,124,2,229,166,36,225,70,18,83,18, - 90,49,4,113,150,107,61,62,167,126,143,49,198,24,79,142,103,85,193,149, - 173,242,185,154,138,162,132,155,110,220,59,244,186,90,221,167,219,11,41,215, - 190,1,156,126,90,150,127,11,36,66,248,68,153,107,174,81,29,44,102,50, - 173,22,247,203,161,201,167,11,203,213,170,193,176,251,177,188,45,127,237,40, - 114,114,43,144,116,134,201,13,244,253,210,99,25,206,147,100,74,101,52,47, - 23,199,54,113,108,47,9,59,150,205,43,203,237,87,14,121,30,141,240,158, - 14,28,173,36,99,229,10,135,159,253,133,75,139,199,130,138,38,104,225,34, - 112,241,42,117,180,138,243,89,232,62,200,174,93,251,16,169,254,222,226,224, - 232,117,111,99,179,201,24,99,156,120,120,78,152,76,226,56,46,148,65,63, - 81,236,188,125,47,105,170,67,77,134,161,67,87,189,238,254,226,245,138,0, - 175,178,138,173,39,159,196,134,141,22,113,20,22,237,184,0,76,75,155,75, - 92,215,165,86,85,75,140,37,79,215,213,252,168,189,127,57,82,123,50,7, - 228,232,243,73,36,181,122,203,137,45,109,35,131,22,42,93,24,190,37,251, - 32,233,208,139,82,132,234,144,248,122,255,94,152,22,199,48,68,7,41,227, - 34,39,55,122,220,252,216,229,115,24,125,60,186,95,158,51,125,58,203,5, - 202,10,83,255,14,12,206,62,163,194,150,117,171,139,231,149,242,240,92,61, - 55,206,15,235,197,190,126,216,229,137,253,9,50,251,220,11,225,34,72,221, - 116,123,116,94,220,184,253,218,24,99,156,120,120,214,66,148,48,112,210,149, - 9,167,221,238,179,24,69,8,97,162,148,203,138,166,69,224,183,8,34,201, - 176,130,155,226,220,179,55,227,119,23,176,157,10,78,213,32,90,148,120,21, - 109,80,112,172,225,5,77,56,230,211,90,26,144,23,98,3,75,8,107,57, - 28,109,187,126,3,173,64,132,26,168,54,149,46,160,194,121,4,160,66,80, - 105,11,97,232,178,9,81,89,1,105,155,154,1,189,168,65,205,233,176,216, - 173,210,172,183,233,132,147,212,178,16,173,109,229,97,200,101,206,163,172,22, - 71,97,54,135,94,155,88,43,138,208,103,30,174,204,191,131,159,52,100,89, - 174,129,44,223,15,130,8,219,142,57,251,197,91,216,251,213,219,139,105,16, - 126,96,101,29,77,242,252,159,222,222,58,180,23,88,139,97,54,0,138,254, - 148,121,159,209,28,186,1,179,24,15,242,28,99,140,19,8,207,26,193,229, - 57,152,50,226,164,74,123,78,65,186,21,152,65,136,0,97,197,204,206,119, - 41,138,187,51,76,84,245,84,129,56,29,81,37,150,133,76,98,176,42,217, - 156,183,103,118,65,91,150,220,158,140,60,64,19,200,200,107,202,202,77,165, - 11,72,113,24,145,46,22,207,71,253,195,56,153,72,77,69,130,153,234,225, - 51,53,3,64,19,210,98,55,0,79,43,185,156,228,142,118,110,73,36,53, - 161,46,139,121,204,234,182,161,125,203,36,7,79,79,45,92,78,108,82,166, - 5,209,217,118,140,76,250,108,219,110,234,11,8,49,5,249,164,111,209,196, - 177,26,4,113,27,208,231,62,191,112,80,191,151,92,44,72,78,198,9,184, - 249,148,1,168,213,114,162,27,23,126,143,49,198,137,132,103,85,193,229,200, - 23,186,90,173,198,221,247,47,28,229,85,121,37,175,94,236,54,110,218,130, - 193,94,98,89,165,106,79,146,196,49,166,211,71,165,77,44,71,102,133,221, - 106,73,191,201,167,11,101,163,198,114,196,86,24,69,74,166,16,146,142,254, - 151,121,204,202,138,101,205,36,133,114,115,118,1,171,33,155,64,158,28,78, - 97,205,97,28,207,1,26,72,113,184,32,185,94,212,0,158,64,88,27,49, - 252,67,52,234,46,157,112,178,120,235,130,236,178,243,147,153,50,44,206,173, - 100,98,201,207,85,246,119,23,38,150,92,209,1,4,1,152,166,44,92,168, - 249,48,211,159,4,81,36,113,156,82,3,102,195,36,77,93,44,219,229,236, - 243,117,238,45,167,36,207,169,18,68,45,252,216,202,166,202,233,223,195,190, - 233,144,94,183,134,16,62,19,19,117,162,68,2,201,208,113,164,140,49,77, - 231,39,58,199,49,198,24,227,216,197,115,34,94,147,207,239,74,211,148,238, - 236,46,230,59,9,74,149,235,174,102,150,236,179,109,203,54,86,108,28,228, - 221,236,96,166,200,195,57,150,129,176,151,55,28,60,99,110,186,18,121,20, - 106,172,148,75,35,202,140,51,217,246,37,228,150,65,229,219,125,27,92,61, - 41,33,242,35,188,251,30,215,36,39,38,17,233,46,125,44,113,152,118,59, - 164,102,12,148,30,192,76,103,16,54,76,99,171,48,176,20,57,190,252,152, - 105,27,149,236,43,114,123,163,231,90,152,88,178,186,187,226,163,102,121,173, - 226,24,169,252,137,26,27,59,35,166,159,56,142,145,50,69,202,148,115,207, - 52,168,56,41,100,147,5,252,168,172,212,243,80,181,207,19,251,247,178,216, - 138,139,214,108,50,203,189,45,63,70,103,220,124,121,140,49,78,36,60,7, - 8,110,216,0,112,207,109,123,151,188,162,223,115,40,230,190,17,80,113,5, - 205,230,214,98,44,78,156,246,233,138,201,98,106,64,142,124,28,206,211,173, - 222,158,18,70,28,143,5,129,140,162,164,162,84,170,213,107,234,38,64,27, - 252,94,241,178,190,181,39,123,163,54,189,82,7,15,128,246,188,190,0,232, - 118,6,253,170,130,174,38,61,195,206,134,130,150,235,194,74,106,17,52,169, - 74,113,120,64,116,64,47,74,7,38,150,72,178,216,13,232,133,41,145,212, - 199,30,37,167,31,31,2,195,208,97,200,32,136,0,125,241,145,223,54,111, - 204,131,11,58,44,237,185,73,105,58,251,160,22,238,112,43,198,96,240,155, - 137,194,214,79,121,94,99,140,49,198,241,130,103,45,68,153,39,251,243,58, - 184,40,60,130,48,38,153,91,216,66,154,206,34,68,128,94,220,170,72,149, - 47,90,109,4,46,81,208,164,54,241,4,174,187,18,59,232,19,27,91,73, - 179,2,240,102,35,91,120,141,213,88,150,190,98,119,28,109,96,232,245,122, - 152,166,129,82,65,81,88,124,52,44,103,160,40,27,75,114,44,169,93,27, - 201,163,1,152,106,205,80,72,81,165,11,136,116,98,232,125,100,208,66,168, - 142,54,147,244,1,38,81,222,227,208,111,147,28,94,71,53,217,202,194,68, - 0,4,212,26,117,232,47,210,241,171,76,172,156,166,219,217,140,223,137,168, - 53,231,129,141,84,205,140,24,51,130,76,76,173,126,132,234,12,212,89,208, - 66,85,230,16,253,69,132,49,133,232,47,34,51,65,108,166,80,51,166,179, - 144,229,32,60,217,52,219,89,189,93,31,223,215,197,218,82,218,152,38,128, - 202,242,114,218,200,145,255,93,243,239,13,24,50,168,68,145,14,115,26,134, - 238,102,162,95,151,102,251,74,76,87,176,110,197,90,246,28,74,64,52,241, - 131,16,183,210,33,8,39,135,50,105,110,101,158,153,150,195,122,49,65,215, - 127,130,213,181,38,22,62,50,182,10,63,74,16,4,165,60,220,24,99,140, - 113,162,224,89,83,112,121,111,67,208,11,160,105,85,49,77,147,133,150,64, - 136,78,22,162,172,16,247,85,214,108,119,0,183,50,129,83,89,79,183,191, - 72,87,76,18,200,22,86,165,199,84,221,96,190,211,193,170,26,36,190,95, - 88,197,125,63,64,202,30,181,90,13,195,48,127,36,185,61,165,243,207,107, - 201,70,13,37,37,101,148,35,15,59,230,42,105,84,45,45,129,106,51,218, - 177,5,160,110,180,80,222,156,38,174,44,55,183,48,55,108,246,232,118,252, - 33,37,151,163,112,104,150,31,151,208,223,115,8,209,31,132,58,11,197,153, - 116,232,151,84,81,47,76,233,133,41,182,213,39,239,138,53,8,253,13,84, - 114,217,173,152,59,36,245,224,83,125,95,119,47,49,179,253,123,217,5,69, - 78,140,122,251,228,202,163,145,210,192,73,25,132,250,59,172,187,13,42,150, - 65,219,143,73,24,54,48,85,12,123,220,182,107,140,49,78,64,60,123,4, - 87,26,251,98,24,38,66,120,68,81,66,123,33,44,92,115,0,177,157,96, - 59,61,244,162,86,41,182,79,212,40,66,148,245,76,181,197,65,74,163,94, - 35,94,236,208,168,245,113,60,129,235,186,56,142,67,28,219,63,214,180,235, - 165,234,109,176,223,104,61,89,89,189,229,38,17,237,130,220,69,60,251,56, - 74,238,214,74,169,191,88,168,186,52,146,164,145,68,6,45,100,208,162,211, - 213,219,115,226,42,195,187,239,113,125,78,51,165,208,164,152,28,122,141,165, - 246,225,119,34,130,248,8,181,154,62,159,50,217,205,30,201,74,26,178,227, - 1,154,208,84,27,149,14,8,76,244,23,81,225,60,105,36,105,183,195,161, - 99,44,118,7,127,151,188,230,78,119,34,81,217,223,82,13,17,91,254,125, - 151,111,229,237,249,107,243,223,130,158,113,167,149,96,163,98,160,140,85,148, - 255,230,26,57,185,249,184,21,155,60,84,217,233,116,232,247,181,4,141,70, - 134,222,134,233,120,8,234,24,99,156,136,120,214,8,206,180,170,67,61,13, - 165,148,56,121,67,93,49,8,139,85,139,188,90,128,91,153,0,92,130,208, - 96,161,7,102,197,32,150,58,127,147,166,46,221,204,60,103,55,79,166,106, - 246,138,60,84,110,136,200,71,241,68,225,145,167,124,158,131,133,89,45,117, - 78,230,161,201,146,161,68,133,243,89,152,81,31,59,57,156,210,223,27,104, - 195,136,106,23,68,215,233,30,214,33,194,76,73,77,214,42,204,30,25,132, - 98,1,232,155,164,11,10,115,118,116,2,65,27,220,35,120,106,143,62,199, - 68,255,219,233,204,80,21,18,191,19,161,146,39,168,213,230,169,213,230,233, - 135,45,86,77,133,69,14,48,15,133,22,100,170,218,154,68,85,187,32,60, - 85,153,211,103,50,63,83,188,31,128,225,15,154,93,71,178,91,168,184,56, - 182,145,50,45,58,134,164,105,58,52,112,180,60,105,92,41,159,220,178,111, - 154,53,44,123,197,80,193,183,46,29,40,7,34,53,209,10,35,255,93,184, - 64,152,169,183,129,90,117,221,20,215,243,72,162,108,120,171,24,86,178,227, - 249,112,99,140,113,98,225,89,35,56,93,7,55,8,105,169,180,77,20,37, - 217,115,43,179,14,38,195,10,34,8,243,43,241,144,137,26,164,81,15,219, - 116,232,117,187,122,52,142,81,231,182,31,186,180,231,108,34,243,52,38,154, - 235,9,149,133,235,58,56,142,73,107,97,134,52,149,88,246,138,167,116,142, - 58,132,170,80,202,95,190,44,96,232,197,35,161,73,247,200,144,73,68,163, - 189,172,66,203,9,167,225,29,38,39,55,165,218,80,149,195,170,45,71,85, - 210,91,236,102,37,3,3,172,156,8,177,212,190,161,109,126,39,194,239,68, - 69,87,148,97,114,211,199,138,252,104,112,126,94,12,170,141,17,88,52,92, - 253,121,189,166,62,78,174,6,35,127,64,20,182,165,27,60,131,110,183,150, - 135,29,13,195,40,166,164,27,134,129,148,189,193,45,251,30,211,52,205,12, - 38,218,112,18,69,18,223,215,221,82,28,199,66,164,179,80,110,186,60,132, - 10,163,191,143,48,12,73,146,4,97,4,196,50,161,239,143,71,231,140,49, - 198,137,140,103,209,69,169,23,201,40,74,178,208,148,70,125,245,176,239,101, - 211,90,133,65,174,108,178,17,43,21,155,133,158,30,134,233,121,138,74,165, - 66,18,199,132,93,131,125,187,118,242,249,207,124,139,191,254,139,195,92,127, - 131,86,16,113,28,147,196,243,76,212,234,24,134,73,187,63,92,39,181,28, - 242,115,26,237,86,82,174,121,27,45,206,206,213,27,106,15,138,1,209,120, - 247,61,62,76,118,238,17,154,94,159,133,57,73,187,23,210,238,13,47,212, - 79,6,203,232,64,95,147,72,47,105,97,89,247,3,3,21,7,58,92,25, - 183,31,35,110,63,198,170,230,12,171,154,51,69,88,114,128,246,200,191,35, - 207,246,194,66,93,198,237,199,134,158,75,229,128,116,227,164,90,168,184,40, - 146,72,41,135,250,62,150,91,123,153,102,77,55,216,86,77,164,76,185,230, - 218,46,239,248,165,235,248,196,39,238,229,200,108,128,235,58,120,222,160,161, - 243,104,136,178,90,53,70,198,230,76,226,85,54,1,176,98,245,57,76,76, - 172,195,15,59,184,60,249,223,119,28,166,28,99,140,19,3,207,98,161,183, - 64,41,31,199,113,1,139,206,162,201,53,223,12,152,217,109,147,166,154,68, - 206,61,103,51,207,63,107,21,119,221,119,35,121,153,128,91,25,156,178,89, - 49,88,232,198,212,171,46,113,218,103,227,166,237,252,236,47,92,202,221,247, - 167,124,240,87,191,134,231,29,225,178,215,111,230,178,183,94,204,27,254,205, - 36,166,105,19,4,17,43,234,149,34,236,88,206,181,149,157,147,154,208,150, - 233,221,88,170,119,27,181,219,3,75,20,154,23,62,10,24,40,213,70,136, - 73,52,161,212,64,181,105,122,121,135,146,53,68,253,195,131,183,200,223,195, - 95,196,56,208,6,86,96,206,74,22,182,29,162,201,42,16,109,170,38,248, - 41,40,213,36,237,29,192,168,109,32,77,246,96,88,91,135,142,159,231,209, - 26,238,50,161,73,0,38,73,14,7,228,129,224,222,98,151,90,163,206,68, - 205,164,61,23,98,100,95,247,92,91,226,150,60,31,145,175,112,60,129,138, - 36,194,49,177,237,65,223,203,188,0,60,191,175,255,213,198,158,185,249,136, - 135,118,134,252,197,199,111,228,246,187,142,176,119,250,17,54,109,123,158,254, - 78,179,139,138,52,213,249,88,173,224,6,88,181,162,9,108,103,118,110,39, - 122,194,247,36,126,56,201,45,59,118,97,90,155,217,114,146,96,227,230,149, - 116,147,132,6,99,140,49,198,137,142,103,125,30,28,8,238,222,217,231,195, - 31,58,192,239,252,198,55,216,183,119,10,195,168,97,24,53,206,56,107,21, - 231,189,120,138,178,202,8,66,179,112,206,1,76,212,109,12,35,160,98,25, - 116,218,45,30,184,243,33,206,61,211,224,69,47,121,57,173,150,203,149,87, - 221,199,251,222,253,81,126,235,183,30,34,8,34,76,83,100,57,56,173,32, - 227,56,46,77,173,78,143,218,76,248,73,123,73,194,64,189,81,34,40,175, - 6,143,14,190,98,165,218,244,18,125,220,94,210,42,72,173,53,59,76,138, - 233,66,41,87,212,90,94,109,248,165,205,78,115,160,206,210,100,207,144,154, - 27,58,199,116,185,26,177,165,10,174,183,216,93,226,206,172,10,253,184,219, - 241,7,101,8,64,108,106,85,29,140,12,27,48,77,179,32,183,188,199,228, - 157,247,116,185,230,155,17,127,241,241,27,185,233,214,10,251,246,175,71,176, - 69,191,222,21,67,141,157,251,201,210,124,153,235,77,102,36,231,161,9,110, - 61,174,179,137,47,127,245,49,254,199,31,126,134,171,191,120,35,237,86,248, - 164,179,0,199,24,99,140,19,7,207,24,193,149,195,142,82,246,136,194,35, - 37,3,130,36,137,231,152,155,143,249,79,191,57,203,47,191,101,55,95,248, - 194,12,243,173,77,196,106,26,83,52,153,240,90,252,226,219,86,113,231,237, - 45,92,219,2,2,28,247,48,186,7,225,58,253,198,106,129,80,234,238,242, - 182,189,30,153,118,249,211,143,167,124,246,51,125,174,248,213,38,21,39,69, - 209,102,102,110,154,157,119,236,226,192,108,15,41,21,113,82,205,74,7,52, - 75,68,145,14,171,229,249,163,81,20,134,146,254,110,221,169,164,183,91,215, - 147,165,109,82,127,79,102,251,215,161,73,208,74,205,50,58,58,76,121,74, - 198,68,143,46,66,85,130,177,15,252,30,53,107,105,225,185,227,245,145,157, - 22,198,132,160,159,133,7,197,194,42,76,102,49,153,165,102,173,7,160,63, - 49,131,151,253,229,132,208,175,179,172,251,241,212,30,154,94,150,223,202,136, - 110,162,114,144,137,202,193,37,46,77,165,218,186,228,0,29,66,221,191,78, - 159,79,181,49,79,173,81,167,233,30,24,58,183,190,50,9,226,35,132,238, - 10,250,178,70,47,187,200,72,99,77,38,229,70,214,249,247,170,213,176,190, - 160,120,224,225,136,29,55,198,180,15,75,38,26,130,186,21,129,250,1,138, - 29,122,159,64,145,170,38,169,106,146,196,115,37,23,229,32,124,43,210,89, - 78,61,125,13,94,229,124,20,219,80,184,248,81,15,129,203,225,185,58,87, - 126,161,199,71,254,211,109,220,244,221,237,68,73,74,18,180,72,101,151,32, - 8,80,145,238,115,153,196,115,203,254,141,199,24,99,140,227,15,207,24,193, - 229,33,41,41,123,8,225,226,84,86,15,245,28,252,218,55,43,252,234,123, - 30,226,243,87,221,193,158,189,89,199,17,209,196,20,77,12,38,88,189,118, - 51,59,110,12,120,120,231,53,4,113,2,4,68,129,206,199,120,89,152,50, - 141,205,98,84,138,229,72,146,56,230,145,71,119,243,157,27,246,0,176,229, - 164,173,184,142,73,30,222,76,124,127,168,30,74,183,111,82,165,199,195,227, - 111,96,25,229,86,154,209,166,210,5,82,55,209,142,201,172,173,150,82,237, - 129,130,235,155,67,10,46,207,157,229,74,46,182,245,69,64,173,170,77,30, - 145,95,197,152,24,38,62,147,89,36,171,134,182,77,224,64,85,226,153,153, - 43,82,12,106,218,162,254,225,130,228,128,34,199,87,222,182,156,106,219,116, - 72,209,151,122,123,111,177,75,39,216,0,12,114,123,185,130,43,163,108,54, - 25,173,51,203,13,67,64,209,160,249,171,95,217,199,157,183,183,120,197,235, - 47,166,185,122,61,21,39,102,116,198,159,109,199,244,194,148,176,235,19,248, - 195,231,169,140,85,108,123,222,6,206,56,213,199,96,29,6,147,8,244,156, - 56,112,81,180,185,125,231,99,252,222,239,252,63,124,226,79,118,211,75,158, - 79,170,60,170,13,139,48,141,153,111,153,196,73,149,113,211,229,49,198,56, - 49,240,140,17,92,154,14,44,227,121,136,10,96,190,27,114,229,167,31,227, - 99,191,255,16,87,95,51,203,220,220,228,210,125,89,96,221,230,73,190,113, - 237,221,220,177,115,63,208,66,95,201,231,11,153,86,15,177,140,16,153,21, - 60,137,76,42,149,41,252,192,226,158,157,211,124,237,139,55,48,59,223,33, - 136,246,3,89,43,171,254,4,125,223,36,8,2,34,217,165,215,91,204,250, - 42,198,68,81,132,97,68,71,109,162,60,52,167,141,172,19,72,56,63,32, - 55,191,87,56,31,169,102,100,80,149,24,53,77,124,198,129,229,149,67,78, - 114,177,221,35,182,123,248,169,14,63,86,13,133,88,16,36,19,154,228,0, - 77,150,102,135,5,34,109,54,1,84,137,220,242,247,42,147,92,211,235,23, - 247,117,72,116,121,83,9,64,165,171,240,187,38,118,188,180,16,190,189,168, - 137,168,18,204,227,39,41,158,101,224,120,162,104,5,150,35,159,189,230,148, - 204,32,66,184,76,239,75,249,225,29,15,113,231,109,143,209,62,44,233,28, - 57,72,16,205,1,1,11,179,89,111,77,169,187,255,71,190,162,23,245,113, - 189,73,114,147,137,82,46,79,28,156,99,243,73,54,167,189,116,51,176,21, - 197,36,130,193,239,71,48,137,193,36,65,36,249,244,85,55,243,222,119,254, - 29,183,223,217,32,242,21,134,157,224,153,17,158,231,17,69,242,105,159,107, - 55,198,24,99,60,247,240,140,17,92,20,37,152,166,89,140,197,113,93,135, - 52,77,249,151,171,67,254,232,255,222,197,253,247,215,177,205,13,152,162,137, - 84,157,226,223,88,30,96,235,22,201,98,235,32,123,247,237,209,251,218,22, - 229,122,167,188,92,160,226,154,84,42,21,22,186,3,245,208,172,122,64,133, - 239,220,18,211,235,182,208,11,186,79,26,239,161,94,93,192,16,61,162,176, - 85,168,143,60,124,165,34,57,148,3,122,50,183,164,12,90,32,247,232,176, - 228,8,185,89,70,71,147,143,57,32,30,35,154,41,114,105,19,13,189,168, - 138,17,98,74,22,5,110,175,141,103,80,40,51,75,181,176,74,254,149,156, - 44,39,112,88,48,143,96,154,11,48,121,8,37,58,8,209,161,106,118,48, - 163,39,136,237,30,81,255,48,158,218,67,212,63,172,137,45,83,149,189,68, - 233,115,21,250,113,39,75,203,153,179,131,146,132,216,238,145,246,6,33,202, - 185,133,129,147,49,136,7,53,132,145,175,72,99,171,232,79,153,171,184,40, - 202,59,212,12,66,149,245,201,20,63,176,152,62,18,112,213,223,223,202,66, - 56,141,190,112,9,152,90,157,178,24,248,197,197,199,18,168,0,195,168,49, - 59,219,231,206,219,91,188,250,162,215,112,238,89,122,54,158,91,89,141,42, - 72,46,64,17,32,112,81,4,220,185,115,150,63,248,47,55,243,253,31,86, - 9,186,139,56,213,144,126,39,63,215,177,147,114,140,49,142,119,60,99,4, - 151,215,70,229,136,227,152,43,191,208,229,19,127,244,16,143,239,218,84,108, - 207,201,13,32,77,123,172,94,29,179,118,91,204,254,39,246,226,135,186,88, - 90,24,122,22,156,118,80,14,215,67,197,202,98,162,174,67,159,139,145,65, - 148,8,148,114,73,250,58,212,231,85,6,10,163,219,159,40,22,208,60,55, - 243,164,144,195,93,255,139,82,128,202,92,86,20,189,103,64,110,162,93,168, - 42,0,179,153,96,25,29,186,97,15,177,176,138,110,213,199,94,216,51,244, - 246,101,146,179,26,138,176,62,28,158,44,155,29,115,213,154,99,2,7,81, - 147,58,92,9,120,6,136,197,14,190,217,163,106,118,10,69,152,223,122,73, - 139,216,214,207,13,189,207,145,105,253,81,87,153,136,117,41,94,93,147,83, - 30,54,5,48,210,54,78,93,171,58,215,214,147,182,253,36,29,82,112,249, - 112,85,24,52,98,46,119,53,233,182,13,60,167,138,242,109,30,126,124,145, - 185,249,189,148,195,147,137,239,19,133,115,4,65,64,146,200,34,199,55,140, - 10,119,222,246,24,43,27,240,170,215,188,24,65,128,31,46,34,168,100,195, - 80,117,51,110,197,110,60,167,134,34,224,174,251,110,228,179,127,251,105,14, - 30,89,199,220,92,7,25,237,38,241,3,164,84,69,238,117,140,49,198,56, - 62,241,140,17,220,160,43,133,62,196,117,95,247,249,196,31,61,196,253,247, - 107,83,136,84,29,100,169,31,162,84,29,206,61,103,130,75,47,61,141,21, - 85,35,83,95,135,128,131,248,161,206,193,5,97,23,8,241,42,43,1,8, - 3,73,26,141,22,83,103,48,170,248,225,98,182,47,44,246,161,98,237,209, - 99,84,2,137,159,164,132,178,71,16,4,244,162,126,225,6,180,146,249,161, - 241,50,192,210,46,37,189,140,20,58,173,129,114,171,101,138,192,212,234,173, - 213,25,86,8,245,190,135,106,67,210,51,240,211,129,74,115,123,109,220,94, - 155,180,183,116,65,239,244,162,37,219,48,23,48,157,30,11,12,158,155,152, - 156,47,20,25,251,14,100,223,127,103,136,64,129,97,114,83,147,224,235,11, - 8,115,86,98,206,74,212,161,229,127,14,83,147,30,241,194,64,209,85,2, - 77,250,65,119,177,80,194,58,183,165,17,69,18,165,252,146,59,181,167,21, - 92,246,125,138,138,151,229,70,53,90,71,244,113,123,217,69,73,175,47,80, - 113,126,46,33,8,151,52,237,161,148,203,195,143,62,194,142,27,246,114,209, - 197,46,231,158,245,194,226,61,4,21,108,167,142,200,72,83,79,128,63,8, - 236,214,46,203,143,94,207,193,35,235,232,203,26,177,233,23,161,105,41,21, - 113,28,143,212,238,141,213,221,24,99,28,15,120,6,203,4,4,160,23,143, - 255,125,205,2,31,255,227,221,67,228,6,218,84,178,162,105,209,156,232,113, - 206,89,38,111,190,108,29,231,189,120,138,125,123,35,130,240,8,58,188,120, - 8,125,165,175,195,78,0,126,168,243,59,21,79,135,169,194,36,69,24,250, - 57,199,82,8,17,96,87,5,130,10,58,111,55,201,150,45,20,206,186,5, - 63,38,233,167,168,216,32,13,187,36,137,36,232,46,22,253,21,139,79,144, - 55,40,206,186,128,164,110,82,146,85,109,140,153,46,98,177,68,26,37,2, - 241,86,45,130,217,161,94,209,202,199,90,208,132,101,213,210,194,1,9,20, - 170,205,172,103,198,7,49,156,35,235,103,237,198,252,174,24,42,25,152,114, - 150,42,15,179,181,180,12,32,39,181,81,178,203,143,211,75,14,46,217,39, - 71,210,215,170,172,213,46,133,135,227,225,54,103,142,55,80,157,229,174,38, - 66,184,67,102,157,169,9,11,8,11,146,211,208,23,65,161,39,65,106,130, - 15,2,127,112,223,111,83,86,236,122,194,196,20,215,93,3,143,63,46,121, - 254,57,167,227,85,6,21,111,113,212,205,148,220,250,18,129,78,33,8,248, - 167,171,191,205,127,255,253,191,227,224,145,117,28,153,145,4,65,64,16,4, - 75,102,219,193,176,242,28,99,140,49,142,93,60,99,255,147,117,191,65,216, - 249,64,200,167,63,181,139,155,190,167,23,75,57,210,197,30,224,172,51,29, - 222,254,174,83,56,231,252,73,238,188,189,197,195,15,223,141,38,53,159,114, - 24,75,136,69,70,93,119,0,53,75,47,214,85,107,1,210,62,16,18,119, - 135,149,221,222,189,131,97,152,0,177,76,144,177,86,119,121,207,66,195,63, - 196,98,55,96,177,27,12,207,79,203,143,95,116,219,47,57,37,143,2,47, - 116,81,61,19,145,206,15,76,34,104,5,87,38,177,74,87,135,38,43,93, - 69,165,187,212,221,87,173,235,5,220,171,43,12,218,152,115,128,151,45,250, - 102,166,250,228,160,119,167,152,214,159,49,55,159,248,169,38,183,209,247,206, - 21,103,254,250,161,207,57,74,134,79,130,92,193,169,72,18,39,213,162,216, - 123,116,172,208,244,190,20,84,128,231,152,216,97,148,41,44,141,138,111,210, - 89,204,212,94,156,16,203,164,20,62,46,53,223,86,29,16,77,30,223,211, - 229,214,29,223,97,245,154,58,235,86,172,69,17,102,13,185,193,96,29,130, - 73,130,104,63,138,41,96,18,133,139,224,32,95,249,234,125,252,213,159,124, - 27,203,243,138,22,94,57,201,65,94,19,153,142,70,98,54,27,0,0,32, - 0,73,68,65,84,195,150,99,140,113,156,224,39,38,56,221,132,88,14,213, - 187,233,237,122,186,179,76,250,204,205,199,252,233,31,31,230,171,215,106,2, - 41,231,219,76,209,100,235,22,201,230,141,71,120,211,47,40,222,244,11,122, - 255,135,119,94,131,31,46,162,56,196,192,241,23,2,21,80,171,179,199,218, - 21,25,250,45,148,242,136,82,109,105,247,163,124,17,175,128,81,205,94,167, - 27,243,54,170,144,36,9,9,30,42,232,233,155,92,196,72,90,36,129,164, - 106,246,240,204,126,113,43,171,55,149,46,128,220,147,149,2,100,231,36,218, - 152,253,35,152,173,22,150,209,193,244,6,33,188,120,213,28,74,132,24,243, - 41,139,113,230,2,100,1,49,29,35,22,4,214,68,86,16,46,58,4,141, - 133,130,228,130,198,32,76,105,77,180,104,28,118,6,251,50,152,31,23,216, - 29,68,5,22,164,139,213,232,129,51,141,85,75,233,244,34,26,118,136,88, - 236,208,176,59,120,102,102,90,49,24,46,63,16,109,22,204,35,160,38,169, - 38,91,1,88,92,55,93,60,125,216,239,23,142,204,229,144,171,56,63,73, - 113,179,191,69,108,250,216,86,31,67,116,176,237,152,52,213,19,28,114,53, - 84,159,76,65,184,248,81,31,171,170,50,247,99,155,114,157,91,175,63,75, - 44,19,162,36,45,77,4,168,128,112,181,122,19,46,74,185,40,117,128,251, - 31,172,114,228,112,151,201,149,54,130,128,40,178,160,200,195,181,129,245,89, - 184,178,141,160,149,61,215,226,186,175,239,224,95,254,9,162,94,135,185,249, - 144,84,213,80,145,164,235,207,103,78,90,3,195,136,126,172,201,19,99,140, - 49,198,115,19,63,49,193,229,11,151,16,110,113,197,43,101,15,165,2,12, - 195,192,178,87,242,217,207,249,124,243,107,218,30,159,19,91,174,224,182,110, - 145,172,219,60,201,171,94,243,98,46,184,240,100,26,174,199,142,27,246,178, - 243,225,160,200,163,60,245,115,209,175,111,84,135,231,135,217,78,61,187,55, - 220,85,62,200,58,148,197,65,74,55,54,49,146,86,209,72,184,31,182,150, - 144,91,62,226,38,71,94,32,13,144,132,43,49,87,12,30,155,205,4,55, - 18,224,233,197,177,222,215,46,82,193,68,113,63,71,213,208,132,156,135,41, - 243,199,5,142,210,197,36,199,80,152,50,11,69,230,132,42,165,38,196,188, - 96,188,232,124,146,169,199,9,156,34,188,42,87,153,5,209,245,23,87,176, - 198,27,228,211,0,88,166,3,74,37,152,103,101,101,160,124,97,48,66,39, - 119,162,150,141,70,221,118,254,83,27,109,154,156,157,86,246,55,84,193,128, - 88,203,6,161,209,198,202,179,243,29,186,139,11,40,99,21,43,86,232,223, - 150,98,48,157,66,155,77,220,204,129,59,192,204,220,52,87,125,250,99,28, - 154,75,152,154,90,65,42,219,116,250,139,120,142,14,119,7,65,84,56,127, - 199,24,99,140,99,27,63,149,130,3,178,65,150,75,59,128,220,189,179,207, - 191,92,187,155,185,246,76,177,45,39,185,21,77,139,141,27,82,206,123,97, - 133,119,92,81,229,220,179,171,124,239,214,136,155,190,61,189,100,184,233,82, - 184,75,182,164,169,222,182,216,143,51,229,6,81,34,136,163,188,41,176,94, - 176,82,185,136,10,122,69,51,94,219,29,254,248,197,96,207,18,185,165,145, - 44,230,166,225,247,52,185,245,77,172,90,138,202,22,109,217,177,192,13,49, - 157,193,226,44,84,102,178,41,213,157,25,180,139,60,89,63,21,244,83,65, - 85,52,73,253,46,169,191,204,212,128,101,160,22,210,140,64,21,162,2,74, - 132,152,53,253,121,38,34,139,137,190,38,2,107,162,165,223,223,80,32,218, - 58,100,41,218,244,211,165,29,84,204,89,73,223,218,163,207,91,116,144,93, - 253,154,176,84,228,110,164,195,33,217,32,62,50,52,88,181,60,70,7,6, - 163,105,180,18,26,76,61,240,156,229,187,197,128,14,33,199,150,135,157,232, - 247,205,115,173,203,145,226,220,220,255,207,222,155,198,90,118,165,215,97,107, - 239,125,206,61,231,220,249,214,171,42,178,73,214,68,178,91,234,110,178,201, - 102,75,130,134,86,55,73,201,146,108,57,106,89,82,44,37,144,32,199,6, - 236,31,66,98,35,9,12,43,14,12,248,87,4,7,240,143,0,1,18,4, - 129,45,180,2,4,70,252,67,74,226,81,106,117,43,106,203,112,183,90,164, - 90,61,147,172,145,197,26,222,123,119,190,103,220,123,231,199,30,206,62,195, - 123,85,245,138,109,85,1,103,1,15,245,222,189,103,190,183,206,58,223,247, - 173,111,125,25,174,93,85,66,155,225,32,64,20,140,208,235,53,77,150,227, - 220,108,35,177,100,247,39,95,189,129,255,229,127,122,11,235,36,198,254,254, - 62,60,143,97,187,93,99,179,89,131,146,165,54,0,231,93,45,174,67,135, - 199,28,15,21,193,81,202,156,33,150,170,143,140,144,8,119,247,19,252,227, - 255,241,14,254,228,143,111,128,144,61,219,227,6,40,114,155,205,66,188,244, - 9,138,87,95,11,241,226,71,2,188,245,246,45,252,206,63,251,125,124,243, - 59,55,212,182,112,11,101,212,85,119,218,111,70,119,109,17,92,207,147,78, - 4,87,197,42,93,131,22,11,240,205,33,60,220,2,45,212,207,128,174,49, - 192,245,82,84,146,113,21,205,57,246,86,216,177,74,13,141,237,74,209,5, - 9,0,34,28,107,41,89,141,124,200,138,42,101,36,159,160,79,37,250,84, - 98,39,151,32,125,14,210,47,107,82,76,215,214,104,75,83,54,25,83,36, - 61,9,153,100,144,164,118,109,140,120,71,147,168,233,185,115,73,173,30,37, - 210,76,61,128,184,209,165,17,188,68,140,98,179,218,98,50,206,48,155,70, - 88,44,111,98,140,203,24,227,50,0,96,48,56,180,115,226,0,96,194,22, - 182,127,144,146,165,141,228,164,37,71,69,84,69,50,168,77,5,208,15,39, - 40,235,164,69,198,106,17,92,141,228,136,106,252,38,98,31,180,56,139,36, - 205,144,103,3,93,111,11,29,151,147,4,234,1,39,68,146,123,150,228,254, - 201,255,241,255,224,183,255,217,31,194,239,157,130,224,27,44,183,7,240,60, - 95,79,58,40,45,229,58,116,232,240,248,226,125,123,68,149,50,1,243,250, - 200,178,194,166,38,227,213,153,10,185,1,192,108,22,226,251,127,112,128,151, - 62,22,225,135,127,168,7,198,24,254,213,191,188,131,207,127,14,72,51,10, - 96,233,164,40,31,44,85,89,20,133,22,153,212,17,99,189,51,91,244,48, - 101,71,220,184,204,216,27,177,2,145,203,210,125,31,122,118,90,159,171,126, - 183,129,128,76,84,196,37,23,20,114,171,45,184,106,132,35,231,138,212,0, - 160,24,3,52,43,48,78,183,0,91,218,58,92,157,112,12,185,29,135,136, - 182,167,249,48,175,165,56,217,18,222,64,216,125,236,4,1,99,171,202,62, - 188,123,236,110,122,234,138,218,244,34,198,249,73,121,126,99,92,182,179,230, - 100,241,46,34,182,67,17,43,114,115,237,205,220,161,167,0,144,228,83,248, - 125,130,60,171,70,91,81,175,36,225,4,30,188,30,119,34,184,20,245,7, - 157,168,215,199,118,179,178,203,152,182,20,19,197,25,197,109,53,77,153,104, - 219,55,0,136,241,143,254,135,207,97,179,27,227,214,221,242,59,179,222,8, - 100,124,163,109,220,186,26,92,135,14,143,51,30,58,69,233,130,144,8,95, - 255,86,134,223,250,167,223,193,225,178,176,41,73,131,201,120,139,193,48,198, - 43,223,55,195,199,94,121,18,130,47,240,249,63,250,22,62,247,123,192,237, - 195,30,130,158,208,209,219,113,104,166,40,13,118,197,184,150,162,108,166,172, - 66,20,88,112,6,130,57,130,97,102,61,22,61,121,205,218,111,153,126,55, - 119,180,140,148,170,145,219,27,8,91,239,34,122,172,143,151,207,85,205,45, - 18,150,228,36,169,146,179,33,146,181,17,142,108,203,84,157,137,230,92,184, - 239,183,33,233,149,203,19,89,37,60,233,214,238,216,18,59,65,48,242,151, - 170,95,14,0,25,84,73,135,97,31,222,74,69,163,166,209,155,144,165,157, - 82,176,89,109,1,49,183,6,206,162,184,130,81,184,131,39,175,193,147,215, - 48,192,117,236,210,57,118,233,28,69,124,136,245,38,177,253,132,54,122,227, - 151,1,164,8,253,5,118,45,42,197,82,32,84,162,140,224,218,9,189,71, - 149,194,116,83,168,239,14,33,161,22,155,212,174,85,94,192,164,169,13,66, - 191,192,237,131,235,248,199,255,243,191,193,32,232,161,216,9,108,87,5,4, - 95,192,231,81,165,71,174,67,135,14,143,39,30,58,130,115,197,38,89,86, - 224,179,191,185,195,141,235,196,70,110,92,46,33,196,214,166,38,207,95,232, - 225,185,231,24,206,61,237,225,221,91,67,252,223,255,87,129,111,127,243,14, - 226,244,16,73,122,247,68,209,155,16,33,164,8,65,196,210,70,112,42,69, - 121,252,216,148,108,179,197,98,157,52,166,96,91,98,211,211,1,42,45,1, - 78,175,155,92,58,62,154,241,253,93,202,145,175,8,144,12,184,77,29,238, - 196,188,146,70,52,4,68,86,180,225,96,82,135,33,55,182,40,151,147,11, - 90,182,16,64,17,40,231,99,213,182,48,224,150,60,221,190,185,197,147,186, - 238,181,41,137,181,88,171,99,34,152,99,50,174,54,157,47,55,119,32,138, - 43,152,140,83,44,22,169,74,237,66,213,49,251,244,61,172,55,137,157,157, - 231,21,135,152,207,85,109,53,110,105,191,0,170,17,156,65,53,130,171,146, - 220,46,245,145,251,5,14,22,250,90,81,245,48,101,34,184,94,239,180,54, - 97,182,91,67,249,112,148,32,201,55,0,66,252,238,63,255,44,190,241,29, - 165,194,77,210,242,122,212,219,7,58,116,232,240,248,225,125,73,81,114,206, - 33,101,130,175,127,43,195,31,252,238,151,177,94,125,160,146,150,236,7,234, - 6,241,244,83,2,159,122,237,2,206,157,167,184,254,110,129,63,252,194,91, - 248,131,223,187,142,171,215,174,64,226,150,150,119,55,205,151,21,142,158,122, - 77,105,2,66,19,85,131,115,34,184,7,69,153,146,4,178,88,221,208,173, - 129,50,105,214,195,40,22,165,210,49,114,254,141,4,18,78,32,22,42,45, - 41,177,178,68,85,111,49,219,137,57,250,116,166,234,113,102,158,220,150,97, - 61,136,85,115,183,57,182,76,69,95,114,165,246,19,209,0,36,212,209,32, - 73,49,199,24,100,9,8,76,177,73,171,18,127,111,60,135,55,158,151,196, - 57,104,146,204,244,86,25,225,152,30,58,111,84,70,85,219,213,141,198,58, - 227,61,6,78,238,96,56,185,142,197,34,69,188,84,215,108,155,149,17,164, - 73,87,206,102,91,219,207,230,167,45,14,45,247,68,243,243,247,243,230,3, - 140,105,23,200,179,194,250,82,54,97,94,187,133,59,243,1,62,251,191,253, - 19,108,210,103,32,249,26,130,111,112,115,95,167,159,51,110,197,50,29,201, - 117,232,240,248,225,161,219,4,212,239,25,24,27,224,179,191,185,195,215,191, - 241,49,48,239,171,149,101,251,253,211,152,205,66,60,117,126,132,231,158,83, - 17,194,27,95,19,248,220,239,1,215,223,219,34,205,168,141,220,100,35,114, - 43,159,220,213,123,137,125,205,235,107,95,73,87,69,105,34,56,106,110,242, - 33,128,8,35,71,249,62,99,170,241,154,136,37,78,15,85,11,128,40,174, - 64,242,203,218,152,248,10,252,235,223,2,95,206,75,3,229,241,220,214,221, - 140,90,82,78,0,50,41,137,143,200,208,70,114,17,13,64,174,84,211,110, - 66,71,148,38,218,26,249,75,140,252,50,98,50,191,147,1,199,248,171,1, - 6,78,27,128,232,121,160,43,69,254,146,36,234,39,201,16,7,9,146,158, - 196,232,77,117,28,20,11,140,119,169,106,8,7,172,165,151,220,50,200,45, - 195,106,161,94,91,33,171,166,50,1,172,122,5,70,227,67,155,46,53,13, - 223,147,83,75,76,78,45,225,121,95,179,63,0,144,239,191,13,178,91,99, - 117,192,49,156,92,199,44,248,38,6,184,142,1,93,67,22,239,98,181,222, - 183,81,156,250,252,158,208,159,155,132,113,167,49,48,67,74,67,20,96,158, - 18,11,85,69,38,85,16,178,68,174,125,48,165,216,64,138,37,164,76,180, - 123,141,138,230,202,73,3,83,212,83,148,64,136,48,216,1,88,224,139,127, - 116,5,215,47,191,141,2,17,214,171,2,131,190,68,81,228,72,69,222,234, - 116,210,161,67,135,199,3,15,81,131,171,70,1,95,121,115,131,47,124,238, - 10,4,86,216,165,126,99,249,193,48,198,153,51,138,24,174,95,19,248,234, - 151,174,226,250,229,155,216,110,230,144,50,177,234,183,123,163,92,166,216,25, - 191,203,166,138,82,221,68,13,74,145,201,81,48,182,84,189,168,148,180,27, - 119,125,176,37,192,39,101,4,228,100,203,238,101,250,33,90,210,164,133,175, - 122,174,220,72,202,8,63,200,128,87,124,38,237,177,232,72,176,130,72,32, - 100,18,33,107,222,128,77,164,167,54,94,110,27,211,12,179,9,109,181,250, - 106,61,254,22,143,76,64,13,88,141,147,29,16,222,197,100,118,85,237,51, - 56,192,98,145,2,98,129,1,85,174,47,60,61,84,117,185,121,219,254,212, - 231,118,176,186,160,4,66,0,54,133,82,82,22,89,189,6,217,172,195,213, - 35,184,48,232,213,150,56,46,205,189,64,146,82,0,9,110,31,92,199,239, - 253,219,47,98,183,35,218,69,37,70,81,168,207,198,77,85,118,232,208,225, - 241,194,67,167,40,205,64,211,55,190,38,112,229,237,125,112,185,4,165,170, - 222,98,68,38,166,246,118,238,130,154,34,112,245,242,59,248,227,55,111,226, - 218,205,119,144,232,116,213,253,55,119,31,189,220,42,41,195,52,51,77,224, - 40,16,161,152,201,248,44,238,237,153,119,170,169,72,59,33,64,215,222,88, - 111,11,153,106,97,73,13,174,176,68,234,249,119,180,69,232,178,206,107,34, - 15,167,94,182,66,134,49,122,141,232,170,220,199,172,121,46,50,108,40,40, - 185,82,242,91,34,35,90,181,57,235,229,64,124,116,186,183,14,54,148,32, - 100,89,33,186,62,91,98,224,17,53,137,32,222,2,241,22,100,123,29,100, - 183,198,112,114,93,137,117,10,85,215,220,102,66,181,90,180,34,4,16,96, - 111,172,8,210,144,156,137,224,238,133,188,54,139,78,169,112,171,219,175,62, - 52,69,168,138,148,66,251,247,23,255,240,219,184,249,110,117,123,238,180,9, - 206,37,146,36,211,118,94,93,251,64,135,14,143,3,30,138,224,140,146,242, - 224,48,199,231,254,197,62,22,219,158,243,222,22,92,46,113,106,226,97,48, - 140,113,233,89,245,68,254,246,219,28,111,126,233,42,246,223,37,56,60,172, - 222,172,155,233,201,54,28,31,229,101,104,191,249,140,250,173,47,171,99,213, - 83,171,43,117,183,123,160,18,33,105,152,230,110,251,247,170,121,121,201,138, - 98,178,174,146,175,113,29,1,96,199,223,52,142,177,231,129,174,114,224,176, - 73,172,199,237,207,250,86,2,54,146,115,165,251,98,172,85,162,58,58,52, - 105,216,136,45,236,196,3,64,17,93,159,169,9,5,177,0,228,183,175,227, - 198,154,217,107,37,229,21,64,46,212,164,5,126,5,156,220,65,190,120,11, - 3,92,199,54,19,160,184,106,183,181,219,153,107,151,192,212,214,4,95,219, - 52,101,19,1,170,53,56,117,78,245,8,46,232,149,159,137,172,125,79,100, - 131,216,18,231,223,4,223,248,230,45,188,243,206,53,196,73,138,213,102,135, - 237,122,109,151,238,162,184,14,29,30,79,60,68,13,142,129,82,138,60,247, - 113,253,221,2,95,250,247,91,27,185,169,247,203,223,207,95,80,55,109,143, - 94,197,98,181,197,27,111,250,56,88,112,59,141,91,30,35,32,105,162,157, - 4,141,138,178,135,118,121,253,81,41,202,217,52,82,233,73,183,153,91,195, - 11,14,42,145,27,235,109,85,51,183,230,140,227,210,147,124,91,189,249,210, - 172,104,141,230,200,128,55,34,56,54,41,128,195,42,201,182,173,11,148,164, - 234,30,11,89,81,96,46,173,90,50,159,149,55,103,55,189,10,185,4,93, - 77,43,169,207,186,0,69,146,37,36,89,170,9,8,164,58,144,245,252,250, - 14,196,74,58,214,101,11,32,202,21,209,237,214,24,7,239,85,20,150,6, - 253,190,249,218,149,164,67,217,8,69,81,96,216,202,113,245,239,71,251,247, - 165,30,193,73,39,66,107,194,188,167,252,42,147,124,131,47,126,254,29,219, - 112,110,82,149,109,51,3,41,61,190,133,163,67,135,14,143,6,30,218,108, - 25,0,62,255,251,57,222,186,124,85,191,94,85,240,205,102,234,6,51,154, - 169,104,237,157,111,103,88,28,228,216,110,170,181,29,83,131,35,118,138,192, - 131,161,174,162,180,255,58,240,112,8,90,44,176,211,194,7,42,22,200,239, - 124,195,166,39,123,209,17,44,200,86,85,98,56,238,56,66,167,134,151,21, - 64,210,82,31,91,160,106,235,53,224,246,103,204,18,240,77,203,113,36,18, - 34,215,34,20,39,82,148,36,1,98,210,136,222,200,18,160,111,57,30,153, - 131,26,65,70,165,9,180,193,56,109,26,44,219,30,61,163,34,53,142,43, - 223,161,13,181,166,148,11,108,215,27,21,9,135,119,177,216,166,24,78,174, - 43,179,106,168,113,55,178,18,229,150,53,56,193,85,196,180,105,229,241,251, - 187,248,110,4,87,135,154,242,173,4,71,10,110,3,184,34,204,47,254,209, - 21,172,14,34,91,255,227,121,121,48,46,209,117,138,202,14,29,30,15,60, - 84,138,82,202,4,235,141,192,111,255,246,6,82,134,13,114,27,71,115,12, - 251,215,49,28,141,177,94,244,112,249,50,195,181,155,223,193,58,203,32,197, - 18,226,200,218,204,113,104,127,34,151,34,172,168,40,219,28,77,10,156,2, - 0,12,156,12,225,166,119,17,64,153,158,4,81,211,185,233,205,146,28,188, - 62,83,13,220,161,105,226,110,143,32,76,221,13,128,85,49,214,97,166,2, - 240,108,80,170,49,157,166,110,198,218,189,61,17,150,7,109,106,125,134,232, - 138,29,183,17,158,33,58,178,162,16,11,0,113,170,188,43,205,186,169,58, - 159,123,193,56,158,84,92,79,6,2,44,123,183,242,26,35,43,165,50,29, - 30,194,27,30,162,63,58,68,209,187,137,237,122,131,201,236,42,86,7,28, - 162,165,247,45,112,68,46,62,185,130,94,48,131,231,121,150,232,188,158,187, - 78,251,245,62,174,6,71,96,8,188,77,188,100,172,187,92,255,207,5,150, - 171,247,240,255,253,193,59,72,211,57,226,36,117,4,39,198,76,188,83,84, - 118,232,240,56,225,161,8,142,23,59,252,187,63,202,240,199,255,254,207,64, - 233,0,132,36,149,212,164,223,39,24,60,241,164,85,79,222,189,59,192,118, - 159,99,187,153,219,155,81,53,61,25,54,106,39,247,11,27,193,25,208,126, - 171,171,133,139,217,52,194,48,187,130,101,220,94,160,35,78,75,158,113,14, - 177,78,37,71,151,194,142,133,60,80,145,16,235,109,193,181,177,180,77,11, - 178,149,173,143,53,210,159,137,4,169,77,9,87,209,27,5,59,0,182,89, - 121,238,114,44,64,179,2,235,59,189,74,189,205,68,113,242,40,171,47,13, - 59,157,28,74,16,99,136,206,212,231,214,131,24,52,187,141,145,159,194,147, - 115,59,197,220,164,115,165,51,77,124,162,163,98,126,231,219,234,188,72,130, - 221,78,32,205,124,184,15,43,153,110,178,166,76,185,147,220,91,69,25,216, - 26,92,204,143,62,159,163,197,75,51,84,211,221,41,146,188,192,23,126,239, - 90,99,73,87,81,9,160,35,185,14,29,30,19,156,152,224,56,231,232,5, - 103,240,246,219,28,121,113,1,66,108,225,209,103,27,81,220,41,83,111,145, - 183,113,237,246,194,246,189,9,185,4,65,96,159,180,9,18,221,232,13,52, - 123,150,218,225,105,247,10,33,66,53,235,173,40,144,9,69,26,89,65,180, - 171,197,45,187,61,182,91,234,217,96,42,61,105,20,148,145,188,130,56,217, - 169,190,183,104,4,127,169,235,113,250,112,36,73,17,174,66,128,140,149,115, - 72,36,32,218,116,40,81,73,12,252,250,68,145,78,72,64,179,194,182,11, - 208,145,128,60,156,35,25,39,86,244,97,219,2,248,24,140,49,36,227,164, - 145,114,52,233,201,58,146,158,132,184,42,208,191,147,131,174,114,200,177,0, - 219,23,16,61,15,147,91,57,240,198,196,54,159,27,215,147,196,95,170,153, - 114,87,100,101,206,156,169,219,229,79,188,99,85,151,125,170,82,203,235,65, - 140,237,179,183,109,143,30,0,72,122,10,226,20,85,245,201,137,34,207,157, - 255,22,250,100,162,6,172,198,91,108,243,203,106,150,30,96,211,147,253,62, - 133,68,162,251,220,202,207,16,80,253,112,188,200,65,104,226,56,153,152,117, - 131,214,97,172,17,75,65,232,164,38,50,209,15,34,186,214,70,26,145,156, - 153,17,7,40,242,12,0,220,66,156,124,9,111,125,231,73,100,58,138,3, - 208,136,226,24,35,157,146,178,67,135,199,0,39,38,56,198,24,146,36,195, - 87,190,60,183,174,37,166,69,192,144,220,116,164,218,2,238,222,29,168,232, - 237,246,45,71,65,87,130,220,87,141,197,93,166,188,81,245,24,177,125,112, - 46,122,222,125,60,101,107,231,144,94,212,195,196,8,58,99,149,34,19,219, - 51,149,69,109,36,20,201,134,90,210,133,36,137,125,63,74,203,155,96,69, - 36,50,151,136,82,189,13,182,194,152,85,143,223,77,41,214,197,37,98,1, - 36,188,124,63,100,178,65,182,162,231,29,41,106,49,235,132,76,98,213,215, - 68,53,214,211,189,53,119,248,115,31,43,30,130,12,184,53,133,30,179,4, - 226,182,34,67,162,175,219,38,221,130,12,184,189,54,38,229,74,214,203,178, - 135,16,208,131,98,75,236,118,2,97,143,85,8,140,210,196,182,9,216,213, - 162,50,132,38,182,5,163,253,187,34,197,178,165,77,160,25,193,53,51,4, - 230,111,69,102,251,251,91,252,217,87,191,106,35,73,19,181,153,40,206,184, - 155,116,70,204,29,58,60,250,120,168,20,229,215,191,149,225,223,252,235,63, - 110,68,109,6,131,161,138,144,54,235,21,54,235,21,14,151,239,66,138,230, - 19,248,131,169,40,161,29,40,0,66,98,228,186,214,198,104,115,52,78,57, - 229,249,104,2,101,167,34,128,76,177,45,100,101,234,181,25,35,227,130,136, - 84,143,169,185,119,59,131,237,99,115,69,38,137,172,252,237,245,153,141,218, - 216,164,176,4,193,183,94,187,64,69,19,153,219,216,221,214,3,103,137,45, - 145,144,135,115,75,184,146,164,165,88,38,166,24,239,82,53,45,220,137,22, - 189,124,14,198,88,133,116,201,128,99,197,67,68,167,53,249,47,0,182,90, - 89,95,77,54,40,108,111,221,24,61,200,91,58,253,44,23,32,100,137,237, - 122,3,57,184,107,211,215,253,62,69,146,113,192,58,211,148,48,36,23,162, - 0,17,251,141,235,234,214,227,252,190,99,101,86,139,224,12,30,44,229,157, - 226,206,124,141,43,111,93,67,145,231,40,138,194,70,113,91,167,175,178,27, - 167,211,161,195,227,129,135,34,184,235,215,4,14,15,85,212,102,34,55,33, - 84,187,64,52,174,62,181,95,191,124,19,155,109,218,250,148,125,111,84,251, - 160,146,84,213,204,114,158,97,40,23,16,34,4,161,137,21,40,24,184,3, - 48,103,209,91,246,119,42,22,128,152,99,224,45,192,15,99,100,187,59,173, - 169,47,64,69,37,73,79,54,85,136,26,173,189,103,0,112,184,104,212,204, - 0,149,106,116,119,101,163,30,145,170,72,40,10,64,47,139,6,185,181,109, - 11,0,16,19,208,235,180,222,159,110,247,85,33,191,72,0,145,182,225,146, - 129,141,224,92,180,245,247,153,40,51,74,67,37,136,113,182,105,82,147,166, - 125,130,77,10,108,139,247,176,187,124,13,98,85,61,135,208,87,7,89,70, - 241,154,120,133,86,224,234,207,175,40,10,36,240,32,233,105,125,80,174,250, - 178,60,230,124,87,110,191,30,193,53,179,2,247,75,116,9,46,95,189,140, - 36,41,183,149,36,9,24,221,89,251,174,110,156,78,135,14,143,7,30,152, - 109,220,49,57,111,191,205,33,165,158,150,93,139,226,250,126,41,122,240,201, - 21,196,169,7,66,158,56,114,187,199,63,105,55,221,228,1,32,8,85,93, - 202,164,183,76,90,73,202,176,161,176,43,200,243,240,228,129,117,48,97,186, - 22,55,156,221,70,47,218,169,62,47,115,44,11,53,222,198,164,226,218,172, - 176,238,133,123,89,120,73,205,215,110,251,193,230,180,110,52,119,4,44,109, - 86,95,46,138,245,0,228,157,242,92,217,126,249,249,144,165,0,89,2,114, - 209,116,117,41,214,3,59,253,219,46,191,162,106,134,93,0,27,85,214,65, - 15,69,243,220,34,129,56,40,35,177,113,230,97,24,12,64,39,75,68,67, - 110,31,30,140,133,91,191,79,143,181,101,107,244,194,145,106,26,177,13,109, - 17,156,171,164,116,81,254,93,63,6,181,124,154,236,227,206,245,247,192,232, - 208,70,148,60,47,108,154,210,160,19,155,116,232,240,104,227,68,17,156,16, - 2,89,86,224,43,95,158,3,100,98,201,205,76,13,48,79,234,6,239,188, - 211,67,186,137,237,147,187,148,15,54,200,84,161,121,115,75,19,142,141,150, - 58,186,18,115,66,18,248,185,231,168,40,83,44,119,151,225,201,53,168,88, - 96,50,188,141,208,35,160,114,81,138,75,128,198,196,128,86,33,137,65,125, - 184,168,3,73,18,69,52,102,253,122,52,166,163,190,56,72,44,49,20,59, - 199,93,228,114,185,124,163,150,54,55,17,152,110,240,126,115,97,247,211,16, - 162,44,0,118,131,3,119,154,169,52,182,88,33,185,89,46,223,168,215,133, - 41,136,72,109,132,105,35,88,237,164,114,84,125,143,47,61,53,174,103,46, - 64,86,4,30,93,218,233,4,6,109,54,106,30,14,225,225,16,130,175,177, - 74,245,231,232,164,40,85,13,174,61,213,76,90,210,211,246,61,103,157,170, - 208,164,141,96,213,96,213,203,215,246,241,149,175,234,65,181,121,142,172,16, - 96,190,135,237,142,84,196,38,29,58,116,120,180,241,192,4,71,41,5,165, - 20,235,141,192,87,190,244,150,77,29,81,58,64,156,241,74,155,0,0,92, - 187,170,162,146,117,86,246,136,181,213,220,238,223,139,82,97,48,81,55,152, - 161,150,58,214,5,10,245,113,57,123,145,190,201,139,57,196,246,38,168,92, - 96,208,207,224,143,23,160,147,37,118,114,105,229,241,68,204,239,57,135,13, - 80,68,69,179,162,53,173,39,214,234,210,138,156,85,122,216,200,82,73,248, - 57,231,74,236,161,5,37,134,64,136,72,171,17,146,91,183,107,75,67,94, - 150,213,215,205,242,122,29,185,79,236,241,185,226,148,182,99,182,164,21,201, - 114,160,106,84,37,149,58,233,19,161,62,75,119,202,184,105,0,151,99,89, - 153,159,167,30,128,210,154,17,182,90,127,37,202,136,223,76,92,183,41,202, - 123,192,76,19,184,87,250,251,104,43,184,234,220,184,56,221,96,126,75,165, - 77,41,77,192,139,188,210,244,109,192,121,222,53,125,119,232,240,8,227,196, - 53,184,117,18,227,91,111,173,109,253,77,65,203,170,243,82,253,102,108,186, - 0,32,142,245,77,252,62,157,41,170,104,113,147,103,237,190,141,71,33,33, - 183,192,48,71,111,50,199,160,159,33,247,213,141,120,39,8,198,163,154,69, - 149,86,22,150,234,201,178,126,5,220,59,5,89,221,177,90,175,85,234,31, - 181,215,113,220,101,69,206,90,201,205,28,135,88,176,70,20,103,215,89,52, - 123,246,136,12,193,47,43,149,103,61,18,91,196,3,32,38,21,37,103,91, - 253,113,155,249,173,215,192,29,188,74,86,102,27,106,38,156,25,118,218,22, - 193,141,105,147,40,220,8,78,182,40,87,219,68,38,132,28,157,250,188,191, - 105,21,42,229,190,220,16,164,27,245,223,35,68,121,254,69,193,145,108,84, - 132,201,216,253,153,66,119,232,208,225,207,7,39,38,184,175,254,9,67,20, - 22,16,98,11,41,15,32,196,22,132,60,5,33,182,24,71,229,29,245,218, - 85,101,205,85,236,8,8,137,245,104,156,7,83,77,42,84,215,121,210,191, - 129,156,151,81,225,24,11,4,120,219,214,121,72,148,107,145,73,169,162,156, - 226,6,166,167,174,192,207,7,106,212,11,189,6,73,150,232,147,9,86,107, - 6,118,234,0,129,184,10,177,208,105,68,50,177,174,34,9,39,74,61,25, - 137,202,244,110,177,166,224,95,41,91,7,136,12,193,247,123,32,87,141,244, - 190,84,83,210,145,78,209,222,0,232,101,97,231,199,45,103,74,109,58,129, - 170,141,177,27,28,212,111,166,21,201,70,90,82,49,237,8,236,70,117,57, - 179,158,221,175,38,190,132,19,132,76,34,214,17,23,251,211,137,93,214,85, - 93,78,190,181,177,233,210,69,63,6,194,133,242,213,140,4,138,29,87,189, - 115,43,138,40,229,32,43,138,98,61,176,199,19,7,9,228,74,96,122,43, - 130,191,127,8,58,91,170,30,191,105,134,161,247,142,34,41,153,32,15,122, - 218,201,36,4,48,193,100,40,17,108,148,95,165,135,67,44,56,67,191,216, - 175,68,112,42,69,153,194,173,199,186,34,19,131,163,210,223,110,29,174,74, - 116,77,241,10,176,192,213,171,128,215,95,33,45,4,18,120,200,182,75,48, - 186,195,118,71,16,14,71,144,71,76,38,239,208,161,195,163,131,19,19,220, - 193,250,222,203,0,234,41,124,157,101,21,151,127,87,221,104,112,188,200,196, - 52,131,151,203,172,182,17,210,221,83,246,239,245,122,131,62,155,216,58,96, - 21,213,109,231,254,22,254,120,1,34,39,42,114,35,11,140,167,135,64,156, - 170,89,109,186,206,37,23,229,229,169,11,77,26,234,201,88,69,19,146,36, - 13,155,46,27,141,57,181,56,27,85,213,34,56,182,88,65,228,236,200,198, - 110,23,50,201,84,10,242,142,49,92,22,141,117,201,70,245,201,153,227,15, - 153,212,222,149,7,173,251,112,69,42,246,181,65,161,200,244,8,251,49,131, - 144,73,200,185,118,107,209,231,234,78,71,32,36,65,20,29,45,154,25,49, - 181,111,79,71,124,237,56,58,250,63,46,69,121,239,20,184,121,128,82,15, - 27,2,151,17,103,18,105,194,173,170,211,96,183,46,236,48,212,14,29,58, - 60,186,56,49,193,45,238,112,155,114,116,65,72,82,169,127,185,205,188,6, - 121,155,171,254,177,55,32,245,212,238,214,80,198,131,24,131,161,22,64,236, - 150,32,125,110,77,148,155,72,64,229,77,248,161,82,244,245,153,118,200,215, - 174,248,140,173,192,38,69,197,38,139,102,5,136,56,68,49,31,55,182,230, - 78,10,48,145,82,177,227,149,26,23,128,74,90,177,66,60,139,170,144,36, - 224,196,18,157,184,42,84,157,206,137,224,200,82,11,86,234,151,232,154,135, - 34,137,128,94,139,57,181,21,184,192,18,182,185,58,226,107,57,228,91,68, - 109,215,33,93,145,51,32,145,138,200,34,161,61,70,74,3,105,113,181,170, - 208,164,171,28,244,90,117,162,185,88,148,68,107,224,14,87,141,19,117,237, - 82,107,45,86,158,148,251,249,9,111,138,36,94,180,164,38,143,142,254,235, - 42,202,147,101,10,202,125,240,180,186,189,182,201,2,157,146,178,67,135,71, - 23,39,38,184,235,87,111,0,36,116,28,38,154,173,2,6,117,247,146,7, - 247,155,172,207,3,83,40,180,228,127,60,202,33,119,205,104,164,205,139,114, - 52,62,84,106,201,233,45,248,203,5,248,123,76,121,65,202,21,242,89,174, - 100,240,43,170,82,138,215,105,235,96,83,160,84,55,202,9,109,175,199,45, - 106,255,214,64,150,176,81,159,137,174,136,12,45,241,25,66,60,46,146,43, - 222,20,192,21,189,189,141,91,31,84,132,72,54,18,72,212,190,172,251,74, - 172,82,170,166,62,103,72,205,64,238,147,10,145,25,210,150,11,130,229,183, - 123,96,251,138,216,204,49,202,185,218,166,74,183,18,144,43,18,69,18,129, - 44,133,106,26,215,35,134,128,178,142,38,99,191,98,182,12,168,250,232,200, - 25,85,68,139,5,194,104,90,249,126,61,40,238,191,23,206,236,163,124,80, - 184,121,179,124,88,49,77,223,71,161,107,248,238,208,225,209,196,137,9,238, - 238,221,1,218,211,69,78,67,118,188,64,186,137,149,247,160,88,218,158,185, - 54,156,164,15,206,136,76,118,171,21,198,163,28,222,102,83,121,191,158,10, - 205,250,223,4,216,210,218,79,225,112,14,250,246,59,0,159,52,82,133,34, - 103,192,129,128,92,137,134,53,23,59,128,37,5,178,84,222,143,236,160,36, - 42,185,18,170,94,182,41,151,169,64,203,247,101,75,128,65,150,234,253,122, - 13,206,144,85,5,115,9,154,100,240,188,35,110,176,122,121,147,78,157,0, - 0,25,35,253,6,171,16,162,90,86,90,98,116,149,146,33,147,144,105,8, - 241,246,16,179,107,213,72,145,44,5,196,101,105,35,60,121,157,131,237,11, - 120,137,179,92,77,133,57,9,235,17,79,121,17,4,157,218,52,229,130,179, - 35,156,76,218,113,63,42,202,251,131,246,176,20,87,0,0,94,63,129,167, - 123,58,179,66,0,188,20,209,152,58,92,215,240,221,161,195,163,137,19,223, - 17,190,254,103,205,155,143,251,180,109,4,0,235,44,179,211,3,204,128,211, - 135,131,227,100,97,68,38,3,137,29,95,34,26,20,90,169,119,143,1,153, - 108,133,232,244,26,98,1,164,255,142,130,191,199,128,152,34,100,18,196,145, - 28,146,165,104,157,26,32,87,66,69,58,186,21,64,222,208,169,69,19,161, - 204,209,230,66,85,166,26,161,34,37,219,159,102,68,43,49,1,185,172,126, - 181,179,223,156,117,144,84,107,127,222,219,2,114,225,16,134,19,53,186,209, - 27,14,4,138,3,125,19,190,186,67,255,63,228,141,99,19,57,83,145,215, - 13,169,132,36,53,82,23,239,204,171,173,15,58,2,36,75,64,166,33,98, - 145,170,235,114,163,122,44,68,164,149,38,240,76,12,0,186,114,82,148,0, - 145,234,164,169,88,96,183,90,89,146,107,111,19,56,170,23,110,210,250,122, - 21,247,31,13,174,54,106,63,197,46,68,145,231,229,180,113,54,70,202,219, - 51,21,29,58,116,120,180,112,98,130,187,113,221,164,112,106,228,161,85,108, - 126,159,32,221,40,66,187,159,155,207,253,247,193,85,247,231,201,82,249,16, - 111,61,68,61,69,12,126,154,181,214,250,0,229,210,17,209,0,114,57,67, - 239,154,7,250,229,183,109,4,39,231,64,188,33,149,104,166,238,61,89,33, - 61,147,234,91,232,121,112,177,154,195,86,108,152,25,22,221,142,150,215,139, - 29,183,234,203,6,244,33,152,246,5,196,20,98,77,225,213,220,53,76,180, - 200,11,79,255,75,65,174,10,43,16,41,222,20,32,111,149,125,117,102,121, - 178,20,240,110,197,101,116,233,204,182,227,155,29,188,47,115,21,177,173,105, - 69,161,201,110,112,32,78,145,106,129,9,174,148,231,102,122,237,76,203,129, - 121,0,106,155,186,126,58,44,35,35,83,139,187,151,23,101,29,199,13,60, - 85,56,202,104,185,153,61,32,180,250,1,21,69,1,191,136,157,191,171,13, - 223,93,154,178,67,135,71,15,39,38,184,34,187,123,236,251,187,60,199,166, - 208,169,171,22,131,229,7,199,49,130,129,45,193,128,0,145,211,175,229,170, - 54,1,128,188,85,77,95,26,210,242,110,197,42,101,183,107,73,159,46,160, - 4,26,113,251,101,34,75,1,152,150,63,215,217,100,46,129,236,232,116,44, - 217,168,26,152,33,0,147,226,91,241,208,18,166,221,190,65,45,221,104,222, - 183,179,87,93,14,94,160,61,178,3,64,174,72,136,45,61,50,152,33,75, - 21,93,26,33,77,194,9,216,129,138,82,139,36,2,191,93,70,80,69,18, - 169,101,157,153,115,100,163,106,112,6,146,164,229,44,189,99,166,48,236,39, - 90,204,51,144,224,80,163,29,218,4,74,15,7,247,164,163,150,215,219,46, - 38,224,39,183,81,228,121,69,73,9,0,169,40,235,136,148,222,91,245,218, - 161,67,135,255,184,56,49,193,149,74,201,0,82,134,101,159,18,17,93,43, - 51,0,0,32,0,73,68,65,84,153,32,206,118,214,139,146,208,161,141,224, - 76,143,82,91,163,247,253,11,79,212,186,67,166,110,70,5,217,131,39,215, - 72,215,27,136,100,174,247,51,1,9,34,248,61,15,64,130,40,216,3,0, - 176,111,1,108,124,168,140,129,101,8,50,153,3,83,160,255,237,28,249,103, - 51,32,153,130,204,202,61,137,5,131,247,182,38,33,231,230,44,12,9,57, - 196,65,175,83,59,119,141,125,65,192,207,55,64,82,54,97,87,250,210,18, - 69,4,92,167,35,99,145,130,200,16,195,223,9,42,117,59,57,161,149,253, - 136,45,181,61,107,226,107,123,192,21,64,6,106,123,197,166,218,26,224,111, - 57,138,130,217,243,152,99,12,190,223,3,253,188,0,29,136,202,61,92,238, - 19,117,140,251,18,114,2,224,74,57,145,60,162,1,228,103,71,40,190,25, - 193,11,99,120,73,92,33,48,179,236,84,134,144,111,72,240,194,131,191,217, - 161,184,21,41,95,203,176,135,148,73,140,254,3,5,33,137,74,33,211,190, - 22,153,212,236,183,196,28,216,18,48,204,109,171,64,149,20,205,220,182,246, - 135,29,183,6,231,42,40,9,2,59,23,174,196,241,233,242,56,45,172,136, - 41,101,170,29,133,121,71,55,118,119,17,92,135,14,143,30,222,135,170,124, - 218,58,171,107,167,45,140,164,216,180,172,243,112,251,115,225,201,3,20,100, - 84,137,222,142,85,222,185,198,192,115,89,169,37,225,234,174,81,115,19,107, - 10,190,245,32,73,98,21,133,228,74,45,58,90,64,41,11,99,10,190,223, - 171,16,31,243,142,86,223,97,174,106,93,33,147,144,36,1,157,31,211,255, - 229,156,82,194,9,228,66,69,80,36,69,25,197,153,227,105,57,253,233,106, - 161,154,203,111,200,230,242,139,234,122,69,18,217,232,178,56,16,192,59,135, - 240,55,59,123,94,70,68,66,117,26,83,92,21,144,73,86,105,58,247,139, - 157,77,219,6,188,153,206,78,179,145,254,237,62,30,108,142,104,222,118,157, - 76,78,134,251,177,238,234,208,161,195,227,138,135,36,184,227,251,140,118,121, - 222,106,132,251,126,120,81,186,240,100,181,235,92,202,16,50,45,159,208,227, - 180,36,25,190,223,67,188,63,106,212,213,146,155,12,197,155,74,21,216,191, - 147,171,186,90,216,3,121,83,213,175,18,78,144,50,9,124,171,103,133,32, - 46,145,153,180,30,59,80,175,243,66,95,218,90,234,176,220,97,205,238,43, - 166,138,32,156,229,43,2,19,187,158,26,86,42,223,214,164,3,29,197,57, - 219,47,54,172,220,63,0,182,41,32,231,0,255,138,68,177,207,144,251,67, - 69,140,251,78,107,193,190,180,194,24,127,127,103,163,75,249,57,1,242,103, - 90,176,114,195,241,189,92,168,237,146,125,61,112,245,154,167,34,65,187,127, - 207,166,109,253,185,143,253,205,62,172,3,137,95,56,23,166,253,115,55,66, - 19,117,112,237,198,200,117,39,147,123,215,224,142,67,140,242,1,237,152,239, - 34,95,65,230,205,255,54,93,138,178,67,135,71,15,39,38,184,56,219,57, - 127,165,173,191,247,125,191,53,130,123,48,47,202,227,73,180,32,42,253,24, - 235,154,81,143,110,85,4,39,220,6,109,117,195,122,230,150,186,33,154,193, - 157,118,27,73,132,254,157,92,169,7,151,234,111,44,84,132,34,22,204,246, - 133,77,160,213,146,111,182,16,207,66,217,111,201,149,80,105,201,218,123,141, - 227,222,48,176,27,28,197,29,245,0,192,183,138,32,138,13,179,53,58,147, - 10,36,155,106,212,69,100,168,82,167,154,72,73,10,32,139,236,122,109,224, - 87,103,72,191,193,64,151,45,67,84,235,81,159,110,14,39,187,8,244,79, - 9,112,75,111,163,240,42,190,151,69,161,132,52,228,138,84,215,232,74,185, - 9,86,20,160,215,41,136,12,192,14,0,246,45,45,191,151,33,252,52,67, - 43,104,153,31,94,115,119,126,81,27,225,156,196,207,244,94,72,209,70,110, - 1,191,105,91,5,114,174,30,150,188,90,186,178,51,93,238,208,225,209,195, - 137,9,174,63,241,107,55,30,227,19,168,32,211,216,166,41,239,7,71,215, - 224,142,190,145,229,89,106,85,148,38,69,153,9,229,141,72,162,220,153,232, - 13,44,253,53,216,62,7,59,168,58,223,219,126,176,133,178,169,170,123,59, - 202,133,132,184,44,203,30,183,55,164,37,176,74,47,217,2,224,151,149,194, - 146,109,10,48,207,120,80,150,239,215,215,145,111,17,107,78,108,34,63,160, - 84,64,90,36,101,68,40,247,9,228,130,168,214,132,45,109,44,7,0,94, - 193,203,253,235,215,217,87,14,209,255,118,222,88,190,72,34,117,62,9,108, - 186,83,108,85,243,186,188,206,65,222,41,32,182,20,220,25,210,86,36,154, - 76,179,72,173,119,25,224,111,76,236,185,153,190,188,120,163,34,58,243,128, - 96,234,105,25,120,163,209,91,45,168,242,195,131,19,100,30,79,222,7,215, - 30,173,69,65,121,190,166,6,231,194,168,40,59,116,232,240,232,226,228,4, - 231,223,219,73,93,166,237,51,224,78,110,161,4,24,194,147,131,118,21,103, - 143,150,61,74,110,164,56,201,71,120,235,27,162,50,38,134,44,1,36,42, - 82,43,194,8,98,77,33,247,9,188,36,6,217,72,176,162,128,87,112,37, - 32,129,74,111,210,55,180,232,196,33,70,64,165,248,200,21,69,134,72,156, - 180,33,208,108,170,134,38,129,69,213,254,10,11,77,78,69,161,126,215,199, - 209,72,115,222,225,141,72,205,136,90,200,70,90,226,163,75,9,230,41,165, - 37,121,83,64,92,209,3,98,227,50,250,246,55,59,176,77,179,78,200,246, - 5,248,111,115,136,55,212,58,174,42,211,47,118,165,170,51,5,200,85,1, - 239,141,67,117,222,119,202,7,149,254,29,45,161,191,44,225,99,106,167,78, - 244,251,180,210,7,87,199,182,126,185,142,153,16,96,23,185,175,62,184,163, - 208,174,158,116,81,228,57,138,236,232,52,164,127,31,255,31,58,116,232,240, - 31,23,39,38,184,167,63,176,167,26,183,143,16,0,196,137,7,18,68,182, - 231,169,62,198,164,158,166,60,186,6,215,78,134,100,123,230,152,163,75,33, - 99,191,242,183,129,156,151,253,106,46,188,91,113,187,44,63,133,154,152,29, - 83,208,203,42,13,199,138,162,210,200,93,36,145,74,57,238,11,208,235,20, - 133,208,117,199,250,125,121,81,141,206,196,130,89,215,16,113,85,148,68,232, - 68,125,114,216,244,183,44,156,20,41,243,68,181,222,87,17,184,148,231,195, - 175,80,200,133,108,68,118,21,53,101,80,174,39,255,12,160,159,23,118,29, - 186,84,132,207,54,133,221,143,159,171,244,51,185,33,203,254,55,227,139,169, - 163,195,98,199,145,126,163,36,134,126,144,55,172,219,30,22,166,206,251,96, - 53,184,150,78,124,253,129,25,207,83,227,148,147,105,191,73,66,203,229,235, - 41,202,14,29,58,60,122,56,49,193,141,102,31,64,24,142,106,175,86,73, - 235,200,90,11,30,36,138,59,89,173,133,68,38,133,212,78,156,68,6,182, - 167,204,141,58,92,215,16,238,121,138,60,22,170,70,198,47,87,133,25,238, - 166,189,130,67,172,169,245,105,124,80,33,158,56,66,253,8,160,148,251,71, - 125,85,143,187,34,43,117,62,58,104,222,216,13,233,153,127,233,82,165,20, - 101,160,150,151,174,158,194,73,79,218,245,223,160,32,95,150,160,75,137,124, - 160,246,197,141,155,71,67,248,162,8,20,64,165,255,175,98,217,165,177,75, - 125,68,209,241,61,148,13,180,60,68,153,134,126,224,65,148,186,247,50,244, - 118,178,12,98,90,25,199,164,94,43,63,212,122,138,178,171,193,117,232,240, - 232,225,196,4,247,202,203,11,196,201,64,165,143,100,162,111,66,85,207,200, - 12,188,210,112,109,162,184,247,67,100,178,225,1,34,239,102,169,160,212,245, - 27,85,131,11,224,231,30,252,222,22,238,60,56,64,213,138,0,53,235,140, - 174,114,144,219,128,215,215,55,200,5,80,132,74,96,194,135,30,216,166,128, - 152,16,144,27,18,69,242,2,232,239,203,146,248,60,15,8,21,225,209,36, - 3,166,0,253,34,71,254,135,125,120,253,141,170,89,233,251,101,238,245,81, - 220,138,128,169,110,27,72,212,246,229,66,66,94,81,199,67,255,84,11,76, - 82,117,200,198,203,210,77,111,210,88,73,245,197,255,25,192,123,183,176,196, - 86,17,160,56,202,76,94,80,27,225,209,129,0,141,119,40,196,16,133,199, - 236,122,13,98,211,132,232,111,57,72,10,27,189,1,58,77,169,207,73,108, - 41,120,65,109,31,158,231,113,32,4,60,170,82,165,152,234,235,249,91,207, - 163,119,205,67,142,133,158,25,184,68,34,206,31,251,137,31,141,242,64,171, - 34,39,253,110,70,43,153,2,243,16,37,145,86,50,4,229,84,138,182,40, - 78,97,60,76,225,209,9,124,214,3,11,168,154,236,173,137,52,12,155,77, - 252,93,138,178,67,135,71,15,39,111,19,32,79,212,254,14,203,39,237,163, - 134,78,30,241,58,240,160,34,147,208,54,122,187,96,168,58,166,212,173,186, - 134,55,10,248,251,135,224,91,15,1,39,21,167,126,163,156,52,81,7,219, - 47,42,247,62,246,71,87,65,222,20,32,75,45,34,49,238,242,38,77,169, - 173,185,252,141,170,79,177,77,97,83,149,254,102,7,239,123,99,144,27,170, - 17,26,33,108,125,207,223,63,108,58,165,36,78,42,179,126,201,18,128,220, - 82,231,78,106,151,192,252,205,60,1,17,245,43,233,72,67,86,128,138,54, - 235,235,218,243,212,203,200,160,252,161,3,213,28,78,151,178,178,15,247,152, - 234,199,106,142,191,183,127,91,89,128,1,186,6,247,48,234,199,224,136,223, - 75,183,28,243,29,235,245,10,251,32,229,62,80,73,36,14,217,53,191,115, - 134,252,78,159,30,216,215,204,216,28,227,71,153,36,113,167,162,236,208,225, - 49,192,137,9,238,197,239,11,97,158,168,141,137,242,251,99,166,124,47,168, - 84,210,134,107,51,92,82,79,147,30,141,205,51,30,228,13,165,88,76,153, - 172,212,220,76,79,153,77,191,185,247,190,4,72,191,184,86,78,31,65,153, - 50,52,247,73,35,210,112,35,59,131,98,55,132,60,77,80,188,118,26,238, - 125,149,123,158,82,44,174,41,112,205,3,14,4,188,130,35,247,135,150,32, - 77,128,225,170,34,197,150,130,46,101,69,196,210,6,63,223,84,106,106,238, - 235,109,17,155,129,33,181,134,241,7,202,122,159,75,114,173,86,97,26,98, - 193,80,124,189,230,124,242,80,2,163,114,93,55,69,9,52,69,38,102,84, - 146,68,234,68,114,45,79,11,0,92,87,147,32,36,250,95,101,244,108,210, - 148,66,132,8,81,192,103,106,187,157,138,178,67,135,71,31,39,38,184,189, - 17,64,48,7,100,82,27,131,163,111,66,50,177,195,45,31,14,245,27,98, - 213,170,235,254,214,81,24,222,40,172,114,177,174,185,179,253,103,40,157,248, - 173,88,100,1,229,192,191,128,77,239,185,214,88,128,74,209,137,176,156,94, - 109,238,157,52,222,65,190,68,33,94,157,170,200,77,147,161,137,0,201,82, - 41,59,249,237,0,36,45,133,27,64,89,243,114,9,197,252,184,36,101,73, - 233,8,184,239,217,122,154,67,108,38,213,216,186,13,135,232,220,250,157,89, - 246,94,68,219,86,135,59,57,202,157,197,89,187,53,86,61,69,121,116,58, - 188,221,127,50,75,130,202,228,120,0,54,69,153,123,71,251,139,118,41,202, - 14,29,30,61,156,152,224,206,157,167,16,210,73,9,182,165,31,101,98,167, - 126,75,25,33,12,122,205,101,52,142,86,81,30,127,7,53,53,184,129,87, - 85,62,40,183,12,160,17,134,212,230,157,153,27,189,231,241,246,114,140,22, - 77,24,17,69,221,189,191,158,237,98,238,96,204,94,12,49,33,192,95,33, - 8,206,221,133,124,134,216,244,35,247,188,146,36,230,138,8,108,77,75,131, - 109,10,20,187,170,19,140,12,160,252,34,81,37,54,146,86,201,198,253,221, - 144,50,47,40,216,69,97,215,7,116,141,205,136,84,66,181,172,37,246,182, - 115,116,8,47,247,155,46,53,238,181,168,16,190,131,168,229,225,100,242,144, - 78,32,82,44,17,244,68,37,13,174,60,40,171,251,82,223,179,58,233,54, - 143,231,252,185,0,113,114,199,42,41,1,128,23,57,114,94,128,139,126,167, - 162,236,208,225,49,192,201,9,238,105,15,23,206,141,155,111,28,81,103,35, - 36,62,97,35,238,201,83,90,109,117,61,178,209,194,14,93,247,170,212,146, - 204,251,70,154,223,139,149,0,101,90,138,40,204,239,70,120,97,34,41,238, - 121,240,194,184,145,218,99,47,11,200,87,40,16,46,176,251,144,175,107,97, - 154,4,245,36,2,177,0,138,91,81,229,88,76,26,212,235,111,90,163,165, - 182,200,201,244,191,185,41,198,58,9,201,151,168,34,90,119,59,250,188,16, - 2,100,74,74,209,141,131,194,99,85,130,11,209,186,92,91,106,211,11,171, - 132,82,236,154,157,220,203,123,154,21,31,63,227,143,208,73,227,251,85,37, - 183,182,239,101,73,118,18,137,253,1,66,156,26,127,0,128,26,60,27,245, - 170,199,59,232,203,78,69,217,161,195,99,128,147,183,9,12,41,94,122,249, - 251,239,107,89,119,92,78,91,20,87,186,189,187,48,127,223,91,148,16,176, - 35,154,190,157,137,222,75,95,69,122,188,240,148,176,67,163,66,0,78,95, - 155,29,131,227,192,186,121,132,128,152,16,240,161,103,35,64,67,90,114,72, - 44,97,248,91,14,254,25,10,118,58,67,194,9,194,167,56,100,80,10,48, - 242,97,95,77,12,152,55,27,193,1,167,214,7,69,68,150,100,234,8,107, - 41,67,67,88,238,177,235,227,20,47,3,184,232,16,187,38,36,121,154,64, - 158,38,54,2,45,118,67,107,197,133,16,240,134,220,214,14,93,146,171,19, - 95,81,48,112,207,3,157,114,75,108,110,13,46,10,11,128,246,91,207,247, - 120,84,167,8,68,189,234,54,76,4,119,28,170,234,73,23,110,212,23,226, - 204,244,44,102,79,94,0,0,164,9,71,156,57,77,238,236,253,30,225,211, - 161,67,135,239,22,78,76,112,140,17,92,122,238,169,138,176,196,142,195,169, - 137,77,146,116,96,111,62,73,75,111,92,93,198,173,215,210,255,222,95,4, - 71,18,245,148,109,156,76,92,179,229,198,254,110,168,190,54,183,89,185,178, - 251,139,64,254,130,115,3,13,21,185,137,176,167,110,228,137,138,116,68,216, - 83,233,189,176,218,144,237,254,78,63,113,74,157,5,147,144,23,9,10,49, - 132,188,19,130,121,133,37,0,35,237,55,228,84,120,12,158,199,65,166,218, - 234,106,235,164,81,157,99,50,200,79,247,193,79,123,54,213,200,135,94,73, - 180,26,204,19,16,19,2,250,137,83,32,207,84,247,87,33,77,253,187,71, - 55,240,183,220,110,47,31,170,235,65,167,250,53,93,31,52,199,148,159,238, - 3,83,216,99,182,152,2,222,147,142,241,117,226,97,54,62,105,180,115,116, - 13,174,45,130,179,239,85,62,92,115,44,237,223,175,48,80,15,60,231,47, - 94,130,223,43,247,71,153,18,51,29,229,69,217,213,224,58,116,120,244,240, - 192,4,39,132,128,16,234,70,250,234,107,33,164,140,64,72,108,73,77,226, - 22,36,158,60,114,253,147,245,194,233,117,97,148,155,97,197,170,203,109,15, - 48,94,148,165,217,178,10,65,134,125,109,83,53,229,202,29,95,247,195,217, - 122,212,20,21,39,16,239,215,51,176,151,133,37,31,86,20,170,223,77,247, - 120,209,41,7,251,141,76,69,48,238,253,115,90,70,44,242,2,32,47,170, - 13,76,0,144,215,41,216,135,52,1,15,137,34,132,165,0,125,67,40,251, - 171,80,147,93,22,65,190,64,32,190,183,135,98,55,84,209,214,84,109,219, - 244,215,241,161,7,177,165,16,91,10,239,127,205,64,47,114,91,63,51,36, - 132,16,144,231,5,188,33,183,245,55,250,220,6,252,52,45,201,205,57,22, - 76,245,239,90,96,83,60,237,97,251,159,247,64,127,19,32,127,47,131,28, - 18,155,194,165,83,174,84,163,67,15,219,159,235,129,253,70,6,249,12,129, - 188,19,86,107,111,166,183,16,128,148,7,0,2,204,87,239,31,25,180,53, - 121,27,113,137,250,81,82,212,106,123,128,193,85,251,27,33,42,194,143,211, - 125,156,63,247,87,113,122,244,54,0,237,102,34,203,105,227,71,169,40,235, - 243,224,186,249,112,29,58,252,249,227,129,9,142,82,237,140,65,51,156,59, - 79,177,183,215,179,42,202,82,193,214,140,186,238,85,127,107,239,131,171,54, - 105,27,68,65,81,177,234,226,90,19,41,28,245,8,137,114,167,15,46,1, - 91,58,17,89,2,200,121,45,157,165,83,113,118,253,49,5,94,57,5,249, - 4,108,115,55,160,211,138,154,16,232,5,170,82,119,117,92,212,41,191,33, - 1,27,212,124,30,167,78,237,202,164,17,221,177,59,129,82,94,146,23,212, - 223,214,55,50,116,122,227,194,82,204,66,159,19,32,99,10,121,161,121,125, - 77,36,105,29,72,46,2,8,83,200,139,196,110,71,158,38,229,113,56,105, - 77,121,94,64,254,109,137,224,191,154,129,188,80,94,43,55,58,101,94,1, - 58,229,8,126,100,132,229,133,114,101,183,230,102,142,203,119,54,94,10,128, - 128,7,171,177,86,151,205,253,194,218,116,185,105,112,35,46,81,63,245,239, - 149,155,166,84,225,184,68,2,41,71,32,100,13,130,16,23,46,0,163,51, - 101,122,56,240,142,254,238,50,214,69,110,29,58,60,170,56,81,138,210,144, - 220,185,167,61,124,239,139,247,22,154,212,211,152,117,95,74,160,77,69,169, - 115,129,13,28,29,249,81,90,45,60,169,137,222,102,91,26,58,82,147,151, - 155,111,25,120,73,12,190,7,200,159,165,144,207,147,74,75,128,95,56,14, - 26,23,250,144,207,147,70,4,215,250,59,0,54,40,44,113,97,10,85,127, - 107,59,143,129,128,252,79,153,149,216,203,137,34,22,230,233,6,115,19,109, - 2,144,63,179,7,156,101,16,47,163,28,133,51,45,247,237,133,177,242,144, - 244,4,196,203,106,234,184,247,18,5,158,68,181,86,231,68,158,8,1,250, - 75,41,200,207,51,248,151,150,106,82,121,203,249,200,33,193,238,7,124,144, - 79,17,204,176,170,188,39,22,12,187,31,240,33,94,159,34,59,111,148,180, - 101,239,100,137,251,136,228,237,247,165,102,5,151,123,54,130,115,251,224,170, - 211,188,93,241,136,155,158,76,1,76,43,189,113,82,142,16,6,67,60,117, - 174,74,90,194,177,232,98,190,73,205,170,101,56,207,245,191,213,7,166,110, - 62,92,135,14,127,254,120,168,129,167,211,9,195,39,94,122,10,192,188,210, - 11,103,82,150,110,234,178,124,207,24,218,186,55,161,54,145,73,147,220,164, - 190,49,197,105,89,232,15,216,93,48,44,65,2,101,213,165,106,112,199,220, - 52,141,13,215,101,21,54,229,195,126,179,14,181,80,205,224,244,185,13,196, - 171,180,172,133,133,61,228,94,223,222,232,73,144,64,190,162,68,23,174,48, - 197,70,48,83,93,235,51,136,4,242,15,158,182,98,21,234,151,209,159,28, - 18,20,187,33,196,150,66,126,31,1,121,190,188,201,154,229,229,144,216,200, - 208,92,30,254,177,37,16,5,240,94,101,160,123,2,228,172,115,221,28,162, - 203,7,12,242,34,81,83,201,207,23,200,159,239,151,209,216,20,32,167,165, - 61,110,249,12,1,251,12,3,59,157,33,22,234,115,162,181,40,207,156,111, - 240,195,2,222,217,141,122,32,184,64,33,207,43,211,104,58,229,8,62,204, - 65,62,69,208,251,104,181,235,240,56,143,210,227,209,140,224,142,131,251,208, - 100,82,149,117,123,46,147,154,52,191,143,251,223,139,75,207,157,171,212,223, - 12,162,176,250,90,24,134,54,130,99,236,33,103,7,119,232,208,225,125,199, - 67,253,175,100,140,225,213,215,47,224,212,41,69,106,82,38,138,172,142,177, - 228,106,67,187,200,196,192,37,66,167,137,87,215,224,82,222,54,85,224,222, - 105,47,114,85,57,242,123,97,172,210,116,90,72,82,33,186,89,12,250,26, - 1,189,168,70,216,120,97,92,33,175,88,164,16,47,141,33,159,33,234,117, - 125,243,151,19,170,72,227,25,52,82,148,236,227,90,168,225,46,171,183,103, - 156,248,197,171,20,152,105,203,48,79,148,53,53,135,176,0,128,188,36,225, - 189,68,65,130,4,56,95,40,98,42,10,85,243,210,203,154,250,23,123,89, - 71,110,0,16,9,176,39,210,230,49,232,125,144,79,2,208,81,87,200,36, - 136,172,61,124,76,1,92,4,200,11,170,174,24,139,84,157,231,158,179,157, - 139,0,123,133,128,77,10,200,87,102,149,213,189,190,171,26,45,63,171,121, - 114,68,221,234,1,191,79,128,75,110,109,226,37,19,205,197,206,242,33,32, - 207,224,233,103,46,224,249,15,169,227,48,61,112,158,239,91,155,174,163,208, - 69,108,29,58,60,122,56,49,193,17,18,130,115,142,23,63,206,113,254,169, - 103,1,52,39,4,28,71,116,174,200,164,61,130,51,104,139,198,146,123,140, - 203,169,171,40,171,81,141,8,123,32,55,180,145,177,43,174,112,215,215,115, - 227,196,37,10,241,42,85,36,88,67,202,36,188,143,173,85,109,203,1,29, - 41,81,8,63,93,94,94,34,67,44,1,208,209,178,178,124,101,68,15,84, - 251,1,121,253,148,146,205,44,156,126,183,150,182,133,221,15,248,138,216,72, - 162,210,136,23,161,36,253,97,108,73,203,75,84,111,158,188,64,193,247,96, - 7,183,210,81,153,118,164,62,7,66,2,57,161,216,125,200,135,248,113,6, - 98,132,34,113,149,252,204,143,23,198,40,158,163,240,246,40,82,38,129,72, - 64,156,19,246,1,64,188,76,65,158,247,177,12,23,160,179,37,114,44,208, - 15,114,68,189,126,109,92,78,249,249,206,194,123,145,196,131,11,147,170,233, - 73,67,110,169,243,83,70,113,97,112,14,63,242,201,15,161,31,41,197,100, - 213,161,167,132,231,117,100,214,161,195,227,128,19,19,156,121,98,157,78,251, - 248,233,95,248,24,128,178,239,140,144,208,146,219,253,70,115,237,17,92,91, - 205,70,77,91,190,185,154,226,12,85,55,211,67,49,196,106,75,42,34,147, - 30,29,33,207,10,132,186,102,178,244,215,202,139,242,2,85,55,225,250,238, - 52,241,113,247,73,61,86,61,108,244,181,166,16,67,78,40,2,157,238,19, - 47,235,203,184,168,246,124,201,182,25,156,231,11,144,211,58,130,9,171,164, - 233,13,57,216,203,2,244,163,7,74,54,51,45,93,72,236,190,77,173,44, - 4,130,31,25,149,245,49,0,242,89,207,18,53,245,185,141,36,1,64,94, - 2,216,233,50,53,88,60,231,124,244,250,56,232,72,32,248,48,7,253,209, - 42,233,74,162,219,63,158,81,251,32,167,37,228,132,130,189,162,214,179,167, - 57,83,127,203,33,129,188,72,64,166,186,25,126,192,193,191,39,192,46,85, - 233,60,18,180,19,135,184,103,230,178,250,93,240,243,123,245,164,37,181,223, - 13,185,25,197,111,213,253,230,217,243,207,226,210,115,231,172,255,36,33,49, - 130,224,222,164,218,165,39,59,116,120,52,241,80,255,51,41,205,48,244,87, - 248,196,199,199,182,207,173,77,64,34,101,210,32,58,55,218,59,122,54,92, - 2,212,156,224,1,32,78,61,124,224,3,223,193,93,17,33,96,119,113,138, - 110,48,242,90,66,28,0,73,94,166,8,159,255,48,5,191,52,85,209,149, - 231,85,106,80,38,42,49,13,219,100,76,1,50,198,18,0,121,65,168,90, - 155,193,20,32,123,83,132,25,81,4,243,202,41,75,36,236,137,20,162,119, - 252,141,151,63,83,139,0,204,161,235,72,203,37,45,59,95,77,139,82,228, - 132,90,199,20,122,169,250,241,241,11,83,103,91,4,113,160,167,113,15,9, - 228,165,41,18,78,202,116,227,169,105,37,42,20,61,15,162,231,129,94,34, - 72,122,18,50,201,84,20,169,143,133,204,80,57,47,58,18,16,231,167,64, - 236,244,252,77,129,226,73,157,18,189,4,200,36,195,36,81,59,57,61,60, - 13,66,18,167,127,237,1,7,230,1,168,71,112,199,215,224,18,251,125,57, - 58,253,173,132,37,128,250,110,5,225,105,60,251,236,121,228,89,90,177,232, - 242,60,15,81,24,32,12,195,214,81,57,93,122,178,67,135,71,19,39,38, - 56,33,4,24,27,64,200,9,126,240,7,118,248,165,95,120,2,69,190,7, - 41,19,120,254,193,61,215,175,167,40,171,112,211,139,109,170,187,50,69,153, - 242,51,182,77,160,122,128,74,237,168,34,56,117,51,189,250,130,7,239,181, - 37,138,48,178,68,102,230,191,153,104,199,180,0,200,149,0,194,133,221,50, - 249,140,172,164,22,37,86,42,141,23,83,176,115,75,69,128,58,32,144,99, - 161,182,55,115,154,191,147,12,83,25,130,132,61,176,207,48,236,206,250,144, - 189,83,101,52,183,0,242,231,251,160,127,71,207,106,147,161,34,210,179,137, - 221,47,29,9,43,76,145,167,9,232,104,105,9,107,9,192,255,5,165,40, - 148,19,10,209,243,48,232,233,94,173,139,0,187,184,68,200,164,21,141,144, - 215,214,234,24,38,180,76,165,126,74,130,254,132,38,141,72,96,98,210,147, - 250,95,57,86,100,183,165,61,240,211,20,249,233,3,196,65,98,143,65,190, - 66,193,62,146,171,235,167,52,63,224,155,29,216,248,16,235,31,168,70,133, - 165,194,85,93,180,80,62,89,169,167,22,80,13,242,132,36,142,138,82,165, - 21,101,75,104,236,182,9,168,207,199,144,218,2,192,92,255,187,132,250,110, - 149,169,73,66,214,128,60,135,179,211,15,225,181,31,251,52,168,119,25,126, - 47,176,81,156,215,210,192,237,121,62,2,106,196,37,205,212,117,135,14,29, - 30,13,60,68,138,146,34,207,115,112,158,227,204,153,179,120,233,251,47,216, - 22,128,60,43,30,96,98,119,21,205,89,93,247,145,34,170,205,129,115,225, - 70,112,128,138,204,220,62,45,47,81,226,16,83,55,107,61,166,176,7,113, - 137,98,119,182,188,217,153,155,61,34,161,100,250,231,132,109,220,6,84,138, - 176,214,181,0,153,148,57,184,104,40,177,219,172,43,239,87,250,199,72,45, - 226,213,164,101,113,177,186,109,247,150,79,125,94,30,31,80,57,110,0,64, - 76,225,245,25,6,189,188,162,228,4,20,177,134,89,245,166,109,234,113,114, - 162,206,123,208,203,177,234,7,136,104,96,107,122,128,18,212,136,115,194,10, - 91,0,37,68,178,231,160,137,208,79,51,59,206,198,32,33,183,112,191,32, - 36,129,148,33,252,220,179,125,112,245,113,57,0,90,106,111,64,125,122,128, - 90,110,129,51,103,46,225,149,23,133,173,191,185,17,156,11,83,127,35,61, - 214,245,192,117,232,240,136,227,161,83,148,190,183,3,165,20,159,252,244,243, - 56,127,78,145,145,17,140,184,179,184,128,50,85,121,124,186,50,4,16,225, - 65,172,186,218,34,184,188,230,121,57,236,51,240,239,1,112,150,149,55,124, - 157,154,36,207,168,154,148,177,176,106,3,27,246,17,124,152,87,72,80,18, - 29,189,132,41,232,37,82,77,249,141,125,144,25,202,116,163,254,87,146,68, - 73,234,53,81,184,117,56,242,140,58,62,64,17,13,57,45,149,43,72,181, - 84,164,234,133,47,211,82,96,98,16,106,101,164,222,166,33,196,240,41,174, - 82,174,208,170,200,176,7,68,82,69,110,122,89,151,16,1,148,226,146,152, - 86,136,217,96,116,214,121,77,167,41,73,216,3,189,68,224,125,68,79,96, - 216,122,224,217,192,182,74,16,98,106,96,85,159,208,131,117,45,93,185,37, - 152,178,163,157,64,164,12,245,182,74,39,147,36,81,15,11,74,145,187,168, - 57,151,212,231,190,149,233,75,41,71,32,8,241,189,223,243,253,56,123,238, - 3,216,197,229,67,71,16,4,240,60,15,33,244,188,63,113,18,15,205,14, - 29,58,252,121,225,161,8,142,23,59,120,254,41,36,73,134,115,79,123,120, - 253,83,103,33,229,109,80,82,37,156,58,209,181,225,65,39,122,215,177,21, - 170,209,219,88,117,85,5,8,122,74,51,4,200,84,34,26,74,213,207,166, - 81,60,71,225,189,202,80,124,31,107,68,113,9,39,138,200,130,4,152,17, - 91,7,179,199,173,21,140,244,66,51,194,51,164,2,64,17,134,38,57,54, - 40,74,55,145,227,16,150,237,7,149,72,107,10,144,151,73,181,86,119,4, - 148,32,4,224,211,178,33,95,146,4,50,201,172,8,134,172,212,113,146,89, - 219,22,244,50,250,92,4,166,224,167,169,138,78,99,162,8,144,164,170,191, - 14,202,221,165,168,247,254,243,166,25,64,233,50,19,129,209,167,16,202,210, - 222,141,15,166,88,112,134,40,104,175,177,25,114,115,157,76,130,158,128,144, - 203,26,185,197,40,159,14,22,48,195,114,213,54,214,182,254,118,102,122,30, - 63,242,234,179,216,110,6,104,3,9,7,8,195,16,131,190,180,233,73,19, - 189,117,30,148,29,58,60,186,56,49,193,229,121,14,230,144,196,222,169,30, - 126,237,191,253,49,156,63,119,22,158,127,0,210,226,253,87,218,39,53,201, - 238,126,250,224,74,148,19,189,129,182,94,56,245,158,95,19,123,144,62,87, - 55,247,177,168,142,112,153,17,144,115,172,145,82,4,84,43,0,160,72,129, - 78,129,56,96,21,178,33,50,180,205,211,193,135,121,171,59,137,185,249,35, - 166,54,50,162,211,50,194,114,215,225,156,219,253,185,109,6,38,210,218,210, - 30,228,132,90,50,178,219,134,138,152,204,182,12,105,33,36,160,151,84,63, - 154,77,228,106,178,165,151,136,242,165,212,209,155,156,235,52,106,18,232,115, - 11,144,244,244,249,235,182,9,170,9,131,204,0,73,3,32,18,224,91,15, - 254,220,183,209,228,166,31,67,44,0,185,154,97,181,56,133,85,45,2,85, - 209,117,249,121,79,134,18,119,69,132,130,140,80,144,61,251,122,156,122,54, - 173,233,194,125,205,68,112,198,10,174,189,45,192,156,185,235,106,82,246,85, - 254,240,15,127,18,207,62,123,222,110,243,168,244,164,1,209,211,196,187,250, - 91,135,14,143,54,30,98,154,128,250,79,158,101,28,97,216,3,32,113,238, - 105,15,63,255,243,167,145,101,251,118,185,54,162,3,90,210,151,15,20,193, - 149,40,136,122,10,231,152,128,99,98,165,232,89,81,189,249,208,51,103,113, - 119,231,35,225,4,171,190,163,204,156,168,104,68,246,99,69,26,70,86,63, - 87,228,85,169,109,93,160,165,112,195,65,200,164,34,130,25,1,245,121,73, - 46,80,4,228,214,169,220,109,201,177,40,235,106,154,240,220,198,112,57,65, - 53,37,106,210,136,123,20,100,76,43,228,6,192,54,91,27,210,146,99,1, - 126,90,145,33,9,18,123,60,22,167,102,149,86,6,50,83,105,70,226,92, - 114,83,143,115,35,56,243,55,17,101,228,102,163,180,179,12,195,96,0,114, - 202,13,7,149,96,68,202,80,141,203,169,97,185,169,158,199,74,148,81,17, - 33,205,239,78,253,181,221,78,104,147,1,99,170,108,68,37,110,83,119,90, - 18,27,49,233,204,4,81,240,65,124,234,245,79,34,232,223,68,208,191,137, - 179,33,71,206,51,149,158,244,125,171,158,4,170,253,111,29,185,117,232,240, - 232,227,33,82,148,18,140,13,236,127,116,41,19,244,35,142,31,125,237,199, - 112,225,220,135,156,229,170,82,237,182,168,206,188,78,16,86,220,74,20,30, - 76,172,210,15,234,4,212,188,65,142,158,136,148,156,189,150,250,35,99,149, - 126,44,90,164,224,0,192,247,170,205,219,149,163,100,18,244,217,242,166,94, - 17,250,233,168,205,214,162,116,247,118,93,12,40,199,194,190,87,135,232,121, - 32,43,69,176,226,156,0,223,107,89,40,18,224,99,69,52,134,100,229,4, - 213,84,169,70,194,9,196,169,242,245,85,63,80,202,71,35,251,79,154,199, - 177,206,203,215,248,30,32,107,31,13,223,239,97,158,249,16,79,237,65,206, - 5,56,31,67,172,75,134,38,36,65,156,180,167,1,31,4,38,130,147,105, - 172,200,77,148,17,90,211,146,203,52,116,87,201,13,0,8,166,248,75,127, - 225,23,241,252,135,56,242,76,157,204,26,31,40,29,76,156,158,200,48,140, - 224,121,126,103,207,213,161,195,99,132,19,255,15,53,66,17,223,247,33,4, - 71,158,251,240,189,29,126,242,47,132,248,217,159,251,65,189,84,213,162,255, - 40,146,35,181,94,183,106,52,119,255,238,21,75,193,109,4,103,230,194,181, - 129,247,85,74,211,109,202,54,82,119,234,115,107,114,12,84,35,30,54,172, - 138,12,136,12,43,125,96,246,117,40,146,41,252,25,252,185,142,70,146,0, - 140,49,155,242,107,37,168,250,62,117,155,129,29,191,99,34,190,25,129,215, - 103,101,100,232,164,62,13,234,162,145,138,24,37,81,234,71,50,224,150,180, - 70,126,170,210,142,36,109,16,87,157,116,229,4,240,244,248,33,127,238,131, - 49,134,98,53,195,138,87,31,78,118,66,63,252,236,24,54,197,179,149,212, - 98,208,203,81,127,248,40,200,30,230,162,15,38,74,18,108,75,81,2,64, - 212,99,232,225,168,254,51,87,92,82,78,236,110,108,35,120,14,63,251,87, - 126,4,162,184,132,39,78,101,200,179,212,54,119,215,219,3,58,247,146,14, - 29,30,63,60,68,138,178,188,9,81,202,208,235,49,16,58,69,17,39,248, - 7,255,240,44,94,126,225,227,8,252,125,237,22,49,129,192,45,4,189,53, - 160,9,140,96,97,137,206,29,107,114,239,8,174,252,59,46,158,194,205,244, - 44,10,50,66,202,207,192,195,7,49,141,22,234,166,72,251,142,144,161,92, - 199,223,223,67,240,195,87,129,31,140,224,133,49,196,184,188,145,37,207,231, - 224,207,48,20,97,164,106,72,73,102,73,132,200,16,144,43,200,139,164,178, - 142,236,199,32,59,77,64,23,151,101,19,247,140,192,203,231,42,109,152,4, - 182,182,102,9,79,47,3,168,166,113,155,26,37,229,177,26,239,72,246,132, - 142,114,87,42,245,200,46,169,253,2,42,133,168,84,145,2,152,71,32,23, - 151,32,43,106,83,137,244,18,1,249,144,74,103,78,230,17,194,85,168,82, - 144,49,5,235,109,33,107,206,249,68,170,99,37,1,80,236,56,144,4,246, - 152,134,250,60,49,35,150,4,229,106,134,98,62,6,99,43,140,182,17,250, - 171,39,176,125,138,96,245,252,89,200,29,131,16,19,240,188,41,79,77,51, - 31,234,225,39,6,161,106,122,246,92,244,49,163,59,4,30,181,3,70,137, - 30,200,167,136,46,0,16,168,20,37,93,89,165,108,156,174,33,113,21,18, - 183,0,188,135,178,231,45,85,255,146,235,149,200,77,109,240,28,254,193,127, - 253,25,140,102,62,168,119,25,135,155,17,252,94,128,40,146,16,57,107,52, - 119,183,13,56,237,26,188,59,116,120,180,241,190,229,88,40,101,96,140,130, - 244,24,122,108,136,95,251,123,159,196,96,244,81,244,122,167,33,113,21,4, - 33,146,140,35,232,229,182,86,2,212,163,186,182,167,245,122,4,23,84,150, - 59,27,42,226,48,181,56,131,122,13,78,144,167,0,0,114,107,8,72,165, - 35,77,180,5,168,90,154,156,168,126,180,54,193,201,113,170,197,128,183,215, - 100,236,52,1,62,46,5,36,169,170,97,154,125,200,131,69,115,121,131,150, - 227,176,41,71,211,128,221,82,167,178,203,182,40,35,221,8,109,26,233,1, - 172,203,169,109,206,46,15,198,81,94,174,4,40,22,234,103,170,196,48,60, - 27,96,157,151,41,222,117,206,177,221,168,227,31,220,148,144,92,125,38,219, - 92,167,77,141,180,191,101,218,122,92,60,133,25,221,129,244,185,37,55,133, - 246,8,62,78,60,200,52,70,28,187,53,61,35,44,49,191,47,16,6,67, - 244,2,179,127,93,123,147,35,124,230,47,253,28,206,61,127,22,131,97,53, - 210,23,34,68,175,95,253,111,97,162,55,55,61,217,161,67,135,71,31,239, - 107,17,65,69,114,61,48,230,227,103,127,38,192,47,255,202,167,145,103,213, - 137,203,73,198,27,30,128,245,126,165,102,20,231,162,172,167,88,12,74,17, - 71,38,6,32,36,65,207,171,10,59,168,188,9,0,88,231,19,240,108,0, - 122,186,246,64,21,0,0,32,0,73,68,65,84,9,192,30,133,196,10,146, - 206,32,73,162,82,131,186,21,0,104,166,230,16,107,65,138,81,29,154,254, - 176,72,34,101,82,201,255,39,202,229,196,197,60,243,1,182,178,194,28,158, - 13,128,40,80,41,193,177,80,17,92,13,13,7,127,24,135,148,106,122,147, - 200,160,33,54,1,148,218,209,212,248,100,90,110,139,115,174,126,12,145,106, - 49,136,81,71,74,90,158,51,235,109,193,57,87,214,93,100,102,163,66,181, - 33,69,26,35,159,129,91,34,212,98,18,62,194,234,204,57,0,128,16,229, - 58,110,186,209,239,13,225,126,142,145,167,62,31,227,96,82,71,85,88,162, - 24,90,145,219,92,127,127,22,40,133,37,170,37,64,98,129,36,221,32,77, - 170,223,133,39,102,159,196,167,94,255,36,158,56,63,69,33,150,240,123,65, - 171,53,151,207,60,244,91,202,177,157,192,164,67,135,199,3,239,123,149,220, - 247,125,123,3,248,149,191,118,9,175,188,120,186,177,76,232,27,210,171,206, - 230,170,214,73,234,67,218,90,246,213,11,48,23,125,20,187,211,224,131,105, - 69,98,222,6,246,45,189,159,45,67,113,97,90,10,50,132,10,93,66,38, - 85,84,101,198,190,68,213,27,35,9,123,54,34,146,19,148,205,219,73,166, - 34,56,45,189,55,4,88,248,106,225,49,75,32,87,51,112,206,43,117,42, - 37,106,1,72,118,88,217,79,200,164,109,8,7,74,33,140,192,84,73,254, - 25,3,98,10,34,3,200,84,43,29,227,246,143,210,168,29,253,185,175,136, - 85,147,17,99,12,156,243,138,208,4,0,16,171,209,55,197,78,69,104,134, - 148,233,72,165,10,87,253,192,146,162,220,50,172,243,9,118,130,96,157,79, - 32,119,12,146,143,32,196,4,66,76,113,184,188,136,77,60,3,207,246,176, - 93,85,211,148,234,193,167,188,22,113,241,20,230,71,53,82,203,196,25,150, - 234,140,79,34,49,36,82,8,220,66,105,199,85,146,27,33,107,128,220,173, - 164,39,123,193,24,63,253,147,159,86,194,18,158,89,113,73,20,73,248,172, - 7,207,247,193,60,31,62,243,192,124,15,66,150,226,18,117,221,72,215,251, - 214,161,195,99,130,239,154,12,172,239,17,124,207,243,4,255,253,63,124,21, - 79,236,105,3,99,29,1,36,185,154,229,102,122,146,36,22,141,168,174,138, - 102,154,106,181,85,143,214,230,201,91,238,220,122,136,186,105,169,62,184,242, - 38,42,206,124,20,114,167,34,14,111,32,64,46,1,113,77,162,78,102,205, - 215,12,36,73,154,205,219,40,173,172,218,162,174,138,240,130,143,49,91,40, - 18,231,75,79,17,160,235,87,57,169,90,91,169,215,74,31,72,50,209,61, - 104,218,165,95,166,42,26,52,253,106,38,5,106,211,174,51,130,194,159,161, - 88,151,68,5,182,170,164,30,201,128,87,213,156,81,80,73,147,114,206,27, - 214,93,128,34,55,206,199,170,206,182,158,66,172,167,150,220,182,249,24,49, - 23,240,194,49,56,38,56,20,195,202,186,229,52,129,106,36,94,143,162,202, - 21,194,70,107,0,193,92,11,157,110,57,109,1,213,102,238,230,65,159,193, - 95,124,253,191,192,207,252,213,215,0,192,146,155,217,175,113,46,1,212,228, - 238,30,225,181,214,0,69,108,66,28,237,178,210,161,67,135,71,7,239,43, - 193,41,53,101,41,211,151,25,199,39,127,244,25,252,221,95,127,29,123,167, - 46,64,224,150,142,222,66,135,220,28,219,164,218,223,10,237,35,115,82,250, - 100,227,53,222,159,56,110,245,198,45,67,77,36,48,53,184,136,15,16,243, - 41,86,236,46,200,140,34,26,42,178,72,184,138,130,200,152,34,124,170,233, - 207,104,76,138,249,158,150,222,47,203,122,153,17,163,72,146,180,187,129,104, - 66,145,91,134,185,83,243,35,227,121,165,225,251,40,136,156,129,172,40,214, - 185,78,107,38,153,18,131,100,74,232,99,163,56,179,252,120,129,85,63,0, - 157,42,2,3,96,151,93,241,80,145,83,54,40,201,119,70,32,48,197,34, - 30,128,47,213,177,228,51,245,57,50,198,64,100,0,177,158,0,51,245,117, - 201,39,234,65,101,39,136,173,179,9,49,193,58,61,135,109,62,6,207,246, - 32,49,195,126,50,70,202,207,84,92,74,170,48,182,108,42,26,31,74,69, - 224,76,187,147,132,209,17,230,160,198,242,13,87,161,72,237,150,254,89,234, - 135,165,164,33,42,145,114,132,143,191,248,243,182,231,205,236,211,120,79,22, - 169,190,150,34,196,32,232,129,139,62,122,131,73,163,53,0,232,166,7,116, - 232,240,184,224,125,175,193,185,233,155,96,168,110,94,191,250,55,127,2,191, - 252,43,159,198,147,123,30,146,188,128,196,204,54,128,151,141,224,139,90,251, - 128,91,252,112,35,56,149,214,92,213,186,0,242,240,9,8,17,218,58,79, - 85,100,146,226,32,86,55,165,29,40,130,141,150,234,207,102,54,77,105,96, - 210,138,109,72,56,41,201,202,109,144,214,83,5,238,7,35,95,73,234,213, - 1,140,27,132,104,136,8,80,82,124,183,79,111,116,54,83,13,222,61,217, - 144,242,39,61,105,143,141,172,40,70,126,10,73,203,84,162,21,215,104,84, - 254,38,77,47,207,120,127,212,56,158,202,113,234,232,13,128,141,218,12,14, - 197,16,251,137,110,149,32,163,134,0,168,13,65,200,236,103,120,44,172,143, - 233,109,253,32,244,30,148,98,114,121,36,177,65,158,193,71,63,248,147,248, - 229,95,253,49,188,252,253,103,112,248,238,174,82,119,11,130,0,189,62,69, - 24,69,232,247,37,152,239,97,208,111,54,231,119,233,201,14,29,30,47,124, - 87,82,148,190,239,163,215,83,170,202,193,96,132,190,71,240,223,253,253,15, - 226,151,126,249,175,163,215,123,222,33,178,216,249,81,56,110,118,151,66,136, - 48,104,170,25,77,223,146,105,244,38,81,94,177,234,58,19,94,7,0,208, - 129,163,12,28,169,168,100,17,15,16,230,229,77,222,138,41,90,122,220,216, - 68,165,91,215,121,0,102,166,2,57,203,73,195,88,14,105,184,86,85,174, - 234,144,245,182,88,140,167,77,163,99,187,173,180,98,134,188,10,6,21,79, - 73,23,110,251,1,31,143,65,150,0,209,167,225,229,170,198,184,66,6,44, - 106,54,84,108,5,50,163,160,88,96,156,150,79,13,99,150,168,116,38,91, - 85,90,23,134,193,0,222,64,96,39,8,104,52,132,16,85,114,228,153,42, - 28,206,66,134,80,62,137,190,126,128,72,194,15,234,37,82,248,233,61,39, - 155,162,40,142,155,245,134,154,99,73,53,106,171,54,115,135,248,200,7,63, - 141,191,241,183,126,17,47,126,108,15,155,229,45,156,122,186,90,235,75,18, - 10,70,135,21,97,137,231,177,74,244,214,145,91,135,14,143,31,190,107,53, - 56,41,19,100,58,93,200,121,14,175,183,196,127,249,223,60,131,191,255,119, - 255,51,72,132,136,130,235,80,209,88,164,127,230,246,71,221,184,98,148,66, - 19,227,118,210,76,89,249,180,143,53,62,128,34,207,145,145,61,128,174,0, - 4,144,105,172,45,195,66,0,79,0,0,22,120,6,98,187,2,35,43,132, - 215,149,219,10,251,184,218,142,73,205,1,0,153,44,96,134,131,47,161,83, - 144,38,5,24,167,101,221,236,44,3,217,69,136,131,68,69,80,243,8,116, - 180,84,4,41,149,40,99,164,107,133,156,143,193,249,24,125,58,195,78,204, - 177,90,168,232,104,228,51,107,29,38,233,41,69,42,6,73,160,172,182,244, - 8,158,217,83,138,128,194,140,168,122,155,38,32,192,169,245,145,9,216,106, - 133,85,63,64,161,201,118,62,13,213,190,87,79,160,79,103,88,231,28,235, - 124,130,209,54,130,92,205,64,166,90,60,66,38,0,215,132,101,234,116,124, - 92,186,154,204,5,232,37,96,181,214,106,80,93,171,220,230,99,72,204,80, - 224,89,200,222,4,161,124,18,113,124,6,9,189,136,29,95,130,15,166,96, - 222,57,80,114,5,82,78,176,74,22,149,52,244,120,68,192,179,33,68,206, - 64,105,130,136,234,9,1,241,194,233,127,83,117,55,66,98,0,223,4,112, - 25,192,21,64,215,111,155,125,110,103,0,121,198,146,219,135,95,240,80,136, - 101,99,28,78,16,4,152,206,2,120,61,253,224,193,198,160,108,216,32,183, - 186,107,9,231,71,27,9,116,232,208,225,209,192,119,141,224,8,9,245,141, - 161,140,110,206,14,24,126,234,63,89,227,239,252,237,191,9,41,95,6,48, - 131,74,49,189,135,146,204,148,112,160,148,124,55,145,164,101,157,143,250,28, - 97,168,167,78,59,67,47,227,184,208,55,81,35,27,87,40,138,11,216,205, - 191,7,49,83,55,168,194,201,17,90,113,197,140,168,118,0,26,84,250,219, - 34,45,161,167,83,229,252,1,84,27,179,1,45,225,159,209,154,23,99,29, - 74,10,111,82,149,35,63,109,206,108,3,212,248,27,160,97,224,92,233,149, - 227,227,178,22,167,211,142,114,44,48,58,155,65,142,165,34,172,69,15,59, - 65,64,86,229,185,244,105,153,130,43,200,172,28,127,195,150,21,63,76,119, - 25,0,40,210,82,169,90,79,77,2,64,28,159,65,49,28,162,24,14,65, - 250,28,28,51,43,253,87,243,2,85,253,44,236,49,24,1,208,114,121,5, - 0,16,13,199,160,108,132,195,149,192,80,159,162,21,151,200,165,30,181,116, - 27,2,11,0,87,81,62,248,180,167,53,63,242,193,79,227,215,126,245,21, - 124,248,5,15,30,157,32,207,82,59,200,20,208,174,53,58,42,235,121,212, - 78,12,104,3,231,213,40,187,109,114,125,135,14,29,30,45,124,23,205,244, - 148,156,221,168,247,38,108,129,94,63,197,115,31,126,30,191,242,215,46,225, - 55,254,209,47,225,19,47,190,0,96,138,208,55,61,81,174,146,210,53,203, - 117,17,192,60,209,123,116,130,36,161,72,18,117,26,163,190,175,124,9,229, - 18,18,183,16,249,77,39,147,213,150,32,30,61,137,193,77,9,177,82,55, - 179,233,211,189,70,141,10,40,163,58,190,245,192,183,158,18,154,68,85,69, - 39,145,1,194,140,84,29,74,204,250,142,90,113,187,241,42,4,51,242,25, - 24,91,41,17,200,169,50,50,53,228,146,112,82,241,131,148,19,96,49,46, - 151,91,241,16,224,99,176,69,25,241,145,208,81,43,214,234,106,134,208,220, - 99,48,233,82,57,150,213,229,245,126,93,5,168,39,231,192,140,194,11,14, - 208,167,18,114,199,224,141,180,154,19,51,112,204,48,79,56,34,125,252,125, - 86,110,207,52,110,171,89,109,106,176,105,146,221,128,250,140,3,76,38,23, - 1,0,203,165,122,64,217,59,59,66,44,134,136,130,194,182,7,168,200,237, - 54,4,110,129,224,27,122,203,183,0,242,22,64,238,150,215,73,142,0,121, - 14,127,253,23,127,14,127,227,111,253,34,46,125,223,135,1,0,113,114,7, - 126,79,157,215,176,63,66,16,4,136,130,73,197,177,132,139,190,77,77,154, - 137,221,128,242,156,172,167,39,59,161,73,135,14,143,62,142,151,239,157,16, - 66,148,79,187,156,115,68,81,132,229,102,10,112,1,130,5,206,61,61,193, - 95,254,185,11,184,112,254,85,252,214,63,189,128,255,247,95,254,107,0,230, - 38,181,128,43,237,143,2,15,113,77,80,97,106,112,234,166,7,235,29,40, - 69,168,39,59,223,133,196,21,36,185,73,131,170,27,91,40,159,196,244,9, - 142,213,215,126,23,189,231,181,32,131,50,12,197,12,219,252,16,224,33,70, - 128,138,190,116,111,156,75,92,254,220,7,231,30,232,12,192,66,215,198,82, - 96,158,13,49,235,229,74,153,136,12,163,169,0,64,1,57,197,58,47,9, - 101,67,25,176,81,99,123,214,57,199,200,215,195,77,181,58,145,76,212,62, - 19,78,84,74,52,76,33,39,4,102,11,134,223,216,1,48,158,170,20,91, - 225,207,128,45,48,30,244,80,108,41,24,116,191,156,222,230,106,189,4,112, - 10,59,1,72,202,212,200,160,221,25,236,250,237,82,119,185,101,224,122,216, - 232,152,37,0,87,6,202,163,83,20,128,0,159,205,176,19,0,141,134,200, - 87,213,26,229,44,100,88,235,194,223,154,83,20,56,133,113,160,197,42,197, - 117,132,189,187,72,51,247,243,213,102,200,252,50,128,51,8,67,1,193,119, - 88,111,148,146,50,78,61,16,178,212,45,1,183,33,113,11,4,239,1,184, - 10,144,235,118,191,189,96,140,44,93,65,202,17,62,250,193,159,196,79,253, - 244,207,227,149,23,5,206,158,219,67,33,150,200,179,212,138,74,114,158,33, - 77,83,12,134,67,75,110,6,147,49,109,168,38,123,189,142,200,58,116,120, - 92,241,93,33,56,74,169,37,57,198,24,178,172,192,48,58,5,206,37,182, - 219,53,40,217,34,32,9,94,124,37,194,175,95,250,113,252,232,235,23,241, - 217,255,253,11,248,227,175,126,9,161,63,68,146,223,128,185,9,198,105,1, - 55,106,3,82,155,162,52,233,38,63,239,163,64,142,29,161,214,89,94,213, - 241,212,44,176,179,179,103,240,218,143,255,56,128,29,54,171,45,198,207,62, - 5,33,0,74,151,144,124,4,14,129,193,6,216,226,16,208,124,182,136,7, - 24,111,25,136,35,74,89,33,195,24,90,72,66,4,56,95,3,124,140,49, - 0,158,41,194,25,163,135,162,127,26,100,38,176,211,117,56,211,0,221,135, - 192,14,20,216,173,65,250,167,176,206,15,49,70,41,6,1,153,0,201,14, - 161,137,56,147,0,152,229,0,100,37,202,43,252,25,214,136,109,125,15,80, - 66,150,62,5,86,189,2,35,120,224,179,153,90,79,167,7,141,171,191,92, - 3,132,173,33,214,83,16,198,192,135,5,118,130,96,60,163,118,2,128,199, - 57,228,150,129,140,21,225,141,7,61,240,249,4,114,235,97,75,37,8,56, - 248,134,216,218,27,199,12,34,3,104,168,210,152,28,51,12,217,4,0,135, - 0,208,27,76,240,236,179,33,126,250,167,56,254,240,139,95,192,237,131,91, - 250,179,153,170,127,217,165,198,119,200,235,113,68,65,1,130,57,132,142,200, - 9,46,3,88,162,23,46,145,165,138,216,210,68,130,202,61,132,189,231,241, - 147,63,246,163,248,212,235,106,182,91,208,191,137,56,185,163,190,31,189,0, - 30,157,96,40,223,3,40,192,35,31,158,231,129,105,127,73,215,111,178,26, - 185,233,33,174,93,180,214,161,195,99,137,239,10,193,185,160,148,162,215,243, - 192,57,7,99,4,131,129,122,162,167,126,1,186,161,40,130,27,248,161,31, - 242,113,225,252,171,248,157,127,126,17,255,226,95,125,30,201,193,6,101,122, - 178,94,235,40,159,184,205,147,121,175,79,17,132,3,96,125,128,254,32,67, - 156,94,5,144,224,236,108,132,191,252,19,31,197,235,63,241,41,124,252,35, - 57,136,160,200,119,51,44,146,21,198,3,137,197,122,134,233,104,142,13,128, - 33,85,105,188,117,78,48,152,1,216,99,224,188,0,219,174,192,185,54,19, - 70,4,9,128,147,9,40,14,176,226,33,70,58,181,201,249,24,59,49,7, - 166,25,250,0,228,45,10,241,196,24,132,173,109,3,244,6,138,84,1,69, - 122,164,127,10,171,197,33,38,0,162,161,132,128,138,120,205,237,148,115,14, - 144,9,226,96,141,112,70,161,8,75,99,241,36,56,117,235,69,68,247,46, - 220,105,124,6,174,156,31,80,121,105,33,38,96,108,173,82,167,125,142,34, - 221,3,195,93,236,4,193,72,55,113,239,120,140,62,31,195,131,138,44,111, - 60,73,176,23,13,32,255,255,246,238,62,198,178,187,174,227,248,231,156,115, - 239,157,251,124,103,186,187,93,219,110,31,179,52,197,180,242,164,160,73,145, - 182,36,96,147,74,80,130,53,32,164,127,16,162,161,242,135,33,26,255,64, - 168,241,15,76,140,138,70,162,213,96,69,36,37,160,98,37,33,198,66,172, - 144,72,16,75,136,165,46,77,97,151,22,104,119,183,237,204,125,126,56,79, - 254,113,206,239,220,115,31,102,231,20,118,123,183,191,190,95,73,51,247,206, - 252,230,204,153,189,183,231,51,223,223,249,61,168,155,140,70,205,85,214,110, - 117,71,227,97,73,245,78,71,113,186,139,94,84,74,66,213,43,151,116,211, - 79,31,213,111,95,81,210,77,15,196,250,215,7,158,208,183,78,156,72,43, - 236,228,245,237,116,146,239,9,163,129,60,183,169,48,152,119,77,87,43,103, - 53,153,153,63,88,198,154,78,98,57,58,162,217,164,170,218,86,73,47,191, - 254,205,186,245,141,111,208,43,111,186,82,135,175,56,43,127,118,82,243,77, - 111,147,112,115,156,177,6,218,86,163,217,84,187,36,249,165,114,118,223,173, - 90,173,101,43,149,56,21,111,97,96,9,225,6,188,120,93,240,128,51,76, - 37,151,231,122,77,117,118,148,252,215,218,211,85,31,184,86,111,121,219,53, - 250,230,255,124,87,31,251,216,39,212,31,149,52,158,154,101,189,182,53,15, - 187,228,194,105,238,169,72,210,176,223,211,96,212,87,201,249,142,142,30,146, - 222,249,174,119,234,245,63,127,157,94,253,83,85,205,198,143,105,54,72,170, - 62,183,186,163,104,34,197,211,174,218,141,221,108,173,196,129,36,183,235,170, - 174,72,161,164,90,40,57,189,158,194,118,59,217,246,37,234,168,85,158,15, - 98,145,148,12,185,47,39,225,230,244,28,169,121,73,118,27,113,112,52,157, - 47,151,134,91,185,87,213,180,153,156,255,174,55,212,149,97,77,147,116,205, - 74,191,179,45,247,106,201,81,82,245,134,195,100,227,211,82,221,211,234,246, - 170,139,156,158,35,119,167,43,69,161,228,196,106,148,46,83,84,113,53,116, - 227,228,151,202,157,67,94,185,87,213,153,67,174,14,43,74,86,35,57,218, - 144,119,242,236,66,155,214,176,166,80,73,21,55,200,93,232,227,145,167,208, - 95,157,66,17,52,155,154,134,174,154,158,180,23,122,58,212,116,21,168,166, - 208,15,228,233,89,93,117,213,33,253,234,187,95,167,91,111,187,77,223,248, - 223,147,250,207,7,31,210,23,254,253,11,234,245,99,117,187,93,29,58,210, - 84,73,53,5,51,101,213,85,28,159,214,120,54,76,239,221,165,43,185,168, - 170,234,214,149,89,197,118,252,250,80,229,202,150,252,217,247,37,109,101,239, - 139,122,173,165,102,188,167,169,183,45,183,156,116,99,123,110,83,78,53,86, - 35,93,138,43,31,110,203,163,38,9,55,224,197,237,130,7,92,126,89,163, - 114,57,185,92,135,193,72,205,218,37,154,121,51,245,186,79,73,146,26,173, - 150,228,57,58,254,178,231,116,197,149,87,233,246,183,252,129,190,242,229,239, - 234,7,223,15,116,234,241,39,116,242,123,39,53,157,60,163,103,159,59,146, - 29,111,171,182,35,47,136,53,27,69,170,212,203,122,197,141,47,211,239,126, - 240,50,221,252,134,227,234,52,159,86,232,7,114,131,93,213,157,80,245,86, - 85,123,125,165,17,146,84,36,163,176,35,71,187,218,30,207,36,85,21,110, - 119,53,146,171,86,167,163,176,155,180,113,122,142,226,244,66,215,175,135,170, - 187,59,26,186,158,26,245,35,146,158,81,223,239,168,49,72,239,175,141,36, - 167,126,86,189,35,175,146,171,174,162,168,147,85,108,103,157,154,142,12,198, - 242,219,210,161,176,33,41,82,212,223,150,123,229,211,82,79,138,134,71,228, - 109,159,150,148,174,19,57,148,74,117,205,87,91,217,150,186,233,60,182,86, - 218,139,54,138,28,53,100,6,179,56,26,69,82,93,146,94,22,201,173,181, - 20,141,7,185,149,70,182,53,14,35,53,202,61,121,123,71,229,183,39,58, - 20,54,228,54,99,69,227,129,220,211,131,116,159,188,245,115,242,106,97,67, - 187,26,43,142,59,122,70,35,153,49,162,97,250,200,220,123,107,166,131,75, - 14,165,21,89,217,43,169,86,113,228,151,34,69,225,64,158,43,221,112,211, - 37,58,122,236,82,253,194,237,111,215,187,190,117,139,228,93,171,67,71,78, - 105,60,60,147,220,179,171,212,84,14,146,251,171,229,74,73,59,173,146,46, - 191,252,70,93,123,245,47,234,154,227,87,233,138,99,37,93,119,221,85,186, - 252,138,146,6,147,190,20,247,52,157,132,11,247,217,204,52,128,190,46,83, - 69,210,214,214,78,58,21,32,84,185,114,88,158,59,74,187,37,23,119,10, - 88,55,37,32,255,94,38,244,128,23,15,39,142,227,245,227,162,47,128,228, - 190,92,242,227,242,115,228,38,147,137,130,192,87,16,132,154,164,155,141,78, - 38,19,205,130,72,97,224,107,50,78,62,55,157,174,46,217,85,118,235,170, - 212,221,133,21,224,205,58,130,146,228,6,233,192,13,255,172,102,131,100,106, - 128,19,117,53,237,15,180,229,37,21,75,59,13,33,103,43,105,235,186,243, - 209,156,38,160,12,115,31,205,241,146,121,87,181,176,145,220,87,91,210,159, - 38,171,233,215,60,87,227,48,82,53,56,148,29,127,107,48,145,223,158,168, - 233,166,63,175,211,85,185,187,167,110,43,86,171,236,201,105,132,242,15,63, - 171,242,233,235,228,252,176,167,238,87,135,106,252,220,177,100,180,99,202,108, - 75,99,206,33,59,223,211,3,125,191,239,105,251,120,35,253,55,79,187,11, - 211,128,171,165,23,239,173,193,68,211,102,53,251,93,205,239,233,120,125,53, - 154,129,156,158,163,97,83,170,246,219,26,123,195,44,40,205,49,243,247,223, - 228,238,168,239,108,103,247,222,246,66,79,181,198,165,170,151,166,42,85,119, - 178,21,249,93,111,62,202,51,8,146,215,103,50,25,43,244,3,249,225,234, - 212,132,114,174,202,90,110,59,158,36,239,133,201,120,188,240,190,136,227,90, - 182,105,169,148,44,0,96,238,183,229,187,36,165,245,147,185,37,157,183,234, - 205,117,217,241,27,216,164,23,172,139,210,112,93,79,190,239,203,243,28,133, - 97,114,193,174,86,171,154,164,183,92,170,213,154,134,35,71,101,47,144,20, - 104,28,104,101,119,229,233,116,170,56,174,169,165,167,228,151,183,84,42,229, - 86,231,240,218,10,35,169,212,24,41,152,132,138,74,59,75,85,220,68,177, - 219,209,86,75,114,163,228,162,58,136,164,70,105,79,177,182,229,198,123,138, - 162,109,109,13,204,61,160,170,252,246,68,229,94,242,113,32,169,125,246,201, - 172,11,114,148,182,50,65,50,244,219,73,69,152,94,212,123,67,71,146,167, - 208,149,154,233,243,35,74,186,8,181,45,141,189,161,154,61,71,123,222,97, - 109,247,159,81,148,238,22,51,126,166,165,178,164,116,121,70,149,226,93,249, - 105,215,236,112,80,82,28,182,178,144,53,1,91,87,164,193,209,182,142,169, - 167,129,22,195,77,74,134,243,143,66,41,152,244,212,78,187,75,163,104,91, - 174,187,183,80,109,70,221,142,70,114,85,239,71,154,54,29,197,131,197,112, - 51,199,90,214,242,34,197,146,182,189,80,113,201,149,147,78,15,136,226,228, - 31,195,92,238,205,230,161,38,228,188,114,18,100,147,244,77,80,246,230,11, - 30,215,107,82,148,230,122,24,213,229,149,71,242,202,201,215,199,147,233,202, - 123,35,169,64,231,59,114,231,71,74,150,189,210,190,225,102,208,53,9,216, - 227,5,173,224,150,249,190,175,48,140,21,134,73,215,165,185,192,5,129,175, - 193,96,176,240,57,243,23,251,242,18,78,102,245,247,124,245,102,46,98,146, - 20,165,247,240,76,37,231,6,79,107,183,95,147,27,157,202,218,184,233,178, - 37,209,100,87,59,135,103,10,159,91,221,144,211,112,182,118,115,225,151,116, - 61,74,82,171,52,31,229,216,15,246,212,42,109,107,184,166,183,175,145,94, - 229,171,254,83,89,21,231,57,243,185,108,238,78,90,73,181,119,21,236,94, - 45,61,230,105,24,60,165,230,177,163,26,166,5,144,25,17,185,44,27,68, - 226,118,23,194,173,55,116,178,243,113,43,201,73,213,2,87,113,53,214,96, - 208,85,59,221,79,207,84,115,166,178,52,193,153,191,127,103,194,114,20,118, - 178,234,45,114,183,21,187,29,245,67,87,77,175,35,175,153,164,180,169,222, - 204,202,32,235,152,215,215,84,238,121,97,84,87,163,30,103,221,136,203,21, - 190,180,254,125,145,223,137,96,249,125,97,130,77,210,5,171,220,12,42,56, - 96,179,54,30,112,134,9,186,124,200,173,187,160,73,243,139,154,177,238,34, - 102,152,42,33,154,14,178,144,219,237,59,58,84,123,42,107,179,215,159,232, - 112,115,62,250,112,119,47,119,177,77,231,195,57,179,197,174,74,183,18,169, - 22,184,43,33,22,166,35,8,221,180,168,52,195,231,199,195,146,182,188,179, - 89,119,168,180,24,114,134,231,244,20,183,99,141,162,221,228,126,223,160,148, - 76,74,63,218,212,164,213,91,216,115,109,153,169,60,205,96,150,222,208,81, - 179,153,180,155,4,241,124,56,127,37,57,175,182,219,85,92,141,229,76,156, - 133,224,54,93,151,243,234,110,49,80,123,67,71,78,245,234,244,31,34,233, - 158,172,123,29,197,218,201,194,205,241,90,42,213,93,213,74,238,74,192,37, - 21,251,252,117,78,62,174,206,203,203,191,142,165,82,121,223,247,132,121,63, - 120,165,178,194,192,95,152,219,150,239,146,204,15,38,145,180,16,110,23,98, - 157,73,2,14,216,172,23,188,139,114,153,217,120,179,82,241,52,155,73,233, - 181,71,147,137,22,46,138,97,84,151,231,142,214,30,99,126,225,154,87,110, - 230,123,179,11,163,154,217,240,137,206,142,20,5,243,92,143,213,85,144,91, - 122,41,44,77,228,5,223,75,158,184,201,164,239,184,178,24,40,254,76,10, - 115,61,163,38,56,166,227,35,218,242,206,106,60,158,15,134,9,70,45,53, - 90,177,220,40,208,64,59,138,38,187,106,187,93,77,202,151,201,137,118,149, - 223,243,188,233,74,110,236,72,114,20,117,219,105,79,231,64,94,103,71,193, - 238,206,66,117,54,244,219,242,39,158,218,141,88,189,161,163,118,35,214,89, - 167,166,166,211,209,36,136,85,170,74,195,32,23,78,238,142,220,236,215,220, - 85,47,234,72,163,228,188,27,78,172,73,217,81,92,77,87,39,25,207,231, - 180,57,91,187,138,204,4,238,209,182,228,74,78,186,83,65,228,110,171,158, - 85,111,243,31,101,194,45,138,107,170,214,28,73,129,202,97,77,206,210,196, - 233,229,215,105,217,114,229,87,42,121,170,86,107,154,76,198,217,235,158,87, - 222,106,100,93,152,203,193,102,30,155,46,201,11,25,110,0,54,111,163,21, - 156,180,56,240,36,12,163,181,93,150,210,226,95,250,203,221,89,249,251,42, - 201,199,197,9,187,211,200,207,142,17,133,3,185,94,83,179,97,82,73,153, - 170,46,121,252,244,194,113,187,221,211,58,212,158,234,217,222,86,214,141,185, - 206,120,88,202,150,168,202,126,47,119,91,195,129,163,122,187,173,81,175,167, - 122,187,45,39,234,46,28,167,211,60,173,96,52,146,27,239,169,81,159,105, - 60,73,2,220,220,11,171,43,210,32,218,81,251,236,147,234,29,73,6,173, - 152,181,31,253,73,186,211,182,187,45,183,18,41,154,205,171,5,183,18,101, - 163,27,229,166,213,99,171,169,105,127,160,90,35,80,228,38,97,181,252,59, - 117,154,167,213,237,37,169,221,40,237,105,24,108,171,25,116,53,40,45,134, - 251,120,124,36,59,206,48,86,86,189,69,165,109,149,171,201,121,148,91,157, - 149,234,109,203,45,103,243,204,204,107,108,228,95,235,34,76,53,151,124,239, - 252,253,176,238,189,144,124,126,94,181,37,31,231,211,28,46,84,192,81,193, - 1,155,181,241,128,203,139,162,72,97,24,102,131,79,204,69,48,158,133,89, - 72,73,58,240,47,125,115,33,205,139,115,27,161,78,35,95,179,233,60,216, - 130,73,168,118,99,162,65,119,126,161,204,135,221,40,246,22,70,96,174,19, - 187,29,57,81,87,177,187,218,117,152,236,127,183,187,242,253,110,180,167,230, - 236,84,246,220,116,89,26,181,106,178,173,75,112,38,202,186,29,37,41,114, - 182,229,76,214,239,58,158,133,81,174,194,58,215,249,230,157,43,196,243,204, - 49,205,239,106,6,156,228,187,39,91,237,164,138,50,1,151,15,183,101,249, - 176,139,103,225,202,107,151,255,90,254,125,32,173,190,23,150,43,190,229,96, - 75,30,207,167,2,92,200,1,37,4,28,176,89,23,85,192,73,243,144,147, - 180,80,205,73,235,47,112,203,214,117,91,73,82,185,52,210,108,148,91,5, - 197,75,239,227,12,250,170,123,139,91,159,228,131,78,74,166,24,212,211,105, - 7,163,56,185,32,78,7,139,251,170,153,0,51,23,123,71,187,170,52,27, - 89,187,173,102,178,172,216,108,48,212,225,230,25,61,51,184,52,187,239,231, - 159,249,63,29,186,114,91,207,62,185,39,103,107,87,141,250,76,195,81,69, - 141,250,76,193,153,249,77,190,113,235,39,86,130,173,23,205,239,249,229,151, - 203,50,150,195,104,63,135,155,103,244,108,111,75,135,218,211,133,123,144,59, - 219,181,172,130,205,135,101,145,112,147,164,106,179,181,208,53,153,191,239,37, - 41,251,99,38,47,12,253,149,32,52,159,91,87,221,47,219,114,203,154,70, - 254,154,17,146,23,102,48,201,126,8,56,96,179,46,186,128,203,91,14,187, - 228,227,188,170,147,180,112,225,204,155,175,35,56,83,20,85,86,46,164,193, - 120,241,2,153,239,198,148,148,117,97,26,227,89,172,56,92,220,115,204,159, - 172,159,20,45,73,229,170,43,127,18,101,93,118,203,252,73,36,55,72,42, - 166,157,214,88,123,253,137,70,189,158,26,205,88,195,193,250,234,108,225,252, - 157,67,231,252,122,88,239,104,219,155,87,173,81,105,125,37,103,206,111,221, - 239,98,206,175,223,31,168,177,115,44,123,158,63,158,95,170,169,82,114,179, - 65,62,146,84,113,66,213,59,135,179,182,203,131,58,60,207,93,217,126,102, - 249,245,201,135,224,186,118,203,93,156,203,42,149,74,214,126,83,43,147,16, - 112,192,102,93,212,1,103,152,209,150,249,139,224,186,191,242,165,197,191,210, - 243,204,5,213,92,240,204,177,150,131,206,24,206,230,3,90,130,32,204,166, - 27,24,227,217,226,63,91,173,226,100,33,88,175,181,23,218,212,42,78,246, - 220,60,150,22,239,255,25,221,221,245,93,160,253,254,96,229,115,83,239,114, - 109,133,63,204,194,103,191,16,147,180,18,180,102,142,90,35,157,26,96,230, - 11,14,124,79,245,90,59,59,183,129,239,101,225,103,66,91,146,156,106,67, - 37,141,21,168,182,48,185,222,221,106,202,117,198,170,108,37,149,93,190,187, - 120,57,224,202,229,242,194,74,55,70,24,70,217,235,183,28,132,243,54,243, - 160,59,215,251,32,121,188,153,185,109,4,28,176,89,47,138,128,203,203,79, - 45,144,230,129,37,205,7,11,248,190,191,118,224,128,249,124,50,209,220,93, - 8,189,228,227,250,123,126,210,254,195,217,147,209,124,181,236,163,148,78,73, - 216,106,170,136,112,150,219,73,60,157,213,109,130,209,172,238,17,79,134,242, - 75,53,5,51,79,142,59,145,87,42,43,152,165,131,40,42,139,231,99,170, - 169,252,202,32,249,137,211,11,109,157,80,177,51,15,69,39,222,203,206,59, - 31,232,179,216,83,232,175,174,52,82,171,56,154,197,94,22,108,198,242,92, - 51,105,117,112,199,243,25,216,145,127,221,178,223,105,233,121,158,9,52,179, - 180,214,166,150,216,34,224,128,205,122,209,5,156,97,46,122,166,2,120,190, - 23,176,40,138,210,109,125,194,108,217,48,163,200,125,191,229,193,13,38,248, - 242,147,146,243,243,184,146,175,205,47,234,221,177,171,86,26,136,227,254,188, - 106,155,4,97,54,29,194,132,138,9,171,89,176,127,151,104,62,216,202,149, - 75,230,199,72,39,75,15,71,142,26,245,56,11,84,175,146,159,24,189,250, - 111,183,110,94,218,112,228,168,213,24,105,52,214,74,168,153,227,44,207,119, - 147,86,7,120,156,239,81,139,23,235,26,145,4,28,176,89,47,218,128,59, - 31,204,158,117,201,86,62,238,66,208,229,67,110,26,39,161,16,167,85,77, - 20,55,228,58,195,149,199,70,16,248,251,174,220,97,152,129,16,230,163,249, - 190,124,176,184,206,88,253,97,50,255,47,95,65,121,229,82,246,60,95,149, - 85,156,80,227,176,149,180,143,234,170,230,130,203,4,218,186,48,219,239,92, - 151,171,214,112,86,146,87,9,178,143,243,239,95,28,146,111,166,104,228,183, - 158,89,87,105,219,142,128,3,54,235,37,29,112,82,126,247,241,56,11,184, - 100,210,249,186,123,67,171,195,217,227,89,168,89,57,25,157,89,241,147,21, - 53,198,97,69,53,111,150,61,246,170,201,133,125,203,73,66,97,26,151,212, - 44,247,22,70,117,74,243,251,126,203,213,147,235,140,21,76,214,239,192,45, - 73,165,170,167,96,18,170,84,245,20,197,53,185,206,88,81,156,172,232,114, - 80,37,105,172,155,55,184,204,4,222,185,194,123,57,220,164,197,251,162,230, - 222,219,75,1,1,7,108,22,1,23,173,118,251,153,138,46,121,60,159,124, - 110,134,169,87,171,210,186,81,234,229,210,72,126,80,95,249,124,254,251,124, - 63,121,108,218,46,207,207,91,182,92,69,229,187,64,243,207,243,14,170,30, - 243,83,41,214,205,59,139,151,194,221,247,198,42,135,181,236,252,150,195,112, - 121,106,198,126,193,246,82,91,200,152,128,3,54,235,37,31,112,134,9,186, - 228,190,92,164,56,30,47,125,61,153,106,96,246,180,147,214,135,156,145,95, - 114,44,255,92,74,66,110,157,48,244,179,238,80,41,169,8,199,97,101,165, - 59,116,93,183,168,249,122,205,155,105,26,249,114,203,65,22,74,251,205,13, - 124,190,246,155,132,125,208,104,86,19,106,251,13,254,177,21,1,7,108,22, - 1,183,143,249,32,150,229,10,111,190,172,88,222,186,185,93,203,214,181,113, - 221,217,66,224,229,187,71,247,155,235,181,60,7,112,57,120,76,197,184,95, - 240,228,239,135,229,31,231,21,153,146,97,142,183,31,51,8,232,165,84,181, - 229,17,112,192,102,17,112,7,88,31,112,185,185,108,233,72,204,185,117,23, - 252,124,88,68,11,211,25,76,87,232,65,247,255,146,239,93,13,188,115,133, - 89,94,185,236,203,113,170,107,130,217,203,38,211,175,255,153,113,218,110,125, - 8,46,127,62,255,187,229,159,191,20,17,112,192,102,17,112,231,73,126,186, - 194,126,83,23,150,187,232,242,207,247,155,211,181,206,185,66,231,92,214,253, - 236,131,62,174,155,136,157,156,195,60,40,243,237,49,71,192,1,155,69,192, - 189,72,68,81,152,13,212,48,225,98,238,111,173,11,151,243,25,56,235,186, - 25,95,202,93,143,69,17,112,192,102,109,124,63,56,20,103,186,51,139,140, - 70,60,159,213,212,186,159,69,184,1,184,216,81,193,1,23,8,21,28,176, - 89,252,31,8,0,176,18,1,7,0,176,210,243,27,134,87,244,160,142,67, - 183,39,0,96,163,158,239,32,147,150,164,95,146,116,135,146,112,252,55,73, - 127,115,190,79,10,0,128,31,87,209,10,206,149,116,139,164,47,74,250,111, - 73,63,147,251,218,63,75,250,229,133,131,82,193,1,0,54,172,104,192,221, - 37,233,111,211,199,21,73,143,75,186,42,125,222,151,212,94,56,40,1,7, - 0,216,176,34,131,76,110,208,60,220,190,34,201,151,244,58,73,15,73,122, - 76,210,235,47,204,169,1,0,240,163,43,114,15,238,239,114,143,255,37,253, - 248,180,146,46,75,0,0,46,74,7,117,81,30,150,244,132,164,90,250,252, - 58,73,39,15,60,40,93,148,0,128,13,219,175,130,187,79,82,93,82,71, - 243,112,147,164,191,144,52,80,178,60,254,251,37,157,190,144,39,7,0,192, - 143,106,221,61,184,45,73,102,161,193,102,238,243,19,73,35,37,85,223,76, - 210,234,142,155,0,0,92,36,14,234,162,252,172,164,183,165,143,159,150,116, - 76,210,254,155,135,153,131,210,69,9,0,216,176,131,6,153,188,53,247,248, - 73,73,161,238,143,175,87,172,95,211,55,191,240,65,189,226,205,159,214,183, - 221,119,232,6,29,215,153,147,223,214,165,215,74,39,228,233,30,86,0,3, - 0,108,214,185,146,232,176,230,93,149,146,244,79,146,164,19,122,92,223,214, - 135,245,202,219,239,213,127,125,230,78,73,82,28,127,85,151,94,251,176,20, - 253,230,5,59,83,0,0,158,135,115,85,112,175,93,122,254,192,194,179,19, - 250,13,73,239,213,46,164,215,9,0,0,7,114,73,68,65,84,13,122,66, - 129,127,179,30,175,156,96,237,102,0,192,197,226,92,137,244,186,165,231,143, - 174,180,184,236,122,73,242,147,112,3,0,224,226,113,174,128,187,49,247,248, - 115,107,91,12,158,147,38,195,107,206,231,9,1,0,112,62,228,3,238,114, - 37,163,42,205,200,202,151,231,190,102,86,51,113,116,60,157,58,112,131,190, - 163,155,222,248,33,61,242,160,116,245,226,90,148,0,0,108,154,9,184,251, - 36,253,64,82,164,100,130,183,52,15,184,19,154,47,209,21,235,107,159,238, - 106,239,51,161,198,122,149,28,125,81,179,137,84,139,79,233,229,250,157,23, - 236,172,1,0,56,128,169,214,242,243,214,30,150,244,231,74,22,88,126,66, - 210,113,37,11,44,39,62,25,31,211,227,250,225,194,81,174,215,45,122,76, - 255,145,29,244,30,247,192,185,114,0,0,92,72,38,224,126,95,210,7,151, - 190,246,199,146,126,79,63,194,138,37,76,244,6,0,108,90,126,37,147,215, - 42,233,178,156,74,250,198,143,117,80,2,14,0,176,97,206,163,143,62,90, - 40,140,206,156,57,83,232,128,143,60,82,172,221,199,63,126,213,193,141,158, - 135,135,31,254,217,66,237,62,242,145,63,45,212,238,241,199,239,40,212,238, - 248,241,207,23,106,215,108,22,217,153,72,122,223,251,222,87,168,157,227,20, - 221,171,182,152,247,190,183,216,223,36,239,120,199,67,133,218,157,58,117,170, - 80,187,27,63,245,169,66,237,138,122,205,53,215,20,107,248,141,130,127,195, - 189,231,61,133,154,221,251,201,79,22,106,247,143,127,82,59,184,209,243,112, - 205,107,174,41,212,238,175,94,91,236,247,189,247,107,197,126,223,79,254,67, - 177,223,247,206,189,98,107,63,220,125,247,219,11,181,123,255,251,191,83,168, - 221,159,125,244,120,161,118,127,244,250,47,21,106,119,243,168,216,76,168,79, - 221,252,166,66,237,94,125,243,168,80,187,195,245,167,10,181,187,227,142,55, - 23,106,247,57,29,43,212,238,3,119,93,82,168,221,189,215,190,237,224,70, - 146,222,253,147,15,28,220,72,210,253,151,125,180,80,187,7,31,124,176,80, - 59,102,102,3,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0, - 172,68,192,1,0,172,68,192,1,0,172,68,192,1,0,172,68,192,1,0, - 172,68,192,1,0,172,228,176,172,22,0,192,70,206,151,238,185,167,80,192, - 245,62,244,215,133,14,248,86,253,101,161,118,247,221,247,76,161,118,119,221, - 117,87,161,118,189,94,177,156,254,250,215,187,133,218,221,122,107,167,80,187, - 135,30,42,182,116,85,209,37,204,110,188,241,210,243,122,188,187,239,254,149, - 66,237,226,248,195,133,218,157,56,81,63,184,145,164,39,158,40,182,52,217, - 155,222,244,91,133,218,221,122,235,45,133,218,93,233,92,89,168,221,73,255, - 100,161,118,187,187,187,133,218,157,62,125,186,80,187,219,111,186,189,80,59, - 21,123,121,165,98,63,86,159,120,230,239,11,181,251,195,130,75,217,125,254, - 215,63,91,168,221,151,59,95,46,212,174,232,255,71,247,223,255,72,161,118, - 183,221,118,227,193,141,36,221,121,231,173,133,218,225,197,137,46,74,0,128, - 149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128, - 149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128, - 149,88,170,11,0,96,37,42,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0, - 128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,254,31,181, - 130,210,231,105,152,140,94,0,0,0,0,73,69,78,68,174,66,96,130, + 189,121,156,84,197,189,54,254,156,211,167,183,89,152,25,214,25,5,116,88, + 20,80,99,192,168,97,36,130,196,215,252,94,243,134,228,141,209,123,19,189, + 154,171,185,215,92,16,141,4,23,52,81,212,68,92,8,106,20,147,155,27, + 179,24,72,114,245,38,63,205,66,162,68,22,33,131,81,1,53,17,84,6, + 134,125,96,134,217,123,57,125,182,122,255,232,174,51,223,174,57,167,167,7, + 102,122,6,166,158,249,244,103,250,212,169,83,91,119,127,159,250,46,85,165, + 196,227,113,37,160,105,154,162,40,10,0,5,0,179,109,155,217,150,101,149, + 150,150,178,158,238,3,192,105,231,87,206,104,222,221,82,151,138,25,29,232, + 35,204,93,50,123,219,186,101,27,103,144,235,43,215,45,219,184,166,175,202, + 31,204,40,14,135,75,46,153,50,101,246,228,170,170,105,90,32,16,105,104, + 109,109,120,123,247,238,218,61,71,143,238,16,243,42,0,222,221,241,30,59, + 127,218,199,148,227,169,139,9,215,155,38,77,154,156,0,22,39,2,129,11, + 148,160,86,14,69,81,29,203,142,51,211,124,119,52,240,196,167,234,234,182, + 230,83,238,93,143,220,53,190,189,169,93,7,128,178,81,101,145,71,239,126, + 116,127,62,207,125,107,197,183,202,218,155,218,163,79,47,123,250,136,152,222, + 214,216,22,1,128,242,209,229,250,119,22,125,167,157,222,95,184,100,97,101, + 217,168,178,164,152,174,40,138,216,69,9,9,137,33,2,77,211,180,242,198, + 214,196,248,214,22,125,24,99,142,202,24,28,69,97,29,163,135,107,123,147, + 201,68,76,85,3,37,141,173,137,51,189,238,39,18,137,142,162,162,34,54, + 237,115,83,231,157,127,205,121,55,110,120,108,211,35,91,87,109,127,246,68, + 26,52,119,201,236,71,103,45,152,121,245,230,149,91,170,133,91,207,220,119, + 240,110,99,243,202,45,207,174,91,182,241,251,39,82,135,23,166,159,61,107, + 233,246,15,55,47,245,186,167,40,234,40,198,156,166,92,105,229,165,35,71, + 181,117,30,203,202,227,149,198,113,227,231,238,90,250,147,223,63,154,85,95, + 113,36,82,114,199,188,121,119,223,120,249,229,183,104,170,90,150,48,12,152, + 150,5,203,182,97,57,14,222,174,171,219,242,228,31,255,120,199,251,251,247, + 255,149,62,183,189,97,27,30,220,121,31,59,251,224,57,248,167,255,245,79, + 199,69,116,155,39,77,44,50,213,192,35,41,69,57,59,236,56,155,138,109, + 107,233,172,15,63,108,200,220,27,103,41,234,13,41,85,253,206,250,179,206, + 218,27,116,236,91,103,213,237,54,253,202,186,255,201,251,199,135,75,195,255, + 86,52,172,104,51,0,4,195,193,89,247,63,121,255,127,61,240,141,7,114, + 146,220,179,191,124,86,109,141,183,126,38,92,20,182,1,252,198,35,61,5, + 0,106,64,13,63,251,203,103,255,103,254,87,230,59,60,207,232,51,70,95, + 162,6,212,128,152,46,33,33,49,116,161,237,222,223,49,241,135,47,90,95, + 57,210,108,79,85,224,132,24,83,140,146,112,243,142,107,255,63,251,249,154, + 139,202,234,246,29,234,56,243,153,95,91,215,31,105,182,167,209,251,95,249, + 140,245,252,204,139,166,237,0,96,50,135,161,116,76,233,184,207,60,240,233, + 149,211,191,114,254,252,215,30,222,176,168,126,243,222,87,123,219,152,185,75, + 102,127,48,107,193,204,179,1,224,130,235,166,3,192,182,117,203,54,206,152, + 187,100,246,149,179,22,204,172,78,182,235,184,224,186,233,79,1,56,125,221, + 178,141,119,209,103,89,243,237,12,157,6,96,216,185,43,177,28,180,55,38, + 240,205,21,127,123,224,185,223,237,90,202,147,31,250,247,159,221,255,127,190, + 57,105,169,152,125,242,184,115,231,7,181,200,232,29,245,111,47,205,149,118, + 253,149,183,44,216,123,120,111,227,239,54,253,236,217,92,105,28,95,156,243, + 111,247,83,130,59,125,248,240,177,107,190,245,173,181,99,202,203,167,52,119, + 118,34,166,235,48,45,11,14,75,43,32,170,162,96,234,216,177,51,159,186, + 241,198,205,207,172,89,115,199,75,111,190,185,188,171,243,12,246,112,27,239, + 132,222,194,183,95,191,151,93,30,254,12,102,95,124,105,222,68,183,121,210, + 196,34,35,16,248,49,131,18,138,216,214,255,161,228,181,121,210,196,42,7, + 202,89,115,118,237,250,206,230,73,19,71,154,106,224,97,35,160,253,98,243, + 164,137,55,207,170,219,221,46,150,181,228,187,75,198,68,43,194,55,107,33, + 237,203,142,237,188,13,0,161,34,237,90,85,131,186,228,187,75,190,191,236, + 222,101,71,253,218,209,116,172,113,66,209,200,232,2,43,229,172,242,76,215, + 237,159,1,128,22,9,124,181,233,88,227,54,0,117,60,143,22,214,134,107, + 97,245,58,49,93,66,66,98,232,66,61,220,208,84,118,224,112,235,180,150, + 196,168,79,182,38,71,205,108,142,151,127,242,208,161,198,115,14,28,56,56, + 204,52,205,64,67,67,227,176,3,135,91,207,17,239,31,60,120,104,152,105, + 154,42,0,48,198,224,88,14,44,211,193,136,9,195,207,249,231,159,94,245, + 202,181,171,255,105,253,152,115,70,207,232,169,1,28,156,220,146,237,58,146, + 237,58,154,119,55,215,243,123,235,150,109,92,179,121,229,150,219,248,245,5, + 215,77,191,115,238,146,217,95,201,42,160,211,128,125,44,137,196,145,56,226, + 13,49,223,87,251,145,24,62,218,219,134,35,205,201,172,199,99,201,206,110, + 109,154,114,230,185,243,127,241,192,235,43,99,137,54,55,109,226,216,179,110, + 18,211,210,99,0,220,114,205,195,43,107,206,251,204,77,52,237,214,127,122, + 100,229,156,25,243,230,139,101,211,250,138,35,145,146,53,223,250,214,218,17, + 165,165,83,14,28,59,134,99,29,29,136,167,82,48,184,246,102,219,48,44, + 11,134,109,67,1,240,213,203,46,123,252,210,105,211,190,230,214,3,184,227, + 159,26,157,196,159,134,191,140,141,127,123,61,111,211,156,169,6,30,6,96, + 171,204,249,208,12,4,126,64,239,57,80,102,24,129,192,237,155,38,77,154, + 54,171,110,247,177,160,99,47,80,24,107,53,213,192,227,98,57,183,223,127, + 251,240,210,211,74,191,166,133,181,155,16,80,43,220,27,1,181,66,11,107, + 55,149,158,86,250,181,219,239,191,125,184,87,27,230,127,99,126,52,84,22, + 158,175,106,234,37,80,160,120,167,43,10,20,69,81,53,245,146,80,89,120, + 254,252,111,204,143,186,5,40,240,78,151,144,144,24,178,80,109,203,10,128, + 153,33,56,122,4,142,30,1,51,35,140,153,33,219,182,2,142,227,40,182, + 109,123,222,183,108,83,117,28,98,9,98,12,112,24,28,219,129,109,57,24, + 119,225,233,115,110,124,233,250,173,159,91,126,229,243,165,149,37,99,115,53, + 34,99,150,60,59,153,118,217,120,98,221,178,141,223,223,186,106,251,181,36, + 233,154,172,12,134,141,84,194,68,103,194,68,44,105,249,190,58,226,22,58, + 19,38,82,166,104,197,202,230,131,41,103,158,59,255,247,223,123,111,229,174, + 253,187,96,90,6,0,96,248,176,17,87,252,246,209,183,86,214,29,168,131, + 97,165,178,242,219,54,16,14,134,113,195,103,239,88,57,245,204,25,87,0, + 128,227,0,33,45,132,155,230,221,179,114,246,116,145,228,186,234,187,99,222, + 188,187,43,203,203,167,52,180,182,34,166,235,176,29,39,61,158,98,11,25, + 3,20,5,161,96,16,95,154,57,243,177,146,72,100,52,185,153,53,254,249, + 98,211,164,73,147,109,69,153,26,178,237,155,1,192,86,148,9,235,207,58, + 139,146,156,9,5,69,182,162,92,3,0,179,234,118,155,154,227,60,109,43, + 202,105,27,39,77,250,50,207,52,255,254,249,37,163,198,143,186,46,24,214, + 110,86,85,117,76,86,251,25,131,170,170,99,130,97,237,230,81,227,71,93, + 55,255,254,249,37,98,59,198,158,59,246,139,193,144,118,189,162,40,1,250, + 81,208,116,198,24,24,99,80,20,37,16,12,105,215,143,61,119,236,23,233, + 112,122,166,75,72,72,12,89,168,0,142,203,103,147,235,57,230,48,216,166, + 3,219,180,113,206,188,169,255,242,245,191,124,173,110,206,226,79,61,28,42, + 9,13,243,121,228,234,124,42,92,183,108,227,47,183,174,218,254,24,0,92, + 112,221,244,207,207,93,50,251,165,172,122,51,66,149,11,66,175,23,24,203, + 200,94,145,64,84,247,221,148,51,207,157,255,135,21,239,173,220,215,208,136, + 184,222,137,160,22,70,69,233,136,43,54,254,112,207,239,218,58,205,112,107, + 103,147,91,151,91,119,102,72,134,151,141,9,223,254,229,199,127,119,222,196, + 139,175,80,149,116,122,52,82,130,155,230,45,241,32,185,116,64,201,141,151, + 95,126,203,177,206,78,196,83,169,110,229,122,65,83,85,84,148,148,84,92, + 60,121,242,191,123,221,103,78,247,50,126,250,151,159,122,22,108,169,234,109, + 154,227,108,202,92,6,0,192,86,148,73,27,39,79,186,93,200,55,107,195, + 228,201,75,1,224,83,117,117,59,52,199,121,219,81,213,203,0,224,134,251, + 111,136,156,54,174,242,154,96,84,187,37,160,169,227,252,218,29,208,212,113, + 193,168,118,203,105,227,42,175,185,225,254,27,34,60,253,190,103,191,245,177, + 96,84,187,77,13,40,35,104,247,253,210,25,3,212,128,50,34,24,213,110, + 187,239,217,111,125,172,167,116,9,9,137,161,9,181,231,44,199,15,198,24, + 108,211,134,170,169,225,79,254,251,69,75,254,227,181,175,213,205,184,246,227, + 243,3,161,64,152,231,153,187,100,246,30,238,95,219,186,106,251,246,173,171, + 182,63,182,117,213,246,15,247,110,217,223,230,85,230,186,101,27,239,218,186, + 106,251,246,204,229,231,251,170,173,37,69,105,238,237,34,183,38,116,196,91, + 80,82,84,134,115,39,94,52,237,249,165,155,87,181,118,218,225,150,142,38, + 216,142,191,159,79,85,84,148,151,142,10,47,190,238,201,85,103,84,77,157, + 102,217,38,20,40,46,201,93,118,193,23,178,72,238,146,41,83,102,107,170, + 90,214,153,76,186,254,54,63,240,25,133,170,170,136,4,131,56,251,244,211, + 231,245,166,143,247,108,189,147,253,247,218,255,206,170,196,86,148,137,26,115, + 158,155,85,183,59,1,192,206,84,20,48,213,192,255,122,125,210,164,79,147, + 202,85,43,160,94,186,97,242,228,59,1,64,101,236,45,71,81,70,93,125, + 245,213,161,179,78,159,56,47,20,13,223,170,106,234,164,158,218,160,106,234, + 164,80,52,124,235,89,167,79,156,119,245,213,87,135,238,124,104,241,176,162, + 226,226,155,213,160,122,126,87,46,134,59,190,125,123,148,166,43,0,152,195, + 2,170,218,21,21,169,6,213,243,139,138,139,111,190,227,219,183,71,233,132, + 133,167,223,249,208,98,191,9,149,132,132,196,16,128,86,136,74,28,219,129, + 226,0,145,178,200,168,43,238,255,244,202,11,191,58,99,209,250,199,55,45, + 249,232,213,93,47,2,112,201,141,44,11,184,43,87,121,253,129,49,195,171, + 48,105,236,185,243,95,126,188,139,220,28,230,32,18,138,226,235,95,124,224, + 234,112,48,130,158,200,13,0,20,69,129,170,170,40,43,30,62,170,106,196, + 184,171,227,201,142,180,235,40,67,114,55,255,223,251,87,150,22,149,35,150, + 72,175,168,152,92,85,53,45,105,24,48,109,219,211,44,217,173,124,164,69, + 121,32,173,197,77,235,77,31,173,98,11,219,74,223,196,189,155,239,102,151, + 216,151,226,202,217,87,42,80,16,158,85,183,187,33,147,197,213,170,160,32, + 98,4,2,183,7,29,103,3,45,195,81,149,143,111,154,52,233,34,0,109, + 12,40,157,54,123,218,220,96,81,248,246,64,48,112,158,146,135,53,64,1, + 148,64,48,112,30,138,194,183,79,155,61,173,67,11,106,195,181,176,246,37, + 5,8,145,92,86,233,233,21,159,163,233,12,128,162,42,182,227,48,133,148, + 21,210,194,218,151,74,79,175,216,8,40,86,183,244,209,101,89,209,166,18, + 18,18,67,11,253,170,193,81,48,6,216,166,13,35,102,32,24,13,78,156, + 179,248,83,47,92,112,221,199,239,47,84,253,61,193,182,109,60,181,232,247, + 43,247,28,58,136,246,88,51,152,195,92,115,161,97,233,232,76,180,195,113, + 236,60,76,136,105,249,107,57,38,58,19,237,174,255,14,72,107,180,201,84, + 28,87,205,189,121,229,129,198,116,160,159,22,8,68,82,36,90,50,95,176, + 116,121,189,10,166,224,227,223,134,86,252,255,169,255,193,15,127,251,195,172, + 74,153,162,140,20,122,98,58,138,50,145,166,57,80,138,29,5,159,96,64, + 121,186,253,218,28,0,51,192,152,154,79,15,210,214,97,166,2,152,161,5, + 180,57,170,162,124,26,140,141,166,207,42,10,172,128,26,152,43,166,251,148, + 53,58,160,6,230,42,10,44,49,93,85,148,79,251,61,43,33,33,113,234, + 163,32,4,199,28,6,43,101,33,217,154,68,219,193,54,236,222,184,103,219, + 75,183,253,254,178,173,171,222,121,160,167,103,231,46,153,189,45,243,250,96, + 238,146,217,143,206,93,50,123,219,172,5,51,167,103,110,215,231,124,184,23, + 104,104,62,136,155,190,59,123,65,67,243,62,88,182,5,7,233,64,13,211, + 50,208,30,107,129,97,165,224,48,167,71,130,99,204,129,101,25,232,136,181, + 64,55,18,96,96,112,152,3,219,182,209,210,113,20,219,63,220,132,39,127, + 117,199,2,37,51,244,135,91,91,27,108,199,201,219,17,202,107,215,13,3, + 77,29,29,13,57,51,11,224,227,175,124,168,226,134,178,27,241,245,47,126, + 93,1,67,106,243,164,137,227,0,64,97,236,32,169,168,83,179,237,23,52, + 199,249,33,45,35,232,216,27,102,239,170,123,22,105,127,93,220,72,24,175, + 152,9,179,214,54,109,27,140,117,243,108,118,107,123,218,108,109,155,9,179, + 214,72,24,175,24,73,115,141,149,178,14,11,207,106,102,210,240,74,239,86, + 150,149,178,14,155,73,99,13,50,214,8,154,110,36,205,33,177,49,128,132, + 132,132,55,250,215,7,231,192,37,182,246,131,29,216,251,198,254,247,215,62, + 180,254,154,63,221,187,246,130,198,157,77,27,50,217,94,6,128,11,174,155, + 62,125,238,146,217,143,122,149,51,107,193,204,242,89,11,102,158,61,107,193, + 204,59,47,184,110,250,244,140,73,179,126,221,178,141,19,250,170,173,41,35, + 137,35,205,251,159,189,247,7,215,45,104,108,57,152,114,28,7,138,162,160, + 35,214,130,31,254,230,254,23,223,223,243,86,147,109,91,80,213,92,67,198, + 96,217,38,14,53,237,197,223,222,127,173,233,111,255,248,203,139,33,45,12, + 199,113,208,212,122,8,111,252,125,109,234,229,215,127,186,96,251,71,155,159, + 29,59,38,221,244,173,187,119,215,90,182,13,85,201,63,214,199,178,109,180, + 198,98,216,215,216,88,219,155,62,58,117,10,190,88,116,13,158,185,233,7, + 202,172,139,103,41,0,16,96,108,151,165,168,55,100,178,4,50,221,112,130, + 142,253,151,217,117,117,191,98,192,24,158,166,217,206,235,1,198,158,1,0, + 71,81,102,4,24,59,240,250,239,94,223,148,236,208,191,103,36,204,55,114, + 145,28,37,55,35,97,190,145,236,208,191,247,250,239,94,223,116,236,224,177, + 63,167,226,198,42,219,176,147,156,190,25,131,182,247,221,253,30,233,76,237, + 242,193,49,216,134,157,76,197,141,85,123,223,221,255,103,198,184,185,189,43, + 253,216,193,99,127,238,205,248,72,72,72,156,90,80,209,61,156,48,95,248, + 62,199,24,96,27,54,244,246,36,58,14,113,98,91,119,205,31,239,252,243, + 185,7,222,58,248,34,205,187,110,217,198,47,108,93,181,157,147,92,247,245, + 109,25,240,245,113,0,208,188,187,25,0,94,244,202,119,252,72,119,167,225, + 216,190,103,239,90,249,207,243,154,90,15,167,44,203,68,202,72,226,64,99, + 221,142,71,126,126,203,156,93,251,223,107,178,44,203,183,4,211,50,113,176, + 113,15,54,189,187,166,233,151,175,60,57,39,150,236,216,17,14,70,113,180, + 229,0,182,252,253,213,212,239,55,255,124,222,190,35,31,61,11,0,69,145, + 82,0,192,158,163,71,119,188,93,87,183,5,0,160,40,105,211,99,142,22, + 50,198,208,145,76,226,80,75,11,254,113,224,192,115,158,249,124,10,248,225, + 141,255,169,124,238,242,207,101,49,169,230,56,63,183,84,245,146,140,22,103, + 3,64,128,177,29,1,198,126,69,243,5,152,179,125,206,174,93,75,103,213, + 237,54,55,77,154,52,205,82,213,79,168,142,243,215,141,27,55,90,141,31, + 53,190,162,39,82,143,24,73,235,111,182,229,56,158,13,96,12,182,229,56, + 70,210,250,155,158,72,61,210,248,81,227,43,27,55,110,180,86,62,190,50, + 158,140,233,63,76,37,205,117,142,213,213,251,159,253,228,167,134,152,174,40, + 138,147,246,193,49,56,22,67,42,105,174,75,198,244,31,254,236,39,63,53, + 248,8,209,244,149,143,175,140,251,12,165,132,132,196,16,128,10,192,102,12, + 134,237,216,186,227,48,221,177,109,157,49,24,72,11,59,230,119,95,129,210, + 109,177,21,99,44,77,108,109,73,180,31,234,192,161,119,14,31,216,248,196, + 230,5,94,196,38,224,5,254,230,130,235,166,175,158,187,100,246,173,126,25, + 155,119,55,99,239,150,253,31,138,59,153,192,114,96,217,14,12,211,129,153, + 235,101,167,243,229,66,60,217,241,234,157,207,92,61,111,223,145,15,59,236, + 140,223,205,178,205,29,75,127,124,211,156,186,131,239,53,121,9,112,199,113, + 208,112,108,31,54,191,187,166,105,237,27,255,61,167,51,209,190,67,11,4, + 209,212,118,24,155,223,89,211,241,167,45,191,154,215,220,126,212,221,221,133, + 106,108,79,253,241,143,119,232,166,9,186,174,144,214,192,197,62,99,12,49, + 93,199,222,198,70,108,223,179,103,237,225,150,150,87,104,27,232,248,139,248, + 215,203,255,213,83,69,252,84,93,221,214,0,99,123,205,64,224,126,0,129, + 128,195,118,4,29,251,238,89,117,187,143,241,60,10,67,139,230,176,31,1, + 192,230,73,19,203,44,85,93,24,96,108,239,236,186,186,95,1,192,143,126, + 244,35,179,113,71,227,43,169,120,106,133,145,48,182,119,35,57,78,110,9, + 99,123,42,158,90,209,184,163,241,149,31,253,232,71,238,110,41,143,220,245, + 72,189,17,55,86,24,73,227,35,199,238,122,78,76,231,155,161,58,54,131, + 145,52,62,50,226,198,138,71,238,122,196,53,83,251,165,75,72,72,12,77, + 104,1,213,110,143,168,199,118,180,183,127,196,28,56,33,48,24,209,18,123, + 71,40,88,210,97,154,166,13,88,29,17,181,249,125,159,251,105,137,204,0, + 219,114,144,234,72,33,209,146,64,115,125,203,129,191,255,118,199,35,123,94, + 175,127,206,177,156,84,15,109,192,186,101,27,127,9,224,252,11,174,155,126, + 39,0,190,29,87,29,223,92,57,217,174,87,3,89,228,54,69,44,163,189, + 49,129,143,246,119,160,51,97,230,12,70,180,108,134,195,77,73,88,22,19, + 210,179,53,179,120,178,243,213,123,127,240,47,51,111,251,231,71,55,40,138, + 154,201,99,238,88,250,95,55,205,249,198,63,63,230,166,185,249,245,24,182, + 252,253,149,166,87,223,120,97,78,92,239,220,1,0,137,84,12,181,239,253, + 185,233,15,155,127,49,39,174,119,100,109,148,76,235,251,199,254,253,127,125, + 102,205,154,59,190,122,217,101,143,135,52,13,154,166,65,205,104,115,64,134, + 184,28,7,29,201,36,246,54,54,98,235,238,221,187,55,188,255,254,245,110, + 1,194,248,43,77,42,102,127,53,255,173,186,130,142,125,171,17,208,126,1, + 5,225,160,237,252,48,179,100,0,0,160,0,245,154,109,255,247,167,234,234, + 118,109,154,52,105,154,169,170,11,153,130,162,144,237,44,165,101,252,232,71, + 63,50,23,46,92,248,135,178,234,178,128,2,220,25,42,10,185,230,99,102, + 51,102,38,140,237,122,103,234,177,246,250,246,63,80,114,227,56,180,228,208, + 250,177,143,142,125,66,211,2,15,51,18,41,73,211,121,154,99,216,173,169, + 152,241,196,161,37,135,214,187,117,56,76,241,74,151,144,144,24,186,208,70, + 13,15,237,254,194,165,214,207,143,28,237,28,102,219,182,170,40,170,51,108, + 88,105,199,248,211,203,246,58,142,163,143,30,30,222,251,133,75,173,231,189, + 238,51,199,177,0,192,74,217,232,60,18,67,227,135,199,58,182,255,234,157, + 165,187,94,219,253,108,62,196,70,145,209,200,14,157,57,115,252,252,189,91, + 246,135,56,185,101,150,14,176,51,103,142,175,223,187,101,255,139,221,52,183, + 12,22,173,248,219,3,71,154,147,48,76,7,61,89,93,77,139,161,254,112, + 231,6,154,118,180,229,96,183,124,150,109,238,120,242,215,119,206,41,47,25, + 49,135,166,61,241,235,59,178,210,0,96,95,195,71,141,255,216,243,183,44, + 34,243,74,243,171,239,165,55,223,92,222,18,139,181,93,61,115,230,99,21, + 37,37,21,145,96,16,1,85,133,3,32,101,24,104,137,199,113,184,185,25, + 219,246,236,89,187,225,253,247,175,215,77,211,221,109,223,177,29,116,30,137, + 161,115,79,28,151,70,230,224,198,175,222,216,171,197,251,179,234,118,155,155, + 39,77,188,217,84,3,143,167,2,129,37,27,38,79,126,91,101,236,45,5, + 104,2,0,5,72,109,152,60,121,105,74,85,63,17,96,108,111,200,118,150, + 206,170,171,235,166,33,61,253,244,211,169,133,11,23,190,172,78,168,8,40, + 138,242,31,142,101,50,0,48,147,248,71,42,102,254,160,189,190,253,229,167, + 159,126,218,243,123,241,19,253,39,236,206,214,187,126,29,138,4,167,3,142, + 225,149,206,152,99,2,128,162,168,47,234,173,169,95,255,68,255,137,251,65, + 59,150,105,56,86,247,116,9,9,137,161,11,165,185,185,89,209,83,41,77, + 215,117,197,182,109,69,81,20,166,105,26,139,70,34,86,101,101,37,235,233, + 62,0,204,248,202,249,183,51,96,216,223,127,251,254,19,150,110,157,240,145, + 57,226,209,56,226,209,57,167,50,74,34,145,209,23,79,158,252,239,103,159, + 126,250,188,138,146,146,105,140,177,232,177,142,142,134,189,141,141,181,255,56, + 112,224,57,209,44,169,0,248,197,154,95,176,88,50,134,255,184,234,63,122, + 189,43,141,200,4,107,166,78,189,217,10,4,46,183,85,101,20,131,82,146, + 174,131,37,2,14,59,160,217,246,235,87,238,220,249,159,61,149,121,245,237, + 87,71,207,62,125,210,103,82,186,117,16,0,194,17,109,236,135,135,234,94, + 121,241,137,23,187,219,78,5,220,179,252,174,143,217,6,43,125,244,158,199, + 254,234,145,94,4,0,129,144,146,120,120,241,163,239,209,251,119,61,124,231, + 37,129,144,210,41,166,203,227,114,36,36,134,46,180,159,253,236,103,80,20, + 5,160,81,124,172,107,13,88,79,247,1,224,178,51,62,189,209,136,155,117, + 219,245,119,251,228,60,184,117,203,54,174,89,241,194,242,109,139,174,89,60, + 35,115,61,99,197,11,203,175,92,116,205,226,83,62,236,59,166,235,141,231, + 204,153,243,228,240,146,146,237,197,225,240,52,69,81,34,197,166,217,80,150, + 72,212,190,186,98,69,55,77,16,0,230,156,63,7,227,78,31,119,188,91, + 174,101,97,117,69,197,159,0,84,1,152,0,128,239,56,147,66,122,135,254, + 77,126,207,81,188,248,196,139,201,203,239,191,100,219,158,87,27,116,0,152, + 112,69,85,227,95,158,248,107,143,228,6,0,219,157,55,246,213,111,56,18, + 153,114,197,217,99,170,47,175,212,255,116,231,198,118,154,14,0,213,151,87, + 118,219,180,244,229,13,47,239,174,190,188,50,175,58,36,36,36,134,6,148, + 21,43,86,84,152,150,51,222,182,156,97,44,29,116,226,0,172,35,168,41, + 123,53,77,139,1,40,49,45,231,76,159,251,29,139,22,45,98,247,63,121, + 223,210,97,85,195,110,108,222,221,242,200,195,247,60,124,66,231,193,173,120, + 97,249,163,72,239,77,89,189,232,154,197,10,73,223,3,192,0,240,236,162, + 107,22,247,249,121,112,151,95,246,153,165,127,89,255,202,82,175,123,209,104, + 116,84,50,153,108,202,149,246,141,219,110,31,245,228,83,79,100,229,241,74, + 227,120,228,193,21,75,239,190,111,81,86,125,183,46,92,88,50,177,178,242, + 238,113,35,71,222,162,0,101,54,99,96,142,227,6,152,180,197,227,91,234, + 27,27,239,120,100,249,114,87,187,81,0,172,219,178,142,237,58,182,11,31, + 59,237,124,204,188,224,147,189,34,58,62,77,185,182,166,38,2,224,78,0, + 103,3,216,12,224,197,213,181,181,199,50,247,42,1,252,95,0,51,1,236, + 3,240,192,234,218,90,223,112,210,203,239,191,100,124,184,116,216,47,140,206, + 212,126,0,8,149,134,199,167,58,59,254,229,47,15,252,53,231,121,112,255, + 246,218,21,202,225,237,234,34,51,97,94,250,234,125,175,125,190,91,122,220, + 188,16,0,130,197,193,183,78,155,238,172,248,175,79,191,234,206,178,174,120, + 240,211,47,7,139,130,175,139,233,82,131,147,144,24,186,80,245,148,61,241, + 104,179,115,195,225,102,118,79,67,51,187,175,161,153,221,211,216,106,93,175, + 235,230,153,0,34,41,195,62,243,104,179,115,189,120,63,169,27,103,50,190, + 213,23,3,180,176,54,110,212,217,35,86,62,250,243,71,254,113,199,183,23, + 95,113,60,141,89,241,194,242,15,144,22,178,213,153,235,109,153,255,87,102, + 210,206,6,240,84,134,4,179,176,254,213,149,108,253,154,167,217,250,63,124, + 63,247,235,247,223,103,107,127,243,4,123,234,241,251,150,210,231,255,229,75, + 255,230,185,171,202,197,23,206,156,63,243,226,89,11,122,74,27,59,250,204, + 5,15,126,251,145,249,61,165,113,84,141,24,159,85,223,55,191,241,141,177, + 151,76,153,242,214,25,163,70,221,107,217,118,153,110,154,72,153,38,12,203, + 74,31,122,234,56,40,137,70,103,158,51,110,220,230,135,238,189,119,177,88, + 94,210,78,98,203,222,191,226,199,47,255,152,125,176,235,195,94,9,245,12, + 185,61,138,180,230,118,195,234,218,218,31,16,114,27,9,224,140,213,181,181, + 63,0,112,43,210,107,229,158,184,182,166,166,219,137,0,0,112,241,173,23, + 143,25,117,246,233,247,158,245,233,73,227,84,45,253,119,214,167,39,141,27, + 117,246,233,247,94,124,235,197,99,114,181,99,239,27,206,89,227,47,26,255, + 165,72,105,56,236,153,94,22,9,69,202,34,161,241,23,141,255,210,254,183, + 216,164,79,222,246,73,119,231,149,72,105,56,60,254,162,241,95,218,251,134, + 115,86,111,250,46,33,33,113,234,66,53,45,179,76,55,173,105,134,19,252, + 164,225,4,103,166,108,237,147,122,202,58,199,52,205,97,140,177,128,105,154, + 195,116,211,58,71,188,111,153,214,48,230,56,110,40,33,99,12,204,1,130, + 69,193,115,78,59,191,234,149,135,127,252,221,245,139,238,190,61,111,191,89, + 134,220,206,38,73,110,16,67,198,52,121,27,185,119,231,138,23,150,103,175, + 151,179,28,48,195,129,157,178,115,190,172,148,133,120,194,68,202,200,94,42, + 96,217,221,247,152,156,121,209,204,249,223,248,183,37,43,45,187,43,232,239, + 19,51,46,188,73,76,3,210,154,208,153,167,157,189,242,91,119,47,189,137, + 166,85,159,54,101,229,125,247,60,216,141,228,104,125,183,46,92,88,114,209, + 228,201,107,67,154,54,37,105,24,48,44,11,182,227,164,181,55,126,18,130, + 211,181,139,202,216,17,35,30,255,246,93,119,125,141,150,199,199,191,221,104, + 199,154,119,255,128,95,252,113,85,111,72,110,49,210,203,66,118,1,120,72, + 184,55,13,192,215,175,173,169,153,176,186,182,182,13,192,125,0,218,0,220, + 35,22,50,237,234,105,195,199,84,143,120,174,114,202,168,207,107,97,173,130, + 47,112,208,194,90,69,229,148,81,159,31,83,61,226,185,105,87,79,243,60, + 15,14,64,104,216,200,226,31,15,27,83,114,46,61,15,142,166,167,79,131, + 131,50,108,76,201,185,37,21,69,63,121,227,169,55,186,76,226,153,244,97, + 35,139,127,140,172,125,45,37,36,36,134,42,84,48,4,192,88,8,204,137, + 128,57,17,128,69,24,88,136,129,5,24,99,10,224,123,223,123,75,143,204, + 113,52,209,242,200,156,113,159,24,187,245,193,149,15,60,127,219,162,91,115, + 158,7,151,209,200,206,206,149,39,99,150,244,63,15,46,115,22,154,101,179, + 60,94,14,156,110,71,202,100,95,207,188,104,230,252,111,126,253,190,149,177, + 100,220,61,126,102,98,245,196,43,22,125,253,222,149,241,100,28,204,201,38, + 72,198,0,85,9,96,220,152,137,43,239,90,124,207,21,188,72,85,81,49, + 110,204,100,15,146,235,170,111,98,101,229,221,225,96,112,138,110,154,93,103, + 193,249,157,7,135,244,105,2,85,21,21,143,221,186,112,225,104,143,76,249, + 236,217,236,226,218,154,154,241,0,166,162,139,176,38,92,91,83,67,73,206, + 2,80,4,224,179,0,144,49,77,254,20,64,213,181,53,53,87,242,76,211, + 174,158,86,114,230,39,198,173,170,254,84,245,199,180,72,112,12,232,166,212, + 142,13,45,18,28,83,253,169,234,143,157,249,137,113,171,166,93,61,173,155, + 246,247,153,135,46,255,207,51,62,57,126,50,144,14,36,241,78,119,87,4, + 22,157,241,201,241,147,63,243,208,229,66,192,139,95,186,132,132,196,80,68, + 191,156,7,7,198,50,155,21,3,165,99,74,254,229,140,79,142,175,187,239, + 123,223,126,120,225,173,11,79,232,60,184,69,215,44,254,37,128,199,50,151, + 159,95,241,194,242,151,188,115,50,255,23,243,91,68,208,213,157,153,23,205, + 156,255,205,255,184,111,101,50,149,130,237,88,80,84,21,19,170,39,94,241, + 157,37,223,251,157,227,40,97,211,50,124,23,34,4,181,112,120,194,233,83, + 127,119,247,29,247,94,193,91,18,80,3,24,55,102,146,167,38,119,235,194, + 133,37,227,70,142,188,133,107,109,249,158,40,16,212,180,138,138,226,98,207, + 243,224,188,202,120,117,211,90,191,130,111,68,218,231,6,240,173,186,128,137, + 215,214,212,220,32,228,187,228,218,154,154,133,0,176,186,182,118,15,128,109, + 0,102,1,192,25,179,207,136,156,49,253,244,85,19,231,76,152,20,42,10, + 142,243,219,171,43,84,20,28,55,113,206,132,73,103,76,63,125,213,25,179, + 207,112,79,46,152,187,228,210,47,79,152,93,125,161,22,210,198,128,193,241, + 74,119,44,167,43,174,137,193,209,66,218,152,9,179,171,47,156,187,228,210, + 47,147,58,188,211,37,36,36,134,36,250,119,179,229,12,209,65,81,194,21, + 103,148,47,57,99,230,184,186,123,30,94,50,255,150,133,183,184,62,150,76, + 240,72,117,230,114,59,210,4,246,33,210,102,176,110,88,116,205,226,187,50, + 249,128,62,60,15,78,11,164,221,137,46,185,233,41,88,182,9,45,160,225, + 140,177,213,211,238,88,112,255,42,135,169,25,114,203,77,66,65,45,20,158, + 56,246,156,85,69,145,146,105,140,165,229,117,64,213,50,36,247,80,22,201, + 13,47,41,153,173,0,101,182,135,137,84,4,167,96,69,81,16,80,20,20, + 71,34,189,58,15,238,153,223,62,195,182,108,221,34,54,126,2,210,1,37, + 58,248,121,112,105,162,155,123,109,77,205,197,66,245,179,174,173,169,225,166, + 209,119,1,140,196,52,132,166,92,62,249,249,73,115,38,158,25,41,13,79, + 234,105,183,229,72,105,120,210,164,57,19,207,156,114,249,228,231,49,13,161, + 11,111,185,160,170,242,220,202,5,37,35,139,39,113,77,89,1,216,57,55, + 76,43,163,233,106,64,101,89,129,188,14,67,201,200,226,73,149,231,86,46, + 56,231,134,105,101,10,223,238,146,164,95,120,203,5,85,189,25,31,9,9, + 137,83,11,5,57,15,142,111,192,171,106,129,81,163,206,26,185,178,124,92, + 217,162,59,151,222,185,228,177,165,143,189,8,66,110,124,89,0,6,224,60, + 184,80,40,130,139,47,76,155,37,57,185,49,198,160,42,1,124,122,214,149, + 87,171,74,0,134,105,244,120,154,128,162,40,96,12,208,2,161,81,225,96, + 244,106,219,177,50,105,12,1,85,195,25,149,103,173,124,240,219,143,184,59, + 153,20,135,195,211,28,150,81,91,122,113,30,156,162,40,8,105,90,175,206, + 131,75,217,41,108,169,175,197,127,190,244,67,118,241,228,153,248,248,57,231, + 43,0,194,60,160,4,93,203,2,128,244,217,112,95,71,247,165,1,231,93, + 91,83,115,46,128,14,0,195,174,188,233,202,185,103,126,226,244,113,225,178, + 240,121,96,121,88,3,24,148,112,89,248,188,137,151,86,39,175,44,186,114, + 110,116,88,120,248,232,169,163,38,131,101,213,109,77,185,116,202,92,143,116, + 177,172,240,232,169,163,38,79,209,167,204,181,58,117,75,76,79,37,204,203, + 222,198,182,30,155,36,33,33,113,106,162,96,231,193,129,165,125,72,142,229, + 64,81,213,137,35,38,12,127,225,158,135,151,120,70,46,14,8,24,195,252, + 175,46,94,25,215,147,176,108,51,203,142,233,56,78,58,173,23,251,82,51, + 150,126,198,201,242,213,49,216,142,133,170,145,227,87,234,70,122,31,96,69, + 81,34,142,211,243,49,60,221,202,79,191,122,117,30,28,31,255,246,120,7, + 254,188,245,79,248,203,166,191,136,149,142,16,174,77,116,77,64,56,138,1, + 156,7,96,24,0,56,186,113,175,162,42,51,152,197,212,124,250,192,24,3, + 179,152,170,168,202,12,71,55,238,53,58,245,123,20,166,140,206,122,86,65, + 202,104,79,118,79,247,40,75,97,202,104,163,61,121,15,20,164,186,165,119, + 234,221,2,97,36,36,36,134,14,10,115,30,28,210,166,35,199,180,97,234, + 22,18,45,241,109,71,222,63,122,217,195,247,44,235,241,60,184,21,47,44, + 223,150,121,125,176,226,133,229,143,102,150,14,244,249,121,112,186,145,196,211, + 207,61,178,32,101,36,193,152,227,154,33,57,81,49,247,44,184,220,66,60, + 29,245,152,33,55,102,119,165,129,193,176,12,116,196,91,80,127,104,231,2, + 110,112,212,77,179,129,33,127,71,40,175,221,113,28,24,166,217,171,243,224, + 248,248,151,5,134,225,139,151,92,133,203,63,117,185,2,32,149,89,231,6, + 0,135,73,246,78,0,47,1,248,133,80,204,166,213,181,181,191,66,218,140, + 25,75,180,37,238,219,187,101,255,225,100,135,110,51,59,119,128,11,99,0, + 179,25,146,29,186,189,119,203,254,195,137,182,196,125,177,99,241,135,142,126, + 212,164,51,155,81,31,91,36,214,20,123,176,91,122,247,178,216,209,143,154, + 244,88,83,236,65,176,244,105,228,89,233,199,226,98,68,168,132,132,196,16, + 66,255,158,7,7,129,216,90,147,239,31,219,117,236,154,251,23,62,112,193, + 19,143,62,177,33,147,237,229,204,255,233,94,235,219,50,40,71,58,202,242, + 78,16,114,91,116,205,226,62,59,15,206,113,28,188,189,237,173,103,127,244, + 252,83,11,18,201,68,138,83,137,101,155,120,109,211,154,23,27,91,142,52, + 165,73,47,55,21,49,48,232,70,18,109,157,199,154,218,58,143,189,152,62, + 63,142,193,48,116,180,117,52,165,142,52,31,88,240,240,99,15,61,27,9, + 167,131,5,219,19,137,90,198,88,246,78,49,61,128,49,6,211,182,145,52, + 140,94,157,7,87,172,148,224,127,95,240,191,113,243,63,127,93,57,107,226, + 100,94,97,29,210,139,184,129,174,32,19,6,96,195,234,218,218,53,0,70, + 146,180,205,0,86,103,174,207,5,112,240,245,199,107,55,197,90,98,11,247, + 109,217,127,72,239,208,109,102,251,158,150,3,102,59,208,59,116,123,223,150, + 253,135,98,45,177,133,175,63,94,187,169,225,239,71,254,208,244,97,211,243, + 177,166,152,133,174,200,214,192,250,101,155,188,210,187,224,48,196,154,98,86, + 211,135,77,207,175,95,182,233,15,110,219,73,122,195,223,143,252,161,55,227, + 35,33,33,113,106,161,127,206,131,67,198,28,102,58,217,196,118,203,210,115, + 151,127,247,123,89,199,230,44,186,236,2,229,63,0,0,32,0,73,68,65, + 84,102,241,23,208,69,114,221,215,183,249,163,95,206,131,123,123,219,155,207, + 126,239,217,7,231,37,245,68,42,189,139,191,141,195,71,14,236,88,254,253, + 135,230,52,55,55,54,229,54,153,57,208,83,9,180,116,52,54,29,106,218, + 51,199,178,173,29,170,18,64,202,208,209,218,217,148,58,218,114,112,222,242, + 21,143,61,11,164,131,78,0,224,241,21,43,118,180,197,227,121,159,7,7, + 164,215,208,233,134,129,206,100,210,251,60,56,143,180,209,229,163,176,224,43, + 11,148,143,159,247,113,145,73,255,7,192,204,140,22,199,131,76,118,0,16, + 201,97,251,234,218,218,167,87,215,214,90,215,214,212,76,0,48,3,192,155, + 0,172,141,107,55,191,18,107,73,46,216,247,198,254,195,122,167,238,240,221, + 87,104,123,152,227,64,239,212,157,125,111,236,63,28,107,73,46,216,184,118, + 243,43,0,172,15,126,255,81,188,181,41,246,240,254,55,15,190,111,36,13, + 174,35,43,0,152,152,78,203,51,146,6,219,255,230,193,247,91,155,98,15, + 35,205,159,138,152,254,193,239,63,146,231,193,73,72,12,97,168,72,11,53, + 131,1,58,0,29,140,233,16,206,131,243,185,223,253,80,181,204,162,100,78, + 108,122,135,126,160,165,190,101,129,23,177,9,120,129,188,95,189,226,133,229, + 190,231,193,101,240,97,38,154,146,212,205,205,131,233,5,207,126,47,39,143, + 117,98,245,123,235,95,93,190,242,193,121,237,157,45,29,60,64,166,185,165, + 121,199,163,79,47,157,211,220,218,232,185,245,22,88,90,115,107,233,104,108, + 106,106,61,60,231,169,239,63,181,67,81,20,24,166,142,150,142,198,142,198, + 214,195,243,158,120,106,133,123,30,28,101,153,250,198,198,59,68,63,92,55, + 130,200,188,183,28,7,9,195,64,123,34,177,246,123,79,62,153,181,241,50, + 29,127,17,30,196,6,0,88,93,91,187,3,233,237,183,110,67,90,11,218, + 9,224,177,204,162,110,142,22,0,191,2,128,204,14,38,255,10,96,95,70, + 195,3,182,194,220,184,118,227,43,201,14,253,246,189,111,28,56,162,119,232, + 14,35,90,23,115,24,244,14,221,217,251,198,129,35,201,14,253,246,141,107, + 55,190,130,173,112,87,202,191,189,242,205,125,122,76,95,180,239,173,131,29, + 118,202,82,186,165,191,121,176,195,212,187,22,214,219,41,75,217,247,214,193, + 14,61,166,47,122,123,229,155,251,220,116,195,130,87,186,132,132,196,208,132, + 10,176,118,85,177,118,192,234,124,131,89,29,91,96,117,190,17,80,157,247, + 21,69,233,96,140,217,0,235,80,21,235,125,159,251,228,132,206,116,0,131, + 197,137,109,79,203,130,35,239,31,157,252,216,3,143,247,184,55,165,176,190, + 13,72,111,199,117,37,185,166,129,14,31,46,186,102,113,183,243,224,44,195, + 70,60,105,33,158,52,17,211,253,95,113,221,130,110,216,112,4,150,19,53, + 179,250,189,245,175,126,247,123,223,154,217,210,222,220,196,37,110,115,115,243, + 142,71,191,191,116,78,75,219,177,38,145,45,44,199,70,107,103,83,83,83, + 235,225,57,223,127,250,169,29,0,96,59,54,90,58,155,154,142,182,28,156, + 249,36,33,55,177,190,71,150,47,255,235,222,198,198,59,44,59,221,174,46, + 87,84,23,177,49,198,96,90,22,226,186,142,246,120,124,119,115,103,231,245, + 200,46,208,29,255,144,19,194,132,81,189,178,222,62,0,160,4,233,173,186, + 94,202,44,25,224,56,152,73,219,159,209,220,238,66,58,184,229,191,178,74, + 216,10,243,181,95,109,248,67,162,77,191,125,223,223,14,28,73,197,12,198, + 59,144,138,25,108,223,223,14,28,73,180,233,183,191,246,171,13,127,160,228, + 198,177,254,225,215,55,196,143,37,238,109,170,107,54,40,57,174,127,248,245, + 13,237,13,29,75,155,119,183,152,124,146,210,84,215,108,180,31,233,92,186, + 254,225,215,55,184,221,119,24,154,118,53,155,241,99,137,123,105,186,132,132, + 196,208,133,166,105,202,238,225,37,248,185,105,217,195,192,160,66,129,19,80, + 213,142,160,166,238,5,160,107,1,101,239,240,18,60,239,117,159,49,102,1, + 128,227,48,88,41,11,169,184,209,209,113,168,99,105,236,88,252,217,149,207, + 172,236,213,121,112,139,174,89,124,215,138,23,150,31,2,48,31,64,136,159, + 28,176,232,154,197,51,86,188,176,156,33,29,80,242,98,55,205,45,131,29, + 123,90,31,208,13,7,204,203,95,35,192,97,12,9,221,222,64,211,82,102, + 183,13,234,209,220,210,188,227,137,149,203,230,156,113,70,245,28,55,173,185, + 123,26,0,36,245,120,99,103,162,213,37,55,191,52,191,250,190,253,221,239, + 46,255,246,93,119,181,157,86,81,241,88,80,211,42,212,204,190,84,12,105, + 255,160,153,49,75,182,39,18,107,155,59,59,175,127,250,153,103,220,243,224, + 24,3,172,148,5,24,10,106,206,190,4,151,206,204,255,176,83,32,189,59, + 201,181,53,53,75,144,222,205,228,182,107,107,106,182,33,189,206,173,37,147, + 197,200,44,242,158,129,180,182,247,196,234,218,218,67,221,10,170,67,106,253, + 175,215,191,252,153,235,46,15,236,171,221,191,140,1,71,0,96,95,237,254, + 14,51,102,46,89,255,235,245,47,163,14,126,223,11,118,184,238,240,170,72, + 81,240,18,203,176,186,66,254,39,35,216,184,175,241,167,37,229,209,139,76, + 195,138,1,64,203,238,150,151,26,247,30,253,41,136,162,107,38,204,163,45, + 187,91,94,58,92,119,120,21,112,220,102,119,9,9,137,83,8,202,227,143, + 63,174,48,198,52,199,113,20,198,152,2,69,97,138,162,48,85,81,172,59, + 239,188,147,245,116,31,0,238,121,120,201,237,0,134,117,52,116,62,241,204, + 211,207,156,240,145,57,226,209,56,244,232,156,83,29,183,46,92,56,186,162, + 184,248,223,139,35,145,121,33,77,155,198,128,168,97,154,13,73,195,168,237, + 76,38,159,19,205,146,10,128,77,127,219,204,82,134,206,163,34,123,5,145, + 9,174,174,169,249,50,128,203,0,140,98,64,105,58,19,139,43,138,114,0, + 192,95,95,76,71,80,230,196,216,177,99,163,19,191,124,230,103,58,14,180, + 29,4,128,97,227,202,199,238,254,213,222,87,14,30,60,216,227,113,54,159, + 186,237,146,143,37,91,99,165,111,63,255,238,95,199,142,29,27,12,6,131, + 86,125,125,61,203,164,23,1,64,180,162,36,177,233,169,191,102,157,251,246, + 137,235,207,191,36,90,81,210,41,166,203,211,4,36,36,134,46,148,183,223, + 126,187,71,1,192,205,105,74,38,210,47,29,25,152,254,175,105,26,20,69, + 129,170,170,238,127,209,220,199,24,131,227,56,176,109,27,138,162,192,182,109, + 56,100,35,97,71,216,215,81,233,69,68,161,23,248,174,32,129,64,32,43, + 157,215,69,255,219,182,157,213,30,177,45,188,61,170,170,34,16,8,184,239, + 249,139,246,157,49,230,142,141,88,239,137,244,107,48,143,255,249,231,159,159, + 222,1,57,243,140,227,56,112,28,199,29,15,90,30,109,103,190,224,109,93, + 182,108,25,214,174,93,139,162,162,34,216,182,237,126,182,185,222,243,190,91, + 25,133,48,16,8,164,215,200,41,10,130,193,96,214,51,129,64,0,37,37, + 37,184,228,146,75,176,96,193,2,183,79,253,221,47,69,81,240,143,191,191, + 155,247,115,18,253,15,69,81,240,241,233,23,228,204,243,206,246,173,152,49, + 227,19,10,144,99,247,63,0,10,119,183,203,137,214,128,32,239,157,76,168, + 96,15,4,2,208,52,205,253,79,133,63,133,27,244,65,4,44,23,56,156, + 92,184,224,56,158,197,206,34,120,61,188,173,20,180,30,203,178,220,151,97, + 24,176,109,27,150,101,185,100,199,251,235,215,239,96,48,152,53,6,129,64, + 192,205,195,235,167,99,193,133,34,23,174,199,131,193,58,254,169,84,10,31, + 124,240,193,113,245,169,183,184,236,178,203,240,133,47,124,161,223,235,97,140, + 193,48,12,124,248,225,135,89,147,9,10,113,242,4,100,127,103,248,231,197, + 39,15,116,156,249,53,99,12,251,247,239,199,248,113,167,247,103,119,36,122, + 137,124,200,237,173,183,222,2,192,99,219,252,127,55,138,162,48,165,167,181, + 69,18,253,134,188,8,142,11,208,64,32,128,96,48,136,96,48,152,37,232, + 197,217,43,213,10,184,80,229,130,95,252,207,181,10,254,158,126,89,188,200, + 194,15,92,96,136,109,17,137,205,48,12,152,166,137,84,42,133,84,42,5, + 211,52,97,154,166,43,236,1,111,114,163,99,160,105,26,52,77,67,40,20, + 234,54,22,84,139,162,109,231,255,143,71,155,27,204,227,207,53,161,83,13, + 193,96,208,29,87,47,226,226,80,85,21,161,80,200,157,196,240,49,227,8, + 4,2,112,28,199,253,79,53,55,199,113,240,198,27,111,96,252,184,171,10, + 222,63,137,252,240,206,246,173,89,215,163,70,87,118,35,183,141,27,63,244, + 125,254,123,223,251,29,190,249,205,121,76,50,220,192,192,151,224,184,128,230, + 102,48,46,208,249,203,75,0,208,31,47,47,67,44,79,20,150,156,12,184, + 208,16,181,9,90,134,159,160,229,90,138,56,171,22,137,205,48,12,232,186, + 142,100,50,137,100,50,153,69,108,252,121,222,39,63,226,224,36,192,95,182, + 109,35,24,12,194,113,28,151,120,120,191,104,191,123,234,195,201,58,254,94, + 38,217,254,66,62,27,82,247,5,168,121,146,246,153,127,22,116,210,195,175, + 169,249,146,183,147,79,50,52,77,131,227,56,238,51,220,82,160,40,10,26, + 27,27,11,210,167,161,10,254,187,119,28,134,84,42,5,195,52,224,56,78, + 250,125,42,133,170,170,211,80,86,54,204,243,123,44,146,27,0,52,53,30, + 233,150,38,49,120,209,141,224,168,134,193,205,96,161,80,8,225,112,24,225, + 112,216,21,174,252,199,79,77,93,212,159,69,53,7,160,235,199,78,201,193, + 171,94,14,90,62,23,206,126,38,62,46,60,196,52,110,134,228,218,90,60, + 30,71,34,145,64,50,153,204,34,3,81,51,18,133,24,111,143,216,70,74, + 118,212,167,21,10,133,220,247,84,155,203,7,39,219,248,123,249,44,251,11, + 94,102,193,254,128,104,78,230,159,5,245,119,82,243,48,144,77,244,154,166, + 101,153,130,249,228,73,252,158,122,125,111,37,242,71,79,228,69,53,102,238, + 127,21,223,71,34,97,68,163,81,164,82,189,10,250,246,196,236,217,93,71, + 90,230,210,234,36,10,135,44,130,19,133,171,166,105,8,135,195,136,68,34, + 136,68,34,8,133,66,174,102,195,5,43,39,17,211,52,179,252,88,212,223, + 224,5,94,23,213,24,196,103,168,32,246,35,9,106,98,227,160,228,166,235, + 58,226,241,56,98,177,24,18,137,4,116,93,119,235,8,6,131,46,113,80, + 242,224,230,64,46,80,105,27,196,182,210,153,187,101,89,80,85,21,134,97, + 184,229,208,190,136,218,160,151,207,236,100,27,255,19,13,8,26,172,160,228, + 198,39,62,156,220,188,180,103,241,25,32,77,200,252,51,161,154,53,13,4, + 42,46,46,46,100,183,78,26,164,45,44,233,224,160,68,34,1,211,50,221, + 247,150,105,102,77,236,252,200,139,255,134,67,153,223,16,255,77,69,194,145, + 204,61,21,147,38,77,130,170,170,56,112,224,192,9,183,121,197,138,223,187, + 239,47,184,224,172,19,46,79,226,196,209,77,131,163,194,149,11,214,104,52, + 138,112,56,236,254,168,185,96,53,12,195,245,99,241,96,141,158,132,43,215, + 152,248,123,145,60,168,38,4,100,207,140,253,252,87,226,172,152,11,252,100, + 50,137,120,60,142,206,206,78,196,98,49,152,153,31,6,239,91,81,81,17, + 138,138,138,92,130,227,26,147,104,154,164,230,59,218,78,222,95,106,230,164, + 17,156,162,246,38,106,5,94,164,113,162,227,47,6,51,80,240,250,250,122, + 252,11,133,66,154,40,249,127,170,169,81,127,155,95,32,145,152,198,191,83, + 134,97,100,105,251,94,26,221,80,0,183,168,216,118,250,251,233,71,94,166, + 153,78,11,6,131,190,239,123,34,175,72,36,210,163,214,223,151,227,47,73, + 109,240,33,139,224,168,249,133,11,86,42,92,185,150,146,74,165,160,235,58, + 116,93,135,97,24,46,161,136,225,231,98,185,220,84,195,5,21,37,18,250, + 227,167,193,30,244,189,151,16,161,95,96,78,58,92,115,139,197,98,232,232, + 232,64,44,22,131,101,165,207,101,11,135,195,40,46,46,70,73,73,9,138, + 139,139,179,52,55,222,119,94,31,133,24,253,38,70,33,82,115,20,144,173, + 89,138,36,33,206,244,79,116,252,121,159,189,198,158,142,29,23,168,212,4, + 119,162,227,47,214,213,159,40,164,137,18,64,150,153,154,107,207,0,186,17, + 156,72,118,162,214,203,181,64,46,156,185,207,142,90,9,78,5,80,242,178, + 109,27,122,74,207,178,164,216,153,239,168,109,219,238,247,220,143,188,66,161, + 16,180,96,16,69,69,233,77,201,131,26,121,31,212,16,141,246,234,164,168, + 130,64,154,40,7,31,178,8,142,255,144,195,225,180,93,154,107,55,252,7, + 105,89,150,27,160,161,235,186,171,61,80,225,234,21,121,39,154,186,120,93, + 94,51,88,254,28,39,36,46,244,169,47,204,15,142,227,184,154,91,103,103, + 39,218,219,219,17,143,199,97,154,38,84,85,69,52,26,69,105,105,41,134, + 13,27,134,104,52,234,154,253,188,124,41,162,224,22,181,49,58,11,23,163, + 228,104,95,249,152,228,211,254,222,142,63,213,154,197,9,69,174,128,16,234, + 143,19,125,139,39,50,254,167,26,184,255,147,79,126,128,220,228,38,126,231, + 233,100,130,11,116,254,89,241,188,37,37,37,5,238,213,241,33,31,127,23, + 37,47,110,105,16,223,115,141,56,148,177,154,0,39,7,121,229,3,105,162, + 28,124,208,68,191,79,48,24,204,242,249,240,89,188,97,24,174,112,77,36, + 18,46,185,81,173,141,195,107,86,207,163,11,169,80,165,117,123,145,34,23, + 196,52,76,158,11,11,17,92,139,225,193,36,157,157,157,136,199,227,176,44, + 11,129,64,0,69,69,69,24,54,108,24,134,13,27,150,165,185,121,9,111, + 191,96,10,170,197,208,232,67,234,115,225,68,231,7,145,80,142,103,252,147, + 201,164,75,110,126,196,230,103,198,21,201,151,182,233,120,198,191,144,132,87, + 40,19,37,181,54,240,201,143,168,141,139,11,234,115,249,226,248,248,210,104, + 74,26,85,57,208,232,139,96,13,110,146,167,228,165,170,42,34,225,72,102, + 130,160,184,17,192,167,10,20,64,81,20,133,49,150,94,42,32,146,218,214, + 173,31,225,155,223,156,199,23,123,203,133,222,3,0,13,200,22,174,52,232, + 130,255,248,184,112,141,199,227,136,199,227,46,185,209,160,11,142,92,154,3, + 189,207,5,170,151,198,199,5,137,105,154,89,107,134,184,208,17,133,49,255, + 1,242,101,0,137,68,194,37,55,69,81,80,84,84,132,178,178,50,148,149, + 149,161,184,184,24,209,104,180,155,224,226,16,133,62,133,23,113,83,114,230, + 194,95,28,19,154,207,43,104,163,55,227,159,72,36,220,137,133,168,69,120, + 245,135,143,63,173,155,154,50,41,209,81,115,100,190,227,95,72,130,227,59, + 146,244,55,184,166,69,23,241,139,227,235,245,157,165,160,147,6,254,159,7, + 168,112,115,182,159,166,221,151,240,11,214,232,45,121,245,133,191,235,84,4, + 39,185,142,142,14,108,219,214,117,94,176,64,110,18,3,4,151,224,196,112, + 116,62,67,165,193,26,241,120,28,186,174,187,130,15,200,22,138,126,160,230, + 61,175,64,5,47,45,132,10,101,234,23,226,235,136,184,70,200,219,192,181, + 55,78,110,220,44,25,137,68,80,94,94,142,97,195,134,161,164,164,36,139, + 220,120,121,94,109,160,160,66,158,223,247,10,30,17,181,59,81,75,162,253, + 19,239,229,51,254,148,220,104,89,252,121,63,225,75,181,13,81,123,20,201, + 142,151,155,239,248,23,146,224,90,91,91,11,86,23,31,83,170,161,123,245, + 85,212,210,232,119,194,11,92,27,230,227,125,188,26,205,137,6,107,80,82, + 147,228,117,98,80,0,101,216,176,97,46,201,73,114,27,60,208,248,15,153, + 175,3,163,59,114,136,164,193,23,71,123,9,110,14,49,93,92,240,236,39, + 44,188,52,56,238,132,166,51,119,69,73,59,236,169,6,200,125,111,188,173, + 169,84,10,140,49,132,195,97,148,150,150,162,164,164,196,37,55,186,134,140, + 182,87,108,7,245,83,209,123,94,233,252,90,52,185,82,146,160,117,82,19, + 102,190,227,159,72,36,92,179,36,213,40,248,203,75,195,160,109,161,97,234, + 148,212,104,159,232,189,124,199,191,144,4,215,208,208,80,144,122,120,191,232, + 36,74,52,37,138,86,4,62,254,162,5,64,212,216,197,223,135,23,113,20, + 42,88,67,146,87,223,129,146,220,156,57,83,36,185,13,18,104,212,60,70, + 29,234,34,185,165,82,169,110,145,130,128,119,232,184,151,6,148,203,215,224, + 69,118,148,228,248,143,155,223,163,130,157,106,111,60,248,194,182,109,132,66, + 33,20,21,21,185,4,199,151,1,208,242,189,180,48,63,147,171,216,111,209, + 220,232,213,39,241,37,46,103,224,117,246,52,254,92,115,227,227,72,181,11, + 122,45,214,67,251,73,181,6,170,153,137,125,161,159,107,62,227,95,72,130, + 75,38,123,60,140,160,79,64,77,138,28,185,250,41,78,42,252,190,15,52, + 47,173,203,11,150,149,29,161,203,181,118,59,243,254,84,14,214,56,89,193, + 73,78,146,219,224,129,198,5,21,55,77,208,104,64,30,142,78,215,88,249, + 253,120,189,200,2,72,11,114,190,179,131,151,246,70,127,240,156,176,168,16, + 229,130,155,177,174,93,225,169,112,165,235,222,184,111,80,81,210,14,237,146, + 146,18,20,21,21,185,179,84,81,32,139,237,21,77,141,126,179,111,10,49, + 104,131,183,73,12,76,240,210,94,105,160,65,174,241,231,90,51,127,150,247, + 133,143,13,221,3,211,203,15,199,199,149,182,83,12,154,161,11,214,105,90, + 79,227,95,72,130,43,228,50,129,92,19,178,92,62,72,175,239,148,120,159, + 62,227,181,151,167,170,170,40,46,238,90,159,105,219,182,27,20,101,89,150, + 59,17,226,107,235,0,184,86,11,254,189,201,21,232,36,209,71,240,56,33, + 32,243,201,202,128,146,65,2,141,11,87,186,243,6,143,218,227,107,173,120, + 132,98,79,51,83,47,136,218,132,248,172,232,195,160,130,133,146,28,255,241, + 114,194,164,100,64,183,227,98,140,33,152,49,201,240,23,159,237,138,117,229, + 154,73,139,218,153,151,214,154,43,159,168,237,209,53,84,212,12,216,211,248, + 243,62,121,17,63,253,223,147,153,82,244,11,82,179,37,245,167,210,205,129, + 169,9,204,111,252,253,52,144,147,25,162,182,222,83,94,209,244,232,55,25, + 242,122,182,188,188,188,91,58,141,90,21,181,101,250,61,225,223,105,158,46, + 154,163,3,129,128,75,118,138,162,100,17,31,223,174,78,66,226,84,134,70, + 183,165,162,26,17,39,12,190,144,187,167,25,161,248,3,231,160,26,141,8, + 63,179,13,77,163,63,112,78,178,134,97,184,66,150,250,223,120,100,33,55, + 79,114,159,27,23,20,98,91,189,218,34,154,241,104,31,252,72,208,239,90, + 140,16,229,239,105,36,98,79,227,79,199,158,142,133,72,110,226,139,214,71, + 73,151,246,131,146,155,72,246,94,101,122,141,127,33,81,40,129,204,199,39, + 151,105,93,28,47,175,239,175,95,123,233,247,132,155,20,189,242,240,240,125, + 63,112,98,227,129,42,124,162,196,223,3,93,75,87,232,231,165,105,26,74, + 75,75,221,247,126,36,200,79,222,56,21,39,49,18,67,3,26,128,172,168, + 66,46,96,41,177,113,226,160,194,95,132,223,15,158,154,185,120,62,81,195, + 240,3,23,226,116,199,118,238,79,226,109,227,4,199,215,132,241,93,64,34, + 145,136,39,185,229,154,93,139,1,2,252,61,37,119,209,116,73,255,139,101, + 81,115,160,184,107,5,53,151,250,141,63,221,204,89,12,87,207,69,116,94, + 254,35,145,184,197,113,160,187,156,240,255,84,56,250,141,127,33,181,128,66, + 154,40,197,5,251,126,100,39,154,168,197,168,92,175,73,144,24,212,115,34, + 237,236,137,4,129,244,184,113,127,156,170,170,8,135,195,110,91,233,153,134, + 34,9,242,49,224,145,179,252,179,166,129,71,146,4,37,6,51,52,186,30, + 12,232,218,13,132,191,196,168,65,145,148,252,8,143,195,75,40,121,249,193, + 252,238,139,130,155,11,127,190,99,63,61,172,148,49,230,134,218,243,69,165, + 94,209,111,249,182,157,230,17,5,145,72,116,94,63,112,26,185,72,53,82, + 90,110,174,241,167,235,165,196,177,200,135,228,68,127,162,159,73,82,236,171, + 72,112,185,198,255,84,244,245,208,201,137,152,38,106,197,84,243,7,208,109, + 50,72,239,113,63,102,79,123,134,246,53,108,219,70,44,22,203,153,199,143, + 4,185,69,132,78,156,120,20,45,53,123,243,239,181,244,11,74,12,38,184, + 235,224,128,236,189,28,169,223,205,203,231,228,229,199,162,160,196,144,203,15, + 39,194,203,212,67,9,128,11,16,26,244,194,5,5,245,103,81,226,16,73, + 78,212,98,68,223,156,152,87,12,208,240,18,124,126,99,64,65,55,96,22, + 77,137,64,247,241,167,218,145,87,160,10,55,113,122,145,156,56,214,126,68, + 77,205,168,124,172,232,34,114,49,90,82,28,255,66,162,208,62,35,170,185, + 81,77,60,223,231,188,126,55,94,231,9,14,6,228,67,130,156,248,184,69, + 134,71,111,114,18,4,122,246,11,42,138,34,73,80,162,96,208,232,12,148, + 11,88,145,220,104,158,158,180,47,49,93,36,55,209,60,153,171,60,154,135, + 70,243,81,179,164,184,8,89,36,56,222,110,90,166,159,137,81,236,167,151, + 150,150,143,230,70,33,206,210,121,29,98,84,167,56,254,126,228,38,106,110, + 185,76,150,180,191,126,130,131,206,196,233,120,81,18,206,53,254,61,77,88, + 250,18,133,50,81,82,50,23,39,71,94,90,47,255,79,63,75,175,239,69, + 122,59,172,46,205,141,155,24,79,22,56,142,147,181,84,163,179,179,179,91, + 158,158,252,130,220,106,145,47,9,138,126,65,25,28,35,209,27,104,162,80, + 167,2,214,75,67,19,77,50,94,224,207,137,59,243,251,249,223,196,247,34, + 193,136,66,134,174,11,162,224,4,71,201,141,182,199,203,180,36,182,155,182, + 129,154,246,104,158,158,180,54,81,51,164,229,138,190,177,158,198,95,212,242, + 188,76,144,148,228,196,37,4,64,182,169,212,171,173,212,44,73,235,161,19, + 7,191,241,63,85,125,47,220,156,200,251,78,35,70,45,203,242,13,176,241, + 210,218,120,89,226,119,170,80,38,202,66,130,147,246,137,4,199,80,18,228, + 190,65,126,79,6,199,72,244,6,26,253,129,209,211,160,57,68,237,199,235, + 189,87,30,81,115,243,50,201,137,196,39,150,193,103,117,84,240,210,147,170, + 249,94,147,212,119,68,207,116,163,101,139,51,109,191,126,137,90,157,104,6, + 21,251,203,243,240,114,168,214,43,18,33,53,183,114,242,202,53,254,52,31, + 29,83,218,47,47,162,163,166,74,113,28,105,251,189,158,165,237,162,109,245, + 27,255,66,162,208,81,148,148,224,196,73,0,215,94,69,173,87,156,212,240, + 113,18,53,55,254,226,187,142,12,37,28,15,9,246,87,112,140,196,169,13, + 13,64,150,80,21,181,21,63,19,148,232,187,162,16,53,12,42,108,69,51, + 19,21,8,98,0,134,168,81,248,205,200,168,160,161,102,63,145,200,168,128, + 23,201,69,44,219,107,182,237,103,218,228,240,58,30,196,207,132,69,219,151, + 107,252,189,34,247,252,52,98,154,206,137,142,10,222,92,47,90,182,88,86, + 174,241,47,164,137,178,80,59,115,208,224,9,186,254,147,11,86,209,76,77, + 33,126,206,148,220,40,233,241,87,42,149,42,72,159,78,54,228,67,130,192, + 137,7,199,148,148,20,35,145,72,20,162,75,18,3,0,215,206,146,143,63, + 137,126,49,184,249,128,30,236,201,193,175,169,159,73,52,89,138,154,148,72, + 110,180,44,192,251,52,109,175,246,229,11,170,25,250,145,27,213,86,168,169, + 82,156,197,243,52,14,241,24,27,113,76,114,213,153,11,185,76,187,94,240, + 19,196,98,57,180,44,175,118,3,254,227,95,72,51,208,196,137,19,11,82, + 15,141,50,5,178,39,36,182,109,103,157,15,231,101,98,164,147,22,81,99, + 163,227,231,245,61,145,232,29,78,52,56,38,189,119,237,201,227,7,149,232, + 29,52,32,123,109,142,159,95,128,207,130,196,133,193,126,26,4,125,209,125, + 18,105,121,244,191,152,46,66,52,19,210,231,243,217,245,157,151,225,117,79, + 212,242,168,48,167,255,249,248,248,105,86,244,190,8,209,12,232,213,55,254, + 188,223,248,139,109,247,19,142,220,47,145,75,203,160,229,122,193,175,141,226, + 248,23,18,151,93,118,89,65,234,49,77,211,157,237,243,254,154,166,153,117, + 132,140,24,228,195,65,181,53,47,114,19,45,2,146,224,250,31,249,4,199, + 120,97,212,232,74,52,53,30,201,74,123,235,173,183,250,180,109,18,253,11, + 141,207,36,189,4,47,245,197,80,114,19,119,226,0,186,19,150,223,154,172, + 158,224,69,66,226,108,152,250,183,168,207,201,139,0,68,19,161,40,84,168, + 0,226,215,188,78,47,45,142,182,137,230,167,229,137,239,121,27,233,88,241, + 23,15,216,240,26,127,209,228,72,163,204,188,198,141,183,147,251,220,168,86, + 38,10,91,63,242,163,117,139,38,84,175,241,95,182,108,153,231,243,253,129, + 207,126,246,179,89,159,121,190,16,63,63,209,68,76,77,232,116,124,54,111, + 222,140,247,222,123,15,64,87,32,4,223,33,135,159,182,206,15,165,5,178, + 77,143,220,247,198,195,224,249,153,126,124,111,87,190,75,80,91,91,27,46, + 155,115,105,95,14,147,68,31,224,157,237,91,37,153,157,2,208,68,129,238, + 21,210,78,77,138,34,145,249,249,111,196,217,45,21,152,244,25,63,161,46, + 206,122,233,250,48,113,231,124,78,180,84,248,122,105,82,94,228,227,103,42, + 20,73,161,39,205,133,214,45,18,19,255,79,253,98,180,46,175,241,23,219, + 197,195,211,69,205,76,36,54,177,61,244,90,212,14,189,218,225,149,63,215, + 248,63,240,192,3,158,227,209,31,40,100,93,133,196,210,251,191,61,208,77, + 144,32,200,135,220,46,188,240,194,2,181,70,226,68,160,49,198,178,162,225, + 232,236,214,79,91,240,18,228,244,25,49,160,196,207,191,70,159,21,103,213, + 162,246,64,119,246,224,101,83,231,49,143,158,226,218,11,21,252,52,250,205, + 139,228,232,123,47,114,243,123,134,150,231,71,124,156,124,233,126,147,162,38, + 229,55,254,94,16,251,69,181,58,74,194,94,132,151,203,68,230,167,213,113, + 13,223,111,252,37,78,28,23,124,226,162,129,110,130,132,196,41,9,77,92, + 44,77,5,38,53,75,138,228,228,229,115,3,178,151,7,240,255,220,12,68, + 211,121,153,126,105,188,45,220,212,195,195,122,189,252,31,60,76,216,203,215, + 65,77,127,162,111,138,214,41,106,67,226,61,191,231,196,107,81,123,163,161, + 204,220,148,74,181,203,158,198,223,75,91,243,122,81,114,163,129,63,126,26, + 159,159,185,146,18,31,93,244,239,55,254,18,18,18,18,131,21,26,23,106, + 124,77,25,208,61,60,221,203,84,73,239,249,105,114,94,102,76,47,205,143, + 150,77,35,53,41,185,241,211,2,0,100,17,134,162,116,29,24,74,253,79, + 98,4,155,168,41,250,153,231,114,153,237,252,32,62,47,146,156,215,206,42, + 188,141,185,198,159,247,129,146,20,37,109,218,95,10,234,247,20,219,233,229, + 139,163,47,218,6,74,110,126,227,47,33,33,33,49,88,161,113,65,6,100, + 175,117,18,181,8,47,97,223,19,241,137,154,79,46,179,27,125,134,154,209, + 76,211,116,207,69,179,44,43,107,97,39,245,107,105,154,230,154,250,196,117, + 101,98,196,163,151,41,142,95,139,38,72,177,191,185,198,65,76,11,4,2, + 238,166,207,60,180,156,134,137,83,77,9,232,62,254,244,191,151,89,210,203, + 60,201,243,250,17,156,168,245,209,177,230,227,69,195,216,123,26,127,9,9, + 9,137,193,10,141,11,52,42,12,105,40,60,247,17,249,105,103,28,94,193, + 36,94,102,73,63,50,224,160,166,59,30,121,150,72,36,220,173,119,52,77, + 67,40,20,202,50,249,113,13,142,158,42,64,181,34,49,66,209,207,212,40, + 106,66,185,206,243,242,234,7,37,22,222,78,126,42,51,93,55,197,201,131, + 70,220,249,141,63,207,207,15,34,21,125,120,52,178,85,92,194,32,110,87, + 38,150,47,106,116,212,55,199,35,0,123,26,127,9,9,9,137,193,10,77, + 20,116,128,191,38,227,103,178,243,18,246,98,96,135,87,25,185,52,12,126, + 136,41,15,173,54,77,19,170,170,102,29,135,35,250,225,66,161,16,12,195, + 112,253,80,94,38,74,94,175,151,105,82,244,87,241,133,236,52,143,95,127, + 121,58,215,42,249,54,67,225,112,56,235,112,86,78,188,124,135,139,158,198, + 95,76,243,90,42,64,253,110,116,187,45,47,130,22,137,81,92,183,197,201, + 151,31,184,218,211,248,75,72,72,72,12,86,104,64,87,160,3,221,218,137, + 106,51,148,172,68,109,195,207,31,71,65,201,205,207,31,199,175,41,185,37, + 18,9,116,118,118,34,153,76,194,113,28,79,114,3,210,218,11,95,152,75, + 219,78,215,248,81,109,82,36,16,47,50,17,239,209,103,253,32,146,109,56, + 28,70,36,18,113,55,142,229,228,70,79,66,200,103,252,105,91,168,153,146, + 182,197,111,139,50,47,237,216,203,23,71,181,73,238,115,203,119,252,37,36, + 36,36,6,35,220,157,76,196,255,94,130,31,232,121,131,100,254,158,154,202, + 68,120,249,236,168,118,163,235,58,18,137,4,58,58,58,92,243,152,166,105, + 136,68,34,136,70,163,8,135,195,238,105,221,188,29,220,55,196,9,146,150, + 233,21,64,33,246,203,139,184,68,146,161,109,167,207,81,127,37,61,81,188, + 168,168,40,107,9,3,141,70,164,4,151,207,248,243,247,226,130,123,113,221, + 162,151,105,88,212,76,105,223,196,117,110,212,44,156,207,248,75,72,72,72, + 12,86,100,237,69,73,215,145,81,13,193,75,75,203,53,123,231,230,61,145, + 52,188,204,148,148,128,56,185,197,227,113,116,116,116,32,22,139,33,149,74, + 65,81,20,87,184,70,34,17,207,211,2,20,69,201,210,226,168,47,143,70, + 255,137,235,191,196,246,240,50,41,81,136,102,74,170,5,210,53,127,148,4, + 248,78,23,188,77,60,96,195,48,12,207,227,126,242,25,127,186,20,128,155, + 37,197,253,65,57,1,138,228,39,214,37,142,15,215,220,146,201,100,175,198, + 95,66,66,66,98,176,194,61,77,192,43,16,67,20,178,148,216,168,70,193, + 193,239,121,69,99,210,114,169,192,230,245,240,160,134,120,60,142,206,206,78, + 116,116,116,64,215,117,48,198,186,145,6,93,34,192,235,224,130,157,155,3, + 233,70,182,162,6,42,134,221,139,26,14,205,239,69,110,98,89,220,231,22, + 14,135,221,118,70,163,81,247,8,15,30,48,195,183,103,18,79,195,238,205, + 248,211,118,114,205,85,52,191,170,170,218,45,48,200,75,75,164,17,147,134, + 97,184,147,139,222,142,191,132,132,132,196,96,132,6,100,155,12,197,112,115, + 122,182,18,23,230,244,191,31,252,76,148,162,246,198,3,46,184,207,167,189, + 189,29,157,157,157,136,199,227,238,206,237,69,69,69,40,46,46,70,36,18, + 113,77,126,94,230,81,177,109,148,188,232,2,101,218,22,209,228,40,146,31, + 5,173,147,46,81,224,1,37,220,44,201,205,120,156,104,185,79,145,147,155, + 120,142,90,111,199,159,107,200,162,70,74,215,217,241,54,138,99,79,9,142, + 106,149,39,50,254,18,18,18,18,131,17,158,199,18,83,191,18,208,21,218, + 78,253,76,94,66,151,10,105,113,23,14,0,89,100,195,203,180,44,203,245, + 249,116,118,118,34,22,139,185,65,13,193,96,16,165,165,165,40,41,41,65, + 81,81,145,27,176,225,69,156,148,36,184,118,33,158,74,46,6,101,208,245, + 100,226,61,209,60,72,3,109,0,100,237,80,194,53,55,238,123,227,167,19, + 243,104,68,186,201,110,62,39,13,231,59,254,124,156,249,53,55,89,210,64, + 20,175,178,233,216,155,166,217,39,227,47,33,33,33,49,216,144,69,112,52, + 4,221,75,200,242,251,84,123,241,59,53,192,47,64,131,155,231,168,112,141, + 199,227,72,38,147,174,207,7,0,130,193,32,74,74,74,92,1,27,141,70, + 179,206,225,226,166,67,110,6,228,229,231,210,94,248,127,254,12,93,155,38, + 250,230,184,185,83,108,63,237,55,93,231,198,223,83,114,227,102,63,190,80, + 186,39,114,59,145,241,167,39,42,248,105,206,138,210,117,122,65,95,141,191, + 132,132,132,196,96,133,38,134,240,139,2,152,106,11,116,135,16,186,207,162, + 72,112,126,51,124,106,146,164,199,135,164,15,29,76,155,240,56,113,20,21, + 21,161,164,164,4,37,37,37,89,161,246,94,17,145,212,215,228,213,118,14, + 218,54,113,153,1,47,75,212,230,196,103,233,222,151,188,93,124,225,51,143, + 226,228,166,63,222,63,93,215,179,214,189,209,50,57,78,214,241,151,144,144, + 144,24,172,112,85,20,170,53,136,33,233,84,200,82,13,140,63,199,133,171, + 120,130,55,7,53,137,209,189,13,249,127,46,252,105,20,98,113,113,49,138, + 139,139,93,173,136,147,7,111,151,104,2,245,10,168,240,10,140,161,105,162, + 214,41,6,121,208,50,121,223,184,89,146,135,201,211,128,11,170,25,113,211, + 36,141,154,244,35,183,147,125,252,37,36,36,36,6,35,178,108,112,162,70, + 193,211,168,96,103,44,125,120,35,0,247,248,20,209,95,37,70,237,137,62, + 31,254,159,154,221,248,162,104,30,173,23,137,68,178,214,91,137,237,161,245, + 249,133,249,139,109,242,50,165,138,145,136,226,130,105,145,64,232,246,96,212, + 255,72,215,145,209,151,23,185,137,99,124,178,143,191,132,132,132,196,96,132, + 103,144,137,151,198,195,211,185,176,229,139,169,169,79,135,11,91,113,251,39, + 78,0,226,238,25,124,51,98,238,199,226,2,150,111,80,44,30,240,73,219, + 38,182,215,43,132,223,203,156,198,247,117,164,249,40,209,1,217,167,145,211, + 117,110,162,118,68,53,42,211,52,93,205,141,147,136,72,64,98,219,252,112, + 178,141,191,132,132,132,196,96,132,39,193,1,217,235,215,184,160,229,154,11, + 205,99,154,166,43,252,69,63,147,40,24,249,179,92,112,242,240,122,241,197, + 133,56,21,166,94,166,183,158,224,69,124,20,84,216,83,50,20,235,225,229, + 136,107,230,232,121,105,84,59,226,233,126,228,150,111,219,79,246,241,151,144, + 144,144,24,72,248,18,28,133,40,244,185,79,198,178,44,119,23,127,190,253, + 20,53,125,209,173,168,248,179,52,80,131,107,9,212,159,37,174,175,163,38, + 194,158,218,200,225,231,147,227,233,94,123,63,242,247,92,139,163,123,110,138, + 65,27,156,68,40,153,81,45,202,43,80,197,207,156,154,15,78,134,241,151, + 144,144,144,24,108,200,139,224,128,238,219,87,241,247,94,38,49,81,192,210, + 50,168,95,75,12,111,247,51,63,246,86,184,230,210,220,168,86,37,106,108, + 212,84,153,171,94,209,244,71,175,253,34,48,249,115,199,139,147,105,252,37, + 36,36,36,6,3,20,198,24,219,182,109,27,234,235,235,97,24,6,138,139, + 139,187,157,247,229,23,252,224,135,158,242,208,104,190,120,60,142,80,40,132, + 234,234,106,204,152,49,3,13,13,13,104,104,104,192,31,255,248,71,88,150, + 229,46,156,22,183,164,234,203,246,136,135,123,106,154,134,207,126,246,179,168, + 170,170,66,73,73,9,58,59,59,209,214,214,230,238,236,65,67,243,251,3, + 116,73,0,55,65,150,151,151,163,180,180,20,107,215,174,237,151,58,189,208, + 208,208,128,41,83,166,100,237,109,41,146,53,39,90,106,190,21,77,171,0, + 221,36,154,129,177,236,141,162,235,234,234,112,233,180,10,236,158,0,0,32, + 0,73,68,65,84,165,151,22,172,95,211,166,77,43,88,93,18,133,129,220, + 124,64,194,11,218,187,239,190,139,15,62,248,0,231,158,123,46,198,140,25, + 131,162,162,34,0,221,79,148,230,200,103,13,84,79,121,184,112,116,28,7, + 201,100,18,71,142,28,193,251,239,191,239,18,234,75,47,189,132,234,234,106, + 12,31,62,28,225,112,184,160,237,49,12,3,205,205,205,120,233,165,151,112, + 213,85,87,65,81,20,28,59,118,12,163,71,143,70,73,73,137,187,144,155, + 163,63,219,195,205,160,177,88,12,141,141,141,238,143,248,210,75,47,69,69, + 69,69,55,34,201,231,191,95,187,105,189,177,88,12,175,189,246,26,226,241, + 56,90,91,91,1,100,11,16,186,224,92,108,47,61,89,157,106,153,0,95, + 211,103,193,182,145,245,172,174,235,0,128,51,206,56,3,209,104,52,231,216, + 157,8,12,195,192,158,61,123,208,214,214,214,111,117,72,72,72,12,30,104, + 177,88,12,209,104,20,85,85,85,40,42,42,242,13,176,240,18,166,252,190, + 136,158,242,112,83,158,170,170,40,41,41,193,105,167,157,134,61,123,246,32, + 22,139,225,157,119,222,65,56,28,198,136,17,35,16,137,68,186,61,223,159, + 237,9,4,2,136,70,163,24,57,114,36,26,26,26,176,121,243,102,124,238, + 115,159,115,183,172,226,228,150,139,156,242,49,231,229,227,79,228,109,14,133, + 66,40,45,45,69,107,107,171,187,60,160,179,179,211,115,57,131,87,255,196, + 177,162,247,197,96,20,238,159,140,199,227,0,128,150,150,150,172,205,171,249, + 1,176,226,216,219,182,237,46,97,160,219,182,1,112,131,95,186,22,193,43, + 208,180,174,104,86,199,113,208,216,216,8,0,238,97,181,94,159,247,241,244, + 139,130,177,174,229,21,156,80,37,6,47,146,201,36,128,236,207,138,203,131, + 254,156,4,73,156,90,208,76,211,68,101,101,37,162,209,168,111,4,33,255, + 239,21,182,46,106,35,61,229,161,247,185,32,138,70,163,168,172,172,68,42, + 149,130,109,219,221,52,183,66,182,135,49,134,112,56,140,225,195,135,195,52, + 77,52,55,55,99,228,200,145,110,4,162,72,78,94,26,146,151,246,68,219, + 147,43,143,151,176,214,52,13,37,37,37,56,118,236,24,0,160,185,185,25, + 169,84,42,203,127,198,203,16,55,107,230,121,184,143,142,19,82,151,185,215, + 113,53,42,69,81,144,74,165,92,161,66,23,120,211,37,20,162,54,232,55, + 54,60,15,61,209,92,211,148,172,242,20,69,113,173,6,137,68,2,150,101, + 121,6,181,120,5,237,136,237,200,30,235,180,41,148,95,211,77,174,185,160, + 148,24,124,208,117,29,245,245,245,248,205,111,182,161,182,182,1,59,119,30, + 65,91,27,80,94,14,76,157,90,137,154,154,42,92,117,213,12,84,87,87, + 203,207,81,162,71,104,71,143,30,197,217,103,159,221,109,215,122,14,81,136, + 120,165,29,79,30,106,22,116,28,7,209,104,20,31,124,240,1,26,26,26, + 48,121,242,228,44,51,216,137,214,149,111,30,222,30,78,114,251,247,239,79, + 15,18,217,197,195,11,94,193,37,98,154,159,86,145,111,30,186,60,128,19, + 15,143,130,180,44,171,219,6,204,148,236,168,57,81,81,148,44,51,171,101, + 49,132,195,112,203,9,133,66,46,193,133,195,97,207,67,77,233,216,209,77, + 157,189,72,158,247,193,207,103,201,3,93,128,174,181,134,148,148,189,252,121, + 94,117,136,132,232,56,12,170,154,221,62,78,112,229,229,229,221,218,33,49, + 240,208,117,29,107,214,108,195,51,207,108,1,80,142,25,51,106,240,217,171, + 42,80,94,30,65,91,155,142,250,250,86,172,91,87,143,218,218,117,184,229, + 150,153,248,226,23,107,36,201,73,228,132,150,72,36,16,12,6,209,209,209, + 145,181,237,148,168,57,245,37,184,208,78,155,172,108,55,220,157,35,16,8, + 32,30,143,119,139,240,43,68,123,120,112,7,21,236,129,64,0,169,84,170, + 91,180,97,127,182,135,182,139,7,121,112,112,179,33,39,46,190,195,10,37, + 18,170,37,121,153,14,121,122,56,220,165,193,113,147,33,39,83,174,121,249, + 245,149,147,142,184,41,53,189,47,214,75,235,231,38,79,174,173,123,237,50, + 195,159,167,26,155,24,73,42,150,155,46,27,174,6,71,203,2,32,125,112, + 131,16,186,174,99,245,234,117,120,110,117,61,170,167,78,197,149,159,157,138, + 138,242,8,34,17,64,7,80,161,3,213,83,43,49,125,122,21,126,251,219, + 157,248,206,242,45,104,104,56,130,107,175,157,43,73,78,194,23,26,144,109, + 178,161,102,51,58,51,167,247,197,52,17,249,228,161,249,196,54,112,129,39, + 230,237,239,246,80,208,54,248,9,240,66,182,71,108,67,40,20,114,39,5, + 94,71,216,120,153,238,252,246,143,84,213,46,109,76,44,215,75,131,19,203, + 21,225,165,117,121,17,17,111,19,109,187,215,182,105,94,38,106,241,218,143, + 128,249,61,90,174,244,193,13,46,36,147,73,236,220,89,143,231,126,179,3, + 145,170,105,168,154,86,133,72,121,4,136,0,122,20,0,162,64,52,9,36, + 129,72,85,57,42,167,87,162,65,79,226,185,223,236,192,212,169,149,152,58, + 181,122,160,187,32,49,72,145,115,29,92,46,225,213,219,231,250,2,178,61, + 217,207,139,164,230,87,110,79,33,212,84,51,162,254,57,186,255,165,151,9, + 54,87,185,162,249,80,212,190,120,25,148,120,252,250,225,53,129,16,251,229, + 69,220,94,190,88,64,250,224,6,27,146,201,36,214,172,217,137,214,104,53, + 162,17,160,1,192,17,93,71,57,34,72,127,82,60,224,36,51,57,169,136, + 162,181,60,10,36,171,177,102,205,78,73,112,18,190,232,53,193,245,5,114, + 249,179,114,97,176,181,103,160,144,203,84,74,125,99,28,126,1,48,60,63, + 127,79,55,95,6,144,21,88,66,203,246,35,28,241,30,191,230,254,64,63, + 141,79,52,131,230,250,156,253,252,195,249,88,11,120,30,238,131,91,179,102, + 13,106,107,107,177,125,251,118,73,122,5,130,174,235,152,62,125,58,106,106, + 106,112,229,149,87,2,0,174,186,234,42,212,214,87,3,83,231,2,145,8, + 26,90,147,216,86,15,84,149,71,16,137,166,73,78,7,160,39,117,180,234, + 64,125,67,18,136,68,208,86,1,60,183,102,11,118,238,252,237,128,246,73, + 98,240,66,3,224,46,38,22,133,71,127,17,138,23,168,160,20,35,233,6, + 98,247,122,218,30,26,26,47,18,199,64,180,135,110,183,5,100,31,148,74, + 223,211,103,169,47,74,60,113,29,128,171,185,209,160,140,222,250,28,105,153, + 244,25,94,39,53,119,82,83,56,253,124,169,175,172,167,96,18,218,47,122, + 77,33,30,34,11,164,125,112,235,214,173,195,234,213,171,81,81,81,33,35, + 242,10,8,93,215,113,228,200,17,60,247,220,115,208,117,29,115,231,206,69, + 101,101,37,244,214,106,148,151,71,80,81,145,246,187,165,243,102,30,138,2, + 122,178,75,131,139,70,128,138,138,8,116,0,109,229,213,168,172,76,14,84, + 119,36,6,57,52,160,75,144,245,71,64,71,190,218,145,23,185,246,71,64, + 199,137,182,199,235,126,33,224,165,25,209,136,73,14,47,18,201,165,129,241, + 247,60,140,159,222,163,17,142,94,90,155,151,153,210,239,243,18,125,121,252, + 57,222,7,250,188,23,81,121,141,119,174,126,209,60,98,121,186,174,99,231, + 206,157,168,174,174,70,69,69,5,0,25,89,89,40,180,181,181,33,153,76, + 162,188,188,28,59,119,238,68,77,77,13,42,42,42,80,94,93,141,170,138, + 8,170,202,43,80,94,17,65,69,36,77,116,145,104,23,225,1,64,69,36, + 2,184,58,93,43,80,93,141,138,138,134,1,234,141,196,96,71,22,193,1, + 133,23,220,94,24,40,45,201,15,3,73,108,94,224,65,19,212,132,40,10, + 121,63,115,32,207,227,165,229,137,154,33,253,28,196,58,114,105,79,98,212, + 99,46,127,157,56,137,161,215,126,253,234,105,108,40,104,91,120,27,34,145, + 8,26,26,26,80,85,85,133,202,202,74,0,112,137,78,162,127,81,81,81, + 129,214,214,86,232,186,142,134,134,122,68,34,17,148,151,151,163,162,53,137, + 170,242,106,84,86,165,201,173,60,26,65,180,60,138,8,210,159,151,174,235, + 208,203,163,72,182,37,51,105,0,80,1,189,181,65,78,78,36,124,145,117, + 162,119,127,8,111,175,50,243,209,162,134,74,123,142,23,226,132,36,31,18, + 246,243,95,137,215,34,225,120,149,41,166,211,5,230,94,218,174,72,138,212, + 87,232,213,246,158,234,237,41,205,175,159,64,90,91,171,169,169,65,50,153, + 68,52,26,149,2,178,128,136,68,34,136,68,34,104,109,109,69,117,117,13, + 202,203,203,211,159,1,218,50,154,91,57,202,43,162,168,40,7,34,72,251, + 224,128,180,38,167,39,117,68,42,1,180,69,129,214,36,244,138,54,148,215, + 183,201,157,77,36,124,145,243,192,211,254,130,184,230,140,31,24,234,135,66, + 180,7,232,10,178,96,140,185,139,130,7,178,61,124,140,248,122,65,142,92, + 102,65,234,219,226,105,148,132,188,214,144,117,213,213,253,89,234,155,165,190, + 50,241,164,2,170,109,209,133,230,92,115,18,125,131,162,166,70,251,33,194, + 171,95,52,191,95,208,12,29,75,138,182,182,54,84,87,87,99,199,142,29, + 174,192,149,66,178,48,224,91,112,69,163,81,84,87,87,163,173,173,13,149, + 149,149,168,170,175,71,69,57,39,183,140,6,23,73,47,21,224,6,201,104, + 36,130,164,174,103,174,50,129,39,209,86,84,86,202,40,74,9,111,104,128, + 191,96,17,215,121,245,149,96,167,229,137,161,233,3,213,30,209,228,150,143, + 70,116,60,235,217,122,211,30,177,109,94,249,122,242,129,121,105,109,94,218, + 104,215,103,209,149,38,30,27,212,211,152,136,228,37,6,143,248,105,99,162, + 127,46,87,94,191,235,92,253,18,161,235,186,27,88,162,235,58,90,91,91, + 165,137,178,64,72,38,147,110,96,79,69,69,5,116,93,79,95,151,215,163, + 245,200,118,84,84,207,117,201,45,82,158,38,183,8,15,50,137,0,104,235, + 114,200,213,239,172,69,117,185,52,47,75,248,99,64,150,9,136,229,123,9, + 234,129,108,15,144,223,241,27,133,104,79,174,192,144,124,204,166,226,115,226, + 169,228,52,143,170,118,143,214,20,9,206,203,140,9,244,188,92,128,239,180, + 226,213,183,92,139,201,115,245,199,171,172,124,158,225,17,147,213,213,114,230, + 95,104,120,141,249,244,233,211,1,0,235,106,119,162,97,103,21,170,230,206, + 68,36,2,148,71,129,104,38,166,36,26,1,146,58,208,6,0,122,4,59, + 183,109,71,69,235,78,204,173,153,225,62,47,33,33,98,64,9,142,215,145, + 111,61,131,173,61,133,128,159,86,226,167,217,245,148,78,183,244,18,193,211, + 105,144,9,221,66,141,19,36,207,71,9,211,43,2,83,220,77,133,106,89, + 124,217,64,246,198,207,199,31,204,147,75,211,21,163,73,165,207,109,112,129, + 79,56,116,93,71,237,142,90,212,111,79,98,230,220,185,136,150,167,131,73, + 34,200,104,111,153,101,3,91,182,172,131,222,176,29,53,51,170,49,125,250, + 116,84,85,85,13,88,219,37,6,55,6,108,29,92,174,89,247,64,172,131, + 203,213,158,129,88,7,151,143,86,114,188,245,247,228,235,226,240,218,213,159, + 251,211,188,204,143,185,204,163,98,187,169,25,179,175,198,52,215,179,180,95, + 114,47,202,193,7,238,147,107,109,109,197,206,109,107,240,219,29,91,80,61, + 99,42,166,78,159,142,169,213,213,168,175,175,199,206,237,219,81,191,109,39, + 160,183,98,106,117,53,170,171,171,17,141,70,229,214,107,18,190,144,235,224, + 122,217,30,175,251,133,128,23,209,136,107,212,56,65,209,64,18,74,90,126, + 90,155,88,7,15,104,225,123,92,138,154,17,45,135,175,159,163,19,36,49, + 232,195,107,15,76,74,112,116,159,77,47,115,181,168,157,121,5,210,228,211, + 47,238,195,149,2,113,112,162,178,178,18,51,102,204,64,69,69,5,234,235, + 235,81,191,110,29,106,87,175,134,174,235,136,68,34,168,170,170,66,85,85, + 21,170,167,165,143,203,225,75,60,228,231,41,225,7,185,14,46,15,12,36, + 177,121,129,71,87,2,232,166,121,231,251,188,87,144,6,99,44,107,227,102, + 126,44,143,152,135,146,189,227,56,174,25,83,92,6,192,77,145,252,30,7, + 125,158,215,73,203,23,243,240,107,241,189,87,31,252,124,131,244,59,46,119, + 45,25,156,224,209,172,149,149,149,168,174,174,70,50,153,68,91,91,155,75, + 112,124,73,1,63,191,82,126,142,18,61,65,174,131,27,224,246,28,47,184, + 105,143,10,110,175,16,121,47,83,39,53,47,82,210,226,166,97,14,113,35, + 100,26,234,239,165,209,209,250,189,78,55,240,210,38,69,127,160,151,246,222, + 219,126,137,249,68,255,160,244,193,13,126,112,191,154,215,137,222,146,216,36, + 242,133,92,7,135,147,111,29,28,245,93,137,103,190,209,231,121,94,209,196, + 39,18,7,205,67,251,205,79,19,240,106,159,72,56,126,224,4,236,151,71, + 81,20,247,179,23,125,115,126,253,242,211,224,68,173,77,212,52,57,164,15, + 238,228,4,39,59,105,146,148,200,23,189,90,7,231,133,158,214,130,249,5, + 26,240,255,39,178,14,174,47,219,211,95,235,224,142,103,173,156,232,95,18, + 9,69,212,114,252,162,34,115,105,65,94,121,197,117,111,162,6,215,147,22, + 213,211,181,8,94,70,174,101,2,199,99,30,246,34,62,218,47,41,32,37, + 36,134,6,78,120,153,192,137,104,51,34,209,245,69,93,125,209,30,160,239, + 214,193,157,104,123,252,214,193,105,154,134,96,48,120,194,218,36,45,159,7, + 124,112,173,141,158,168,238,213,38,62,57,241,243,133,81,19,168,216,7,158, + 46,6,203,240,235,190,236,23,144,189,139,139,52,113,73,72,12,13,200,117, + 112,30,117,12,38,95,155,95,123,184,57,181,39,95,151,104,182,163,105,188, + 28,32,219,39,198,205,161,124,27,43,90,182,168,9,114,146,165,11,200,189, + 8,141,71,82,50,6,240,228,92,193,46,34,122,219,47,177,12,26,152,35, + 125,112,18,18,67,3,221,76,148,94,62,27,241,189,248,12,205,147,75,0, + 81,244,100,190,242,202,59,88,218,67,159,25,136,246,216,182,141,120,60,222, + 45,40,68,172,43,23,196,40,71,94,78,42,149,130,97,24,0,210,4,199, + 163,42,105,62,145,132,24,99,221,150,9,208,58,188,76,134,212,39,70,125, + 160,166,105,118,11,10,57,30,136,227,108,219,182,75,220,210,7,39,33,49, + 52,224,27,69,201,131,24,188,4,179,187,216,87,81,0,66,62,252,63,189, + 239,144,242,220,52,98,158,242,243,195,120,181,39,151,63,42,221,62,5,138, + 210,61,92,92,188,207,211,187,210,186,135,167,247,100,162,244,154,8,244,85, + 123,0,214,109,220,105,123,222,121,231,157,156,109,235,43,132,66,33,4,131, + 65,95,77,139,127,126,226,194,124,175,96,16,63,210,163,254,195,35,71,142, + 20,164,95,210,7,39,33,49,52,144,69,112,52,236,156,46,250,246,10,98, + 160,132,228,149,135,223,15,120,60,163,146,25,187,95,200,55,37,26,26,36, + 224,69,42,60,191,216,30,239,0,133,238,105,105,179,89,118,200,188,95,123, + 232,75,172,55,87,123,252,239,123,183,145,246,129,182,231,75,95,250,146,103, + 125,18,249,163,165,165,101,160,155,32,33,33,81,0,184,38,74,238,220,167, + 4,231,183,3,69,111,35,231,188,210,232,140,222,43,144,129,107,117,148,80, + 250,187,61,220,167,37,154,200,68,178,165,105,253,5,81,163,236,207,186,134, + 26,134,15,31,62,208,77,144,144,144,40,0,178,8,78,81,20,4,131,65, + 151,88,168,86,70,5,59,215,188,152,162,0,30,251,18,210,251,1,143,52, + 37,163,41,5,2,1,24,134,225,185,76,128,95,115,31,144,159,38,153,173, + 121,49,56,78,247,157,80,232,125,64,237,150,198,88,215,181,105,154,221,246, + 71,164,253,239,105,239,196,236,178,187,180,67,191,251,84,91,163,207,0,221, + 125,89,18,18,18,18,18,249,195,221,170,75,211,52,68,163,209,110,219,51, + 113,120,5,71,248,5,82,208,247,126,193,33,64,122,83,229,64,32,224,169, + 49,5,2,1,132,195,97,104,154,230,185,78,170,63,218,195,137,214,75,227, + 227,59,235,211,176,246,66,180,199,75,219,148,144,144,144,144,232,25,42,0, + 52,54,54,34,28,14,35,26,141,122,146,27,208,221,36,151,219,175,148,173, + 241,249,61,163,105,26,194,225,48,66,161,16,142,30,61,234,166,183,181,181, + 33,24,12,34,28,14,251,46,2,238,143,246,4,2,1,151,224,91,91,91, + 1,0,197,197,197,136,199,227,238,189,66,183,135,19,124,60,30,247,172,87, + 66,66,66,66,194,27,234,200,145,35,177,99,199,142,1,51,129,113,237,104, + 231,206,157,24,57,114,36,202,202,202,176,119,239,222,1,111,207,190,125,251, + 80,86,86,6,198,24,154,154,154,6,180,61,138,162,160,169,169,105,64,234, + 151,144,144,144,56,89,161,22,23,23,163,161,161,1,171,86,173,194,174,93, + 187,10,222,128,93,187,118,97,213,170,85,104,104,104,64,113,113,49,34,145, + 8,154,155,155,241,234,171,175,226,224,193,131,5,111,207,193,131,7,241,234, + 171,175,162,185,185,25,145,72,4,193,96,16,177,88,12,239,189,247,30,154, + 155,155,11,222,158,230,230,102,188,247,222,123,136,197,98,40,43,43,43,120, + 253,18,18,18,18,39,43,148,157,59,119,178,93,187,118,225,239,127,255,59, + 246,236,217,131,214,214,86,164,82,169,126,247,251,40,138,130,112,56,140,138, + 138,10,76,152,48,1,231,157,119,30,38,79,158,12,0,120,233,165,151,176, + 103,207,30,28,62,124,24,157,157,157,48,77,179,32,237,9,6,131,40,45, + 45,197,105,167,157,134,9,19,38,224,11,95,248,2,70,140,24,129,150,150, + 22,28,61,122,20,173,173,173,208,117,61,231,70,204,125,9,77,211,16,137, + 68,80,81,81,129,49,99,198,96,248,240,225,24,51,102,76,65,234,150,144, + 144,144,56,217,161,48,198,216,145,35,71,208,212,212,132,230,230,102,119,135, + 140,66,16,138,166,105,40,46,46,198,136,17,35,48,106,212,40,84,86,86, + 66,215,117,180,181,181,161,169,169,9,235,215,175,71,50,153,132,109,219,5, + 105,79,32,16,64,52,26,197,101,151,93,134,81,163,70,161,188,188,28,129, + 64,0,186,174,35,145,72,32,145,72,184,59,109,20,162,61,60,176,165,168, + 168,8,69,69,69,136,68,34,8,135,195,253,90,175,132,132,132,196,169,2, + 133,1,50,68,79,66,66,66,98,8,66,61,197,151,31,245,188,101,190,132, + 132,132,132,132,196,73,8,73,112,18,18,18,18,18,167,36,36,193,73,72, + 72,72,72,156,146,144,4,39,33,33,33,33,113,74,66,18,156,132,132,132, + 132,196,41,137,156,39,122,75,116,71,62,49,71,50,44,85,66,98,104,32, + 125,122,227,208,173,127,176,227,212,32,56,186,38,173,0,97,175,185,214,192, + 201,93,255,37,36,134,6,20,144,77,211,135,96,253,39,3,142,107,29,156, + 40,194,153,144,86,208,193,22,118,224,103,233,243,105,250,181,74,254,197,234, + 150,62,20,191,104,226,56,20,154,224,7,186,254,33,8,191,17,30,74,223, + 125,81,6,20,250,183,223,87,245,159,234,235,224,78,120,161,55,31,158,1, + 249,114,123,28,57,147,78,46,60,201,13,85,114,243,58,18,168,96,36,83, + 192,250,7,244,123,222,11,244,103,59,221,178,125,44,24,238,177,79,253,80, + 247,96,194,64,79,112,251,178,254,83,157,224,78,222,32,19,31,114,43,88, + 245,200,62,242,230,84,255,81,119,3,61,199,142,188,20,122,98,235,41,86, + 63,99,44,47,31,236,64,193,79,240,245,101,217,185,202,119,15,237,237,151, + 22,12,14,228,26,227,66,244,125,160,235,63,217,112,210,251,224,6,82,131, + 224,2,117,168,146,27,239,55,213,26,220,49,233,207,207,33,135,223,161,191, + 235,31,172,62,143,66,144,91,86,154,215,239,142,188,31,140,99,212,87,24, + 104,63,251,64,215,127,50,225,228,36,56,162,189,1,3,251,129,23,218,223, + 8,32,183,224,206,39,207,9,182,33,159,241,238,55,146,41,112,253,39,171, + 40,233,87,83,165,64,94,39,235,24,29,15,6,154,180,7,186,254,147,13, + 39,175,137,50,131,66,251,222,6,12,140,65,205,147,201,213,180,116,239,223, + 230,32,45,216,104,131,248,117,33,126,132,180,126,241,213,87,245,83,159,19, + 53,133,15,54,83,16,213,176,56,177,187,215,125,88,182,91,126,142,251,28, + 131,109,140,36,134,38,78,62,130,19,180,183,33,129,94,144,27,71,33,72, + 110,40,192,203,244,230,190,31,168,70,17,120,145,27,71,95,255,70,122,34, + 55,126,250,188,132,196,96,193,201,105,162,204,96,72,104,111,94,228,150,167, + 224,82,21,69,113,210,82,185,207,155,69,53,37,209,28,86,136,79,33,151, + 166,118,10,126,11,6,29,252,52,59,57,246,18,131,9,39,23,193,13,53, + 237,205,131,220,142,71,147,235,83,146,203,51,114,181,223,38,28,3,93,191, + 132,92,34,35,113,210,224,228,34,56,130,33,161,189,41,10,28,198,24,37, + 53,39,15,118,239,150,191,47,199,134,144,139,159,230,86,136,8,202,1,171, + 127,136,67,146,155,196,201,132,147,207,7,135,33,22,38,155,33,57,49,205, + 247,69,208,159,228,150,190,236,10,100,40,52,185,21,170,126,90,159,24,185, + 59,24,4,59,93,143,41,106,182,125,253,59,17,215,193,229,27,112,34,33, + 49,80,56,105,53,56,142,33,49,91,247,208,228,122,66,65,200,205,203,92, + 92,72,114,235,231,250,221,72,77,66,32,192,224,33,55,14,186,246,175,219, + 174,62,125,88,54,69,62,1,39,131,105,140,36,134,38,78,106,130,27,12, + 228,86,168,176,120,79,77,206,7,133,34,55,222,174,126,199,0,214,95,200, + 192,153,190,68,161,182,140,114,235,43,144,230,150,207,231,112,42,19,235,80, + 239,127,111,113,210,18,220,160,33,183,66,238,218,144,79,127,251,121,97,117, + 193,199,125,160,235,23,48,88,53,19,63,77,171,191,202,238,233,68,141,254, + 28,163,161,126,154,199,80,239,127,111,112,82,250,224,6,90,200,1,217,38, + 153,193,178,38,170,207,49,208,228,50,208,245,11,24,172,228,198,65,253,113, + 253,85,118,174,242,249,253,126,37,55,248,247,113,176,127,62,125,129,161,222, + 255,222,226,228,59,46,103,144,145,91,86,250,169,248,5,163,75,51,6,98, + 220,7,186,126,137,110,240,251,20,10,249,221,31,234,62,191,190,234,255,169, + 126,154,192,9,31,151,243,255,216,59,243,240,40,170,116,255,127,43,123,66, + 88,194,46,38,26,2,65,113,97,199,65,97,32,32,122,113,151,43,227,224, + 140,115,229,42,10,138,55,138,209,113,185,14,73,24,127,58,142,35,106,28, + 70,144,113,110,28,29,198,81,89,20,24,28,6,33,32,42,2,89,0,5, + 101,9,129,196,176,39,33,116,154,78,167,211,231,247,71,247,169,84,87,87, + 85,215,214,157,237,253,60,79,61,221,93,85,231,125,79,157,238,62,223,122, + 207,82,167,179,17,106,164,88,135,252,163,181,182,184,180,182,127,162,77,18, + 241,46,130,54,134,29,215,79,2,71,4,64,157,188,4,209,118,136,216,32, + 175,54,138,213,235,239,232,2,215,110,7,153,180,22,157,249,207,68,16,109, + 141,206,254,127,236,236,215,31,138,118,57,200,132,32,8,130,32,66,65,2, + 71,16,4,65,116,72,72,224,8,130,32,136,14,9,9,28,65,16,4,209, + 33,33,129,35,8,130,32,58,36,17,29,36,26,233,137,160,4,17,105,58, + 234,168,54,65,16,58,234,165,17,29,24,138,224,8,130,32,136,14,9,9, + 28,65,16,4,209,33,233,180,19,189,47,78,77,13,217,228,242,99,85,21, + 181,116,18,4,65,180,83,58,173,192,1,64,101,101,165,234,177,180,180,180, + 8,230,132,176,130,252,113,115,2,117,193,18,4,1,3,131,76,164,149,200, + 164,73,147,176,101,203,22,72,63,111,221,178,37,164,169,182,54,200,228,226, + 212,84,166,36,114,105,105,105,20,189,181,19,24,192,14,29,58,132,31,126, + 248,1,151,93,118,25,86,175,94,141,39,159,124,50,44,34,87,180,101,11, + 203,154,52,73,211,174,218,111,124,240,172,97,25,94,143,247,112,84,140,254, + 94,1,175,199,139,227,27,143,188,124,225,68,195,51,106,231,12,158,53,172, + 139,215,227,189,73,102,183,187,215,227,157,45,219,23,239,245,120,71,154,245, + 79,131,76,136,246,136,169,81,148,12,96,122,69,77,150,206,20,169,178,230, + 196,42,29,226,163,55,99,114,145,235,136,226,214,81,35,28,126,93,251,246, + 237,67,92,92,28,138,138,138,144,149,149,133,215,94,123,13,139,23,47,182, + 253,58,135,13,31,206,246,236,222,109,74,224,0,96,240,172,97,191,1,48, + 214,117,75,236,109,161,124,37,172,107,218,80,247,221,233,140,51,59,143,191, + 3,224,119,90,231,14,158,53,108,40,128,158,174,91,98,47,226,251,98,246, + 54,143,19,156,172,127,211,79,98,6,137,251,246,53,95,28,85,235,77,114, + 143,143,237,101,212,63,9,28,209,30,105,211,131,76,86,174,92,153,151,154, + 154,202,14,30,60,136,202,202,74,84,86,86,98,205,167,171,145,154,154,202, + 86,174,92,153,103,135,143,31,171,170,4,222,28,217,17,197,141,115,240,224, + 65,113,11,215,10,18,204,183,176,13,91,144,155,27,246,202,144,71,110,181, + 181,181,184,226,138,43,112,234,212,41,100,101,101,225,173,183,222,194,252,249, + 243,113,243,205,55,91,186,206,199,30,127,60,40,109,106,106,170,226,126,3, + 252,30,192,101,122,78,244,186,155,175,60,91,124,194,3,96,145,142,211,127, + 0,144,44,221,225,185,60,106,167,224,102,61,3,246,93,22,117,92,184,128, + 164,48,248,39,136,54,73,155,22,184,236,236,236,220,202,202,74,36,36,36, + 96,213,170,85,88,181,106,21,70,140,28,141,202,202,74,100,103,103,231,218, + 45,114,70,196,237,225,255,41,111,23,119,180,12,96,7,15,30,108,237,108, + 132,133,168,168,40,156,61,123,22,181,181,181,184,238,186,235,80,84,84,132, + 135,31,126,24,15,61,244,16,10,10,10,44,217,126,253,245,215,131,246,253, + 115,221,58,97,233,210,165,166,109,30,42,220,211,8,32,39,97,93,211,97, + 173,243,226,215,186,43,79,108,61,22,203,188,236,81,0,110,29,118,189,0, + 246,36,172,107,114,136,59,99,133,230,230,212,168,162,184,47,154,234,196,125, + 141,112,55,166,161,34,254,223,77,13,118,250,39,136,182,74,155,21,56,30, + 185,1,192,170,85,171,48,125,250,116,76,159,62,93,60,126,240,224,65,100, + 103,103,231,218,229,79,143,184,61,252,63,229,140,111,118,249,141,4,153,153, + 153,1,239,173,86,254,109,5,175,215,139,83,167,78,225,236,217,179,248,234, + 171,175,48,123,246,108,220,112,195,13,120,251,237,183,113,195,13,55,152,182, + 251,147,113,227,152,218,231,231,158,123,46,232,184,17,14,21,238,89,11,96, + 127,212,105,239,87,74,199,163,143,52,175,107,172,185,224,112,86,157,223,2, + 224,115,3,118,143,3,56,31,117,218,123,150,239,107,30,24,93,206,226,132, + 179,66,173,183,26,30,118,1,94,198,154,251,226,56,75,18,234,133,154,150, + 243,236,240,79,16,109,145,54,43,112,0,196,200,77,42,108,210,99,128,175, + 25,211,14,95,106,194,101,135,168,233,105,182,11,71,211,30,3,24,99,12, + 140,49,100,102,102,6,8,157,45,182,117,94,87,184,154,45,7,15,30,140, + 190,125,251,98,247,238,221,232,219,183,47,110,190,249,102,28,57,114,4,131, + 7,15,198,145,35,71,12,217,122,246,185,231,24,223,182,111,223,30,112,44, + 49,49,17,207,62,247,28,3,128,5,191,249,141,32,63,110,130,199,227,118, + 52,95,174,116,32,230,219,230,9,39,54,29,189,8,192,19,38,236,238,142, + 219,209,220,85,186,195,147,25,181,57,118,79,115,79,52,34,222,227,108,138, + 142,234,22,115,174,233,170,232,160,243,108,242,79,16,109,138,54,63,77,64, + 73,220,236,230,225,255,41,103,139,11,6,250,63,133,22,178,183,222,204,208, + 221,148,105,164,31,40,63,63,31,185,185,185,108,97,126,190,173,253,128,135, + 14,29,194,193,131,7,109,141,222,4,255,106,240,90,121,230,215,158,155,155, + 11,187,175,137,195,7,150,188,245,214,91,40,40,40,192,254,253,251,69,113, + 51,50,200,228,197,23,95,84,247,177,121,179,176,121,243,102,102,215,5,28, + 42,220,115,120,240,172,97,127,74,88,215,52,196,117,75,236,221,124,127,194, + 186,166,13,181,251,207,12,244,52,52,253,5,64,149,9,187,142,193,179,134, + 29,78,88,215,212,213,117,75,108,42,0,176,158,81,231,162,28,205,91,162, + 215,58,47,242,222,28,127,169,16,45,52,179,238,112,8,205,248,42,230,35, + 231,197,158,159,37,137,119,61,86,253,19,68,91,163,77,11,156,203,229,18, + 35,53,165,99,161,176,187,41,209,136,176,1,198,196,141,99,151,200,241,232, + 77,137,199,178,179,109,169,171,229,34,151,159,159,31,224,31,8,143,184,241, + 1,38,131,7,15,198,236,217,179,241,194,11,47,160,174,174,14,217,217,217, + 166,196,173,149,120,17,192,62,233,142,102,119,243,149,53,197,39,206,195,218, + 192,142,239,1,220,40,179,91,202,60,222,209,66,114,180,67,178,175,92,136, + 18,70,133,193,63,65,180,25,218,244,52,129,84,149,121,106,128,111,196,99, + 65,65,65,62,0,252,231,127,254,103,158,252,184,0,123,4,206,168,168,113, + 172,142,84,180,42,12,92,224,14,29,58,4,32,176,239,205,46,129,147,250, + 82,218,31,110,113,83,195,140,184,73,251,213,120,19,36,183,179,240,183,191, + 101,235,214,173,195,55,219,183,11,60,15,106,62,140,124,233,131,103,13,187, + 11,192,66,215,45,177,87,196,175,117,87,30,255,188,34,222,89,117,254,23, + 176,216,247,53,120,214,176,139,1,92,233,186,37,182,91,252,90,183,243,248, + 231,21,209,41,87,247,245,36,246,235,114,163,235,150,216,212,248,181,238,179, + 199,63,175,136,233,113,69,239,239,146,6,116,157,173,199,63,77,19,32,218, + 35,109,182,15,142,207,125,75,75,75,11,136,214,92,46,87,72,113,179,131, + 183,222,204,16,204,138,27,16,92,201,230,230,230,66,240,221,80,40,110,242, + 115,237,16,55,37,236,22,183,72,162,36,110,161,202,82,47,223,108,223,46, + 240,77,126,236,197,23,95,132,210,126,171,28,42,220,179,2,192,73,252,245, + 28,18,157,113,105,118,13,236,56,84,184,231,71,0,141,126,187,73,206,170, + 243,167,127,92,127,120,61,128,58,255,190,94,206,170,243,251,170,55,28,121, + 45,28,254,9,162,173,208,38,155,40,165,19,187,11,10,10,242,51,51,51, + 3,70,75,234,21,55,43,2,101,7,188,9,207,72,26,59,163,30,165,232, + 205,110,164,77,145,210,38,74,192,222,62,69,53,113,179,106,87,137,199,31, + 127,60,96,154,192,156,57,115,240,134,255,243,205,183,220,194,50,51,51,197, + 207,54,240,68,124,74,98,105,247,31,19,1,224,215,118,25,5,176,59,62, + 37,113,170,223,238,94,255,190,119,227,83,18,95,241,239,123,47,204,254,9, + 162,213,105,115,17,156,92,220,0,223,147,75,10,10,10,242,249,6,132,47, + 114,179,27,35,149,176,157,226,38,40,52,62,135,171,105,82,158,111,30,173, + 2,62,145,179,58,130,50,146,226,6,0,111,188,254,186,48,124,248,240,128, + 207,0,240,202,31,254,192,170,170,170,196,207,54,113,152,53,123,17,227,137, + 6,128,10,27,237,58,36,118,249,188,183,147,146,125,167,195,236,159,32,90, + 157,54,21,193,41,137,27,23,178,112,11,218,197,169,169,44,92,79,49,17, + 0,97,161,44,186,49,115,142,81,248,180,128,112,68,111,122,6,145,232,25, + 105,169,199,79,36,197,141,83,80,80,128,172,73,147,2,246,189,244,210,75, + 88,185,114,101,208,126,139,52,135,105,217,97,166,96,215,171,176,47,92,254, + 9,162,213,105,51,17,156,150,184,133,27,254,60,74,61,75,232,180,55,194, + 53,176,132,247,119,133,18,45,189,231,105,17,105,113,3,0,165,135,42,207, + 152,49,67,113,191,69,60,97,210,23,166,96,183,89,97,95,184,252,19,68, + 171,211,38,4,174,45,136,27,224,91,62,167,35,137,92,184,196,45,82,180, + 181,135,68,191,189,116,105,56,252,83,4,71,16,97,66,183,192,241,39,82, + 240,41,2,91,182,108,17,247,77,156,52,201,146,40,112,81,107,77,113,227, + 116,20,145,107,239,226,38,197,202,232,200,118,128,247,108,201,9,219,141,30, + 42,220,195,20,236,42,237,11,139,127,130,104,11,68,244,222,77,75,53,248, + 35,183,236,18,183,80,215,165,182,22,28,167,189,175,44,240,70,65,1,107, + 207,226,166,53,215,172,45,211,238,239,140,84,160,121,112,68,123,164,205,8, + 156,221,232,17,184,80,54,218,179,192,181,103,218,171,184,1,36,112,4,209, + 150,232,180,2,71,16,225,160,163,170,0,9,28,209,30,105,19,131,76,8, + 130,32,8,194,110,218,212,60,56,162,19,211,81,34,4,102,219,162,3,4, + 65,88,132,34,56,130,32,8,162,67,66,119,155,132,42,244,227,32,58,34, + 109,189,169,128,250,59,237,131,154,40,9,130,32,2,9,16,152,244,244,244, + 201,21,21,21,69,102,141,229,228,228,4,216,91,177,98,133,37,123,132,126, + 168,137,146,32,8,34,16,177,241,194,170,184,1,192,171,175,190,42,218,35, + 113,139,44,36,112,4,65,16,26,164,167,167,167,183,101,123,132,58,134,187, + 89,82,101,19,164,171,104,50,180,97,34,89,134,86,124,117,214,47,118,96, + 70,70,64,153,29,41,47,239,172,69,209,33,81,235,224,202,202,202,74,47, + 42,42,42,4,32,95,46,98,75,122,122,122,158,209,200,235,189,247,222,75, + 47,43,43,83,180,183,98,197,10,85,123,212,7,215,10,172,92,185,50,47, + 53,53,149,93,184,112,129,113,74,75,118,177,212,212,84,198,31,179,69,104, + 19,201,50,148,251,90,185,114,101,158,81,95,130,198,150,151,151,199,212,142, + 193,247,36,18,205,244,90,91,70,70,6,203,200,200,96,113,113,113,226,198, + 247,101,100,100,88,178,173,229,79,186,49,6,198,24,130,246,219,225,95,111, + 249,88,45,199,80,54,236,176,223,30,55,57,89,89,89,233,0,138,0,176, + 137,19,243,88,73,73,9,59,127,254,60,99,140,177,146,146,18,54,107,214, + 44,6,159,46,22,165,167,167,103,41,152,8,224,189,247,222,75,207,201,201, + 41,202,201,201,97,243,231,207,103,203,151,47,103,235,215,175,103,235,215,175, + 103,203,151,47,103,239,189,247,30,203,201,201,97,57,57,57,138,246,4,65, + 96,180,217,179,133,250,174,68,82,83,83,197,74,121,229,202,149,108,229,202, + 149,226,231,112,139,92,106,106,42,147,110,225,242,19,110,95,145,44,67,238, + 203,39,116,133,44,53,181,208,176,47,173,74,130,11,156,92,232,50,124,209, + 143,226,49,189,91,70,70,6,219,181,107,151,226,102,183,200,101,100,100,176, + 173,91,175,100,223,150,109,103,155,55,131,1,62,97,3,2,223,111,222,12, + 246,109,217,118,182,117,235,149,150,253,243,242,25,53,106,123,128,29,249,103, + 88,20,160,81,163,182,51,45,27,86,237,183,215,77,129,162,172,172,44,86, + 82,82,194,82,83,11,217,249,243,231,89,73,73,9,43,41,41,97,140,49, + 241,115,86,86,22,131,79,8,53,201,201,201,41,122,243,205,55,217,242,229, + 203,89,86,86,150,40,110,210,109,249,242,229,236,205,55,223,100,57,57,57, + 65,246,90,91,20,58,210,166,171,15,46,53,53,149,29,60,120,16,0,176, + 106,213,42,76,159,62,29,211,167,79,23,143,31,60,120,16,217,217,217,185, + 122,108,25,129,71,33,7,15,30,68,101,101,37,10,10,10,176,232,243,202, + 25,0,0,32,0,73,68,65,84,230,211,213,8,103,196,195,125,85,86,86, + 218,234,43,146,101,200,125,173,90,181,42,127,250,244,233,65,54,195,241,125, + 229,230,229,69,164,89,165,188,188,28,31,126,248,97,80,51,162,21,122,118, + 123,7,31,175,254,12,147,39,3,223,150,109,199,119,187,183,227,219,178,237, + 1,239,39,79,6,62,94,253,25,122,118,123,199,22,159,35,125,226,19,242, + 213,140,77,51,233,205,248,235,8,248,163,183,73,139,22,45,194,200,145,35, + 1,0,67,135,174,64,69,69,5,42,42,42,80,90,90,138,228,228,100,100, + 102,102,98,209,162,69,0,48,73,43,138,123,239,189,247,210,1,76,234,213, + 171,23,82,82,82,0,0,47,191,252,114,208,121,41,41,41,232,213,171,87, + 72,123,132,53,116,15,50,73,72,72,16,43,102,165,99,64,203,138,0,118, + 145,157,157,157,91,89,89,137,245,235,215,35,45,237,93,100,103,215,99,196, + 200,209,168,172,172,68,118,118,118,174,157,254,184,47,126,157,171,86,173,178, + 221,87,36,203,112,253,250,245,249,217,217,245,185,105,105,239,138,251,210,210, + 222,69,90,218,187,166,124,229,230,229,49,233,150,159,151,39,200,95,249,250, + 109,121,121,121,154,105,205,92,207,218,181,107,197,247,99,198,156,7,240,127, + 24,152,177,133,197,198,109,22,183,129,25,91,216,192,140,45,134,237,159,174, + 29,39,190,191,106,196,56,197,45,28,148,150,140,19,180,62,27,65,73,24, + 245,218,179,67,92,165,12,204,200,96,124,155,51,119,174,173,194,57,103,238, + 92,38,181,111,213,94,81,81,81,225,172,89,179,48,114,228,72,148,150,150, + 34,63,255,18,220,116,83,60,166,79,159,142,27,110,184,1,35,71,142,196, + 162,69,101,216,187,215,129,204,204,76,204,154,53,11,21,21,21,121,106,162, + 84,86,86,86,56,98,196,8,81,220,198,143,31,31,116,206,182,109,219,112, + 236,216,49,164,164,164,96,196,136,17,184,235,174,187,84,237,17,214,48,52, + 15,78,169,98,14,23,146,40,4,211,167,79,71,118,246,187,1,199,15,30, + 60,136,204,204,204,92,0,121,118,249,2,160,40,64,118,250,138,84,25,78, + 159,62,61,87,94,102,74,164,166,166,178,130,130,130,252,80,203,20,229,231, + 229,133,172,44,51,50,50,112,254,252,121,40,137,159,254,156,7,178,118,237, + 90,220,122,235,173,226,231,93,187,118,97,204,152,243,56,124,120,162,226,249, + 131,6,109,53,236,163,79,202,118,76,154,52,14,223,150,109,199,233,218,113, + 232,147,162,246,58,205,47,134,25,102,47,39,172,148,150,140,19,204,138,147, + 149,180,28,46,56,55,222,120,35,150,46,89,34,0,192,134,13,27,216,192, + 140,12,38,221,103,134,57,115,231,178,13,27,54,96,195,134,13,226,160,31, + 255,62,6,88,26,8,52,41,59,59,27,14,135,3,21,21,21,184,251,238, + 27,144,155,187,2,105,105,239,162,178,242,62,240,27,196,135,30,26,140,228, + 228,100,100,103,103,163,176,176,80,62,104,36,192,94,116,116,180,248,97,194, + 132,9,248,242,203,47,241,242,203,47,227,233,167,159,22,163,185,9,19,38, + 0,0,252,231,106,217,35,44,160,59,130,115,185,92,166,142,89,97,253,250, + 245,200,206,174,135,93,81,72,40,95,60,74,228,62,236,246,21,201,50,116, + 185,92,168,172,188,15,149,149,247,137,251,248,103,169,47,59,34,84,105,244, + 118,250,244,105,11,185,246,69,123,231,207,159,15,136,216,164,168,237,231,148, + 151,123,13,251,84,18,179,201,147,55,227,170,17,23,20,95,171,170,236,105, + 166,108,239,72,35,40,46,98,71,202,203,5,169,144,29,41,47,23,142,148, + 151,11,27,54,108,128,217,104,142,139,27,183,197,247,47,93,178,68,56,82, + 94,46,220,120,227,141,65,121,49,98,63,51,51,19,252,6,55,57,57,25, + 243,231,15,7,0,177,222,217,191,255,46,36,39,39,195,225,112,136,205,152, + 0,84,135,251,243,232,141,195,163,56,46,110,79,63,253,180,226,185,52,125, + 192,126,116,9,92,85,85,149,144,153,153,169,122,60,51,51,83,92,141,219, + 78,34,25,49,134,219,87,36,203,208,168,47,179,125,114,74,145,153,224,239, + 199,55,27,181,229,231,229,9,93,187,118,197,173,183,222,42,70,111,242,87, + 197,116,249,45,69,199,96,172,185,82,41,98,3,0,198,178,20,55,0,136, + 141,219,220,41,251,172,228,240,166,194,80,17,26,23,57,51,72,163,54,37, + 150,46,89,34,138,156,153,102,75,222,199,150,158,158,14,135,195,129,39,158, + 24,33,30,227,226,198,207,115,56,28,134,243,207,163,53,32,80,220,136,240, + 163,171,137,146,143,38,76,75,75,195,193,131,7,197,136,198,229,114,5,84, + 150,118,173,198,205,225,81,136,207,183,239,110,138,127,14,87,196,163,118,204, + 42,145,44,67,185,47,105,153,73,125,101,103,215,231,102,103,191,43,30,95, + 185,114,101,158,25,255,60,122,43,47,47,15,26,165,102,165,121,82,77,204, + 2,236,231,231,35,55,183,69,155,185,0,1,250,155,43,149,34,56,96,179, + 234,249,110,55,176,127,127,127,12,31,190,153,53,185,39,107,94,159,82,179, + 95,73,137,254,62,61,121,122,51,253,116,106,77,143,70,242,161,70,121,121, + 57,50,50,50,44,53,63,218,193,210,37,75,132,129,25,25,140,231,199,8, + 165,165,165,24,57,114,36,50,51,51,69,17,171,172,188,15,14,135,67,20, + 55,0,112,56,28,98,164,167,69,109,109,109,80,20,167,38,108,181,181,181, + 134,242,74,24,35,164,192,73,135,202,23,20,20,228,251,251,162,32,221,7, + 216,47,110,254,40,132,85,86,86,42,30,15,67,196,19,54,95,145,44,67, + 189,190,178,179,235,45,141,162,148,71,71,229,229,147,144,145,177,5,71,202, + 237,239,78,80,18,58,185,176,73,247,183,48,89,151,125,229,8,238,130,166, + 207,161,67,79,32,46,206,87,14,71,202,39,169,86,238,42,130,164,59,202, + 176,50,240,68,135,13,203,81,40,23,147,129,25,25,172,53,39,196,243,200, + 205,168,184,1,216,82,80,80,48,233,205,55,223,20,197,77,250,42,37,57, + 57,25,5,5,5,0,176,69,203,94,115,115,179,238,63,65,115,115,115,40, + 123,132,5,52,5,78,94,89,2,62,49,144,247,215,216,45,110,82,223,161, + 162,144,112,68,60,118,70,87,145,44,67,189,190,166,79,159,158,43,109,145, + 53,26,161,74,43,117,254,158,207,171,50,151,115,125,72,133,46,55,55,87, + 20,28,249,43,231,175,127,181,39,130,179,35,74,236,136,180,165,39,188,152, + 205,75,122,122,122,94,97,97,225,230,236,236,236,128,8,78,46,110,128,47, + 210,43,44,44,68,122,122,122,30,128,58,37,123,43,86,172,200,3,176,121, + 244,232,209,65,81,156,156,218,218,90,148,149,149,241,52,138,246,8,107,168, + 10,156,82,101,201,43,225,112,8,154,150,239,182,16,241,216,37,110,225,42, + 195,80,190,82,83,83,195,26,13,243,136,46,84,68,163,151,187,239,190,27, + 85,85,85,226,231,212,212,84,241,125,70,198,255,1,128,98,4,103,134,174, + 93,119,225,116,237,152,160,8,206,206,40,49,146,88,25,13,25,174,249,112, + 146,126,58,195,105,111,188,241,70,108,216,176,33,44,17,162,255,113,89,91, + 158,120,226,137,73,139,22,45,10,18,57,254,90,90,90,138,39,158,120,2, + 104,137,182,234,160,32,74,220,222,217,179,103,39,1,193,3,78,56,181,181, + 181,56,123,246,108,72,123,132,53,20,5,78,171,178,12,55,109,49,226,177, + 91,220,236,38,148,175,72,245,255,201,163,58,243,118,130,43,178,35,229,229, + 226,251,129,25,129,145,162,21,161,59,82,94,46,220,125,247,221,204,55,244, + 255,23,104,121,125,199,214,40,81,11,185,168,152,17,25,222,12,201,135,251, + 27,157,3,103,38,173,30,148,166,14,24,101,233,146,37,130,77,83,2,20, + 73,79,79,207,43,42,42,202,27,53,106,212,164,89,179,102,33,59,59,27, + 35,71,142,20,251,220,10,10,10,80,88,88,8,248,159,73,9,191,16,85, + 84,84,168,70,113,119,221,117,87,94,69,69,197,164,17,35,70,32,58,58, + 90,20,186,218,218,90,52,55,55,163,172,172,12,240,63,147,50,148,61,194, + 60,65,63,148,182,38,110,173,37,10,109,213,182,81,95,242,227,242,209,146, + 90,249,211,170,69,120,196,166,36,106,118,69,113,90,190,213,230,193,73,25, + 52,104,43,204,230,67,238,67,77,224,204,248,96,190,71,100,137,105,228,162, + 194,63,203,207,51,131,150,13,6,176,81,163,182,219,210,207,215,158,80,187, + 123,72,79,79,207,170,168,168,200,131,202,195,150,253,239,121,164,85,23,74, + 144,210,211,211,179,238,186,235,46,69,123,126,97,83,180,103,232,25,138,132, + 38,65,17,28,175,4,229,21,95,106,106,33,171,170,154,165,251,143,96,252, + 252,182,35,10,86,81,43,195,224,124,4,150,145,209,50,11,229,43,156,17, + 106,56,5,76,143,239,65,131,124,2,91,85,165,60,239,45,53,213,222,149, + 160,236,106,14,85,194,206,39,154,88,245,221,153,241,55,47,102,169,60,85, + 68,218,132,24,82,220,184,189,87,95,125,213,54,123,132,113,20,127,220,188, + 2,12,172,44,11,253,21,74,232,10,216,200,185,190,243,59,142,184,113,148, + 202,48,48,31,193,101,100,180,220,180,124,217,113,157,70,107,62,121,84,215, + 158,137,68,148,72,180,14,122,194,35,149,73,215,166,133,200,136,61,138,224, + 236,195,80,68,102,212,184,222,138,122,229,202,149,121,122,34,30,59,136,164, + 47,57,225,44,195,64,63,246,136,120,103,174,181,165,211,32,66,69,137,36, + 112,237,12,18,144,78,131,97,129,11,71,4,7,132,142,120,236,36,146,190, + 212,176,51,130,11,180,107,95,132,74,181,54,209,33,33,129,35,228,24,141, + 62,204,68,43,157,13,121,25,217,81,102,124,217,159,149,43,87,230,89,125, + 118,166,64,27,109,29,113,107,3,235,148,209,22,161,13,68,135,195,174,8, + 149,126,28,68,135,132,34,184,78,3,213,97,132,42,212,217,77,16,68,123, + 198,222,177,212,4,65,16,4,209,70,32,129,35,8,130,32,58,36,212,68, + 73,168,66,63,14,162,35,98,119,187,59,53,229,183,93,40,130,35,8,130, + 8,132,73,55,149,39,145,16,237,0,18,56,130,32,136,64,196,198,139,244, + 244,244,201,254,71,120,17,237,16,18,56,130,32,8,13,84,30,179,69,180, + 3,12,119,179,228,228,228,4,180,55,191,250,234,171,212,85,99,144,72,150, + 161,21,95,157,245,139,125,242,169,167,2,202,236,15,175,188,210,89,139,162, + 67,162,214,97,150,149,149,149,94,84,84,84,8,149,213,4,212,34,57,234, + 131,107,187,232,254,227,230,228,228,228,1,200,157,58,117,170,184,175,127,191, + 62,120,255,111,127,7,128,252,87,95,125,53,207,238,204,117,52,34,89,134, + 220,23,0,140,29,59,22,59,119,238,204,231,159,245,250,210,250,113,188,254, + 198,27,236,241,199,30,83,60,229,145,121,243,216,159,22,47,54,45,10,92, + 96,164,43,141,243,53,236,0,251,5,71,46,104,0,48,101,138,19,0,176, + 105,83,82,208,249,86,253,235,45,31,171,229,24,202,134,29,246,219,35,242, + 47,91,42,108,19,39,230,225,245,215,111,23,23,62,45,45,45,13,90,15, + 78,46,116,36,112,109,23,35,77,148,98,197,188,113,227,70,108,220,184,17, + 39,78,158,134,127,95,174,191,66,13,11,57,57,57,76,186,133,203,79,4, + 124,69,178,12,115,199,142,29,11,0,249,75,150,44,65,113,113,113,238,216, + 177,99,225,223,103,155,175,215,223,120,35,160,140,164,98,33,63,102,132,209, + 163,71,99,252,248,241,226,54,122,244,104,140,30,61,58,200,135,85,158,124, + 234,41,54,98,68,52,198,142,25,133,225,195,157,112,58,157,152,50,197,137, + 181,107,129,181,107,125,66,231,116,58,49,124,184,19,99,199,140,194,136,17, + 209,182,249,127,246,185,191,51,173,207,118,219,39,148,41,42,42,42,204,202, + 202,154,84,82,82,130,242,242,116,100,102,102,226,224,193,131,40,45,45,197, + 200,145,35,241,230,155,111,162,164,164,4,89,89,89,147,252,235,197,17,237, + 4,93,2,151,147,147,195,164,21,243,212,169,83,33,141,66,120,5,109,119, + 230,114,114,114,242,184,111,190,221,251,203,123,184,8,229,181,39,95,145,44, + 67,46,204,59,119,238,204,31,59,118,172,154,77,91,191,47,43,98,102,4, + 167,211,137,209,163,71,219,42,114,177,49,195,113,252,196,41,124,253,53,48, + 105,226,4,156,175,159,128,73,19,39,4,188,255,250,107,224,248,137,83,136, + 141,25,110,139,79,46,62,161,94,205,216,52,147,190,179,138,97,86,86,86, + 58,128,73,139,22,45,194,200,145,35,1,0,67,135,174,64,69,69,5,42, + 42,42,80,90,90,138,228,228,100,100,102,102,98,209,162,69,0,48,137,70, + 85,182,31,130,22,60,213,130,87,204,106,228,228,228,228,217,220,84,41,70, + 60,47,191,252,50,0,224,233,167,159,198,212,169,83,177,113,227,198,220,156, + 156,28,216,232,47,32,186,2,32,138,144,157,190,34,88,134,249,197,197,197, + 185,197,197,197,226,142,37,75,150,0,0,230,206,157,139,157,59,119,26,242, + 37,23,176,199,31,123,76,224,205,148,252,245,145,121,243,24,0,12,25,50, + 36,100,90,163,23,115,242,228,73,244,235,215,15,0,240,197,23,30,36,37, + 13,199,147,79,189,207,36,173,152,224,173,152,127,120,229,94,67,246,221,77, + 219,0,248,242,188,101,235,54,163,89,51,205,75,47,222,35,72,133,69,254, + 217,8,82,97,124,233,197,123,4,110,143,127,39,70,210,74,109,152,65,122, + 243,49,122,244,104,220,51,115,166,109,205,160,127,255,224,3,38,253,77,91, + 109,46,46,42,42,42,156,53,107,22,70,142,28,137,210,210,82,228,231,95, + 130,237,219,79,98,250,244,233,112,56,28,72,78,78,198,162,69,101,184,246, + 218,254,184,250,234,76,204,154,53,11,133,133,133,121,90,125,114,68,219,193, + 144,192,105,85,204,118,35,143,120,148,242,178,113,227,198,92,0,121,118,251, + 146,95,167,157,190,34,85,134,99,199,142,13,16,55,53,252,209,94,200,62, + 57,61,162,148,148,148,4,143,199,163,40,126,186,51,46,67,42,108,0,240, + 211,159,254,20,95,124,225,193,148,41,189,20,207,223,180,233,172,97,31,113, + 177,19,208,171,215,54,76,154,56,1,238,166,109,136,139,85,123,237,235,23, + 195,224,126,185,182,128,21,129,180,146,150,195,133,77,42,106,79,62,245,20, + 123,242,169,167,152,85,161,227,194,86,92,92,44,138,218,223,63,248,128,113, + 159,22,132,110,82,118,118,54,28,14,7,42,42,42,112,247,221,55,32,55, + 119,5,210,210,222,69,101,229,125,72,75,123,23,0,240,208,67,131,145,156, + 156,140,236,236,108,20,22,22,202,7,161,16,109,20,67,2,215,26,240,200, + 77,254,249,233,167,159,6,96,111,212,200,109,203,133,33,28,190,194,205,206, + 157,59,49,119,238,92,0,129,145,27,63,198,241,15,64,177,20,161,74,163, + 55,183,219,109,41,223,175,191,241,6,171,168,168,8,18,54,206,201,147,39, + 1,40,139,27,0,56,157,198,125,42,137,217,215,95,95,11,160,25,64,240, + 107,20,77,174,1,224,19,47,46,44,106,34,38,61,254,247,15,62,96,102, + 68,142,139,155,92,196,184,45,46,116,82,95,70,4,143,247,185,1,64,114, + 114,50,230,207,31,142,215,94,219,45,138,219,254,253,119,33,57,57,25,14, + 135,67,108,198,4,124,211,7,42,42,42,42,140,94,15,17,57,116,253,85, + 95,125,245,85,65,41,138,226,248,143,229,219,148,167,14,73,36,203,80,231, + 84,0,185,47,195,125,114,74,145,25,31,149,103,54,106,123,252,177,199,132, + 152,152,24,244,235,215,79,20,57,249,171,18,7,14,28,16,223,63,50,239, + 125,246,228,83,190,77,143,79,165,136,13,0,110,189,181,151,226,6,0,143, + 254,143,62,219,29,29,189,17,218,31,94,121,69,208,211,162,160,132,146,184, + 73,185,103,230,76,129,247,203,154,233,155,229,125,108,233,233,233,112,56,28, + 120,226,137,17,226,49,46,110,252,60,135,195,97,230,18,136,86,66,87,4, + 199,7,45,40,53,223,73,43,230,112,68,55,60,122,146,71,110,225,32,156, + 182,35,89,134,146,65,38,0,20,35,183,124,0,224,125,116,102,250,228,164, + 240,232,205,169,16,62,89,105,158,84,19,51,41,7,14,28,8,232,243,227, + 2,4,232,111,174,84,138,224,124,17,155,50,94,47,144,149,21,15,224,125, + 246,199,55,181,251,251,148,154,253,206,157,211,223,207,39,79,111,166,111,76, + 173,233,209,72,62,212,112,58,157,72,74,74,178,181,159,205,12,247,204,156, + 41,60,249,212,83,140,231,199,8,124,180,36,159,26,224,112,56,80,89,121, + 159,216,7,199,113,56,28,98,164,71,180,15,66,10,156,108,168,124,190,191, + 47,74,74,88,196,205,31,133,48,181,62,171,48,68,60,97,243,21,201,50, + 148,251,2,144,43,109,146,132,68,220,172,248,145,71,71,78,231,215,72,74, + 186,22,192,98,43,102,21,81,18,58,185,176,73,247,183,160,222,148,41,69, + 57,130,107,214,244,89,84,212,136,168,40,95,57,104,13,106,81,18,36,61, + 3,63,180,210,27,69,205,134,145,124,168,193,197,196,104,179,160,221,240,200, + 205,168,184,1,216,82,80,80,48,233,205,55,223,20,197,77,250,42,37,57, + 57,25,5,5,5,0,176,197,150,76,19,97,71,83,224,20,42,75,188,250, + 234,171,130,124,216,124,56,34,55,121,196,35,141,174,194,21,241,132,35,186, + 138,100,25,234,245,53,118,236,88,62,71,14,64,96,159,156,30,164,149,122, + 224,251,107,195,218,108,39,21,186,33,67,134,136,130,35,127,229,84,85,217, + 19,193,217,17,37,118,68,218,210,19,94,204,230,37,61,61,61,175,176,176, + 112,115,118,118,118,64,4,39,23,55,192,23,233,21,22,22,34,61,61,61, + 15,64,157,197,44,19,17,64,85,224,84,42,203,60,233,107,184,104,205,136, + 199,78,95,145,44,195,80,190,114,114,114,152,84,212,20,176,20,13,243,136, + 46,84,68,163,151,226,226,98,213,39,153,36,37,249,230,162,41,69,112,102, + 136,137,249,41,220,77,95,4,69,112,118,70,137,145,196,202,104,200,112,205, + 135,227,253,116,102,224,253,107,225,16,84,255,80,255,45,79,60,241,196,164, + 69,139,22,5,137,28,127,45,45,45,197,19,79,60,1,180,68,111,117,32, + 145,107,243,40,10,156,86,101,25,110,218,98,196,99,183,184,217,77,40,95, + 242,62,57,46,116,242,62,57,171,249,83,138,234,204,217,209,174,200,228,205, + 163,86,132,238,15,175,188,34,248,154,183,146,0,148,160,229,117,184,173,81, + 162,22,118,60,209,68,58,247,205,200,60,54,165,121,120,118,52,139,114,148, + 166,14,24,229,158,153,51,5,155,166,4,40,146,158,158,158,87,84,84,148, + 55,106,212,168,73,179,102,205,66,118,118,54,70,142,28,41,246,185,201,31, + 213,5,191,176,85,84,84,144,192,181,113,130,4,174,13,138,91,94,56,242, + 16,78,95,109,81,220,36,199,21,251,228,140,228,239,15,175,220,43,112,145, + 177,35,90,179,11,179,66,167,84,97,242,235,179,43,74,148,163,38,72,210, + 207,102,251,200,140,10,148,244,124,59,197,13,176,79,140,194,57,136,197,31, + 197,101,165,167,167,103,21,22,22,230,41,204,115,227,194,6,180,68,110,36, + 110,237,0,165,8,142,63,148,55,160,226,203,201,201,97,70,158,68,111,230, + 124,89,30,90,77,20,108,64,177,12,149,242,33,45,35,163,101,22,202,87, + 56,35,212,214,20,54,159,239,247,253,15,100,86,62,71,210,162,105,11,225, + 18,58,32,88,84,236,22,25,35,190,59,51,82,161,83,56,44,21,181,58, + 138,222,218,7,138,63,110,94,1,42,85,150,122,42,96,35,231,74,207,247, + 211,222,197,141,251,201,211,178,173,84,70,70,203,77,203,151,29,215,105,180, + 230,107,139,81,157,89,158,124,234,125,166,246,180,20,41,155,54,157,237,16, + 215,219,153,208,19,22,171,172,1,167,40,108,180,154,64,219,197,108,132,165, + 11,3,2,151,7,29,17,143,29,68,210,151,130,239,176,149,161,134,31,211, + 215,217,153,107,109,105,63,95,168,40,145,4,174,157,65,130,212,105,48,44, + 112,225,136,224,252,105,242,252,105,242,244,166,49,75,36,125,105,228,193,182, + 8,78,201,174,31,75,34,78,181,54,209,33,33,129,35,228,24,141,62,194, + 189,110,91,71,64,94,70,118,148,25,95,246,199,255,154,103,197,150,64,27, + 109,29,113,19,4,70,91,39,217,64,116,56,236,138,80,233,199,65,116,72, + 40,130,235,52,80,29,70,168,66,157,231,4,65,180,103,104,225,15,130,32, + 8,162,67,66,2,71,16,4,65,116,72,4,106,163,36,136,118,6,53,29, + 19,132,46,40,130,35,8,130,32,58,36,186,22,60,37,136,142,8,211,247, + 80,11,221,8,178,65,91,225,182,79,16,132,54,1,77,148,145,252,67,146, + 47,235,190,34,133,221,215,36,197,142,235,11,149,63,43,62,254,84,80,200, + 0,224,145,236,89,97,249,30,76,217,167,38,74,130,208,69,64,4,167,183, + 34,224,127,202,80,60,146,61,75,245,88,36,125,189,85,80,168,199,132,45, + 149,88,36,125,233,225,214,91,111,99,0,176,118,237,26,211,254,4,64,96, + 0,147,94,219,195,217,179,2,190,67,171,199,173,194,152,242,207,68,160,94, + 102,130,232,180,88,234,131,123,227,47,163,21,95,141,114,217,136,189,76,233, + 53,28,216,149,103,187,8,247,181,175,89,187,6,107,214,174,177,211,100,171, + 192,0,198,183,112,216,215,243,61,24,249,174,194,241,27,14,231,255,130,32, + 58,34,166,250,224,164,162,160,36,24,143,221,95,172,219,150,90,165,209,242, + 103,214,111,43,20,106,226,214,26,34,39,173,172,148,174,253,135,178,171,109, + 109,186,99,0,107,11,205,157,86,248,124,211,5,0,192,245,83,18,109,189, + 22,237,223,96,113,200,115,228,223,149,221,223,163,252,183,242,195,238,97,86, + 77,18,68,167,192,244,32,147,241,99,187,40,238,255,114,103,67,171,218,106, + 75,190,66,17,206,188,112,113,227,66,192,163,31,171,194,16,234,6,198,234, + 241,72,195,197,67,254,93,188,179,44,3,15,60,88,46,126,30,63,182,75, + 208,62,192,247,93,201,133,140,219,210,250,30,149,190,11,173,239,71,154,191, + 31,118,135,186,42,130,32,128,16,77,148,106,77,66,106,21,51,63,182,107, + 239,68,93,206,239,127,176,156,113,91,239,44,203,192,59,203,50,116,251,49, + 202,174,189,19,67,230,91,78,56,155,196,148,42,84,126,253,227,199,118,193, + 253,15,150,91,242,171,84,81,218,33,110,227,199,118,81,141,120,173,30,215, + 203,231,155,46,216,54,240,101,252,216,46,138,223,133,26,74,191,81,181,223, + 149,218,247,168,149,119,163,255,55,130,32,212,209,20,56,233,221,127,184,51, + 194,239,140,181,42,151,72,34,143,128,194,9,191,102,121,116,96,149,1,3, + 6,136,34,61,96,192,0,203,246,120,69,171,85,161,91,57,46,71,222,239, + 118,253,148,68,99,25,54,129,214,119,97,199,111,84,235,119,21,201,255,27, + 65,116,6,66,14,50,233,140,34,215,17,196,13,0,142,87,87,11,74,239, + 219,3,12,96,159,111,186,0,249,198,69,206,206,40,142,163,231,187,176,242, + 27,213,243,187,34,145,35,8,251,208,213,7,199,135,137,71,98,160,194,3, + 15,150,139,205,117,225,168,244,67,209,81,196,13,0,230,252,207,92,182,228, + 205,37,226,251,165,111,46,105,23,34,199,197,77,9,46,114,106,199,245,34, + 111,58,148,10,86,192,123,13,27,210,223,40,183,247,151,101,25,65,101,124, + 255,131,229,76,106,83,42,94,188,57,95,73,208,172,54,83,19,68,103,71, + 20,56,173,63,188,20,189,119,150,161,250,225,164,254,212,124,189,179,44,3, + 208,89,249,223,255,96,57,83,170,92,244,228,133,35,31,117,40,61,38,23, + 33,181,138,108,215,94,93,174,84,43,84,169,47,173,107,210,3,23,55,254, + 190,93,168,155,1,252,98,103,74,4,120,185,242,223,33,191,177,226,239,57, + 99,174,222,10,32,240,55,164,116,158,214,247,244,151,101,25,130,0,229,155, + 167,49,87,111,245,9,163,108,206,160,82,30,9,130,48,134,40,112,242,63, + 168,252,223,42,251,115,134,252,195,141,185,122,43,254,162,113,252,47,203,50, + 4,105,229,34,69,90,129,240,10,38,20,90,19,167,199,92,189,85,151,200, + 241,72,149,191,151,229,55,100,250,191,44,203,16,244,78,76,135,74,133,42, + 183,167,203,150,2,183,222,122,27,91,179,118,77,64,147,215,173,183,222,198, + 140,78,248,14,37,178,90,199,249,49,121,4,99,196,126,36,209,211,122,96, + 37,234,214,211,18,18,201,22,4,130,232,232,232,154,232,221,145,154,237,66, + 209,81,250,28,165,226,6,248,174,203,204,132,111,233,141,136,28,169,128,105, + 165,13,37,128,134,51,21,70,180,190,19,59,126,155,90,191,47,18,55,130, + 176,151,144,2,215,153,196,141,211,222,69,110,244,232,49,170,249,214,58,166, + 134,154,8,241,253,161,154,231,204,28,211,195,245,83,18,45,255,46,191,220, + 217,16,52,95,77,207,32,19,173,244,242,227,114,244,12,50,145,242,151,101, + 25,66,107,204,211,36,136,246,142,230,32,147,206,40,110,156,246,60,176,102, + 87,241,46,213,97,232,187,138,119,177,182,30,30,8,128,112,253,148,68,197, + 129,38,118,12,48,145,242,67,217,213,194,101,35,246,50,185,128,92,62,98, + 47,190,220,217,128,49,87,251,62,127,185,179,65,220,167,100,67,250,89,143, + 24,153,153,167,72,34,71,16,198,8,57,15,78,233,79,23,234,142,85,111, + 191,153,244,206,244,129,7,203,21,239,142,237,98,204,213,91,77,221,105,135, + 75,220,148,162,6,126,253,95,238,108,48,29,221,140,190,118,140,166,32,11, + 128,48,250,90,227,81,92,164,241,139,28,228,155,228,113,93,182,221,120,113, + 129,82,123,213,123,142,210,185,118,60,170,43,148,63,130,32,148,49,253,168, + 46,59,197,39,146,119,166,109,233,46,56,28,121,217,245,245,174,144,181,190, + 158,115,148,248,114,103,3,198,143,237,162,154,111,171,199,229,72,5,76,107, + 234,128,29,24,21,46,181,115,228,231,134,35,143,4,65,232,195,212,106,2, + 252,89,130,74,175,70,159,51,40,189,203,53,82,129,152,65,154,63,181,215, + 72,161,117,205,102,175,123,244,104,237,232,141,35,0,130,153,190,184,199,238, + 47,198,151,59,27,84,203,202,234,113,189,216,25,189,17,4,209,113,49,29, + 193,217,45,16,225,22,55,41,173,45,110,28,187,175,185,184,120,151,238,244, + 70,206,149,18,170,172,172,30,143,36,122,6,17,61,220,178,206,96,200,115, + 229,162,27,110,251,4,65,104,19,32,112,122,71,13,74,254,148,154,104,253, + 27,35,233,75,175,13,232,204,147,86,69,19,73,95,157,13,254,152,46,187, + 202,36,220,101,75,223,29,65,180,46,166,86,244,182,3,242,69,24,129,202, + 149,32,8,163,8,84,107,16,161,8,231,124,64,59,132,43,84,254,58,156, + 56,10,66,155,31,5,75,16,109,1,18,56,162,243,65,2,65,16,157,2, + 83,163,40,9,130,32,8,162,173,67,2,71,16,4,65,116,72,168,137,146, + 32,218,27,212,196,74,16,186,160,8,142,32,8,130,232,144,152,158,232,77, + 16,237,157,95,63,253,180,173,145,208,239,95,126,57,160,65,36,127,225,66, + 91,237,231,46,88,64,13,46,4,97,128,128,38,202,5,185,185,182,254,33, + 23,230,231,171,254,33,201,151,117,95,145,194,238,107,146,98,199,245,133,202, + 159,21,31,95,109,219,197,0,224,186,9,99,194,242,61,236,252,166,140,1, + 192,216,159,140,208,111,159,154,40,9,66,23,166,250,224,190,217,94,170,235, + 15,246,147,113,35,45,87,10,118,248,106,111,249,181,147,247,255,246,55,6, + 0,247,254,242,151,150,252,45,200,205,101,183,220,116,167,248,121,221,250,213, + 1,194,97,245,184,213,188,229,229,229,41,30,203,203,203,35,129,35,136,78, + 138,165,62,184,111,74,47,82,124,53,74,193,91,39,152,210,107,56,176,43, + 207,118,17,238,107,63,112,224,0,14,28,56,96,167,201,86,97,65,110,46, + 227,91,56,236,191,242,250,113,166,244,106,244,28,206,31,151,158,180,61,159, + 225,176,73,16,29,25,83,2,247,77,233,69,170,66,97,84,48,212,42,248, + 130,183,78,48,187,43,123,173,60,71,90,232,164,215,23,46,145,147,138,65, + 56,155,25,35,197,127,221,247,191,248,175,251,254,215,246,107,81,19,46,169, + 128,233,57,135,195,133,200,46,65,250,227,210,147,204,110,155,4,209,25,48, + 29,193,165,13,136,83,220,90,219,86,91,242,213,154,121,225,34,176,48,63, + 95,224,77,116,118,8,67,168,27,1,171,199,35,13,23,168,75,83,227,2, + 182,211,199,95,199,165,169,45,223,133,116,159,116,147,218,224,164,13,136,69, + 218,128,88,77,191,74,3,80,180,6,165,112,155,161,236,18,4,209,130,166, + 192,169,53,9,105,85,194,105,3,226,80,125,242,82,93,206,87,125,82,195, + 184,173,210,146,55,80,90,242,134,110,63,70,169,62,121,105,200,124,203,9, + 103,147,152,220,159,244,250,211,6,196,97,213,39,53,150,252,42,245,59,89, + 237,243,250,166,244,34,164,13,136,83,21,41,171,199,245,98,103,20,39,21, + 42,206,174,157,191,87,61,95,126,76,41,61,39,109,64,44,62,89,19,252, + 61,106,9,153,210,49,18,53,130,48,135,166,192,217,121,231,31,138,145,163, + 30,3,128,32,145,107,45,164,17,80,184,125,241,107,230,101,96,23,93,187, + 118,21,69,186,107,215,174,150,237,113,81,86,187,81,176,122,92,142,188,223, + 237,175,239,254,63,99,25,54,1,23,176,49,99,127,29,116,140,239,211,18, + 192,80,112,1,83,26,242,207,247,217,61,189,128,32,58,43,33,155,40,59, + 163,200,117,4,113,3,128,167,158,124,82,80,122,223,30,88,144,155,203,120, + 159,155,116,227,34,23,142,190,56,45,113,227,88,17,57,45,113,227,144,200, + 17,132,125,232,154,232,189,48,63,95,224,119,210,225,174,244,71,142,122,76, + 108,174,11,71,165,31,138,142,34,110,0,240,233,186,53,108,215,142,93,226, + 251,219,111,185,173,93,136,28,23,55,37,184,200,169,29,215,203,135,31,159, + 13,16,16,169,96,5,188,215,176,177,107,231,239,69,193,227,246,238,158,209, + 43,168,140,63,89,83,195,202,74,255,40,126,150,138,87,245,169,75,130,246, + 73,211,133,186,14,130,32,212,17,5,78,222,231,163,22,69,233,189,107,14, + 213,15,39,245,167,230,171,180,228,13,64,103,229,191,234,147,26,54,253,142, + 158,138,21,184,222,62,65,173,81,135,114,17,82,242,181,234,147,26,86,125, + 82,151,171,128,107,150,95,63,247,165,117,77,122,224,226,38,127,223,81,240, + 139,156,41,17,224,66,196,133,105,204,216,95,43,70,112,169,253,143,0,0, + 170,78,12,20,247,41,157,167,36,108,156,59,110,235,25,16,149,73,35,184, + 157,223,220,206,0,224,14,201,62,126,30,79,71,66,71,16,230,16,5,46, + 84,69,42,141,108,86,125,242,88,200,63,220,128,126,71,53,143,79,191,163, + 167,192,69,78,46,30,210,200,38,148,29,142,214,196,233,1,253,142,234,18, + 57,30,169,242,247,129,71,243,67,166,159,126,71,79,65,239,68,111,248,35, + 85,64,61,130,179,34,110,239,255,237,111,236,192,129,3,1,77,204,239,255, + 237,111,204,232,132,239,80,34,171,117,156,31,91,245,73,13,83,187,137,177, + 42,226,118,194,69,78,26,153,201,209,211,140,169,70,238,130,5,66,254,194, + 133,44,127,225,66,166,214,76,169,167,25,147,32,8,125,232,154,38,208,145, + 154,237,66,209,81,250,28,165,226,6,248,174,203,204,132,111,233,141,136,28, + 169,128,105,165,13,37,128,134,51,21,70,180,250,216,172,136,27,71,171,143, + 141,196,141,32,236,37,164,192,117,38,113,227,180,119,145,91,178,100,169,106, + 190,181,142,169,161,38,66,124,191,150,72,153,61,166,135,191,190,251,255,44, + 255,46,143,86,185,113,180,202,29,176,79,207,32,19,173,244,82,42,171,155, + 130,246,233,25,100,34,229,142,219,122,10,74,118,8,130,208,38,228,60,56, + 160,115,137,27,167,61,139,92,245,241,106,213,121,112,213,199,171,109,241,17, + 78,22,230,231,11,106,83,2,236,24,96,34,229,169,199,47,18,128,22,161, + 226,91,159,139,30,15,16,46,233,62,233,38,181,193,169,172,110,18,55,53, + 180,166,9,168,17,202,38,65,16,129,132,156,7,167,84,81,86,86,107,221, + 177,186,117,247,155,77,191,163,167,192,109,141,28,245,88,144,184,105,249,49, + 202,128,126,71,67,230,91,142,218,245,219,129,220,159,244,250,43,171,221,166, + 163,155,37,203,150,106,142,116,93,152,159,47,44,89,102,60,138,139,52,92, + 228,228,27,23,55,59,162,55,14,23,40,181,87,189,231,112,30,157,211,79, + 224,175,252,189,85,164,54,237,176,71,16,157,1,211,235,193,217,41,62,118, + 218,106,75,190,66,17,142,188,84,87,133,142,208,244,156,163,68,101,181,27, + 105,3,226,84,243,109,245,184,28,249,106,4,118,70,110,114,244,8,151,158, + 115,56,225,16,34,18,55,130,48,134,169,103,81,254,100,228,113,213,87,254, + 94,47,217,15,247,23,178,31,238,47,240,247,74,175,118,33,205,159,218,107, + 164,208,186,102,179,215,189,100,137,118,244,198,89,152,159,47,152,233,139,251, + 201,200,227,168,172,118,171,150,149,213,227,122,177,51,122,35,8,162,227,98, + 58,130,179,91,32,194,45,110,82,90,91,220,56,118,95,243,220,185,115,116, + 167,55,114,174,148,80,101,101,245,120,36,209,179,162,247,234,53,31,233,62, + 215,204,138,222,255,252,215,167,186,207,165,209,149,4,97,140,0,129,211,59, + 160,98,221,250,213,150,29,71,210,151,94,27,122,243,164,21,61,68,210,87, + 103,131,15,60,177,171,76,228,130,100,55,36,72,4,209,186,4,8,92,36, + 43,83,242,69,24,129,202,149,32,8,163,8,84,107,16,161,8,231,84,9, + 59,132,43,84,254,58,156,56,10,66,155,31,5,75,16,109,1,18,56,162, + 243,65,2,65,16,157,2,211,43,122,19,4,65,16,68,91,134,4,142,32, + 8,130,232,144,152,158,38,64,16,109,18,106,126,36,8,194,15,69,112,4, + 65,16,68,135,132,4,142,32,8,130,232,144,132,108,162,100,146,21,147,5, + 64,115,208,165,145,115,67,165,181,211,150,93,231,134,74,75,121,182,231,220, + 80,105,173,216,34,8,162,243,160,43,130,219,180,169,14,155,54,213,5,84, + 52,114,24,192,248,121,70,81,75,171,199,47,0,120,25,99,94,198,2,206, + 209,155,103,198,24,100,73,117,231,89,41,173,222,60,43,209,214,203,89,209, + 166,191,12,204,228,89,233,123,211,155,86,143,95,130,32,58,55,212,68,73, + 16,4,65,116,72,12,9,156,218,93,62,191,203,54,131,158,180,90,209,69, + 168,8,64,43,207,102,34,55,189,105,205,70,68,90,105,91,179,156,67,218, + 87,137,166,244,248,85,251,14,245,164,165,40,142,32,8,53,20,5,142,1, + 140,111,0,48,101,74,15,221,6,249,185,114,27,70,211,26,245,43,8,2, + 204,230,89,240,63,207,197,76,158,165,105,141,250,109,143,229,44,247,39,24, + 120,22,142,60,207,102,211,26,245,75,16,68,231,36,168,154,80,187,107,158, + 50,165,135,216,15,50,101,74,15,177,115,95,122,190,244,28,121,90,165,193, + 0,122,211,42,249,5,90,238,252,5,65,48,148,86,26,129,105,165,85,203, + 179,158,180,106,121,86,178,35,69,106,83,171,156,213,210,234,41,103,35,126, + 213,236,200,175,87,90,38,70,127,27,60,109,148,68,181,140,166,21,253,210, + 60,56,130,32,252,4,68,112,90,77,66,155,54,213,105,222,233,171,85,66, + 60,181,203,106,194,0,0,32,0,73,68,65,84,173,86,132,17,42,173,150, + 95,53,145,177,35,173,86,158,173,248,213,106,226,100,140,133,44,103,173,180, + 161,202,217,172,223,80,191,13,173,136,42,212,247,27,174,180,4,65,116,110, + 76,13,50,225,149,127,184,251,132,212,252,2,161,251,222,212,210,134,187,239, + 77,205,175,25,127,109,161,156,13,251,243,139,172,25,191,252,59,53,147,150, + 250,226,8,130,144,67,163,40,9,130,32,136,14,9,9,28,65,16,4,209, + 33,49,37,112,124,16,130,0,8,70,70,224,73,49,147,86,58,248,33,202, + 96,231,139,52,207,102,251,109,204,164,85,27,176,97,36,109,107,150,179,97, + 127,254,193,30,102,252,242,239,212,76,90,181,1,54,4,65,116,94,2,4, + 78,171,98,209,234,236,7,180,7,86,132,170,48,67,165,213,242,171,53,56, + 194,106,90,173,60,91,241,171,37,148,90,131,87,0,237,129,21,161,42,249, + 80,105,67,229,89,235,122,181,250,38,67,125,191,225,74,75,16,68,231,70, + 177,186,83,234,172,215,26,66,46,31,210,29,228,68,75,40,66,164,13,53, + 116,93,58,85,192,104,158,165,67,204,141,230,89,43,109,168,60,75,237,24, + 205,115,107,149,179,86,158,149,166,8,232,245,171,52,69,192,104,218,0,191, + 52,77,128,32,8,63,138,77,148,98,83,158,191,210,48,50,162,141,159,43, + 183,97,52,173,81,191,140,49,152,205,179,88,81,154,200,179,52,173,81,191, + 237,177,156,229,254,140,68,80,242,60,155,77,107,212,47,65,16,157,19,67, + 125,112,106,119,247,225,238,35,210,138,42,66,245,197,105,229,57,156,125,113, + 118,244,189,41,249,109,173,114,14,105,95,165,121,84,143,95,181,239,80,79, + 90,234,123,35,8,66,13,26,69,73,16,4,65,116,72,66,198,48,210,62, + 151,80,119,202,70,206,13,149,214,78,91,118,157,27,42,45,229,217,158,115, + 67,165,213,180,69,125,112,4,65,248,161,7,29,17,29,11,18,56,130,32, + 252,80,19,37,65,16,4,209,33,33,129,35,8,130,32,58,36,49,0,240, + 224,194,18,230,118,157,7,0,196,37,116,197,178,5,163,2,90,46,249,113, + 249,49,181,253,74,216,97,35,148,109,121,254,165,251,99,98,18,241,206,194, + 107,194,222,34,107,151,79,110,71,110,67,109,191,93,54,66,253,22,196,243, + 22,236,96,110,183,19,113,113,73,72,78,73,197,107,243,7,216,91,182,212, + 212,72,16,132,69,132,135,22,150,176,178,109,133,56,83,181,15,0,208,59, + 245,10,140,152,48,75,172,216,102,60,242,17,251,161,108,13,156,142,51,232, + 217,127,48,134,141,187,23,239,44,188,70,144,239,151,166,145,99,135,13,37, + 30,88,176,131,157,174,222,135,35,251,54,193,81,87,29,144,127,0,144,94, + 87,114,143,1,24,120,197,20,244,25,112,133,110,97,240,122,154,67,230,33, + 42,38,90,20,130,7,101,101,105,196,167,220,127,217,182,66,212,156,56,132, + 164,228,222,184,108,196,109,248,248,79,63,19,30,88,176,131,237,217,254,126, + 208,126,187,108,200,243,47,255,45,112,238,123,166,136,29,216,243,79,212,156, + 58,132,46,93,122,225,226,65,99,209,179,239,16,244,236,55,36,72,232,184, + 16,122,221,238,208,101,25,23,135,184,184,36,44,91,120,13,173,235,70,16, + 132,101,98,220,174,243,56,83,181,15,69,159,253,5,39,78,156,192,204,89, + 207,193,229,240,77,170,157,241,200,71,236,219,237,127,199,209,67,95,98,199, + 87,159,227,246,187,31,199,185,51,71,113,251,236,194,160,253,60,141,28,59, + 108,200,225,194,182,99,227,31,81,123,186,28,103,79,30,196,247,223,238,12, + 200,127,84,76,180,120,93,245,245,245,184,230,186,235,81,123,186,28,41,125, + 50,112,251,236,66,166,38,58,210,74,190,169,201,21,50,47,177,177,9,232, + 157,122,133,40,138,102,124,202,145,218,185,252,170,177,104,114,57,112,251,236, + 66,118,238,204,209,160,253,51,30,249,136,41,137,156,25,27,46,71,157,234, + 111,1,0,230,191,86,205,106,78,30,64,117,249,14,84,29,250,18,95,126, + 254,1,174,28,126,45,78,31,223,135,62,23,93,129,139,7,141,197,125,207, + 20,49,46,116,15,46,216,193,126,216,253,41,78,254,184,15,110,119,67,200, + 178,140,139,235,130,126,23,95,129,7,23,236,96,203,126,251,147,144,231,19, + 4,65,104,17,227,245,52,163,169,201,133,250,250,122,212,213,213,161,169,201, + 133,11,142,179,1,2,196,197,195,81,119,28,71,15,125,129,154,19,135,80, + 93,81,140,239,191,221,137,99,199,142,169,10,129,84,220,204,218,144,162,38, + 108,245,245,245,56,113,226,132,152,127,0,224,215,197,41,218,184,6,73,73, + 73,33,69,71,42,12,90,212,215,215,3,0,156,78,103,128,16,152,241,41, + 71,154,247,162,141,107,144,53,245,54,52,121,92,232,217,127,48,28,117,199, + 3,246,243,114,150,139,156,81,27,183,207,46,100,23,28,103,131,126,11,156, + 249,175,85,179,202,131,95,160,252,187,141,56,113,108,55,206,157,61,10,183, + 219,141,237,219,54,192,227,241,96,66,214,205,65,66,87,123,230,8,42,143, + 236,196,150,117,127,246,149,173,70,20,215,216,216,136,134,134,6,252,234,225, + 151,48,112,232,84,205,178,39,8,130,208,67,140,244,131,199,227,65,99,67, + 109,144,0,113,241,56,95,87,141,31,74,214,192,237,172,195,15,223,239,198, + 137,19,39,196,138,94,142,146,184,25,181,193,81,19,54,0,98,101,92,83, + 83,3,135,195,129,216,216,132,160,244,78,167,19,117,117,117,112,187,221,33, + 69,71,42,12,245,245,245,112,58,157,170,21,179,211,233,132,199,227,17,207, + 143,138,137,70,108,108,130,152,39,158,214,172,208,241,114,217,240,207,21,184, + 225,198,219,112,186,122,63,220,206,186,128,253,55,222,124,151,88,222,74,145, + 156,94,27,92,252,26,27,106,1,248,126,11,82,42,15,126,129,189,59,254, + 129,234,242,29,248,110,247,215,112,187,221,104,108,108,68,93,157,79,216,63, + 91,251,33,98,99,99,113,253,127,76,23,133,46,185,71,63,120,92,14,0, + 64,109,109,45,26,27,27,209,212,212,164,120,173,92,224,220,238,6,93,205, + 153,4,65,16,161,136,145,239,144,11,16,175,172,93,46,23,26,93,231,208, + 232,58,135,138,138,10,212,215,215,227,204,153,51,138,162,34,23,55,51,54, + 0,125,194,86,95,95,15,135,195,1,143,199,131,217,115,231,99,240,85,255, + 129,184,132,100,184,253,21,43,208,18,57,56,157,206,144,162,115,162,98,23, + 60,141,78,241,124,94,129,43,225,241,120,224,112,180,248,137,75,232,138,30, + 125,7,225,154,235,174,199,234,143,223,131,199,227,65,125,125,61,98,98,98, + 12,9,29,23,74,158,119,167,211,137,127,111,88,131,137,19,39,6,92,147, + 211,233,84,21,57,163,54,164,226,39,231,193,5,59,88,241,150,101,168,46, + 223,129,210,157,91,112,254,252,121,52,52,52,192,225,112,160,169,169,41,224, + 6,96,249,95,151,160,75,151,46,184,247,254,167,209,181,33,21,13,231,78, + 137,98,40,45,43,41,220,134,211,233,84,45,107,130,32,8,163,4,8,92, + 76,76,76,144,0,85,87,87,195,225,112,96,198,140,25,0,128,61,123,246, + 136,209,88,93,93,93,128,168,0,202,226,102,212,134,81,97,123,96,246,60, + 244,232,61,16,131,175,250,15,92,54,226,54,188,179,240,26,225,87,191,222, + 164,58,72,65,77,232,78,87,125,139,102,79,35,206,251,7,172,104,53,169, + 1,62,129,147,70,58,203,22,140,18,102,60,242,17,243,184,47,224,190,217, + 207,160,238,204,17,172,248,248,111,134,133,78,42,148,27,254,185,66,204,243, + 214,173,91,49,113,226,68,12,27,54,12,91,183,110,21,247,43,137,156,81, + 27,114,241,147,226,118,59,81,91,123,12,165,59,183,136,145,178,84,216,184, + 48,121,60,30,252,247,236,135,17,159,208,21,0,224,114,214,194,113,254,20, + 0,136,145,155,90,4,199,211,19,4,65,216,69,128,192,37,37,37,1,240, + 9,144,154,48,1,16,133,233,129,217,243,112,241,224,107,69,81,121,112,97, + 9,219,181,105,105,72,113,11,101,163,108,91,33,142,31,41,9,18,54,30, + 81,57,28,14,184,92,46,60,48,123,30,186,246,24,128,244,203,39,99,200, + 168,219,13,143,86,148,10,221,134,127,174,64,92,92,28,198,141,27,39,250, + 51,3,31,169,120,186,122,31,14,148,124,138,89,179,159,194,249,186,106,124, + 178,250,31,170,62,179,166,222,134,218,211,229,232,115,241,149,120,112,97,9, + 227,66,89,95,83,137,27,110,188,13,255,222,176,70,76,247,217,103,159,97, + 218,180,105,152,56,113,34,182,110,221,42,238,95,253,241,123,184,115,198,175, + 16,155,144,140,7,22,236,48,101,131,139,159,28,222,100,88,83,83,131,147, + 39,79,226,246,219,239,0,0,124,250,233,39,112,187,221,136,137,137,193,140, + 25,63,3,0,36,247,184,8,93,187,15,192,249,115,213,248,98,243,39,184, + 234,170,171,77,149,35,65,16,132,85,2,38,122,243,202,143,11,137,199,227, + 17,133,105,251,246,237,0,32,238,159,57,115,38,226,146,122,96,64,234,8, + 113,152,185,219,117,30,245,53,149,162,184,241,62,42,163,54,106,78,28,194, + 250,85,75,176,227,171,207,3,6,144,72,243,116,239,189,247,34,46,169,7, + 82,135,76,192,144,81,183,227,211,63,207,18,204,204,57,227,209,85,77,77, + 13,206,156,57,131,207,62,251,76,20,97,179,188,179,240,26,225,211,63,207, + 18,134,140,186,29,169,67,38,32,46,169,7,166,77,155,134,105,211,166,137, + 55,17,220,231,137,19,39,240,241,7,255,135,119,22,47,64,125,77,37,248, + 28,180,143,255,244,51,97,64,250,8,196,37,245,192,196,137,19,145,148,148, + 36,54,137,126,246,217,103,0,16,180,255,131,247,151,193,81,87,13,143,231, + 130,41,27,245,245,245,216,186,117,171,88,206,114,154,154,154,112,215,221,191, + 68,114,143,139,16,155,144,140,158,61,123,98,198,140,159,137,226,182,109,219, + 23,104,116,157,199,249,115,213,104,244,95,7,224,235,95,35,8,130,136,52, + 1,2,231,241,120,48,109,218,52,113,128,68,76,76,12,214,174,93,11,0, + 24,55,110,156,120,167,207,247,187,157,117,168,174,42,195,140,71,62,98,128, + 175,15,170,91,207,52,92,126,213,88,49,74,49,99,163,103,255,193,184,105, + 250,92,92,115,221,245,168,174,174,22,155,36,61,30,15,98,98,98,240,217, + 103,159,97,235,214,173,112,59,235,80,117,96,27,14,148,124,138,219,103,23, + 178,7,22,236,208,61,119,202,227,241,192,229,114,193,229,114,193,225,112,192, + 225,112,160,174,174,14,211,166,77,195,176,97,195,44,245,7,61,176,96,7, + 187,125,118,33,59,80,242,41,170,14,108,131,219,89,135,138,138,10,81,56, + 185,200,240,237,174,25,191,196,3,243,22,162,91,207,52,196,249,155,247,102, + 60,242,17,171,174,40,19,211,242,116,0,48,109,218,52,0,45,209,48,191, + 142,153,247,62,136,228,30,3,16,19,147,104,202,134,195,225,192,196,137,19, + 197,27,19,78,84,92,156,248,62,62,161,43,186,118,31,128,248,132,174,152, + 48,225,167,0,128,178,178,82,148,149,149,34,54,54,22,77,46,7,28,117, + 199,177,111,111,9,26,26,26,2,124,18,4,65,68,18,197,71,117,241,202, + 15,128,40,40,128,79,160,120,4,18,19,19,131,79,86,255,3,213,21,197, + 248,161,108,141,216,44,54,232,138,169,184,116,240,120,113,248,185,25,27,195, + 198,221,139,81,147,102,99,240,85,255,129,251,102,63,131,59,238,252,57,128, + 224,62,175,45,69,255,194,166,13,255,192,209,67,95,162,100,203,159,177,99, + 227,31,69,161,84,67,42,108,124,227,253,120,57,207,252,1,189,251,15,69, + 124,66,119,49,143,70,153,241,200,71,108,199,198,63,162,100,203,159,113,244, + 208,151,216,181,125,125,192,96,157,154,154,26,49,66,226,62,51,71,220,134, + 81,147,102,99,212,196,7,196,9,227,135,247,109,244,149,139,63,109,125,125, + 61,92,46,87,64,83,175,211,233,20,247,207,158,59,31,151,14,30,31,208, + 212,107,212,198,204,153,51,1,248,154,170,99,98,90,90,175,227,226,146,208, + 63,117,56,102,206,122,10,177,177,137,98,132,118,244,104,5,14,30,60,0, + 0,226,32,146,109,219,190,192,55,223,108,199,201,147,39,81,91,91,107,170, + 12,9,130,32,236,32,104,20,101,124,66,119,196,37,245,192,29,119,254,92, + 236,183,241,120,60,88,187,118,45,110,189,245,214,128,126,27,143,199,131,143, + 63,248,63,60,250,228,34,113,212,226,199,127,250,153,192,69,230,198,155,239, + 194,134,127,174,48,108,131,55,53,74,159,84,242,192,220,231,53,7,109,0, + 16,69,245,129,5,59,152,116,20,37,135,139,153,84,40,249,0,149,204,17, + 183,97,224,21,83,112,161,254,20,246,110,255,32,100,193,41,69,37,98,31, + 228,129,47,176,183,100,11,0,237,65,49,220,167,210,92,188,186,83,135,197, + 166,222,99,199,142,161,174,174,14,247,222,123,47,128,22,97,58,115,230,140, + 56,72,231,210,193,227,113,213,184,123,2,154,122,141,216,120,96,246,60,116, + 237,121,41,220,206,58,196,73,34,54,0,88,182,240,26,225,190,103,138,88, + 114,114,111,124,95,246,9,214,126,252,22,98,98,98,196,161,255,124,116,100, + 67,67,131,24,181,185,221,110,177,233,146,163,53,192,132,32,8,194,110,130, + 4,174,107,143,1,72,29,50,1,245,53,149,162,64,241,59,124,46,126,124, + 208,2,223,47,159,164,173,36,114,70,109,0,198,132,14,0,86,127,252,30, + 230,62,254,251,128,41,2,124,176,136,52,90,3,130,133,141,139,204,175,126, + 189,137,237,47,253,20,64,203,60,55,181,38,54,249,126,46,42,123,75,182, + 152,18,54,142,116,242,61,111,162,149,10,16,128,128,17,168,114,113,51,99, + 227,226,193,215,162,91,207,52,84,29,216,22,20,193,1,192,187,191,203,18, + 238,123,166,136,57,28,103,112,235,140,135,81,115,226,16,214,124,242,65,208, + 104,74,94,94,143,60,250,20,82,250,100,136,163,40,27,27,27,53,71,165, + 134,26,177,74,16,4,97,20,177,22,227,149,83,124,151,20,164,13,190,22, + 192,181,136,141,73,192,141,55,223,37,206,233,146,139,31,223,175,132,92,228, + 204,216,224,132,18,58,105,100,166,36,148,92,100,0,117,97,227,231,242,249, + 99,188,60,184,56,105,193,231,155,41,137,138,17,97,147,227,116,58,197,230, + 71,169,0,57,157,78,56,28,14,85,113,51,99,99,200,168,219,1,0,167, + 127,252,46,168,15,142,243,238,239,178,132,7,23,236,96,189,251,15,198,143, + 135,119,226,222,251,159,198,185,179,71,241,193,242,119,224,118,187,225,241,120, + 240,208,220,249,232,222,235,82,92,54,210,103,239,196,177,221,226,36,110,53, + 187,28,126,44,74,22,65,18,4,65,152,33,134,87,232,252,14,58,54,54, + 1,221,123,94,130,247,126,63,69,20,168,59,103,252,10,31,188,191,12,241, + 93,82,48,232,138,169,112,187,27,16,27,147,32,238,87,154,164,13,4,138, + 156,89,27,82,212,132,238,92,221,143,120,191,240,45,120,60,30,209,14,191, + 46,62,193,92,175,200,196,37,116,69,239,212,43,48,115,214,115,134,158,69, + 153,144,220,3,110,215,121,81,28,93,46,23,238,155,53,199,148,176,73,191, + 147,153,247,62,40,10,80,92,92,23,156,254,241,59,184,221,110,220,59,235, + 97,77,113,51,99,227,87,191,222,196,228,191,5,57,203,22,94,35,204,127, + 173,154,245,236,59,4,23,15,26,139,31,15,239,196,156,255,89,136,115,103, + 143,226,175,133,111,161,123,175,75,113,229,216,25,24,144,113,13,188,110,55, + 226,187,164,224,87,15,191,164,251,89,148,105,3,199,34,46,206,92,255,39, + 65,16,132,20,90,77,64,1,35,171,9,0,64,66,114,143,78,181,154,0, + 135,63,124,185,230,212,1,252,120,120,39,26,26,206,162,103,223,193,24,50, + 236,102,188,251,187,44,159,77,90,77,128,32,136,86,66,16,16,122,13,176, + 7,22,236,96,30,207,133,160,99,106,251,149,176,195,134,150,109,183,203,17, + 176,116,13,16,40,84,113,9,201,17,93,15,206,170,207,182,190,30,156,148, + 249,175,85,51,71,109,21,248,250,112,203,236,40,103,18,56,130,32,44,34, + 44,90,180,136,185,92,234,77,113,9,9,202,77,135,51,102,220,137,143,63, + 94,13,179,105,1,32,45,109,160,129,172,182,80,89,121,164,221,165,21,0, + 60,253,204,51,226,231,151,127,247,59,232,169,193,95,120,225,5,83,254,0, + 224,249,231,159,215,60,94,94,94,142,65,25,25,58,243,165,165,89,193,41, + 236,184,147,48,162,112,47,189,244,146,174,243,158,125,246,217,128,207,81,130, + 16,182,155,158,147,167,78,177,125,251,246,97,223,190,125,40,43,43,3,0, + 44,123,251,109,90,24,150,32,34,68,12,0,220,121,231,157,134,18,13,29, + 58,20,149,149,71,96,53,45,0,236,223,191,31,0,32,8,2,162,162,130, + 167,229,49,230,251,255,122,189,94,0,192,103,159,125,38,10,164,29,105,245, + 98,53,45,230,207,71,70,70,70,208,177,242,242,114,205,180,191,248,197,47, + 176,124,249,114,0,16,31,35,166,197,212,169,83,69,187,161,108,47,95,190, + 28,120,254,121,197,124,181,160,167,62,230,231,180,212,181,135,67,248,30,148, + 145,129,19,39,79,106,155,237,215,79,135,239,22,228,226,37,103,203,150,45, + 120,233,165,151,66,158,103,150,157,187,118,177,117,235,214,97,215,174,93,40, + 45,45,197,128,1,3,208,191,127,127,12,25,50,4,99,199,142,13,139,79, + 130,32,212,81,156,232,29,105,4,65,16,69,74,190,69,71,71,35,42,42, + 10,106,55,218,86,210,70,154,140,140,12,113,51,194,47,126,241,11,0,190, + 71,157,165,164,164,168,110,82,113,179,39,95,70,203,45,240,252,140,140,12, + 108,220,184,81,245,51,0,244,235,215,15,187,119,239,86,253,108,55,207,62, + 251,172,98,180,183,115,233,104,38,221,14,29,62,204,234,206,157,51,20,29, + 173,91,183,14,63,254,248,35,110,186,233,38,188,255,254,251,168,174,174,198, + 143,85,85,194,230,77,155,132,223,191,252,178,48,116,104,232,231,114,110,46, + 42,98,155,139,138,40,42,35,8,27,8,154,7,23,105,184,64,69,71,71, + 7,205,189,2,124,81,24,99,76,140,194,236,74,219,26,24,21,54,41,60, + 146,91,191,126,61,110,186,233,166,160,227,163,71,143,6,96,92,220,212,243, + 101,246,166,64,0,143,228,202,203,203,69,209,85,250,12,0,39,79,158,196, + 240,225,195,85,63,219,137,212,247,130,5,11,196,137,231,59,151,142,102,99, + 231,20,7,92,240,206,165,119,179,218,209,75,81,119,238,28,235,209,189,187, + 174,194,24,57,114,36,242,114,115,77,223,77,237,219,191,159,205,155,55,15, + 83,166,76,49,107,130,32,8,9,109,66,224,120,196,149,158,158,174,120,206, + 209,163,71,209,220,220,28,36,84,86,210,74,25,58,116,168,226,126,61,77, + 145,70,210,90,17,56,64,93,228,172,136,155,29,249,138,20,130,32,136,205, + 206,102,224,130,182,101,203,22,81,236,184,184,121,217,210,0,195,81,194,28, + 97,231,210,57,236,96,177,239,28,241,64,49,144,242,244,135,232,221,187,55, + 244,10,159,94,182,110,221,138,173,91,183,162,87,175,94,134,132,149,32,8, + 101,130,4,142,63,51,82,142,244,249,148,106,152,77,203,35,177,215,94,123, + 77,241,248,140,25,51,66,54,81,154,73,203,81,75,171,231,154,141,164,13, + 16,32,147,162,34,23,57,171,226,166,156,47,171,245,170,0,224,48,50,50, + 50,240,246,219,111,139,98,34,255,12,248,154,36,55,108,216,32,70,109,242, + 207,65,150,45,138,156,18,114,113,227,251,162,132,57,65,5,177,228,33,176, + 179,255,248,7,126,254,243,159,219,154,135,125,251,247,179,251,239,191,31,0, + 176,106,213,170,160,72,151,32,8,227,4,9,220,252,249,243,21,79,212,19, + 205,152,73,203,197,71,16,4,220,115,207,61,138,231,240,39,92,200,133,202, + 74,90,41,122,132,204,142,180,118,8,28,208,34,114,118,136,155,157,249,82, + 178,27,142,38,202,112,136,28,138,129,226,226,183,3,118,5,68,110,1,172, + 64,237,198,21,56,116,248,48,27,60,104,144,229,40,235,228,169,83,108,222, + 188,121,216,185,115,167,184,239,229,151,95,198,230,162,34,54,57,43,139,162, + 56,130,48,73,144,192,25,29,33,104,87,218,206,128,92,136,202,203,203,197, + 17,146,102,177,50,141,64,154,15,187,25,164,67,40,251,135,26,37,169,113, + 83,98,171,200,21,23,163,184,184,24,242,126,56,37,188,187,150,178,168,49, + 115,132,37,15,129,157,61,251,15,91,220,111,223,190,29,25,25,25,24,62, + 124,56,118,239,222,141,158,61,123,162,95,191,126,216,182,109,27,142,85,86, + 178,75,210,210,2,242,117,172,178,146,1,128,124,63,65,16,129,180,122,31, + 156,148,254,253,251,43,238,175,170,170,10,107,218,72,245,193,205,121,232,161, + 128,207,131,50,50,128,16,115,213,180,248,13,96,41,61,71,158,47,193,208, + 12,52,101,4,133,105,27,70,9,149,11,187,35,57,165,166,202,32,138,139, + 225,101,75,217,219,115,230,136,107,236,89,161,238,220,57,118,230,204,25,220, + 113,251,237,194,111,95,120,129,241,17,164,207,62,251,44,198,141,27,23,180, + 88,236,201,83,167,216,170,85,171,112,217,101,151,89,246,77,16,29,157,54, + 209,7,199,81,235,207,250,217,207,126,166,184,63,220,105,237,238,131,251,251, + 7,45,203,240,220,51,115,166,46,25,89,189,122,181,142,179,148,9,53,71, + 241,212,169,83,232,215,183,175,66,190,172,7,6,81,182,76,245,214,38,47, + 47,47,236,62,236,96,115,81,17,219,178,101,11,246,239,223,27,116,76,58, + 144,164,103,207,158,0,124,15,200,254,242,203,47,113,199,237,183,7,20,226, + 201,83,167,216,243,207,63,143,148,148,20,113,237,62,130,32,212,105,245,62, + 56,41,161,250,209,194,149,54,82,125,112,125,251,246,13,218,119,234,212,41, + 205,52,215,93,119,29,190,250,234,43,0,8,186,155,87,130,15,126,56,117, + 234,84,72,219,95,125,245,21,112,231,157,138,249,106,11,200,5,76,250,57, + 47,47,15,185,185,185,145,205,16,128,98,20,99,52,70,7,237,63,86,89, + 201,74,75,75,131,246,231,229,231,51,222,239,56,113,226,68,77,219,169,169, + 169,232,223,191,63,78,156,56,129,143,62,250,8,75,150,46,101,211,167,79, + 71,99,99,35,74,75,75,113,199,29,119,160,174,174,14,111,189,245,150,237, + 35,56,9,162,35,66,125,112,17,228,244,233,211,166,210,113,145,139,143,143, + 87,29,128,193,24,19,135,251,135,18,54,187,242,21,110,228,2,198,5,46, + 172,226,86,92,28,226,56,32,213,183,125,251,247,179,91,110,185,5,3,7, + 14,84,20,176,101,203,150,137,239,31,127,252,113,108,222,180,73,213,244,184, + 113,227,112,237,181,215,98,213,170,85,56,118,236,24,126,251,219,223,98,237, + 218,181,0,128,111,190,249,6,53,53,53,88,188,120,49,104,224,9,65,232, + 131,250,224,16,185,62,184,201,147,39,135,180,167,6,23,185,221,187,119,7, + 137,156,21,113,179,154,175,72,211,90,145,155,26,247,222,123,47,142,29,59, + 6,0,24,60,120,112,144,128,253,251,223,255,198,230,205,155,49,121,242,100, + 92,49,116,168,166,48,245,235,219,87,88,252,167,63,177,85,171,86,1,0, + 78,156,56,129,245,235,215,3,240,53,95,230,229,229,97,238,156,224,169,11, + 4,65,40,67,125,112,26,105,237,238,131,179,218,20,40,21,185,97,195,134, + 1,240,13,180,176,34,110,118,228,43,82,132,67,220,82,166,126,136,226,141, + 119,3,0,138,231,188,141,98,132,136,224,0,20,207,153,131,181,199,111,195, + 181,215,166,35,37,37,5,181,181,181,152,58,117,42,94,121,229,21,44,123, + 59,112,170,65,40,81,147,51,99,198,12,212,212,212,224,119,191,251,29,92, + 46,23,18,18,18,112,245,213,87,99,206,156,121,152,62,253,54,252,198,134, + 65,69,4,209,89,160,62,56,68,174,15,46,64,128,76,138,10,23,185,61, + 123,246,96,216,176,97,24,56,112,96,176,109,131,216,145,175,72,16,74,220, + 182,108,217,98,216,102,239,222,189,81,59,122,41,54,108,216,128,10,84,0, + 10,253,107,74,92,123,109,58,110,188,241,70,140,29,51,70,0,128,101,111, + 191,29,36,110,102,232,215,183,111,128,32,54,56,28,216,254,245,215,216,254, + 245,215,248,239,89,150,205,19,68,167,130,250,224,34,200,230,205,155,91,62, + 88,120,18,6,23,57,171,145,155,221,249,106,77,22,44,88,96,42,93,143, + 238,221,133,186,115,231,88,74,74,138,184,146,185,30,226,226,226,208,187,119, + 111,83,62,9,130,136,12,212,7,135,200,245,193,245,233,211,39,224,243,169, + 83,167,196,17,146,102,177,50,141,128,35,207,87,91,65,105,9,36,219,237, + 11,2,235,209,163,135,121,35,180,30,27,65,180,89,168,15,78,35,173,221, + 125,112,215,203,158,18,223,175,111,95,192,224,122,122,65,88,77,143,224,124, + 217,50,209,187,109,172,196,68,16,68,39,134,250,224,16,185,62,56,51,43, + 122,135,19,245,21,189,219,199,68,111,130,32,8,45,168,15,46,130,152,89, + 209,59,148,173,23,94,120,65,92,16,213,40,250,86,244,38,8,130,104,159, + 80,31,28,218,207,122,112,114,59,197,254,73,201,203,151,47,55,45,114,118, + 230,139,32,8,162,45,209,174,251,224,248,131,118,25,99,154,235,193,73,207, + 53,226,215,238,62,56,59,132,68,46,110,55,221,116,19,214,175,95,111,73, + 228,130,243,197,96,109,77,56,6,80,31,28,65,16,173,76,187,238,131,99, + 140,193,235,245,66,16,4,81,200,228,199,249,106,222,90,2,23,169,62,56, + 171,2,39,23,55,142,85,145,163,8,142,32,136,142,72,187,238,131,107,110, + 110,22,69,142,35,21,50,198,88,128,200,181,54,86,22,22,85,19,55,142, + 21,145,83,206,151,217,40,174,181,135,206,16,4,65,248,104,215,125,112,78, + 167,19,130,32,64,16,132,128,57,83,210,166,75,160,69,8,213,176,210,7, + 103,4,179,2,199,197,109,227,198,141,154,231,141,27,55,14,219,183,111,55, + 44,114,234,249,50,42,114,36,110,4,65,180,29,108,237,131,179,138,209,62, + 184,227,199,143,67,240,175,250,204,23,191,84,106,142,228,145,156,81,191,118, + 95,115,56,86,244,86,195,136,93,237,145,156,188,220,180,132,142,132,141,32, + 136,182,135,165,62,56,181,115,205,98,180,15,238,240,225,195,65,251,92,46, + 151,170,253,132,132,4,197,253,70,132,76,77,12,245,248,181,123,69,111,187, + 144,231,75,249,9,34,90,2,71,3,74,8,130,104,123,88,234,131,179,242, + 40,165,163,71,131,197,73,47,151,94,58,200,116,218,25,51,204,63,249,195, + 138,95,204,159,111,106,69,239,112,162,182,162,55,65,16,68,71,160,93,247, + 193,217,69,164,250,224,204,172,232,29,202,214,234,213,171,113,221,117,215,153, + 178,209,214,87,244,38,8,130,176,66,187,238,131,11,183,95,187,175,217,174, + 149,179,185,32,29,57,114,4,128,79,168,204,138,156,157,249,34,8,130,104, + 75,216,58,15,206,42,86,158,39,105,133,72,136,55,96,207,202,217,114,113, + 27,54,108,24,246,236,217,99,73,228,218,211,138,222,4,65,16,122,177,117, + 30,28,161,141,213,166,64,158,190,188,188,92,28,61,10,88,23,57,106,162, + 36,8,162,35,66,125,112,136,92,31,156,149,149,179,165,226,6,248,166,62, + 240,57,128,0,48,124,248,112,236,222,189,219,148,200,181,151,21,189,9,130, + 32,140,64,125,112,26,126,237,190,102,179,43,103,115,113,251,199,63,254,17, + 242,220,248,248,120,195,34,215,17,86,244,38,8,130,144,67,125,112,136,92, + 31,156,213,21,189,227,227,227,117,159,107,196,110,91,93,209,155,32,8,194, + 10,212,7,23,33,132,168,40,76,149,126,6,160,220,32,27,89,4,32,40, + 95,4,65,16,29,1,234,131,67,228,250,224,8,130,32,136,200,65,125,112, + 26,126,35,213,116,73,16,4,65,216,15,245,193,129,132,140,32,8,162,35, + 66,125,112,4,65,16,68,135,132,250,224,64,125,112,4,65,16,29,17,234, + 131,211,240,75,77,151,4,65,16,237,23,234,131,3,9,25,65,16,68,71, + 132,250,224,8,130,32,136,14,9,245,193,129,250,224,8,130,32,58,34,212, + 7,167,225,151,154,46,9,130,32,218,47,212,7,7,18,50,130,32,136,142, + 8,245,193,17,4,65,16,29,18,234,131,3,245,193,17,4,65,116,68,90, + 189,15,142,49,38,190,170,245,133,205,152,49,35,224,92,187,161,62,56,130, + 32,136,142,71,171,247,193,49,198,224,245,122,33,8,130,40,100,242,227,205, + 205,205,240,122,189,97,19,56,18,50,130,32,136,142,71,171,247,193,53,55, + 55,139,34,199,145,10,25,99,44,64,228,8,130,32,8,66,15,173,222,7, + 231,116,58,33,8,2,4,65,64,84,84,148,184,95,218,116,9,180,8,33, + 65,16,4,65,232,161,213,5,238,248,241,227,16,4,223,58,210,130,32,136, + 209,156,92,204,120,36,71,16,4,65,16,122,136,81,235,115,139,20,135,15, + 31,14,218,231,114,185,84,207,79,72,72,176,236,83,109,80,73,184,253,18, + 4,65,16,145,67,96,20,22,17,4,161,128,192,155,86,52,152,55,111,222, + 168,197,139,23,151,240,87,131,46,242,0,228,2,200,247,191,151,251,167,186, + 137,176,68,171,55,81,18,4,209,62,153,55,111,94,177,255,149,239,26,173, + 51,233,229,0,158,4,112,35,128,102,0,247,3,72,5,240,7,0,223,219, + 155,75,162,51,67,17,28,65,16,138,40,69,112,243,230,205,139,5,144,4, + 32,17,192,88,0,47,1,72,128,79,172,156,0,46,0,112,46,94,188,184, + 73,197,236,221,0,222,123,225,133,23,227,110,191,253,46,12,29,154,129,163, + 71,143,226,195,15,63,196,115,207,61,231,6,240,43,0,31,250,253,83,221, + 68,88,130,4,142,32,8,69,228,2,55,111,222,188,36,0,67,0,92,9, + 224,18,0,105,0,46,245,31,62,10,160,18,192,49,0,223,1,56,176,120, + 241,98,167,204,228,229,0,118,111,222,188,57,174,164,164,7,28,142,38,44, + 88,48,86,60,88,84,84,132,201,147,39,187,1,12,7,240,61,9,28,97, + 149,168,208,167,16,4,209,217,153,55,111,94,119,0,227,1,204,4,48,25, + 64,63,0,231,224,107,90,172,244,191,239,231,63,54,19,192,120,127,26,41, + 79,190,248,226,139,113,89,89,89,248,213,175,46,195,71,31,29,194,241,227, + 13,226,193,172,172,44,188,248,226,139,113,240,53,95,18,132,101,40,130,35, + 8,66,17,30,193,249,133,106,26,128,9,240,245,153,213,2,168,135,175,57, + 178,47,128,147,0,4,248,154,45,187,1,72,1,16,13,224,11,0,255,90, + 188,120,241,57,191,201,99,135,14,29,74,27,52,104,16,0,96,193,130,111, + 208,208,224,65,82,82,12,250,247,79,194,188,121,87,227,240,225,195,24,60, + 120,112,37,128,75,40,130,35,172,66,2,71,16,109,18,6,198,154,225,245, + 2,199,143,55,98,211,230,122,236,248,166,30,223,127,95,135,19,199,221,168, + 175,119,33,42,138,161,87,239,104,12,24,16,131,97,87,247,192,248,241,41, + 24,63,161,47,186,118,141,245,63,60,193,90,3,141,32,8,130,191,89,242, + 38,0,147,0,184,1,156,2,144,9,224,191,0,252,39,0,222,215,198,251, + 230,186,1,232,5,159,240,197,1,216,2,96,189,191,185,210,211,212,212,20, + 29,19,227,27,219,118,226,132,19,55,220,240,9,238,188,51,3,143,60,114, + 21,46,186,168,11,60,30,15,98,99,99,155,1,196,144,192,17,86,33,129, + 35,136,54,133,239,239,120,225,66,51,86,173,62,131,119,11,207,98,207,238, + 90,52,54,158,128,219,125,20,94,86,13,175,183,14,158,230,38,8,44,10, + 94,214,13,64,55,8,72,1,208,29,61,82,98,49,109,90,42,230,206,189, + 2,227,198,245,69,116,116,20,124,113,88,200,17,255,65,60,250,232,163,113, + 0,174,131,79,224,18,0,84,195,23,173,157,1,176,2,192,111,1,172,245, + 159,30,131,22,129,235,13,95,115,229,0,0,46,0,235,1,124,181,120,241, + 226,195,210,8,206,119,157,30,36,38,182,12,230,166,8,142,176,19,154,38, + 64,16,109,4,175,215,3,175,151,97,253,250,115,248,221,75,213,56,117,234, + 12,26,26,138,80,91,251,21,146,187,58,49,122,116,6,50,50,82,209,189, + 199,96,36,38,38,162,217,227,133,211,217,136,211,167,207,225,251,239,191,199, + 193,131,53,168,173,237,139,191,255,61,21,31,125,244,29,110,186,233,98,188, + 240,194,4,92,118,89,10,98,98,98,161,99,90,155,156,1,0,198,193,39, + 88,149,0,106,224,19,183,179,0,62,1,144,13,224,175,254,115,99,224,107, + 178,148,70,116,137,240,13,68,25,7,160,2,192,134,15,63,252,240,129,103, + 159,125,86,116,32,21,55,0,248,240,195,15,1,96,131,209,140,18,132,18, + 20,193,17,68,43,195,152,239,209,116,14,71,51,158,123,182,10,219,182,157, + 130,211,181,22,63,86,173,197,132,9,35,48,237,63,178,112,213,213,151,32, + 46,46,6,113,113,209,136,139,141,67,116,116,52,162,162,125,226,192,188,12, + 158,230,38,212,214,186,176,121,243,33,172,89,83,138,125,251,92,96,222,75, + 209,181,107,28,94,122,121,60,238,251,175,17,72,72,136,69,84,148,254,123, + 218,71,31,125,116,28,128,59,225,19,170,163,0,170,0,156,128,79,224,206, + 195,55,98,114,50,128,221,240,9,220,107,0,70,2,152,11,160,63,124,3, + 80,46,133,79,248,86,251,251,226,118,111,222,188,57,46,43,43,43,200,31, + 141,162,36,236,134,34,56,130,104,101,24,99,168,173,245,224,190,255,58,138, + 6,103,37,42,142,230,226,234,43,251,227,55,255,155,135,212,75,82,16,31, + 31,139,228,46,201,72,78,78,70,82,82,18,226,227,227,17,29,29,221,210, + 199,198,24,154,189,205,112,187,221,200,204,76,195,204,153,99,177,225,95,71, + 240,198,27,255,198,143,213,93,145,253,232,191,112,240,192,41,228,230,102,161, + 107,215,174,1,15,53,15,65,63,0,221,209,50,160,196,137,150,185,110,46, + 248,6,145,228,195,215,132,249,20,128,95,2,200,0,208,83,114,222,5,191, + 141,126,0,190,1,240,171,201,147,39,191,247,226,139,47,198,221,125,247,221, + 184,244,210,75,149,230,193,209,100,111,194,22,40,130,35,136,86,196,23,185, + 53,225,231,119,87,224,66,99,41,118,124,243,18,230,206,157,129,91,111,157, + 128,216,184,88,244,232,209,29,61,83,82,144,156,220,21,9,9,9,136,137, + 137,17,87,223,144,89,130,215,235,91,86,202,237,246,192,217,112,30,149,149, + 53,120,254,249,245,248,215,134,51,16,224,197,227,143,143,197,130,5,83,209, + 37,185,11,162,163,163,67,230,237,209,71,31,253,111,0,215,195,215,188,88, + 1,95,51,229,73,248,154,42,29,0,134,2,248,18,192,11,0,158,135,79, + 216,146,225,27,69,217,31,190,230,201,116,255,246,249,226,197,139,11,253,166, + 165,79,50,25,0,95,223,222,6,200,158,100,66,17,28,97,21,138,224,8, + 162,149,240,173,115,216,132,95,255,186,10,231,29,135,81,86,246,2,126,243, + 252,35,184,102,220,229,232,146,220,5,125,251,244,65,175,94,189,144,152,152, + 8,62,242,80,29,1,81,81,190,37,167,98,99,99,145,144,16,139,228,174, + 201,88,250,246,207,241,236,179,159,227,239,203,203,241,230,155,91,113,217,229, + 61,49,115,230,104,36,39,39,155,233,147,147,83,6,95,159,219,51,240,205, + 145,211,206,161,186,96,165,1,120,192,191,17,132,109,208,68,111,130,104,53, + 24,254,189,241,60,64,50,116,249,0,0,32,0,73,68,65,84,182,109,59, + 131,189,123,95,193,156,7,127,137,113,227,46,71,247,110,221,144,118,241,197, + 232,223,255,34,36,39,39,235,16,183,96,162,163,99,144,144,144,136,254,253, + 251,226,15,127,184,5,147,38,13,128,199,211,31,185,185,43,80,81,126,18, + 46,151,75,207,242,83,205,254,215,88,201,22,35,217,162,1,244,0,240,123, + 0,123,37,251,229,231,3,128,199,240,69,16,132,69,40,130,83,193,235,245, + 34,42,42,10,205,205,45,79,90,16,4,190,100,78,240,157,111,84,84,20, + 188,94,95,125,192,152,203,127,174,224,223,207,87,34,103,112,187,155,113,193, + 93,139,218,250,56,212,157,141,69,229,49,47,106,207,156,66,121,101,2,206, + 215,197,225,200,225,106,28,59,234,70,131,35,17,181,181,46,56,157,103,20, + 243,215,165,27,112,241,69,189,112,201,165,113,72,238,218,13,125,250,52,32, + 237,210,84,244,232,27,141,94,93,129,180,75,162,208,163,87,19,122,244,72, + 66,82,140,128,184,184,24,177,239,165,169,169,73,108,162,146,94,35,191,190, + 168,168,150,230,43,175,183,25,140,249,150,17,138,142,238,18,80,54,132,53, + 60,30,134,151,95,170,198,5,231,191,49,116,104,119,220,116,203,181,72,78, + 78,196,128,139,46,66,175,222,189,17,23,23,103,201,190,32,8,136,141,141, + 65,159,62,221,240,218,27,183,96,242,164,15,113,242,100,52,150,253,185,8, + 207,62,123,51,250,244,237,27,74,60,79,194,247,132,146,4,248,6,154,36, + 249,183,11,104,17,44,15,124,77,139,9,10,231,37,250,183,115,240,205,159, + 35,136,136,66,2,167,138,239,238,86,90,169,75,143,241,74,159,227,245,38, + 72,132,161,11,154,154,154,208,220,204,112,222,225,69,229,143,30,84,30,243, + 226,240,225,102,148,236,170,197,190,111,207,160,226,224,49,156,115,9,0,115, + 1,66,2,24,235,142,164,248,38,56,27,99,1,0,130,192,235,131,70,255, + 107,188,196,91,35,46,156,1,206,156,113,98,247,94,0,204,5,65,184,0, + 224,27,48,230,66,66,124,28,92,141,110,244,234,213,15,215,93,151,137,129, + 131,6,96,248,213,245,72,233,221,23,105,151,68,225,234,43,226,225,60,231, + 64,98,183,104,52,55,183,88,13,20,54,175,100,95,23,201,126,73,2,194, + 52,140,121,241,245,215,117,56,124,184,22,103,207,126,130,103,158,125,10,9, + 9,209,232,221,167,15,82,122,246,84,21,55,198,24,152,183,17,204,235,6, + 162,98,17,21,21,11,65,224,223,155,0,254,187,149,222,132,69,71,199,224, + 202,43,122,99,246,131,99,176,232,213,102,172,88,177,13,179,102,93,139,228, + 174,201,72,78,238,170,213,84,201,5,174,31,124,243,219,186,195,55,120,132, + 79,5,136,65,139,208,197,160,229,73,38,252,220,110,240,245,201,157,244,111, + 4,17,81,72,224,84,224,149,189,175,162,103,178,207,2,162,163,187,136,199, + 248,249,94,175,23,103,107,220,168,252,209,131,178,239,188,216,187,203,133,226, + 178,82,124,191,183,30,103,107,18,33,8,189,36,30,46,134,32,0,94,214, + 0,48,64,16,92,184,224,6,4,65,254,124,90,32,80,220,252,248,133,17, + 128,79,32,225,127,236,159,0,184,220,64,98,124,52,206,158,173,193,218,181, + 187,192,88,34,124,79,87,2,210,47,74,195,213,99,46,197,148,235,129,110, + 93,147,49,108,84,127,92,113,89,28,226,226,98,208,212,212,132,168,40,183, + 232,66,16,18,21,203,198,39,238,93,20,143,17,161,225,211,2,254,249,207, + 90,92,184,176,15,3,7,246,70,198,160,62,232,214,173,59,122,246,236,133, + 248,248,120,133,243,61,96,12,96,172,17,104,172,134,208,120,28,136,78,70, + 115,66,42,132,152,158,16,4,128,121,221,96,96,136,138,138,135,32,68,75, + 132,207,247,251,188,239,190,33,120,227,245,31,112,226,164,3,123,246,30,193, + 128,139,123,33,41,73,115,192,201,113,255,150,6,223,192,17,249,60,55,39, + 148,159,100,210,27,190,1,39,41,240,61,205,132,219,33,136,136,66,2,167, + 66,83,83,19,98,99,99,197,166,199,192,102,60,1,46,151,27,209,209,190, + 59,223,83,167,78,97,215,206,51,56,92,113,9,182,110,62,138,175,182,53, + 225,92,125,23,52,179,115,240,122,163,33,8,137,96,44,1,140,113,27,190, + 232,143,177,132,128,207,190,104,45,88,204,18,227,162,113,193,45,141,156,226, + 3,91,73,153,11,190,81,219,45,92,104,4,4,225,130,95,220,0,95,93, + 3,84,28,119,160,98,205,119,88,179,198,183,119,196,85,41,24,49,188,9, + 63,157,114,37,210,6,247,198,176,161,9,232,213,51,14,205,205,205,136,142, + 102,112,185,220,104,110,110,66,98,98,75,243,172,154,240,17,70,96,216,185, + 179,6,141,141,135,48,124,248,149,136,141,141,69,183,110,221,145,152,144,24, + 16,81,121,189,77,240,54,157,1,154,106,0,8,16,152,7,222,134,50,120, + 28,223,65,136,239,3,175,103,34,144,20,131,88,92,0,26,171,125,105,226, + 251,67,136,235,31,32,92,130,32,224,242,203,123,34,53,173,23,142,86,244, + 195,222,61,135,48,97,194,229,232,209,163,135,170,192,45,94,188,248,212,188, + 121,243,62,135,79,172,6,34,48,90,75,130,186,192,241,71,117,117,7,112, + 8,190,17,148,167,108,24,212,66,16,134,32,129,83,33,42,202,13,175,183, + 165,159,137,71,108,92,240,206,59,188,216,179,223,133,221,197,12,91,55,159, + 198,218,117,23,0,124,15,175,183,1,130,112,14,140,117,71,84,148,47,202, + 97,44,1,130,224,146,8,90,47,36,118,59,13,118,193,87,55,36,37,245, + 131,16,115,6,204,115,137,239,120,204,25,56,155,164,203,105,121,145,24,117, + 33,48,131,222,110,0,0,103,99,44,4,33,176,249,146,195,199,16,248,154, + 47,33,217,239,2,132,139,0,0,101,223,214,162,236,219,90,252,237,163,239, + 113,81,191,158,24,255,211,235,49,229,230,222,24,113,101,20,210,46,142,65, + 175,158,113,0,98,192,216,5,52,53,197,34,33,193,90,191,16,1,240,187, + 147,35,71,26,224,110,58,141,75,46,25,134,132,216,88,36,117,73,68,116, + 140,180,111,147,129,53,59,128,134,3,240,58,253,139,101,71,165,128,93,40, + 133,167,122,55,208,47,21,141,238,139,1,79,87,116,139,170,130,215,185,19, + 140,53,3,137,63,129,183,107,23,196,199,71,35,58,58,198,215,172,201,188, + 16,4,1,151,93,214,19,71,43,146,240,227,143,39,225,186,224,132,167,201, + 227,235,57,83,97,241,226,197,251,231,205,155,183,25,190,193,36,189,208,210, + 20,201,231,198,201,159,92,194,31,182,220,29,190,102,131,205,139,23,47,222, + 111,87,201,17,132,17,72,224,84,16,132,196,128,1,24,94,111,34,206,214, + 184,241,213,215,110,28,62,220,140,79,62,113,224,68,101,29,14,150,159,68, + 84,84,23,120,189,13,146,212,241,136,18,42,144,216,173,47,18,253,66,2, + 180,172,28,34,196,156,65,175,30,9,56,91,215,12,230,117,128,177,195,96, + 205,0,132,195,56,239,104,64,20,106,209,232,142,69,75,205,35,141,206,124, + 251,98,227,124,95,221,255,103,239,205,195,36,57,171,51,223,223,23,91,70, + 228,82,89,213,93,189,239,173,21,109,128,64,96,80,11,109,22,12,8,11, + 48,54,216,50,32,6,198,23,140,7,108,198,43,30,251,98,198,215,51,119, + 102,124,109,99,44,188,49,131,48,70,198,44,130,145,144,4,72,104,151,5, + 104,87,107,105,73,173,222,170,183,234,174,170,204,172,202,204,88,191,248,238, + 31,95,68,100,102,117,181,16,32,185,183,124,159,39,159,202,140,140,140,136, + 92,42,222,120,207,121,207,57,142,3,81,100,225,149,106,132,145,62,57,42, + 229,225,121,22,126,198,107,133,138,43,66,154,100,170,47,199,24,73,236,50, + 177,27,174,189,246,27,124,237,107,9,43,150,45,226,237,63,255,51,108,216, + 32,217,116,225,201,172,63,201,102,180,108,21,166,19,33,220,129,156,221,16, + 63,14,20,81,148,18,134,38,166,169,176,157,50,157,192,102,219,115,49,99, + 163,41,134,97,162,84,74,42,187,40,127,7,105,231,97,146,169,219,17,110, + 9,105,172,193,72,119,96,238,157,38,29,151,36,225,147,152,41,196,230,126, + 68,248,24,180,67,130,209,37,164,98,3,194,240,40,9,3,80,60,250,200, + 20,39,159,50,74,217,115,177,172,10,126,16,18,197,146,68,38,40,165,158, + 183,100,224,234,171,175,190,59,155,218,253,54,180,50,171,162,235,224,250,205, + 38,57,241,85,209,97,201,3,192,255,185,250,234,171,239,126,201,62,198,33, + 134,248,17,24,18,220,243,32,77,83,210,212,97,98,178,205,29,119,73,54, + 223,191,147,59,111,247,121,228,177,217,67,72,205,48,42,44,170,235,143,115, + 108,108,25,249,28,72,211,220,135,31,236,44,214,107,119,66,102,91,29,14, + 30,212,238,72,69,128,32,160,215,28,98,48,212,120,56,68,81,190,158,54, + 175,249,161,54,176,169,140,0,125,127,121,182,125,23,175,84,3,32,8,117, + 30,78,8,183,8,113,42,229,13,40,60,65,137,56,42,177,107,34,228,175, + 62,125,39,138,144,87,158,181,151,55,92,186,134,139,46,89,199,235,95,231, + 176,120,145,155,125,62,18,41,211,236,125,14,146,221,208,101,185,48,210,52, + 97,203,150,128,95,251,240,78,202,222,8,179,173,25,148,130,39,30,15,249, + 204,103,190,201,87,191,250,243,156,114,202,40,150,25,129,255,28,233,220,15, + 73,163,251,48,252,93,200,216,34,46,133,88,230,12,165,169,89,148,25,98, + 171,251,33,156,69,89,93,68,119,31,113,36,8,253,6,177,221,193,241,36, + 182,165,184,229,214,25,126,255,119,110,226,186,111,190,13,41,19,54,158,244, + 10,110,190,249,1,92,231,49,254,251,255,92,201,200,72,58,144,175,91,8, + 25,201,77,1,239,0,78,67,171,180,197,243,86,203,157,88,91,128,111,12, + 149,219,16,71,26,67,130,59,12,146,120,154,70,83,114,243,77,109,110,253, + 158,193,119,111,158,102,166,165,47,86,243,208,99,254,119,81,221,98,108,204, + 165,82,205,137,194,167,117,112,31,115,81,68,167,221,32,8,39,80,4,232, + 60,123,19,77,98,45,160,148,241,76,136,38,184,133,48,223,69,153,63,30, + 205,254,182,250,158,115,179,237,185,40,246,145,171,61,63,244,128,81,4,163, + 40,92,148,10,17,148,112,75,14,208,33,8,43,5,201,9,225,162,84,128, + 34,164,236,173,38,8,230,120,244,137,189,60,241,204,102,190,121,221,34,222, + 249,206,113,46,184,248,82,222,116,153,222,118,158,135,148,153,29,243,133,116, + 200,56,113,161,216,186,53,228,173,151,111,71,169,20,195,124,146,174,191,7, + 133,193,190,253,49,187,118,238,96,122,106,15,75,198,99,22,85,59,48,247, + 16,105,243,219,136,234,22,48,26,24,51,101,196,42,27,195,240,81,237,57, + 108,103,22,33,99,66,217,66,166,14,98,118,10,51,169,144,184,29,100,236, + 35,211,8,165,92,158,122,178,197,182,29,79,49,61,189,137,40,138,48,205, + 197,44,94,116,50,95,187,238,81,154,173,89,254,241,139,87,50,62,126,248, + 92,92,142,44,92,57,141,238,96,114,10,112,50,58,63,7,186,187,201,86, + 224,89,224,169,171,175,190,122,88,22,48,196,17,199,9,65,112,253,214,246, + 220,222,47,132,135,148,18,219,182,145,178,131,76,186,88,246,98,12,195,32, + 142,99,254,250,111,44,30,122,96,142,91,110,121,150,233,233,209,190,109,117, + 10,181,182,122,141,98,237,58,157,147,154,216,62,193,76,99,15,237,78,72, + 183,227,160,210,219,8,226,132,158,42,107,161,73,44,228,240,42,205,101,161, + 112,164,70,200,161,240,209,81,161,112,222,58,173,190,117,74,228,42,79,49, + 74,174,242,20,16,132,163,40,70,49,132,129,98,12,207,77,8,130,57,0, + 12,81,39,8,230,10,178,139,163,10,59,39,102,249,155,191,81,252,227,23, + 191,195,175,188,231,116,46,186,100,29,23,92,92,162,238,105,226,143,99,27, + 211,212,100,167,77,42,6,73,60,3,128,83,90,146,125,126,41,74,249,69, + 249,197,137,2,165,82,58,157,152,247,93,181,13,165,82,126,251,119,106,252, + 214,111,125,31,165,66,82,153,96,219,18,165,20,254,92,147,176,217,69,169, + 61,168,240,126,104,63,141,53,62,137,74,34,196,116,138,88,91,198,176,3, + 204,32,5,51,192,84,18,55,129,196,169,97,248,17,161,109,161,210,89,136, + 247,67,88,3,215,36,145,10,149,166,204,182,26,196,73,194,150,45,45,86, + 46,175,130,170,112,235,247,30,224,191,254,233,40,159,252,227,183,80,175,143, + 206,55,166,28,82,9,254,217,207,126,246,5,189,223,161,161,100,136,163,1, + 199,45,193,73,217,41,242,68,185,133,95,135,205,42,89,161,179,202,140,36, + 38,113,108,227,56,58,218,114,205,231,183,22,138,173,219,157,162,27,218,244, + 71,219,198,199,234,188,126,147,93,60,126,102,203,1,118,238,218,65,16,30, + 68,177,3,216,206,32,193,244,72,77,205,35,54,113,72,118,191,255,249,122, + 223,253,133,92,139,77,52,121,229,127,225,112,46,204,222,182,155,64,136,192, + 7,214,103,225,204,49,82,165,213,93,215,119,11,101,23,132,189,99,17,125, + 219,12,194,131,72,213,224,175,62,253,12,223,188,110,41,111,255,249,159,225, + 189,239,223,192,105,39,11,108,171,69,183,85,162,92,175,22,5,238,78,105, + 9,82,118,232,116,58,84,42,149,108,249,137,232,194,20,252,253,223,79,243, + 232,195,93,254,224,63,175,226,43,95,121,136,40,154,6,148,158,215,166,4, + 40,129,148,62,70,180,19,53,123,31,194,126,20,33,167,16,162,3,62,136, + 57,31,203,238,34,136,32,142,16,6,8,63,193,72,91,88,110,140,17,38, + 152,166,192,182,118,226,202,59,49,218,59,73,140,243,72,227,18,10,72,83, + 205,87,105,42,152,107,155,32,42,40,85,226,31,62,247,45,46,191,252,12, + 94,247,250,211,168,86,43,67,114,26,226,184,193,241,75,112,73,23,61,77, + 36,15,39,26,4,65,132,227,88,152,166,73,18,79,227,148,150,232,147,176, + 99,113,195,141,109,190,250,47,83,220,255,125,159,103,183,77,98,155,43,145, + 42,193,48,192,20,117,206,60,179,205,25,103,141,211,158,155,101,215,206,136, + 70,227,81,38,39,159,35,136,118,163,137,35,191,245,200,44,39,176,252,126, + 254,216,45,233,126,180,35,229,101,140,143,87,40,185,227,108,88,183,1,128, + 149,107,108,156,146,54,166,140,84,160,54,166,191,162,185,70,66,109,204,98, + 174,161,213,210,108,159,167,165,177,127,39,173,182,96,231,78,72,217,78,24, + 76,241,228,179,121,40,52,96,48,4,58,138,38,207,156,240,246,211,83,119, + 99,40,70,241,67,112,156,113,162,200,42,200,77,147,158,174,250,139,34,16, + 104,69,247,233,79,127,151,111,94,55,194,199,127,235,60,54,93,120,50,103, + 156,230,144,196,211,116,194,148,170,183,136,40,74,112,28,15,207,131,32,208, + 53,118,142,115,220,254,236,14,139,48,146,92,125,245,94,86,174,52,217,179, + 103,138,127,189,119,43,58,101,165,80,74,160,80,8,161,48,9,49,229,46, + 212,236,83,152,43,39,48,84,91,127,232,109,5,126,138,93,242,81,237,4, + 145,36,136,68,97,204,42,210,48,194,220,24,33,148,137,41,76,220,210,30, + 140,96,18,171,243,36,41,51,36,221,243,0,69,170,84,22,194,86,168,84, + 34,240,80,84,8,130,253,124,254,243,223,229,244,151,45,161,84,114,126,234, + 14,42,67,12,113,180,224,184,62,211,228,173,167,130,32,194,117,29,92,215, + 33,206,236,247,150,189,152,32,136,216,59,213,225,51,127,30,243,157,27,31, + 97,255,222,132,89,127,140,146,121,58,161,220,130,97,84,56,231,44,147,11, + 47,25,231,224,1,151,167,30,219,194,35,143,63,76,201,222,77,16,63,203, + 32,121,180,6,20,154,16,115,192,28,74,213,16,184,44,29,123,53,171,86, + 175,99,195,186,13,172,57,233,18,206,59,231,25,106,75,76,202,94,13,165, + 60,146,180,167,250,44,163,78,146,182,176,77,167,175,142,109,16,253,235,151, + 220,51,8,3,29,134,141,35,109,110,73,147,13,108,219,182,139,237,207,77, + 112,223,61,49,187,247,238,160,53,187,143,32,110,163,137,45,239,172,148,99, + 127,246,126,180,17,37,140,114,130,214,121,187,32,204,62,207,34,104,213,194, + 113,44,162,200,98,231,196,44,31,255,205,123,56,247,236,59,121,239,7,47, + 228,61,31,120,25,245,74,66,154,106,50,211,33,75,85,148,24,12,118,133, + 57,49,240,175,247,182,217,185,179,203,166,77,53,110,189,101,91,22,54,87, + 232,186,66,179,232,65,34,100,7,51,61,136,136,166,48,188,14,36,18,132, + 130,57,129,209,150,164,165,0,99,46,129,24,84,12,106,159,130,25,137,121, + 129,66,138,20,147,14,174,187,15,213,144,152,101,131,48,234,160,194,113,32, + 11,15,3,32,80,8,20,6,218,244,232,113,235,173,63,228,192,129,183,80, + 175,215,135,4,55,196,113,131,227,150,224,44,123,81,17,154,212,39,89,45, + 121,12,67,159,168,165,148,124,231,150,128,79,253,209,179,60,241,68,21,88, + 77,44,247,2,29,98,99,130,77,151,46,226,85,103,175,6,224,174,91,31, + 200,136,109,51,110,169,137,31,238,102,33,165,214,11,57,186,44,29,221,196, + 170,213,235,56,127,211,169,108,56,105,13,103,159,179,24,215,77,9,195,16, + 195,222,135,140,180,74,203,107,213,44,163,63,36,169,225,121,138,48,105,3, + 144,198,38,85,213,164,45,70,137,101,132,109,246,78,66,105,12,182,105,162, + 148,135,229,234,186,55,219,232,114,206,203,203,156,243,242,211,120,199,187,37, + 136,215,178,103,171,197,35,155,39,216,177,117,23,247,220,123,7,115,93,31, + 63,76,24,36,58,173,250,180,179,211,37,101,69,65,116,105,102,78,1,16, + 98,25,113,52,9,76,225,56,227,196,81,192,131,155,155,236,248,47,247,112, + 247,109,59,248,196,167,126,150,53,171,36,181,170,238,152,239,56,14,65,16, + 145,248,1,222,200,96,251,175,19,1,183,220,50,137,16,9,65,183,195,158, + 61,7,81,25,185,129,192,16,113,214,248,88,96,171,125,88,230,94,140,110, + 23,140,24,21,165,90,117,77,2,179,41,134,27,145,206,165,136,174,130,8, + 196,211,32,218,49,152,38,116,83,76,2,196,72,138,120,34,65,156,4,214, + 179,19,40,246,128,82,40,57,139,32,111,5,103,32,16,89,152,218,102,166, + 49,193,227,155,119,178,98,229,56,213,106,117,104,22,26,226,184,192,113,75, + 112,134,97,14,52,21,6,72,83,61,9,121,122,38,226,191,254,233,179,92, + 123,237,110,154,51,90,241,72,213,234,83,108,235,169,141,70,220,113,199,195, + 252,240,95,31,33,138,238,7,246,19,196,147,64,0,226,96,161,204,74,174, + 32,12,52,201,45,25,93,203,203,79,61,151,211,95,245,50,222,242,182,13, + 5,105,9,225,227,121,93,124,95,16,203,136,146,109,22,93,70,250,45,250, + 185,90,19,194,103,164,170,79,68,166,172,97,216,18,91,77,18,154,43,241, + 74,29,74,105,13,195,8,178,247,228,18,167,93,74,150,65,18,10,226,180, + 139,82,30,110,105,130,110,91,151,7,216,56,84,170,130,147,207,144,172,58, + 169,66,24,156,202,135,63,118,30,155,31,155,230,174,219,238,97,215,68,200, + 83,91,246,103,234,46,87,118,77,125,44,236,67,135,46,53,236,44,116,105, + 219,29,226,168,142,160,78,20,133,8,18,4,46,51,51,45,190,126,125,200, + 3,15,31,228,147,127,124,49,151,255,220,106,44,167,77,228,67,189,186,4, + 211,244,8,130,136,202,137,197,111,108,222,60,135,33,20,211,211,93,226,56, + 30,232,26,233,24,9,137,236,128,128,145,210,15,41,213,158,65,236,110,129, + 145,34,230,4,106,22,216,167,96,78,161,210,24,49,5,204,41,232,10,212, + 195,32,76,144,205,20,227,57,129,90,9,162,22,234,201,109,175,20,152,123, + 91,152,206,65,16,99,216,106,10,161,150,2,121,149,136,64,96,161,112,80, + 74,177,109,219,30,186,157,51,72,18,57,36,184,33,142,11,28,183,4,151, + 166,105,241,79,170,29,125,30,82,38,220,244,109,157,107,251,250,191,140,17, + 202,73,132,216,134,16,139,89,84,183,120,227,155,23,115,238,171,199,120,232, + 129,6,127,243,217,175,18,69,155,209,35,175,66,220,146,69,42,90,132,129, + 206,99,148,92,65,20,128,161,78,230,220,179,95,195,197,151,94,200,43,206, + 94,195,250,83,2,12,35,192,247,5,253,214,255,156,220,0,194,64,82,45, + 151,177,131,125,180,25,197,243,84,113,204,57,113,25,102,141,36,142,49,108, + 137,101,219,40,123,53,158,81,69,24,90,185,37,137,157,173,7,22,117,44, + 203,194,41,129,174,177,5,149,158,201,226,49,16,70,64,224,251,248,161,14, + 105,218,70,153,218,98,143,192,247,121,197,121,75,216,116,193,251,216,187,39, + 97,219,182,93,220,123,199,54,238,189,111,7,147,211,207,226,218,227,125,225, + 204,60,116,233,22,161,203,56,114,81,88,24,162,142,192,69,169,220,136,18, + 224,56,22,187,38,14,240,145,95,251,28,31,217,252,90,62,242,159,46,98, + 116,180,76,163,209,160,82,169,225,56,189,80,113,14,219,182,57,158,177,123, + 162,139,82,33,179,45,95,119,22,233,123,206,20,1,168,6,40,137,55,182, + 25,103,98,18,118,7,136,86,138,58,0,133,119,201,20,24,123,21,233,86, + 161,77,249,187,64,236,209,225,94,241,152,1,247,75,196,26,1,63,39,80, + 15,166,168,211,77,204,205,62,182,147,32,148,194,86,147,164,106,49,208,191, + 127,145,221,34,102,231,90,132,97,136,76,18,40,13,195,148,67,28,251,56, + 110,9,46,111,144,156,19,93,179,27,115,253,87,39,248,204,95,60,195,163, + 79,142,97,138,58,37,243,116,82,102,121,243,91,34,222,112,241,58,38,118, + 238,230,159,63,127,3,15,110,126,28,125,70,129,124,218,71,16,29,4,64, + 176,4,215,25,103,196,59,157,77,63,123,17,231,95,180,177,8,63,198,42, + 33,8,12,160,140,99,10,34,57,232,178,46,219,229,226,190,97,116,144,229, + 58,165,180,68,158,146,178,108,27,203,210,42,206,37,1,203,38,182,60,236, + 196,39,182,60,244,120,174,76,217,89,54,78,214,214,41,74,6,115,90,73, + 100,226,25,237,236,53,54,165,146,75,197,25,65,38,154,84,146,36,161,84, + 26,131,176,65,28,239,99,201,82,24,89,188,132,151,191,246,100,222,254,76, + 135,71,54,79,112,251,247,238,204,84,29,244,12,41,110,17,186,132,151,33, + 104,162,148,94,174,112,17,153,243,51,138,166,16,184,132,81,141,191,248,203, + 135,216,177,117,23,191,246,59,87,241,202,87,86,241,163,6,142,89,61,225, + 242,60,237,78,68,170,18,130,88,193,0,189,41,76,36,200,46,66,9,204, + 176,131,184,217,7,83,32,159,3,227,41,116,51,172,39,21,172,2,181,211, + 128,135,128,41,1,143,27,208,72,81,33,168,175,9,196,46,96,183,130,235, + 208,213,104,183,165,168,39,33,93,151,100,46,202,0,149,198,244,72,77,209, + 59,5,72,146,36,64,166,18,57,156,24,49,196,113,130,99,150,224,162,240, + 32,78,105,73,49,150,198,182,99,100,210,37,78,202,120,158,7,8,164,236, + 16,199,54,123,167,58,92,243,191,59,252,237,167,27,180,102,215,3,45,98, + 185,151,83,54,74,222,242,115,176,97,3,220,125,219,157,220,248,237,239,19, + 68,247,0,46,136,123,138,125,41,85,3,85,195,43,141,243,178,83,223,196, + 43,206,185,152,183,191,91,81,246,106,89,231,119,157,91,131,144,220,97,29, + 167,32,4,84,85,147,57,86,224,186,154,132,172,76,169,88,214,216,192,251, + 241,220,249,246,126,253,216,1,176,42,84,180,37,20,211,62,244,43,235,207, + 160,201,56,193,172,90,200,216,68,200,4,219,180,136,173,4,48,192,202,247, + 81,34,74,36,194,200,199,117,233,253,36,201,44,235,79,137,89,127,202,18, + 222,242,206,15,241,232,15,182,114,215,109,247,240,253,31,68,76,78,31,164, + 231,202,220,159,157,162,117,1,185,227,84,137,163,82,86,36,78,70,116,147, + 40,154,8,92,174,251,214,110,30,124,244,171,69,200,18,167,69,48,107,225, + 186,250,200,43,149,10,105,42,73,226,25,76,171,140,76,186,69,221,220,241, + 130,178,167,80,42,214,189,31,231,65,169,8,67,36,164,74,160,118,167,136, + 173,32,218,41,170,98,192,29,18,181,221,64,180,21,204,130,122,20,196,150, + 20,53,35,224,78,133,209,82,32,65,220,32,17,41,32,21,233,103,83,68, + 11,152,84,168,17,129,138,44,64,34,230,41,199,108,239,232,110,91,97,86, + 194,241,35,135,160,14,49,196,49,131,99,150,224,114,114,179,109,27,211,76, + 1,19,211,2,167,148,207,111,147,5,185,253,167,95,223,201,205,55,57,64, + 133,88,238,197,54,87,242,75,87,46,227,220,87,143,49,177,115,55,127,241, + 255,221,207,206,137,59,129,167,129,102,118,98,6,167,52,66,20,148,240,74, + 85,54,174,125,21,151,252,236,235,185,244,178,243,89,185,202,98,118,118,63, + 134,173,175,116,53,185,29,138,82,169,68,204,50,170,182,137,30,126,76,49, + 96,178,95,129,1,216,166,117,8,121,201,180,140,105,116,113,221,67,157,148, + 105,216,198,151,53,42,101,85,60,54,74,85,250,124,46,5,130,224,208,46, + 41,118,156,16,247,237,63,87,129,150,101,145,36,9,196,211,188,238,252,165, + 188,252,181,239,231,157,207,116,248,230,55,238,229,222,251,114,39,230,40,189, + 178,136,70,17,182,84,106,57,130,156,232,242,178,8,29,114,221,49,241,24, + 159,248,221,39,121,124,243,27,184,242,170,203,56,117,109,74,16,4,84,42, + 53,58,157,14,142,227,224,148,150,208,110,204,226,141,148,231,31,238,49,143, + 21,43,29,158,120,82,95,140,245,20,148,134,65,66,74,132,64,193,211,10, + 49,153,234,86,198,95,69,71,134,219,10,229,24,136,229,6,226,201,20,246, + 9,68,168,16,15,41,68,102,78,81,17,154,167,108,129,113,32,133,88,64, + 71,129,52,161,37,65,228,223,117,182,127,149,102,143,34,160,3,68,148,61, + 15,193,137,231,112,29,226,248,197,49,75,112,160,243,54,105,42,251,102,181, + 121,125,51,218,4,247,222,223,229,51,127,166,199,215,24,104,171,180,97,180, + 248,200,71,199,89,179,214,230,190,59,250,85,91,19,183,36,241,195,38,66, + 104,123,127,20,212,57,227,148,215,14,16,91,59,152,99,54,43,66,75,99, + 147,112,94,135,145,124,150,87,79,169,13,126,196,185,82,203,213,139,190,239, + 101,4,213,35,50,203,202,9,113,80,233,245,189,136,242,188,199,253,72,146, + 24,203,202,143,193,156,247,156,36,192,31,32,84,23,173,254,98,153,160,21, + 94,138,76,98,70,172,46,35,231,8,62,188,230,60,222,240,179,23,114,247, + 109,59,184,241,230,239,16,196,205,226,181,162,175,45,152,237,140,19,71,218, + 101,153,170,22,61,179,138,203,254,233,128,47,125,241,46,26,7,13,126,239, + 255,62,143,177,177,69,72,25,19,4,1,166,105,35,101,68,185,94,197,247, + 253,227,206,132,114,246,217,53,110,189,101,59,50,201,230,180,41,69,94,149, + 102,136,4,131,64,75,254,167,64,68,144,46,50,17,251,83,88,38,16,82, + 193,171,4,233,201,41,226,251,25,53,150,4,202,82,168,49,3,66,129,218, + 0,98,34,69,57,2,181,204,66,28,144,168,178,9,93,16,97,138,80,131, + 129,81,4,153,115,83,151,184,8,225,179,98,229,10,140,194,92,50,84,114, + 67,28,251,56,102,9,46,239,76,18,69,18,211,76,49,77,163,200,185,129, + 224,134,27,219,124,234,143,158,97,247,132,200,102,179,77,112,210,250,42,31, + 250,143,167,179,168,62,205,213,127,121,35,79,108,217,66,16,223,141,227,30, + 32,12,20,65,52,151,117,149,88,194,210,209,181,188,254,245,155,248,197,119, + 190,134,141,103,172,6,2,102,103,219,196,50,162,90,174,29,162,218,230,15, + 169,204,137,173,63,244,56,159,212,244,122,25,145,185,227,63,242,61,187,174, + 75,16,4,197,118,84,52,152,43,17,142,217,91,222,247,205,230,68,215,255, + 56,223,70,146,196,36,137,222,78,63,233,217,105,153,56,154,193,15,66,202, + 201,20,230,146,21,92,122,169,193,186,181,27,88,183,241,141,220,249,189,93, + 60,177,229,62,130,184,141,107,87,129,132,32,222,71,20,53,113,157,197,68, + 241,201,89,73,65,175,205,153,0,14,76,7,92,243,165,7,104,181,118,240, + 7,127,242,65,214,173,14,137,66,109,62,1,109,8,114,28,103,224,194,229, + 120,192,69,23,141,243,151,127,17,162,176,0,131,158,130,211,102,253,124,234, + 140,216,3,202,4,241,74,165,195,144,171,64,60,14,188,92,33,206,16,136, + 135,82,212,133,6,226,241,76,105,125,212,68,125,85,194,27,65,61,97,232, + 215,126,18,248,53,129,250,136,1,95,6,213,113,80,187,6,39,125,43,82, + 116,78,119,6,152,161,86,27,229,228,147,151,96,89,86,102,206,26,118,51, + 25,226,216,199,49,75,112,122,62,153,46,222,78,211,180,232,76,2,112,195, + 141,109,126,247,227,59,105,52,52,185,1,156,115,150,201,127,252,221,117,180, + 167,182,113,245,95,222,201,3,155,183,34,184,21,196,4,81,168,47,158,149, + 170,225,149,78,225,13,231,172,224,77,239,126,63,27,55,174,101,217,138,128, + 78,187,93,212,158,89,70,157,32,187,216,6,77,108,218,28,50,248,81,230, + 33,200,254,208,163,235,122,125,202,236,80,215,160,59,79,133,45,132,74,165, + 134,148,49,166,105,131,103,247,238,195,192,114,33,15,79,14,65,16,80,50, + 108,194,84,171,188,126,165,151,147,93,167,11,163,163,99,140,2,205,102,137, + 176,221,65,90,22,39,159,82,98,229,170,83,57,235,236,179,185,245,190,53, + 124,239,27,119,51,57,61,129,86,112,154,180,131,104,55,130,90,239,187,42, + 234,4,243,118,101,251,248,198,183,64,24,183,242,137,79,253,44,27,54,212, + 104,204,236,194,41,141,225,186,46,158,231,21,205,155,65,28,23,147,9,46, + 186,104,25,43,86,216,236,221,219,69,8,11,173,144,178,78,38,160,67,134, + 42,37,125,165,128,253,66,79,85,251,121,93,231,70,221,128,181,41,226,28, + 80,35,6,198,91,33,109,24,136,141,2,46,73,225,135,192,207,8,148,39, + 224,101,10,42,41,233,38,3,99,147,66,77,9,140,39,178,48,102,106,209, + 27,35,1,58,124,188,23,56,192,249,175,123,35,149,138,131,91,114,49,205, + 99,246,180,48,196,16,3,56,102,127,201,186,57,178,91,40,57,203,94,68, + 28,199,220,244,109,159,207,127,110,27,187,118,142,103,221,72,18,206,191,96, + 53,87,253,234,106,54,223,191,147,127,250,226,61,76,207,220,143,224,105,64, + 147,90,30,146,92,54,182,137,203,223,116,33,191,252,129,215,80,46,119,73, + 211,57,218,115,6,224,97,25,158,54,80,8,31,207,83,164,105,143,140,250, + 201,205,115,75,3,68,37,211,50,174,171,176,44,243,71,146,90,78,84,250, + 254,225,175,160,77,211,201,114,57,243,95,99,23,175,51,205,65,151,162,236, + 115,116,86,42,89,177,175,236,41,190,126,178,75,146,152,90,69,23,152,119, + 125,176,157,69,172,92,186,4,211,73,104,54,27,8,35,224,229,231,74,206, + 60,235,52,94,117,186,205,181,95,216,150,169,225,57,20,99,104,87,229,126, + 189,15,92,96,121,166,230,242,194,248,0,219,169,242,181,235,191,71,105,105, + 202,111,252,234,105,172,93,187,152,146,161,143,107,122,38,162,86,53,178,242, + 142,44,140,119,140,147,156,231,25,252,251,15,156,194,159,254,63,247,146,22, + 37,21,250,61,73,229,144,170,58,66,180,225,92,19,58,66,95,43,156,163, + 96,18,210,211,65,24,6,70,85,161,214,128,90,13,172,81,164,175,3,49, + 146,194,50,131,244,100,129,209,21,80,23,136,84,161,86,155,40,5,201,198, + 10,241,99,89,115,237,116,9,74,152,128,68,202,8,197,118,224,57,44,43, + 225,45,151,95,140,235,186,84,42,149,67,46,214,134,24,226,88,197,49,251, + 75,78,85,29,237,148,148,217,96,210,180,32,55,61,93,123,2,195,168,240, + 214,203,61,174,120,119,157,219,238,184,149,235,254,241,135,160,118,0,207,101, + 141,145,179,150,90,106,9,231,158,253,78,222,115,213,165,188,238,252,165,180, + 231,36,190,47,240,188,0,250,50,93,213,154,73,18,235,19,181,235,245,242, + 101,243,195,144,253,166,16,203,50,6,136,237,71,17,154,148,74,55,204,205, + 242,139,82,166,69,141,88,110,170,1,200,203,198,6,115,144,50,11,211,246, + 47,75,179,245,141,98,170,66,62,195,45,47,57,152,175,248,84,100,19,103, + 199,227,148,244,79,36,73,98,194,174,133,237,44,194,117,187,36,65,131,196, + 242,216,116,193,70,54,110,92,203,245,95,95,207,77,223,190,35,115,91,174, + 64,143,6,242,112,157,10,97,20,100,25,29,109,60,81,172,32,140,118,99, + 48,202,151,62,119,59,193,254,137,34,92,73,16,83,246,92,242,147,63,28, + 251,228,6,250,187,254,216,199,206,229,203,95,126,152,231,158,155,4,85,201, + 194,149,16,169,42,41,227,40,38,72,87,213,80,221,25,40,73,140,42,164, + 117,161,9,109,175,133,236,26,136,53,9,169,37,17,43,12,140,211,0,97, + 146,46,55,48,74,2,181,40,35,183,68,64,213,36,58,48,66,215,92,78, + 224,175,2,213,32,54,198,209,255,242,41,65,120,0,120,28,33,118,115,249, + 155,223,206,169,167,47,99,100,164,78,185,92,198,52,143,253,207,123,136,33, + 224,24,38,56,199,177,178,19,159,62,117,126,255,158,46,159,254,159,59,184, + 227,158,169,129,250,182,43,222,189,145,219,238,184,149,107,63,119,51,218,146, + 246,40,136,137,34,195,224,58,27,120,211,165,87,240,235,191,249,54,234,245, + 58,173,86,139,114,185,75,183,91,166,219,213,138,45,150,17,37,215,196,15, + 117,161,180,97,246,194,111,243,21,91,30,134,124,62,82,155,175,206,250,139, + 156,77,179,151,87,203,39,33,44,180,94,255,58,243,239,15,46,211,39,43, + 173,116,7,159,55,205,254,129,165,61,85,136,103,19,37,154,180,211,172,151, + 152,101,117,160,28,99,203,174,94,238,174,204,220,153,1,47,59,189,196,154, + 223,190,148,179,94,105,240,79,95,248,30,15,111,214,228,6,62,65,52,157, + 181,135,114,51,21,183,14,65,11,197,125,164,108,192,96,57,55,125,119,31, + 245,234,231,248,240,199,47,99,227,198,229,89,158,177,120,215,64,124,92,20, + 130,47,90,228,241,15,255,240,22,222,241,142,127,160,217,220,141,38,113,131, + 72,85,80,198,98,16,130,152,101,36,43,39,177,236,128,212,76,80,35,2, + 115,84,17,237,179,17,115,101,204,21,115,24,102,138,26,131,116,220,134,64, + 160,198,5,114,182,4,229,20,49,19,99,74,65,226,214,152,157,62,149,134, + 127,6,157,120,61,138,22,194,172,161,185,107,10,41,111,3,241,20,103,188, + 236,21,188,239,253,239,160,86,29,97,108,108,108,65,199,238,16,67,28,171, + 56,234,9,174,127,150,91,255,137,91,41,159,52,245,80,42,224,161,71,21, + 159,252,228,14,238,187,111,49,134,209,37,101,150,43,46,127,134,247,124,240, + 18,174,255,202,237,92,251,165,155,241,74,19,116,195,7,129,44,11,161,78, + 198,45,73,254,195,7,62,202,149,239,123,21,0,97,216,160,92,214,93,72, + 250,91,104,85,203,154,208,242,92,219,124,39,228,124,82,203,67,109,185,233, + 35,87,106,253,196,118,184,19,246,75,101,172,88,72,5,205,39,208,156,92, + 165,76,169,229,138,210,82,217,50,151,32,0,50,87,167,38,33,125,50,148, + 113,66,201,218,193,229,111,57,133,37,99,43,248,250,215,191,202,255,185,41, + 213,211,196,237,132,32,222,14,172,221,185,94,134,0,0,32,0,73,68,65, + 84,64,21,161,74,40,10,197,121,152,32,26,227,159,175,3,204,173,252,250, + 111,175,99,197,146,253,88,73,135,200,60,141,90,21,162,40,66,165,77,44, + 123,17,121,14,233,88,84,117,134,97,240,186,215,173,230,159,190,244,94,126, + 227,163,215,240,220,182,109,128,133,82,38,202,178,81,106,138,40,88,73,82, + 217,135,80,147,136,182,192,168,10,164,18,40,179,78,216,169,224,212,19,108, + 43,129,197,160,44,155,180,235,192,136,73,208,170,97,26,49,37,123,142,52, + 81,36,78,149,78,180,145,192,126,21,118,181,142,74,91,58,183,166,186,192, + 173,24,198,3,156,255,250,75,248,232,71,175,100,124,188,198,146,37,227,212, + 235,245,67,28,183,67,12,113,44,67,40,165,142,122,63,112,30,102,155,127, + 82,139,194,131,164,170,206,155,222,60,201,83,143,237,103,170,209,194,54,87, + 114,230,153,109,62,249,39,167,243,249,207,109,227,187,223,254,59,130,248,110, + 242,25,109,121,199,255,165,163,167,242,251,127,248,251,108,186,96,35,97,216, + 40,218,107,245,187,36,243,92,91,191,229,255,133,144,219,225,136,45,119,122, + 30,173,232,191,152,232,133,49,117,216,84,202,94,107,173,220,201,25,4,1, + 65,16,96,8,159,185,217,4,204,17,44,207,99,239,179,251,249,244,167,159, + 230,235,215,127,13,0,197,88,95,67,234,81,220,210,18,130,80,23,142,167, + 125,101,4,174,99,242,145,143,232,214,94,158,49,141,83,26,35,85,21,202, + 158,196,117,33,8,244,103,154,79,37,56,22,161,84,74,24,133,236,218,57, + 201,181,215,222,193,15,127,248,24,111,124,227,121,44,95,190,2,87,204,113, + 198,234,173,84,210,7,168,184,59,48,74,77,68,20,33,29,135,104,110,9, + 82,85,168,148,182,225,214,246,162,118,59,196,107,71,80,221,18,73,211,38, + 44,173,196,48,186,120,226,0,70,53,165,213,92,70,43,189,24,233,93,132, + 83,93,205,119,191,179,141,87,158,187,148,235,175,223,205,222,189,247,115,238, + 171,54,112,198,153,171,169,85,170,44,93,182,132,165,75,151,81,171,85,16, + 226,248,10,13,15,113,98,227,168,37,184,249,121,164,133,254,217,26,179,147, + 252,151,63,22,124,246,51,83,72,213,194,22,107,216,176,241,73,126,251,147, + 63,195,230,251,119,242,119,159,253,44,65,252,0,138,29,217,248,26,141,165, + 163,111,230,247,254,243,7,216,116,193,70,0,166,27,187,0,176,77,7,207, + 83,248,190,40,108,255,121,174,45,119,69,30,142,216,242,229,243,73,237,88, + 14,173,233,102,213,70,65,118,121,8,51,39,187,32,200,250,102,218,9,145, + 175,72,18,137,140,44,130,68,178,251,64,139,255,253,133,167,248,222,55,238, + 102,255,116,50,48,220,213,43,157,66,16,70,40,194,76,197,5,184,142,73, + 16,237,102,217,226,37,124,226,143,174,226,151,175,60,157,217,214,110,22,45, + 169,225,152,85,84,36,177,60,23,41,99,42,199,120,145,156,82,138,40,138, + 104,181,90,52,26,13,124,191,75,189,62,74,217,117,8,231,118,147,118,119, + 96,70,59,144,225,1,68,218,38,81,46,177,170,98,9,197,168,243,56,165, + 234,118,104,27,116,172,49,100,60,66,170,106,132,233,74,12,18,202,214,126, + 20,9,65,58,78,215,124,53,206,216,185,140,141,175,194,48,44,124,223,207, + 242,213,146,102,179,137,16,130,122,125,132,209,209,49,202,229,242,33,255,99, + 67,130,27,226,88,199,49,65,112,57,164,236,96,154,250,228,22,4,17,159, + 253,219,14,159,248,157,125,5,185,165,204,242,149,235,86,115,253,87,110,231, + 243,95,250,22,112,7,142,219,34,10,74,32,116,47,201,55,190,250,114,222, + 243,225,79,112,230,185,14,211,7,219,197,220,53,160,80,111,65,96,80,173, + 153,3,181,108,185,221,255,249,136,205,52,5,82,42,28,199,60,170,149,218, + 79,138,188,65,114,191,162,203,73,14,180,17,37,149,109,230,102,19,42,181, + 26,123,247,54,249,151,127,126,134,47,125,241,46,246,79,39,24,89,77,156, + 34,192,16,167,101,133,224,0,251,11,130,131,38,175,58,251,50,254,240,83, + 23,241,234,243,198,49,132,79,170,60,156,210,98,106,213,222,9,247,88,86, + 113,57,164,148,132,97,152,93,72,88,216,182,137,140,37,81,56,75,228,207, + 18,116,155,4,65,23,37,21,194,180,49,141,4,59,153,36,13,119,144,70, + 9,161,44,163,140,10,202,169,99,216,35,152,166,133,73,128,76,66,164,114, + 48,220,229,212,198,150,81,31,93,130,83,114,138,54,92,82,74,146,36,198, + 16,6,78,169,132,109,91,11,78,241,30,18,220,16,199,58,142,25,130,147, + 178,83,244,40,76,211,180,175,214,45,96,166,165,251,251,253,143,63,59,29, + 128,63,252,189,63,0,227,81,130,112,66,219,210,51,245,246,202,179,62,204, + 199,127,243,61,156,247,26,197,238,253,179,3,251,203,149,27,64,125,180,87, + 156,220,111,34,113,93,175,184,159,135,34,231,155,70,142,101,197,246,163,208, + 31,194,140,34,137,227,152,72,153,234,28,89,86,106,96,216,250,187,152,57, + 56,135,235,122,236,221,219,228,190,251,98,254,219,159,124,129,253,211,9,37, + 103,53,97,180,27,193,122,4,37,20,33,186,183,101,62,131,14,192,231,231, + 223,122,30,127,240,39,31,164,94,221,143,176,83,86,46,93,79,167,51,199, + 232,168,75,28,219,133,211,244,120,128,82,106,128,96,164,148,196,113,66,20, + 199,200,36,46,154,23,24,166,129,74,20,65,232,19,132,62,50,73,48,77, + 3,211,114,177,109,11,219,178,48,13,131,68,198,36,73,138,101,91,120,174, + 75,201,245,112,28,251,121,247,185,16,134,4,55,196,177,142,163,218,100,210, + 155,252,172,144,73,23,211,42,147,166,41,143,108,238,242,249,207,109,163,209, + 136,153,105,37,40,53,205,199,62,182,142,147,78,50,121,247,47,254,13,81, + 60,129,226,89,4,110,81,227,118,238,217,191,194,199,127,243,61,156,126,142, + 224,153,237,187,169,142,148,73,99,77,160,177,140,192,119,168,84,171,36,153, + 74,57,156,106,155,159,99,235,39,183,227,125,134,86,127,57,130,109,199,72, + 41,178,94,160,38,120,10,225,7,68,178,77,228,43,170,213,42,73,34,169, + 143,142,177,233,194,17,126,101,199,27,248,236,103,127,64,16,109,69,48,138, + 158,32,62,154,89,70,116,111,75,5,153,41,5,174,251,214,221,172,63,121, + 45,87,94,117,25,107,86,89,28,216,215,160,182,56,207,195,233,227,233,47, + 155,56,150,49,159,104,76,211,196,48,12,28,199,66,169,172,129,117,94,159, + 173,160,44,171,164,50,65,165,10,97,8,132,16,152,166,81,108,71,41,221, + 151,75,24,186,72,126,161,223,229,143,34,183,33,134,56,30,112,84,19,156, + 238,110,174,237,237,166,85,70,8,143,29,123,91,124,241,154,221,252,235,61, + 113,97,42,121,243,229,30,23,93,178,142,255,240,239,255,145,40,218,138,91, + 122,142,32,154,195,41,9,194,160,198,153,167,188,137,143,255,230,123,56,237, + 44,143,166,255,12,213,250,10,100,152,146,164,45,44,163,206,104,189,71,108, + 121,206,109,161,92,155,235,186,199,85,142,237,39,133,38,186,10,113,28,13, + 148,53,120,158,7,62,168,138,133,12,20,117,39,194,16,7,88,188,168,196, + 149,87,93,6,192,159,255,229,77,197,20,244,124,218,128,98,20,93,12,190, + 159,32,222,135,238,176,49,198,151,190,120,23,103,157,125,54,163,139,23,19, + 119,119,81,91,188,182,175,132,64,95,92,28,47,36,55,31,66,8,221,179, + 114,1,232,200,185,253,130,84,216,16,67,156,200,56,234,99,16,57,201,9, + 161,137,103,243,195,38,215,127,101,27,51,173,4,219,92,201,250,117,146,43, + 222,189,145,127,250,95,183,49,51,51,9,220,129,31,78,1,16,6,138,101, + 99,155,248,224,135,222,205,233,231,8,109,38,9,150,145,70,29,132,240,169, + 150,107,8,225,147,196,49,174,231,97,89,22,35,149,10,35,149,10,101,175, + 23,146,236,239,221,8,207,223,101,228,68,65,28,199,56,121,239,75,21,224, + 251,58,188,232,56,14,101,75,224,153,122,184,171,83,26,163,213,153,102,217, + 120,139,43,175,186,140,119,94,113,57,6,203,251,182,164,235,227,12,81,7, + 150,103,157,80,52,38,167,219,252,227,223,223,200,182,45,79,49,50,54,198, + 129,137,93,164,170,82,244,224,148,242,168,140,174,255,155,97,72,110,67,12, + 241,252,56,170,9,46,77,211,194,65,153,196,211,60,178,185,203,159,255,121, + 139,157,147,75,177,197,26,164,106,241,238,247,141,177,249,254,157,220,240,237, + 167,81,220,14,121,206,77,157,141,87,26,231,93,191,116,25,231,189,102,140, + 192,247,139,122,54,165,52,89,166,177,73,169,84,42,84,155,231,150,116,223, + 72,115,4,195,172,226,186,46,37,195,166,82,169,97,154,54,142,227,20,185, + 159,252,118,162,194,182,237,162,142,206,52,43,153,179,81,97,154,38,166,41, + 40,85,61,44,79,95,20,140,141,234,250,170,85,203,219,188,231,253,27,184, + 244,53,251,179,173,44,71,209,4,38,81,106,18,67,212,51,242,27,67,119, + 185,223,206,29,63,120,156,27,111,172,49,215,209,29,101,146,104,55,190,116, + 232,116,230,144,82,143,159,153,63,29,124,136,33,134,24,2,142,98,130,211, + 39,79,35,179,53,119,104,199,35,220,113,123,204,230,7,54,99,138,58,177, + 154,224,245,23,151,152,107,58,124,243,186,239,99,168,135,129,176,168,115,131, + 38,191,252,142,15,113,197,59,94,1,232,153,109,97,24,106,197,150,182,240, + 60,133,97,203,162,198,45,55,147,148,61,168,143,244,218,107,245,242,109,39, + 110,72,242,133,35,175,247,51,139,150,99,174,235,226,152,85,44,203,166,94, + 95,196,235,55,157,198,149,31,250,13,94,117,246,106,96,63,142,163,167,40, + 228,13,153,85,54,29,92,195,5,246,113,207,109,183,241,195,123,246,50,50, + 54,198,220,108,130,63,167,221,151,253,14,206,33,201,13,49,196,16,243,113, + 212,18,28,104,231,100,142,29,207,197,252,211,53,207,18,37,250,36,186,120, + 113,147,183,95,190,129,187,110,125,128,157,19,223,33,136,239,197,45,181,11, + 83,201,27,207,59,135,43,222,117,49,245,122,157,32,48,240,60,165,205,36, + 232,206,36,105,234,22,97,201,156,220,92,215,195,200,78,198,37,163,151,115, + 27,146,219,11,67,191,235,206,113,204,76,205,217,69,222,178,211,153,195,116, + 5,111,184,108,49,239,253,224,133,44,91,156,16,71,9,249,44,57,165,178, + 186,58,150,147,79,11,7,120,112,243,45,220,126,219,30,246,29,92,142,146, + 115,196,233,28,73,146,151,44,196,89,217,130,86,114,253,78,207,35,141,252, + 2,237,88,189,13,49,196,177,142,163,246,87,156,59,40,163,240,32,166,89, + 225,142,219,99,158,120,162,74,16,143,34,85,139,203,46,59,141,137,93,49, + 123,247,221,2,108,193,45,85,9,162,237,0,44,27,219,196,251,62,124,37, + 43,87,89,180,90,173,193,182,91,74,119,206,152,175,220,230,59,37,45,175, + 71,110,166,105,12,201,237,5,162,255,228,168,29,124,2,215,117,24,25,25, + 161,100,216,200,64,81,177,67,54,93,120,50,191,242,222,55,160,104,246,169, + 183,48,107,229,85,207,150,121,104,242,107,242,200,99,183,243,216,67,251,17, + 102,141,32,8,72,18,93,203,21,4,193,64,151,149,254,14,44,67,12,49, + 196,137,141,163,150,224,128,162,168,251,161,71,219,252,221,95,239,6,32,77, + 59,156,180,190,202,198,83,29,238,186,245,1,90,179,250,170,63,21,211,250, + 69,106,9,239,185,234,125,156,114,214,233,180,131,185,130,220,124,95,48,102, + 116,137,221,101,24,70,48,160,220,100,90,30,112,74,106,114,19,69,190,173, + 223,30,63,196,11,67,127,13,99,238,116,44,215,117,219,45,199,19,172,89, + 101,113,193,197,151,22,161,74,0,199,73,52,201,9,55,43,10,31,69,59, + 42,93,30,222,220,225,238,219,158,160,53,39,241,131,144,32,240,139,217,117, + 42,146,3,36,55,196,16,67,12,1,71,49,193,73,41,73,211,20,167,180, + 132,47,94,179,157,231,118,180,139,231,206,251,153,10,143,61,56,197,83,207, + 220,69,16,111,6,60,162,80,23,110,47,29,123,53,23,188,97,35,173,86, + 139,52,234,20,134,18,0,85,91,141,101,219,140,148,106,11,230,220,74,134, + 61,111,166,218,252,214,69,199,119,157,219,75,129,92,249,230,197,202,57,12, + 209,225,245,175,115,184,242,170,141,69,145,183,14,87,106,40,70,179,122,57, + 55,187,53,184,233,219,119,112,223,125,49,35,35,43,0,8,2,159,32,8, + 8,211,94,135,21,189,175,225,133,200,16,67,12,113,20,19,92,126,98,124, + 232,209,54,223,185,105,159,54,150,200,189,156,178,113,25,0,143,62,114,127, + 54,219,109,18,196,102,64,143,190,249,189,255,252,1,86,173,73,112,93,29, + 170,202,21,92,222,91,18,64,184,149,194,246,159,231,220,114,229,214,191,255, + 33,161,253,244,72,83,153,53,153,54,178,226,101,7,207,25,99,100,100,132, + 90,213,224,194,75,47,230,23,174,184,20,61,12,181,169,167,126,171,0,65, + 9,219,177,80,172,32,15,83,78,78,31,228,174,91,239,100,247,129,150,14, + 77,198,154,16,231,135,42,135,97,202,33,134,24,2,142,98,130,75,211,20, + 165,124,190,120,205,118,158,121,174,166,251,77,154,43,121,217,153,146,176,253, + 24,59,38,30,35,136,167,32,115,77,42,85,227,45,151,125,152,77,23,108, + 100,106,250,0,97,24,22,219,178,13,109,49,55,141,42,181,106,175,81,175, + 206,187,245,148,27,80,228,220,134,120,113,160,148,38,172,94,87,26,221,71, + 82,74,133,31,53,88,127,146,205,155,223,117,9,107,215,172,197,113,198,51, + 82,211,97,202,40,154,154,183,181,38,247,222,183,131,253,207,60,73,148,164, + 196,50,25,8,85,2,133,225,100,136,33,134,24,226,136,157,201,251,195,72, + 105,42,15,185,37,241,52,113,108,115,211,13,189,215,156,180,113,55,213,218, + 8,15,60,124,16,193,83,192,206,162,137,178,87,58,133,247,126,224,34,226, + 120,31,150,81,31,216,151,97,75,92,207,67,24,154,12,251,77,37,48,88, + 10,240,111,69,110,121,141,223,194,207,29,254,179,249,105,182,123,248,215,200, + 67,246,251,98,193,52,43,152,102,165,48,158,228,202,220,16,45,60,103,12, + 25,40,222,246,166,152,75,222,176,148,36,94,76,28,37,197,204,56,193,58, + 74,206,106,116,93,156,110,231,53,219,126,138,155,238,19,36,145,137,31,132, + 200,56,193,16,58,84,217,245,205,98,219,195,178,129,33,134,24,226,136,17, + 220,143,10,255,89,246,34,174,189,46,160,209,200,76,36,105,7,215,27,37, + 108,63,198,228,228,115,64,175,6,74,169,26,191,252,142,119,81,169,118,8, + 147,193,147,123,169,84,58,196,49,9,28,210,126,75,147,155,121,200,16,208, + 151,18,11,89,177,231,147,27,244,84,208,225,158,159,191,205,31,199,226,157, + 55,181,238,255,251,111,1,61,188,148,108,214,155,203,21,239,186,152,69,139, + 234,125,53,112,61,244,215,197,249,97,194,211,63,152,96,239,158,4,149,234, + 229,73,32,177,44,19,67,116,6,204,38,63,46,209,15,49,196,16,199,23, + 142,120,44,110,254,9,53,39,24,41,83,110,254,202,109,204,180,18,76,81, + 103,124,172,206,218,117,14,219,182,57,4,209,227,64,19,8,80,170,198,210, + 209,83,185,226,93,23,3,32,163,42,166,163,13,41,57,185,89,150,133,105, + 217,216,166,110,189,89,173,86,15,49,149,232,156,219,191,221,199,49,127,95, + 185,66,235,133,244,228,0,177,1,3,207,229,53,130,63,142,186,91,248,56, + 204,5,255,190,212,144,50,205,74,8,244,227,11,46,46,241,115,255,206,193, + 43,213,178,9,3,26,81,100,101,179,228,122,196,247,224,230,91,216,182,77, + 207,240,139,101,130,31,233,144,100,16,4,168,72,18,39,229,108,31,67,179, + 201,16,67,156,200,56,162,33,202,92,53,244,171,166,60,196,182,249,201,144, + 239,125,79,207,252,146,170,133,176,166,152,233,166,236,218,187,13,77,110,33, + 136,131,8,92,46,216,244,46,86,174,210,228,229,186,41,210,232,96,216,131, + 39,55,199,50,48,109,171,32,183,254,114,128,151,178,198,237,133,132,255,250, + 149,90,142,252,190,76,186,135,220,242,231,146,120,230,199,82,119,63,14,17, + 46,68,156,47,182,186,179,109,27,153,116,1,24,45,219,92,249,127,93,72, + 165,58,214,51,154,8,23,67,212,179,110,39,186,38,206,43,89,64,147,27, + 190,186,141,189,123,18,186,93,193,108,167,67,42,219,4,129,79,152,230,134, + 147,97,46,110,136,33,78,116,28,113,5,215,143,254,246,92,95,188,102,59, + 179,126,175,241,238,104,109,53,157,201,253,76,205,60,13,76,102,61,12,97, + 201,232,90,222,254,142,243,105,7,122,230,91,172,44,252,166,160,28,233,199, + 243,59,149,228,200,77,37,255,22,239,105,126,248,175,255,111,63,185,45,68, + 102,86,50,83,220,114,228,207,229,247,243,215,247,111,51,223,95,255,190,94, + 104,61,95,255,243,253,199,253,98,214,3,246,95,84,120,158,71,18,79,243, + 202,87,122,92,120,254,252,185,101,30,113,84,129,162,100,64,227,201,103,238, + 160,209,232,25,134,186,254,192,203,138,80,229,48,23,55,196,16,39,46,142, + 26,130,155,127,34,122,240,241,152,69,117,173,202,210,180,195,178,13,49,51, + 173,61,8,244,56,21,221,80,121,9,171,215,156,71,109,204,38,244,27,90, + 189,133,41,101,175,70,236,46,195,178,109,76,171,119,194,236,239,84,2,47, + 237,84,128,249,10,232,112,74,46,87,96,57,81,21,199,58,143,212,250,151, + 205,95,222,79,114,207,167,230,126,148,177,103,33,133,151,63,150,178,243,83, + 133,66,231,35,207,143,165,170,103,8,170,149,12,222,252,174,75,14,89,87, + 8,183,168,137,243,195,54,16,114,160,17,51,59,215,171,141,156,63,89,124, + 136,33,134,24,226,136,18,92,158,79,154,143,131,83,1,91,30,146,116,187, + 83,164,105,135,114,41,102,81,217,200,204,37,251,251,214,172,115,254,166,83, + 89,182,34,192,54,29,226,180,139,233,180,81,202,43,114,111,142,101,224,186, + 238,64,104,50,119,77,194,145,235,47,121,56,162,40,200,75,182,158,247,54, + 159,236,114,146,139,227,23,246,126,114,50,60,220,109,62,132,112,7,94,251, + 211,194,247,181,228,114,93,135,40,74,48,173,50,81,20,241,115,111,116,88, + 180,168,207,5,43,92,148,242,176,157,254,209,133,62,208,100,235,211,255,90, + 40,119,63,208,121,187,126,162,27,118,55,25,98,136,19,27,71,148,224,132, + 112,139,176,87,78,52,65,16,209,152,218,65,107,182,130,31,117,49,140,10, + 229,242,56,187,118,70,248,81,7,178,208,100,142,215,188,250,53,52,91,51, + 24,182,36,12,36,37,75,191,37,203,58,252,44,215,254,30,147,47,53,22, + 202,171,205,127,188,144,122,203,33,195,153,129,219,243,65,38,93,108,59,94, + 208,156,178,208,253,254,253,30,238,254,66,175,237,39,187,159,20,185,185,36, + 8,34,92,215,41,218,178,213,170,6,107,87,110,236,51,154,148,64,184,89, + 151,147,188,55,165,14,53,79,236,220,73,232,55,72,18,93,240,45,227,132, + 48,51,223,228,51,227,134,24,98,136,19,23,71,108,162,183,54,17,120,197, + 188,183,56,142,81,105,19,199,89,204,183,190,189,12,169,182,160,84,29,165, + 58,140,141,45,163,209,248,62,130,237,144,157,248,148,170,113,230,41,122,20, + 78,201,53,145,81,149,178,45,8,147,57,204,146,38,174,60,247,118,56,215, + 228,139,133,126,53,182,144,186,73,98,77,76,166,85,46,204,19,249,178,126, + 88,201,12,200,214,32,145,37,45,72,51,82,55,70,145,73,43,91,185,142, + 89,210,86,123,11,72,44,125,95,38,93,76,171,92,28,139,16,110,65,72, + 249,177,245,135,68,95,40,177,229,219,121,177,92,150,249,0,91,219,142,145, + 50,70,8,151,74,165,194,193,169,128,183,189,45,228,209,39,234,40,229,161, + 120,58,171,139,91,79,238,156,133,18,16,242,253,31,68,188,191,187,146,110, + 197,193,149,123,80,110,74,18,174,34,49,37,161,21,67,16,103,185,214,227, + 115,234,247,16,67,12,241,252,56,162,10,174,223,42,159,171,169,40,74,184, + 235,246,157,3,235,85,170,62,237,78,72,127,237,27,192,233,167,101,249,183, + 64,34,132,79,148,185,230,106,229,222,201,76,166,229,226,126,127,104,242,197, + 194,66,181,106,48,232,126,236,95,150,175,59,31,57,185,21,72,90,131,228, + 6,250,126,223,99,25,206,144,100,74,101,126,94,46,142,109,226,216,62,36, + 236,216,111,94,89,232,117,253,33,207,195,17,222,139,129,195,149,100,44,94, + 228,240,214,95,184,172,120,44,40,105,130,22,46,2,23,175,84,69,171,56, + 159,217,246,83,108,219,182,11,145,234,207,45,14,14,95,247,54,52,155,12, + 49,196,137,135,163,194,100,18,199,113,161,12,186,137,98,243,3,59,73,83, + 29,106,50,12,29,186,234,180,119,23,235,43,2,188,210,56,235,79,94,203, + 202,85,22,113,20,22,237,184,0,76,75,155,75,92,215,165,82,86,135,24, + 75,94,172,171,249,249,246,254,133,72,237,249,28,144,243,159,79,34,169,213, + 91,78,108,105,19,25,52,80,233,236,224,45,217,5,73,139,78,148,34,84, + 139,196,215,175,239,132,105,177,15,67,180,144,50,46,114,114,243,247,155,239, + 187,255,24,230,63,158,255,186,60,103,250,98,150,11,244,43,76,253,59,48, + 56,251,140,18,235,150,47,41,158,87,202,195,115,245,220,56,63,172,22,175, + 245,195,54,123,118,39,200,236,125,207,134,115,32,117,211,237,249,243,226,134, + 237,215,134,24,226,196,195,17,11,81,66,207,73,215,79,56,205,102,151,185, + 40,66,8,19,165,92,22,213,45,2,191,65,16,73,6,21,220,24,175,56, + 123,13,126,123,22,219,41,225,148,13,162,57,137,87,210,6,5,199,26,60, + 161,9,199,124,81,75,3,242,66,108,224,16,194,90,8,135,91,174,55,160, + 21,136,80,61,213,166,210,89,84,56,131,0,84,8,42,109,32,12,93,54, + 33,74,139,32,109,82,49,160,19,213,168,56,45,230,218,101,234,213,38,173, + 112,148,74,22,162,181,173,60,12,185,192,113,244,171,197,249,48,235,3,235, + 38,214,162,34,244,153,135,43,243,207,224,39,13,89,246,215,64,246,223,15, + 130,8,219,142,57,251,213,235,216,249,173,7,138,105,16,126,96,101,29,77, + 242,252,159,94,222,216,191,19,88,134,97,214,0,138,254,148,121,159,209,28, + 186,1,179,24,14,242,28,98,136,19,8,71,140,224,242,28,76,63,226,164, + 76,115,90,65,186,30,152,68,136,0,97,197,76,205,180,41,138,187,51,140, + 148,245,84,129,56,157,167,74,44,11,153,196,96,149,178,57,111,47,237,9, + 109,65,114,123,62,242,0,77,32,243,214,233,87,110,42,157,69,138,3,136, + 116,174,120,62,234,30,192,201,68,106,42,18,204,84,15,159,169,24,0,154, + 144,230,218,1,120,90,201,229,36,119,184,99,75,34,169,9,117,65,204,96, + 150,55,12,188,182,159,228,224,197,169,133,203,137,77,202,180,32,58,219,142, + 145,73,151,13,27,77,125,1,33,198,32,159,244,45,234,56,86,141,32,110, + 2,250,216,103,102,247,233,109,201,185,130,228,100,156,128,155,79,25,128,74, + 37,39,186,97,225,247,16,67,156,72,56,162,10,46,71,126,162,171,84,42, + 60,242,196,236,97,214,202,43,121,245,201,110,213,234,117,24,236,36,150,101, + 202,246,40,73,28,99,58,93,84,90,199,114,100,86,216,173,14,233,55,249, + 98,161,223,168,177,16,177,21,70,145,62,83,8,73,75,255,101,6,179,180, + 104,65,51,73,161,220,156,109,192,18,200,38,144,39,7,82,88,122,0,199, + 115,128,26,82,28,40,72,174,19,213,128,61,8,107,21,134,191,159,90,213, + 165,21,142,22,155,46,200,46,59,62,153,41,195,226,216,250,76,44,249,177, + 202,238,246,194,196,146,43,58,128,32,0,211,148,133,11,53,31,102,250,147, + 32,138,36,142,211,215,128,217,48,73,83,23,203,118,57,251,60,157,123,203, + 41,201,115,202,4,81,3,63,182,178,169,114,250,247,176,107,34,164,211,174, + 32,132,207,200,72,149,40,145,64,50,176,31,41,99,76,211,249,137,142,113, + 136,33,134,56,118,113,84,196,107,242,249,93,105,154,210,158,218,198,76,43, + 65,169,254,186,171,201,67,94,179,97,221,6,22,173,234,229,221,236,96,178, + 200,195,57,150,129,176,23,54,28,188,100,110,186,62,242,40,212,88,95,46, + 141,40,51,206,100,203,15,33,183,12,42,95,238,219,224,234,73,9,145,31, + 225,61,254,156,38,57,49,138,72,183,233,125,137,3,52,155,33,21,163,167, + 244,0,38,91,189,176,97,26,91,133,129,165,200,241,229,251,76,155,168,100, + 87,145,219,155,127,172,133,137,37,171,187,43,222,106,150,215,42,246,145,202, + 159,168,177,177,51,207,244,19,199,49,82,166,72,153,242,138,51,13,74,78, + 10,217,100,1,63,234,87,234,121,168,218,103,207,238,157,204,53,226,162,53, + 155,204,114,111,11,143,209,25,54,95,30,98,136,19,9,71,1,193,13,26, + 0,30,189,127,231,33,107,116,59,14,197,220,55,2,74,174,160,94,95,95, + 140,197,137,211,46,109,49,90,76,13,200,145,143,195,121,177,213,219,11,194, + 60,199,99,65,32,243,209,167,162,84,170,213,107,234,38,64,19,252,78,177, + 90,215,218,145,109,168,73,167,175,131,7,64,115,70,95,0,180,91,189,126, + 85,65,91,147,158,97,103,67,65,251,235,194,250,212,34,104,82,149,226,64, + 143,232,128,78,148,246,76,44,145,100,174,29,208,9,83,34,169,247,61,159, + 156,126,124,8,12,67,135,33,131,32,2,244,197,71,126,91,179,42,15,46, + 232,176,180,231,38,125,211,217,123,181,112,7,26,49,6,189,223,76,20,54, + 126,202,227,26,98,136,33,142,23,28,177,16,101,158,236,207,235,224,162,240, + 32,194,24,101,122,118,29,105,58,133,16,1,250,228,86,70,170,252,164,213, + 68,224,18,5,117,42,35,123,112,221,197,216,65,151,216,88,79,154,21,128, + 215,107,217,137,215,88,130,101,233,43,118,199,209,6,134,78,167,131,105,26, + 40,21,20,133,197,135,195,66,6,138,126,99,73,142,67,106,215,230,229,209, + 0,76,181,116,32,164,168,210,89,68,58,50,176,29,25,52,16,170,165,205, + 36,93,128,81,148,247,28,116,155,36,7,150,83,78,214,51,59,18,0,1, + 149,90,21,186,115,180,252,50,35,139,39,104,183,214,224,183,34,42,245,25, + 96,21,101,51,35,198,140,32,19,83,171,31,161,90,61,117,22,52,80,165, + 105,68,119,14,97,140,33,186,115,200,76,16,155,41,84,140,137,44,100,217, + 11,79,214,205,102,86,111,215,197,247,117,177,182,148,54,166,9,160,178,188, + 156,54,114,228,223,107,254,185,1,3,6,149,40,210,97,78,195,208,221,76, + 244,122,105,246,90,137,233,10,150,47,90,198,142,253,9,136,58,126,16,226, + 150,90,4,225,232,64,38,205,45,205,48,217,112,88,33,70,104,251,123,88, + 82,169,99,225,35,99,171,240,163,4,65,208,151,135,27,98,136,33,78,20, + 28,49,5,151,247,54,4,125,2,52,173,50,166,105,50,219,16,8,209,202, + 66,148,37,226,174,202,154,237,246,224,150,70,112,74,43,104,119,231,104,139, + 81,2,217,192,42,117,24,171,26,204,180,90,88,101,131,196,247,11,171,184, + 239,7,72,217,161,82,169,96,24,230,143,36,183,23,116,252,121,45,217,124, + 67,73,159,50,202,145,135,29,115,149,52,95,45,29,2,213,100,126,199,22, + 128,170,209,64,121,211,154,184,178,220,220,236,244,160,217,163,221,242,7,148, + 92,142,194,161,217,255,184,15,221,29,251,17,221,94,168,179,80,156,73,139, + 110,159,42,234,132,41,157,48,197,182,186,228,93,177,122,161,191,158,74,238, + 119,43,230,14,73,61,248,84,223,215,221,75,204,236,245,157,236,130,34,39, + 70,189,124,116,241,225,72,169,231,164,12,66,253,25,86,221,26,37,203,160, + 233,199,36,12,26,152,74,134,61,108,219,53,196,16,39,32,142,28,193,245, + 141,125,49,12,19,33,60,162,40,161,57,27,22,174,57,128,216,78,176,157, + 14,250,164,86,42,150,143,84,40,66,148,213,76,181,197,65,74,173,90,33, + 158,107,81,171,116,113,60,129,235,186,56,142,67,28,219,63,214,180,235,67, + 213,91,239,117,243,235,201,250,213,91,110,18,209,46,200,109,196,83,207,161, + 228,118,173,148,186,115,133,170,75,35,73,26,73,100,208,64,6,13,90,109, + 189,60,39,174,126,120,143,63,167,143,105,178,47,52,41,70,7,214,177,212, + 46,252,86,68,16,31,164,82,209,199,211,79,118,83,7,179,146,134,108,127, + 128,38,52,213,68,165,61,2,19,221,57,84,56,67,26,73,154,205,112,96, + 31,115,237,222,247,146,215,220,233,78,36,42,251,46,213,0,177,229,159,119, + 255,173,127,121,190,110,254,91,208,51,238,180,18,172,149,12,148,49,78,255, + 119,174,145,147,155,143,91,178,201,67,149,173,86,139,110,87,75,208,104,222, + 208,219,48,29,14,65,29,98,136,19,17,71,140,224,76,171,60,208,211,80, + 74,137,147,55,212,21,189,176,88,185,200,171,5,184,165,17,192,37,8,13, + 102,59,96,150,12,98,169,243,55,105,234,210,206,204,115,118,253,100,202,102, + 167,200,67,229,134,136,124,20,79,20,30,124,193,199,217,59,49,171,67,157, + 147,121,104,178,207,80,162,194,153,44,204,168,247,157,28,72,233,238,12,180, + 97,68,53,11,162,107,181,15,232,16,97,166,164,70,43,37,166,14,246,66, + 177,0,116,77,210,89,133,57,53,127,2,65,19,220,131,120,106,135,62,198, + 68,255,109,181,38,41,11,137,223,138,80,201,30,42,149,25,42,149,25,186, + 97,131,241,177,176,200,1,230,161,208,130,76,85,83,147,168,106,22,132,167, + 74,211,250,72,102,38,139,237,1,24,126,175,217,117,36,219,133,138,139,99, + 27,41,211,162,99,72,154,166,3,3,71,251,39,141,43,229,147,91,246,77, + 179,130,101,47,26,40,248,214,165,3,253,129,72,77,180,194,200,127,23,46, + 16,102,234,173,167,86,93,55,197,245,60,146,40,27,222,42,6,149,236,112, + 62,220,16,67,156,88,56,98,4,167,235,224,122,33,45,149,54,137,162,36, + 123,110,113,214,193,100,80,65,4,97,126,37,30,50,82,129,52,234,96,155, + 14,157,118,91,143,198,49,170,220,255,67,151,230,180,77,100,158,198,72,125, + 5,161,178,112,93,7,199,49,105,204,78,146,166,18,203,94,244,130,142,81, + 135,80,21,74,249,11,151,5,12,172,60,47,52,233,30,28,48,137,104,52, + 23,84,104,57,225,212,188,3,228,228,166,84,19,202,114,80,181,229,40,75, + 58,115,237,172,100,160,135,197,35,33,150,218,53,176,204,111,69,248,173,168, + 232,138,50,72,110,122,95,145,31,245,142,207,139,65,53,49,2,139,154,171, + 223,175,87,215,251,201,213,96,228,247,136,194,182,116,131,103,208,237,214,242, + 176,163,97,24,197,148,116,195,48,144,178,211,187,101,159,99,154,166,153,193, + 68,27,78,162,72,226,251,186,91,138,227,88,136,116,10,250,155,46,15,160, + 196,252,223,71,24,134,36,73,130,48,2,98,153,208,245,135,163,115,134,24, + 226,68,198,17,116,81,234,147,100,20,37,89,104,74,163,186,100,208,247,178, + 122,153,194,32,87,54,217,136,149,146,205,108,71,15,195,244,60,69,169,84, + 34,137,99,194,182,193,174,109,155,185,246,11,183,240,183,127,117,128,91,111, + 211,10,34,142,99,146,120,134,145,74,21,195,48,105,118,7,235,164,22,66, + 126,76,243,187,149,244,215,188,205,47,206,206,213,27,106,7,138,30,209,120, + 143,63,55,72,118,238,65,234,94,151,217,105,73,179,19,210,236,12,158,168, + 159,15,150,209,130,174,38,145,78,210,192,178,158,0,122,42,14,116,184,50, + 110,110,37,110,110,101,188,62,201,120,125,178,8,75,246,208,156,247,119,222, + 179,157,176,80,151,113,115,235,192,115,169,236,145,110,156,148,11,21,23,69, + 18,41,229,64,223,199,254,214,94,166,89,209,13,182,85,29,41,83,110,184, + 177,205,123,127,233,38,254,250,175,31,227,224,84,128,235,58,120,94,175,161, + 243,252,16,101,185,108,204,27,155,51,138,87,90,13,192,162,37,231,48,50, + 178,28,63,108,225,242,252,223,239,48,76,57,196,16,39,6,142,96,161,183, + 64,41,31,199,113,1,139,214,156,201,13,223,13,152,220,110,147,166,154,68, + 94,113,206,26,94,118,214,56,15,63,126,59,121,153,128,91,234,29,178,89, + 50,152,109,199,84,203,46,113,218,101,213,234,141,188,245,23,46,227,145,39, + 82,62,246,171,55,227,121,7,185,226,205,107,184,226,93,23,243,150,127,55, + 138,105,218,4,65,196,162,106,169,8,59,246,231,218,250,157,147,154,208,22, + 232,221,216,87,239,54,223,110,15,28,162,208,188,240,89,192,64,169,38,66, + 140,162,9,165,2,170,73,221,203,59,148,44,37,234,30,232,109,34,223,134, + 63,135,177,183,9,44,194,156,146,204,110,216,79,157,113,16,77,202,38,248, + 41,40,85,39,237,236,197,168,172,36,77,118,96,88,235,7,246,159,231,209, + 106,238,2,161,73,0,70,73,14,4,228,129,224,206,92,155,74,173,202,72, + 197,164,57,29,98,100,31,247,116,83,226,246,121,62,34,95,225,120,2,21, + 73,132,99,98,219,189,190,151,121,1,120,126,95,255,213,198,158,233,153,136, + 45,155,67,254,234,211,183,243,192,195,7,217,57,241,12,171,55,156,164,63, + 211,236,162,34,77,117,62,86,43,184,30,198,23,213,129,141,76,77,111,70, + 79,248,30,197,15,71,185,247,142,109,152,214,26,214,173,21,172,90,179,152, + 118,146,80,99,136,33,134,56,209,113,196,231,193,129,224,145,205,93,62,254, + 155,123,249,253,223,248,14,187,118,142,97,24,21,12,163,194,25,103,141,115, + 238,171,199,232,87,25,65,104,22,206,57,128,145,170,141,97,4,148,44,131, + 86,179,193,147,15,109,225,21,103,26,188,234,53,175,167,209,112,185,230,75, + 143,243,225,15,124,146,223,253,221,45,4,65,132,105,138,44,7,167,21,100, + 28,199,125,83,171,211,195,54,19,126,222,94,146,208,83,111,244,17,148,87, + 129,103,123,31,177,82,77,58,137,222,111,39,105,20,164,214,152,26,36,197, + 116,182,47,87,212,88,88,109,248,125,139,157,122,79,157,165,201,142,1,53, + 55,112,140,233,66,53,98,135,42,184,206,92,251,16,119,102,89,232,199,237, + 150,223,43,67,0,98,83,171,234,96,222,176,1,211,52,11,114,203,123,76, + 62,244,104,155,27,190,27,241,87,159,190,157,187,238,43,177,107,247,10,4, + 235,244,250,174,24,104,236,220,77,14,205,151,185,222,104,70,114,30,154,224, + 86,224,58,171,249,250,183,182,242,223,254,228,11,92,255,149,219,105,54,194, + 231,157,5,56,196,16,67,156,56,120,201,8,174,63,236,40,101,135,40,60, + 216,103,64,144,36,241,52,211,51,49,191,245,219,83,252,242,59,183,243,229, + 47,79,50,211,88,77,172,38,48,69,157,17,175,193,47,190,123,156,135,30, + 104,224,218,22,16,224,184,7,208,61,8,151,235,13,171,89,66,169,187,203, + 219,246,10,100,218,230,207,63,157,242,197,47,116,185,234,87,235,148,156,20, + 69,147,201,233,9,54,63,184,141,189,83,29,164,84,196,73,57,43,29,208, + 44,17,69,58,172,150,231,143,230,163,48,148,116,183,235,78,37,157,237,186, + 158,44,109,146,250,59,50,219,191,14,77,130,86,106,150,209,210,97,202,83, + 50,38,122,118,14,202,18,140,93,224,119,168,88,135,22,158,59,94,23,217, + 106,96,140,8,186,89,120,80,204,142,99,50,133,201,20,21,107,5,0,221, + 145,73,188,236,155,19,66,175,103,89,79,224,169,245,144,135,74,0,0,32, + 0,73,68,65,84,29,212,189,44,191,149,17,221,72,105,31,35,165,125,135, + 184,52,149,106,234,146,3,116,8,117,247,114,125,60,229,218,12,149,90,149, + 186,187,119,224,216,186,202,36,136,15,18,186,139,232,202,10,157,236,34,35, + 141,53,153,244,55,178,206,63,87,173,134,245,5,197,147,79,71,220,113,123, + 76,243,128,100,164,38,168,90,17,168,31,160,184,67,191,38,80,164,170,78, + 170,234,36,241,116,159,139,178,23,190,21,233,20,167,158,190,20,175,116,30, + 138,13,40,92,252,168,131,192,229,192,116,149,107,190,220,225,19,191,117,63, + 119,221,189,145,40,73,73,130,6,169,108,19,4,1,42,210,125,46,147,120, + 122,193,239,120,136,33,134,56,254,240,146,17,92,30,146,146,178,131,16,46, + 78,105,201,64,207,193,155,191,91,226,87,63,184,133,107,191,244,32,59,118, + 102,29,71,68,29,83,212,49,24,97,201,178,53,220,113,123,192,211,155,111, + 32,136,19,32,32,10,116,62,198,203,194,148,105,108,22,163,82,44,71,146, + 196,49,207,60,187,157,59,111,219,1,192,186,181,235,113,29,147,60,188,153, + 248,254,64,61,148,110,223,164,250,30,15,142,191,129,5,148,91,223,140,54, + 149,206,146,186,137,118,76,102,109,181,148,106,246,20,92,215,28,80,112,121, + 238,44,87,114,177,173,47,2,42,101,109,242,136,252,50,198,200,32,241,153, + 76,33,25,31,88,54,130,3,101,137,103,102,174,72,209,171,105,139,186,7, + 10,146,3,138,28,95,255,178,133,84,219,234,253,138,174,212,203,59,115,109, + 90,193,74,160,151,219,203,21,92,63,250,205,38,243,235,204,114,195,16,80, + 52,104,254,214,117,187,120,232,129,6,231,191,249,98,234,75,86,80,114,98, + 230,207,248,179,237,152,78,152,18,182,125,2,127,240,56,149,49,206,134,147, + 86,114,198,169,62,6,203,49,24,69,160,231,196,129,139,162,201,3,155,183, + 242,135,191,255,223,249,235,63,219,78,39,121,25,169,242,40,215,44,194,52, + 102,166,97,18,39,101,134,77,151,135,24,226,196,192,75,70,112,105,218,179, + 140,231,33,42,128,153,118,200,53,159,223,202,167,254,104,11,215,223,48,197, + 244,244,232,161,175,101,150,229,107,70,249,206,141,143,240,224,230,221,64,3, + 125,37,159,159,200,180,122,136,101,132,200,172,224,73,100,82,42,141,225,7, + 22,143,110,158,224,230,175,220,198,212,76,139,32,218,13,100,173,172,186,35, + 116,125,147,32,8,136,100,155,78,103,46,235,171,24,19,69,17,134,17,29, + 182,137,242,192,156,54,178,78,32,225,76,143,220,252,78,225,124,164,156,145, + 65,89,98,84,52,241,25,123,23,86,14,57,201,197,118,135,216,238,224,167, + 58,252,88,54,20,98,86,144,140,104,146,3,52,89,154,45,102,137,180,217, + 4,80,125,228,150,111,171,159,228,234,94,183,184,175,67,162,11,155,74,0, + 74,109,133,223,54,177,227,67,11,225,155,115,154,136,74,193,12,126,146,226, + 89,6,142,39,138,86,96,57,242,217,107,78,159,25,68,8,151,137,93,41, + 63,124,112,11,15,221,191,149,230,1,73,235,224,62,130,104,26,8,152,157, + 202,122,107,74,221,253,63,242,21,157,168,139,235,141,146,155,76,148,114,217, + 179,111,154,53,107,109,78,123,237,26,96,61,138,81,4,189,223,143,96,20, + 131,81,130,72,242,249,47,221,195,135,222,247,191,120,224,161,26,145,175,48, + 236,4,207,140,240,60,143,40,146,47,250,92,187,33,134,24,226,232,195,75, + 70,112,81,148,96,154,102,49,22,199,117,29,210,52,229,155,215,135,252,143, + 255,119,27,79,60,81,197,54,87,98,138,58,82,181,138,191,177,220,203,250, + 117,146,185,198,62,118,238,218,161,95,107,91,244,215,59,229,229,2,37,215, + 164,84,42,49,219,238,169,135,122,217,3,74,220,121,111,76,167,221,64,159, + 208,125,210,120,7,213,242,44,134,232,16,133,141,66,125,228,225,43,21,201, + 129,28,208,243,185,37,101,208,0,185,67,135,37,231,145,155,101,180,52,249, + 152,61,226,49,162,201,34,151,54,82,211,39,85,49,143,152,146,57,129,219, + 105,226,25,20,202,204,82,13,172,62,255,74,78,150,35,56,204,154,7,49, + 205,89,24,221,143,18,45,132,104,81,54,91,152,209,30,98,187,67,212,61, + 128,167,118,16,117,15,104,98,203,84,101,39,81,250,88,197,255,207,222,187, + 198,90,146,157,215,97,107,239,93,117,170,234,156,115,207,163,251,118,207,112, + 56,253,154,25,82,164,56,36,135,35,82,80,36,138,156,161,36,11,177,1, + 145,122,196,17,2,9,114,242,35,127,12,36,65,16,4,118,156,56,80,126, + 36,134,20,8,72,96,3,9,156,68,22,40,1,134,33,7,214,195,178,44, + 139,20,165,136,162,32,82,163,25,13,95,67,78,79,63,110,79,79,79,247, + 189,247,188,79,61,247,222,249,177,31,181,235,113,111,119,223,30,90,221,66, + 45,224,162,239,61,167,222,231,116,173,90,223,183,190,239,83,127,47,116,90, + 142,237,151,37,9,185,191,129,216,148,33,202,131,101,233,100,76,242,178,134, + 48,139,37,68,238,217,254,148,70,197,101,153,233,80,83,134,42,135,19,129, + 56,241,176,119,39,193,175,253,63,95,194,50,221,131,122,112,73,48,61,35, + 176,74,98,251,240,209,128,76,64,233,0,251,251,91,188,244,149,25,62,245, + 194,15,227,185,103,213,108,188,48,56,3,105,73,46,129,68,2,130,16,18, + 9,94,122,117,31,255,211,63,248,99,252,233,159,245,145,172,87,232,245,83, + 108,23,230,88,59,39,101,135,14,127,221,241,29,35,56,83,27,101,144,231, + 57,254,217,63,95,227,31,255,194,55,113,249,141,39,237,235,134,220,0,64, + 136,13,206,156,201,241,216,165,28,55,222,188,134,56,85,197,210,132,170,89, + 112,202,65,89,173,135,202,165,135,209,80,133,62,87,25,69,86,16,72,25, + 162,216,170,80,95,20,148,10,99,189,29,217,27,168,201,205,28,11,94,237, + 250,111,75,1,130,3,93,20,125,181,36,55,50,183,170,10,0,216,184,128, + 71,23,88,167,27,144,229,46,214,253,24,254,242,106,101,243,46,201,121,59, + 18,233,176,26,158,116,205,142,70,181,26,140,208,3,25,112,21,174,4,16, + 81,128,172,22,136,217,6,125,182,176,138,208,252,108,138,25,114,95,189,87, + 217,206,157,61,117,170,187,12,228,113,129,104,168,200,201,132,77,1,128,138, + 57,122,67,165,234,66,95,77,218,142,11,81,81,112,102,184,42,80,54,98, + 118,187,154,172,231,20,81,175,15,25,251,120,237,242,10,7,135,215,224,134, + 39,139,56,70,150,30,32,73,18,20,5,183,57,190,42,2,188,244,229,215, + 113,122,7,248,196,15,127,20,4,9,226,116,5,130,64,15,67,85,205,184, + 37,174,32,234,13,32,145,224,47,190,250,7,248,236,63,253,101,188,117,231, + 113,28,28,44,192,179,43,40,226,4,156,75,155,123,237,208,161,195,95,79, + 124,199,8,174,236,74,161,118,241,59,191,27,227,31,255,194,55,241,181,175, + 41,83,8,151,11,112,167,31,34,151,11,60,247,161,17,126,228,71,190,11, + 167,250,84,171,175,91,0,222,66,156,170,28,92,146,174,1,164,136,130,211, + 0,128,52,225,16,89,189,152,90,131,246,17,167,43,189,46,176,218,2,129, + 119,85,141,81,73,56,226,66,32,229,27,36,73,130,77,182,181,110,64,175, + 56,172,140,151,1,208,236,82,178,209,164,176,152,149,202,109,160,21,1,83, + 234,109,182,168,42,132,225,54,130,156,3,197,134,34,22,165,74,11,55,115, + 132,155,57,196,166,121,67,95,108,178,198,107,96,75,176,222,6,75,148,239, + 141,38,135,86,145,225,250,77,125,253,23,21,2,5,80,37,55,57,1,98, + 245,0,193,246,57,216,62,135,188,213,254,117,152,78,34,228,203,82,209,5, + 137,34,253,100,189,178,74,88,229,182,20,178,140,67,202,216,113,167,110,148, + 130,211,215,147,4,145,206,141,42,204,238,168,253,110,244,67,201,102,75,32, + 115,115,44,41,64,66,8,177,129,148,33,94,251,246,183,240,133,207,95,195, + 11,47,134,120,238,217,143,216,109,16,4,240,123,67,16,77,154,106,2,252, + 91,0,174,40,151,229,255,248,251,120,235,206,227,216,242,1,114,22,219,208, + 52,231,18,121,158,215,106,247,58,117,215,161,195,95,7,124,7,203,4,8, + 0,117,243,248,141,223,90,226,127,251,197,43,21,114,3,148,169,228,212,216, + 195,120,180,193,135,158,101,248,241,31,123,28,207,127,116,138,235,215,50,36, + 233,29,168,240,226,45,168,39,125,21,118,2,128,56,85,249,157,32,82,97, + 170,180,16,32,84,189,215,243,36,8,73,224,247,9,8,2,168,188,221,4, + 23,46,192,58,235,150,113,142,98,43,32,115,10,145,174,81,20,28,201,122, + 101,251,43,218,51,48,13,138,117,23,16,17,22,142,172,154,131,190,189,6, + 89,57,164,225,16,72,180,187,2,216,2,195,64,41,31,111,169,8,203,27, + 8,235,128,4,96,85,27,27,106,227,3,169,230,200,182,186,221,88,188,38, + 149,146,129,105,175,169,60,216,172,89,6,96,72,173,78,118,102,63,155,226, + 173,198,58,6,197,86,169,178,217,220,9,15,231,213,54,103,189,168,84,157, + 110,87,19,66,194,138,89,103,58,242,0,164,150,228,20,212,67,80,26,113, + 128,43,130,79,146,184,252,61,158,195,85,236,106,194,196,20,191,243,91,192, + 229,203,28,239,255,208,251,16,5,101,197,91,158,173,181,146,123,151,67,160, + 83,16,36,248,245,223,252,28,254,231,255,225,255,198,91,119,30,199,157,183, + 57,146,36,65,146,36,141,217,118,64,85,121,118,232,208,225,209,197,119,236, + 127,178,234,55,8,188,250,245,20,191,252,127,189,129,63,250,19,117,179,228, + 181,46,246,0,240,236,7,122,248,153,191,243,30,124,232,99,19,188,244,149, + 25,94,123,237,101,40,82,139,225,134,177,8,89,161,238,186,3,128,129,167, + 110,214,125,111,9,136,45,128,20,249,186,170,236,174,93,43,135,97,2,64, + 206,11,240,92,169,59,211,179,144,198,183,176,90,39,88,173,147,234,252,52, + 179,127,219,109,223,113,74,30,129,40,13,33,55,12,68,28,150,38,17,40, + 5,231,146,88,176,86,161,201,96,45,17,172,155,238,190,254,80,221,192,163, + 161,4,197,28,236,0,64,164,111,250,76,171,62,94,246,238,36,123,234,28, + 141,249,36,22,138,220,234,219,54,138,211,44,95,57,207,58,25,30,3,163, + 224,100,198,145,23,125,91,236,93,31,43,180,119,93,0,50,65,212,99,240, + 211,76,43,44,133,32,102,88,172,180,218,203,11,228,188,112,194,199,78,243, + 109,185,0,200,24,151,175,174,241,165,47,252,33,206,156,29,226,241,83,143, + 65,34,213,13,185,1,138,199,65,48,65,146,221,128,196,20,192,4,18,33, + 8,222,194,255,251,219,95,197,63,249,95,63,7,47,138,108,11,47,67,114, + 128,169,137,20,93,216,178,67,135,191,38,56,49,193,169,38,196,188,82,239, + 166,94,87,211,157,121,177,197,193,97,142,95,250,197,219,248,237,127,173,8, + 196,205,183,49,50,198,197,11,28,231,222,125,7,159,249,41,137,207,252,148, + 90,255,181,87,127,11,113,186,130,196,45,148,142,191,20,64,0,200,51,250, + 111,229,138,76,227,25,164,140,144,9,101,105,143,51,115,19,15,0,218,215, + 203,169,198,188,59,125,160,40,10,20,136,32,147,141,250,225,43,208,98,134, + 34,225,232,179,13,34,182,181,63,174,122,147,98,9,240,171,186,20,64,31, + 19,153,131,109,239,128,205,102,240,232,2,44,42,67,120,249,238,1,36,73, + 65,15,5,86,185,118,1,98,9,178,151,131,44,9,188,145,46,8,39,11, + 36,59,75,75,114,201,78,25,166,244,70,51,236,220,238,149,235,162,156,31, + 151,248,11,144,0,88,242,16,222,206,6,232,237,193,27,8,44,54,25,118, + 252,20,100,181,192,142,191,64,196,180,105,133,162,90,126,64,230,88,178,59, + 128,156,160,95,92,4,0,172,30,223,179,111,223,142,183,214,145,217,6,163, + 226,226,66,32,212,159,69,206,98,248,222,22,148,44,224,251,57,132,80,19, + 28,140,26,26,78,4,64,66,196,217,22,94,95,106,247,227,28,110,157,219, + 102,187,143,156,23,200,10,225,76,4,8,0,18,42,245,70,66,72,25,66, + 202,155,248,218,55,250,184,115,123,141,201,105,31,4,9,178,204,3,108,30, + 110,14,224,93,58,92,57,7,193,76,191,55,195,239,252,238,23,240,175,126, + 29,200,54,11,28,28,166,16,114,0,153,113,172,227,67,237,164,165,160,52, + 187,175,201,19,29,58,116,120,56,113,98,130,51,55,46,66,66,251,196,203, + 249,6,82,38,160,148,194,243,79,227,179,191,26,227,247,254,141,178,199,27, + 98,51,10,238,226,5,142,199,207,77,240,137,31,254,40,62,254,201,103,176, + 19,70,248,194,231,175,225,213,215,18,155,71,185,247,99,81,203,239,244,171, + 243,195,252,222,80,255,86,237,42,159,232,14,101,121,34,176,206,25,104,49, + 179,141,132,183,233,172,65,110,102,196,141,129,41,144,6,128,34,61,13,118, + 170,252,155,141,11,132,25,1,34,117,115,28,110,149,139,148,96,100,127,55, + 232,83,69,200,38,76,105,254,182,56,162,139,137,65,37,76,169,67,145,134, + 80,57,87,132,104,10,198,109,231,19,173,30,71,232,217,240,42,223,101,150, + 232,182,171,83,56,27,149,249,52,0,64,75,7,148,32,57,196,233,160,84, + 190,64,57,66,199,56,81,93,163,209,122,110,190,106,245,166,201,250,176,244, + 103,40,147,146,88,93,131,80,189,177,242,254,225,2,235,213,18,146,238,226, + 212,41,245,221,146,40,167,83,40,179,73,168,29,184,37,222,62,216,195,175, + 253,242,207,227,214,65,129,233,244,20,4,159,99,177,93,33,234,169,112,119, + 146,100,214,249,219,161,67,135,71,27,15,164,224,0,232,65,150,205,14,32, + 47,191,186,197,191,250,215,87,112,48,127,219,190,102,72,238,212,216,195,187, + 159,16,120,254,35,1,126,246,231,250,120,238,131,125,252,201,151,50,252,209, + 231,246,26,195,77,155,8,27,175,8,161,94,91,109,115,173,220,128,172,32, + 200,51,211,20,88,221,176,4,95,65,38,27,219,140,215,15,171,167,111,7, + 123,58,228,38,50,110,231,166,33,222,40,114,219,50,120,3,1,169,111,218, + 124,225,1,97,10,214,43,111,206,68,106,147,141,83,119,70,49,183,121,178, + 173,32,216,10,130,62,25,67,196,107,136,184,101,106,64,11,228,82,104,2, + 149,32,1,32,73,10,54,80,231,51,202,60,140,182,138,8,188,209,76,109, + 159,74,128,204,85,200,146,204,177,21,205,14,42,108,159,99,235,93,85,199, + 77,22,224,107,181,76,234,20,185,83,81,13,201,38,249,157,202,96,85,119, + 140,14,80,142,166,81,74,168,156,122,16,245,218,187,197,0,42,132,156,123, + 17,252,66,109,215,228,90,219,72,241,224,32,195,245,107,202,104,51,28,4, + 136,130,29,244,122,205,38,203,113,110,182,145,88,178,251,139,87,111,224,255, + 248,223,95,199,42,137,177,191,191,15,207,99,216,108,86,88,175,87,160,100, + 161,27,128,243,46,23,215,161,195,35,142,7,82,112,148,50,103,136,165,170, + 35,35,36,194,157,253,4,191,244,139,183,241,23,127,126,3,132,156,182,53, + 110,128,34,183,233,52,196,135,191,135,226,133,23,67,124,240,187,3,188,126, + 249,22,126,243,95,252,1,190,249,237,27,106,91,184,133,82,117,213,59,237, + 55,213,93,155,130,235,121,210,81,112,85,44,211,21,104,49,7,95,31,194, + 195,45,208,66,253,12,232,10,3,236,149,166,146,140,43,53,231,180,183,194, + 150,85,114,104,108,91,154,46,72,0,16,225,180,150,146,85,229,67,150,84, + 57,35,249,24,125,42,209,167,18,91,185,0,233,115,144,126,153,147,98,58, + 183,70,91,138,178,201,136,34,233,73,200,36,131,36,181,107,99,204,59,154, + 68,77,205,157,75,106,117,149,72,51,245,0,226,170,75,99,120,137,24,197, + 122,185,193,120,148,97,58,137,48,95,220,196,8,87,48,194,21,0,192,96, + 112,104,231,196,1,192,152,205,109,253,32,37,11,171,228,164,37,71,69,84, + 69,50,168,77,5,208,15,39,40,243,164,69,198,106,10,174,70,114,68,21, + 126,19,177,15,90,156,69,146,102,200,179,129,206,183,133,78,151,147,4,234, + 1,39,68,146,123,150,228,126,249,215,126,27,191,241,47,254,24,126,239,20, + 4,95,99,177,57,128,231,249,122,210,65,217,82,174,67,135,14,143,46,222, + 177,71,84,41,19,48,175,143,44,43,108,104,50,94,158,169,144,27,0,76, + 167,33,62,246,125,3,124,248,67,17,190,255,63,232,129,49,134,223,253,55, + 183,241,133,207,3,105,70,1,44,156,16,229,253,133,42,139,162,208,38,147, + 58,98,172,182,102,139,30,38,236,136,27,151,25,123,35,150,32,114,81,118, + 223,135,158,157,214,231,170,222,109,32,32,19,165,184,228,156,66,110,116,11, + 174,26,225,200,153,34,53,0,40,70,0,205,10,140,210,13,192,22,54,15, + 87,39,28,67,110,199,33,162,237,97,62,204,106,33,78,182,128,55,16,118, + 31,91,65,192,216,178,178,15,239,46,187,155,156,186,170,54,61,143,113,126, + 92,158,223,8,87,236,172,57,89,188,137,136,109,81,196,138,220,220,246,102, + 238,208,83,0,72,242,9,252,62,65,158,85,213,86,212,43,73,56,129,7, + 175,199,29,5,151,162,254,160,19,245,250,216,172,151,118,25,83,150,98,84, + 156,113,220,86,195,148,137,110,251,6,0,49,126,225,127,249,60,214,219,17, + 110,221,41,191,51,171,181,64,198,215,186,141,91,151,131,235,208,225,81,198, + 3,135,40,93,16,18,225,235,175,101,248,213,127,246,109,28,46,10,27,146, + 52,24,143,54,24,12,99,60,255,209,41,62,244,252,227,16,124,142,47,124, + 233,53,124,254,115,192,219,135,61,4,61,161,213,219,113,104,134,40,13,182, + 197,168,22,162,108,134,172,66,20,152,115,6,130,25,130,97,102,123,44,122, + 242,186,109,191,101,234,221,220,209,50,82,170,66,110,111,32,108,190,139,232, + 177,62,94,62,83,57,183,72,88,146,147,164,74,206,134,72,86,198,56,178, + 41,67,117,70,205,185,112,223,111,67,210,43,151,39,178,74,120,210,205,221, + 177,5,182,130,96,199,95,168,122,57,0,100,80,37,29,134,125,120,75,165, + 70,77,161,55,33,11,59,165,96,189,220,0,98,102,27,56,139,226,42,118, + 194,45,60,121,29,158,188,142,1,246,176,77,103,216,166,51,20,241,33,86, + 235,196,214,19,90,245,198,175,0,72,17,250,115,108,91,92,138,165,65,168, + 68,169,224,218,9,189,71,149,195,116,93,168,239,14,33,161,54,155,212,174, + 85,94,192,132,169,13,66,191,192,219,7,123,248,165,127,242,123,24,4,61, + 20,91,129,205,178,128,224,115,248,60,170,212,200,117,232,208,225,209,196,3, + 43,56,215,108,146,101,5,62,251,43,91,220,216,35,86,185,113,185,128,16, + 27,27,154,60,127,161,135,167,159,102,56,247,110,15,111,222,26,226,183,126, + 189,192,183,190,121,27,113,122,136,36,189,115,34,245,38,68,8,41,66,16, + 177,176,10,78,133,40,143,31,155,146,173,55,152,175,146,198,20,108,75,108, + 122,58,64,165,36,192,169,117,147,11,167,143,102,124,111,151,114,199,87,4, + 72,6,220,134,14,183,98,86,9,35,26,2,34,75,218,232,96,82,135,33, + 55,54,47,151,147,115,90,150,16,64,17,40,231,35,85,182,48,224,150,60, + 221,186,185,249,227,58,239,181,46,137,181,88,169,99,34,152,97,60,170,22, + 157,47,214,183,33,138,171,24,143,82,204,231,169,10,237,66,229,49,251,244, + 45,172,214,137,157,157,231,21,135,152,205,84,110,53,110,41,191,0,170,10, + 206,160,170,224,170,36,183,77,125,228,126,129,131,185,190,86,84,61,76,25, + 5,215,235,237,234,38,204,118,107,40,31,142,18,36,249,26,64,136,223,255, + 151,159,197,55,190,173,92,184,73,90,94,143,122,249,64,135,14,29,30,61, + 188,35,33,74,206,57,164,76,240,245,215,50,252,209,239,127,5,171,229,187, + 42,97,201,126,160,110,16,239,126,66,224,19,47,94,192,185,243,20,123,111, + 22,248,227,63,124,29,127,244,185,61,92,187,126,21,18,183,180,189,187,217, + 124,89,225,232,169,215,148,38,32,52,81,57,56,71,193,221,47,202,144,36, + 144,197,234,134,110,27,40,147,102,62,140,98,94,58,29,35,231,223,72,32, + 225,4,98,174,194,146,18,75,75,84,245,18,179,173,152,161,79,167,42,31, + 103,230,201,109,24,86,131,88,21,119,155,99,203,148,250,146,75,181,159,136, + 6,32,161,86,131,36,197,12,35,144,5,32,48,193,58,173,90,252,189,209, + 12,222,104,86,18,231,160,73,50,147,91,165,194,49,53,116,222,78,169,170, + 54,203,27,141,117,70,167,25,56,185,141,225,120,15,243,121,138,120,161,174, + 217,38,43,21,164,9,87,78,167,27,91,207,230,167,45,29,90,238,138,230, + 231,239,231,205,7,24,83,46,144,103,133,237,75,217,132,121,237,22,110,207, + 6,248,236,63,253,101,172,211,39,33,249,10,130,175,113,115,95,135,159,51, + 110,205,50,29,201,117,232,240,232,225,129,203,4,212,239,25,24,27,224,179, + 191,178,197,215,191,241,33,48,239,213,202,178,253,254,46,166,211,16,79,156, + 223,193,211,79,43,133,240,242,215,4,62,255,57,96,239,173,13,210,140,90, + 229,38,27,202,173,124,114,87,239,37,246,53,175,175,251,74,186,46,74,163, + 224,168,185,201,135,0,34,236,56,206,247,41,83,133,215,68,44,176,59,84, + 37,0,162,184,10,201,175,232,198,196,87,225,239,189,6,190,152,149,13,148, + 71,51,155,119,51,110,73,57,6,200,184,36,62,34,67,171,228,34,26,128, + 92,173,134,221,132,86,148,70,109,237,248,11,236,248,165,98,50,191,147,1, + 199,232,213,0,3,167,12,64,244,60,208,165,34,127,73,18,245,147,100,136, + 131,4,73,79,98,231,21,117,28,20,115,140,182,169,42,8,7,108,75,47, + 185,97,144,27,134,229,92,189,182,68,86,13,101,2,88,246,10,236,140,14, + 109,184,212,20,124,143,79,45,48,62,181,128,231,125,205,254,0,64,190,127, + 25,100,187,194,242,128,99,56,222,195,52,248,38,6,216,195,128,174,32,139, + 55,177,92,237,91,21,167,62,191,199,244,231,38,97,186,211,24,152,33,165, + 33,10,48,79,153,133,170,38,147,42,8,89,32,215,125,48,165,88,67,138, + 5,164,76,116,247,26,165,230,202,73,3,19,212,67,148,64,136,48,216,2, + 152,227,139,95,186,138,189,43,151,81,32,194,106,89,96,208,151,40,138,28, + 169,200,91,59,157,116,232,208,225,209,192,3,228,224,170,42,224,165,87,214, + 248,195,207,95,133,192,18,219,212,111,44,63,24,198,56,115,70,17,195,222, + 117,129,87,191,124,13,123,87,110,98,179,158,65,202,196,186,223,238,142,114, + 153,98,107,250,93,54,93,148,234,38,106,80,154,76,142,130,105,75,213,139, + 74,75,187,233,174,15,182,0,248,184,84,64,78,180,236,110,77,63,68,75, + 152,180,240,85,205,149,171,164,140,241,131,12,120,165,207,164,61,22,173,4, + 43,136,4,66,38,17,178,230,13,216,40,61,181,241,114,219,152,100,152,142, + 105,107,171,175,214,227,111,233,145,9,168,1,171,113,178,5,194,59,24,79, + 175,169,125,6,7,152,207,83,64,204,49,160,170,235,11,79,15,85,94,110, + 214,182,63,245,185,29,44,47,40,131,16,128,117,161,156,148,69,86,207,65, + 54,243,112,117,5,23,6,189,218,18,199,133,185,231,72,82,10,32,193,219, + 7,123,248,220,191,251,34,182,91,162,187,168,196,40,10,245,217,184,161,202, + 14,29,58,60,90,120,224,16,165,25,104,250,242,215,4,174,94,222,7,151, + 11,80,170,242,45,198,100,98,114,111,231,46,168,41,2,215,174,188,129,63, + 127,229,38,174,223,124,3,137,14,87,221,123,113,247,209,203,45,147,82,166, + 153,105,2,71,129,8,197,76,166,207,226,233,211,230,157,106,40,210,78,8, + 208,185,55,214,219,64,166,218,88,82,131,107,44,145,122,254,29,109,49,186, + 172,242,154,201,195,201,151,45,145,97,132,94,67,93,149,251,152,54,207,69, + 134,13,7,37,87,78,126,75,100,68,187,54,167,189,28,136,143,14,247,214, + 193,134,18,132,44,42,68,215,103,11,12,60,162,38,17,196,27,32,222,128, + 108,246,64,182,43,12,199,123,202,172,83,168,188,230,38,19,170,212,162,21, + 33,128,0,167,71,138,32,13,201,25,5,119,55,228,181,89,116,202,133,91, + 221,126,245,161,41,66,213,164,20,218,191,191,248,199,223,194,205,55,171,219, + 115,167,77,112,46,145,36,153,110,231,213,149,15,116,232,240,40,224,129,8, + 206,56,41,15,14,115,124,254,119,246,49,223,244,156,247,54,224,114,129,83, + 99,15,131,97,140,75,79,169,39,242,203,151,57,94,249,242,53,236,191,73, + 112,120,88,189,89,55,195,147,109,56,94,229,101,104,191,249,236,244,91,95, + 86,199,170,167,86,87,242,110,119,65,69,33,105,152,226,110,251,247,178,121, + 121,201,146,98,188,170,146,175,233,58,2,192,142,191,105,28,99,207,3,93, + 230,192,97,147,88,143,219,159,237,91,9,88,37,231,90,247,197,72,187,68, + 181,58,52,97,216,136,205,237,196,3,64,17,93,159,169,9,5,177,0,228, + 183,246,112,99,197,236,181,146,242,42,32,231,106,210,2,191,10,78,110,35, + 159,191,142,1,246,176,201,4,40,174,217,109,109,183,230,218,37,48,185,53, + 193,87,54,76,217,68,128,106,14,78,157,83,93,193,5,189,242,51,145,181, + 239,137,108,16,91,226,252,155,224,27,223,188,133,55,222,184,142,56,73,177, + 92,111,177,89,173,236,210,157,138,235,208,225,209,196,3,228,224,24,40,165, + 200,115,31,123,111,22,248,242,159,110,172,114,83,239,151,191,159,191,160,110, + 218,30,189,134,249,114,131,151,95,241,113,48,231,118,26,183,60,198,64,210, + 68,59,9,26,23,101,15,237,246,250,163,66,148,211,73,164,194,147,110,49, + 183,134,23,28,84,148,27,235,109,84,49,183,230,140,227,194,147,124,83,189, + 249,210,172,104,85,115,100,192,27,10,142,141,11,224,176,74,178,109,235,2, + 37,169,186,199,66,150,20,152,73,235,150,204,167,229,205,217,13,175,66,46, + 64,151,147,74,232,179,110,64,145,100,1,73,22,106,2,2,169,14,100,61, + 191,186,13,177,148,78,235,178,57,16,229,138,232,182,43,140,130,183,42,14, + 75,131,126,223,124,237,74,210,161,108,7,69,81,96,216,202,113,245,239,71, + 251,247,165,174,224,164,163,208,154,48,239,169,126,149,73,190,198,23,191,240, + 134,45,56,55,161,202,182,153,129,148,30,95,194,209,161,67,135,135,3,15, + 220,108,25,0,190,240,7,57,94,191,114,77,191,94,117,240,77,167,234,6, + 179,51,85,106,237,141,111,101,152,31,228,216,172,171,185,29,147,131,35,118, + 138,192,253,161,238,162,180,255,58,240,112,8,90,204,177,213,198,7,42,230, + 200,111,127,195,134,39,123,209,17,44,200,150,85,98,56,238,56,66,39,135, + 151,21,64,210,146,31,155,163,218,214,107,192,237,207,136,37,224,235,150,227, + 72,36,68,174,77,40,142,82,148,36,1,98,210,80,111,100,1,208,215,157, + 30,153,131,26,65,70,101,19,104,131,81,218,108,176,108,107,244,140,139,212, + 116,92,249,54,109,184,53,165,156,99,179,90,43,37,28,222,193,124,147,98, + 56,222,83,205,170,161,198,221,200,138,202,45,115,112,130,43,197,180,110,229, + 241,123,187,248,174,130,171,67,77,249,86,134,35,5,183,0,92,17,230,23, + 191,116,21,203,131,200,230,255,120,94,30,140,75,116,157,163,178,67,135,71, + 3,15,20,162,148,50,193,106,45,240,27,191,177,134,148,97,131,220,70,209, + 12,195,254,30,134,59,35,172,230,61,92,185,194,112,253,230,183,177,202,50, + 72,177,128,56,50,55,115,28,218,159,200,165,8,43,46,202,182,142,38,5, + 78,1,0,6,78,132,112,221,187,8,160,12,79,130,168,233,220,244,102,73, + 14,94,159,169,2,238,208,20,113,183,43,8,147,119,3,96,93,140,117,152, + 169,0,60,27,148,110,76,167,168,155,177,246,222,158,8,203,131,54,185,62, + 67,116,197,150,91,133,103,136,142,44,41,196,28,64,156,170,222,149,102,221, + 84,157,207,221,96,58,158,84,186,158,12,4,88,246,102,229,53,70,150,202, + 101,58,60,132,55,60,68,127,231,16,69,239,38,54,171,53,198,211,107,88, + 30,112,136,150,218,183,192,49,185,248,228,42,122,193,20,158,231,89,162,243, + 122,238,58,237,215,251,184,28,28,129,33,240,54,243,146,105,221,229,246,255, + 156,99,177,124,11,255,223,31,189,129,52,157,33,78,82,199,112,98,154,137, + 119,142,202,14,29,30,37,60,16,193,241,98,139,63,249,82,134,63,255,211, + 175,130,210,1,8,73,42,161,73,191,79,48,120,236,113,235,158,188,115,103, + 128,205,62,199,102,61,179,55,163,106,120,50,108,228,78,238,21,86,193,25, + 208,126,107,87,11,23,211,73,132,97,118,21,139,184,61,65,71,156,146,60, + 211,57,196,118,42,57,58,21,118,44,228,129,82,66,172,183,1,215,141,165, + 109,88,144,45,109,126,172,17,254,76,36,72,109,74,184,82,111,20,236,0, + 216,100,229,185,203,145,0,205,10,172,110,247,42,249,54,163,226,228,81,173, + 190,52,236,116,114,40,67,140,33,58,147,159,91,13,98,208,236,109,236,248, + 41,60,57,179,83,204,77,56,87,58,211,196,199,90,21,243,219,223,82,231, + 69,18,108,183,2,105,230,195,125,88,201,116,145,53,101,170,59,201,221,93, + 148,129,205,193,197,252,232,243,57,218,188,52,69,53,220,157,34,201,11,252, + 225,231,174,55,150,116,29,149,0,58,146,235,208,225,17,193,137,9,142,115, + 142,94,112,6,151,47,115,228,197,5,8,177,129,71,159,106,168,184,83,38, + 223,34,223,198,245,183,231,182,238,77,200,5,8,2,251,164,77,144,232,66, + 111,160,89,179,212,14,79,119,175,16,34,84,179,222,138,2,153,80,164,145, + 21,68,119,181,184,101,183,199,182,11,61,27,76,133,39,141,131,50,146,87, + 17,39,91,85,247,22,237,192,95,232,124,156,62,28,73,82,132,203,16,32, + 35,213,57,36,18,16,109,62,148,168,36,6,190,55,86,164,19,18,208,172, + 176,229,2,116,71,64,30,206,144,140,18,107,250,176,101,1,124,4,198,24, + 146,81,210,8,57,154,240,100,29,73,79,66,92,19,232,223,206,65,151,57, + 228,72,128,237,11,136,158,135,241,173,28,120,121,108,139,207,77,215,147,196, + 95,168,153,114,87,101,101,206,156,201,219,229,143,189,97,93,151,125,170,66, + 203,171,65,140,205,83,111,219,26,61,0,144,244,20,196,41,170,242,147,99, + 69,158,91,255,117,244,201,88,13,88,141,55,216,228,87,212,44,61,192,134, + 39,251,125,10,137,68,215,185,149,159,33,160,234,225,120,145,131,208,196,233, + 100,98,214,13,90,135,177,70,44,5,161,227,154,201,68,63,136,232,92,27, + 105,40,57,51,35,14,80,228,25,0,184,133,56,249,50,94,255,246,227,200, + 180,138,3,208,80,113,140,145,206,73,217,161,195,35,128,19,19,28,99,12, + 73,146,225,165,175,204,108,215,18,83,34,96,72,110,178,163,202,2,238,220, + 25,40,245,246,246,45,199,65,87,130,220,83,142,197,93,166,188,81,245,24, + 177,117,112,46,122,222,61,60,101,235,206,33,189,168,135,177,49,116,198,42, + 68,38,54,103,42,139,90,37,20,201,134,91,210,133,36,137,125,63,74,203, + 155,96,197,36,50,147,136,82,189,13,182,196,136,85,143,223,13,41,214,205, + 37,98,14,36,188,124,63,100,178,65,182,162,231,29,105,106,49,235,132,76, + 98,217,215,68,53,210,211,189,53,119,248,51,31,75,30,130,12,184,109,10, + 61,98,9,196,219,138,12,137,190,110,235,116,3,50,224,246,218,152,144,43, + 89,45,202,26,66,64,15,138,45,177,221,10,132,61,86,33,48,74,19,91, + 38,96,87,139,74,9,77,108,9,70,251,119,69,138,69,75,153,64,83,193, + 53,35,4,230,111,69,102,251,251,27,124,245,213,87,173,146,52,170,205,168, + 56,211,221,164,107,196,220,161,195,195,143,7,10,81,126,253,181,12,191,247, + 111,255,188,161,218,12,6,67,165,144,214,171,37,214,171,37,14,23,111,66, + 138,230,19,248,253,185,40,161,59,80,0,132,196,200,117,174,141,209,230,104, + 156,114,202,243,209,4,202,78,69,0,153,96,83,200,202,212,107,51,70,198, + 5,17,169,30,83,115,247,114,6,91,199,230,154,76,18,89,249,219,235,51, + 171,218,216,184,176,4,193,55,94,187,65,69,19,153,91,216,221,86,3,103, + 137,45,145,144,135,51,75,184,146,164,165,89,38,166,24,109,83,53,45,220, + 81,139,94,62,3,99,172,66,186,100,192,177,228,33,162,93,77,254,115,128, + 45,151,182,175,38,27,20,182,182,110,132,30,228,45,29,126,150,115,16,178, + 192,102,181,134,28,220,177,225,235,126,159,34,201,56,96,59,211,148,48,36, + 23,162,0,17,251,141,235,234,230,227,252,190,211,202,172,166,224,12,238,47, + 228,157,226,246,108,133,171,175,95,71,145,231,40,138,194,170,184,141,83,87, + 217,141,211,233,208,225,209,192,3,17,220,222,117,129,195,67,165,218,140,114, + 19,66,149,11,68,163,234,83,251,222,149,155,88,111,210,214,167,236,187,163, + 90,7,149,164,42,103,150,243,12,67,57,135,16,33,8,77,172,65,193,192, + 29,128,57,141,94,183,191,83,49,7,196,12,3,111,14,126,24,35,219,222, + 110,13,125,1,74,149,36,61,217,116,33,106,180,214,158,1,192,225,188,145, + 51,3,84,168,209,221,149,85,61,34,85,74,40,10,64,175,136,6,185,181, + 109,11,0,16,19,208,61,90,175,79,183,251,170,144,95,36,128,72,183,225, + 146,129,85,112,46,218,234,251,140,202,140,210,80,25,98,156,109,154,208,164, + 41,159,96,227,2,155,226,45,108,175,92,135,88,86,207,33,244,213,65,150, + 42,94,19,175,208,14,92,253,249,21,69,129,4,30,36,221,213,7,229,186, + 47,203,99,206,183,229,246,235,10,174,25,21,184,87,162,75,112,229,218,21, + 36,73,185,173,36,73,192,232,214,182,239,234,198,233,116,232,240,104,224,190, + 217,198,29,147,115,249,50,135,148,122,90,118,77,197,245,253,210,244,224,147, + 171,136,83,15,132,60,118,228,118,143,127,210,110,118,147,7,128,32,84,121, + 41,19,222,50,97,37,41,195,134,195,174,32,207,192,147,7,182,131,9,211, + 185,184,225,244,109,244,162,173,170,243,50,199,50,87,227,109,76,40,174,173, + 21,214,221,112,183,22,94,82,243,181,91,126,176,222,213,133,230,142,129,165, + 173,213,151,139,98,53,0,121,163,60,87,182,95,126,62,100,33,64,22,128, + 156,55,187,186,20,171,129,157,254,109,151,95,82,53,195,46,128,85,149,117, + 208,67,209,60,183,72,32,14,74,37,54,202,60,12,131,1,232,120,129,104, + 200,237,195,131,105,225,214,239,211,99,219,178,53,106,225,72,53,140,216,134, + 54,5,231,58,41,93,148,127,215,143,65,45,159,38,251,184,189,247,22,24, + 29,90,69,201,243,194,134,41,13,58,179,73,135,14,15,55,78,164,224,132, + 16,200,178,2,47,125,101,6,144,177,37,55,51,53,192,60,169,27,188,241, + 70,15,233,58,182,79,238,82,222,223,32,83,133,230,205,45,77,56,214,218, + 234,232,90,204,9,73,224,231,158,227,162,76,177,216,94,129,39,87,160,98, + 142,241,240,109,132,30,1,149,243,210,92,2,52,38,6,180,26,73,12,234, + 195,69,29,72,146,40,162,49,235,215,213,152,86,125,113,144,88,98,40,182, + 78,119,145,43,229,242,141,92,218,204,40,48,93,224,253,202,220,238,167,97, + 68,153,3,236,6,7,110,55,67,105,108,190,68,114,179,92,190,145,175,11, + 83,16,145,90,133,105,21,172,238,164,114,84,126,143,47,60,53,52,230,207, + 189,0,0,32,0,73,68,65,84,174,103,38,64,150,4,30,93,216,233,4, + 6,109,109,212,60,28,194,195,33,4,95,97,153,234,207,209,9,81,170,28, + 92,123,168,153,180,132,167,237,123,206,58,85,163,73,27,193,170,193,170,87, + 174,239,227,165,87,245,160,218,60,71,86,8,48,223,195,102,75,42,102,147, + 14,29,58,60,220,184,111,130,163,148,130,82,138,213,90,224,165,47,191,110, + 67,71,148,14,16,103,188,82,38,0,0,215,175,41,85,178,202,202,26,177, + 182,156,219,189,247,162,84,24,140,213,13,102,168,173,142,117,131,66,125,92, + 206,233,72,223,228,197,12,98,115,19,84,206,49,232,103,240,71,115,208,241, + 2,91,185,176,246,120,34,102,119,157,195,6,40,162,162,89,209,26,214,19, + 43,117,105,69,206,42,53,108,100,161,44,252,156,115,101,246,208,134,18,67, + 32,68,164,85,133,228,230,237,218,194,144,87,100,245,117,179,188,94,71,238, + 19,123,124,174,57,165,237,152,45,105,69,178,28,168,26,85,73,165,78,250, + 68,168,207,210,157,50,110,10,192,229,72,86,230,231,169,7,160,180,214,8, + 91,173,191,20,165,226,55,19,215,109,136,242,46,48,211,4,238,22,254,62, + 186,21,92,117,110,92,156,174,49,187,165,194,166,148,38,224,69,94,41,250, + 54,224,60,239,138,190,59,116,120,136,113,226,28,220,42,137,241,218,235,43, + 155,127,83,208,182,234,188,116,191,153,54,93,0,16,199,250,38,126,143,157, + 41,170,104,233,38,207,218,251,54,30,133,132,220,2,195,12,189,241,12,131, + 126,134,220,87,55,226,173,32,24,237,212,90,84,105,103,97,233,158,44,243, + 87,192,221,67,144,213,29,171,245,90,173,254,81,123,30,199,93,86,228,172, + 149,220,204,113,136,57,107,168,56,187,206,188,89,179,71,100,8,126,69,185, + 60,235,74,108,30,15,128,152,84,156,156,109,249,199,77,230,183,94,3,119, + 240,42,89,154,109,168,153,112,102,216,105,155,130,27,209,38,81,184,10,78, + 182,56,87,219,76,38,132,28,29,250,188,183,105,21,42,228,190,88,19,164, + 107,245,223,35,68,121,254,69,193,145,172,149,194,100,236,222,154,66,119,232, + 208,225,175,6,39,38,184,87,255,130,33,10,11,8,177,129,148,7,16,98, + 3,66,158,128,16,27,140,162,242,142,122,253,154,106,205,85,108,9,8,137, + 245,104,156,251,115,77,42,84,215,121,220,191,129,156,151,170,112,132,57,2, + 92,182,121,30,18,229,218,100,82,186,40,39,184,129,201,169,171,240,243,129, + 26,245,66,175,67,146,5,250,100,140,229,138,129,157,58,64,32,174,65,204, + 117,24,145,140,109,87,145,132,19,229,158,140,68,101,122,183,88,81,240,151, + 202,210,1,34,67,240,253,30,200,53,99,189,47,221,148,116,71,135,104,111, + 0,244,138,176,243,227,22,83,229,54,29,67,229,198,216,13,14,234,55,195, + 138,100,45,45,169,152,114,4,118,163,186,156,89,207,238,87,19,95,194,9, + 66,38,17,107,197,197,254,114,108,151,117,93,151,227,215,214,54,92,58,239, + 199,64,56,87,125,53,35,129,98,203,85,237,220,146,34,74,57,200,146,162, + 88,13,236,241,196,65,2,185,20,152,220,138,224,239,31,130,78,23,170,198, + 111,146,97,232,189,161,72,74,38,200,131,158,238,100,18,2,24,99,60,148, + 8,214,170,95,165,135,67,204,57,67,191,216,175,40,56,21,162,76,225,230, + 99,93,147,137,193,81,225,111,55,15,87,37,186,166,121,5,152,227,218,53, + 192,235,47,145,22,2,9,60,100,155,5,24,221,98,179,37,8,135,59,144, + 71,76,38,239,208,161,195,195,131,19,19,220,193,234,238,203,0,234,41,124, + 149,101,149,46,255,174,187,209,224,120,147,137,41,6,47,151,89,110,34,164, + 219,39,236,223,171,213,26,125,54,182,121,192,42,170,219,206,253,13,252,209, + 28,68,142,149,114,35,115,140,38,135,64,156,170,89,109,58,207,37,231,229, + 229,169,27,77,26,238,201,88,169,9,73,146,70,155,46,171,198,156,92,156, + 85,85,53,5,199,230,75,136,156,29,89,216,237,66,38,153,10,65,222,54, + 13,151,69,99,93,178,86,117,114,230,248,67,38,117,239,202,131,214,125,184, + 38,21,251,218,160,80,100,122,68,251,49,131,144,73,200,153,238,214,162,207, + 213,157,142,64,72,130,40,58,218,52,179,195,212,190,61,173,248,218,113,180, + 250,63,46,68,121,247,16,184,121,128,82,15,27,2,87,16,103,18,105,194, + 173,171,211,96,187,42,236,48,212,14,29,58,60,188,56,49,193,205,111,115, + 27,114,116,65,72,82,201,127,185,197,188,6,121,91,87,253,99,111,64,234, + 169,221,205,161,140,6,49,6,67,109,128,216,46,64,250,220,54,81,110,34, + 1,149,55,225,135,202,209,215,103,186,67,190,238,138,207,216,18,108,92,84, + 218,100,209,172,0,17,135,40,102,163,198,214,220,73,1,70,41,21,91,94, + 201,113,1,168,132,21,43,196,51,175,26,73,2,78,44,209,137,107,66,229, + 233,28,5,71,22,218,176,82,191,68,215,61,20,73,4,244,90,154,83,91, + 131,11,44,97,155,171,35,190,150,67,190,78,212,118,29,210,21,57,3,18, + 169,136,44,18,186,199,72,217,64,90,92,171,58,52,233,50,7,189,94,157, + 104,46,230,37,209,26,184,195,85,227,68,93,187,212,182,22,43,79,202,253, + 252,132,55,65,18,207,91,66,147,71,171,255,186,139,242,100,145,130,114,31, + 60,173,110,175,109,178,64,231,164,236,208,225,225,197,137,9,110,239,218,13, + 128,132,78,135,137,102,169,128,65,189,123,201,253,247,155,172,207,3,83,40, + 180,229,127,180,147,67,110,155,106,164,173,23,229,206,232,80,185,37,39,183, + 224,47,230,224,111,49,213,11,82,46,145,79,115,101,131,95,82,21,82,220, + 163,173,131,77,129,210,221,40,199,180,61,31,55,175,253,91,3,89,192,170, + 62,163,174,136,12,45,241,25,66,60,78,201,21,175,8,224,170,222,222,218, + 205,15,42,66,36,107,9,36,106,95,182,251,74,172,66,170,38,63,103,72, + 205,64,238,147,10,145,25,210,150,115,130,197,183,122,96,251,138,216,204,49, + 202,153,218,166,10,183,18,144,171,18,69,18,129,44,132,42,26,215,35,134, + 128,50,143,38,99,191,210,108,25,80,249,209,29,103,84,17,45,230,8,163, + 73,229,251,117,191,184,247,90,56,179,143,242,65,225,230,205,242,97,197,20, + 125,31,133,174,224,187,67,135,135,19,39,38,184,59,119,6,104,15,23,57, + 5,217,241,28,233,58,86,189,7,197,194,214,204,181,225,36,117,112,198,100, + 178,93,46,49,218,201,225,173,215,149,247,235,161,208,172,255,77,128,45,108, + 251,41,28,206,64,47,191,1,240,113,35,84,40,114,6,28,8,200,165,104, + 180,230,98,7,176,164,64,22,170,247,35,59,40,137,74,46,133,202,151,173, + 203,101,42,208,246,125,217,34,48,200,66,189,95,207,193,25,178,170,96,38, + 65,147,12,158,119,196,13,86,47,111,194,169,99,0,32,35,164,223,96,21, + 66,84,203,74,75,140,174,83,50,100,18,50,13,33,46,15,49,189,94,85, + 138,100,33,32,174,72,171,240,228,30,7,219,23,240,18,103,185,154,11,115, + 28,214,21,79,121,17,4,157,216,48,229,156,179,35,58,153,180,227,94,92, + 148,247,6,221,195,82,92,5,0,120,253,4,158,174,233,204,10,1,240,210, + 68,99,242,112,93,193,119,135,14,15,39,78,124,71,248,250,87,155,55,31, + 247,105,219,24,0,86,89,102,167,7,152,1,167,15,6,167,147,133,49,153, + 12,36,182,124,129,104,80,104,167,222,93,6,100,178,37,162,221,21,196,28, + 72,255,132,130,191,197,128,152,34,100,18,196,177,28,146,133,104,157,26,32, + 151,66,41,29,93,10,32,111,232,208,162,81,40,51,180,117,161,42,67,141, + 80,74,201,214,167,25,211,74,76,64,174,168,95,237,236,55,103,29,36,213, + 220,159,119,89,64,206,29,194,112,84,163,171,222,112,32,80,28,232,155,240, + 181,45,250,127,150,55,142,77,228,76,41,175,27,82,25,73,106,164,46,222, + 152,85,75,31,180,2,36,11,64,166,33,98,145,170,235,114,163,122,44,68, + 164,149,34,240,76,12,0,186,116,66,148,0,145,234,164,169,152,99,187,92, + 90,146,107,47,19,56,170,22,110,220,250,122,21,247,174,6,151,107,181,159, + 98,27,162,200,243,114,218,56,27,33,229,237,145,138,14,29,58,60,92,56, + 49,193,221,216,51,33,156,26,121,104,23,155,223,39,72,215,138,208,238,229, + 230,115,239,117,112,213,253,121,178,116,62,196,27,15,81,79,17,131,159,102, + 173,185,62,64,117,233,136,104,0,185,152,162,119,221,3,253,202,101,171,224, + 228,12,136,215,164,162,102,234,189,39,43,164,103,66,125,115,61,15,46,86, + 115,216,138,53,51,195,162,219,209,242,122,177,229,214,125,217,128,62,4,83, + 190,128,152,66,172,40,188,90,119,13,163,22,121,225,233,127,41,200,53,97, + 13,34,197,43,2,228,245,178,174,206,44,79,22,2,222,173,184,84,151,206, + 108,59,190,222,194,251,10,87,138,109,69,43,14,77,118,131,3,113,138,84, + 27,76,112,181,60,55,83,107,103,74,14,204,3,80,219,212,245,221,176,84, + 70,38,23,119,183,94,148,117,28,55,240,84,225,168,70,203,205,232,1,161, + 213,15,168,40,10,248,69,236,252,93,45,248,238,194,148,29,58,60,124,56, + 49,193,21,217,157,99,223,223,230,57,214,133,14,93,181,52,88,190,127,28, + 99,24,216,16,12,8,16,57,245,90,174,107,19,0,200,235,213,240,165,33, + 45,239,86,172,66,118,219,150,240,233,28,202,160,17,183,95,38,178,16,128, + 41,249,115,59,155,204,36,144,29,29,142,37,107,149,3,51,4,96,66,124, + 75,30,90,194,180,219,55,168,133,27,205,251,118,246,170,203,193,115,180,43, + 59,0,228,170,132,216,208,35,197,12,89,40,117,105,140,52,9,39,96,7, + 74,165,22,73,4,254,118,169,160,138,36,82,203,58,51,231,200,90,229,224, + 12,36,73,203,89,122,199,76,97,216,79,180,153,103,32,193,161,70,59,180, + 25,148,30,12,238,73,71,45,175,183,93,76,192,79,222,70,145,231,21,39, + 37,0,164,162,204,35,82,122,119,215,107,135,14,29,254,253,226,196,4,87, + 58,37,3,72,25,150,117,74,100,140,56,219,218,94,148,132,14,173,130,51, + 53,74,109,133,222,247,110,60,81,235,14,153,186,25,21,228,52,60,185,66, + 186,90,67,36,51,189,159,49,72,16,193,239,121,0,18,68,193,105,0,0, + 123,13,96,163,67,213,24,88,134,32,227,25,48,1,250,223,202,145,127,54, + 3,146,9,200,180,220,147,152,51,120,151,53,9,57,55,103,97,72,200,33, + 14,186,71,237,220,53,246,135,2,126,190,6,146,178,8,187,82,151,150,40, + 34,224,58,28,25,139,20,68,134,24,254,102,80,201,219,201,49,173,236,71, + 108,168,173,89,19,95,59,13,92,5,100,160,182,87,172,171,165,1,254,134, + 163,40,152,61,143,25,70,224,251,61,208,47,8,208,129,168,220,195,229,62, + 81,199,184,47,33,199,0,174,150,19,201,35,26,64,126,118,7,197,55,35, + 120,97,12,47,137,43,4,102,150,157,200,16,242,101,9,94,120,240,215,91, + 20,183,34,213,215,50,236,33,101,18,59,127,70,65,72,162,66,200,180,175, + 77,38,181,246,91,98,6,108,8,24,102,182,84,160,74,138,102,110,91,251, + 195,142,155,131,115,29,148,4,129,157,11,87,226,248,112,121,156,22,214,196, + 148,50,85,142,194,188,163,11,187,59,5,215,161,195,195,135,119,32,43,159, + 182,206,234,218,234,22,70,82,172,91,214,121,176,253,185,240,228,1,10,178, + 83,81,111,199,58,239,220,198,192,51,89,201,37,225,218,182,145,115,19,43, + 10,190,241,32,73,98,29,133,228,106,77,29,205,161,156,133,49,5,223,239, + 85,136,143,121,71,187,239,48,83,185,174,144,73,72,146,128,206,142,169,255, + 114,78,41,225,4,114,174,20,20,73,81,170,56,115,60,45,167,63,89,206, + 85,113,249,13,217,92,126,94,93,175,72,34,171,46,139,3,1,188,113,8, + 127,189,181,231,101,76,36,84,135,49,197,53,1,153,100,149,162,115,191,216, + 218,176,109,192,155,225,236,52,219,209,191,221,195,131,205,17,197,219,110,39, + 147,147,225,94,90,119,117,232,208,225,81,197,3,18,220,241,117,70,219,60, + 111,109,132,251,78,244,162,116,225,201,106,213,185,148,33,100,90,62,161,199, + 105,73,50,124,191,135,120,127,167,145,87,75,110,50,20,175,40,87,96,255, + 118,174,242,106,97,15,228,21,149,191,74,56,65,202,36,240,90,207,26,65, + 92,34,51,97,61,118,160,94,231,133,190,180,181,208,97,185,195,90,187,175, + 152,42,130,112,150,175,24,76,236,122,106,88,169,188,172,73,7,90,197,57, + 219,47,214,172,220,63,0,182,46,32,103,0,127,73,162,216,103,200,253,161, + 34,198,125,167,180,96,95,90,99,140,191,191,181,234,82,126,94,128,124,85, + 27,86,110,56,125,47,231,106,187,100,95,15,92,189,238,41,37,104,247,239, + 217,176,173,63,243,177,191,222,135,237,64,226,23,206,133,105,255,220,141,209, + 68,29,92,123,99,228,122,39,147,187,231,224,142,67,140,242,1,237,152,239, + 34,95,66,230,205,255,54,93,136,178,67,135,135,15,39,38,184,56,219,58, + 127,165,173,191,247,125,191,85,193,221,95,47,202,227,73,180,32,42,252,24, + 235,156,81,143,110,148,130,19,110,129,182,186,97,61,121,75,221,16,205,224, + 78,187,141,36,66,255,118,174,220,131,11,245,55,230,74,161,136,57,179,117, + 97,99,104,183,228,43,45,196,51,87,237,183,228,82,168,176,100,237,189,198, + 113,175,25,216,13,142,226,182,122,0,224,27,69,16,197,154,217,28,157,9, + 5,146,117,85,117,17,25,170,208,169,38,82,146,2,200,34,187,94,27,248, + 181,41,210,111,48,208,69,203,16,213,186,234,211,197,225,100,27,129,254,37, + 1,110,233,109,20,94,165,239,101,81,40,35,13,185,42,213,53,186,90,110, + 130,21,5,232,30,5,145,1,216,1,192,94,211,246,123,25,194,79,51,180, + 130,150,241,225,21,119,231,23,181,17,206,73,250,153,222,13,41,218,200,45, + 224,55,109,169,64,206,213,195,146,87,11,87,118,77,151,59,116,120,248,112, + 98,130,235,143,253,218,141,199,244,9,84,144,105,108,195,148,247,130,163,115, + 112,71,223,200,242,44,181,46,74,19,162,204,132,234,141,72,162,220,153,232, + 13,44,252,21,216,62,7,59,168,118,190,183,245,96,115,213,166,170,222,219, + 81,206,37,196,21,89,214,184,189,44,45,129,85,106,201,230,0,191,162,28, + 150,108,93,128,121,166,7,101,249,126,125,29,249,58,177,205,137,141,242,3, + 74,7,164,69,82,42,66,185,79,32,231,68,149,38,108,104,99,57,0,240, + 10,94,238,95,191,206,94,58,68,255,91,121,99,249,34,137,212,249,36,176, + 225,78,177,81,197,235,114,143,131,188,81,64,108,40,184,51,164,173,72,52, + 153,102,145,90,239,10,192,95,30,219,115,51,117,121,241,90,41,58,243,128, + 96,242,105,25,120,163,208,91,45,168,226,195,131,19,68,30,79,94,7,215, + 174,214,162,160,60,95,147,131,115,97,92,148,29,58,116,120,120,113,114,130, + 243,239,222,73,93,166,237,51,224,78,222,66,9,48,132,39,7,237,46,206, + 30,45,107,148,92,165,56,206,119,240,250,55,68,101,76,12,89,0,72,148, + 82,43,194,8,98,69,33,247,9,188,36,6,89,75,176,162,128,87,112,101, + 32,129,10,111,210,151,181,233,196,33,70,64,133,248,200,85,69,134,72,156, + 176,33,208,44,170,134,38,129,121,181,253,21,230,154,156,138,66,253,174,143, + 163,17,230,188,205,27,74,205,152,90,200,90,90,226,163,11,9,230,41,167, + 37,121,69,64,92,213,3,98,227,82,125,251,235,45,216,186,153,39,100,251, + 2,252,55,56,196,203,106,29,215,149,233,23,219,210,213,153,2,228,154,128, + 247,242,161,58,239,219,229,131,74,255,182,182,208,95,145,240,49,177,83,39, + 250,125,90,169,131,171,99,83,191,92,199,76,8,176,139,220,83,29,220,81, + 104,119,79,186,40,242,28,69,118,116,24,210,191,135,255,15,29,58,116,248, + 247,139,19,19,220,187,223,117,90,21,110,31,97,0,136,19,15,36,136,108, + 205,83,125,140,73,61,76,121,116,14,174,157,12,201,230,204,49,71,151,66, + 198,126,229,111,3,57,43,235,213,92,120,183,226,118,91,126,10,53,49,59, + 166,160,87,84,24,142,21,69,165,144,187,72,34,21,114,220,23,160,123,20, + 133,208,121,199,250,125,121,94,85,103,98,206,108,215,16,113,77,148,68,232, + 168,62,57,108,246,183,44,156,16,41,243,68,53,223,87,49,184,148,231,195, + 175,82,200,185,108,40,187,138,155,50,40,215,147,95,5,232,23,132,93,135, + 46,20,225,179,117,97,247,227,231,42,252,76,110,200,178,254,205,244,197,212, + 234,176,216,114,164,223,40,137,161,31,228,141,214,109,15,10,147,231,189,191, + 28,92,75,37,190,254,192,76,207,83,211,41,39,211,253,38,9,45,151,175, + 135,40,59,116,232,240,240,225,196,4,183,51,125,23,194,112,167,246,106,149, + 180,142,204,181,224,126,84,220,201,114,45,36,50,33,164,118,226,36,50,176, + 53,101,174,234,112,187,134,112,207,83,228,49,87,57,50,126,165,106,204,112, + 55,237,21,28,98,69,109,159,198,251,53,226,137,35,220,143,0,74,187,127, + 212,87,249,184,171,178,146,231,163,131,230,141,221,144,158,249,151,46,84,72, + 81,6,106,121,233,250,41,156,240,164,93,255,101,10,242,21,9,186,144,200, + 7,106,95,220,116,243,104,24,95,20,129,2,168,212,255,85,90,118,105,108, + 83,31,81,116,124,13,101,3,45,15,81,166,160,31,184,31,167,238,221,26, + 122,59,81,6,49,169,140,99,82,175,149,31,106,61,68,217,229,224,58,116, + 120,248,112,98,130,123,254,185,57,226,100,160,194,71,50,209,55,161,106,207, + 200,12,188,82,112,109,84,220,59,97,50,89,243,0,145,119,179,116,80,234, + 252,141,202,193,5,240,115,15,126,111,3,119,30,28,160,114,69,128,154,117, + 70,151,57,200,219,128,215,215,55,200,57,80,132,202,96,194,135,30,216,186, + 128,24,19,144,27,18,69,242,44,232,31,200,146,248,60,15,8,21,225,209, + 36,3,38,0,253,34,71,254,199,125,120,253,181,202,89,233,251,101,238,245, + 81,220,138,128,137,46,27,72,212,246,229,92,66,94,85,199,67,255,82,27, + 76,82,117,200,166,151,165,27,222,164,177,178,234,139,127,30,192,123,179,176, + 196,86,49,160,56,206,76,94,80,171,240,232,64,128,198,91,20,98,136,194, + 99,118,189,6,177,105,66,244,55,28,36,133,85,111,128,14,83,234,115,18, + 27,10,94,80,91,135,231,121,28,8,1,143,170,80,41,38,250,122,254,234, + 51,232,93,247,144,99,174,103,6,46,144,136,243,199,126,226,71,163,60,208, + 170,201,73,191,155,209,74,164,192,60,68,73,164,149,8,65,57,149,162,77, + 197,41,140,134,41,60,58,134,207,122,96,1,85,147,189,53,145,134,97,179, + 136,191,11,81,118,232,240,240,225,228,101,2,228,177,218,223,97,249,164,125, + 212,208,201,35,94,7,238,215,100,18,218,66,111,23,12,213,142,41,245,86, + 93,195,27,5,252,253,67,240,141,135,128,147,74,167,126,227,156,52,170,131, + 237,23,149,123,31,251,210,53,144,87,4,200,66,155,72,76,119,121,19,166, + 212,173,185,252,181,202,79,177,117,97,67,149,254,122,11,239,125,49,200,13, + 85,8,141,16,54,191,231,239,31,54,59,165,36,78,40,179,126,201,18,128, + 220,82,231,78,106,151,192,252,205,60,1,17,245,43,225,72,67,86,128,82, + 155,245,117,237,121,234,101,100,80,254,208,129,42,14,167,11,89,217,135,123, + 76,245,99,53,199,223,219,127,91,181,0,3,116,14,238,65,220,143,193,17, + 191,151,221,114,204,119,172,215,43,236,131,148,251,64,37,145,56,100,215,252, + 206,25,242,219,221,29,216,215,204,216,28,211,143,50,73,226,206,69,217,161, + 195,35,128,19,19,220,7,63,26,194,60,81,155,38,202,239,76,51,229,187, + 65,133,146,214,92,55,195,37,245,48,233,209,88,63,233,65,222,80,142,197, + 148,201,74,206,205,212,148,217,240,155,123,239,75,128,244,139,43,213,233,35, + 40,67,134,230,62,105,76,26,174,178,51,40,182,67,200,93,130,226,197,93, + 184,247,85,238,121,202,177,184,162,192,117,15,56,16,240,10,142,220,31,90, + 130,52,2,195,117,69,138,13,5,93,200,138,137,165,13,126,190,174,228,212, + 220,215,219,20,155,129,33,181,70,227,15,148,249,62,151,228,90,91,133,105, + 136,57,67,241,245,90,231,147,7,50,24,149,235,186,33,74,160,105,50,49, + 163,146,36,82,71,201,181,60,45,0,112,187,154,4,33,209,255,170,70,207, + 38,76,41,68,136,16,5,124,166,182,219,185,40,59,116,120,248,113,98,130, + 59,189,3,16,204,0,153,212,198,224,232,155,144,76,236,112,203,7,67,253, + 134,88,109,213,117,111,235,40,12,111,20,214,185,88,247,220,217,250,51,148, + 157,248,173,89,100,14,213,129,127,14,27,222,115,91,99,1,42,68,39,194, + 114,122,181,185,119,210,120,11,249,97,10,241,194,68,41,55,77,134,70,1, + 146,133,114,118,242,183,3,144,180,52,110,0,101,206,203,37,20,243,227,146, + 148,37,165,35,224,190,103,243,105,14,177,153,80,99,235,54,28,162,115,243, + 119,102,217,187,17,109,91,30,238,228,40,119,22,103,237,173,177,234,33,202, + 163,195,225,237,253,39,179,36,168,76,142,7,96,67,148,185,119,116,127,209, + 46,68,217,161,195,195,135,19,19,220,185,243,20,66,58,33,193,182,240,163, + 76,236,212,111,41,35,132,65,175,185,140,198,209,46,202,227,239,160,38,7, + 55,240,170,206,7,213,45,3,104,200,144,218,188,51,115,163,247,60,222,158, + 142,209,166,9,99,162,168,119,239,175,71,187,152,59,24,179,23,67,140,9, + 240,227,4,193,185,59,144,79,18,27,126,228,158,87,146,196,76,17,129,205, + 105,105,176,117,129,98,91,237,4,35,3,168,126,145,168,18,27,73,171,100, + 227,254,110,72,153,23,20,236,162,176,235,3,58,199,102,76,42,161,90,214, + 18,123,219,57,58,132,151,251,205,46,53,238,181,168,16,190,131,168,229,225, + 100,252,128,157,64,164,88,32,232,137,74,24,92,245,160,172,238,75,125,207, + 234,164,219,60,158,243,231,2,196,201,109,235,164,4,0,94,228,200,121,1, + 46,250,157,139,178,67,135,71,0,39,39,184,119,123,184,112,110,212,124,227, + 136,60,27,33,241,9,11,113,79,30,210,106,203,235,145,181,54,118,232,188, + 87,37,151,100,222,55,214,252,94,172,12,40,147,210,68,97,126,55,198,11, + 163,164,184,231,193,11,227,70,104,143,61,39,32,159,167,64,56,199,246,189, + 190,206,133,105,18,212,147,8,196,28,40,110,69,149,99,49,97,80,175,191, + 110,85,75,109,202,201,212,191,185,33,198,58,9,201,15,83,69,180,238,118, + 244,121,33,4,200,132,148,166,27,7,133,199,170,4,23,162,117,185,182,208, + 166,23,86,9,165,216,54,43,185,23,119,109,86,124,252,140,63,66,199,141, + 239,87,149,220,218,190,151,37,217,73,36,246,7,8,113,106,244,46,0,106, + 240,108,212,171,30,239,160,47,59,23,101,135,14,143,0,78,94,38,48,164, + 248,240,115,31,187,167,101,221,113,57,109,42,174,236,246,238,194,252,125,119, + 83,66,192,142,40,250,118,38,122,47,124,165,244,120,225,41,99,135,70,133, + 0,156,186,54,59,6,199,129,237,230,17,2,98,76,192,135,158,85,128,134, + 180,228,144,88,194,240,55,28,252,211,20,108,55,67,194,9,194,39,56,100, + 80,26,48,242,97,95,77,12,152,53,11,193,1,39,215,7,69,68,150,100, + 234,8,107,33,67,67,88,238,177,235,227,20,207,1,184,232,16,187,38,36, + 185,75,32,119,137,85,160,197,118,104,91,113,33,4,188,33,183,185,67,151, + 228,234,196,87,20,12,220,243,64,39,220,18,155,155,131,139,194,2,160,253, + 214,243,61,30,213,41,2,81,175,186,13,163,224,142,67,213,61,233,194,85, + 125,33,206,76,206,98,250,248,5,0,64,154,112,196,153,83,228,206,222,233, + 17,62,29,58,116,248,78,225,196,4,199,24,193,165,167,159,168,24,75,236, + 56,156,154,217,36,73,7,246,230,147,180,212,198,213,109,220,122,45,253,239, + 189,41,56,146,168,167,108,211,201,196,109,182,220,216,223,13,85,215,230,22, + 43,87,118,127,17,200,159,117,110,160,161,34,55,17,246,212,141,60,81,74, + 71,132,61,21,222,11,171,5,217,238,239,244,123,78,169,179,96,18,242,34, + 65,33,134,144,183,67,48,175,176,4,96,172,253,134,156,10,143,193,243,56, + 200,68,183,186,218,56,97,84,231,152,12,242,221,62,248,174,103,67,141,124, + 232,149,68,171,193,60,1,49,38,160,223,115,10,228,201,234,254,42,164,169, + 127,247,232,26,254,134,219,237,229,67,117,61,232,68,191,166,243,131,230,152, + 242,221,62,48,129,61,102,139,9,224,61,238,52,190,78,60,76,71,39,85, + 59,71,231,224,218,20,156,125,175,242,225,154,99,105,255,126,133,129,122,224, + 57,127,241,18,252,94,185,63,202,148,153,233,168,94,148,93,14,174,67,135, + 135,15,247,77,112,66,8,8,161,110,164,47,188,24,66,202,8,132,196,150, + 212,36,110,65,226,241,35,215,63,89,45,156,94,23,198,185,25,86,90,117, + 185,229,1,166,23,101,217,108,89,73,144,97,95,183,169,154,112,213,29,95, + 215,195,217,124,212,4,149,78,32,222,223,207,192,158,19,150,124,88,81,168, + 122,55,93,227,69,39,28,236,31,101,74,193,184,247,207,73,169,88,228,5, + 64,94,84,27,24,3,32,159,162,96,239,213,4,60,36,138,16,22,2,244, + 101,161,218,95,133,154,236,178,8,242,89,2,241,190,30,138,237,80,169,173, + 137,218,182,169,175,227,67,15,98,67,33,54,20,222,255,153,129,94,228,54, + 127,102,72,8,33,32,207,11,120,67,110,243,111,244,233,53,248,46,45,201, + 205,57,22,76,244,239,218,96,83,188,219,195,230,63,233,129,254,10,64,254, + 94,6,57,36,54,132,75,39,92,185,70,135,30,54,63,209,3,251,71,25, + 228,147,4,242,118,88,205,189,153,218,66,0,82,30,0,8,48,91,190,115, + 100,208,86,228,109,204,37,234,71,89,81,171,229,1,6,215,236,111,132,40, + 133,31,167,251,56,127,238,111,99,119,231,50,0,221,205,68,150,211,198,143, + 114,81,214,231,193,117,243,225,58,116,248,171,199,125,19,28,165,186,51,6, + 205,112,238,60,197,233,211,61,235,162,44,29,108,77,213,117,183,252,91,123, + 29,92,181,72,219,32,10,138,74,171,46,174,61,145,194,113,143,144,40,119, + 234,224,18,176,133,163,200,18,64,206,106,225,44,29,138,179,235,143,40,240, + 252,41,200,199,96,139,187,1,29,86,212,132,64,47,80,21,186,171,227,162, + 14,249,13,9,216,160,214,231,113,226,228,174,76,24,209,29,187,19,40,231, + 37,121,86,253,109,251,70,134,78,109,92,88,154,89,232,211,2,100,68,33, + 47,52,175,175,81,146,182,3,201,69,0,97,10,121,145,216,237,200,93,82, + 30,135,19,214,148,231,5,228,127,41,17,252,23,83,144,103,203,107,229,170, + 83,230,21,160,19,142,224,7,118,176,184,80,174,236,230,220,204,113,249,206, + 198,75,3,16,112,127,57,214,234,178,185,95,216,54,93,110,24,220,152,75, + 212,79,253,123,229,134,41,149,28,151,72,32,229,14,8,89,129,32,196,133, + 11,192,206,153,50,60,28,120,71,127,119,25,235,148,91,135,14,15,43,78, + 20,162,52,36,119,238,221,30,222,247,193,187,27,77,234,97,204,122,95,74, + 160,205,69,169,99,129,13,28,173,252,40,173,38,158,212,68,111,179,45,13, + 173,212,228,149,230,91,6,94,18,131,159,6,228,103,40,228,51,164,82,18, + 224,23,78,7,141,11,125,200,103,72,67,193,181,254,14,128,13,10,75,92, + 152,64,229,223,218,206,99,32,32,255,35,102,45,246,114,172,136,133,121,186, + 192,220,168,77,0,242,199,78,3,103,25,196,115,40,71,225,76,202,125,123, + 97,172,122,72,122,2,226,57,53,117,220,251,48,5,30,71,53,87,231,40, + 79,132,0,253,233,20,228,39,25,252,75,11,53,169,188,229,124,228,144,96, + 251,189,62,200,39,8,166,88,86,222,19,115,134,237,247,250,16,159,154,32, + 59,111,156,180,101,237,100,137,123,80,242,246,251,82,107,5,151,123,86,193, + 185,117,112,213,105,222,174,121,196,13,79,166,0,38,149,218,56,41,119,16, + 6,67,60,113,174,74,90,194,105,209,197,124,19,154,85,203,112,158,235,127, + 171,15,76,221,124,184,14,29,254,234,241,64,3,79,39,99,134,239,249,240, + 19,0,102,149,90,56,19,178,116,67,151,229,123,166,161,173,123,19,106,51, + 153,52,201,77,234,27,83,156,150,137,254,128,221,1,195,2,36,80,173,186, + 84,14,238,152,155,166,105,195,117,69,201,166,124,216,111,230,161,230,170,24, + 156,62,189,134,120,129,150,185,176,176,135,220,235,219,27,61,9,18,200,231, + 149,233,194,53,166,88,5,51,209,185,62,131,72,32,127,207,174,53,171,80, + 191,84,127,114,72,80,108,135,16,27,10,249,81,2,242,76,121,147,53,203, + 203,33,177,202,208,92,30,254,161,5,16,5,240,94,96,160,167,5,200,89, + 231,186,57,68,151,15,24,228,69,162,166,146,159,47,144,63,211,47,213,216, + 4,32,187,210,30,183,124,146,128,125,154,129,237,102,136,133,250,156,104,77, + 229,153,243,13,190,95,192,59,187,86,15,4,23,40,228,121,213,52,154,78, + 56,130,247,115,144,79,16,244,62,80,173,58,60,174,71,233,241,104,42,184, + 227,224,62,52,153,80,101,189,61,151,9,77,154,223,71,253,247,225,210,211, + 231,42,249,55,131,40,172,190,22,134,161,85,112,140,61,224,236,224,14,29, + 58,188,227,120,160,255,149,140,49,188,240,169,11,56,117,74,145,154,148,137, + 34,171,99,90,114,181,161,221,100,98,224,18,161,83,196,171,115,112,41,111, + 155,42,112,247,176,23,185,166,58,242,123,97,172,194,116,218,72,82,33,186, + 105,12,250,34,1,189,168,70,216,120,97,92,33,175,88,164,16,31,30,65, + 62,73,212,235,250,230,47,199,84,145,198,147,104,132,40,217,71,180,81,195, + 93,86,111,207,116,226,23,47,80,96,170,91,134,121,162,204,169,57,132,5, + 0,228,195,18,222,135,41,72,144,0,231,11,69,76,69,161,114,94,122,89, + 147,255,98,207,105,229,6,0,145,0,123,44,109,30,131,222,7,249,56,0, + 173,186,66,38,65,100,237,225,99,2,224,34,64,158,85,121,197,88,164,234, + 60,79,59,219,185,8,176,231,9,216,184,128,124,126,90,89,221,235,187,174, + 209,242,179,154,37,71,228,173,238,243,251,4,184,228,214,102,94,50,106,46, + 118,150,15,1,121,6,239,126,242,2,158,121,175,58,14,83,3,231,249,190, + 109,211,117,20,58,197,214,161,195,195,135,19,19,28,33,33,56,231,248,224, + 71,56,206,63,241,20,128,230,132,128,227,136,206,53,153,180,43,56,131,54, + 53,150,220,101,92,78,221,69,89,85,53,34,236,129,220,208,141,140,93,115, + 133,187,190,158,27,39,46,81,136,23,168,34,193,26,82,38,225,125,104,165, + 114,91,14,232,142,50,133,240,221,242,242,18,25,98,1,128,238,44,42,203, + 87,70,244,64,149,31,144,79,157,82,182,153,185,83,239,214,82,182,176,253, + 94,95,17,27,73,84,24,241,34,148,165,63,140,45,105,121,137,170,205,147, + 23,40,248,105,216,193,173,116,167,12,59,82,159,3,33,129,28,83,108,223, + 235,67,252,48,3,49,70,145,184,74,126,230,199,11,99,20,79,83,120,167, + 41,82,38,129,72,64,156,19,246,1,64,60,71,65,158,241,177,8,231,160, + 211,5,114,204,209,15,114,68,189,126,109,92,78,249,249,78,195,187,145,196, + 253,27,147,170,225,73,67,110,169,243,83,170,184,48,56,135,31,248,248,123, + 209,143,148,99,178,218,161,167,132,231,117,100,214,161,195,163,128,19,19,156, + 121,98,157,76,250,248,91,63,245,33,0,101,221,25,33,161,37,183,123,85, + 115,237,10,174,45,103,163,166,45,223,92,78,112,134,170,155,233,161,24,98, + 185,33,21,147,73,143,238,32,207,10,132,58,103,178,240,87,170,23,229,5, + 170,110,194,245,221,105,226,227,238,147,122,172,106,216,232,139,77,35,134,28, + 83,4,58,220,39,158,211,151,113,94,173,249,146,109,51,56,207,23,32,187, + 90,193,132,85,210,244,134,28,236,57,1,250,129,3,101,155,153,148,93,72, + 236,190,77,174,44,4,130,31,216,41,243,99,0,228,83,158,37,106,234,115, + 171,36,1,64,94,2,216,110,25,26,44,158,118,62,122,125,28,116,71,32, + 120,63,7,253,193,42,233,74,162,203,63,158,84,251,32,187,18,114,76,193, + 158,87,235,217,211,156,170,191,229,144,64,94,36,32,19,93,12,63,224,224, + 223,21,96,155,170,112,30,9,218,137,67,220,53,114,89,253,46,248,249,221, + 106,210,146,218,239,134,220,140,227,183,218,253,230,169,243,79,225,210,211,231, + 108,255,73,66,98,4,193,221,73,181,11,79,118,232,240,112,226,129,254,103, + 82,154,97,232,47,241,61,31,25,217,58,183,54,3,137,148,73,131,232,92, + 181,119,244,108,184,4,168,117,130,7,128,56,245,240,174,119,125,27,119,68, + 132,128,221,193,41,186,198,142,215,34,113,0,36,121,25,34,124,230,253,20, + 252,210,68,169,43,207,171,228,160,140,42,49,5,219,100,68,1,50,194,2, + 0,121,86,168,92,155,193,4,32,167,39,8,51,162,8,230,249,83,150,72, + 216,99,41,68,239,248,27,47,127,178,166,0,204,161,107,165,229,146,150,157, + 175,166,77,41,114,76,109,199,20,122,169,250,241,241,11,19,103,91,4,113, + 160,167,113,15,9,228,165,9,18,78,202,112,227,169,73,69,21,138,158,7, + 209,243,64,47,17,36,61,9,153,100,74,69,234,99,33,83,84,206,139,238, + 8,136,243,19,32,118,106,254,38,64,241,184,14,137,94,2,100,146,97,156, + 168,157,236,14,119,65,72,226,212,175,221,231,192,60,0,117,5,119,124,14, + 46,177,223,151,163,195,223,202,88,2,168,239,86,16,238,226,169,167,206,35, + 207,210,74,139,46,207,243,16,133,1,194,48,108,29,149,211,133,39,59,116, + 120,56,113,98,130,19,66,128,177,1,132,28,227,251,190,119,139,159,254,169, + 199,80,228,167,33,101,2,207,63,184,235,250,245,16,101,21,110,120,177,205, + 117,87,134,40,83,126,198,150,9,84,15,80,185,29,149,130,83,55,211,107, + 207,122,240,94,92,160,8,35,75,100,102,254,155,81,59,166,4,64,46,5, + 16,206,237,150,201,167,101,37,180,40,177,84,97,188,152,130,157,91,40,2, + 212,130,64,142,132,218,222,212,41,254,78,50,76,100,8,18,246,192,62,205, + 176,61,235,67,246,78,149,106,110,14,228,207,244,65,255,43,61,171,77,134, + 138,72,207,38,118,191,116,71,88,99,138,220,37,160,59,11,75,88,11,0, + 254,79,41,71,161,28,83,136,158,135,65,79,215,106,93,4,216,197,5,66, + 38,173,105,132,188,184,82,199,48,166,101,40,245,19,18,244,111,104,210,136, + 4,198,38,60,169,255,149,35,69,118,27,218,3,223,165,200,119,15,16,7, + 137,61,6,249,60,5,251,238,92,93,63,229,249,1,95,111,193,70,135,88, + 125,111,85,21,150,14,87,117,209,66,249,120,37,159,90,64,21,200,19,146, + 56,46,74,21,86,148,45,210,216,45,19,80,159,143,33,181,57,128,153,254, + 119,1,245,221,42,67,147,132,172,0,121,14,103,39,239,197,139,63,244,73, + 80,239,10,252,94,96,85,156,215,82,192,237,121,62,2,106,204,37,205,208, + 117,135,14,29,30,14,60,64,136,146,34,207,115,112,158,227,204,153,179,248, + 240,151,76,77,121,0,0,32,0,73,68,65,84,199,46,216,18,128,60,43, + 238,99,98,119,21,205,89,93,247,16,34,170,205,129,115,225,42,56,64,41, + 51,183,78,203,75,148,57,196,228,205,90,143,41,236,65,92,162,216,158,45, + 111,118,230,102,143,72,40,155,254,57,97,11,183,1,21,34,172,85,45,64, + 38,101,12,46,26,74,108,215,171,202,251,149,250,49,82,83,188,154,180,44, + 46,86,183,237,222,242,169,207,203,227,3,42,199,13,0,136,41,188,62,195, + 160,151,87,156,156,128,34,214,48,171,222,180,77,62,78,142,213,121,15,122, + 57,150,253,0,17,13,108,78,15,80,134,26,113,78,88,99,11,160,140,72, + 246,28,52,17,250,105,102,199,217,24,36,228,22,238,21,132,36,144,50,132, + 159,123,182,14,174,62,46,7,64,75,238,13,168,79,15,80,203,205,113,230, + 204,37,60,255,65,97,243,111,174,130,115,97,242,111,164,199,186,26,184,14, + 29,30,114,60,112,136,210,247,182,160,148,226,227,159,124,6,231,207,41,50, + 50,134,17,119,22,23,80,134,42,143,15,87,134,0,34,220,79,171,174,54, + 5,151,215,122,94,14,251,12,252,187,0,156,101,229,13,95,135,38,201,147, + 42,39,101,90,88,181,129,13,251,8,222,207,43,36,40,137,86,47,97,10, + 122,137,84,67,126,35,31,100,138,50,220,168,255,149,36,81,150,122,77,20, + 110,30,142,60,169,142,15,80,68,67,118,165,234,10,82,77,21,169,124,225, + 115,180,52,152,24,132,218,25,169,183,105,8,49,124,130,171,144,43,180,43, + 50,236,1,145,84,202,77,47,235,18,34,128,210,92,18,211,10,49,27,236, + 156,117,94,211,97,74,18,246,64,47,17,120,223,173,39,48,108,60,240,108, + 96,75,37,8,49,57,176,106,159,208,131,85,45,92,185,33,152,176,163,59, + 129,72,25,234,109,149,157,76,146,68,61,44,40,71,238,188,214,185,164,62, + 247,173,12,95,74,185,3,130,16,239,251,174,143,225,236,185,119,97,27,151, + 15,29,65,16,192,243,60,132,208,243,254,196,73,122,104,118,232,208,225,175, + 10,15,68,112,188,216,194,243,79,33,73,50,156,123,183,135,79,125,226,44, + 164,124,27,148,84,9,167,78,116,109,184,223,137,222,117,108,132,42,244,54, + 173,186,170,6,4,61,165,25,2,100,34,17,13,165,170,103,211,40,158,166, + 240,94,96,40,62,202,26,42,46,225,68,17,89,144,0,83,98,243,96,246, + 184,181,131,145,94,104,42,60,67,42,0,20,97,104,146,99,131,162,236,38, + 114,28,194,178,252,160,162,180,38,0,121,142,84,115,117,71,64,25,66,0, + 62,41,11,242,37,73,32,147,204,154,96,200,82,29,39,153,182,109,65,47, + 163,207,69,96,2,190,75,149,58,141,137,34,64,146,170,250,58,168,238,46, + 69,189,246,159,55,155,1,148,93,102,34,48,250,4,66,89,182,119,227,131, + 9,230,156,33,10,218,115,108,134,220,220,78,38,65,79,64,200,69,141,220, + 98,148,79,7,115,152,97,185,106,27,43,155,127,59,51,57,143,31,120,225, + 41,108,214,3,180,129,132,3,132,97,136,65,95,218,240,164,81,111,93,15, + 202,14,29,30,94,156,152,224,242,60,7,115,72,226,244,169,30,254,238,127, + 243,67,56,127,238,44,60,255,0,164,165,247,95,217,62,169,73,118,247,82, + 7,87,162,156,232,13,180,213,194,169,247,252,154,217,131,244,185,186,185,143, + 68,117,132,203,148,128,156,99,141,144,34,160,74,1,0,69,10,116,2,196, + 1,171,144,13,145,161,45,158,14,222,207,91,187,147,152,155,63,98,106,149, + 17,157,148,10,203,93,135,115,110,247,231,150,25,24,165,181,161,61,200,49, + 181,100,100,183,13,165,152,204,182,12,105,33,36,160,151,84,61,154,13,228, + 106,178,165,151,136,234,75,169,213,155,156,233,48,106,18,232,115,11,144,244, + 244,249,235,178,9,170,9,131,76,1,73,3,32,18,224,27,15,254,204,183, + 106,114,221,143,33,230,128,92,78,177,156,159,194,178,166,64,149,186,46,63, + 239,241,80,226,142,136,80,144,29,20,228,180,125,61,78,61,27,214,116,225, + 190,102,20,156,105,5,215,94,22,96,206,220,237,106,82,214,85,126,255,247, + 127,28,79,61,117,222,110,243,168,240,164,1,209,211,196,187,252,91,135,14, + 15,55,30,96,154,128,250,79,158,101,28,97,216,3,32,113,238,221,30,126, + 242,39,119,145,101,251,118,185,54,162,3,90,194,151,247,165,224,74,20,68, + 61,133,115,140,193,49,182,86,244,172,168,222,124,232,153,179,184,179,245,145, + 112,130,101,223,113,102,142,149,26,145,253,88,145,134,177,213,207,20,121,85, + 114,91,23,104,105,220,112,16,50,169,136,96,74,64,125,94,146,11,20,1, + 185,121,42,119,91,114,36,202,188,154,38,60,183,48,92,142,81,13,137,154, + 48,226,105,10,50,162,21,114,3,96,139,173,13,105,201,145,0,223,85,100, + 72,130,196,30,143,197,169,105,165,148,129,76,85,152,145,56,151,220,228,227, + 92,5,103,254,38,162,84,110,86,165,157,101,24,6,3,144,83,174,28,84, + 134,17,41,67,53,46,167,134,197,186,122,30,75,81,170,34,66,154,223,157, + 250,107,219,173,208,77,6,76,83,101,99,42,113,139,186,211,146,216,136,9, + 103,38,136,130,247,224,19,159,250,56,130,254,77,4,253,155,56,27,114,228, + 60,83,225,73,223,183,238,73,160,90,255,214,145,91,135,14,15,63,30,32, + 68,41,193,216,192,254,71,151,50,65,63,226,248,193,23,127,8,23,206,189, + 215,89,174,106,213,110,83,117,230,117,130,176,210,173,68,225,254,204,42,253, + 160,78,64,205,27,228,206,99,145,178,179,215,66,127,100,164,194,143,69,139, + 21,28,0,248,233,106,241,118,229,40,153,4,125,170,188,169,87,140,126,90, + 181,217,92,148,174,222,174,155,1,229,72,216,247,234,16,61,15,100,169,8, + 86,156,19,224,167,91,22,138,4,248,72,17,141,33,89,57,70,53,84,170, + 145,112,2,113,170,124,125,217,15,148,243,209,216,254,147,230,113,172,242,242, + 53,126,26,144,181,143,134,239,247,48,203,124,136,39,78,67,206,4,56,31, + 65,172,74,134,38,36,65,156,180,135,1,239,7,70,193,201,52,86,228,38, + 74,133,214,108,201,101,10,186,171,228,6,0,4,19,252,205,31,249,143,241, + 204,123,57,242,76,157,204,10,239,42,59,152,56,53,145,97,24,193,243,252, + 174,61,87,135,14,143,16,78,252,63,212,24,69,124,223,135,16,28,121,238, + 195,247,182,248,209,31,9,241,153,159,248,62,189,84,181,69,255,81,36,71, + 106,181,110,85,53,119,239,221,43,22,130,91,5,103,230,194,181,129,247,85, + 72,211,45,202,54,86,119,234,115,219,228,24,168,42,30,54,172,154,12,136, + 12,43,117,96,246,117,40,146,41,252,41,252,153,86,35,73,0,198,152,13, + 249,181,18,84,125,159,186,204,192,142,223,49,138,111,74,224,245,89,169,12, + 157,208,167,65,221,52,82,49,163,36,202,253,72,6,220,146,214,142,159,170, + 176,35,73,27,196,85,39,93,57,6,60,61,126,200,159,249,96,140,161,88, + 78,177,228,213,135,147,173,208,15,63,91,134,117,241,84,37,180,24,244,114, + 212,31,62,10,114,26,51,209,7,19,37,9,182,133,40,1,32,234,49,244, + 112,84,253,153,107,46,41,39,118,55,182,17,60,141,207,252,248,15,64,20, + 151,240,216,169,12,121,150,218,226,238,122,121,64,215,189,164,67,135,71,15, + 15,16,162,44,111,66,148,50,244,122,12,132,78,80,196,9,254,225,207,159, + 197,115,207,126,4,129,191,175,187,69,140,33,112,11,65,111,5,104,2,35, + 152,91,162,115,199,154,220,93,193,149,127,199,197,19,184,153,158,69,65,118, + 144,242,51,240,240,30,76,162,185,186,41,210,190,99,100,40,215,241,247,79, + 35,248,254,107,192,247,69,240,194,24,98,84,222,200,146,103,114,240,39,25, + 138,48,82,57,164,36,179,36,66,100,8,200,37,228,69,82,89,71,246,99, + 144,173,38,160,139,139,178,136,123,74,224,229,51,21,54,76,2,155,91,179, + 132,167,151,1,84,209,184,13,141,146,242,88,77,239,72,246,152,86,185,75, + 21,122,100,151,212,126,1,21,66,84,174,72,1,204,34,144,139,11,144,37, + 181,161,68,122,137,128,188,87,133,51,199,179,8,225,50,84,33,200,152,130, + 245,54,144,181,206,249,68,170,99,37,1,80,108,57,144,4,246,152,134,250, + 60,49,37,150,4,229,114,138,98,54,2,99,75,236,108,34,244,151,143,97, + 243,4,193,242,153,179,144,91,6,33,198,224,121,211,158,154,102,62,212,195, + 79,12,66,213,244,236,153,232,99,74,183,8,60,106,7,140,18,61,144,79, + 17,93,0,32,80,33,74,186,180,78,217,56,93,65,226,26,36,110,1,120, + 11,101,205,91,170,254,37,123,21,229,166,54,120,14,255,240,191,254,52,118, + 166,62,168,119,5,135,235,29,248,189,0,81,36,33,114,214,40,238,110,27, + 112,218,21,120,119,232,240,112,227,29,139,177,80,202,192,24,5,233,49,244, + 216,16,127,247,239,125,28,131,157,15,160,215,219,133,196,53,16,132,72,50, + 142,160,151,219,92,9,80,87,117,109,79,235,117,5,23,84,150,59,27,42, + 226,48,185,56,131,122,14,78,144,39,0,0,114,99,8,72,133,35,141,218, + 2,84,46,77,142,85,61,90,155,225,228,56,215,98,192,219,115,50,118,154, + 0,31,149,6,146,84,229,48,205,62,228,193,188,185,188,65,203,113,216,144, + 163,41,192,110,201,83,217,101,91,156,145,174,66,155,68,122,0,235,98,98, + 139,179,203,131,113,156,151,75,1,138,185,250,153,40,51,12,207,6,88,229, + 101,136,119,149,115,108,214,234,248,7,55,37,36,87,159,201,38,215,97,83, + 99,237,111,153,182,30,23,79,96,74,183,32,125,110,201,77,161,93,193,199, + 137,7,153,198,136,99,55,167,103,140,37,230,247,57,194,96,136,94,96,246, + 175,115,111,114,7,159,254,155,63,129,115,207,156,197,96,88,85,250,66,132, + 232,245,171,255,45,140,122,115,195,147,29,58,116,120,248,241,142,38,17,148, + 146,235,129,49,31,159,249,177,0,63,243,179,159,68,158,85,39,46,39,25, + 111,244,0,172,215,43,53,85,156,139,50,159,98,49,40,77,28,153,24,128, + 144,4,61,175,106,236,160,242,38,0,96,149,143,193,179,1,232,37,0,167, + 41,36,150,144,116,10,73,18,21,26,212,165,0,64,51,52,135,88,27,82, + 140,235,208,212,135,69,18,41,147,202,254,63,86,93,78,92,204,50,31,96, + 75,107,204,225,217,0,136,2,21,18,28,9,165,224,106,104,116,240,135,233, + 144,82,13,111,18,25,52,204,38,128,114,59,154,28,159,76,203,109,113,206, + 213,143,33,82,109,6,49,238,72,73,203,115,102,189,13,56,231,170,117,23, + 153,90,85,168,54,164,72,99,199,103,224,150,8,181,153,132,239,96,121,230, + 28,0,64,136,114,29,55,220,232,247,134,112,63,199,200,83,159,143,233,96, + 82,71,213,88,162,24,90,145,219,76,127,127,230,40,141,37,170,36,64,98, + 142,36,93,35,77,170,223,133,199,166,31,199,39,62,245,113,60,118,126,130, + 66,44,224,247,130,214,214,92,62,243,208,111,73,199,118,6,147,14,29,30, + 13,188,227,89,114,223,247,237,13,224,103,255,206,37,60,255,193,221,198,50, + 161,111,72,175,58,155,171,154,39,169,15,105,107,217,87,47,192,76,244,81, + 108,119,193,7,147,138,197,188,13,236,53,189,159,13,67,113,97,82,26,50, + 132,146,46,33,147,74,85,153,177,47,81,245,198,72,194,158,85,68,114,140, + 178,120,59,201,148,130,211,214,123,67,128,133,175,22,30,177,4,114,57,5, + 231,188,146,167,82,166,22,128,100,135,149,253,132,76,218,130,112,160,52,194, + 8,76,148,229,159,49,32,166,32,50,128,76,181,211,49,110,255,40,141,219, + 209,159,249,138,88,53,25,49,198,192,57,175,24,77,0,0,177,26,125,83, + 108,149,66,51,164,76,119,84,168,112,217,15,44,41,202,13,195,42,31,99, + 43,8,86,249,24,114,203,32,249,14,132,24,67,136,9,14,23,23,177,142, + 167,224,217,105,108,150,213,48,165,122,240,41,175,69,92,60,129,217,81,133, + 212,50,113,134,165,58,227,147,72,12,137,20,2,183,80,182,227,42,201,141, + 144,21,64,238,84,194,147,189,96,132,191,245,163,159,84,198,18,158,89,115, + 73,20,73,248,172,7,207,247,193,60,31,62,243,192,124,15,66,150,230,18, + 117,221,72,87,251,214,161,195,35,130,239,152,13,172,239,17,124,215,51,4, + 255,253,207,191,128,199,78,235,6,198,90,1,36,185,154,229,102,106,146,36, + 230,13,85,87,69,51,76,181,220,168,71,107,243,228,45,183,110,62,68,221, + 180,84,29,92,121,19,21,103,62,0,185,85,138,195,27,8,144,75,64,92, + 179,168,147,105,243,53,3,73,146,102,241,54,202,86,86,109,170,171,98,188, + 224,35,76,231,138,196,249,194,83,4,232,246,171,28,87,91,91,169,215,202, + 62,144,100,172,107,208,116,151,126,153,42,53,104,234,213,76,8,212,134,93, + 167,4,133,63,69,177,42,137,10,108,89,9,61,146,1,175,186,57,163,160, + 18,38,229,156,55,90,119,1,138,220,56,31,169,60,219,106,2,177,154,88, + 114,219,228,35,196,92,192,11,71,224,24,227,80,12,43,235,150,211,4,170, + 74,188,174,162,202,21,194,70,105,0,193,76,27,157,110,57,101,1,213,98, + 238,230,65,159,193,127,248,169,255,20,63,246,183,95,4,0,75,110,102,191, + 166,115,9,160,38,119,247,8,175,149,6,40,98,19,226,232,46,43,29,58, + 116,120,120,240,142,18,156,114,83,150,54,125,153,113,124,252,7,159,196,127, + 251,247,63,133,211,167,46,64,224,150,86,111,161,67,110,78,219,164,218,223, + 10,237,35,115,82,250,120,227,53,222,31,59,221,234,77,183,12,53,145,192, + 228,224,34,62,64,204,39,88,178,59,32,83,138,104,168,200,34,225,74,5, + 145,17,69,248,68,179,63,163,105,82,204,79,107,235,253,162,204,151,25,51, + 138,36,73,123,55,16,77,40,114,195,48,115,114,126,100,52,171,20,124,31, + 5,145,51,144,37,197,42,215,97,205,36,83,102,144,76,25,125,172,138,51, + 203,143,230,88,246,3,208,137,34,48,0,118,217,37,15,21,57,101,131,146, + 124,167,4,2,19,204,227,1,248,66,29,75,62,85,159,35,99,12,68,6, + 16,171,49,48,85,95,151,124,172,30,84,182,130,216,60,155,16,99,172,210, + 115,216,228,35,240,236,52,36,166,216,79,70,72,249,153,74,151,146,42,76, + 91,54,165,198,135,82,17,56,211,221,73,194,232,136,230,160,166,229,27,174, + 65,145,218,45,253,179,208,15,75,73,195,84,34,229,14,62,242,193,159,180, + 53,111,102,159,166,247,100,145,234,107,41,66,12,130,30,184,232,163,55,24, + 55,74,3,128,110,122,64,135,14,143,10,222,241,28,156,27,190,9,134,234, + 230,245,115,255,249,223,192,207,252,236,39,241,248,105,15,73,94,64,98,106, + 11,192,203,66,240,121,173,124,192,77,126,184,10,78,133,53,151,181,42,128, + 60,124,12,66,132,54,207,83,53,153,164,56,136,213,77,105,11,138,96,173, + 173,250,211,169,13,83,26,152,176,98,27,18,78,74,178,114,11,164,245,84, + 129,123,193,142,175,44,245,234,0,70,13,66,52,68,4,40,43,190,91,167, + 183,115,54,83,5,222,61,217,176,242,39,61,105,143,141,44,41,118,252,20, + 146,150,161,68,107,174,209,168,252,77,154,189,60,227,253,157,198,241,84,142, + 83,171,55,0,86,181,25,28,138,33,246,19,93,42,65,118,26,6,160,54, + 4,33,179,159,225,177,176,125,76,223,214,15,66,111,65,57,38,23,71,18, + 27,228,25,124,224,61,63,138,159,249,185,31,194,115,31,59,131,195,55,183, + 149,188,91,16,4,232,245,41,194,40,66,191,47,193,124,15,131,126,179,56, + 191,11,79,118,232,240,104,225,59,18,162,244,125,31,189,158,114,85,14,6, + 59,232,123,4,255,221,63,120,15,126,250,103,254,51,244,122,207,56,68,22, + 59,63,10,199,205,238,82,8,17,6,77,55,163,169,91,50,133,222,36,202, + 43,173,186,206,132,123,0,0,58,112,156,129,59,74,149,204,227,1,194,188, + 188,201,91,51,69,75,141,27,27,171,112,235,42,15,192,204,84,32,103,57, + 105,24,203,33,13,183,85,149,235,58,100,189,13,230,163,73,179,209,177,221, + 86,90,105,134,188,12,6,149,158,146,46,220,242,3,62,26,129,44,0,162, + 79,195,203,85,142,113,137,12,248,255,219,187,247,152,201,206,195,174,227,191, + 115,153,251,125,223,189,248,178,107,239,154,117,136,83,187,205,165,36,68,202, + 197,118,162,92,84,183,42,137,138,75,74,138,69,171,20,148,52,32,168,138, + 42,20,218,32,254,8,8,1,5,81,65,128,18,218,16,165,106,11,37,20, + 66,133,91,213,36,136,170,151,68,85,147,212,137,156,238,198,118,227,189,120, + 253,190,115,63,51,115,46,252,241,156,115,230,204,101,119,199,169,55,239,238, + 227,239,71,90,205,204,251,62,239,121,207,188,51,123,126,243,220,15,214,150, + 161,242,6,114,122,174,92,29,168,61,91,126,106,104,123,129,105,206,244,6, + 43,83,23,154,149,134,252,70,172,73,236,200,173,53,21,199,171,225,24,205, + 77,199,97,175,234,169,154,220,166,122,250,1,34,168,222,155,150,152,169,52, + 187,238,206,166,10,195,107,237,245,166,181,21,75,86,107,109,171,147,185,171, + 122,213,189,111,213,143,252,216,163,122,224,59,247,52,234,95,208,145,59,87, + 251,250,130,192,149,231,54,87,6,150,248,190,183,82,123,35,220,128,91,207, + 13,235,131,75,146,64,243,180,185,48,138,22,242,203,125,253,248,223,61,169, + 191,255,147,127,69,137,170,170,85,158,145,169,141,213,210,127,251,249,63,115, + 225,154,106,57,208,36,91,237,100,179,201,170,228,214,53,212,237,10,23,11, + 205,157,61,201,29,72,170,40,153,77,211,37,195,170,146,78,72,146,14,116, + 82,241,120,32,207,25,168,250,140,89,109,197,123,141,57,78,214,52,39,73, + 78,231,64,217,230,224,125,165,77,144,89,19,224,116,182,236,55,59,238,201, + 153,212,52,173,4,166,6,181,95,147,219,234,155,128,76,204,160,140,86,218, + 87,24,69,109,69,81,91,117,183,167,73,188,175,193,129,169,29,181,74,94, + 190,116,88,226,30,49,161,146,9,42,102,169,173,116,11,158,222,29,38,128, + 170,115,199,244,183,165,1,36,21,250,250,156,142,188,193,64,131,122,69,97, + 26,182,251,221,170,249,221,131,19,170,187,61,13,23,145,134,139,142,90,227, + 154,146,65,79,78,55,29,60,226,116,164,40,13,172,172,159,46,106,47,87, + 53,217,143,229,158,145,6,195,116,52,104,218,87,57,94,180,149,168,167,80, + 247,40,41,119,84,77,110,211,116,122,76,129,123,90,147,168,175,168,209,149, + 231,159,146,235,156,87,146,116,52,8,14,86,154,161,219,45,71,209,188,169, + 120,225,201,117,3,213,220,116,135,128,233,65,97,254,155,233,119,115,156,169, + 164,39,37,157,147,116,94,74,251,111,55,231,185,29,147,146,99,121,184,221, + 119,191,175,48,238,111,108,135,83,169,84,212,237,85,228,151,211,15,30,94, + 91,174,215,220,8,183,245,85,75,162,232,234,11,9,0,184,57,220,176,128, + 115,156,106,122,97,88,214,110,142,55,60,189,235,123,135,250,219,127,235,3, + 74,146,87,75,234,201,52,49,61,167,101,152,153,129,3,203,33,223,155,130, + 217,178,159,207,45,69,170,86,211,93,167,11,155,94,78,167,97,122,17,205, + 134,141,27,97,120,183,38,251,127,94,83,207,92,160,194,66,27,97,62,184, + 162,231,152,233,0,110,101,101,126,91,45,29,66,239,118,205,202,31,210,234, + 196,108,41,29,194,223,115,215,214,98,92,103,134,194,103,77,149,173,210,108, + 115,207,54,201,108,127,35,109,44,224,188,50,87,46,106,47,251,226,210,102, + 199,164,29,171,117,124,174,164,157,152,192,58,40,107,18,59,114,6,203,231, + 82,119,151,77,112,161,211,91,110,127,227,245,87,214,195,44,150,145,164,112, + 182,28,169,186,222,52,41,73,211,233,49,133,205,166,194,102,83,78,61,82, + 164,94,62,244,223,236,23,104,250,207,170,101,79,217,0,160,126,255,188,36, + 169,214,108,203,245,90,122,97,16,171,153,62,197,124,112,73,210,79,183,90, + 186,168,88,7,146,190,161,229,7,159,237,205,154,175,186,247,173,250,224,95, + 123,173,238,187,223,151,239,118,180,152,207,242,141,76,165,116,213,154,180,86, + 86,246,221,124,199,128,109,162,104,181,150,189,109,231,122,0,55,151,27,184, + 152,158,25,206,158,141,222,235,120,7,42,215,103,250,115,247,157,213,251,31, + 59,163,143,253,147,31,212,235,30,184,95,82,87,213,82,54,39,170,56,146, + 178,184,88,110,81,69,217,39,122,223,237,40,8,92,5,129,121,26,173,122, + 201,172,75,152,244,149,232,130,106,165,205,149,76,6,99,71,211,214,109,106, + 124,51,81,60,48,23,179,238,157,229,141,62,42,105,89,171,139,198,190,162, + 177,111,6,154,212,86,71,116,58,73,69,213,185,179,186,66,73,246,243,133, + 209,138,227,145,191,18,48,173,146,39,207,27,152,65,32,71,150,53,211,44, + 92,130,200,89,89,15,50,233,72,7,237,101,185,65,84,149,162,182,188,131, + 101,141,207,169,22,70,43,174,245,171,101,129,86,60,135,172,185,52,105,39, + 171,229,211,223,91,28,1,234,39,251,82,207,149,95,185,162,186,155,40,153, + 120,242,91,233,104,78,245,20,169,167,253,32,82,45,61,255,186,183,60,94, + 54,113,219,236,213,102,54,54,13,230,207,202,188,198,21,117,58,167,37,73, + 253,190,249,128,178,119,188,165,105,220,84,173,18,230,211,3,76,205,237,162, + 98,93,144,163,63,78,143,124,65,114,158,146,156,203,203,191,83,210,146,146, + 83,250,235,143,190,71,63,242,99,143,234,204,119,223,39,73,154,6,151,84, + 42,155,231,213,172,183,84,169,84,84,171,116,86,86,44,137,226,122,222,52, + 153,237,216,45,153,53,39,215,155,39,25,104,2,220,252,174,61,124,239,91, + 20,199,203,79,187,81,20,169,86,171,169,63,234,74,81,44,71,7,58,117, + 103,71,143,188,231,110,221,125,215,131,250,228,39,238,214,255,248,236,111,72, + 202,46,82,7,42,14,237,175,85,124,77,215,6,84,100,125,112,230,162,167, + 124,237,192,36,174,166,59,59,95,86,162,243,10,22,89,51,168,185,176,85, + 147,219,212,61,17,105,240,229,199,85,62,155,14,200,112,61,53,227,158,198, + 139,23,164,168,170,150,100,106,95,233,220,184,98,112,149,246,75,138,34,95, + 110,79,210,65,218,55,54,147,246,231,77,245,202,11,51,50,81,115,181,186, + 177,36,87,74,186,26,46,150,129,50,114,61,105,100,182,237,25,46,34,181, + 74,233,230,166,233,232,68,167,99,126,103,16,57,166,73,180,58,83,210,113, + 148,29,33,203,55,239,138,212,238,154,38,182,176,212,147,198,82,187,81,86, + 56,118,229,41,157,47,151,30,115,48,236,75,58,162,73,44,37,174,103,182, + 12,154,28,211,164,190,125,168,123,50,246,20,165,155,141,182,189,64,138,204, + 2,202,173,35,174,164,88,81,175,167,73,44,185,181,166,22,131,213,62,202, + 94,213,211,48,237,248,27,70,174,66,29,81,187,146,14,86,9,159,81,181, + 124,89,179,121,241,245,77,23,67,142,206,73,58,166,106,53,86,28,77,52, + 28,153,145,148,211,153,47,199,233,167,83,2,46,42,209,5,57,122,78,210, + 55,36,231,153,252,247,150,43,109,205,103,3,37,73,75,223,113,239,59,245, + 174,239,121,175,94,251,64,172,227,167,246,20,198,125,45,230,179,124,80,201, + 34,154,107,54,155,169,209,108,230,225,150,233,180,221,141,81,147,229,50,65, + 6,220,170,110,72,192,185,174,155,135,156,231,121,154,207,67,53,107,71,20, + 69,137,198,227,161,92,103,172,138,19,232,129,215,214,244,83,103,222,174,55, + 63,124,90,191,248,31,158,208,31,252,209,239,169,90,106,42,88,60,171,236, + 34,56,157,133,42,214,218,164,89,222,68,153,53,55,149,22,117,133,90,104, + 226,184,249,202,242,166,31,207,236,5,118,188,119,82,15,189,253,237,146,38, + 26,13,198,106,223,115,135,226,88,114,221,190,146,168,165,72,177,26,35,105, + 172,23,164,52,207,14,166,13,181,199,158,156,194,160,148,129,230,106,43,29, + 72,226,196,138,162,161,20,181,213,150,20,205,77,224,180,85,86,88,63,42, + 167,23,107,146,246,195,101,19,160,235,138,53,145,43,77,134,114,234,71,52, + 92,188,160,182,150,131,65,228,116,164,96,162,106,86,227,12,42,82,111,33, + 41,89,169,229,133,165,158,134,154,230,253,123,146,25,200,82,119,165,65,57, + 84,75,190,162,94,207,252,92,218,60,152,173,234,159,12,37,199,27,42,30, + 118,229,120,158,162,102,168,73,236,168,221,115,243,29,0,252,40,82,50,246, + 228,180,77,224,181,27,101,69,251,29,37,99,95,99,55,145,163,72,209,200, + 201,251,222,34,245,20,207,37,183,106,154,49,35,245,212,244,58,146,34,197, + 146,202,141,142,238,185,167,170,239,121,87,164,207,255,223,39,116,241,202,133, + 244,181,233,154,91,239,204,198,123,200,47,71,170,85,66,57,218,87,156,214, + 200,29,157,147,212,87,185,218,215,124,102,130,109,22,36,114,147,61,85,203, + 103,245,206,183,189,89,111,121,216,236,237,86,169,127,83,211,224,146,121,127, + 148,43,242,221,142,154,201,115,146,43,69,181,146,124,223,151,151,174,47,89, + 92,111,114,181,230,150,110,226,74,109,13,184,37,221,144,128,43,114,93,87, + 229,178,175,40,138,228,121,142,26,13,243,137,222,45,133,114,71,174,194,202, + 179,122,227,27,75,186,251,174,7,245,153,95,61,173,255,249,191,126,91,193, + 149,145,150,205,147,235,125,29,203,79,220,217,39,243,114,221,85,165,218,144, + 134,87,84,111,204,53,157,125,67,82,160,227,189,150,30,121,199,119,232,225, + 119,188,69,175,121,213,66,78,236,106,49,233,233,32,24,168,221,72,116,48, + 236,169,219,218,215,72,82,211,53,205,120,195,133,163,70,79,210,158,167,40, + 10,229,141,7,138,162,116,49,97,213,148,72,138,156,142,92,93,209,32,170, + 170,149,54,109,70,81,91,147,120,95,234,206,85,151,148,92,112,21,159,104, + 203,241,134,249,4,232,145,76,168,74,38,244,156,250,17,13,14,94,80,71, + 82,173,153,40,150,169,241,102,151,211,40,138,36,167,163,105,101,168,106,207, + 149,9,172,212,193,109,138,220,98,127,145,147,206,93,184,180,241,26,20,135, + 243,75,166,93,58,142,59,242,188,161,105,58,173,71,10,103,123,242,116,89, + 147,216,81,43,157,196,61,137,166,170,71,109,249,50,53,203,103,111,115,180, + 87,107,40,81,223,140,70,45,212,172,221,106,79,211,177,175,122,167,163,36, + 221,69,47,246,77,168,122,37,95,15,124,247,9,253,228,157,190,30,248,76, + 162,255,254,153,167,245,229,39,159,76,107,216,230,245,237,116,204,207,68,241, + 72,158,219,84,20,46,155,166,171,229,203,10,230,217,7,150,169,102,65,34, + 71,199,52,15,170,170,85,124,221,247,138,119,234,161,183,189,85,175,126,224, + 148,142,222,121,89,139,249,57,45,55,189,53,225,230,56,83,141,212,85,163, + 217,84,219,151,22,126,41,239,119,171,86,107,249,74,37,78,217,91,25,88, + 66,184,1,183,174,27,30,112,153,172,38,87,228,122,77,117,122,50,255,90, + 7,186,235,39,206,232,251,222,123,90,127,248,7,127,162,159,251,185,95,208, + 112,226,107,58,203,150,245,234,106,25,118,230,194,153,245,169,72,210,120,56, + 208,104,50,148,239,124,93,39,246,164,31,122,255,15,233,205,111,185,71,175, + 253,206,170,230,211,175,105,62,50,181,62,183,218,83,28,72,201,172,175,118, + 99,63,95,43,113,36,201,237,187,170,43,86,36,169,22,73,206,96,160,168, + 221,54,219,190,196,29,181,74,203,65,44,146,204,144,251,146,9,55,103,224, + 72,205,35,121,55,226,232,68,58,95,46,13,183,210,160,170,89,211,156,255, + 190,55,214,169,168,166,32,93,179,114,209,233,202,189,91,114,100,106,189,209, + 216,108,124,234,215,61,109,110,175,186,202,25,56,114,123,125,41,142,36,39, + 81,195,191,93,113,217,213,216,77,204,147,42,156,67,81,105,80,213,165,61, + 87,71,21,155,213,72,78,52,228,157,187,188,82,166,53,174,41,146,169,197, + 141,10,23,250,100,226,41,90,108,78,161,8,155,77,205,34,87,77,79,58, + 136,60,237,53,93,133,170,41,90,132,242,116,69,119,221,181,167,31,252,225, + 55,232,161,135,31,214,23,255,232,156,254,207,227,79,232,179,255,251,179,26, + 12,19,245,251,125,237,29,107,202,87,77,225,92,121,237,42,73,46,106,58, + 31,167,125,119,233,74,46,170,170,90,57,149,215,216,206,190,34,82,169,92, + 209,98,254,172,164,74,254,190,168,215,90,106,38,7,154,121,93,185,37,211, + 140,237,185,77,57,213,68,141,116,41,174,98,184,173,143,154,36,220,128,91, + 219,13,15,184,226,178,70,165,146,185,92,71,225,68,205,218,17,205,189,185, + 6,253,231,36,73,141,86,75,242,28,157,189,247,5,221,121,234,46,189,251, + 251,254,145,62,255,185,63,209,159,62,27,234,252,83,79,235,220,55,206,105, + 22,60,175,43,47,28,203,143,87,169,245,228,133,137,230,147,88,229,122,73, + 223,117,255,189,250,169,143,220,174,55,189,245,172,58,205,11,138,22,161,220, + 112,95,117,39,82,189,85,213,193,80,105,132,152,26,201,36,234,200,209,190, + 186,211,185,164,170,162,110,95,19,185,106,117,58,138,250,166,140,51,112,148, + 164,23,186,97,61,82,221,237,105,236,122,106,212,143,73,122,94,195,69,71, + 141,81,218,191,54,145,156,250,101,13,142,189,70,174,250,138,227,78,94,99, + 187,236,212,116,108,52,213,162,45,237,69,13,73,177,226,97,87,238,169,11, + 210,64,138,199,199,228,117,47,74,74,215,137,28,75,126,93,203,213,86,186, + 82,63,157,199,214,74,91,209,38,177,163,134,178,193,44,142,38,177,84,151, + 164,123,99,185,181,150,226,233,168,176,210,72,87,211,40,86,163,52,144,119, + 112,66,139,118,160,189,168,33,183,153,40,158,142,228,94,28,165,251,228,109, + 159,147,87,139,26,218,215,84,73,210,209,243,154,40,27,35,26,165,247,178, + 190,183,102,58,184,100,47,173,145,149,60,95,181,178,163,133,31,43,142,70, + 242,92,233,149,15,28,209,137,147,199,245,174,119,255,128,222,255,229,7,37, + 239,140,246,142,157,215,116,124,201,244,217,149,107,42,133,166,127,181,84,246, + 213,107,249,186,227,142,251,117,230,238,239,213,233,179,119,233,206,147,190,238, + 185,231,46,221,113,167,175,81,48,148,146,129,102,65,180,210,207,150,77,3, + 24,234,118,149,37,85,42,189,116,42,64,164,82,249,168,60,119,146,54,75, + 174,238,20,176,109,74,64,241,189,76,232,1,183,14,39,73,146,237,227,162, + 111,0,211,47,103,126,93,113,142,92,16,4,10,195,133,194,48,82,144,110, + 54,26,4,129,230,97,172,40,92,40,152,154,175,205,102,155,75,118,149,220, + 186,202,117,119,101,5,248,108,29,65,73,114,195,116,224,198,226,178,230,35, + 51,53,192,137,251,154,13,71,170,120,166,198,210,78,67,200,169,152,178,174, + 187,28,205,153,5,84,38,235,71,115,60,51,239,170,22,53,76,191,218,154, + 225,204,172,166,95,243,92,77,163,88,213,112,47,63,126,101,20,104,209,14, + 212,116,211,223,215,233,171,212,63,80,191,149,168,85,242,228,52,34,45,142, + 94,81,233,226,61,114,190,57,80,255,119,198,106,188,241,164,25,237,152,202, + 182,165,201,206,33,63,223,139,35,61,59,244,212,61,219,72,255,230,105,115, + 97,26,112,181,244,226,93,25,5,154,53,171,249,115,205,158,167,227,13,213, + 104,134,114,6,142,198,77,169,58,108,107,234,141,243,160,204,142,89,236,127, + 147,219,211,208,233,230,125,111,7,145,167,90,227,184,234,254,76,126,181,151, + 175,200,239,122,203,81,158,97,104,94,159,32,152,42,90,132,90,68,155,83, + 19,74,133,90,214,122,217,105,96,222,11,193,116,186,242,190,72,146,90,190, + 105,169,100,22,0,200,250,219,138,77,146,210,246,201,220,146,94,178,218,155, + 235,178,227,55,112,152,190,109,77,148,25,215,245,180,88,44,228,121,142,162, + 200,92,176,171,213,170,130,180,203,165,90,173,105,60,113,84,242,66,73,161, + 166,161,54,118,87,158,205,102,74,146,154,90,122,78,139,82,69,190,95,88, + 157,195,107,43,138,37,191,49,81,24,68,138,253,222,90,45,46,80,226,118, + 84,105,73,110,108,46,170,163,88,106,248,7,74,212,149,155,28,40,142,187, + 170,140,178,62,160,170,22,237,64,165,129,185,29,73,106,95,126,38,111,130, + 156,164,165,178,32,25,47,218,166,70,152,94,212,7,99,71,146,167,200,149, + 154,233,227,99,50,77,132,234,74,83,111,172,230,192,209,129,119,84,221,225, + 243,138,211,221,98,166,207,183,84,146,148,46,207,40,63,217,215,34,109,154, + 29,143,124,37,81,43,15,217,44,96,235,138,53,58,209,214,73,13,52,210, + 106,184,73,102,56,255,36,146,194,96,160,118,218,92,26,199,93,185,238,193, + 74,109,51,238,119,52,145,171,250,48,214,172,233,40,25,173,134,91,118,172, + 117,45,47,86,34,169,235,69,74,124,87,78,58,61,32,78,204,31,35,187, + 220,103,155,135,102,33,231,149,76,144,5,233,155,160,228,45,23,60,174,215, + 164,56,205,245,40,174,203,43,77,228,149,204,247,167,193,108,227,189,97,106, + 160,203,29,185,139,35,37,75,158,127,213,112,203,208,52,9,216,227,219,90, + 131,91,183,88,44,20,69,137,162,200,52,93,102,23,184,48,92,104,52,26, + 173,124,45,251,196,190,190,132,83,182,250,123,177,246,150,93,196,36,41,78, + 251,240,178,154,156,27,94,208,254,176,38,55,62,159,151,113,211,101,75,226, + 96,95,189,163,115,69,47,108,110,200,153,113,42,251,133,240,51,77,143,146, + 212,242,151,163,28,135,225,129,90,126,87,227,45,173,125,141,244,42,95,93, + 60,151,215,226,60,103,57,151,205,237,165,53,169,246,190,194,253,187,165,175, + 121,26,135,207,169,121,242,132,198,105,5,40,27,17,185,46,31,68,226,246, + 87,194,109,48,118,242,243,113,203,230,164,106,161,171,164,154,104,52,234,171, + 157,238,167,151,213,230,178,154,101,22,156,197,254,187,44,44,39,81,39,175, + 189,197,110,87,137,219,209,48,114,213,244,58,242,154,38,165,179,218,91,182, + 50,200,54,217,235,155,213,220,139,162,184,174,70,61,201,155,17,215,107,248, + 210,246,247,69,113,39,130,245,247,69,22,108,146,110,88,205,45,67,13,14, + 56,92,135,30,112,153,44,232,138,33,183,237,130,38,45,47,106,153,109,23, + 177,76,86,75,136,103,163,60,228,246,135,142,246,106,207,229,101,14,134,129, + 142,54,151,163,15,247,15,10,23,219,116,62,156,51,95,109,170,116,203,177, + 106,161,187,17,98,81,58,130,208,77,43,149,217,240,249,233,216,87,197,187, + 156,55,135,74,171,33,151,241,156,129,146,118,162,73,188,111,250,251,70,190, + 153,148,126,162,169,160,53,88,217,115,109,93,86,243,204,6,179,12,198,142, + 154,77,83,46,8,147,229,112,254,178,57,175,182,219,87,82,77,228,4,206, + 74,112,103,77,151,203,218,221,106,160,14,198,142,156,234,221,233,31,194,52, + 79,214,189,142,18,245,242,112,115,188,150,252,186,171,154,239,110,4,156,169, + 177,47,95,103,115,187,57,47,175,248,58,250,126,233,170,239,137,236,253,224, + 249,37,69,225,98,101,110,91,177,73,178,56,152,68,210,74,184,221,136,117, + 38,9,56,224,112,125,219,155,40,215,101,27,111,150,203,158,230,115,41,189, + 246,40,8,180,114,81,140,226,186,60,119,178,245,24,203,11,215,178,230,150, + 253,108,126,97,84,51,31,62,209,233,73,113,184,204,245,68,125,133,133,165, + 151,34,63,144,23,240,254,218,97,0,0,17,43,73,68,65,84,126,195,60, + 112,205,164,239,164,188,26,40,139,185,20,21,90,70,179,224,152,77,143,169, + 226,93,214,116,186,28,12,19,78,90,106,180,18,185,113,168,145,122,138,131, + 125,181,221,190,130,210,237,114,226,125,21,247,60,111,186,146,155,56,146,28, + 197,253,118,218,210,57,146,215,233,41,220,239,173,212,206,198,139,182,22,129, + 167,118,35,209,96,236,168,221,72,116,217,169,169,233,116,20,132,137,252,170, + 52,14,11,225,228,246,228,230,79,115,95,131,184,35,77,204,121,55,156,68, + 65,201,81,82,77,87,39,153,46,231,180,57,149,125,197,217,4,238,73,87, + 114,37,39,221,169,32,118,187,170,231,181,183,229,175,202,194,45,78,106,170, + 214,28,73,161,74,81,77,206,218,196,233,245,215,105,221,122,205,207,247,61, + 85,171,53,5,193,52,127,221,139,74,149,70,222,132,185,30,108,217,253,172, + 73,242,70,134,27,128,195,119,168,53,56,105,117,224,73,20,197,91,155,44, + 165,213,79,250,235,205,89,197,126,21,115,187,58,97,119,22,47,242,99,196, + 209,72,174,215,212,124,108,106,82,89,173,206,220,191,176,114,220,126,255,162, + 246,218,51,93,25,84,242,102,204,109,166,99,63,95,162,42,127,94,110,87, + 227,145,163,122,187,173,201,96,160,122,187,45,39,238,175,28,167,211,188,168, + 112,50,145,155,28,168,81,159,107,26,152,0,207,250,194,234,138,53,138,123, + 106,95,126,70,131,99,102,208,74,182,246,227,34,72,119,218,118,187,114,203, + 177,226,249,178,182,224,150,227,124,116,163,220,180,246,216,106,106,54,28,169, + 214,8,21,187,38,172,214,159,83,167,121,81,253,129,73,237,134,127,160,113, + 216,85,51,236,107,228,175,134,251,116,122,44,63,206,56,81,94,123,139,253, + 174,74,85,115,30,165,86,103,163,246,86,113,75,249,60,179,236,53,206,20, + 95,235,93,100,181,57,243,179,203,247,195,182,247,130,249,250,178,214,102,110, + 151,211,28,110,84,192,81,131,3,14,215,161,7,92,81,28,199,138,162,40, + 31,124,146,93,4,147,121,148,135,148,164,235,126,210,207,46,164,69,73,97, + 35,212,89,188,208,124,182,12,182,48,136,212,110,4,26,245,151,23,202,98, + 216,77,18,111,101,4,230,54,137,219,145,19,247,149,184,155,77,135,102,255, + 187,253,141,159,119,227,3,53,231,231,243,199,89,147,101,166,86,53,219,186, + 132,151,226,188,217,81,146,98,167,43,39,216,190,235,120,30,70,133,26,214, + 181,206,183,232,90,33,94,148,29,51,123,174,217,128,147,98,243,100,171,109, + 106,81,89,192,21,195,109,93,49,236,146,121,180,241,218,21,191,87,124,31, + 72,155,239,133,245,26,223,122,176,153,251,203,169,0,55,114,64,9,1,7, + 28,174,155,42,224,164,101,200,73,90,169,205,73,219,47,112,235,182,53,91, + 73,82,201,159,104,62,41,172,130,226,165,253,56,163,161,234,222,234,214,39, + 197,160,147,204,20,131,122,58,237,96,146,152,11,226,108,180,186,175,90,22, + 96,217,197,222,209,190,202,205,70,94,174,210,52,203,138,205,71,99,29,109, + 94,210,243,163,227,121,191,223,226,210,31,107,239,84,87,87,158,57,144,83, + 217,87,163,62,215,120,82,86,163,62,87,120,105,217,201,55,109,221,182,17, + 108,131,120,217,231,87,92,46,43,179,30,70,87,115,180,121,73,87,6,21, + 237,181,103,43,125,144,189,110,45,175,193,22,195,114,151,112,147,164,106,179, + 181,210,52,89,236,247,146,148,127,152,41,138,162,197,70,16,102,95,219,86, + 187,95,87,113,75,154,197,139,45,35,36,111,204,96,146,171,33,224,128,195, + 117,211,5,92,209,122,216,153,219,101,173,78,210,202,133,179,104,185,142,224, + 92,113,92,222,184,144,134,211,213,11,100,177,25,83,82,222,132,153,153,206, + 19,37,209,234,158,99,139,96,251,164,104,73,42,85,93,45,130,56,111,178, + 91,183,8,98,185,161,169,49,245,90,83,29,12,3,77,6,3,53,154,137, + 198,163,237,181,179,149,243,119,246,174,249,253,168,222,81,215,91,214,90,99, + 127,123,77,46,59,191,109,207,37,59,191,225,112,164,70,239,100,254,184,120, + 188,133,95,83,217,119,243,65,62,146,84,118,34,213,59,71,243,178,235,131, + 58,60,207,221,216,126,102,253,245,41,134,224,182,114,235,77,156,235,202,229, + 114,94,254,176,86,38,33,224,128,195,117,83,7,92,38,27,109,89,188,8, + 110,251,148,47,173,126,74,47,202,46,168,217,5,47,59,214,122,208,101,198, + 243,229,128,150,48,140,242,233,6,153,233,124,245,207,86,43,59,121,8,214, + 107,237,149,50,181,178,147,63,206,238,75,171,253,127,153,254,254,246,38,208, + 225,112,180,241,181,153,119,135,42,209,55,243,240,185,90,136,73,218,8,218, + 108,142,90,35,157,26,144,205,23,28,45,60,213,107,237,252,220,70,11,47, + 15,191,44,180,37,201,169,54,228,107,170,80,181,149,201,245,110,165,41,215, + 153,170,92,49,53,187,98,115,241,122,192,149,74,165,149,149,110,50,81,20, + 231,175,223,122,16,46,203,44,131,238,90,239,3,115,255,112,230,182,17,112, + 192,225,186,37,2,174,168,56,181,64,90,6,150,180,28,44,176,88,44,182, + 14,28,200,190,110,38,154,187,43,161,103,110,183,247,249,73,87,31,206,110, + 70,243,213,242,91,41,157,146,80,105,106,23,209,188,176,147,120,58,171,59, + 11,198,108,117,143,36,24,107,225,215,20,206,61,57,110,32,207,47,41,156, + 167,131,40,202,171,231,147,213,166,138,43,131,20,39,78,175,148,117,34,37, + 206,50,20,157,228,32,63,239,98,160,207,19,79,209,98,115,165,145,90,217, + 209,60,241,242,96,203,172,207,53,147,54,7,119,188,152,129,29,197,215,45, + 127,78,107,143,139,178,64,203,150,214,58,172,37,182,8,56,224,112,221,114, + 1,151,201,46,122,89,13,224,197,94,192,226,56,78,183,245,137,242,101,195, + 50,187,244,251,173,15,110,200,130,175,56,41,185,56,143,203,124,111,121,81, + 239,79,93,181,210,64,156,14,151,181,182,32,140,242,233,16,89,168,100,97, + 53,15,175,222,36,90,12,182,82,249,200,242,24,233,100,233,241,196,81,163, + 158,228,129,234,149,139,19,163,55,255,118,219,230,165,141,39,142,90,141,137, + 38,83,109,132,90,118,156,245,249,110,210,230,0,143,151,122,212,226,205,186, + 70,36,1,7,28,174,91,54,224,94,10,217,158,117,102,43,31,119,37,232, + 138,33,55,75,76,40,36,105,173,38,78,26,114,157,241,198,253,76,24,46, + 174,186,114,71,38,27,8,145,221,102,63,87,12,22,215,153,106,56,54,243, + 255,138,53,40,175,228,231,143,139,181,178,178,19,105,26,181,76,249,184,174, + 106,33,184,178,64,219,22,102,87,59,215,245,90,107,52,247,229,149,195,252, + 118,249,243,171,67,242,179,41,26,197,173,103,182,213,180,109,71,192,1,135, + 235,101,29,112,82,113,247,241,36,15,56,51,233,124,91,223,208,230,112,246, + 100,30,105,94,50,163,51,203,11,179,162,198,52,42,171,230,205,243,251,94, + 213,92,216,43,142,9,133,89,226,171,89,26,172,140,234,148,150,253,126,235, + 181,39,215,153,42,12,182,239,192,45,73,126,213,83,24,68,242,171,158,226, + 164,38,215,153,42,78,204,138,46,215,171,73,102,182,205,27,92,151,5,222, + 181,194,123,61,220,164,213,126,209,172,239,237,229,128,128,3,14,23,1,23, + 111,54,251,101,53,58,115,127,57,249,60,27,166,94,173,74,219,70,169,151, + 252,137,22,97,125,227,235,197,159,91,44,204,253,172,236,250,252,188,117,235, + 181,168,98,19,104,241,113,209,245,106,143,197,169,20,219,230,157,37,107,225, + 190,240,166,42,69,181,252,252,214,195,112,125,106,198,213,130,237,229,182,144, + 49,1,7,28,174,151,125,192,101,178,160,51,253,114,177,146,100,186,246,125, + 51,213,32,219,211,78,218,30,114,153,226,146,99,197,199,146,9,185,109,162, + 104,145,55,135,74,166,70,56,141,202,27,205,161,219,154,69,179,239,215,188, + 185,102,241,66,110,41,204,67,233,106,115,3,95,172,171,77,194,190,222,104, + 214,44,212,174,54,248,199,86,4,28,112,184,8,184,171,88,14,98,89,175, + 225,45,151,21,43,218,54,183,107,221,182,50,174,59,95,9,188,98,243,232, + 213,230,122,173,207,1,92,15,158,172,198,120,181,224,41,246,135,21,239,23, + 237,50,37,35,59,222,213,100,131,128,94,78,181,182,34,2,14,56,92,4, + 220,117,108,15,184,194,92,182,116,36,230,210,182,11,126,49,44,226,149,233, + 12,89,83,232,245,250,255,204,207,110,6,222,181,194,172,168,84,90,200,113, + 170,91,130,217,203,39,211,111,255,157,73,90,110,123,8,174,127,189,248,220, + 138,143,95,142,8,56,224,112,17,112,47,145,226,116,133,171,77,93,88,111, + 162,43,62,190,218,156,174,109,174,21,58,215,178,237,119,95,239,118,219,68, + 108,115,14,203,160,44,150,199,18,1,7,28,46,2,238,22,17,199,81,62, + 80,35,11,151,172,127,107,91,184,188,148,129,179,173,153,241,229,220,244,184, + 43,2,14,56,92,135,190,31,28,118,151,53,103,238,50,26,241,165,172,77, + 109,251,93,132,27,128,155,29,53,56,224,6,161,6,7,28,46,254,7,2, + 0,172,68,192,1,0,172,244,226,134,225,237,122,80,199,161,217,19,0,112, + 168,94,236,32,147,150,164,191,36,233,17,153,112,252,13,73,255,254,165,62, + 41,0,0,254,172,118,173,193,185,146,30,148,244,155,146,126,79,210,95,40, + 124,239,191,74,122,207,202,65,169,193,1,0,14,217,174,1,247,152,164,255, + 152,222,47,75,122,74,210,93,233,227,161,164,246,202,65,9,56,0,192,33, + 219,101,144,201,43,181,12,183,207,75,90,72,122,131,164,39,36,125,77,210, + 155,111,204,169,1,0,240,173,219,165,15,238,63,21,238,255,183,244,246,130, + 76,147,37,0,0,55,165,235,53,81,30,149,244,180,164,90,250,248,30,73, + 231,174,123,80,154,40,1,0,135,236,106,53,184,79,72,170,75,234,104,25, + 110,146,244,175,37,141,100,150,199,255,176,164,139,55,242,228,0,0,248,86, + 109,235,131,171,72,202,22,26,108,22,190,30,72,154,200,212,250,230,146,54, + 119,220,4,0,224,38,113,189,38,202,95,145,244,222,244,254,5,73,39,37, + 93,125,243,176,236,160,52,81,2,0,14,217,245,6,153,124,127,225,254,51, + 146,34,125,58,121,133,18,253,85,253,225,103,63,162,239,122,231,47,233,171, + 238,251,244,74,157,213,165,115,95,213,241,51,210,147,242,244,81,86,0,3, + 0,28,174,107,37,209,81,45,155,42,37,233,191,72,146,158,212,83,250,170, + 126,70,175,126,247,199,245,255,126,249,81,73,82,146,252,142,142,159,249,130, + 20,255,248,13,59,83,0,0,94,132,107,213,224,94,191,246,248,51,43,143, + 158,212,223,148,244,1,189,82,79,43,92,188,73,79,149,159,100,237,102,0, + 192,205,226,90,137,244,134,181,199,95,217,40,113,251,43,36,105,97,194,13, + 0,128,155,199,181,2,238,254,194,253,95,219,90,98,244,130,20,140,79,191, + 148,39,4,0,192,75,161,24,112,119,200,140,170,204,70,86,222,87,248,94, + 182,154,137,163,179,233,212,129,87,234,235,122,224,109,63,173,47,61,46,221, + 189,186,22,37,0,0,135,45,11,184,79,72,250,83,73,177,204,4,111,105, + 25,112,79,106,185,68,87,162,223,253,165,190,14,126,57,210,84,175,145,163, + 223,212,60,144,106,201,121,221,167,191,247,109,59,107,0,0,174,35,171,173, + 21,231,173,125,65,210,191,146,89,96,249,105,73,103,101,22,88,54,62,153, + 156,212,83,250,230,202,81,94,161,7,245,53,253,118,126,208,143,186,215,157, + 43,7,0,192,141,148,5,220,63,148,244,145,181,239,253,51,73,255,64,223, + 194,138,37,76,244,6,0,28,182,226,74,38,175,151,105,178,156,73,250,226, + 159,233,160,4,28,0,224,144,57,95,249,202,87,118,10,163,75,151,46,237, + 116,192,47,125,105,183,114,63,255,243,119,93,191,208,139,240,133,47,252,197, + 157,202,125,236,99,255,98,167,114,79,61,245,200,78,229,206,158,253,245,157, + 202,53,155,187,236,76,36,125,240,131,31,220,169,156,227,236,186,87,237,110, + 62,240,129,221,62,147,188,239,125,79,236,84,238,252,249,243,59,149,187,255, + 83,159,218,169,220,174,94,119,250,244,110,5,191,184,227,103,184,31,253,209, + 157,138,125,252,147,159,220,169,220,175,254,243,218,245,11,189,8,167,95,119, + 122,167,114,255,246,245,187,61,223,143,255,238,110,207,247,147,255,121,183,231, + 251,232,193,110,107,63,124,232,67,63,176,83,185,15,127,248,235,59,149,251, + 151,63,123,118,167,114,255,244,205,191,181,83,185,55,77,118,155,9,245,169, + 55,189,99,167,114,175,125,211,100,167,114,71,235,207,237,84,238,145,71,222, + 185,83,185,95,211,201,157,202,253,196,99,71,118,42,247,241,51,239,189,126, + 33,73,63,252,170,207,92,191,144,164,79,223,254,179,59,149,123,252,241,199, + 119,42,199,204,108,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56, + 0,128,149,8,56,0,128,149,8,56,0,128,149,8,56,0,128,149,8,56, + 0,128,149,8,56,0,128,149,28,150,213,2,0,216,200,249,173,143,126,116, + 167,128,27,252,244,191,219,233,128,223,175,127,179,83,185,79,124,226,249,157, + 202,61,246,216,99,59,149,27,12,118,203,233,223,255,253,254,78,229,30,122, + 168,179,83,185,39,158,216,109,233,170,93,151,48,187,255,254,227,47,233,241, + 62,244,161,191,188,83,185,36,249,153,157,202,61,249,100,253,250,133,36,61, + 253,244,110,75,147,189,227,29,127,103,167,114,15,61,244,224,78,229,78,57, + 167,118,42,119,110,113,110,167,114,251,251,251,59,149,187,120,241,226,78,229, + 222,253,192,187,119,42,167,221,94,94,105,183,95,171,95,120,254,23,119,42, + 247,143,119,92,202,238,215,255,198,175,236,84,238,115,157,207,237,84,110,215, + 255,71,159,254,244,151,118,42,247,240,195,247,95,191,144,164,71,31,125,104, + 167,114,184,53,209,68,9,0,176,18,1,7,0,176,18,1,7,0,176,18, + 1,7,0,176,18,1,7,0,176,18,1,7,0,176,18,1,7,0,176,18, + 1,7,0,176,18,1,7,0,176,18,75,117,1,0,172,68,13,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,37,2,14,0,96,37,2,14,0,96,37,2,14,0,96, + 37,2,14,0,96,165,255,15,126,76,92,4,3,48,206,195,0,0,0,0, + 73,69,78,68,174,66,96,130, diff --git a/src/prefs/PlaybackPrefs.cpp b/src/prefs/PlaybackPrefs.cpp index eb816bd71..f9436a468 100644 --- a/src/prefs/PlaybackPrefs.cpp +++ b/src/prefs/PlaybackPrefs.cpp @@ -19,13 +19,25 @@ *//********************************************************************/ #include "../Audacity.h" +#include "PlaybackPrefs.h" #include #include #include "../ShuttleGui.h" +#include "../Prefs.h" -#include "PlaybackPrefs.h" +namespace { + const wxChar *PinnedHeadPreferenceKey() + { + return wxT("/AudioIO/PinnedHead"); + } + + bool PinnedHeadPreferenceDefault() + { + return false; + } +} PlaybackPrefs::PlaybackPrefs(wxWindow * parent) : PrefsPanel(parent, _("Playback")) @@ -113,6 +125,11 @@ void PlaybackPrefs::PopulateOrExchange(ShuttleGui & S) S.EndThreeColumn(); } S.EndStatic(); + + // This affects recording too, though it is in playback preferences. + S.TieCheckBox(_("Pinned playback/recording head"), + PinnedHeadPreferenceKey(), + PinnedHeadPreferenceDefault()); } bool PlaybackPrefs::Apply() @@ -123,8 +140,21 @@ bool PlaybackPrefs::Apply() return true; } +bool PlaybackPrefs::GetPinnedHeadPreference() +{ + return gPrefs->ReadBool(PinnedHeadPreferenceKey(), PinnedHeadPreferenceDefault()); +} + +void PlaybackPrefs::SetPinnedHeadPreference(bool value, bool flush) +{ + gPrefs->Write(PinnedHeadPreferenceKey(), value); + if(flush) + gPrefs->Flush(); +} + PrefsPanel *PlaybackPrefsFactory::Create(wxWindow *parent) { wxASSERT(parent); // to justify safenew return safenew PlaybackPrefs(parent); } + diff --git a/src/prefs/PlaybackPrefs.h b/src/prefs/PlaybackPrefs.h index 0385498d6..43f176b47 100644 --- a/src/prefs/PlaybackPrefs.h +++ b/src/prefs/PlaybackPrefs.h @@ -27,6 +27,9 @@ class PlaybackPrefs final : public PrefsPanel virtual ~PlaybackPrefs(); bool Apply() override; + static bool GetPinnedHeadPreference(); + static void SetPinnedHeadPreference(bool value, bool flush = false); + private: void Populate(); void PopulateOrExchange(ShuttleGui & S); diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index 9d33f3d17..de8b1330a 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -68,6 +68,7 @@ #include "../widgets/Meter.h" #include "../tracks/ui/Scrubbing.h" +#include "../prefs/PlaybackPrefs.h" IMPLEMENT_CLASS(ControlToolBar, ToolBar); @@ -129,7 +130,7 @@ AButton *ControlToolBar::MakeButton(teBmps eEnabledUp, teBmps eEnabledDown, teBm bool processdownevents, const wxChar *label) { - AButton *r = ToolBar::MakeButton( + AButton *r = ToolBar::MakeButton(this, bmpRecoloredUpLarge, bmpRecoloredDownLarge, bmpRecoloredHiliteLarge, eEnabledUp, eEnabledDown, eDisabled, wxWindowID(id), @@ -167,6 +168,8 @@ void ControlToolBar::Populate() bmpCutPreview, bmpCutPreview, bmpCutPreviewDisabled); MakeAlternateImages(*mPlay, 3, bmpScrub, bmpScrub, bmpScrubDisabled); + MakeAlternateImages(*mPlay, 4, + bmpSeek, bmpSeek, bmpSeekDisabled); mPlay->FollowModifierKeys(); mStop = MakeButton( bmpStop, bmpStop, bmpStopDisabled , @@ -635,15 +638,16 @@ int ControlToolBar::PlayPlayRegion(const SelectedRegion &selectedRegion, NoteTrackArray(), #endif tcp0, tcp1, myOptions); - } else - { + } + else { // Cannot create cut preview tracks, clean up and exit SetPlay(false); SetStop(false); SetRecord(false); return -1; } - } else { + } + else { // Lifted the following into AudacityProject::GetDefaultPlayOptions() /* if (!timetrack) { @@ -682,6 +686,8 @@ int ControlToolBar::PlayPlayRegion(const SelectedRegion &selectedRegion, return -1; } + StartScrollingIfPreferred(); + // Let other UI update appearance if (p) p->GetRulerPanel()->HideQuickPlayIndicator(); @@ -745,25 +751,17 @@ void ControlToolBar::OnKeyEvent(wxKeyEvent & event) void ControlToolBar::OnPlay(wxCommandEvent & WXUNUSED(evt)) { - auto doubleClicked = mPlay->IsDoubleClicked(); - mPlay->ClearDoubleClicked(); - auto p = GetActiveProject(); - if (doubleClicked) - p->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Centered); - else { - if (!CanStopAudioStream()) - return; + if (!CanStopAudioStream()) + return; - StopPlaying(); + StopPlaying(); - if (p) p->TP_DisplaySelection(); + if (p) p->TP_DisplaySelection(); - PlayDefault(); - UpdateStatusBar(p); - } + PlayDefault(); + UpdateStatusBar(p); } void ControlToolBar::OnStop(wxCommandEvent & WXUNUSED(evt)) @@ -792,11 +790,11 @@ void ControlToolBar::PlayDefault() void ControlToolBar::StopPlaying(bool stopStream /* = true*/) { + StopScrolling(); + AudacityProject *project = GetActiveProject(); if(project) { - project->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Off); // Let scrubbing code do some appearance change project->GetScrubber().StopScrubbing(); } @@ -853,29 +851,6 @@ void ControlToolBar::Pause() void ControlToolBar::OnRecord(wxCommandEvent &evt) { - auto doubleClicked = mRecord->IsDoubleClicked(); - mRecord->ClearDoubleClicked(); - - if (doubleClicked) { - // Display a fixed recording head while scrolling the waves continuously. - // If you overdub, you may want to anticipate some context in existing tracks, - // so center the head. If not, put it rightmost to display as much wave as we can. - const auto project = GetActiveProject(); - bool duplex; - gPrefs->Read(wxT("/AudioIO/Duplex"), &duplex, true); - - if (duplex) { - // See if there is really anything being overdubbed - if (gAudioIO->GetNumPlaybackChannels() == 0) - // No. - duplex = false; - } - - using Mode = AudacityProject::PlaybackScroller::Mode; - project->GetPlaybackScroller().Activate(duplex ? Mode::Centered : Mode::Right); - return; - } - if (gAudioIO->IsBusy()) { if (!CanStopAudioStream() || 0 == gAudioIO->GetNumCaptureChannels()) mRecord->PopUp(); @@ -1092,6 +1067,8 @@ void ControlToolBar::OnRecord(wxCommandEvent &evt) if (success) { p->SetAudioIOToken(token); mBusyProject = p; + + StartScrollingIfPreferred(); } else { if (shifted) { @@ -1278,3 +1255,60 @@ void ControlToolBar::UpdateStatusBar(AudacityProject *pProject) { pProject->GetStatusBar()->SetStatusText(StateForStatusBar(), stateStatusBarField); } + +void ControlToolBar::StartScrollingIfPreferred() +{ + if (PlaybackPrefs::GetPinnedHeadPreference()) + StartScrolling(); +#ifdef __WXMAC__ + else if (::GetActiveProject()->GetScrubber().HasStartedScrubbing()) { + // PRL: cause many "unnecessary" refreshes. For reasons I don't understand, + // doing this causes wheel rotation events (mapped from the double finger vertical + // swipe) to be delivered more uniformly to the application, so that speed control + // works better. + ::GetActiveProject()->GetPlaybackScroller().Activate + (AudacityProject::PlaybackScroller::Mode::Refresh); + } +#endif + else + StopScrolling(); +} + +void ControlToolBar::StartScrolling() +{ + using Mode = AudacityProject::PlaybackScroller::Mode; + const auto project = GetActiveProject(); + if (project) { + auto mode = Mode::Centered; + + if (gAudioIO->GetNumCaptureChannels() > 0) { + // recording + + // Display a fixed recording head while scrolling the waves continuously. + // If you overdub, you may want to anticipate some context in existing tracks, + // so center the head. If not, put it rightmost to display as much wave as we can. + bool duplex; + gPrefs->Read(wxT("/AudioIO/Duplex"), &duplex, true); + + if (duplex) { + // See if there is really anything being overdubbed + if (gAudioIO->GetNumPlaybackChannels() == 0) + // No. + duplex = false; + } + + if (!duplex) + mode = Mode::Right; + } + + project->GetPlaybackScroller().Activate(mode); + } +} + +void ControlToolBar::StopScrolling() +{ + const auto project = GetActiveProject(); + if(project) + project->GetPlaybackScroller().Activate + (AudacityProject::PlaybackScroller::Mode::Off); +} diff --git a/src/toolbars/ControlToolBar.h b/src/toolbars/ControlToolBar.h index 989e3a168..29fc21893 100644 --- a/src/toolbars/ControlToolBar.h +++ b/src/toolbars/ControlToolBar.h @@ -62,7 +62,7 @@ class ControlToolBar final : public ToolBar { // Choice among the appearances of the play button: enum class PlayAppearance { - Straight, Looped, CutPreview, Scrub + Straight, Looped, CutPreview, Scrub, Seek }; //These allow buttons to be controlled externally: @@ -106,6 +106,11 @@ class ControlToolBar final : public ToolBar { int WidthForStatusBar(wxStatusBar* const); void UpdateStatusBar(AudacityProject *pProject); + // Starting and stopping of scrolling display + void StartScrollingIfPreferred(); + void StartScrolling(); + void StopScrolling(); + private: AButton *MakeButton(teBmps eEnabledUp, teBmps eEnabledDown, teBmps eDisabled, diff --git a/src/toolbars/EditToolBar.cpp b/src/toolbars/EditToolBar.cpp index b3a5b73b8..b8dec35eb 100644 --- a/src/toolbars/EditToolBar.cpp +++ b/src/toolbars/EditToolBar.cpp @@ -105,7 +105,7 @@ AButton *EditToolBar::AddButton( { AButton *&r = mButtons[id]; - r = ToolBar::MakeButton( + r = ToolBar::MakeButton(this, bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, eEnabledUp, eEnabledDown, eDisabled, wxWindowID(id), diff --git a/src/toolbars/ToolBar.cpp b/src/toolbars/ToolBar.cpp index ebec57e8c..d98a08dcf 100644 --- a/src/toolbars/ToolBar.cpp +++ b/src/toolbars/ToolBar.cpp @@ -700,6 +700,7 @@ void ToolBar::MakeButtonBackgroundsSmall() } /// Makes a button and its four different state bitmaps +/// @param parent Parent window for the button. /// @param eUp Background for when button is Up. /// @param eDown Background for when button is Down. /// @param eHilite Background for when button is Hilit. @@ -710,7 +711,8 @@ void ToolBar::MakeButtonBackgroundsSmall() /// @param placement Placement position /// @param processdownevents true iff button handles down events. /// @param size Size of the background. -AButton * ToolBar::MakeButton(teBmps eUp, +AButton * ToolBar::MakeButton(wxWindow *parent, + teBmps eUp, teBmps eDown, teBmps eHilite, teBmps eStandardUp, @@ -731,7 +733,7 @@ AButton * ToolBar::MakeButton(teBmps eUp, wxImagePtr disable2 (OverlayImage(eUp, eDisabled, xoff, yoff)); AButton * button = - new AButton(this, id, placement, size, *up2, *hilite2, *down2, + new AButton(parent, id, placement, size, *up2, *hilite2, *down2, *disable2, processdownevents); return button; diff --git a/src/toolbars/ToolBar.h b/src/toolbars/ToolBar.h index 4f1b1b198..37a94b892 100644 --- a/src/toolbars/ToolBar.h +++ b/src/toolbars/ToolBar.h @@ -121,9 +121,11 @@ class ToolBar /* not final */ : public wxPanel virtual int GetInitialWidth() { return -1; } virtual int GetMinToolbarWidth() { return GetInitialWidth(); } virtual wxSize GetDockedSize() { return GetMinSize(); } - protected: - AButton *MakeButton(teBmps eUp, + public: + static + AButton *MakeButton(wxWindow *parent, + teBmps eUp, teBmps eDown, teBmps eHilite, teBmps eStandardUp, @@ -144,6 +146,7 @@ class ToolBar /* not final */ : public wxPanel teBmps eDisabled, wxSize size); + protected: void SetButton(bool down, AButton *button); void MakeMacRecoloredImage(teBmps eBmpOut, teBmps eBmpIn); diff --git a/src/toolbars/ToolsToolBar.cpp b/src/toolbars/ToolsToolBar.cpp index 22cf8af67..20f0f3d03 100644 --- a/src/toolbars/ToolsToolBar.cpp +++ b/src/toolbars/ToolsToolBar.cpp @@ -156,7 +156,7 @@ void ToolsToolBar::UpdatePrefs() AButton * ToolsToolBar::MakeTool( teBmps eTool, int id, const wxChar *label) { - AButton *button = ToolBar::MakeButton( + AButton *button = ToolBar::MakeButton(this, bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, eTool, eTool, eTool, wxWindowID(id), diff --git a/src/toolbars/TranscriptionToolBar.cpp b/src/toolbars/TranscriptionToolBar.cpp index 1b6e44165..c4f22af04 100644 --- a/src/toolbars/TranscriptionToolBar.cpp +++ b/src/toolbars/TranscriptionToolBar.cpp @@ -147,7 +147,7 @@ AButton *TranscriptionToolBar::AddButton( { AButton *&r = mButtons[id]; - r = ToolBar::MakeButton( + r = ToolBar::MakeButton(this, bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, eFore, eFore, eDisabled, wxWindowID(id), @@ -476,23 +476,11 @@ void TranscriptionToolBar::OnPlaySpeed(wxCommandEvent & WXUNUSED(event)) { auto button = mButtons[TTB_PlaySpeed]; - auto doubleClicked = button->IsDoubleClicked(); - button->ClearDoubleClicked(); - - if (doubleClicked) { - GetActiveProject()->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Centered); - - // Pop up the button - SetButton(false, button); - } - else { - // Let control have precedence over shift - const bool cutPreview = mButtons[TTB_PlaySpeed]->WasControlDown(); - const bool looped = !cutPreview && - button->WasShiftDown(); - PlayAtSpeed(looped, cutPreview); - } + // Let control have precedence over shift + const bool cutPreview = mButtons[TTB_PlaySpeed]->WasControlDown(); + const bool looped = !cutPreview && + button->WasShiftDown(); + PlayAtSpeed(looped, cutPreview); } void TranscriptionToolBar::OnSpeedSlider(wxCommandEvent& WXUNUSED(event)) diff --git a/src/tracks/ui/PlayIndicatorOverlay.cpp b/src/tracks/ui/PlayIndicatorOverlay.cpp index 512097028..2e35bfece 100644 --- a/src/tracks/ui/PlayIndicatorOverlay.cpp +++ b/src/tracks/ui/PlayIndicatorOverlay.cpp @@ -99,7 +99,7 @@ void PlayIndicatorOverlayBase::Draw(OverlayPanel &panel, wxDC &dc) else if(auto ruler = dynamic_cast(&panel)) { wxASSERT(!mIsMaster); - ruler->DoDrawIndicator(&dc, mLastIndicatorX, !rec, IndicatorMediumWidth, false); + ruler->DoDrawIndicator(&dc, mLastIndicatorX, !rec, IndicatorMediumWidth, false, false); } else wxASSERT(false); diff --git a/src/tracks/ui/Scrubbing.cpp b/src/tracks/ui/Scrubbing.cpp index 4351e4aee..41bee5f8a 100644 --- a/src/tracks/ui/Scrubbing.cpp +++ b/src/tracks/ui/Scrubbing.cpp @@ -19,6 +19,7 @@ Paul Licameli split from TrackPanel.cpp #include "../../TrackPanelCell.h" #include "../../TrackPanelCellIterator.h" #include "../../commands/CommandFunctors.h" +#include "../../prefs/PlaybackPrefs.h" #include "../../toolbars/ControlToolBar.h" #undef USE_TRANSCRIPTION_TOOLBAR @@ -32,9 +33,6 @@ Paul Licameli split from TrackPanel.cpp #include -// Conditional compilation switch for making scrub menu items checkable -#define CHECKABLE_SCRUB_MENU_ITEMS - enum { // PRL: // Mouse must move at least this far to distinguish ctrl-drag to scrub @@ -219,37 +217,33 @@ namespace { wxString label; wxString status; void (Scrubber::*memFn)(wxCommandEvent&); - bool scroll; bool seek; + bool (Scrubber::*StatusTest)() const; const wxString &GetStatus() const { return status; } } menuItems[] = { /* i18n-hint: These commands assist the user in finding a sound by ear. ... "Scrubbing" is variable-speed playback, ... "Seeking" is normal speed playback but with skips, ... - "Scrolling" keeps the playback position at a fixed place on screen while the waveform moves */ { wxT("Scrub"), XO("&Scrub"), XO("Scrubbing"), - &Scrubber::OnScrub, false, false }, - - { wxT("ScrollScrub"), XO("Sc&rolling Scrub"), XO("Scrolling Scrub"), - &Scrubber::OnScrollScrub, true, false }, + &Scrubber::OnScrub, false, &Scrubber::Scrubs }, { wxT("Seek"), XO("See&k"), XO("Seeking"), - &Scrubber::OnSeek, false, true }, + &Scrubber::OnSeek, true, &Scrubber::Seeks }, - { wxT("ScrollSeek"), XO("Scro&lling Seek"), XO("Scrolling Seek"), - &Scrubber::OnScrollSeek, true, true } + { wxT("StartScrubSeek"), XO("Star&t"), XO(""), + &Scrubber::OnStart, true, nullptr }, }; - enum { nMenuItems = sizeof(menuItems) / sizeof(*menuItems) }; + enum { nMenuItems = sizeof(menuItems) / sizeof(*menuItems), StartMenuItem = 2 }; - inline const MenuItem &FindMenuItem(bool scroll, bool seek) + // This never finds the last item: + inline const MenuItem &FindMenuItem(bool seek) { return *std::find_if(menuItems, menuItems + nMenuItems, [=](const MenuItem &item) { - return scroll == item.scroll && - seek == item.seek; + return seek == item.seek; } ); } @@ -258,16 +252,13 @@ namespace { void Scrubber::MarkScrubStart( // Assume xx is relative to the left edge of TrackPanel! - wxCoord xx, bool smoothScrolling, bool alwaysSeeking + wxCoord xx, bool smoothScrolling ) { - UncheckAllMenuItems(); - // Don't actually start scrubbing, but collect some information // needed for the decision to start scrubbing later when handling // drag events. mSmoothScrollingScrub = smoothScrolling; - mAlwaysSeeking = alwaysSeeking; ControlToolBar * const ctb = mProject->GetControlToolBar(); @@ -278,14 +269,14 @@ void Scrubber::MarkScrubStart( // scrubber state mProject->SetAudioIOToken(0); - ctb->SetPlay(true, ControlToolBar::PlayAppearance::Scrub); + ctb->SetPlay(true, mSeeking + ? ControlToolBar::PlayAppearance::Seek + : ControlToolBar::PlayAppearance::Scrub); ctb->UpdateStatusBar(mProject); mScrubStartPosition = xx; mOptions.startClockTimeMillis = ::wxGetLocalTimeMillis(); - - CheckMenuItem(); } #ifdef EXPERIMENTAL_SCRUBBING_SUPPORT @@ -358,10 +349,11 @@ bool Scrubber::MaybeStartScrubbing(wxCoord xx) mOptions.maxSample = lrint(std::max(0.0, mProject->GetTracks()->GetEndTime()) * options.rate); mOptions.minStutter = - lrint(std::max(0.0, MinStutter) * options.rate); + mDragging ? 0.0 : lrint(std::max(0.0, MinStutter) * options.rate); - ControlToolBar::PlayAppearance appearance = - ControlToolBar::PlayAppearance::Scrub; + ControlToolBar::PlayAppearance appearance = mSeeking + ? ControlToolBar::PlayAppearance::Seek + : ControlToolBar::PlayAppearance::Scrub; const bool cutPreview = false; const bool backwards = time1 < time0; #ifdef EXPERIMENTAL_SCRUBBING_SCROLL_WHEEL @@ -382,7 +374,6 @@ bool Scrubber::MaybeStartScrubbing(wxCoord xx) mOptions.startClockTimeMillis = ::wxGetLocalTimeMillis(); if (IsScrubbing()) { - ActivateScroller(); mPaused = false; mLastScrubPosition = xx; @@ -475,12 +466,12 @@ void Scrubber::ContinueScrubbingUI() { // Show the correct status for seeking. - bool backup = mAlwaysSeeking; - mAlwaysSeeking = seek; + bool backup = mSeeking; + mSeeking = seek; const auto ctb = mProject->GetControlToolBar(); if (ctb) ctb->UpdateStatusBar(mProject); - mAlwaysSeeking = backup; + mSeeking = backup; } if (seek) @@ -505,11 +496,7 @@ void Scrubber::StopScrubbing() mPoller->Stop(); - UncheckAllMenuItems(); - mScrubStartPosition = -1; - mProject->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Off); mDragging = false; if (!IsScrubbing()) @@ -779,31 +766,13 @@ Scrubber &ScrubbingOverlay::GetScrubber() bool Scrubber::PollIsSeeking() { - return mDragging || (mAlwaysSeeking || ::wxGetMouseState().LeftIsDown()); + return mDragging || (mSeeking || ::wxGetMouseState().LeftIsDown()); } -void Scrubber::ActivateScroller() -{ - using Mode = AudacityProject::PlaybackScroller::Mode; - mProject->GetPlaybackScroller().Activate(mSmoothScrollingScrub - ? Mode::Centered - : -#ifdef __WXMAC__ - // PRL: cause many "unnecessary" refreshes. For reasons I don't understand, - // doing this causes wheel rotation events (mapped from the double finger vertical - // swipe) to be delivered more uniformly to the application, so that spped control - // works better. - Mode::Refresh -#else - Mode::Off -#endif - ); -} - -void Scrubber::DoScrub(bool scroll, bool seek) +void Scrubber::DoScrub() { const bool wasScrubbing = IsScrubbing(); - const bool match = (scroll == mSmoothScrollingScrub && seek == mAlwaysSeeking); + const bool scroll = PlaybackPrefs::GetPinnedHeadPreference(); if (!wasScrubbing) { auto tp = mProject->GetTrackPanel(); wxCoord xx = tp->ScreenToClient(::wxGetMouseState().GetPosition()).x; @@ -814,67 +783,65 @@ void Scrubber::DoScrub(bool scroll, bool seek) const auto offset = tp->GetLeftOffset(); xx = (std::max(offset, std::min(offset + width - 1, xx))); - MarkScrubStart(xx, scroll, seek); + MarkScrubStart(xx, scroll); } - else if(!match) { - mSmoothScrollingScrub = scroll; - ActivateScroller(); - mAlwaysSeeking = seek; - UncheckAllMenuItems(); - CheckMenuItem(); +} +void Scrubber::OnScrubOrSeek(bool &toToggle, bool &other) +{ + toToggle = !toToggle; + if (toToggle) + other = false; + + if (HasStartedScrubbing()) { // Show the correct status. const auto ctb = mProject->GetControlToolBar(); ctb->UpdateStatusBar(mProject); } - else { - // This will call back to Scrubber::StopScrubbing - const auto ctb = mProject->GetControlToolBar(); - ctb->StopPlaying(); - } + + auto ruler = mProject->GetRulerPanel(); + if (ruler) + // Update button images + ruler->UpdateButtonStates(); + + CheckMenuItem(); } void Scrubber::OnScrub(wxCommandEvent&) { - DoScrub(false, false); -} - -void Scrubber::OnScrollScrub(wxCommandEvent&) -{ - DoScrub(true, false); + OnScrubOrSeek(mScrubbing, mSeeking); } void Scrubber::OnSeek(wxCommandEvent&) { - DoScrub(false, true); + OnScrubOrSeek(mSeeking, mScrubbing); } -void Scrubber::OnScrollSeek(wxCommandEvent&) +void Scrubber::OnStart(wxCommandEvent&) { - DoScrub(true, true); + DoScrub(); } enum { CMD_ID = 8000 }; BEGIN_EVENT_TABLE(Scrubber, wxEvtHandler) EVT_MENU(CMD_ID, Scrubber::OnScrub) - EVT_MENU(CMD_ID + 1, Scrubber::OnScrollScrub) - EVT_MENU(CMD_ID + 2, Scrubber::OnSeek) - EVT_MENU(CMD_ID + 3, Scrubber::OnScrollSeek) + EVT_MENU(CMD_ID + 1, Scrubber::OnSeek) + EVT_MENU(CMD_ID + 2, Scrubber::OnStart) END_EVENT_TABLE() BEGIN_EVENT_TABLE(Scrubber::Forwarder, wxEvtHandler) EVT_MOUSE_EVENTS(Scrubber::Forwarder::OnMouse) END_EVENT_TABLE() -static_assert(nMenuItems == 4, "wrong number of items"); +static_assert(nMenuItems == 3, "wrong number of items"); const wxString &Scrubber::GetUntranslatedStateString() const { static wxString empty; if (HasStartedScrubbing()) { - auto &item = FindMenuItem(mSmoothScrollingScrub, mAlwaysSeeking); + auto &item = FindMenuItem(mSeeking); return item.status; } else @@ -885,15 +852,19 @@ std::vector Scrubber::GetAllUntranslatedStatusStrings() { using namespace std; vector results; - transform(menuItems, menuItems + nMenuItems, back_inserter(results), - mem_fun_ref(&MenuItem::GetStatus)); + for (const auto &item : menuItems) { + const auto &status = item.GetStatus(); + if (!status.empty()) + results.push_back(status); + } return move(results); } bool Scrubber::CanScrub() const { + // Return the enabled state for the menu item that really launches the scrub or seek. auto cm = mProject->GetCommandManager(); - return cm->GetEnabled(menuItems[0].name); + return cm->GetEnabled(menuItems[StartMenuItem].name); } void Scrubber::AddMenuItems() @@ -904,15 +875,14 @@ void Scrubber::AddMenuItems() cm->BeginSubMenu(_("Scru&bbing")); for (const auto &item : menuItems) { -#ifdef CHECKABLE_SCRUB_MENU_ITEMS - cm->AddCheck(item.name, wxGetTranslation(item.label), - FNT(Scrubber, this, item.memFn), - false, flags, mask); -#else - cm->AddItem(item.name, wxGetTranslation(item.label), - FNT(Scrubber, this, item.memFn), - flags, mask); -#endif + if (!item.GetStatus().empty()) + cm->AddCheck(item.name, wxGetTranslation(item.label), + FNT(Scrubber, this, item.memFn), + false, flags, mask); + else + cm->AddItem(item.name, wxGetTranslation(item.label), + FNT(Scrubber, this, item.memFn), + flags, mask); } cm->EndSubMenu(); CheckMenuItem(); @@ -922,42 +892,22 @@ void Scrubber::PopulateMenu(wxMenu &menu) { int id = CMD_ID; auto cm = mProject->GetCommandManager(); - const MenuItem *checkedItem = - HasStartedScrubbing() - ? &FindMenuItem(mSmoothScrollingScrub, mAlwaysSeeking) - : nullptr; + const MenuItem *checkedItem = &FindMenuItem(mSeeking); for (const auto &item : menuItems) { if (cm->GetEnabled(item.name)) { -#ifdef CHECKABLE_SCRUB_MENU_ITEMS menu.AppendCheckItem(id, item.label); if(&item == checkedItem) menu.FindItem(id)->Check(); -#else - menu.Append(id, item.label); -#endif } ++id; } } -void Scrubber::UncheckAllMenuItems() -{ -#ifdef CHECKABLE_SCRUB_MENU_ITEMS - auto cm = mProject->GetCommandManager(); - for (const auto &item : menuItems) - cm->Check(item.name, false); -#endif -} - void Scrubber::CheckMenuItem() { -#ifdef CHECKABLE_SCRUB_MENU_ITEMS - if(HasStartedScrubbing()) { - auto cm = mProject->GetCommandManager(); - auto item = FindMenuItem(mSmoothScrollingScrub, mAlwaysSeeking); - cm->Check(item.name, true); - } -#endif + auto cm = mProject->GetCommandManager(); + cm->Check(menuItems[0].name, mScrubbing); + cm->Check(menuItems[1].name, mSeeking); } #endif diff --git a/src/tracks/ui/Scrubbing.h b/src/tracks/ui/Scrubbing.h index 6b0d84f4c..fc73b5a6e 100644 --- a/src/tracks/ui/Scrubbing.h +++ b/src/tracks/ui/Scrubbing.h @@ -24,7 +24,11 @@ class AudacityProject; // Conditionally compile either a separate thead, or else use a timer in the main // thread, to poll the mouse and update scrubbing speed and direction. The advantage of // a thread may be immunity to choppy scrubbing in case redrawing takes too much time. +#ifdef __WXGTK__ +// Unfortunately some things the thread needs to do are not thread safe +#else #define USE_SCRUB_THREAD +#endif // For putting an increment of work in the scrubbing queue struct ScrubbingOptions { @@ -67,11 +71,7 @@ public: ~Scrubber(); // Assume xx is relative to the left edge of TrackPanel! - void MarkScrubStart( - wxCoord xx, bool smoothScrolling, - bool alwaysSeeking // if false, can switch seeking or scrubbing - // by mouse button state - ); + void MarkScrubStart(wxCoord xx, bool smoothScrolling); // Returns true iff the event should be considered consumed by this: // Assume xx is relative to the left edge of TrackPanel! @@ -94,9 +94,14 @@ public: bool IsScrollScrubbing() const // If true, implies HasStartedScrubbing() { return mSmoothScrollingScrub; } + void SetScrollScrubbing(bool value) + { mSmoothScrollingScrub = value; } - bool IsAlwaysSeeking() const - { return mAlwaysSeeking; } + bool Seeks() const + { return mSeeking; } + + bool Scrubs() const + { return mScrubbing; } bool ShouldDrawScrubSpeed(); double FindScrubSpeed(bool seeking, double time) const; @@ -114,12 +119,13 @@ public: // For popup void PopulateMenu(wxMenu &menu); + void OnScrubOrSeek(bool &toToggle, bool &other); void OnScrub(wxCommandEvent&); - void OnScrollScrub(wxCommandEvent&); void OnSeek(wxCommandEvent&); - void OnScrollSeek(wxCommandEvent&); + void OnStart(wxCommandEvent&); - // A string to put in the leftmost part of the status bar. + // A string to put in the leftmost part of the status bar + // when scrub or seek is in progress, or else empty. const wxString &GetUntranslatedStateString() const; // All possible status strings. @@ -129,10 +135,8 @@ public: bool IsPaused() const; private: - void ActivateScroller(); - void DoScrub(bool scroll, bool seek); + void DoScrub(); void OnActivateOrDeactivateApp(wxActivateEvent & event); - void UncheckAllMenuItems(); void CheckMenuItem(); // I need this because I can't push the scrubber as an event handler @@ -155,7 +159,12 @@ private: wxCoord mLastScrubPosition {}; bool mScrubSeekPress; bool mSmoothScrollingScrub; - bool mAlwaysSeeking {}; + + // These hold the three-way choice among click-to-scrub, click-to-seek, or disabled. + // Not both true. + bool mScrubbing {}; + bool mSeeking {}; + bool mDragging {}; #ifdef EXPERIMENTAL_SCRUBBING_SCROLL_WHEEL diff --git a/src/widgets/AButton.cpp b/src/widgets/AButton.cpp index e5a730b4f..83667a5d9 100644 --- a/src/widgets/AButton.cpp +++ b/src/widgets/AButton.cpp @@ -392,18 +392,6 @@ void AButton::OnMouseEvent(wxMouseEvent & event) (event.m_x >= 0 && event.m_y >= 0 && event.m_x < clientSize.x && event.m_y < clientSize.y); - if (!mButtonIsDown) - { - // Note that CMD (or CTRL) takes precedence over Shift if both are down - // see also AButton::Listener::OnKeyUp() - if (event.CmdDown() && HasAlternateImages(2)) - mAlternateIdx = 2; - else if (event.ShiftDown() && HasAlternateImages(1)) - mAlternateIdx = 1; - else - mAlternateIdx = 0; - } - if (mEnabled && event.IsButton()) { if (event.ButtonIsDown(wxMOUSE_BTN_ANY)) { mIsClicking = true; diff --git a/src/widgets/Ruler.cpp b/src/widgets/Ruler.cpp index 7750dd9cb..e61c673b4 100644 --- a/src/widgets/Ruler.cpp +++ b/src/widgets/Ruler.cpp @@ -66,6 +66,7 @@ array of Ruler::Label. #include #include +#include "AButton.h" #include "../AColor.h" #include "../AudioIO.h" #include "../Internat.h" @@ -82,10 +83,10 @@ array of Ruler::Label. #include "../Prefs.h" #include "../Snap.h" #include "../tracks/ui/Scrubbing.h" +#include "../prefs/PlaybackPrefs.h" #include "../prefs/TracksPrefs.h" //#define SCRUB_ABOVE -#define RULER_DOUBLE_CLICK using std::min; using std::max; @@ -1790,7 +1791,7 @@ std::pair QuickPlayRulerOverlay::DoGetRectangle(wxSize size) if (x >= 0) { // These dimensions are always sufficient, even if a little // excessive for the small triangle: - const int width = IndicatorBigWidth(); + const int width = IndicatorBigWidth() * 3 / 2; const auto height = IndicatorHeightForWidth(width); const int indsize = width / 2; @@ -1813,12 +1814,14 @@ void QuickPlayRulerOverlay::Draw(OverlayPanel &panel, wxDC &dc) mOldQPIndicatorPos = mNewQPIndicatorPos; if (mOldQPIndicatorPos >= 0) { auto ruler = GetRuler(); + const auto &scrubber = mPartner.mProject->GetScrubber(); auto scrub = ruler->mMouseEventState == AdornedRulerPanel::mesNone && (ruler->mPrevZone == AdornedRulerPanel::StatusChoice::EnteringScrubZone || - (mPartner.mProject->GetScrubber().HasStartedScrubbing())); + (scrubber.HasStartedScrubbing())); + auto seek = scrub && scrubber.Seeks(); auto width = scrub ? IndicatorBigWidth() : IndicatorSmallWidth; - ruler->DoDrawIndicator(&dc, mOldQPIndicatorPos, true, width, scrub); + ruler->DoDrawIndicator(&dc, mOldQPIndicatorPos, true, width, scrub, seek); } } @@ -1916,7 +1919,9 @@ enum { OnAutoScrollID, OnLockPlayRegionID, - OnShowHideScrubbingID, + OnTogglePinnedStateID, + OnScrubID, + OnSeekID, }; BEGIN_EVENT_TABLE(AdornedRulerPanel, OverlayPanel) @@ -1932,20 +1937,19 @@ BEGIN_EVENT_TABLE(AdornedRulerPanel, OverlayPanel) EVT_MENU(OnAutoScrollID, AdornedRulerPanel::OnAutoScroll) EVT_MENU(OnLockPlayRegionID, AdornedRulerPanel::OnLockPlayRegion) - // Scrub bar menu commands - EVT_MENU(OnShowHideScrubbingID, AdornedRulerPanel::OnToggleScrubbing) - - // Key events, to navigate buttons - EVT_COMMAND(wxID_ANY, EVT_CAPTURE_KEY, AdornedRulerPanel::OnCaptureKey) - EVT_KEY_DOWN(AdornedRulerPanel::OnKeyDown) - - // Correct management of track focus - EVT_SET_FOCUS(AdornedRulerPanel::OnSetFocus) - EVT_KILL_FOCUS(AdornedRulerPanel::OnKillFocus) - // Pop up menus on Windows EVT_CONTEXT_MENU(AdornedRulerPanel::OnContextMenu) + EVT_COMMAND( OnTogglePinnedStateID, + wxEVT_COMMAND_BUTTON_CLICKED, + AdornedRulerPanel::OnTogglePinnedState ) + EVT_COMMAND( OnScrubID, + wxEVT_COMMAND_BUTTON_CLICKED, + AdornedRulerPanel::OnScrub ) + EVT_COMMAND( OnSeekID, + wxEVT_COMMAND_BUTTON_CLICKED, + AdornedRulerPanel::OnSeek ) + END_EVENT_TABLE() AdornedRulerPanel::AdornedRulerPanel(AudacityProject* parent, @@ -1957,6 +1961,9 @@ AdornedRulerPanel::AdornedRulerPanel(AudacityProject* parent, , mProject(parent) , mViewInfo(viewinfo) { + for (auto &button : mButtons) + button = nullptr; + SetLabel( _("Timeline") ); SetName(GetLabel()); SetBackgroundStyle(wxBG_STYLE_PAINT); @@ -1994,10 +2001,6 @@ AdornedRulerPanel::AdornedRulerPanel(AudacityProject* parent, mPlayRegionDragsSelection = (gPrefs->Read(wxT("/QuickPlay/DragSelection"), 0L) == 1)? true : false; mQuickPlayEnabled = !!gPrefs->Read(wxT("/QuickPlay/QuickPlayEnabled"), 1L); - mButtonFont.Create(10, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_NORMAL); - - UpdatePrefs(); - #if wxUSE_TOOLTIPS wxToolTip::Enable(true); #endif @@ -2024,6 +2027,7 @@ AdornedRulerPanel::~AdornedRulerPanel() this); } +#if 0 namespace { static const wxChar *scrubEnabledPrefName = wxT("/QuickPlay/ScrubbingEnabled"); @@ -2039,9 +2043,13 @@ namespace { gPrefs->Write(scrubEnabledPrefName, value); } } +#endif void AdornedRulerPanel::UpdatePrefs() { + // Update button texts for language change + UpdateButtonStates(); + #ifdef EXPERIMENTAL_SCROLLING_LIMITS #ifdef EXPERIMENTAL_TWO_TONE_TIME_RULER { @@ -2053,100 +2061,66 @@ void AdornedRulerPanel::UpdatePrefs() #endif #endif - mShowScrubbing = ReadScrubEnabledPref(); + // mShowScrubbing = ReadScrubEnabledPref(); // Affected by the last UpdateRects(); RegenerateTooltips(mPrevZone); - - mButtonFontSize = -1; } -namespace { - enum { ArrowWidth = 8, ArrowSpacing = 1, ArrowHeight = ArrowWidth / 2 }; - - // Find the part of the button rectangle in which you can click the arrow. - // It includes the lower right corner. - wxRect GetArrowRect(const wxRect &buttonRect) - { - // Change the following lines to change the size of the hot zone. - // Make the hot zone as tall as the button - auto width = std::min( - std::max(1, buttonRect.GetWidth()) - 1, - ArrowWidth + 2 * ArrowSpacing - + 2 // bevel around arrow - + 2 // outline around the bevel - ); - auto height = buttonRect.GetHeight(); - - return wxRect { - buttonRect.GetRight() + 1 - width, - buttonRect.GetBottom() + 1 - height, - width, height - }; - } - - wxRect GetTextRect(const wxRect &buttonRect) - { - auto result = buttonRect; - result.width -= GetArrowRect(buttonRect).width; - return result; - } - - // Compensate for off-by-one problem in the bevel-drawing functions - struct Deflator { - Deflator(wxRect &rect) : mRect(rect) { - --mRect.width; - --mRect.height; - } - ~Deflator() { - ++mRect.width; - ++mRect.height; - } - wxRect &mRect; - }; -} - -wxFont &AdornedRulerPanel::GetButtonFont() const +namespace { - if (mButtonFontSize < 0) { - mButtonFontSize = 10; + wxString ComposeButtonLabel + (AudacityProject &project, const wxString &commandName, const wxString &label) + { + auto pCmdMgr = project.GetCommandManager(); + const auto &keyString = pCmdMgr->GetKeyFromName(commandName); + return keyString.empty() + ? label + : label + wxT(" (") + keyString + wxT(")"); + } +} - bool done; - do { - done = true; - mButtonFont.SetPointSize(mButtonFontSize); - wxCoord width, height; - for (auto button = StatusChoice::FirstButton; done && IsButton(button); ++button) { - auto rect = GetTextRect(GetButtonRect(button)); - auto availableWidth = rect.GetWidth(); - auto availableHeight = rect.GetHeight(); - - // Deduct for outlines, and room to move text - // I might deduct 2 more for bevel, but that made the text too small. - -#ifdef __WXMSW__ - // Deduct less for MSW, because GetTextExtent appears to overstate width, and - // I don't know why. Not really happy with this arbitrary fix. - availableWidth -= 1; - availableHeight -= 1; -#else - availableWidth -= 2 + 1; - availableHeight -= 2 + 1; -#endif - - GetParent()->GetTextExtent( - wxGetTranslation(GetPushButtonStrings(button)->label), - &width, &height, NULL, NULL, &mButtonFont); - - // Yes, < not <= ! Leave at least some room. - done = width < availableWidth && height < availableHeight; - } - mButtonFontSize--; - } while (mButtonFontSize > 0 && !done); +void AdornedRulerPanel::ReCreateButtons() +{ + for (auto & button : mButtons) { + if (button) + button->Destroy(); + button = nullptr; } - return mButtonFont; + // Make the short row of time ruler pushbottons. + // Don't bother with sizers. Their sizes and positions are fixed. + wxPoint position{ FocusBorderLeft, 0 }; + size_t iButton = 0; + auto size = theTheme.ImageSize( bmpRecoloredUpSmall ); + size.y = std::min(size.y, GetRulerHeight(false)); + + auto buttonMaker = [&] + (wxWindowID id, teBmps bitmap, bool toggle) + { + const auto button = + ToolBar::MakeButton( + this, + bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, + bitmap, bitmap, bitmap, + id, position, toggle, size + ); + + position.x += size.GetWidth(); + mButtons[iButton++] = button; + return button; + }; + auto button = buttonMaker(OnTogglePinnedStateID, bmpPinnedPlayRecordHead, false); + ToolBar::MakeAlternateImages( + *button, 1, + bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, + bmpUnpinnedPlayRecordHead, bmpUnpinnedPlayRecordHead, bmpUnpinnedPlayRecordHead, + size); + buttonMaker(OnScrubID, bmpScrub, true); + buttonMaker(OnSeekID, bmpSeek, true); + + UpdateButtonStates(); } void AdornedRulerPanel::InvalidateRuler() @@ -2163,7 +2137,6 @@ void AdornedRulerPanel::RegenerateTooltips(StatusChoice choice) } else { switch(choice) { - case StatusChoice::QuickPlayButton : case StatusChoice::EnteringQP : if (!mQuickPlayEnabled) { this->SetToolTip(_("Quick-Play disabled")); @@ -2172,14 +2145,6 @@ void AdornedRulerPanel::RegenerateTooltips(StatusChoice choice) this->SetToolTip(_("Quick-Play enabled")); } break; - case StatusChoice::ScrubBarButton : - if (!mShowScrubbing) { - this->SetToolTip(_("Scrub bar hidden")); - } - else { - this->SetToolTip(_("Scrub bar shown")); - } - break; case StatusChoice::EnteringScrubZone : this->SetToolTip(_("Scrub Bar")); break; @@ -2218,6 +2183,15 @@ void AdornedRulerPanel::OnCapture(wxCommandEvent & evt) void AdornedRulerPanel::OnPaint(wxPaintEvent & WXUNUSED(evt)) { + if (mNeedButtonUpdate) { + // Visit this block once only in the lifetime of this panel + mNeedButtonUpdate = false; + // Do this first time setting of button status texts + // when we are sure the CommandManager is initialized. + ReCreateButtons(); + UpdatePrefs(); + } + wxPaintDC dc(this); auto &backDC = GetBackingDCForRepaint(); @@ -2233,8 +2207,6 @@ void AdornedRulerPanel::OnPaint(wxPaintEvent & WXUNUSED(evt)) DoDrawPlayRegion(&backDC); - DoDrawPushbuttons(&backDC); - DoDrawEdge(&backDC); DisplayBitmap(dc); @@ -2341,25 +2313,8 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) } const auto position = evt.GetPosition(); - const bool overButtons = GetButtonAreaRect(true).Contains(position); - StatusChoice button; - { - auto mouseState = FindButton(evt); - button = mouseState.button; - if (IsButton(button)) { - TabState newState{ button, mouseState.state == PointerState::InArrow }; - if (mTabState != newState) { - // Change the button highlight - mTabState = newState; - Refresh(false); - } - } - else if(evt.Leaving() && !HasFocus()) - // erase the button highlight - Refresh(false); - } - const bool inScrubZone = !overButtons && + const bool inScrubZone = // only if scrubbing is allowed now mProject->GetScrubber().CanScrub() && mShowScrubbing && @@ -2367,13 +2322,11 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) const StatusChoice zone = evt.Leaving() ? StatusChoice::Leaving - : overButtons - ? button - : inScrubZone - ? StatusChoice::EnteringScrubZone - : mInner.Contains(position) - ? StatusChoice::EnteringQP - : StatusChoice::NoChange; + : inScrubZone + ? StatusChoice::EnteringScrubZone + : mInner.Contains(position) + ? StatusChoice::EnteringQP + : StatusChoice::NoChange; const bool changeInZone = (zone != mPrevZone); const bool changing = evt.Leaving() || evt.Entering() || changeInZone; @@ -2391,17 +2344,12 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) // Handle status bar messages UpdateStatusBarAndTooltips (changing ? zone : StatusChoice::NoChange); - if ((IsButton(zone) || IsButton(mPrevZone)) && - (changing || evt.Moving() || evt.Dragging())) - // So that the highlights in pushbuttons can update - Refresh(false); - mPrevZone = zone; auto &scrubber = mProject->GetScrubber(); if (scrubber.HasStartedScrubbing()) { - if (IsButton(zone) || evt.RightDown()) - // Fall through to pushbutton handling + if (evt.RightDown()) + // Fall through to context menu handling ; else { bool switchToQP = (zone == StatusChoice::EnteringQP && mQuickPlayEnabled); @@ -2422,9 +2370,6 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) if (scrubber.IsScrubbing()) evt.Skip(); - else if (evt.LeftDClick()) - // On the second button down, switch the pending scrub to scrolling - scrubber.MarkScrubStart(evt.m_x, true, false); else evt.Skip(); @@ -2474,20 +2419,16 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) return; } - if (HasCapture() && mCaptureState.button != StatusChoice::NoButton) - HandlePushbuttonEvent(evt); - else if (!HasCapture() && overButtons) - HandlePushbuttonClick(evt); // Handle popup menus - else if (!HasCapture() && evt.RightDown() && !(evt.LeftIsDown())) { - ShowButtonMenu - (inScrubZone ? StatusChoice::ScrubBarButton : StatusChoice::QuickPlayButton, + if (!HasCapture() && evt.RightDown() && !(evt.LeftIsDown())) { + ShowContextMenu + (inScrubZone ? MenuChoice::Scrub : MenuChoice::QuickPlay, &position); return; } else if (!HasCapture() && inScrubZone) { if (evt.LeftDown()) { - scrubber.MarkScrubStart(evt.m_x, false, false); + scrubber.MarkScrubStart(evt.m_x, PlaybackPrefs::GetPinnedHeadPreference()); UpdateStatusBarAndTooltips(StatusChoice::EnteringScrubZone); } ShowQuickPlayIndicator(); @@ -2510,15 +2451,7 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) } } -#ifdef RULER_DOUBLE_CLICK - if (evt.LeftDClick()) { - mDoubleClick = true; - HandleQPDoubleClick(evt, mousePosX); - } - else -#endif if (evt.LeftDown()) { - mDoubleClick = false; HandleQPClick(evt, mousePosX); HandleQPDrag(evt, mousePosX); ShowQuickPlayIndicator(); @@ -2534,12 +2467,6 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) } } -void AdornedRulerPanel::HandleQPDoubleClick(wxMouseEvent &evt, wxCoord mousePosX) -{ - mProject->GetPlaybackScroller().Activate - (AudacityProject::PlaybackScroller::Mode::Centered); -} - void AdornedRulerPanel::HandleQPClick(wxMouseEvent &evt, wxCoord mousePosX) { // Temporarily unlock locked play region @@ -2673,9 +2600,6 @@ void AdornedRulerPanel::HandleQPDrag(wxMouseEvent &event, wxCoord mousePosX) void AdornedRulerPanel::HandleQPRelease(wxMouseEvent &evt) { - if (mDoubleClick) - return; - if (HasCapture()) ReleaseMouse(); else @@ -2683,8 +2607,6 @@ void AdornedRulerPanel::HandleQPRelease(wxMouseEvent &evt) HideQuickPlayIndicator(); - mCaptureState = CaptureState{}; - if (mPlayRegionEnd < mPlayRegionStart) { // Swap values to ensure mPlayRegionStart < mPlayRegionEnd double tmp = mPlayRegionStart; @@ -2800,39 +2722,30 @@ void AdornedRulerPanel::UpdateStatusBarAndTooltips(StatusChoice choice) wxString message {}; - if (IsButton(choice)) { - bool state = GetButtonState(choice); - const auto &strings = *GetPushButtonStrings(choice); - message = wxGetTranslation(state ? strings.disable : strings.enable); - } - else { - const auto &scrubber = mProject->GetScrubber(); - const bool scrubbing = scrubber.HasStartedScrubbing(); - if (scrubbing && choice != StatusChoice::Leaving) - // Don't distinguish zones - choice = StatusChoice::EnteringScrubZone; + const auto &scrubber = mProject->GetScrubber(); + const bool scrubbing = scrubber.HasStartedScrubbing(); + if (scrubbing && choice != StatusChoice::Leaving) + // Don't distinguish zones + choice = StatusChoice::EnteringScrubZone; - switch (choice) { - case StatusChoice::EnteringQP: - { - // message = Insert timeline status bar message here - } - break; - - case StatusChoice::EnteringScrubZone: - { - if (scrubbing) { - if(!scrubber.IsAlwaysSeeking()) - message = _("Click or drag to seek"); - } - else - message = _("Click to scrub, Double-Click to scroll, Drag to seek"); - } - break; - - default: - break; + switch (choice) { + case StatusChoice::EnteringQP: + { + // message = Insert timeline status bar message here } + break; + + case StatusChoice::EnteringScrubZone: + { + if(scrubber.Seeks()) + message = _("Click or drag to seek"); + else if(scrubber.Scrubs()) + message = _("Click or drag to scrub"); + } + break; + + default: + break; } // Display a message, or empty message @@ -2841,10 +2754,10 @@ void AdornedRulerPanel::UpdateStatusBarAndTooltips(StatusChoice choice) RegenerateTooltips(choice); } -void AdornedRulerPanel::OnToggleScrubbing(wxCommandEvent&) +void AdornedRulerPanel::OnToggleScrubbing(/*wxCommandEvent&*/) { mShowScrubbing = !mShowScrubbing; - WriteScrubEnabledPref(mShowScrubbing); + //WriteScrubEnabledPref(mShowScrubbing); gPrefs->Flush(); wxSize size { GetSize().GetWidth(), GetRulerHeight(mShowScrubbing) }; SetSize(size); @@ -2852,99 +2765,77 @@ void AdornedRulerPanel::OnToggleScrubbing(wxCommandEvent&) PostSizeEventToParent(); } -void AdornedRulerPanel::OnCaptureKey(wxCommandEvent &event) -{ - wxKeyEvent *kevent = (wxKeyEvent *)event.GetEventObject(); - int keyCode = kevent->GetKeyCode(); - - switch (keyCode) - { - case WXK_DOWN: - case WXK_NUMPAD_DOWN: - case WXK_UP: - case WXK_NUMPAD_UP: - case WXK_TAB: - case WXK_NUMPAD_TAB: - case WXK_RIGHT: - case WXK_NUMPAD_RIGHT: - case WXK_LEFT: - case WXK_NUMPAD_LEFT: - case WXK_RETURN: - case WXK_NUMPAD_ENTER: - return; - } - - event.Skip(); -} - -void AdornedRulerPanel::OnKeyDown(wxKeyEvent &event) -{ - switch (event.GetKeyCode()) - { - case WXK_DOWN: - case WXK_NUMPAD_DOWN: - // Always takes our focus away, so redraw. - mProject->GetTrackPanel()->OnNextTrack(); - break; - - case WXK_UP: - case WXK_NUMPAD_UP: - mProject->GetTrackPanel()->OnPrevTrack(); - break; - - case WXK_TAB: - case WXK_NUMPAD_TAB: - if (event.ShiftDown()) - goto prev; - else - goto next; - - case WXK_RIGHT: - case WXK_NUMPAD_RIGHT: - next: - ++mTabState; - Refresh(); - break; - - case WXK_LEFT: - case WXK_NUMPAD_LEFT: - prev: - --mTabState; - Refresh(); - break; - - case WXK_RETURN: - case WXK_NUMPAD_ENTER: - if(mTabState.mMenu) - ShowButtonMenu(mTabState.mButton, nullptr); - else { - ToggleButtonState(mTabState.mButton); - Refresh(); - } - break; - - default: - event.Skip(); - break; - } -} - -void AdornedRulerPanel::OnSetFocus(wxFocusEvent & WXUNUSED(event)) -{ - AudacityProject::CaptureKeyboard(this); - mTabState = TabState{}; - Refresh( false ); -} - -void AdornedRulerPanel::OnKillFocus(wxFocusEvent & WXUNUSED(event)) -{ - AudacityProject::ReleaseKeyboard(this); - Refresh(false); -} - void AdornedRulerPanel::OnContextMenu(wxContextMenuEvent & WXUNUSED(event)) { - ShowButtonMenu(mTabState.mButton, nullptr); + ShowContextMenu(MenuChoice::QuickPlay, nullptr); +} + +void AdornedRulerPanel::UpdateButtonStates() +{ + auto common = [this] + (wxWindow *button, const wxString &commandName, const wxString &label){ + const auto &fullLabel = ComposeButtonLabel(*mProject, commandName, label); + button->SetLabel(fullLabel); + button->SetToolTip(fullLabel); + }; + + { + bool state = PlaybackPrefs::GetPinnedHeadPreference(); + auto pinButton = static_cast(FindWindow(OnTogglePinnedStateID)); + pinButton->PopUp(); + pinButton->SetAlternateIdx(state ? 0 : 1); + const auto label = state + // Label descibes the present state, not what the click does + // (which is, to toggle the state) + ? _("Pinned play/record Head") + : _("Unpinned play/record Head"); + common(pinButton, wxT("PinnedHead"), label); + } + + auto &scrubber = mProject->GetScrubber(); + + { + const auto scrubButton = static_cast(FindWindow(OnScrubID)); + /* i18n-hint: These commands assist the user in finding a sound by ear. ... + "Scrubbing" is variable-speed playback + */ + common(scrubButton, wxT("Scrub"), _("Scrub")); + if (scrubber.Scrubs()) + scrubButton->PushDown(); + else + scrubButton->PopUp(); + } + + { + const auto seekButton = static_cast(FindWindow(OnSeekID)); + /* i18n-hint: These commands assist the user in finding a sound by ear. ... + "Seeking" is normal speed playback but with skips + */ + common(seekButton, wxT("Seek"), _("Seek")); + if (scrubber.Seeks()) + seekButton->PushDown(); + else + seekButton->PopUp(); + } + + if(mShowScrubbing != (scrubber.Scrubs() || scrubber.Seeks())) + OnToggleScrubbing(); +} + +void AdornedRulerPanel::OnTogglePinnedState(wxCommandEvent & event) +{ + mProject->OnTogglePinnedHead(); + UpdateButtonStates(); +} + +void AdornedRulerPanel::OnSeek(wxCommandEvent & event) +{ + mProject->GetScrubber().OnSeek(event); +} + +void AdornedRulerPanel::OnScrub(wxCommandEvent & event) +{ + mProject->GetScrubber().OnScrub(event); } void AdornedRulerPanel::OnCaptureLost(wxMouseCaptureLostEvent & WXUNUSED(evt)) @@ -3016,15 +2907,6 @@ void AdornedRulerPanel::ShowScrubMenu(const wxPoint & pos) auto cleanup = finally([this]{ PopEventHandler(); }); wxMenu rulerMenu; - auto label = wxGetTranslation( - AdornedRulerPanel::PushbuttonLabels - [static_cast(StatusChoice::ScrubBarButton)].label); - rulerMenu.AppendCheckItem(OnShowHideScrubbingID, _("Scrub Bar")); - if(GetButtonState(StatusChoice::ScrubBarButton)) - rulerMenu.FindItem(OnShowHideScrubbingID)->Check(); - - rulerMenu.AppendSeparator(); - mProject->GetScrubber().PopulateMenu(rulerMenu); PopupMenu(&rulerMenu, pos); } @@ -3156,329 +3038,31 @@ void AdornedRulerPanel::DoDrawPlayRegion(wxDC * dc) } } -wxRect AdornedRulerPanel::GetButtonAreaRect(bool includeBorder) const +void AdornedRulerPanel::ShowContextMenu( MenuChoice choice, const wxPoint *pPosition) { - int x, y, bottomMargin; - - if(includeBorder) - x = 0, y = 0, bottomMargin = 0; - else { - x = std::max(LeftMargin, FocusBorderLeft); - y = std::max(TopMargin, FocusBorderTop); - bottomMargin = std::max(BottomMargin, FocusBorderBottom); - } - - wxRect rect { - x, y, - mProject->GetTrackPanel()->GetLeftOffset() - x, - GetRulerHeight() - y - bottomMargin - }; - - // Leave room for one digit on the ruler, so "0.0" is not obscured if you go to start. - // But the digit string at the left end may be longer if you are not at the start. - // Perhaps there should be room for more than one digit. - wxScreenDC dc; - dc.SetFont(*mRuler.GetFonts().major); - rect.width -= dc.GetTextExtent(wxT("0")).GetWidth(); - - return rect; -} - -wxRect AdornedRulerPanel::GetButtonRect( StatusChoice button ) const -{ - if (!IsButton(button)) - return wxRect {}; - - wxRect rect { GetButtonAreaRect() }; - - // Reduce the height - rect.height -= (GetRulerHeight() - ProperRulerHeight); - - auto num = static_cast(button); - auto denom = static_cast(StatusChoice::NumButtons); - rect.x += (num * rect.width) / denom; - rect.width = (((1 + num) * rect.width) / denom) - rect.x; - - return rect; -} - -auto AdornedRulerPanel::InButtonRect( StatusChoice button, wxMouseEvent *pEvent ) const - -> PointerState -{ - auto rect = GetButtonRect(button); - auto state = pEvent ? *pEvent : ::wxGetMouseState(); - auto point = pEvent ? pEvent->GetPosition() : ScreenToClient(state.GetPosition()); - if(!rect.Contains(point)) - return PointerState::Out; - else { - auto rightDown = state.RightIsDown() -#ifdef __WXMAC__ - // make drag with Mac Control down act like right drag - || (state.RawControlDown() && state.ButtonIsDown(wxMOUSE_BTN_ANY)) -#endif - ; - if(rightDown || - (pEvent && pEvent->RightUp()) || - GetArrowRect(rect).Contains(point)) - return PointerState::InArrow; - else - return PointerState::In; - } -} - -auto AdornedRulerPanel::FindButton( wxMouseEvent &mouseEvent ) const - -> CaptureState -{ - for (auto button = StatusChoice::FirstButton; IsButton(button); ++button) { - auto state = InButtonRect( button, &mouseEvent ); - if (state != PointerState::Out) - return CaptureState{ button, state }; - } - - return { StatusChoice::NoButton, PointerState::Out }; -} - -bool AdornedRulerPanel::GetButtonState( StatusChoice button ) const -{ - switch(button) { - case StatusChoice::QuickPlayButton: - return mQuickPlayEnabled; - case StatusChoice::ScrubBarButton: - return mShowScrubbing; - default: - wxASSERT(false); - return false; - } -} - -void AdornedRulerPanel::ToggleButtonState( StatusChoice button ) -{ - wxCommandEvent dummy; - switch(button) { - case StatusChoice::QuickPlayButton: - OnToggleQuickPlay(dummy); - break; - case StatusChoice::ScrubBarButton: - OnToggleScrubbing(dummy); - break; - default: - wxASSERT(false); - } - UpdateStatusBarAndTooltips(mCaptureState.button); -} - -void AdornedRulerPanel::ShowButtonMenu( StatusChoice button, const wxPoint *pPosition) -{ - if (!IsButton(button)) - return; - wxPoint position; if(pPosition) position = *pPosition; else { - auto rect = GetArrowRect(GetButtonRect(button)); + auto rect = GetRect(); position = { rect.GetLeft() + 1, rect.GetBottom() + 1 }; } - // Be sure the arrow button appears pressed - mTabState = { button, true }; - mShowingMenu = true; - Refresh(); - - // Do the rest after Refresh() takes effect - CallAfter([=]{ - switch (button) { - case StatusChoice::QuickPlayButton: - ShowMenu(position); break; - case StatusChoice::ScrubBarButton: - ShowScrubMenu(position); break; - default: - return; - } - - // dismiss and clear Quick-Play indicator - HideQuickPlayIndicator(); - - if (HasCapture()) - ReleaseMouse(); - - mShowingMenu = false; - Refresh(); - }); -} - -const AdornedRulerPanel::ButtonStrings AdornedRulerPanel::PushbuttonLabels - [static_cast(StatusChoice::NumButtons)] -{ - { XO("Quick-Play"), XO("Enable Quick-Play"), XO("Disable Quick-Play") }, - /* i18n-hint: A long screen area (bar) controlling variable speed play (scrubbing) */ - { XO("Scrub Bar"), XO("Show Scrub Bar"), XO("Hide Scrub Bar") }, -}; - -namespace { - void DrawButtonBackground(wxDC *dc, const wxRect &rect, bool down, bool highlight) { - // Choose the pen - if (highlight) - AColor::Light(dc, false); - else - // This color choice corresponds to part of TrackInfo::DrawBordersWithin() : - AColor::Dark(dc, false); - auto pen = dc->GetPen(); -// pen.SetWidth(2); - - // Choose the brush - if (down) - AColor::Solo(dc, true, false); - else - AColor::MediumTrackInfo(dc, false); - - dc->SetPen(pen); - dc->DrawRectangle(rect); - - // Draw the bevel - auto rect2 = rect.Deflate(1, 1); - Deflator def(rect2); - AColor::BevelTrackInfo(*dc, !down, rect2); - } -} - -void AdornedRulerPanel::DoDrawPushbutton - (wxDC *dc, StatusChoice button, bool buttonState, bool arrowState) const -{ - // Adapted from TrackInfo::DrawMuteSolo() - ADCChanger changer(dc); - - const auto rect = GetButtonRect( button ); - const auto arrowRect = GetArrowRect(rect); - auto arrowBev = arrowRect.Deflate(1, 1); - const auto textRect = GetTextRect(rect); - auto textBev = textRect.Deflate(1, 1); - - // Draw borders, bevels, and backgrounds of the split sections - - const bool tabHighlight = - mTabState.mButton == button && - (HasFocus() || rect.Contains( ScreenToClient(::wxGetMousePosition()) )); - if (tabHighlight) - arrowState = arrowState || mShowingMenu; - - if (tabHighlight && mTabState.mMenu) { - // Draw highlighted arrow after - DrawButtonBackground(dc, textRect, buttonState, false); - DrawButtonBackground(dc, arrowRect, arrowState, true); - } - else { - // Draw maybe highlighted text after - DrawButtonBackground(dc, arrowRect, arrowState, false); - DrawButtonBackground(dc, textRect, buttonState, (tabHighlight && !mTabState.mMenu)); + switch (choice) { + case MenuChoice::QuickPlay: + ShowMenu(position); break; + case MenuChoice::Scrub: + ShowScrubMenu(position); break; + default: + return; } - // Draw the menu triangle - { - auto x = arrowBev.GetX() + ArrowSpacing; - auto y = arrowBev.GetY() + (arrowBev.GetHeight() - ArrowHeight) / 2; + // dismiss and clear Quick-Play indicator + HideQuickPlayIndicator(); - // Color it as in TrackInfo::DrawTitleBar -#ifdef EXPERIMENTAL_THEMING - wxColour c = theTheme.Colour( clrTrackPanelText ); -#else - wxColour c = *wxBLACK; -#endif - - //if (pointerState == PointerState::InArrow) - dc->SetBrush( wxBrush{ c } ); - //else - //dc->SetBrush( wxBrush{ *wxTRANSPARENT_BRUSH } ); // Make outlined arrow only - - dc->SetPen( wxPen{ c } ); - - // This function draws an arrow half as tall as wide: - AColor::Arrow(*dc, x, y, ArrowWidth); - } - - // Draw the text - - { - dc->SetTextForeground(theTheme.Colour(clrTrackPanelText)); - wxCoord textWidth, textHeight; - wxString str = wxGetTranslation(GetPushButtonStrings(button)->label); - dc->SetFont(GetButtonFont()); - dc->GetTextExtent(str, &textWidth, &textHeight); - auto xx = textBev.x + (textBev.width - textWidth) / 2; - auto yy = textBev.y + (textBev.height - textHeight) / 2; - if (buttonState) - // Shift the text a bit for "down" appearance - ++xx, ++yy; - dc->DrawText(str, xx, yy); - } -} - -void AdornedRulerPanel::HandlePushbuttonClick(wxMouseEvent &evt) -{ - auto pair = FindButton(evt); - auto button = pair.button; - if (IsButton(button) && evt.ButtonDown()) { - CaptureMouse(); - mCaptureState = pair; - Refresh(); - } -} - -void AdornedRulerPanel::HandlePushbuttonEvent(wxMouseEvent &evt) -{ - if(evt.ButtonUp()) { - if(HasCapture()) - ReleaseMouse(); - - auto button = mCaptureState.button; - auto capturedIn = mCaptureState.state; - auto in = InButtonRect(button, &evt); - if (in != capturedIn) - ; - else if (in == PointerState::In) - ToggleButtonState(button); - else - ShowButtonMenu(button, nullptr); - - mCaptureState = CaptureState{}; - } - - Refresh(); -} - -void AdornedRulerPanel::DoDrawPushbuttons(wxDC *dc) const -{ - // Paint the area behind the buttons - wxRect background = GetButtonAreaRect(); - -#ifndef SCRUB_ABOVE - // Reduce the height - background.y = mInner.y; - background.height = mInner.height; -#endif - - AColor::MediumTrackInfo(dc, false); - dc->DrawRectangle(background); - - for (auto button = StatusChoice::FirstButton; IsButton(button); ++button) { - bool buttonState = GetButtonState(button); - bool arrowState = false; - if (button == mCaptureState.button) { - auto in = InButtonRect(button, nullptr); - if (in == mCaptureState.state) { - if (in == PointerState::In) { - // Toggle button's apparent state for mouseover - buttonState = !buttonState; - } - else if (in == PointerState::InArrow) { - // Menu arrow is not sticky - arrowState = true; - } - } - } - DoDrawPushbutton(dc, button, buttonState, arrowState); - } + if (HasCapture()) + ReleaseMouse(); } void AdornedRulerPanel::DoDrawBackground(wxDC * dc) @@ -3563,11 +3147,6 @@ void AdornedRulerPanel::DoDrawSelection(wxDC * dc) dc->DrawRectangle( r ); } -int AdornedRulerPanel::GetRulerHeight() -{ - return GetRulerHeight(ReadScrubEnabledPref()); -} - int AdornedRulerPanel::GetRulerHeight(bool showScrubBar) { return ProperRulerHeight + (showScrubBar ? ScrubHeight : 0); @@ -3581,14 +3160,46 @@ void AdornedRulerPanel::SetLeftOffset(int offset) // Draws the play/recording position indicator. void AdornedRulerPanel::DoDrawIndicator - (wxDC * dc, wxCoord xx, bool playing, int width, bool scrub) + (wxDC * dc, wxCoord xx, bool playing, int width, bool scrub, bool seek) { ADCChanger changer(dc); // Undo pen and brush changes at function exit AColor::IndicatorColor( dc, playing ); wxPoint tri[ 3 ]; - if (scrub) { + if (seek) { + auto height = IndicatorHeightForWidth(width); + // Make four triangles + const int TriangleWidth = width * 3 / 8; + + // Double-double headed, left-right + auto yy = mShowScrubbing + ? mScrubZone.y + : (mInner.GetBottom() + 1) - 1 /* bevel */ - height; + tri[ 0 ].x = xx - IndicatorOffset; + tri[ 0 ].y = yy; + tri[ 1 ].x = xx - IndicatorOffset; + tri[ 1 ].y = yy + height; + tri[ 2 ].x = xx - TriangleWidth; + tri[ 2 ].y = yy + height / 2; + dc->DrawPolygon( 3, tri ); + + tri[ 0 ].x -= TriangleWidth; + tri[ 1 ].x -= TriangleWidth; + tri[ 2 ].x -= TriangleWidth; + dc->DrawPolygon( 3, tri ); + + tri[ 0 ].x = tri[ 1 ].x = xx + IndicatorOffset; + tri[ 2 ].x = xx + TriangleWidth; + dc->DrawPolygon( 3, tri ); + + + tri[ 0 ].x += TriangleWidth; + tri[ 1 ].x += TriangleWidth; + tri[ 2 ].x += TriangleWidth; + dc->DrawPolygon( 3, tri ); + } + else if (scrub) { auto height = IndicatorHeightForWidth(width); const int IndicatorHalfWidth = width / 2; diff --git a/src/widgets/Ruler.h b/src/widgets/Ruler.h index ecc0de00e..5f6635834 100644 --- a/src/widgets/Ruler.h +++ b/src/widgets/Ruler.h @@ -298,7 +298,7 @@ public: #endif public: - static int GetRulerHeight(); + int GetRulerHeight() { return GetRulerHeight(mShowScrubbing); } static int GetRulerHeight(bool showScrubBar); wxRect GetInnerRect() const { return mInner; } @@ -315,39 +315,14 @@ public: void InvalidateRuler(); void UpdatePrefs(); + void ReCreateButtons(); enum class StatusChoice { - FirstButton = 0, - QuickPlayButton = FirstButton, - ScrubBarButton, - - NumButtons, - LastButton = NumButtons - 1, - NoButton = -1, - - EnteringQP = NumButtons, + EnteringQP, EnteringScrubZone, Leaving, NoChange }; - enum class PointerState { - Out = 0, In, InArrow - }; - struct CaptureState { - CaptureState() {} - CaptureState(StatusChoice s, PointerState p) : button(s), state(p) {} - StatusChoice button { StatusChoice::NoButton }; - PointerState state { PointerState::Out }; - }; - - friend inline StatusChoice &operator++ (StatusChoice &choice) { - choice = static_cast(1 + static_cast(choice)); - return choice; - } - friend inline StatusChoice &operator-- (StatusChoice &choice) { - choice = static_cast(-1 + static_cast(choice)); - return choice; - } void RegenerateTooltips(StatusChoice choice); @@ -361,21 +336,11 @@ private: void OnSize(wxSizeEvent &evt); void UpdateRects(); void OnMouseEvents(wxMouseEvent &evt); - void HandleQPDoubleClick(wxMouseEvent &event, wxCoord mousePosX); void HandleQPClick(wxMouseEvent &event, wxCoord mousePosX); void HandleQPDrag(wxMouseEvent &event, wxCoord mousePosX); void HandleQPRelease(wxMouseEvent &event); void StartQPPlay(bool looped, bool cutPreview); - static inline bool IsButton(StatusChoice choice) - { - auto integer = static_cast(choice); - return integer >= 0 && - integer < static_cast(StatusChoice::NumButtons); - } - static inline bool IsButton(int choice) - { return IsButton(static_cast(choice)); } - void UpdateStatusBarAndTooltips(StatusChoice choice); void OnCaptureLost(wxMouseCaptureLostEvent &evt); @@ -384,40 +349,18 @@ private: void DoDrawEdge(wxDC *dc); void DoDrawMarks(wxDC * dc, bool /*text */ ); void DoDrawSelection(wxDC * dc); + public: - void DoDrawIndicator(wxDC * dc, wxCoord xx, bool playing, int width, bool scrub); + void DoDrawIndicator(wxDC * dc, wxCoord xx, bool playing, int width, bool scrub, bool seek); + void UpdateButtonStates(); private: QuickPlayIndicatorOverlay *GetOverlay(); void ShowOrHideQuickPlayIndicator(bool show); void DoDrawPlayRegion(wxDC * dc); - wxRect GetButtonAreaRect(bool includeBorder = false) const; - - struct ButtonStrings { - wxString label, enable, disable; - }; - static const ButtonStrings PushbuttonLabels[]; - static const ButtonStrings *GetPushButtonStrings(StatusChoice choice) - { - if(IsButton(choice)) - return &PushbuttonLabels[static_cast(choice)]; - return nullptr; - } - - wxRect GetButtonRect( StatusChoice button ) const; - PointerState InButtonRect( StatusChoice button, wxMouseEvent *pEvent ) const; - CaptureState FindButton( wxMouseEvent &mouseEvent ) const; - bool GetButtonState( StatusChoice button ) const; - void ToggleButtonState( StatusChoice button ); - void ShowButtonMenu( StatusChoice button, const wxPoint *pPosition); - void DoDrawPushbutton - (wxDC *dc, StatusChoice button, bool buttonState, bool arrowState) const; - void DoDrawPushbuttons(wxDC *dc) const; - void HandlePushbuttonClick(wxMouseEvent &evt); - void HandlePushbuttonEvent(wxMouseEvent &evt); - - wxFont &GetButtonFont() const; + enum class MenuChoice { QuickPlay, Scrub }; + void ShowContextMenu( MenuChoice choice, const wxPoint *pPosition); double Pos2Time(int p, bool ignoreFisheye = false); int Time2Pos(double t, bool ignoreFisheye = false); @@ -470,20 +413,18 @@ private: void OnAutoScroll(wxCommandEvent &evt); void OnLockPlayRegion(wxCommandEvent &evt); - void OnToggleScrubbing(wxCommandEvent&); + void OnToggleScrubbing(/*wxCommandEvent&*/); + void OnScrub(wxCommandEvent&); + void OnSeek(wxCommandEvent&); - void OnCaptureKey(wxCommandEvent &event); - void OnKeyDown(wxKeyEvent &event); - void OnSetFocus(wxFocusEvent &); - void OnKillFocus(wxFocusEvent &); void OnContextMenu(wxContextMenuEvent & WXUNUSED(event)); + void OnTogglePinnedState(wxCommandEvent & event); + bool mPlayRegionDragsSelection; bool mTimelineToolTip; bool mQuickPlayEnabled; - CaptureState mCaptureState {}; - enum MouseEventState { mesNone, mesDraggingPlayRegionStart, @@ -501,53 +442,14 @@ private: StatusChoice mPrevZone { StatusChoice::NoChange }; - struct TabState { - StatusChoice mButton { StatusChoice::FirstButton }; - bool mMenu { false }; - - TabState() {} - TabState(StatusChoice button, bool menu) - : mButton{ button }, mMenu{ menu } {} - - bool operator == (const TabState &rhs) const - { return mButton == rhs.mButton && mMenu == rhs.mMenu; } - bool operator != (const TabState &rhs) const { return !(*this == rhs); } - - TabState &operator ++ () { - if (!mMenu) - mMenu = true; - else { - mMenu = false; - if (!IsButton (++mButton)) - mButton = StatusChoice::FirstButton; - } - return *this; - } - - TabState &operator -- () { - if (mMenu) - mMenu = false; - else { - mMenu = true; - if (!IsButton (--mButton)) - mButton = StatusChoice::LastButton; - } - return *this; - } - }; - TabState mTabState; - bool mShowScrubbing { true }; - mutable int mButtonFontSize { -1 }; - mutable wxFont mButtonFont; - - bool mDoubleClick {}; - bool mShowingMenu {}; - DECLARE_EVENT_TABLE() friend QuickPlayRulerOverlay; + + wxWindow *mButtons[3]; + bool mNeedButtonUpdate { true }; }; #endif //define __AUDACITY_RULER__