From 7324997db6a1b9c57e40463460bfa8f0e370d866 Mon Sep 17 00:00:00 2001 From: "james.k.crook@gmail.com" Date: Sat, 29 Nov 2014 17:22:05 +0000 Subject: [PATCH] Fix for http://bugzilla.audacityteam.org/show_bug.cgi?id=643 "Residual consistency issues with SHIFT showing Loop Play button icon" by Paul Licameli. * Loop play-at-speed and cut preview play-at-speed implemented. * Shift or ctrl down now affect all relevant buttons, loop or cut preview, normal or at speed, and append-record. --- src/AllThemeResources.h | 4 + src/Menus.cpp | 20 +- src/Menus.h | 2 + src/MixerBoard.cpp | 13 +- src/Theme.cpp | 8 +- src/ThemeAsCeeCode.h | 8190 +++++++++++++------------ src/toolbars/ControlToolBar.cpp | 147 +- src/toolbars/ControlToolBar.h | 18 +- src/toolbars/ToolBar.cpp | 34 +- src/toolbars/ToolBar.h | 10 + src/toolbars/TranscriptionToolBar.cpp | 54 +- src/toolbars/TranscriptionToolBar.h | 8 +- src/widgets/AButton.cpp | 190 +- src/widgets/AButton.h | 36 +- 14 files changed, 4503 insertions(+), 4231 deletions(-) diff --git a/src/AllThemeResources.h b/src/AllThemeResources.h index ba28e97e5..617d8e439 100644 --- a/src/AllThemeResources.h +++ b/src/AllThemeResources.h @@ -62,6 +62,10 @@ from there. Audacity will look for a file called "Pause.png". DEFINE_IMAGE( bmpFFwdDisabled, wxImage( 16, 16 ), wxT("FFwdDisabled")); DEFINE_IMAGE( bmpRecord, wxImage( 16, 16 ), wxT("Record")); DEFINE_IMAGE( bmpRecordDisabled, wxImage( 16, 16 ), wxT("RecordDisabled")); + DEFINE_IMAGE( bmpCutPreview, wxImage( 16, 16 ), wxT("CutPreview")); + DEFINE_IMAGE( bmpCutPreviewDisabled, wxImage( 16, 16 ), wxT("CutPreviewDisabled")); + DEFINE_IMAGE( bmpAppendRecord, wxImage( 16, 16 ), wxT("AppendRecord")); + DEFINE_IMAGE( bmpAppendRecordDisabled, wxImage( 16, 16 ), wxT("AppendRecordDisabled")); SET_THEME_FLAGS( resFlagNewLine ); DEFINE_IMAGE( bmpUpButtonLarge, wxImage( 48, 48 ), wxT("UpButtonLarge")); diff --git a/src/Menus.cpp b/src/Menus.cpp index 0fe2a27df..a72105559 100644 --- a/src/Menus.cpp +++ b/src/Menus.cpp @@ -1281,6 +1281,8 @@ void AudacityProject::CreateMenusAndCommands() c->AddCommand(wxT("InputGainDec"), _("Decrease recording volume"), FN(OnInputGainDec)); c->AddCommand(wxT("PlayAtSpeed"), _("Play at speed"), FN(OnPlayAtSpeed)); + c->AddCommand(wxT("PlayAtSpeedLooped"), _("Loop Play at speed"), FN(OnPlayAtSpeedLooped)); + c->AddCommand(wxT("PlayAtSpeedCutPreview"), _("Play Cut Preview at speed"), FN(OnPlayAtSpeedCutPreview)); c->AddCommand(wxT("SetPlaySpeed"), _("Adjust playback speed"), FN(OnSetPlaySpeed)); c->AddCommand(wxT("PlaySpeedInc"), _("Increase playback speed"), FN(OnPlaySpeedInc)); c->AddCommand(wxT("PlaySpeedDec"), _("Decrease playback speed"), FN(OnPlaySpeedDec)); @@ -3004,7 +3006,23 @@ void AudacityProject::OnPlayAtSpeed() { TranscriptionToolBar *tb = GetTranscriptionToolBar(); if (tb) { - tb->PlayAtSpeed(); + tb->PlayAtSpeed(false, false); + } +} + +void AudacityProject::OnPlayAtSpeedLooped() +{ + TranscriptionToolBar *tb = GetTranscriptionToolBar(); + if (tb) { + tb->PlayAtSpeed(true, false); + } +} + +void AudacityProject::OnPlayAtSpeedCutPreview() +{ + TranscriptionToolBar *tb = GetTranscriptionToolBar(); + if (tb) { + tb->PlayAtSpeed(false, true); } } diff --git a/src/Menus.h b/src/Menus.h index c27bdce05..302799bdc 100644 --- a/src/Menus.h +++ b/src/Menus.h @@ -127,6 +127,8 @@ void OnInputGainDec(); // Transcription control void OnPlayAtSpeed(); +void OnPlayAtSpeedLooped(); +void OnPlayAtSpeedCutPreview(); void OnSetPlaySpeed(); void OnPlaySpeedInc(); void OnPlaySpeedDec(); diff --git a/src/MixerBoard.cpp b/src/MixerBoard.cpp index 08d496a8b..a0bf0d034 100644 --- a/src/MixerBoard.cpp +++ b/src/MixerBoard.cpp @@ -277,6 +277,7 @@ MixerTrackCluster::MixerTrackCluster(wxWindow* parent, true); // toggle button mToggleButton_Mute->SetName(_("Mute")); mToggleButton_Mute->SetAlternateImages( + 1, *(mMixerBoard->mImageMuteUp), *(mMixerBoard->mImageMuteOver), *(mMixerBoard->mImageMuteDown), *(mMixerBoard->mImageMuteDisabled)); this->UpdateMute(); @@ -465,10 +466,10 @@ void MixerTrackCluster::UpdateName() void MixerTrackCluster::UpdateMute() { #ifdef EXPERIMENTAL_MIDI_OUT - mToggleButton_Mute->SetAlternate(mTrack->GetSolo()); + mToggleButton_Mute->SetAlternateIdx(mTrack->GetSolo() ? 1 : 0); if (mTrack->GetMute()) #else - mToggleButton_Mute->SetAlternate(mLeftTrack->GetSolo()); + mToggleButton_Mute->SetAlternateIdx(mLeftTrack->GetSolo() ? 1 : 0); if (mLeftTrack->GetMute()) #endif mToggleButton_Mute->PushDown(); @@ -487,7 +488,7 @@ void MixerTrackCluster::UpdateSolo() mToggleButton_Solo->PushDown(); else mToggleButton_Solo->PopUp(); - mToggleButton_Mute->SetAlternate(bIsSolo); + mToggleButton_Mute->SetAlternateIdx(bIsSolo ? 1 : 0); } void MixerTrackCluster::UpdatePan() @@ -827,10 +828,10 @@ void MixerTrackCluster::OnButton_Mute(wxCommandEvent& WXUNUSED(event)) { #ifdef EXPERIMENTAL_MIDI_OUT mProject->HandleTrackMute(mTrack, mToggleButton_Mute->WasShiftDown()); - mToggleButton_Mute->SetAlternate(mTrack->GetSolo()); + mToggleButton_Mute->SetAlternateIdx(mTrack->GetSolo() ? 1 : 0); #else mProject->HandleTrackMute(mLeftTrack, mToggleButton_Mute->WasShiftDown()); - mToggleButton_Mute->SetAlternate(mLeftTrack->GetSolo()); + mToggleButton_Mute->SetAlternateIdx(mLeftTrack->GetSolo() ? 1 : 0); #endif // Update the TrackPanel correspondingly. @@ -858,7 +859,7 @@ void MixerTrackCluster::OnButton_Solo(wxCommandEvent& WXUNUSED(event)) mProject->HandleTrackSolo(mLeftTrack, mToggleButton_Solo->WasShiftDown()); bool bIsSolo = mLeftTrack->GetSolo(); #endif - mToggleButton_Mute->SetAlternate(bIsSolo); + mToggleButton_Mute->SetAlternateIdx(bIsSolo ? 1 : 0); // Update the TrackPanel correspondingly. if (mProject->IsSoloSimple()) diff --git a/src/Theme.cpp b/src/Theme.cpp index c74dfceb0..386d4b004 100644 --- a/src/Theme.cpp +++ b/src/Theme.cpp @@ -63,7 +63,7 @@ and use it for toolbar and window layouts too. #include "Project.h" #include "toolbars/ToolBar.h" -#include "toolbars/ControlToolBar.h" +#include "toolbars/ToolManager.h" #include "ImageManipulation.h" #include "Theme.h" #include "Experimental.h" @@ -223,9 +223,11 @@ void Theme::EnsureInitialised() void Theme::ApplyUpdatedImages() { AudacityProject *p = GetActiveProject(); - if( p->GetControlToolBar() ) + for( int ii = 0; ii < ToolBarCount; ++ii ) { - p->GetControlToolBar()->ReCreateButtons(); + ToolBar *pToolBar = p->mToolManager->GetToolBar(ii); + if( pToolBar ) + pToolBar->ReCreateButtons(); } } diff --git a/src/ThemeAsCeeCode.h b/src/ThemeAsCeeCode.h index 75cd5ffe8..ec38924c7 100644 --- a/src/ThemeAsCeeCode.h +++ b/src/ThemeAsCeeCode.h @@ -7,4060 +7,4140 @@ 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,120,20,199,153,239,255,237,185,104,102,164,1,36,48,88,216,200,145, - 100,20,27,108,63,70,16,178,198,246,26,225,117,188,231,177,179,172,137,19, - 111,54,201,122,253,75,114,114,188,38,75,130,177,227,36,123,65,236,238,113, - 98,199,64,130,131,227,147,179,62,75,56,56,155,77,142,193,155,248,178,193, - 142,129,132,0,9,6,225,36,6,19,132,164,88,216,2,201,186,160,203,76, - 207,165,187,126,127,140,222,214,59,165,238,185,72,51,163,145,84,159,231,233, - 103,102,250,82,85,93,51,83,223,126,223,122,171,74,27,26,26,210,220,30, - 143,71,211,52,13,128,6,64,24,134,33,140,120,60,46,132,16,110,183,59, - 229,241,153,51,103,226,178,235,43,151,118,159,237,105,142,12,70,251,145,37, - 151,95,126,185,237,254,171,238,93,120,252,244,206,230,165,236,243,29,167,119, - 54,191,36,159,247,206,59,239,100,155,101,209,83,230,243,5,111,186,250,234, - 149,117,243,231,47,246,184,221,254,142,222,222,142,215,207,158,61,212,114,225, - 194,73,249,92,77,211,196,68,148,81,161,80,40,138,29,143,199,227,41,239, - 236,13,93,209,219,163,207,20,194,116,9,1,83,211,68,255,188,217,158,182, - 242,242,153,131,46,151,59,216,217,27,170,182,59,62,107,214,204,126,0,98, - 241,159,45,90,125,253,61,215,125,122,255,227,191,248,250,177,93,77,79,141, - 167,64,87,221,187,240,177,155,215,174,248,216,193,237,135,107,164,67,223,254, - 204,175,254,42,122,112,251,225,167,78,239,108,222,54,158,60,236,168,191,234, - 230,198,166,211,7,27,237,142,105,154,107,174,16,102,87,170,125,229,51,46, - 153,219,55,240,94,210,57,118,251,136,79,255,217,35,141,255,231,39,143,37, - 229,87,230,247,7,31,94,189,250,203,159,190,237,182,207,123,92,174,89,161, - 104,20,177,120,28,113,195,64,220,52,241,122,115,243,225,111,190,248,226,195, - 111,190,253,246,47,199,120,155,10,133,66,49,109,208,78,158,233,250,192,211, - 63,138,127,226,124,183,177,72,131,89,34,132,22,13,250,186,79,126,242,191, - 25,59,111,252,224,226,230,246,142,193,133,223,254,65,252,222,243,221,198,98, - 126,252,19,127,26,223,185,226,131,139,79,150,149,150,198,254,228,171,13,141, - 127,252,133,155,54,70,7,35,232,60,253,222,155,63,123,116,255,131,173,7, - 219,246,102,82,0,110,193,93,117,239,194,183,110,94,187,226,42,0,8,95, - 212,113,108,87,83,211,233,157,205,75,175,186,119,225,29,55,175,93,241,98, - 248,162,14,0,56,182,171,233,241,211,59,155,31,1,70,44,56,209,189,94, - 96,32,10,68,141,212,25,198,77,92,236,12,97,195,150,95,109,122,230,199, - 103,26,105,247,11,155,155,197,135,55,44,212,228,211,235,170,174,125,192,235, - 241,207,59,217,250,122,99,170,125,235,254,162,177,177,237,221,182,206,31,255, - 98,199,83,169,246,57,229,119,249,236,217,11,94,250,251,191,127,229,210,242, - 242,171,187,7,6,48,168,235,136,197,227,48,69,194,64,115,105,137,83,245, - 88,12,223,126,233,165,135,159,255,245,175,159,0,148,5,167,80,40,20,78, - 184,222,237,232,154,213,254,110,239,226,158,208,220,27,122,195,115,87,116,15, - 149,223,240,206,59,157,215,180,183,159,155,25,139,197,220,29,29,157,51,219, - 223,237,189,70,62,126,238,220,59,51,99,177,152,11,0,132,16,48,227,38, - 226,49,19,115,106,103,95,243,241,127,187,251,167,159,124,246,47,246,93,122, - 205,188,165,233,10,64,144,184,133,47,234,8,95,212,209,125,182,187,149,142, - 157,222,217,252,210,193,237,135,191,64,159,151,125,170,254,75,87,221,187,240, - 19,73,9,12,68,97,188,23,70,232,252,16,134,58,6,29,183,139,231,7, - 241,251,182,62,156,239,14,39,93,62,24,30,24,85,166,171,171,175,125,224, - 255,110,250,249,246,193,80,159,181,239,202,5,239,255,140,188,47,81,7,192, - 231,239,121,116,251,141,215,253,233,103,248,190,117,127,241,245,237,13,75,87, - 63,32,167,205,243,43,243,251,131,47,253,253,223,191,50,103,198,140,171,219, - 223,123,15,239,245,247,99,40,18,65,148,172,55,195,64,52,30,71,212,48, - 160,1,184,111,213,170,111,220,178,120,241,103,51,168,86,133,66,161,152,182, - 184,140,120,220,13,17,43,129,169,251,97,234,126,136,152,95,136,88,137,97, - 196,221,166,105,106,134,97,216,30,143,27,49,151,105,154,35,41,9,1,152, - 2,166,97,194,136,155,168,90,126,121,195,167,159,191,247,216,159,61,113,199, - 206,25,149,193,5,169,10,49,236,150,188,138,44,52,59,78,239,108,222,118, - 108,87,211,39,217,174,123,146,78,136,26,136,132,98,24,8,197,48,24,142, - 59,110,253,67,113,12,132,98,136,196,204,228,12,144,108,8,93,93,125,237, - 3,63,217,252,155,237,103,222,62,131,88,60,10,0,152,61,115,206,237,187, - 31,59,186,189,185,189,25,209,120,36,233,124,195,0,124,94,31,254,250,206, - 135,183,47,170,94,122,59,0,152,38,80,226,41,193,103,86,127,117,251,202, - 122,89,228,70,242,123,120,245,234,47,87,150,151,95,221,209,219,139,65,93, - 135,97,154,137,250,148,75,40,4,160,105,40,241,122,241,209,21,43,30,15, - 250,253,243,28,43,76,161,80,40,166,57,46,36,2,71,198,130,227,117,194, - 20,48,98,38,140,152,129,107,86,47,250,171,251,95,253,108,115,195,67,127, - 252,104,73,176,100,166,195,37,31,203,36,195,211,59,155,191,127,108,87,211, - 227,0,176,236,83,245,127,126,213,189,11,159,79,202,119,88,20,132,16,142, - 27,132,24,214,14,89,64,92,214,187,171,171,175,125,224,133,45,191,217,254, - 135,142,78,12,233,3,240,122,124,168,152,49,231,246,3,79,183,252,184,111, - 32,230,235,29,232,178,242,178,242,30,174,146,217,179,46,245,173,255,203,111, - 252,248,186,43,255,232,118,151,150,216,31,240,7,241,153,213,95,177,17,185, - 68,64,201,167,111,187,237,243,239,13,12,96,40,18,25,149,174,29,30,151, - 11,21,193,96,197,31,213,213,125,46,237,201,10,133,66,49,77,113,165,63, - 101,236,8,33,96,196,12,184,60,46,223,13,159,251,224,87,254,230,103,159, - 109,94,250,201,37,15,184,75,220,62,58,231,170,123,23,182,220,188,118,69, - 13,245,185,29,219,213,244,248,177,93,77,167,219,14,191,221,103,151,230,233, - 157,205,143,28,219,213,212,52,252,241,207,115,85,214,96,105,66,123,71,196, - 173,11,253,67,61,8,150,206,194,181,87,126,112,241,206,198,131,187,122,7, - 12,95,79,127,23,12,211,185,159,207,165,185,80,62,99,174,239,161,79,125, - 115,215,251,230,47,90,28,55,98,208,160,89,34,183,106,217,93,73,34,119, - 211,213,87,175,244,184,92,179,6,194,97,171,191,205,9,122,162,112,185,92, - 240,123,189,184,234,242,203,87,143,239,174,21,10,133,98,234,226,41,68,38, - 166,97,66,51,1,255,44,255,220,219,55,254,201,246,229,247,45,125,112,223, - 55,126,241,149,223,239,61,243,35,0,53,60,160,100,248,146,71,10,81,46, - 206,165,179,231,99,225,130,107,31,248,207,111,140,136,155,41,76,248,75,2, - 184,255,35,155,62,230,243,250,145,78,220,0,64,211,52,184,92,46,204,42, - 155,61,119,254,156,170,143,13,133,251,161,105,154,37,114,255,99,205,198,237, - 51,74,203,49,24,74,140,168,168,155,63,127,113,56,26,69,204,48,108,221, - 146,163,210,71,194,42,116,39,172,184,197,57,184,117,133,66,161,152,146,20, - 68,224,128,225,46,186,152,1,51,102,194,27,240,94,217,240,208,31,255,112, - 198,188,178,198,66,229,159,14,195,48,240,173,7,127,178,189,229,157,115,8, - 71,6,1,145,176,64,53,77,67,52,174,35,22,143,64,211,180,12,92,136, - 9,59,43,110,198,48,16,186,152,216,51,28,1,41,132,64,56,50,132,187, - 111,253,31,219,91,222,121,19,0,224,113,187,253,17,22,45,153,41,34,145, - 94,32,171,139,20,10,133,98,26,81,16,129,75,244,201,25,136,14,70,17, - 238,11,163,227,183,231,143,31,219,117,98,67,231,169,174,253,183,126,101,101, - 99,170,107,175,186,119,225,241,225,183,165,0,254,19,192,135,110,94,187,162, - 126,56,32,165,213,241,194,44,233,232,62,135,191,121,236,246,181,143,62,240, - 236,246,96,96,22,92,174,132,247,54,22,143,34,164,15,162,212,31,132,215, - 83,146,86,224,132,48,17,31,190,198,87,18,128,175,36,144,112,213,26,6, - 122,7,58,113,178,229,117,252,226,196,139,107,255,252,150,79,111,7,128,119, - 123,123,59,12,211,204,184,35,148,114,215,163,81,116,245,247,119,0,176,31, - 41,175,80,40,20,211,156,252,246,193,153,64,60,18,71,184,55,140,139,231, - 250,209,118,228,237,55,95,249,231,125,247,188,252,119,175,44,235,60,213,181, - 127,248,180,255,4,128,101,159,170,175,191,234,222,133,143,217,165,115,243,218, - 21,229,55,175,93,113,213,205,107,87,124,105,217,167,234,235,135,93,154,173, - 167,119,54,215,230,170,172,145,104,24,231,187,223,126,234,239,190,243,169,181, - 157,61,231,34,166,105,66,211,52,244,15,246,224,233,231,54,254,232,205,150, - 163,93,134,17,183,132,207,225,142,17,55,98,120,167,171,13,191,122,243,103, - 93,191,250,221,171,63,42,241,248,96,154,38,186,122,223,193,145,223,190,18, - 249,207,159,255,219,218,166,223,31,124,106,193,165,137,162,31,59,123,246,80, - 220,48,172,113,110,153,16,55,12,244,14,14,226,15,157,157,135,198,121,219, - 10,133,66,49,101,113,97,116,56,97,166,56,94,39,4,96,68,13,232,23, - 195,232,127,135,132,237,181,123,94,252,210,127,93,219,126,244,220,143,248,185, - 167,119,54,223,117,108,87,19,137,220,232,241,109,195,208,248,56,0,232,62, - 219,13,0,63,178,59,111,236,36,110,167,227,189,63,60,245,200,246,143,175, - 238,234,125,55,18,143,199,16,137,134,209,222,217,124,242,235,223,251,124,195, - 153,183,127,211,21,143,199,29,83,136,197,99,56,215,217,130,95,188,241,82, - 215,247,127,250,205,134,193,112,255,73,159,55,128,11,61,237,56,252,219,189, - 145,159,28,252,222,234,63,156,255,253,83,0,80,234,159,1,0,104,185,112, - 225,228,235,205,205,135,1,0,154,150,112,61,166,40,161,16,2,253,225,48, - 222,233,233,193,239,218,219,159,201,217,237,43,20,10,197,20,195,5,192,16, - 2,81,195,52,116,211,20,186,105,24,186,16,136,2,48,144,104,83,109,143, - 107,208,228,129,100,9,87,92,212,128,222,23,198,197,119,250,241,206,137,119, - 219,15,108,61,184,214,78,216,36,126,72,111,150,125,170,254,217,171,238,93, - 184,206,233,196,238,179,221,104,59,252,246,105,154,201,196,34,110,34,110,152, - 136,198,76,196,82,109,70,226,188,84,12,133,251,247,126,233,219,31,91,253, - 135,243,167,251,13,211,128,16,2,113,35,118,178,241,95,63,211,208,124,238, - 55,93,118,193,32,166,105,162,227,189,63,224,224,27,47,117,189,114,228,63, - 26,6,66,23,79,122,220,94,116,245,189,139,131,39,94,234,127,249,240,191, - 175,238,190,120,193,154,221,133,91,108,223,122,241,197,135,245,88,12,124,92, - 33,207,129,68,79,8,129,65,93,71,91,103,39,154,90,90,94,121,183,167, - 231,167,41,111,68,161,80,40,166,49,30,183,203,184,232,119,189,119,242,226, - 197,223,11,19,102,9,4,162,129,160,113,178,196,27,236,143,197,98,6,16, - 239,247,187,186,223,116,56,158,104,145,5,96,196,77,68,250,35,8,245,132, - 208,221,218,211,254,219,221,39,191,222,242,243,214,103,204,184,25,73,83,6, - 156,222,217,252,125,0,215,47,251,84,253,151,0,96,217,167,234,191,5,160, - 153,38,87,14,95,212,107,128,36,113,187,90,78,227,98,103,8,191,127,187, - 31,3,161,88,202,96,196,184,33,240,110,87,24,241,184,144,246,39,91,102, - 67,225,129,189,127,247,157,191,90,241,133,143,63,182,95,211,92,195,231,196, - 78,54,254,239,207,52,124,241,227,143,91,251,172,243,245,65,28,254,237,79, - 187,246,30,249,97,195,144,62,112,18,0,66,145,65,28,250,205,127,117,189, - 112,240,255,54,12,233,253,73,19,37,243,252,126,247,246,219,191,252,246,75, - 47,61,124,223,170,85,223,40,241,120,224,241,120,224,26,182,230,128,225,7, - 7,211,68,127,56,140,182,206,78,28,59,123,246,236,254,55,223,188,215,249, - 46,21,10,133,66,225,153,59,187,228,236,93,183,196,191,119,254,194,192,76, - 195,48,92,154,230,50,103,206,156,209,127,197,229,179,218,76,211,212,231,205, - 246,181,221,117,75,124,167,221,113,97,154,113,0,136,71,12,12,156,31,68, - 231,233,247,250,155,254,253,68,227,153,159,157,125,42,19,97,227,12,91,100, - 239,84,175,184,226,129,182,195,111,151,144,184,13,15,29,16,213,43,174,104, - 109,59,252,246,143,70,89,110,195,60,184,229,87,155,206,119,135,17,141,153, - 72,231,117,141,197,5,90,223,29,216,207,247,93,232,57,55,234,188,184,17, - 59,249,205,31,124,169,161,60,56,167,129,239,219,250,131,135,147,246,1,192, - 31,58,126,223,249,187,150,95,37,9,153,221,62,167,252,158,255,245,175,159, - 232,25,28,236,251,216,138,21,143,87,4,131,21,126,175,23,110,151,11,38, - 128,72,52,138,158,161,33,188,219,221,141,227,45,45,175,236,127,243,205,123, - 245,88,236,124,202,155,84,40,20,138,105,142,214,221,221,173,233,145,136,71, - 215,117,205,48,12,77,211,52,225,241,120,68,192,239,143,151,148,148,8,33, - 68,202,227,179,103,207,198,210,79,92,191,94,0,51,127,187,251,205,173,113, - 61,158,213,146,57,118,203,229,200,75,227,200,75,231,112,166,218,114,57,65, - 191,127,222,31,213,213,125,238,170,203,47,95,93,17,12,46,22,66,4,222, - 235,239,239,104,235,236,60,244,187,246,246,103,100,183,164,154,108,89,161,80, - 40,236,209,54,111,222,172,105,154,230,1,91,239,13,66,8,33,68,28,9, - 83,40,229,241,150,150,22,248,103,250,150,70,135,98,205,166,97,102,189,30, - 220,243,207,63,111,187,127,195,214,245,199,55,175,223,186,148,125,190,99,243, - 250,173,163,214,131,251,248,199,63,158,109,150,73,108,222,188,121,92,215,175, - 93,187,118,92,215,219,225,118,185,130,179,131,193,149,101,62,223,98,77,211, - 252,145,88,172,163,47,20,58,20,138,68,70,89,130,79,61,245,148,18,56, - 133,66,161,176,193,163,105,90,121,44,110,94,97,196,205,153,34,17,116,98, - 2,162,223,235,209,218,60,30,207,32,128,96,44,110,86,59,28,239,7,32, - 130,151,6,87,207,156,63,243,211,221,103,123,190,126,241,157,139,227,90,15, - 110,195,214,245,143,33,49,55,229,168,245,224,54,108,93,31,5,240,212,230, - 245,91,115,190,30,220,109,171,254,180,241,213,125,63,109,180,59,22,8,4, - 230,134,195,225,174,84,251,188,158,146,185,177,120,52,233,28,187,125,68,213, - 165,87,54,182,95,56,155,148,159,219,229,10,94,89,89,249,229,170,75,46, - 249,188,6,204,50,132,128,48,77,43,192,164,111,104,232,112,107,103,231,195, - 3,225,176,90,15,78,161,80,40,210,224,209,35,198,149,239,245,137,79,68, - 227,98,17,128,18,0,81,183,43,126,114,206,12,236,12,6,61,205,145,168, - 81,221,213,43,238,141,198,197,98,126,124,246,12,177,51,24,244,156,4,16, - 131,0,60,62,79,213,220,171,230,108,159,117,249,204,7,222,107,126,239,193, - 80,79,56,163,245,224,56,27,182,174,127,11,192,85,236,243,241,205,235,183, - 46,221,176,117,253,29,24,17,188,111,109,216,186,254,242,205,235,183,38,245, - 197,125,248,79,107,5,226,38,96,166,49,104,4,16,143,26,56,217,210,187, - 233,237,243,67,141,180,251,175,62,250,223,55,218,9,220,31,45,95,241,64, - 89,89,112,222,107,251,95,105,76,181,111,193,188,234,181,33,61,220,121,161, - 167,253,169,84,251,136,249,115,174,216,200,5,206,239,245,46,248,96,93,221, - 43,62,175,247,234,104,60,14,195,52,19,179,155,80,196,140,166,33,24,8, - 172,184,166,170,234,96,91,103,231,195,231,251,250,158,72,125,163,10,133,66, - 49,189,113,197,226,177,89,122,44,190,56,106,122,111,136,154,222,21,17,195, - 115,131,30,137,95,19,139,197,102,10,33,220,177,88,108,166,30,139,95,35, - 31,143,199,226,51,133,105,90,161,132,66,8,8,19,240,150,122,175,185,236, - 250,249,63,189,188,254,178,125,190,25,37,25,175,7,39,139,27,216,44,37, - 195,174,201,47,176,99,95,218,176,117,125,242,120,185,184,9,17,53,97,68, - 140,148,91,60,18,199,80,40,134,72,52,121,168,64,220,24,61,199,228,138, - 15,174,120,224,139,255,253,43,219,227,70,204,218,247,129,165,203,63,35,239, - 3,18,190,220,234,203,174,218,94,49,99,238,103,248,190,154,203,174,222,62, - 103,214,165,163,86,17,224,249,185,93,174,224,7,235,234,94,41,241,120,174, - 14,71,163,32,129,19,166,57,178,18,194,240,123,0,88,48,103,206,55,102, - 7,131,106,61,56,133,66,161,72,129,11,2,110,8,81,2,97,250,33,76, - 63,32,252,2,162,68,64,184,133,16,26,224,120,220,126,74,143,225,229,104, - 2,229,254,134,170,15,44,56,118,233,226,121,59,61,62,119,202,245,224,134, - 221,146,87,165,58,103,216,45,233,188,30,220,240,90,116,113,67,100,176,153, - 48,71,89,122,201,159,87,124,112,197,3,27,238,255,199,237,131,225,33,136, - 225,115,175,172,185,242,246,7,239,255,187,237,67,225,33,8,51,89,32,133, - 0,92,154,27,85,151,94,185,61,24,152,117,59,37,233,210,92,168,186,180, - 206,70,228,70,242,187,178,178,242,203,62,175,247,106,61,22,27,89,11,206, - 105,61,56,36,86,19,152,95,81,241,184,219,229,82,235,193,41,20,10,133, - 3,121,89,15,14,66,64,152,9,161,155,113,105,240,175,222,119,195,21,205, - 115,106,103,63,234,114,187,198,181,30,220,230,245,91,191,15,224,241,225,143, - 127,190,97,235,122,251,8,149,145,161,209,163,55,225,52,136,96,228,118,86, - 124,112,197,3,27,254,230,31,183,135,35,17,24,102,28,154,203,133,218,154, - 43,111,255,151,175,108,254,177,105,106,190,88,60,234,56,16,193,235,241,249, - 106,47,95,244,227,25,165,229,183,83,73,220,46,55,170,46,93,104,107,201, - 185,93,174,96,213,37,151,124,158,172,182,76,87,20,240,122,60,21,21,101, - 101,106,61,56,133,66,161,112,32,175,115,81,146,208,65,211,124,21,239,43, - 255,202,251,86,84,53,207,186,124,230,3,154,75,179,214,131,219,176,117,125, - 11,70,250,215,154,144,16,176,211,0,108,215,131,27,238,123,203,249,122,112, - 30,119,98,222,105,75,220,244,8,226,70,12,30,183,7,239,91,80,179,248, - 225,181,27,119,153,194,53,44,110,169,69,200,235,41,241,93,185,224,154,93, - 165,254,224,98,33,18,150,158,219,229,25,22,185,202,36,145,155,29,12,174, - 212,128,89,134,141,139,84,134,36,88,211,52,184,53,13,101,126,191,90,15, - 78,161,80,40,28,40,204,114,57,34,33,9,46,143,123,238,220,247,95,178, - 189,188,106,214,131,239,157,237,249,202,80,215,208,143,192,196,141,13,11,40, - 248,122,112,37,37,126,252,209,242,132,91,146,196,77,8,1,151,230,198,159, - 220,124,199,199,92,154,27,209,88,52,237,106,2,137,37,117,0,143,187,100, - 174,207,27,248,152,97,198,173,101,118,220,46,15,222,87,249,254,237,30,183, - 215,154,201,164,204,231,91,108,10,1,19,200,106,61,56,77,211,80,226,241, - 168,245,224,20,10,133,194,129,130,173,7,151,112,13,10,8,67,64,115,185, - 174,156,83,59,251,135,158,18,119,99,193,242,79,135,16,120,224,190,135,182, - 15,233,97,152,166,145,228,199,52,77,19,38,76,107,93,183,204,146,27,153, - 243,114,228,58,1,195,140,99,254,37,87,108,15,233,3,116,204,111,178,0, - 146,140,211,79,108,106,61,56,133,66,161,112,160,48,235,193,1,86,16,136, - 17,51,17,25,208,143,247,157,235,223,16,29,140,238,191,100,225,156,198,84, - 215,110,216,186,126,212,122,112,0,234,135,247,229,108,61,56,61,26,198,246, - 255,243,248,218,207,221,251,197,237,9,119,37,45,82,106,194,48,13,184,93, - 110,100,178,248,66,34,234,49,113,141,203,229,130,75,115,39,246,65,32,22, - 143,98,48,212,135,158,139,157,107,47,157,83,181,29,0,244,88,172,67,96, - 196,50,75,7,157,99,154,38,162,177,152,90,15,78,161,80,40,28,200,239, - 122,112,72,44,118,106,198,12,196,244,56,66,189,225,55,223,59,243,222,61, - 157,111,189,183,44,58,24,221,63,124,218,127,14,191,214,15,71,83,218,81, - 142,68,148,229,151,192,196,109,243,250,173,57,91,15,206,52,77,188,126,252, - 232,83,223,221,249,173,181,161,112,40,66,82,18,55,98,248,217,47,94,250, - 81,103,207,249,174,132,163,53,181,21,39,32,160,71,195,232,27,120,175,171, - 111,224,189,31,37,214,143,19,136,70,117,244,245,119,69,206,119,183,175,189, - 56,212,243,148,223,87,10,0,184,24,10,29,18,66,0,89,89,135,2,49, - 195,64,56,26,85,235,193,41,20,10,133,3,249,89,15,14,137,70,216,140, - 153,201,194,118,170,235,218,112,159,158,180,108,206,230,245,91,239,194,136,200, - 141,30,223,230,76,94,214,131,123,253,248,175,159,218,252,212,63,173,14,235, - 161,72,98,22,127,3,239,158,111,63,249,196,182,127,110,232,238,238,236,74, - 229,74,20,194,132,30,9,161,167,191,179,235,157,174,150,134,184,17,63,233, - 210,220,136,68,117,244,14,116,69,46,244,156,91,29,142,12,61,5,36,130, - 78,0,32,20,137,156,236,27,26,202,120,61,56,32,49,134,78,143,70,49, - 16,14,171,245,224,20,10,133,194,1,23,18,235,190,69,5,160,3,208,33, - 132,14,105,61,56,135,227,163,23,85,27,30,148,76,194,166,247,235,237,61, - 173,61,107,237,132,77,226,135,236,253,179,27,182,174,119,92,15,110,152,211, - 242,76,38,16,228,30,76,12,56,119,218,204,225,113,122,169,104,109,107,221, - 251,196,246,127,90,125,113,160,167,159,2,100,186,123,186,79,62,246,100,99, - 67,119,111,167,237,212,91,16,9,203,173,167,191,179,171,171,247,221,134,184, - 17,63,169,105,26,162,49,29,61,253,157,253,157,189,239,174,142,198,35,214, - 236,46,220,94,107,237,236,124,88,238,135,179,91,15,14,0,226,166,137,80, - 52,138,139,161,208,43,122,44,166,214,131,83,40,20,10,7,92,128,184,232, - 210,226,39,17,31,56,34,226,253,135,17,31,56,226,118,153,111,106,154,214, - 47,132,48,0,209,239,210,226,111,58,28,103,43,116,10,152,113,19,113,18, - 182,150,158,181,231,223,188,80,55,244,94,40,237,220,148,210,248,54,32,49, - 29,215,29,236,51,159,151,242,244,230,245,91,71,173,7,23,143,26,24,10, - 199,49,20,142,97,80,119,222,134,244,56,244,168,145,152,6,139,33,91,102, - 173,109,173,123,255,231,230,191,95,209,115,177,187,139,196,168,187,187,251,228, - 99,219,26,27,122,250,222,235,146,29,138,113,211,64,239,64,87,87,87,239, - 187,13,134,25,63,9,0,134,105,160,103,160,171,235,66,207,185,21,49,38, - 110,114,126,3,225,240,47,219,58,59,31,142,27,137,114,89,235,192,97,68, - 216,132,16,136,197,227,24,210,117,92,28,26,58,219,61,48,160,214,131,83, - 40,20,138,20,120,60,30,237,236,236,32,190,23,139,27,51,33,224,130,6, - 211,237,114,245,123,61,174,54,0,186,199,173,181,205,14,98,167,221,241,225, - 21,5,96,154,2,241,72,28,145,161,104,127,255,59,253,141,131,239,13,61, - 5,129,172,214,131,219,188,126,235,35,27,182,174,127,7,192,3,0,74,104, - 229,128,225,185,40,5,18,1,37,63,26,101,185,13,115,178,165,119,147,30, - 53,173,89,71,82,97,10,129,144,110,236,231,251,34,49,125,212,121,221,61, - 221,39,183,110,255,90,195,251,222,87,211,96,237,235,30,189,15,0,194,250, - 80,231,64,168,215,18,55,167,125,78,249,157,239,235,123,34,26,143,247,93, - 86,81,241,184,215,227,169,112,105,90,98,120,1,18,253,131,177,97,183,228, - 197,80,232,149,238,129,129,123,77,33,212,122,112,10,133,66,145,2,79,137, - 215,219,231,245,120,6,77,211,167,9,33,52,104,154,208,52,77,184,52,45, - 174,105,154,240,122,189,253,30,143,231,164,221,113,151,203,37,0,192,136,196, - 47,246,180,246,54,246,119,12,108,21,166,200,122,201,28,98,120,58,174,109, - 146,245,6,36,143,145,179,133,79,156,60,22,214,62,244,255,217,70,121,116, - 247,116,159,236,238,233,62,153,110,95,79,255,133,81,150,170,221,62,226,100, - 235,235,163,242,235,25,28,252,215,139,161,208,143,43,202,202,62,87,230,247, - 175,46,241,120,22,11,32,16,141,197,58,194,209,232,161,129,112,248,25,229, - 150,84,40,20,138,204,208,94,127,253,245,180,38,15,185,211,104,60,87,34, - 50,48,241,234,241,36,150,138,115,185,92,214,171,236,238,19,66,192,52,77, - 24,134,1,77,211,96,24,6,76,54,145,176,41,205,235,152,205,120,51,59, - 104,86,16,183,219,109,91,14,254,106,24,70,82,121,228,178,80,121,92,46, - 23,220,110,183,245,158,54,126,239,66,8,171,110,228,124,199,115,95,197,92, - 255,215,95,127,61,180,97,107,19,24,30,51,104,154,86,125,240,244,120,57, - 51,133,202,250,181,175,125,13,175,188,242,10,74,75,75,97,24,134,245,221, - 166,122,79,247,30,143,39,6,213,187,221,137,33,27,154,166,193,235,245,38, - 93,227,118,187,17,12,6,113,211,77,55,97,237,218,181,214,61,229,251,190, - 52,77,195,239,126,251,70,198,215,41,242,143,166,105,88,82,191,44,229,57, - 39,154,142,97,217,210,15,104,64,98,253,48,167,243,92,195,221,237,66,45, - 76,60,33,100,60,14,142,55,236,110,183,27,30,143,199,122,229,141,63,199, - 10,250,96,13,44,53,56,36,46,212,112,140,101,176,179,12,229,67,101,229, - 240,124,226,241,184,181,69,163,81,24,134,129,120,60,110,137,29,221,175,211, - 125,123,189,222,164,58,112,187,221,214,57,148,63,175,11,106,20,169,113,29, - 11,197,90,255,145,72,4,111,189,245,214,152,238,41,91,86,173,90,133,187, - 238,186,43,239,249,8,33,16,141,70,113,250,244,233,164,135,9,142,252,240, - 4,36,255,102,232,251,162,135,7,94,207,244,89,8,129,183,223,126,27,87, - 84,169,161,140,197,68,38,226,118,244,232,81,0,9,113,75,245,191,209,52, - 77,184,210,141,45,82,228,141,140,4,142,26,80,183,219,13,175,215,11,175, - 215,155,212,208,203,79,175,220,42,160,70,149,26,126,249,149,172,10,122,207, - 127,44,118,98,225,4,53,24,114,89,100,97,139,70,163,136,197,98,136,68, - 34,136,68,34,136,197,98,136,197,98,86,99,15,216,139,27,175,3,143,199, - 3,143,199,131,146,146,146,81,117,193,173,40,94,118,122,29,139,53,87,204, - 245,79,150,208,84,195,235,245,90,245,106,39,92,132,203,229,66,73,73,137, - 245,16,67,117,70,184,221,110,152,166,105,189,114,203,205,52,77,28,57,114, - 4,87,84,221,93,240,251,83,100,198,137,166,99,73,159,231,206,171,28,37, - 110,7,14,156,118,188,126,243,230,31,99,195,134,213,66,41,220,196,224,40, - 112,212,64,147,27,140,26,116,218,236,26,0,254,231,165,52,228,244,228,198, - 146,196,128,26,13,217,154,224,105,56,53,180,100,165,200,79,213,178,176,69, - 163,81,232,186,142,112,56,140,112,56,156,36,108,116,61,221,147,147,112,144, - 8,208,102,24,6,188,94,47,76,211,180,132,135,238,139,223,119,186,123,152, - 172,245,111,231,146,205,23,153,76,72,157,11,184,123,146,223,51,125,23,252, - 161,135,62,115,247,37,149,147,30,50,60,30,15,76,211,180,174,33,79,129, - 166,105,232,236,236,44,200,61,77,87,232,127,111,154,2,145,72,4,209,88, - 20,166,105,38,222,71,34,152,63,255,50,204,154,53,211,246,119,44,139,27, - 0,116,117,170,216,174,201,196,40,129,227,22,6,185,193,74,74,74,224,243, - 249,224,243,249,172,198,149,254,252,220,213,197,251,179,184,229,0,140,252,217, - 185,56,216,229,75,240,244,169,113,118,114,241,81,227,33,239,35,55,36,89, - 107,67,67,67,8,133,66,8,135,195,73,98,32,91,70,114,35,70,229,145, - 203,200,197,142,247,105,149,148,148,88,239,185,53,151,9,147,173,254,237,250, - 44,243,133,157,91,48,31,200,238,100,250,46,120,127,39,119,15,3,201,66, - 239,241,120,146,92,193,244,240,36,255,78,237,126,183,138,204,73,39,94,220, - 98,166,254,87,249,189,223,239,67,32,16,64,36,146,85,208,183,45,43,87, - 142,44,105,153,202,170,83,20,142,36,129,147,27,87,143,199,3,159,207,7, - 191,223,15,191,223,143,146,146,18,203,178,161,134,149,68,36,22,139,37,245, - 99,241,254,6,59,40,47,110,49,200,215,240,134,216,73,36,184,139,141,224, - 226,166,235,58,134,134,134,48,56,56,136,80,40,4,93,215,173,60,188,94, - 175,37,28,92,60,200,29,72,13,42,47,131,92,86,254,228,30,143,199,225, - 114,185,16,141,70,173,116,248,189,200,214,160,93,159,217,100,171,255,241,6, - 4,21,43,92,220,232,193,135,196,205,206,122,150,175,1,18,130,76,223,9, - 183,172,121,32,80,89,89,89,33,111,107,210,144,240,176,36,130,131,66,161, - 16,98,241,152,245,62,30,139,37,61,216,57,137,23,253,135,75,134,255,67, - 244,159,242,251,252,195,199,92,88,184,112,33,92,46,23,218,219,219,199,93, - 230,45,91,126,98,189,95,182,236,253,227,78,79,49,126,70,89,112,188,113, + 189,123,124,84,213,189,247,255,217,115,201,204,36,67,72,184,38,74,144,4, + 114,16,212,163,64,107,69,173,4,143,181,207,163,61,28,173,173,167,191,214, + 122,252,213,158,115,172,84,90,138,246,254,148,208,115,158,182,94,144,22,139, + 218,243,212,83,203,161,61,231,105,143,72,47,98,139,173,96,139,64,171,2, + 182,10,210,132,4,13,24,76,200,133,36,147,217,115,217,123,61,127,76,190, + 59,223,89,217,123,46,201,204,100,18,214,251,245,218,175,153,217,151,181,214, + 94,51,179,62,251,251,93,223,181,150,22,10,133,52,183,199,227,209,52,77, + 3,160,1,16,134,97,8,35,30,143,11,33,132,219,237,78,121,188,188,188, + 28,231,93,90,181,180,235,120,119,115,100,32,218,135,44,57,255,252,243,109, + 247,47,188,125,193,193,99,91,155,151,178,207,55,28,219,218,188,83,62,239, + 212,169,83,217,102,89,244,148,249,124,193,171,46,188,112,69,125,117,245,98, + 143,219,237,111,239,233,105,127,249,248,241,125,45,239,188,115,68,62,215,5, + 224,240,145,63,137,203,22,255,181,54,154,188,204,49,230,175,105,154,24,77, + 190,10,133,66,145,111,60,30,143,167,162,163,103,112,110,79,183,94,46,132, + 233,18,2,166,166,137,190,89,211,60,39,42,42,202,7,92,46,119,176,163, + 103,112,158,221,241,169,83,203,251,0,136,197,127,187,104,213,165,183,94,242, + 137,61,15,252,254,91,175,108,59,244,232,88,10,180,240,246,5,247,95,189, + 122,249,135,247,110,217,95,43,29,250,238,157,127,248,120,116,239,150,253,143, + 30,219,218,188,121,44,121,216,177,100,225,213,141,135,142,237,109,180,59,166, + 105,174,153,66,152,157,169,246,85,76,153,49,179,183,255,76,210,57,118,251, + 136,79,252,237,23,26,255,253,23,247,39,229,87,230,247,7,239,91,181,234, + 139,159,184,238,186,79,123,92,174,169,131,209,40,98,241,56,226,134,129,184, + 105,226,229,230,230,253,223,126,230,153,251,94,127,235,173,23,249,117,135,218, + 15,98,195,209,175,137,133,39,47,194,71,222,247,247,163,18,186,138,41,51, + 102,198,98,3,97,158,255,169,238,30,4,253,62,219,252,237,202,175,80,40, + 20,197,132,118,164,169,243,93,143,255,52,254,209,211,93,198,34,13,102,137, + 16,90,52,232,235,58,242,177,255,97,108,189,242,242,197,205,109,237,3,11, + 190,251,95,241,219,79,119,25,139,249,241,143,190,63,190,117,249,229,139,143, + 148,149,150,198,254,230,203,13,141,239,253,204,85,235,163,3,17,116,28,59, + 243,250,111,191,177,231,115,173,123,79,236,202,164,0,220,130,91,120,251,130, + 55,174,94,189,124,33,0,132,207,234,120,101,219,161,67,199,182,54,47,93, + 120,251,130,27,174,94,189,252,153,240,89,29,0,240,202,182,67,15,28,219, + 218,252,5,96,216,130,19,93,107,5,250,163,64,212,72,157,97,220,196,217, + 142,65,172,123,248,15,27,158,248,121,83,35,237,254,229,198,102,241,129,117, + 11,70,136,67,125,205,197,119,123,61,254,89,71,90,95,110,76,181,111,205, + 223,55,54,158,120,251,68,199,207,127,255,228,163,169,246,57,229,119,254,180, + 105,115,118,126,245,171,207,205,174,168,184,176,171,191,31,3,186,142,88,60, + 14,83,36,12,36,151,150,56,85,143,197,240,221,157,59,239,219,241,199,63, + 62,4,36,44,184,31,252,230,7,162,245,146,102,68,7,34,240,156,242,225, + 58,223,251,209,240,158,107,50,18,58,178,224,254,241,166,251,30,190,172,202, + 253,209,91,46,255,171,217,148,255,161,147,17,68,34,253,88,50,119,234,136, + 252,63,249,247,63,126,240,3,235,22,104,202,130,83,40,20,197,138,235,237, + 246,206,169,109,111,247,44,238,30,156,121,69,79,120,230,242,174,80,197,21, + 167,78,117,92,212,214,118,178,60,22,139,185,219,219,59,202,219,222,238,185, + 72,62,126,242,228,169,242,88,44,230,2,0,33,4,204,184,137,120,204,196, + 244,186,105,23,125,228,7,183,252,250,99,63,250,251,221,179,47,154,181,52, + 93,1,8,18,183,240,89,29,225,179,58,186,142,119,181,210,177,99,91,155, + 119,238,221,178,255,51,244,121,217,109,75,62,191,240,246,5,31,77,74,160, + 63,10,227,76,24,131,167,67,8,181,15,56,110,103,79,15,224,47,39,122, + 113,186,43,156,116,249,64,184,127,68,153,46,156,119,241,221,255,177,225,119, + 91,6,6,123,173,125,243,231,252,213,157,242,190,68,29,0,159,190,245,27, + 91,174,188,228,253,119,242,125,107,254,254,91,91,26,150,174,186,91,78,155, + 231,87,230,247,7,119,126,245,171,207,77,159,50,229,194,182,51,103,112,166, + 175,15,161,72,4,81,178,222,12,3,209,120,28,81,195,128,6,224,142,149, + 43,31,188,102,241,226,79,90,249,0,86,253,71,102,133,241,236,180,159,97, + 207,31,126,151,177,240,148,249,253,193,119,95,80,249,241,250,139,214,204,254, + 201,254,87,173,252,13,211,196,69,127,189,14,251,155,219,71,228,111,87,95, + 10,133,66,81,76,184,140,120,220,13,17,43,129,169,251,97,234,126,136,152, + 95,136,88,137,97,196,221,166,105,106,134,97,216,30,143,27,49,151,105,178, + 30,28,33,0,83,192,52,76,24,113,19,53,239,62,191,225,19,59,110,127, + 229,111,31,186,97,235,148,170,224,156,84,133,24,114,75,46,36,11,205,142, + 99,91,155,55,191,178,237,208,199,216,174,91,147,78,136,26,136,12,198,208, + 63,24,195,64,56,238,184,245,133,226,232,31,140,33,18,147,123,159,146,245, + 224,194,121,23,223,253,139,141,127,218,210,244,86,19,98,241,40,0,96,90, + 249,244,235,183,223,255,210,150,230,182,102,68,227,145,164,243,13,3,240,121, + 125,248,135,27,239,219,178,104,222,210,235,1,192,52,129,18,79,9,238,92, + 245,229,45,43,150,200,34,55,156,223,125,171,86,125,177,170,162,226,194,246, + 158,30,12,232,58,12,211,76,212,167,92,66,33,0,77,67,137,215,139,15, + 45,95,254,64,208,239,159,197,14,38,213,127,54,220,183,106,213,23,167,6, + 252,51,124,94,31,252,211,111,196,107,109,167,1,33,32,68,162,252,231,205, + 251,56,94,106,233,72,202,31,16,72,202,95,161,80,40,138,12,23,18,129, + 35,163,193,241,58,97,10,24,49,19,70,204,192,69,171,22,125,252,174,223, + 124,178,185,225,222,247,126,163,36,88,82,238,112,201,135,51,201,240,216,214, + 230,31,191,178,237,208,3,0,176,236,182,37,127,183,240,246,5,59,146,242, + 29,18,5,33,132,227,70,13,183,44,104,137,170,72,112,225,188,139,239,254, + 229,195,127,218,242,102,123,7,66,122,63,188,30,31,42,167,76,191,254,133, + 199,91,126,222,219,31,243,245,244,119,90,121,89,121,15,85,201,180,169,179, + 125,107,255,191,7,127,126,201,252,247,92,239,210,18,251,3,254,32,238,92, + 245,37,27,145,75,4,116,124,226,186,235,62,125,166,191,31,161,72,100,68, + 186,118,120,92,46,84,6,131,149,239,169,175,255,39,187,227,194,28,153,198, + 191,255,230,7,182,9,83,254,161,72,20,128,134,202,169,213,240,78,191,9, + 111,188,221,153,136,40,26,42,127,245,188,219,240,82,75,135,149,63,0,56, + 229,175,80,40,20,197,128,43,253,41,163,71,8,1,35,102,192,229,113,249, + 174,248,167,203,191,244,169,223,126,178,121,233,199,46,187,219,93,226,246,209, + 57,11,111,95,208,114,245,234,229,181,212,231,246,202,182,67,15,188,178,237, + 208,177,19,251,223,234,181,75,243,216,214,230,47,188,178,237,208,161,161,143, + 127,151,171,178,6,75,19,218,59,44,110,157,232,11,117,35,88,58,21,23, + 207,191,124,241,214,198,189,219,122,250,13,95,119,95,39,12,211,185,159,207, + 165,185,80,49,101,166,239,222,219,190,189,237,130,234,69,139,227,70,12,26, + 52,75,228,86,46,187,41,73,228,174,186,240,194,21,30,151,107,106,127,56, + 108,245,183,57,65,79,20,46,151,11,126,175,23,11,207,63,127,85,54,247, + 248,165,87,62,47,254,235,185,255,155,148,9,229,31,141,199,88,249,103,99, + 74,213,135,225,43,61,31,188,252,231,205,187,13,47,183,118,194,53,36,112, + 217,230,175,80,40,20,133,196,83,136,76,76,195,132,102,2,254,169,254,153, + 215,175,255,155,45,239,190,99,233,231,118,63,248,251,47,253,101,87,211,79, + 1,212,242,128,146,161,75,190,80,136,114,113,102,79,171,198,130,57,23,223, + 253,179,7,135,197,205,20,38,252,37,1,220,245,193,13,31,246,121,253,72, + 39,110,0,160,105,26,92,46,23,166,150,77,155,89,61,189,230,195,161,112, + 31,52,77,179,68,226,159,111,94,191,101,74,105,5,6,6,19,35,42,234, + 171,171,23,135,163,81,196,12,195,214,45,57,34,125,36,172,42,119,194,138, + 91,156,205,61,198,203,226,56,56,229,143,248,242,222,47,138,171,140,107,112, + 227,138,27,52,202,223,24,178,250,168,252,83,202,170,48,123,250,124,200,229, + 191,96,193,157,248,211,137,255,64,249,172,190,172,243,87,40,20,138,66,146, + 87,11,142,35,4,96,196,12,68,7,162,240,6,188,243,27,238,125,239,79, + 150,221,118,217,250,66,229,159,14,195,48,240,157,207,253,98,75,203,169,147, + 56,59,208,5,97,10,203,93,24,141,235,232,31,60,11,211,52,50,112,33, + 38,236,172,184,25,67,255,224,89,171,255,14,72,88,180,225,72,8,183,92, + 251,207,91,218,58,154,1,0,30,183,219,31,97,209,146,153,34,18,233,5, + 178,185,134,234,191,23,61,120,58,242,223,120,108,251,227,130,242,23,150,203, + 54,125,249,167,159,255,97,180,117,52,103,157,191,66,161,80,20,146,130,8, + 156,48,5,226,145,56,194,61,97,244,158,236,197,241,23,90,14,238,248,204, + 47,86,190,178,237,240,134,116,215,46,188,125,193,193,161,237,141,133,183,47, + 184,127,225,237,11,14,94,189,122,249,146,161,195,173,41,47,206,130,246,174, + 147,184,243,127,175,88,221,222,245,38,226,70,28,230,80,0,125,44,30,197, + 217,129,110,68,227,17,152,194,76,43,112,66,152,136,199,163,232,27,232,134, + 30,29,132,128,128,41,76,24,134,129,238,190,119,112,232,216,239,241,237,255, + 188,111,181,54,84,245,111,247,244,180,27,166,153,113,71,40,229,174,71,163, + 232,236,235,107,207,230,30,169,254,181,99,46,252,195,212,79,224,83,31,188, + 75,147,243,207,164,252,111,54,125,31,26,92,89,231,175,80,40,20,133,36, + 191,125,112,38,44,97,59,123,178,15,39,14,188,245,250,115,255,178,251,214, + 103,191,242,220,178,142,163,157,123,134,78,251,25,0,44,187,109,201,146,133, + 183,47,184,223,46,157,171,87,47,175,184,122,245,242,133,87,175,94,254,249, + 101,183,45,89,50,228,210,108,61,182,181,185,46,87,101,141,68,195,56,221, + 245,214,163,95,121,236,182,213,29,221,39,35,166,105,66,211,52,244,13,116, + 227,241,167,214,255,244,245,150,151,58,13,35,110,245,63,57,220,49,226,70, + 12,167,58,79,224,15,175,255,182,243,15,175,253,230,167,37,30,31,76,211, + 68,103,207,41,28,248,243,115,145,159,253,238,7,171,15,253,101,239,163,115, + 102,39,138,254,202,241,227,251,226,134,97,141,51,203,132,184,97,160,103,96, + 0,111,118,116,236,203,230,30,205,102,13,31,44,189,21,91,238,124,76,123, + 239,123,174,214,120,254,218,144,243,147,202,127,248,141,223,162,237,173,93,224, + 229,255,227,107,207,97,138,120,13,151,207,63,15,115,102,215,101,157,191,66, + 161,80,20,18,23,70,134,19,102,138,227,117,66,0,70,212,128,126,54,140, + 190,83,36,108,207,223,250,204,231,127,117,113,219,75,39,127,202,207,61,182, + 181,249,166,87,182,29,34,145,27,57,190,109,8,26,31,7,0,93,199,187, + 0,224,167,118,231,141,158,196,237,180,159,121,243,209,47,108,249,200,170,206, + 158,183,35,241,120,12,145,104,24,109,29,205,71,190,245,195,79,55,52,189, + 245,167,206,120,60,238,152,66,44,30,195,201,142,22,252,254,213,157,157,63, + 254,245,183,27,6,194,125,71,124,222,0,222,233,110,195,254,63,239,138,252, + 98,239,15,87,189,121,250,47,143,2,64,169,127,10,0,160,229,157,119,142, + 188,220,220,188,31,0,160,105,9,215,99,138,18,10,33,208,23,14,227,84, + 119,55,94,107,107,123,194,246,60,135,4,190,247,137,239,105,171,174,251,219, + 36,37,229,249,83,249,95,58,242,43,44,173,238,129,207,21,6,149,255,15, + 175,237,194,197,51,187,176,242,162,122,244,133,195,40,245,79,113,204,95,161, + 80,40,138,1,23,0,67,8,68,13,211,208,77,83,232,166,97,232,66,32, + 10,192,64,162,77,181,61,174,65,27,49,216,74,8,145,16,182,222,48,206, + 158,234,195,169,195,111,183,189,176,105,239,106,59,97,147,248,9,189,89,118, + 219,146,31,45,188,125,193,26,167,19,187,142,119,225,196,254,183,142,209,76, + 38,22,113,19,113,195,68,52,102,34,150,106,51,18,231,165,34,20,238,219, + 245,249,239,126,120,213,155,167,143,245,25,67,253,110,113,35,118,164,241,251, + 119,54,52,159,252,83,167,157,130,152,166,137,246,51,111,98,239,171,59,59, + 159,59,240,127,27,250,7,207,30,241,184,189,232,236,125,27,123,15,239,236, + 123,118,255,127,174,234,58,251,142,53,187,11,183,216,190,243,204,51,247,233, + 177,24,248,184,66,158,3,137,158,16,2,3,186,142,19,29,29,56,212,210, + 242,220,219,221,221,191,230,101,224,245,47,243,137,235,254,127,71,19,241,59, + 207,60,115,95,204,136,163,253,204,155,120,249,200,175,240,254,11,125,168,153, + 49,29,46,151,27,157,189,111,227,15,127,126,22,75,170,251,241,215,23,212, + 88,249,187,52,13,114,254,10,133,66,81,76,120,220,46,227,172,223,117,230, + 200,217,179,127,17,38,204,18,8,68,3,65,227,72,137,55,216,23,139,197, + 12,32,222,231,119,117,189,238,112,60,209,34,11,192,136,155,136,244,69,48, + 216,61,136,174,214,238,182,63,111,63,242,173,150,223,181,62,97,198,205,72, + 154,50,224,216,214,230,31,3,184,116,217,109,75,62,15,0,203,110,91,242, + 29,0,205,52,185,114,248,172,94,11,36,137,219,133,114,26,103,59,6,241, + 151,183,250,208,63,24,75,25,140,24,55,4,222,238,12,35,30,23,210,254, + 100,203,44,20,238,223,245,149,199,62,190,252,51,31,185,127,143,166,185,134, + 206,137,29,105,252,63,119,54,124,246,35,15,88,251,172,243,245,1,236,255, + 243,175,59,119,29,248,73,67,72,239,63,2,0,131,145,1,236,251,211,175, + 58,127,185,247,63,26,66,122,95,210,68,197,60,191,215,222,122,235,197,239, + 238,220,121,223,29,43,87,62,88,226,241,192,227,241,192,53,100,205,1,67, + 194,101,154,232,11,135,113,162,163,3,175,28,63,126,124,207,235,175,223,110, + 37,32,213,191,214,233,66,195,29,153,77,213,69,249,239,111,122,243,185,217, + 93,191,122,95,195,124,55,206,159,54,13,66,8,68,227,17,188,252,250,179, + 184,118,1,112,222,180,243,208,61,48,96,229,127,222,252,248,252,76,211,87, + 40,20,138,241,192,51,115,90,201,241,155,174,137,255,240,244,59,253,229,134, + 97,184,52,205,101,150,151,79,233,155,123,254,212,19,166,105,234,179,166,249, + 78,220,116,77,124,171,221,113,97,154,113,0,136,71,12,244,159,30,64,199, + 177,51,125,135,254,243,112,99,211,111,143,63,154,137,176,113,134,44,178,83, + 243,150,207,189,251,196,254,183,74,72,220,134,134,14,136,121,203,231,182,158, + 216,255,214,79,71,88,110,67,124,238,225,63,108,56,221,21,70,52,102,34, + 157,215,53,22,23,104,125,187,127,15,223,247,78,247,201,17,231,197,141,216, + 145,111,255,215,231,27,42,130,211,27,248,190,77,255,117,95,210,62,0,120, + 179,253,47,29,175,181,252,33,73,200,236,246,57,229,183,227,143,127,124,168, + 123,96,160,247,195,203,151,63,80,25,12,86,250,189,94,184,93,46,152,0, + 34,209,40,186,67,33,188,221,213,133,131,45,45,207,237,121,253,245,219,245, + 88,236,52,93,107,26,38,250,79,15,160,191,37,132,107,252,13,184,243,142, + 79,100,61,120,255,84,87,215,142,163,199,247,238,93,240,55,13,159,237,232, + 237,173,244,123,189,24,24,232,197,252,114,23,252,222,82,52,159,62,157,148, + 255,229,239,58,169,2,76,20,10,69,81,163,117,117,117,105,122,36,226,209, + 117,93,51,12,67,211,52,77,120,60,30,17,240,251,227,37,37,37,66,8, + 145,242,248,180,105,211,176,244,163,151,174,21,64,249,159,183,191,190,41,174, + 199,179,90,50,199,110,185,28,121,105,28,121,233,28,206,100,91,46,39,232, + 247,207,122,79,125,253,63,45,60,255,252,85,149,193,224,98,33,68,224,76, + 95,95,251,137,142,142,125,175,181,181,61,33,187,5,93,0,182,238,252,15, + 49,16,30,192,221,183,124,42,107,97,147,157,181,217,230,175,38,91,86,40, + 20,197,138,182,113,227,70,77,211,52,15,216,122,111,16,66,8,33,226,72, + 152,66,41,143,183,180,180,192,95,238,91,26,13,197,154,77,195,204,122,61, + 184,29,59,118,216,238,95,183,105,237,193,141,107,55,45,101,159,111,216,184, + 118,211,136,245,224,62,242,145,143,100,155,101,18,27,55,110,28,211,245,171, + 87,175,30,211,245,118,184,93,174,224,180,96,112,69,153,207,183,88,211,52, + 127,36,22,107,239,29,28,220,55,24,137,140,176,4,31,219,178,5,111,157, + 106,19,115,207,175,201,217,122,112,107,238,185,199,54,255,7,31,126,88,173, + 7,167,80,40,38,12,30,77,211,42,98,113,115,174,17,55,203,69,194,32, + 48,1,209,231,245,104,39,60,30,207,0,128,96,44,110,206,115,56,222,7, + 64,4,103,7,87,149,87,151,127,162,235,120,247,183,206,158,58,59,166,245, + 224,214,109,90,123,63,18,115,83,142,88,15,110,221,166,181,81,0,143,110, + 92,187,41,231,235,193,93,183,242,253,141,191,217,253,235,70,187,99,129,64, + 96,102,56,28,238,76,181,207,235,41,153,25,139,71,147,206,177,219,71,212, + 204,158,223,216,246,206,241,164,252,220,46,87,112,126,85,213,23,107,102,204, + 248,180,6,76,53,132,128,48,77,43,192,164,55,20,218,223,218,209,113,95, + 127,56,156,180,30,92,211,91,77,120,252,23,223,19,127,125,222,165,184,114, + 217,21,163,18,186,207,126,102,237,76,211,140,135,121,254,122,44,6,143,203, + 101,229,255,189,7,30,216,223,218,209,113,223,183,30,122,232,197,111,125,253, + 225,198,47,126,237,115,141,233,210,85,40,20,138,241,194,163,71,140,249,103, + 122,197,71,163,113,177,8,64,9,128,168,219,21,63,50,125,10,182,6,131, + 158,230,72,212,152,215,217,35,110,143,198,197,98,126,124,218,20,177,53,24, + 244,28,1,16,131,0,60,62,79,205,204,133,211,183,76,61,191,252,238,51, + 205,103,62,55,216,29,206,104,61,56,206,186,77,107,223,0,176,144,125,62, + 184,113,237,166,165,235,54,173,189,1,195,130,247,157,117,155,214,158,191,113, + 237,166,164,190,184,15,188,191,78,32,110,2,54,19,13,39,33,128,120,212, + 192,145,150,158,13,111,157,14,53,210,238,143,127,232,31,215,219,9,220,123, + 222,189,252,238,178,178,224,172,231,247,60,215,152,106,223,156,89,243,86,15, + 234,225,142,119,186,219,30,77,181,143,168,158,62,119,61,23,56,191,215,59, + 231,242,250,250,231,124,94,239,133,209,120,28,134,105,38,102,55,161,136,25, + 77,67,48,16,88,126,81,77,205,222,19,29,29,247,157,238,237,125,136,167, + 23,54,194,216,127,226,69,252,159,159,125,95,92,189,248,189,88,84,191,48, + 43,161,171,158,62,231,75,229,126,215,71,171,43,202,102,83,254,103,195,6, + 76,51,130,169,1,111,82,254,255,242,149,175,220,87,61,125,238,122,0,35, + 234,75,161,80,40,138,5,87,44,30,155,170,199,226,139,163,166,247,138,168, + 233,93,30,49,60,87,232,145,248,69,177,88,172,92,8,225,142,197,98,229, + 122,44,126,145,124,60,30,139,151,11,211,180,66,9,133,16,16,38,224,45, + 245,94,116,222,165,213,191,62,127,201,121,187,125,83,74,50,94,15,78,22, + 55,176,89,74,134,92,147,159,97,199,62,191,110,211,218,228,241,114,113,19, + 34,106,194,136,24,41,183,120,36,142,208,96,12,145,104,178,115,46,110,140, + 156,99,114,249,229,203,239,254,236,63,126,105,75,220,136,89,251,222,181,244, + 221,119,202,251,128,132,47,119,222,121,11,183,84,78,153,121,39,223,87,123, + 222,133,91,166,79,157,61,98,21,1,158,159,219,229,10,94,94,95,255,92, + 137,199,115,97,56,26,5,9,140,48,205,225,149,16,204,225,89,84,230,76, + 159,254,224,180,96,240,147,60,61,170,255,179,209,179,216,249,234,47,177,245, + 153,109,25,187,14,215,220,115,79,112,106,169,247,227,101,83,230,205,126,187, + 167,111,56,127,1,76,41,159,143,158,144,62,34,127,187,250,82,40,20,138, + 98,194,5,1,55,132,40,129,48,253,16,166,31,16,126,1,81,34,32,220, + 66,8,13,112,60,110,63,165,199,208,114,52,129,10,127,67,205,187,230,188, + 50,123,241,172,173,30,159,59,229,122,112,67,110,201,133,169,206,25,114,75, + 58,175,7,55,180,22,90,220,16,25,108,38,204,17,150,94,242,231,229,151, + 47,191,123,221,93,95,219,50,16,14,89,203,207,204,175,157,127,253,231,238, + 250,202,150,80,56,4,97,38,11,164,16,128,75,115,163,102,246,252,45,193, + 192,212,235,41,73,151,230,66,205,236,122,27,145,27,206,111,126,85,213,23, + 125,94,239,133,122,44,54,188,22,156,211,122,112,72,172,38,80,93,89,249, + 128,219,229,26,185,30,155,181,28,80,230,204,175,170,250,162,199,229,158,225, + 210,220,112,151,204,66,127,88,183,242,119,105,46,248,74,107,208,59,24,73, + 202,31,16,88,115,207,61,106,61,56,133,66,81,180,228,101,61,56,8,49, + 52,89,49,48,101,118,240,227,23,92,49,183,121,122,221,180,111,184,220,174, + 49,173,7,183,113,237,166,31,3,120,96,232,227,223,173,219,180,214,62,66, + 101,120,104,244,200,77,56,13,34,24,190,157,229,151,47,191,123,221,167,190, + 182,37,28,137,192,48,227,208,92,46,212,213,206,191,254,95,191,180,241,231, + 166,169,249,98,241,168,227,64,4,175,199,231,171,59,127,209,207,167,148,86, + 92,79,37,113,187,220,168,153,189,192,214,146,115,187,92,193,154,25,51,62, + 77,86,83,166,43,10,120,61,158,202,202,178,50,251,245,216,108,210,248,245, + 239,159,179,77,120,205,61,247,4,107,102,204,248,180,49,36,216,94,143,31, + 174,146,42,244,235,137,81,30,84,126,95,233,28,244,14,70,172,252,1,192, + 49,127,133,66,161,40,2,242,59,217,242,144,208,65,211,124,149,23,84,124, + 233,130,229,53,205,83,207,47,191,91,115,105,214,122,112,235,54,173,109,193, + 112,255,218,33,36,4,236,24,0,219,245,224,134,250,222,114,190,30,156,199, + 157,88,57,200,18,55,61,130,184,17,131,199,237,193,5,115,106,23,223,183, + 122,253,54,83,184,134,196,45,181,8,121,61,37,190,249,115,46,218,86,234, + 15,46,22,34,33,28,110,151,103,72,228,170,146,68,110,90,48,184,66,3, + 166,26,25,184,252,72,88,52,77,131,91,211,80,230,247,103,181,30,219,35, + 219,191,43,246,189,178,63,169,240,148,63,149,51,81,126,31,60,254,243,224, + 118,251,193,203,239,47,157,131,222,193,232,80,64,45,178,206,95,161,80,40, + 10,73,65,214,131,131,72,72,130,203,227,158,57,243,175,102,108,169,168,153, + 250,185,51,199,187,191,20,234,12,253,20,76,220,216,176,128,130,175,7,87, + 82,226,199,123,222,157,112,75,146,184,9,33,224,210,220,248,155,171,111,248, + 176,75,115,35,26,139,166,93,77,64,211,52,8,1,120,220,37,51,125,222, + 192,135,13,51,62,180,79,192,237,242,224,130,170,191,218,226,113,123,173,153, + 76,202,124,190,197,166,16,137,112,253,44,214,131,211,52,13,37,30,79,86, + 235,177,69,140,8,246,183,238,195,227,59,30,23,239,169,95,142,37,23,93, + 170,81,254,214,98,57,86,249,253,112,123,203,32,151,191,180,108,46,250,6, + 79,194,227,139,103,157,191,66,161,80,20,146,130,173,7,7,145,232,67,50, + 227,38,52,151,107,254,244,186,105,63,153,122,126,121,209,172,7,7,33,112, + 247,29,247,110,9,233,97,196,141,88,146,31,211,52,205,196,190,44,230,165, + 22,34,113,141,153,212,87,39,96,152,113,84,207,152,187,69,143,134,0,0, + 154,166,249,77,51,253,50,60,35,210,79,108,89,173,199,70,245,127,54,212, + 135,95,189,242,44,158,251,253,111,196,112,254,153,151,191,36,80,13,61,26, + 202,58,127,133,66,161,40,36,5,177,224,4,96,5,129,24,49,19,145,126, + 253,96,239,201,190,117,209,129,232,158,25,11,166,55,166,186,118,221,166,181, + 7,135,222,150,34,177,180,206,251,0,228,124,61,56,61,26,198,150,127,127, + 96,245,63,221,254,217,45,9,119,101,194,13,39,132,9,195,52,224,118,185, + 145,201,226,11,137,168,199,196,53,46,151,11,46,205,157,216,7,129,88,60, + 138,129,193,94,116,159,237,88,61,123,122,205,22,0,208,99,177,118,129,97, + 203,44,29,116,142,105,154,136,198,98,89,77,151,101,198,12,24,49,19,211, + 252,149,88,121,197,223,96,225,252,122,237,235,95,253,234,39,41,255,76,203, + 239,69,8,240,76,163,252,71,78,69,163,80,40,20,69,64,126,215,131,67, + 98,177,83,51,102,32,166,199,49,216,19,126,253,76,211,153,91,59,222,56, + 179,44,58,16,221,51,116,218,207,134,94,151,12,69,83,218,81,129,68,148, + 229,231,193,196,109,227,218,77,57,91,15,206,52,77,188,124,240,165,71,255, + 109,235,119,86,15,134,7,35,36,37,113,35,134,223,254,126,231,79,59,186, + 79,119,38,28,121,169,99,114,4,4,244,104,24,189,253,103,58,123,251,207, + 252,148,34,14,163,81,29,189,125,157,145,211,93,109,171,207,134,186,31,245, + 251,74,1,0,103,7,7,247,9,33,128,44,214,131,19,66,32,102,24,8, + 71,163,89,173,199,86,166,5,241,63,151,253,79,220,245,145,187,180,133,243, + 235,181,228,252,147,203,223,55,112,6,122,184,19,82,249,225,22,125,168,44, + 243,195,239,43,205,58,127,133,66,161,40,36,249,89,15,14,67,238,176,152, + 153,44,108,71,59,47,14,247,234,73,203,230,108,92,187,233,38,12,139,220, + 200,241,109,206,228,101,61,184,151,15,254,241,209,141,143,126,125,85,88,31, + 140,36,102,241,55,240,246,233,182,35,15,109,254,151,134,174,174,142,206,84, + 174,68,33,76,232,145,65,116,247,117,116,158,234,108,105,136,27,241,35,46, + 205,141,72,84,71,79,127,103,228,157,238,147,171,194,145,208,163,64,34,104, + 3,0,6,35,145,35,189,161,80,198,235,193,1,137,49,116,122,52,138,254, + 112,216,126,61,56,155,125,179,42,102,226,211,31,93,173,45,185,228,178,36, + 37,125,240,225,135,173,252,169,252,189,253,29,152,234,139,66,131,1,86,126, + 76,41,137,98,198,148,32,226,134,1,183,203,227,152,191,66,161,80,20,3, + 46,36,214,125,139,10,64,7,160,67,8,29,210,122,112,14,199,71,78,99, + 56,52,40,153,132,77,239,211,219,186,91,187,87,219,9,155,196,79,216,251, + 31,173,219,180,214,113,61,184,33,142,201,51,153,80,31,31,13,120,118,218, + 204,12,198,137,181,158,104,221,245,208,150,175,175,58,219,223,221,71,1,50, + 93,221,93,71,238,127,164,177,161,171,167,195,118,234,45,136,132,229,211,221, + 215,209,217,217,243,118,67,220,136,31,209,52,13,209,152,142,238,190,142,190, + 142,158,183,87,69,227,17,107,118,23,174,50,173,29,29,247,201,253,112,118, + 235,193,1,64,220,52,49,24,141,226,236,224,224,115,122,44,150,188,30,27, + 171,127,25,89,216,146,238,183,163,227,62,97,146,229,217,129,153,65,23,252, + 37,37,208,144,40,127,79,95,7,166,250,226,40,47,13,88,249,107,0,54, + 126,251,219,106,61,56,133,66,81,180,184,0,113,214,165,197,143,32,222,127, + 64,196,251,246,35,222,127,192,237,50,95,215,52,173,79,8,97,0,162,207, + 165,197,95,119,56,206,86,232,76,4,48,196,73,216,90,186,87,159,126,253, + 157,250,208,153,193,180,115,83,74,227,219,128,196,116,92,55,176,207,124,94, + 202,99,27,215,110,26,177,30,92,60,106,32,20,142,35,20,142,97,64,119, + 222,66,122,28,122,212,72,76,131,197,144,45,179,214,19,173,187,254,247,198, + 175,46,239,62,219,213,73,202,208,213,213,117,228,254,205,141,13,221,189,103, + 58,101,181,136,155,6,122,250,59,59,59,123,222,110,48,204,248,17,0,48, + 76,3,221,253,157,157,239,116,159,92,30,99,226,38,231,215,31,14,191,120, + 162,163,227,190,184,145,40,151,181,14,28,134,133,77,8,129,88,60,142,144, + 174,227,108,40,116,188,171,191,255,118,36,39,104,213,127,137,89,130,186,153, + 153,123,111,191,245,208,67,47,246,12,134,159,235,237,239,192,244,50,13,254, + 146,18,0,128,41,76,244,14,116,96,70,16,152,18,240,39,229,159,109,80, + 140,66,161,80,20,26,143,199,163,29,159,22,196,15,99,113,163,28,2,46, + 104,48,221,46,87,159,215,227,58,1,64,247,184,181,19,211,130,216,106,119, + 124,104,69,1,152,166,64,60,18,71,36,20,237,235,59,213,215,56,112,38, + 244,40,4,178,90,15,110,227,218,77,95,88,183,105,237,41,0,119,3,40, + 161,149,3,134,230,162,20,72,4,148,252,116,132,229,54,196,145,150,158,13, + 122,212,180,102,29,73,133,41,4,6,117,99,15,223,23,137,233,35,206,235, + 234,238,58,178,105,203,55,27,46,184,160,182,193,218,215,53,114,31,0,132, + 245,80,71,255,96,143,37,110,78,251,156,242,59,221,219,251,80,52,30,239, + 61,175,178,242,1,175,199,83,233,210,180,68,120,62,18,253,131,177,33,183, + 228,217,193,193,231,186,250,251,111,55,133,176,214,131,19,2,136,71,226,64, + 84,195,149,11,175,194,138,229,153,47,118,74,232,209,216,142,254,208,201,189, + 193,25,211,63,27,141,197,42,93,154,134,184,17,71,169,59,6,151,230,70, + 40,18,73,202,191,162,66,87,235,193,41,20,138,162,70,123,240,193,7,53, + 33,132,199,52,77,77,8,161,65,211,132,166,105,194,165,105,113,151,203,37, + 132,16,41,143,183,182,182,98,234,249,229,107,1,148,247,181,247,111,18,166, + 200,106,201,28,187,229,114,228,165,113,228,165,115,56,147,109,185,28,183,203, + 53,171,178,172,236,159,202,252,254,85,37,30,207,98,1,4,162,177,88,123, + 56,26,221,215,31,14,63,33,187,37,31,219,178,5,191,251,195,94,17,137, + 234,120,223,123,175,27,243,122,112,107,238,185,39,101,254,178,91,82,45,151, + 163,80,40,138,21,237,229,151,95,78,219,64,145,59,138,102,176,72,68,214, + 37,94,61,158,196,82,113,46,151,203,122,149,221,87,66,8,152,166,9,195, + 48,160,105,26,12,195,128,201,38,18,54,165,121,29,181,44,34,10,237,160, + 89,65,220,110,183,109,57,248,171,97,24,73,229,145,203,66,229,113,185,92, + 112,187,221,214,123,218,248,189,11,33,172,186,145,243,29,203,125,21,115,253, + 95,122,233,165,208,134,172,77,32,97,109,154,166,105,213,7,79,143,151,51, + 83,168,172,223,252,230,55,241,220,115,207,161,180,180,20,134,97,88,223,109, + 170,247,116,239,241,120,98,80,189,219,157,24,242,160,105,26,188,94,111,210, + 53,110,183,27,193,96,16,87,93,117,21,86,175,94,109,221,83,190,239,75, + 211,52,188,246,231,87,51,190,78,145,127,52,77,195,101,75,150,165,60,231, + 240,161,87,176,116,233,187,52,32,197,236,127,0,52,234,110,87,15,130,227, + 66,198,227,224,120,195,238,118,187,225,241,120,172,87,222,248,115,172,160,15, + 214,192,82,131,67,226,66,13,199,104,6,59,203,80,62,84,86,14,207,39, + 30,143,91,91,52,26,133,97,24,136,199,227,150,216,209,253,58,221,183,215, + 235,77,170,3,183,219,109,157,67,249,243,186,160,70,145,26,215,209,80,172, + 245,31,137,68,240,198,27,111,140,234,158,178,101,229,202,149,184,233,166,155, + 242,158,143,16,2,209,104,20,199,142,29,75,122,152,224,200,15,79,64,242, + 111,134,190,47,122,120,224,245,76,159,133,16,120,235,173,183,48,183,70,13, + 37,44,38,50,17,183,151,94,122,9,0,197,182,57,255,111,52,77,19,90, + 186,177,69,138,188,145,145,192,81,3,234,118,187,225,245,122,225,245,122,147, + 26,122,249,233,149,91,5,212,168,82,195,47,191,146,85,65,239,249,143,197, + 78,44,156,160,6,67,46,139,44,108,209,104,20,177,88,12,145,72,4,145, + 72,4,177,88,12,177,88,204,106,236,1,123,113,227,117,224,241,120,224,241, + 120,80,82,82,50,162,46,184,21,197,203,78,175,163,177,230,138,185,254,201, + 18,154,108,120,189,94,171,94,237,132,139,112,185,92,40,41,41,177,30,98, + 168,206,8,183,219,13,211,52,173,87,110,185,153,166,137,3,7,14,96,110, + 205,45,5,191,63,69,102,28,62,244,74,210,231,153,179,170,70,136,219,11, + 47,28,115,188,126,227,198,159,99,221,186,85,66,41,220,248,224,40,112,212, + 64,147,27,140,26,116,218,236,26,0,254,231,165,52,228,244,228,198,146,196, + 128,26,13,217,154,224,105,56,53,180,100,165,200,79,213,178,176,69,163,81, + 232,186,142,112,56,140,112,56,156,36,108,116,61,221,147,147,112,144,8,208, + 102,24,6,188,94,47,76,211,180,132,135,238,139,223,119,186,123,152,168,245, + 111,231,146,205,23,153,76,72,157,11,184,123,146,223,51,125,23,252,161,135, + 62,115,247,37,149,147,30,50,60,30,15,76,211,180,174,33,79,129,166,105, + 232,232,232,40,200,61,157,171,208,255,222,52,5,34,145,8,162,177,40,76, + 211,76,188,143,68,80,93,125,30,166,78,45,183,253,29,203,226,6,0,157, + 29,167,71,236,83,20,47,35,4,142,91,24,228,6,43,41,41,129,207,231, + 131,207,231,179,26,87,250,243,115,87,23,239,207,226,150,3,48,252,103,231, + 226,96,151,47,193,211,167,198,217,201,197,71,141,135,188,143,220,144,100,173, + 133,66,33,12,14,14,34,28,14,39,137,129,108,25,201,141,24,149,71,46, + 35,23,59,222,167,85,82,82,98,189,231,214,92,38,76,180,250,183,235,179, + 204,23,118,110,193,124,32,187,147,233,187,224,253,157,220,61,12,36,11,189, + 199,227,73,114,5,211,195,147,252,59,181,251,221,42,50,39,157,120,113,139, + 153,250,95,229,247,126,191,15,129,64,0,145,72,86,65,223,182,172,88,49, + 188,164,101,42,171,78,81,56,146,4,78,110,92,61,30,15,124,62,31,252, + 126,63,252,126,63,74,74,74,44,203,134,26,86,18,145,88,44,150,212,143, + 197,251,27,236,160,188,184,197,32,95,195,27,98,39,145,224,46,54,130,139, + 155,174,235,8,133,66,24,24,24,192,224,224,32,116,93,183,242,240,122,189, + 150,112,112,241,32,119,32,53,168,188,12,114,89,249,147,123,60,30,135,203, + 229,66,52,26,181,210,225,247,34,91,131,118,125,102,19,173,254,199,26,16, + 84,172,112,113,163,7,31,18,55,59,235,89,190,6,72,8,50,125,39,220, + 178,230,129,64,101,101,101,133,188,173,9,67,194,195,146,8,14,26,28,28, + 68,44,30,179,222,199,99,177,164,7,59,39,241,162,255,112,201,208,127,136, + 254,83,126,159,127,232,152,11,11,22,44,128,203,229,66,91,91,219,152,203, + 252,240,195,191,176,222,47,91,246,87,99,78,79,49,118,70,88,112,188,113, 165,134,53,16,8,192,231,243,89,127,106,106,88,163,209,168,213,143,69,193, 26,233,26,87,178,152,232,189,44,30,220,18,2,146,159,140,157,250,175,228, - 167,98,106,240,195,225,48,134,134,134,48,48,48,128,193,193,65,196,134,255, - 24,116,111,165,165,165,40,45,45,181,4,142,44,38,217,53,201,221,119,188, - 156,116,191,220,205,201,35,56,101,235,77,182,10,236,68,99,188,245,47,7, - 51,112,40,191,92,215,127,161,40,164,139,146,94,185,165,198,251,219,156,2, - 137,228,125,244,155,138,70,163,73,214,190,157,69,55,29,32,143,138,49,188, - 210,134,147,120,197,98,137,125,94,175,215,241,125,58,241,242,251,253,105,173, - 254,92,214,191,18,181,226,35,73,224,184,251,133,26,86,222,184,146,149,18, - 137,68,160,235,58,116,93,71,52,26,181,4,69,14,63,151,211,37,87,13, - 53,84,92,72,248,159,159,7,123,240,247,118,141,8,255,1,147,232,144,229, - 54,56,56,136,254,254,126,12,14,14,34,30,79,172,203,230,243,249,80,86, - 86,134,96,48,136,178,178,178,36,203,141,238,157,242,227,200,209,111,114,20, - 34,119,71,1,201,150,165,44,18,242,147,254,120,235,159,238,217,174,238,121, - 221,81,131,202,93,112,227,173,127,57,175,124,82,72,23,37,128,36,55,53, - 89,207,0,70,9,156,44,118,178,213,75,86,32,53,206,212,103,199,189,4, - 83,1,46,94,134,97,64,143,232,73,158,20,99,248,55,106,24,134,245,59, - 119,18,175,146,146,18,120,188,94,148,150,38,38,37,247,122,216,123,175,7, - 129,64,241,173,20,165,92,148,197,71,146,192,209,31,217,231,75,248,165,201, - 186,161,63,100,60,30,183,2,52,116,93,183,172,7,222,184,218,69,222,201, - 174,46,202,203,238,9,150,174,35,65,162,70,159,247,133,57,97,154,166,101, - 185,13,12,12,224,226,197,139,24,26,26,66,44,22,131,203,229,66,32,16, - 192,140,25,51,48,115,230,76,4,2,1,203,237,103,215,151,34,55,220,178, - 53,198,159,194,229,40,57,126,175,84,39,153,148,63,219,250,231,86,179,252, - 64,145,42,32,132,247,199,201,125,139,227,169,255,169,6,245,127,210,195,15, - 144,90,220,228,223,60,127,152,160,6,157,190,43,58,55,24,12,22,248,174, - 198,70,38,253,93,92,188,200,211,32,191,39,139,184,100,216,107,2,76,14, - 241,202,4,229,162,44,62,60,114,191,143,215,235,77,234,243,161,167,248,104, - 52,106,53,174,161,80,200,18,55,110,181,17,118,79,245,20,93,200,27,85, - 158,183,157,40,82,67,204,195,228,169,177,144,33,43,134,130,73,6,6,6, - 48,52,52,132,120,60,14,183,219,141,210,210,82,204,156,57,19,51,103,206, - 76,178,220,236,26,111,167,96,10,110,197,240,232,67,222,231,66,66,231,132, - 44,40,99,169,255,112,56,108,137,155,147,176,57,185,113,101,241,229,101,26, - 75,253,23,82,240,10,229,162,228,222,6,122,248,145,173,113,121,64,125,170, - 190,56,170,95,30,77,201,163,42,39,154,92,4,107,144,75,158,139,151,203, - 229,130,223,231,31,126,64,208,172,8,224,169,130,11,208,52,77,19,66,36, - 134,10,200,162,118,236,216,239,177,97,195,106,184,0,77,140,125,213,22,197, - 56,240,0,201,141,43,15,186,160,63,31,53,174,67,67,67,24,26,26,178, - 196,141,7,93,16,169,44,7,126,156,26,84,59,139,143,26,146,88,44,150, - 52,102,136,26,29,185,49,166,63,32,13,3,8,133,66,150,184,105,154,134, - 210,210,82,204,154,53,11,179,102,205,66,89,89,25,2,129,192,168,134,139, - 144,27,125,142,157,112,115,113,166,198,95,174,19,126,158,93,208,70,54,245, - 31,10,133,172,7,11,217,138,176,187,31,170,127,158,55,119,101,114,161,227, - 238,200,76,235,191,144,2,71,51,146,228,27,178,180,248,32,126,185,126,237, - 126,179,28,254,208,64,175,20,160,66,238,108,39,75,59,151,56,5,107,100, - 43,94,185,232,239,154,138,144,200,245,247,247,227,248,241,119,173,253,92,220, - 38,176,120,211,30,75,224,228,112,116,122,66,229,193,26,67,67,67,208,117, - 221,106,248,128,228,70,209,9,238,222,179,11,84,176,179,66,120,163,204,251, - 133,104,28,17,89,132,84,6,178,222,72,220,200,45,233,247,251,81,94,94, - 142,153,51,103,34,24,12,38,137,27,165,103,87,6,14,111,228,233,184,93, - 240,136,108,221,201,86,18,191,63,249,88,38,245,207,197,141,167,69,215,59, - 53,190,220,218,144,173,71,89,236,40,221,76,235,191,144,2,215,219,219,91, - 176,188,168,78,185,133,110,119,175,178,149,198,127,19,118,144,53,76,245,61, - 86,139,102,188,193,26,92,212,148,120,141,15,23,160,205,156,57,211,18,57, - 37,110,197,131,135,254,200,52,14,140,207,200,33,139,6,13,142,182,107,184, - 9,121,191,60,224,217,169,177,176,179,224,168,19,154,63,185,107,90,162,195, - 158,91,128,212,247,70,101,141,68,34,16,66,192,231,243,97,198,140,25,8, - 6,131,150,184,241,49,100,188,188,114,57,120,63,21,63,102,183,159,62,203, - 46,87,46,18,60,79,238,194,204,180,254,67,161,144,229,150,228,22,5,109, - 118,22,6,47,11,15,83,231,162,198,239,137,31,203,180,254,11,41,112,29, - 29,29,5,201,135,238,139,63,68,201,174,68,217,139,64,245,47,123,0,100, - 139,93,254,127,216,9,71,161,130,53,148,120,229,14,46,114,13,13,87,43, - 113,43,18,60,220,61,198,59,212,101,113,139,68,34,163,34,5,1,251,208, - 113,59,11,40,85,95,131,157,216,113,145,163,63,55,29,227,13,59,183,222, - 40,248,194,48,12,148,148,148,160,180,180,212,18,56,26,6,192,211,183,179, - 194,156,92,174,242,125,203,238,70,187,123,146,55,121,56,3,229,153,174,254, - 201,114,163,122,228,214,5,255,44,231,195,239,147,91,13,220,50,147,239,133, - 127,175,153,212,127,33,5,46,28,14,23,36,31,238,82,36,82,221,167,252, - 80,225,244,123,224,231,242,188,236,136,199,147,35,116,201,106,55,134,223,79, - 229,96,141,201,10,137,156,18,183,177,208,108,187,0,0,32,0,73,68,65, - 84,226,193,67,13,21,185,38,120,52,32,133,163,243,49,86,78,127,94,59, - 177,0,18,13,57,205,236,96,103,189,241,63,60,9,22,111,68,169,225,22, - 98,100,86,120,222,184,242,113,111,212,55,168,105,137,14,237,96,48,136,210, - 210,82,235,41,85,110,144,229,242,202,174,70,167,167,111,142,28,180,65,101, - 146,3,19,236,172,87,30,104,144,170,254,201,106,166,107,233,94,168,110,248, - 28,152,118,253,112,84,175,188,156,114,208,12,31,176,206,247,165,171,255,66, - 10,92,33,135,9,164,122,32,75,213,7,105,247,155,146,143,243,107,236,230, - 242,116,185,92,40,43,27,25,159,105,24,134,21,20,21,143,199,173,7,33, - 26,91,7,192,242,90,208,239,38,85,160,147,34,55,216,173,16,160,1,80, - 1,37,197,131,135,26,87,62,243,6,69,237,209,88,43,138,80,76,247,100, - 106,135,108,77,200,215,202,125,24,188,97,225,34,71,127,94,18,76,46,6, - 124,58,46,33,4,188,195,46,25,218,232,105,87,206,43,213,147,180,108,157, - 217,89,173,169,206,147,173,61,62,134,138,187,1,211,213,63,221,147,157,240, - 243,215,116,110,74,185,95,144,187,45,121,127,42,159,28,152,187,192,156,234, - 223,201,2,153,204,200,214,122,186,115,101,215,163,211,195,144,221,181,229,229, - 229,163,246,243,168,85,217,90,230,191,19,250,77,211,126,217,29,237,118,187, - 45,177,211,52,45,73,248,104,186,58,133,98,42,227,225,211,82,113,139,136, - 4,131,6,114,167,123,34,148,255,224,4,183,104,100,156,220,54,124,31,255, - 131,147,200,70,163,81,171,145,229,253,111,20,89,72,238,73,234,115,163,134, - 66,46,171,93,89,100,55,30,191,7,39,17,116,250,44,71,136,210,123,30, - 137,152,174,254,121,221,243,186,144,197,77,222,120,126,92,116,249,125,112,113, - 147,197,222,46,77,187,250,47,36,133,106,144,169,126,82,185,214,229,250,178, - 251,253,58,149,151,255,78,200,165,104,119,14,133,239,59,65,194,70,129,42, - 244,160,68,239,129,145,161,43,252,251,242,120,60,152,49,99,134,245,222,73, - 4,105,229,141,169,248,16,163,152,30,120,0,36,69,21,82,3,203,133,141, - 132,131,55,254,50,78,127,120,238,230,162,243,100,11,195,9,106,196,249,140, - 237,212,159,68,101,35,129,163,49,97,52,11,136,223,239,183,21,183,84,79, - 215,114,128,0,189,231,226,46,187,46,249,171,156,22,119,7,202,179,86,112, - 119,169,83,253,243,201,156,229,112,245,84,66,103,215,127,36,11,183,92,15, - 124,150,19,122,229,141,163,83,253,23,210,10,40,164,139,82,30,176,239,36, - 118,178,139,90,142,202,181,123,8,146,131,122,198,83,206,116,34,8,36,234, - 141,250,227,92,46,23,124,62,159,85,86,190,166,161,44,130,84,7,20,57, - 75,223,53,15,60,82,34,168,40,102,60,124,60,24,48,50,27,8,109,114, - 212,160,44,74,78,130,71,216,53,74,118,253,96,78,199,229,134,155,26,127, - 154,177,159,47,86,42,132,176,66,237,105,80,169,93,244,91,166,101,231,231, - 200,13,145,44,116,118,127,112,30,185,200,45,82,158,110,170,250,231,227,165, - 228,186,200,68,228,228,254,68,39,151,164,124,175,178,192,165,170,255,169,216, - 215,195,31,78,228,125,178,85,204,45,127,0,163,30,6,249,49,234,199,76, - 55,103,104,174,49,12,3,131,131,131,41,207,113,18,65,242,136,240,7,39, - 138,162,229,110,111,250,93,171,126,65,69,49,97,141,131,3,146,231,114,228, - 253,110,118,125,78,118,253,88,28,46,12,169,250,225,100,236,92,61,92,0, - 168,1,225,65,47,212,80,240,254,44,46,28,178,200,201,86,140,220,55,39, - 159,43,7,104,216,53,124,78,117,192,225,19,48,203,174,68,96,116,253,115, - 235,200,46,80,133,92,156,118,34,39,215,181,147,80,115,55,42,213,21,31, - 68,46,71,75,202,245,95,72,10,221,103,196,45,55,110,137,103,122,157,221, - 255,198,110,61,193,98,32,19,17,36,225,35,143,12,69,111,146,8,2,233, - 251,5,53,77,83,34,168,40,24,30,254,4,74,13,172,44,110,252,156,116, - 214,151,188,95,22,55,217,61,153,42,61,126,14,143,230,227,110,73,121,16, - 178,44,112,84,110,158,166,147,139,81,190,79,59,43,45,19,203,141,35,63, - 165,83,30,114,84,167,92,255,78,226,38,91,110,169,92,150,252,126,157,26, - 14,254,36,206,235,139,139,112,170,250,79,247,192,146,75,10,229,162,228,98, - 46,63,28,217,89,189,244,202,191,75,187,223,69,98,58,172,17,203,141,92, - 140,147,5,211,52,147,134,106,12,12,12,140,58,39,93,191,32,121,45,50, - 21,65,185,95,80,5,199,40,178,193,35,55,234,188,129,181,179,208,100,151, - 140,29,116,157,60,51,191,83,255,155,252,94,22,24,185,145,225,227,130,56, - 36,112,92,220,120,121,236,92,75,114,185,121,25,184,107,143,159,147,206,106, - 147,45,67,158,174,220,55,150,174,254,101,43,207,206,5,201,69,78,30,66, - 0,36,187,74,237,202,202,221,146,60,31,254,224,224,84,255,83,181,239,133, - 220,137,116,239,60,98,52,30,143,59,6,216,216,89,109,148,150,252,155,42, - 148,139,178,144,144,104,143,39,56,134,139,32,245,13,210,49,21,28,163,200, - 6,15,255,131,241,213,160,9,217,250,177,123,111,119,142,108,185,217,185,228, - 100,225,147,211,160,167,58,222,240,242,149,170,105,174,73,222,119,196,215,116, - 227,105,203,79,218,78,247,37,91,117,178,27,84,190,95,58,135,210,225,86, - 175,44,132,220,221,74,226,149,170,254,249,121,188,78,249,125,217,9,29,119, - 85,202,245,200,203,111,119,45,47,23,47,171,83,253,23,146,66,71,81,114, - 129,147,31,2,200,122,149,173,94,249,161,134,234,73,182,220,104,163,89,71, - 166,19,99,17,193,124,5,199,40,166,54,30,0,73,141,170,108,173,56,185, - 160,228,190,43,142,108,97,240,198,86,118,51,241,6,65,14,192,144,45,10, - 167,39,50,222,208,112,183,159,44,100,188,129,151,197,69,78,219,238,105,219, - 201,181,73,216,45,15,226,228,194,226,229,75,85,255,118,145,123,78,22,49, - 223,79,66,199,27,222,84,27,79,91,78,43,85,253,23,210,69,89,168,153, - 57,120,240,4,31,255,73,13,171,236,166,230,200,223,51,23,55,46,122,180, - 69,34,145,130,220,211,100,35,19,17,4,198,31,28,19,12,150,33,20,10, - 21,226,150,20,19,128,229,103,201,164,63,137,255,48,200,125,192,23,246,36, - 232,51,239,103,146,93,150,178,37,37,139,27,79,11,176,95,77,219,174,124, - 153,194,45,67,39,113,227,214,10,119,85,202,79,241,180,143,144,151,177,145, - 235,36,85,158,169,72,229,218,181,195,169,33,150,211,225,105,217,149,27,112, - 174,255,66,186,129,174,188,242,202,130,228,195,163,76,129,228,7,18,195,48, - 146,214,135,179,115,49,242,135,22,217,98,227,245,103,247,59,81,100,199,120, - 131,99,18,115,215,78,158,126,80,69,118,120,128,228,177,57,78,253,2,244, - 20,36,15,12,118,178,32,248,198,231,73,228,233,241,87,121,191,140,236,38, - 228,215,103,50,235,59,165,97,119,76,182,242,120,99,206,95,169,126,156,44, - 43,126,92,70,118,3,218,221,27,93,239,84,255,114,217,157,26,71,234,151, - 72,101,101,240,116,237,112,42,163,92,255,133,100,213,170,85,5,201,39,22, - 139,89,79,251,116,191,177,88,44,105,9,25,57,200,135,224,214,154,157,184, - 201,30,1,37,112,249,39,147,224,24,59,230,206,171,68,87,231,249,164,125, - 71,143,30,205,105,217,20,249,197,67,79,146,118,13,47,239,139,225,226,38, - 207,196,1,140,22,44,167,49,89,233,176,19,33,249,105,152,247,111,241,62, - 39,59,1,144,93,132,114,163,194,27,32,250,76,121,218,89,113,188,76,252, - 124,158,158,252,158,202,200,235,138,54,10,216,176,171,127,217,229,200,163,204, - 236,234,141,202,73,125,110,220,42,147,27,91,39,241,227,121,203,46,84,187, - 250,255,218,215,190,102,123,125,62,184,243,206,59,147,190,243,76,145,191,63, - 217,69,204,93,232,188,126,14,30,60,136,223,252,230,55,0,70,2,33,104, - 134,28,90,109,157,22,165,5,146,93,143,212,247,70,97,240,180,166,31,205, - 237,74,179,4,245,245,245,97,85,195,45,185,172,38,69,14,56,209,116,76, - 137,217,20,192,35,55,232,118,33,237,220,165,40,11,153,83,255,141,252,116, - 203,27,76,126,141,83,163,46,63,245,242,241,97,242,204,249,36,180,188,241, - 181,179,164,236,196,199,201,85,40,139,66,58,203,133,231,45,11,19,189,242, - 126,49,158,151,93,253,203,229,162,240,116,217,50,147,133,77,46,15,255,44, - 91,135,118,229,176,59,63,85,253,111,218,180,201,182,62,242,65,33,243,42, - 36,141,27,255,97,162,139,160,96,100,34,110,203,151,47,47,80,105,20,227, - 193,35,132,72,138,134,227,79,183,78,214,130,93,67,206,175,145,3,74,156, - 250,215,248,181,242,83,181,108,61,240,153,61,40,109,222,121,76,209,83,100, - 189,240,134,159,71,191,217,137,28,127,111,39,110,78,215,240,244,156,132,143, - 196,151,207,55,41,91,82,78,245,111,135,124,95,220,170,227,34,108,39,120, - 169,92,100,78,86,29,89,248,78,245,175,24,63,203,62,240,193,137,46,130, - 66,49,37,241,200,131,165,121,131,201,221,146,178,56,217,245,185,1,201,195, - 3,232,149,220,64,124,63,165,233,180,143,202,66,174,30,10,235,181,235,255, - 160,48,97,187,190,14,238,250,147,251,166,120,158,178,53,36,31,115,186,78, - 254,44,91,111,60,148,153,92,169,220,186,76,87,255,118,214,154,221,198,197, - 141,7,254,56,89,124,78,238,74,46,124,124,208,191,83,253,43,20,10,69, - 177,226,161,70,141,198,148,1,163,195,211,237,92,149,252,152,147,37,103,231, - 198,180,179,252,120,218,60,82,147,139,27,173,22,0,32,73,48,52,109,100, - 193,80,222,255,36,71,176,201,150,162,147,123,46,149,219,206,9,249,122,89, - 228,236,102,86,161,50,166,170,127,186,7,46,82,92,180,249,253,114,120,191, - 167,92,78,187,190,56,190,241,50,112,113,115,170,127,133,66,161,40,86,60, - 212,144,1,201,99,157,100,43,194,174,177,79,39,124,178,229,147,202,237,198, - 175,225,110,180,88,44,102,173,139,22,143,199,147,6,118,242,126,45,143,199, - 99,185,250,228,113,101,114,196,163,157,43,142,62,203,46,72,249,126,83,213, - 131,188,207,237,118,91,147,62,83,104,57,15,19,231,150,18,48,186,254,249, - 171,157,91,210,206,61,73,231,58,9,156,108,245,241,186,166,250,226,97,236, - 233,234,95,161,80,40,138,21,15,53,104,188,49,228,161,240,212,71,228,100, - 157,17,118,193,36,118,110,73,39,49,32,184,235,142,34,207,66,161,144,53, - 245,142,199,227,65,73,73,73,146,203,143,44,56,190,170,0,183,138,228,8, - 69,39,87,163,108,9,165,90,207,203,238,62,184,176,80,57,105,85,102,62, - 110,138,196,131,71,220,57,213,63,157,79,11,145,202,125,120,60,178,85,30, - 194,32,79,87,38,167,47,91,116,188,111,142,34,0,211,213,191,66,161,80, - 20,43,30,185,161,3,156,45,25,39,151,157,93,99,47,7,118,216,165,145, - 202,194,160,69,76,41,180,58,22,139,193,229,114,37,45,135,35,247,195,149, - 148,148,32,26,141,90,253,80,118,46,74,202,215,206,53,41,247,87,209,64, - 118,126,142,211,253,210,126,178,42,105,154,33,159,207,151,180,56,43,9,47, - 205,112,145,174,254,229,125,118,67,5,120,191,27,159,110,203,78,160,101,97, - 148,199,109,145,248,210,130,171,233,234,95,161,80,40,138,21,15,48,18,232, - 192,167,118,226,214,12,23,43,217,218,112,234,143,227,112,113,115,234,143,163, - 207,92,220,66,161,16,6,6,6,16,14,135,97,154,166,173,184,1,9,235, - 133,6,230,242,178,243,49,126,220,154,148,5,196,78,76,228,99,252,90,39, - 100,177,245,249,124,240,251,253,214,196,177,36,110,124,37,132,76,234,159,151, - 133,187,41,121,89,156,166,40,179,179,142,237,250,226,184,53,73,125,110,153, - 214,191,66,161,80,20,35,214,76,38,242,171,93,195,15,164,159,32,153,222, - 115,87,153,140,93,159,29,183,110,116,93,71,40,20,66,127,127,191,229,30, - 243,120,60,240,251,253,8,4,2,240,249,124,214,106,221,84,14,234,27,34, - 129,228,105,218,5,80,200,247,101,39,92,178,200,240,178,243,235,120,127,37, - 95,81,188,180,180,52,105,8,3,143,70,228,2,151,73,253,211,123,121,192, - 189,60,110,209,206,53,44,91,166,252,222,228,113,110,220,45,156,73,253,43, - 20,10,69,177,146,52,23,37,31,71,198,45,4,59,43,45,213,211,59,185, - 247,100,209,176,115,83,114,1,34,113,27,26,26,66,127,127,63,6,7,7, - 17,137,68,160,105,154,213,184,250,253,126,219,213,2,52,77,75,178,226,120, - 95,30,143,254,147,199,127,201,229,161,52,185,80,200,110,74,110,5,242,49, - 127,92,4,104,166,11,42,19,5,108,68,163,81,219,229,126,50,169,127,62, - 20,128,220,146,242,252,160,36,128,178,248,201,121,201,245,67,150,91,56,28, - 206,170,254,21,10,133,162,88,177,86,19,176,11,196,144,27,89,46,108,220, - 162,32,232,152,93,52,38,79,151,55,216,148,15,5,53,12,13,13,97,96, - 96,0,253,253,253,208,117,29,66,136,81,162,193,135,8,80,30,212,176,147, - 59,144,79,100,43,91,160,114,216,189,108,225,240,243,237,196,77,78,139,250, - 220,124,62,159,85,206,64,32,96,45,225,65,1,51,52,61,147,188,26,118, - 54,245,207,203,73,150,171,236,126,117,185,92,163,2,131,236,172,68,30,49, - 25,141,70,173,135,139,108,235,95,161,80,40,138,17,15,144,236,50,148,195, - 205,249,218,74,212,152,243,87,39,156,92,148,178,245,70,1,23,212,231,115, - 241,226,69,12,12,12,96,104,104,200,154,185,189,180,180,20,101,101,101,240, - 251,253,150,203,207,206,61,42,151,141,139,23,31,160,204,203,34,187,28,101, - 241,227,240,60,249,16,5,10,40,33,183,36,185,241,72,104,169,79,145,196, - 77,94,71,45,219,250,39,11,89,182,72,249,56,59,42,163,92,247,92,224, - 184,85,57,158,250,87,40,20,138,98,196,118,89,98,222,175,4,140,132,182, - 243,126,38,187,70,151,55,210,242,44,28,0,146,196,134,210,140,199,227,86, - 159,207,192,192,0,6,7,7,173,160,6,175,215,139,25,51,102,32,24,12, - 162,180,180,212,10,216,176,19,78,46,18,100,93,200,171,146,203,65,25,124, - 60,153,124,76,118,15,242,64,27,0,73,51,148,144,229,70,125,111,180,58, - 49,69,35,242,73,118,51,89,105,56,211,250,167,122,166,207,228,178,228,129, - 40,118,105,243,186,143,197,98,57,169,127,133,66,161,40,54,146,4,142,135, - 160,219,53,178,116,156,91,47,78,171,6,56,5,104,144,123,142,55,174,67, - 67,67,8,135,195,86,159,15,0,120,189,94,4,131,65,171,129,13,4,2, - 73,235,112,145,235,144,220,128,148,126,42,235,133,94,233,26,62,54,77,238, - 155,35,119,167,92,126,126,223,124,156,27,189,231,226,70,110,63,26,40,157, - 78,220,198,83,255,124,69,5,39,203,89,211,70,86,47,200,85,253,43,20, - 10,69,177,226,145,67,248,229,6,152,91,11,124,134,16,62,207,162,44,112, - 78,79,248,220,37,201,151,15,73,44,58,152,112,225,145,112,148,150,150,34, - 24,12,34,24,12,38,133,218,219,69,68,242,190,38,187,178,19,188,108,242, - 48,3,74,75,182,230,228,107,249,220,151,84,46,26,248,76,81,156,228,250, - 163,251,211,117,61,105,220,27,79,147,152,172,245,175,80,40,20,197,138,101, - 162,112,171,65,14,73,231,141,44,183,192,232,58,106,92,229,21,188,9,238, - 18,227,115,27,210,43,53,254,60,10,177,172,172,12,101,101,101,150,85,68, - 226,65,229,146,93,160,118,1,21,118,129,49,124,159,108,117,202,65,30,60, - 77,186,55,114,75,82,152,60,15,184,224,150,17,185,38,121,212,164,147,184, - 77,246,250,87,40,20,138,98,36,201,7,39,91,20,180,143,55,236,66,36, - 22,111,4,96,45,159,34,247,87,201,81,123,114,159,15,189,114,183,27,13, - 138,166,104,61,191,223,159,52,222,74,46,15,207,207,41,204,95,46,147,157, - 43,85,142,68,148,7,76,203,2,194,167,7,227,253,143,124,28,25,223,236, - 196,77,174,227,201,94,255,10,133,66,81,140,216,6,153,216,89,60,180,159, - 26,91,26,76,205,251,116,168,177,149,167,127,34,1,144,103,207,160,201,136, - 169,31,139,26,88,154,160,88,94,224,147,151,77,46,175,93,8,191,157,59, - 141,230,117,228,231,113,161,3,146,87,35,231,227,220,100,235,136,91,84,177, - 88,204,178,220,72,68,100,1,146,203,230,196,100,171,127,133,66,161,40,70, - 108,5,14,72,30,191,70,13,45,89,46,252,156,88,44,102,53,254,114,63, - 147,220,48,210,181,212,112,82,120,189,188,81,35,206,27,83,59,215,91,58, - 236,132,143,195,27,123,46,134,114,62,148,142,60,102,142,175,151,198,173,35, - 218,239,36,110,153,150,125,178,215,191,66,161,80,76,36,142,2,199,145,27, - 125,234,147,137,199,227,214,44,254,52,253,20,119,125,241,169,168,232,90,30, - 168,65,86,2,239,207,146,199,215,113,23,97,186,50,18,78,125,114,180,223, - 110,238,71,122,79,86,28,159,115,83,14,218,32,17,225,98,198,173,40,187, - 64,21,39,119,106,38,76,134,250,87,40,20,138,98,35,35,129,3,70,79, - 95,69,239,237,92,98,114,3,203,211,224,253,90,114,120,187,147,251,49,219, - 198,53,149,229,198,173,42,217,98,227,174,202,84,249,202,174,63,254,217,41, - 2,147,174,27,43,147,169,254,21,10,133,162,24,208,132,16,226,248,241,227, - 104,109,109,69,52,26,69,89,89,217,168,245,190,156,130,31,156,72,119,14, - 143,230,27,26,26,66,73,73,9,106,106,106,176,116,233,82,116,116,116,160, - 163,163,3,47,190,248,34,226,241,184,53,112,90,158,146,42,151,229,145,23, - 247,244,120,60,184,243,206,59,49,127,254,124,0,64,71,71,71,81,212,207, - 252,249,243,113,248,240,97,199,116,115,77,71,71,7,174,190,250,234,164,185, - 45,101,177,38,161,229,238,91,217,181,10,240,73,162,5,132,72,158,40,186, - 185,185,25,243,230,205,43,216,125,125,228,35,31,41,88,94,138,194,160,38, - 31,80,216,225,121,227,141,55,240,214,91,111,225,218,107,175,197,165,151,94, - 138,210,210,82,0,201,17,121,156,76,198,64,165,59,135,26,71,211,52,17, - 14,135,113,254,252,121,188,249,230,155,150,96,60,255,252,243,168,169,169,193, - 236,217,179,225,243,249,10,90,158,104,52,138,238,238,110,60,255,252,243,184, - 251,238,187,1,160,232,234,231,150,91,110,65,69,69,197,40,33,201,228,149, - 112,178,110,1,96,112,112,16,63,251,217,207,48,52,52,132,222,222,94,0, - 201,13,8,31,112,206,175,19,66,36,173,172,206,173,76,128,198,244,197,97, - 24,72,186,86,215,245,130,222,87,95,95,159,99,221,43,20,138,169,131,103, - 112,112,16,129,64,0,243,231,207,71,105,105,169,99,128,133,93,163,67,199, - 101,210,157,67,174,60,151,203,133,96,48,136,203,46,187,12,45,45,45,24, - 28,28,196,137,19,39,224,243,249,48,103,206,28,248,253,254,81,215,231,179, - 60,110,183,27,129,64,0,151,92,114,9,58,58,58,112,240,224,65,44,89, - 178,164,168,234,7,0,6,6,6,108,135,51,216,165,39,151,141,31,151,131, - 81,168,127,114,104,104,8,0,208,211,211,147,52,121,53,45,0,43,223,171, - 97,24,214,16,6,62,109,27,0,43,248,101,100,16,188,6,143,103,36,154, - 213,52,77,116,118,118,226,138,43,174,40,216,125,145,160,42,138,151,112,56, - 12,32,249,187,162,246,32,16,8,76,72,153,20,147,15,79,44,22,67,101, - 101,37,2,129,192,168,96,6,96,244,216,42,126,220,174,175,43,221,57,252, - 56,53,64,129,64,0,149,149,149,136,68,34,48,12,99,148,229,86,200,242, - 8,33,224,243,249,48,123,246,108,196,98,49,252,254,247,191,199,213,87,95, - 93,20,245,243,214,91,111,97,214,172,89,232,238,238,70,36,18,73,234,63, - 163,235,228,201,154,233,28,234,163,163,198,126,196,221,107,90,22,149,166,105, - 136,68,34,86,163,194,7,120,243,33,20,178,213,68,209,153,118,66,77,199, - 105,69,115,143,71,75,74,79,211,52,203,42,46,212,125,81,67,169,40,62, - 116,93,71,107,107,43,158,123,238,56,14,29,234,192,169,83,231,209,215,7, - 148,151,3,139,22,85,226,198,27,231,227,238,187,151,162,166,166,70,125,143, - 138,180,120,46,92,184,128,171,174,186,106,212,172,245,132,220,152,217,237,27, - 203,57,220,13,103,154,38,2,129,0,222,122,235,45,116,116,116,160,174,174, - 46,201,13,54,222,188,50,61,135,202,67,34,247,246,219,111,99,198,140,25, - 8,4,2,69,81,63,4,9,15,69,65,198,227,241,81,19,48,115,81,224, - 238,68,77,211,172,249,50,1,32,30,23,240,249,96,165,83,82,82,98,9, - 129,207,231,179,93,212,148,151,149,79,234,44,91,91,114,63,157,93,63,9, - 5,186,20,242,190,202,203,203,71,149,67,49,241,232,186,142,151,94,58,142, - 111,127,251,48,128,114,44,93,122,35,238,188,187,2,229,229,126,244,245,233, - 104,109,237,197,107,175,181,226,208,161,215,240,249,207,175,192,71,62,114,163, - 18,57,69,74,60,161,80,8,94,175,23,253,253,253,73,211,78,201,150,74, - 46,33,75,41,225,178,50,172,112,119,194,237,118,99,104,104,104,84,132,95, - 33,202,67,131,183,121,195,94,108,245,67,110,67,106,224,105,134,21,46,36, - 220,74,178,115,29,210,126,159,111,196,210,33,151,33,89,100,100,121,1,169, - 93,173,242,164,212,252,184,156,47,207,159,92,158,100,173,23,234,190,84,31, - 92,241,161,235,58,158,125,246,53,60,243,108,43,106,22,45,194,29,119,46, - 66,69,185,31,126,63,160,3,168,208,129,154,69,149,168,175,159,143,221,187, - 79,225,95,158,56,140,142,142,243,248,228,39,111,85,34,167,112,196,3,36, - 187,108,120,255,16,127,82,230,199,229,125,50,153,156,195,207,147,203,64,13, - 158,124,110,190,203,195,225,101,40,182,250,1,128,146,146,18,75,244,236,150, - 176,145,27,124,59,107,152,112,185,70,172,49,57,93,59,11,78,78,87,70, - 118,183,82,218,114,185,168,76,188,236,133,184,47,213,7,87,92,132,195,97, - 156,58,213,138,103,158,59,9,255,252,197,152,191,120,62,252,229,126,192,15, - 232,1,0,8,0,129,48,16,6,252,243,203,81,89,95,137,14,61,140,103, - 158,59,137,69,139,42,177,104,81,205,68,223,130,162,72,73,57,14,46,85, - 227,149,237,117,185,64,149,39,249,122,185,241,119,74,55,93,8,53,9,182, - 203,229,74,234,199,226,243,95,202,2,66,231,167,75,147,222,243,60,120,26, - 118,195,63,242,125,95,234,137,191,184,8,135,195,120,233,165,83,232,13,212, - 32,224,7,58,0,156,215,117,148,195,143,196,55,69,1,39,195,15,39,21, - 1,244,150,7,128,112,13,94,122,233,148,18,56,133,35,89,11,92,46,176, - 123,218,206,4,85,158,4,242,192,108,59,11,146,55,254,118,125,99,118,86, - 22,159,124,25,64,82,96,9,79,219,46,63,158,151,252,153,250,205,156,44, - 62,190,62,95,33,238,139,250,224,94,122,233,37,28,58,116,8,77,77,77, - 74,244,10,132,174,235,168,175,175,199,141,55,222,136,59,238,184,3,0,112, - 247,221,119,227,80,107,13,176,232,86,192,239,71,71,111,24,199,91,129,249, - 229,126,248,3,9,145,211,1,232,97,29,189,58,208,218,17,6,252,126,244, - 85,0,207,188,116,24,167,78,237,158,208,123,82,20,47,30,0,214,124,134, - 114,240,68,190,26,112,59,120,67,25,143,199,147,130,57,38,98,246,122,94, - 158,98,171,31,62,221,22,144,188,80,42,127,207,175,229,253,134,242,138,235, - 0,44,11,135,7,141,164,18,28,59,120,154,252,26,202,147,187,59,185,171, - 151,175,228,80,136,251,234,235,235,195,107,175,189,134,103,159,125,22,21,21, - 21,42,34,175,128,232,186,142,243,231,207,227,153,103,158,129,174,235,184,245, - 214,91,81,89,89,9,189,183,6,229,229,126,84,84,36,250,221,18,231,14, - 95,20,0,244,240,136,5,23,240,3,21,21,126,232,0,250,202,107,80,89, - 25,158,168,219,81,20,57,30,96,164,33,203,71,64,71,166,214,145,157,120, - 100,211,184,230,179,60,197,86,63,244,153,71,22,18,118,34,146,202,2,163, - 247,20,198,47,223,119,170,217,90,236,220,148,78,223,151,220,151,71,215,209, - 61,20,242,190,116,93,199,169,83,167,80,83,83,131,138,138,10,0,42,178, - 178,80,244,245,245,33,28,14,163,188,188,28,167,78,157,194,141,55,222,136, - 138,138,10,148,215,212,96,126,133,31,243,203,43,80,94,225,71,133,63,33, - 116,254,192,136,224,1,64,133,223,15,88,54,93,47,80,83,131,138,138,142, - 9,186,27,69,177,147,36,112,64,97,173,36,39,228,6,111,162,41,182,250, - 209,180,145,181,233,0,123,203,201,201,29,72,231,216,89,67,178,5,197,191, - 7,57,15,110,61,201,249,241,99,212,127,231,212,95,38,63,196,20,226,190, - 252,126,63,58,58,58,48,127,254,124,84,86,86,2,128,37,116,138,252,82, - 81,81,129,222,222,94,232,186,142,142,142,86,248,253,126,148,151,151,163,162, - 55,140,249,229,53,168,156,159,16,183,242,128,31,129,242,0,252,72,124,95, - 186,174,67,47,15,32,220,23,30,222,7,0,21,208,123,59,212,195,137,194, - 145,164,21,189,243,209,120,219,165,153,137,213,162,202,147,217,117,118,194,155, - 74,0,248,123,167,113,120,178,123,209,46,77,121,63,31,136,45,215,21,23, - 59,254,30,192,40,75,173,16,247,85,94,94,142,27,111,188,17,225,112,24, - 129,64,64,53,144,5,196,239,247,195,239,247,163,183,183,23,53,53,55,162, - 188,188,60,241,29,160,111,216,114,43,71,121,69,0,21,229,128,31,137,62, - 56,32,97,201,233,97,29,254,74,0,125,1,160,55,12,189,162,15,229,173, - 125,106,102,19,133,35,41,23,60,205,23,242,152,51,90,48,212,137,66,148, - 7,24,9,70,16,66,88,243,41,78,84,121,82,213,79,42,183,32,239,219, - 162,125,92,132,228,213,8,120,158,166,57,250,90,222,247,200,251,66,229,149, - 10,184,181,197,7,100,147,43,81,238,67,227,239,121,31,92,33,238,171,175, - 175,15,53,53,53,56,121,242,164,213,224,170,70,178,48,208,20,92,129,64, - 0,53,53,53,232,235,235,67,101,101,37,230,183,182,162,162,156,196,109,216, - 130,243,39,134,10,144,67,50,224,247,35,172,235,195,159,134,3,79,2,189, - 168,172,84,81,148,10,123,60,128,115,131,45,143,243,202,85,195,206,211,147, - 67,184,39,170,60,178,203,45,19,203,97,162,234,135,159,151,174,15,204,206, - 186,177,179,70,71,242,26,217,39,47,27,148,174,78,100,241,226,130,232,148, - 39,229,83,200,251,210,117,221,10,44,209,117,29,189,189,189,202,69,89,32, - 194,225,176,21,216,83,81,81,1,93,215,19,159,203,91,209,123,190,9,21, - 53,183,90,226,230,47,79,136,155,159,130,76,252,0,250,70,58,228,90,79, - 29,66,77,185,114,47,43,156,153,144,97,2,114,250,118,13,218,68,150,7, - 200,108,249,141,137,170,31,59,43,40,93,26,244,94,94,149,156,159,227,114, - 141,142,214,148,5,206,206,141,9,164,31,46,64,51,146,240,227,244,89,14, - 100,201,247,125,81,196,100,77,141,122,242,47,52,118,117,94,95,95,15,0, - 120,237,208,41,116,156,154,143,249,183,174,128,223,15,148,7,128,192,112,76, - 73,192,15,132,117,160,15,0,116,63,78,29,111,66,69,239,41,220,122,227, - 82,235,122,133,66,102,66,5,142,242,200,52,31,85,158,228,125,118,1,23, - 233,246,243,169,175,100,104,63,15,50,225,83,132,145,144,208,121,92,88,236, - 34,48,229,89,71,184,149,69,195,6,146,39,72,46,204,125,169,62,183,226, - 130,30,56,116,93,199,161,147,135,208,218,20,198,138,91,111,69,160,60,17, - 76,226,199,176,245,54,60,108,224,240,225,215,160,119,52,225,198,165,53,168, - 175,175,183,214,109,84,40,100,38,108,28,156,252,180,205,153,136,113,112,169, - 202,83,108,245,51,222,252,157,174,147,243,148,3,64,104,31,239,243,226,238, - 199,84,110,68,185,220,220,141,41,91,167,249,190,47,53,23,101,241,65,125, - 114,189,189,189,56,117,252,37,236,62,121,24,53,75,23,97,81,125,61,22, - 213,212,160,181,181,21,167,154,154,208,122,252,20,160,247,98,81,77,13,106, - 106,106,16,8,4,212,212,107,10,71,212,56,184,12,202,83,108,245,67,101, - 178,115,237,113,43,70,14,204,112,178,110,228,60,140,225,14,43,154,11,82, - 182,156,120,58,52,206,140,63,0,200,67,6,236,230,138,228,2,199,39,107, - 46,196,125,169,6,177,56,169,172,172,196,210,165,75,81,81,81,129,214,214, - 86,180,190,246,26,14,61,251,44,116,93,135,223,239,199,252,249,243,49,127, - 254,124,212,44,78,44,151,67,67,60,212,247,169,112,66,141,131,203,128,98, - 171,31,138,176,4,48,202,178,204,244,122,249,26,114,33,242,9,142,105,249, - 26,249,28,46,240,166,105,90,110,76,121,24,0,185,34,233,24,193,175,167, - 60,11,121,95,106,214,146,226,132,162,89,43,43,43,81,83,83,131,112,56, - 140,190,190,62,75,224,104,72,1,173,95,169,190,71,69,58,212,56,184,73, - 90,30,114,237,113,241,149,27,120,217,210,225,215,82,222,92,180,200,53,76, - 240,137,144,129,228,169,179,236,44,58,158,191,221,42,0,118,86,151,108,225, - 21,226,190,84,31,92,241,67,253,106,118,43,122,43,97,83,100,138,26,7, - 135,201,55,14,142,247,93,201,107,163,209,123,126,174,28,160,33,11,7,63, - 135,223,55,173,38,96,87,62,89,112,156,32,161,114,58,71,211,52,196,98, - 49,196,227,241,130,221,151,234,131,155,156,144,216,41,151,164,34,83,178,26, - 7,103,135,28,54,46,227,20,104,64,175,227,25,7,151,203,242,228,98,28, - 92,46,203,67,175,78,245,35,55,224,78,227,228,156,172,32,187,115,229,113, - 111,178,5,151,206,138,74,247,89,134,210,160,85,183,11,117,95,170,129,84, - 40,166,7,227,30,38,48,30,107,70,110,200,115,145,87,46,202,3,228,110, - 28,92,62,234,71,211,18,171,104,123,189,222,113,91,147,92,128,41,224,131, - 172,54,190,162,58,207,155,187,19,13,195,176,237,247,226,34,101,39,242,180, - 95,14,42,41,196,125,41,23,151,66,49,61,80,227,224,108,242,152,12,229, - 33,119,106,186,190,46,110,233,240,52,121,58,64,114,159,24,69,27,210,52, - 86,60,109,217,98,34,49,226,3,173,237,4,141,250,217,132,0,104,55,79, - 43,20,10,21,236,190,84,31,156,66,49,61,24,229,162,180,235,219,144,223, - 203,215,240,115,82,53,64,156,116,238,43,187,115,39,170,60,197,86,63,134, - 97,96,104,104,104,84,240,132,156,87,42,228,40,71,74,39,18,137,32,26, - 141,2,72,8,28,69,31,242,243,184,136,81,90,242,48,1,158,135,92,22, - 158,47,63,191,80,247,165,250,224,20,138,233,129,99,20,37,117,246,219,53, - 204,214,96,95,77,3,88,99,79,175,252,184,201,210,179,246,49,247,20,239, - 135,225,216,149,71,22,22,126,94,162,124,26,52,45,185,33,180,59,78,251, - 71,246,37,91,29,118,46,211,177,212,143,166,185,146,202,35,215,143,166,185, - 0,140,52,196,180,79,8,51,101,253,156,56,113,34,195,175,119,124,148,148, - 148,192,235,245,58,134,223,83,249,228,129,249,178,136,243,250,145,69,143,247, - 179,21,234,190,84,31,156,66,49,61,72,18,56,30,158,205,7,53,219,117, - 246,243,6,215,238,28,58,238,182,185,198,197,162,22,157,66,190,185,208,216, - 5,31,216,89,5,114,121,228,125,195,239,70,237,75,184,205,146,67,203,237, - 202,147,143,250,225,53,52,18,57,56,178,24,168,92,158,143,126,244,163,80, - 140,143,158,158,158,137,46,130,66,161,40,0,150,139,146,58,251,121,3,238, - 52,3,69,182,145,115,118,251,248,19,189,93,32,3,89,45,92,216,242,93, - 30,234,251,145,231,85,44,182,250,81,140,143,217,179,103,79,116,17,20,10, - 69,1,72,18,56,77,211,224,245,122,45,97,225,86,7,119,55,145,101,33, - 52,13,176,153,151,144,31,119,219,236,211,134,45,37,183,219,141,104,52,106, - 27,6,79,159,169,15,200,201,82,74,182,188,4,76,115,244,76,40,252,56, - 224,26,181,79,136,145,207,177,88,204,118,126,196,177,212,143,92,30,185,126, - 52,77,64,211,220,163,246,81,121,156,234,71,161,80,40,20,233,177,166,234, - 242,120,60,8,4,2,163,166,103,34,236,130,35,156,2,41,248,123,167,96, - 12,32,49,169,178,219,237,182,181,152,220,110,55,124,62,31,60,30,207,168, - 254,185,124,149,135,132,68,182,166,138,173,126,20,10,133,66,145,30,23,0, - 116,118,118,194,231,243,33,16,8,216,54,222,192,232,32,11,187,6,215,238, - 120,170,107,60,30,15,124,62,31,74,74,74,112,225,194,5,107,127,95,95, - 31,188,94,47,124,62,159,173,184,229,171,60,110,183,219,18,176,222,222,94, - 0,192,188,121,243,138,174,126,20,10,133,66,145,30,215,37,151,92,130,147, - 39,79,78,152,133,64,238,191,83,167,78,225,146,75,46,193,172,89,179,208, - 214,214,54,225,229,249,195,31,254,128,89,179,102,193,52,205,162,169,31,133, - 66,161,80,100,142,171,172,172,12,29,29,29,216,181,107,23,206,156,57,83, - 240,2,156,57,115,6,187,118,237,66,71,71,7,202,202,202,224,247,251,209, - 221,221,141,189,123,247,226,220,185,115,5,47,207,185,115,231,176,119,239,94, - 116,119,119,195,239,247,163,152,234,231,125,239,123,95,193,243,87,40,20,138, - 201,138,118,234,212,41,113,230,204,25,252,246,183,191,69,75,75,11,122,123, - 123,17,137,68,50,30,132,61,230,140,53,13,62,159,15,21,21,21,168,173, - 173,197,117,215,93,135,186,186,58,0,192,243,207,63,143,150,150,22,188,251, - 238,187,24,24,24,64,44,22,43,72,121,188,94,47,102,204,152,129,203,46, - 187,12,181,181,181,184,235,174,187,0,36,68,166,88,234,103,241,226,197,121, - 205,87,161,80,40,166,10,154,16,66,156,63,127,30,93,93,93,232,238,238, - 182,102,146,40,68,3,238,241,120,80,86,86,134,57,115,230,96,238,220,185, - 168,172,172,132,174,235,232,235,235,67,87,87,23,246,237,219,135,112,56,12, - 195,48,10,82,30,183,219,141,64,32,128,85,171,86,97,238,220,185,214,148, - 78,84,158,137,174,159,242,242,114,148,150,150,230,53,95,133,66,161,152,42, - 104,2,200,111,75,173,80,40,20,14,184,84,116,176,34,143,168,193,85,10, - 133,66,161,152,146,40,129,83,40,20,10,197,148,68,9,156,66,161,80,40, - 166,36,74,224,20,10,133,66,49,37,81,2,167,80,40,20,138,41,73,202, - 21,189,21,163,201,36,230,75,133,165,42,20,10,197,196,51,53,4,142,143, - 73,43,64,216,113,170,49,112,106,82,100,133,66,161,40,14,198,36,112,114, - 19,46,164,125,5,181,96,164,25,248,69,98,245,210,252,101,7,251,245,219, - 64,251,243,150,115,145,34,215,67,161,5,126,162,243,159,134,56,213,240,180, - 251,237,43,138,158,113,15,244,166,31,251,132,252,184,109,150,156,73,236,206, - 175,200,1,137,251,30,181,144,105,94,115,44,66,28,150,4,42,152,200,20, - 48,255,9,253,157,103,65,62,203,105,165,237,224,193,176,150,125,202,34,77, - 53,208,91,145,79,38,111,144,137,131,184,21,44,123,36,47,121,83,236,13, - 95,206,225,235,216,177,77,211,180,209,86,213,20,87,208,94,252,0,0,32, - 0,73,68,65,84,201,95,8,145,81,31,236,68,33,63,116,229,35,237,84, - 233,91,139,8,231,165,4,10,69,246,76,94,129,27,102,34,45,8,203,93, - 89,144,220,138,8,122,184,192,136,123,154,91,14,121,23,57,41,255,164,67, - 121,206,191,88,27,240,66,136,91,210,190,225,245,15,229,117,16,129,226,173, - 35,197,244,99,114,10,28,179,222,242,61,233,113,218,162,20,52,51,145,190, - 225,206,228,156,113,150,33,19,139,57,111,34,83,224,252,185,120,79,38,242, - 89,110,254,112,49,237,30,238,20,147,138,201,41,112,140,66,247,189,77,24, - 66,192,157,161,47,214,157,80,255,252,22,7,163,27,81,250,92,136,70,143, - 231,47,111,185,202,159,247,57,113,87,120,177,89,40,220,194,146,31,252,198, - 91,206,116,125,205,78,150,99,177,213,145,98,122,50,249,4,142,89,111,211, - 134,44,196,141,40,132,200,77,7,248,239,172,24,69,206,78,220,136,92,255, - 71,210,137,155,157,187,82,161,152,72,38,245,56,184,105,97,189,217,137,91, - 134,13,151,91,211,52,35,209,42,231,188,88,220,82,146,35,247,10,241,45, - 164,178,212,166,224,175,160,232,112,178,236,84,221,43,138,137,201,37,112,211, - 205,122,179,17,183,177,88,114,57,21,185,12,35,87,243,246,192,49,209,249, - 43,212,16,25,197,164,97,114,9,28,99,90,88,111,154,6,67,8,193,69, - 205,200,64,221,71,157,159,203,186,97,226,226,100,185,229,245,251,152,232,252, - 167,57,74,220,20,147,137,201,215,7,135,105,54,29,214,176,200,201,251,28, - 55,70,62,197,45,241,113,36,144,161,208,226,86,168,252,121,126,220,123,80, - 44,13,59,31,143,41,91,182,185,254,159,200,81,203,153,6,156,40,20,19, - 197,164,181,224,136,105,241,180,110,99,201,165,163,32,226,102,231,46,46,164, - 184,229,57,127,43,82,147,9,8,80,60,226,70,240,233,227,70,205,234,147, - 195,180,57,153,4,156,20,83,29,41,166,39,147,90,224,138,65,220,10,21, - 22,111,107,201,57,80,40,113,163,114,229,157,9,204,191,144,129,51,185,164, - 16,191,73,94,39,202,114,83,20,35,147,86,224,138,70,220,216,172,26,249, - 207,48,131,251,205,117,157,76,192,60,159,69,149,191,68,177,90,38,78,150, - 86,190,210,78,183,162,70,49,214,145,98,250,49,41,251,224,38,186,145,3, - 146,93,50,197,50,38,42,231,76,180,184,76,116,254,18,197,222,112,243,254, - 184,124,165,157,42,125,58,94,204,117,164,152,94,140,105,53,1,249,39,46, - 143,127,201,235,15,188,200,196,45,105,255,84,252,115,243,161,25,19,81,239, - 19,157,191,98,20,78,223,194,88,126,251,106,53,1,69,62,25,247,114,57, - 211,141,116,145,98,83,85,228,38,84,92,38,58,127,69,222,80,2,167,200, - 39,147,182,15,110,34,153,86,195,20,128,137,23,151,137,206,95,161,80,76, - 74,148,192,101,201,148,179,206,20,10,133,98,138,50,41,131,76,20,10,133, - 66,161,72,135,18,56,133,66,161,80,76,73,148,192,41,20,10,133,98,74, - 162,4,78,161,80,40,20,83,18,37,112,10,133,66,161,152,146,104,133,84, - 56,163,128,243,213,185,85,104,185,98,2,16,154,166,2,109,21,138,34,65, - 89,112,10,133,66,161,152,146,40,129,83,40,20,10,197,148,100,218,14,244, - 190,108,193,130,180,174,164,119,207,157,83,126,78,133,66,161,152,164,76,91, - 129,3,128,246,246,118,199,99,85,85,85,5,44,137,98,60,152,210,4,51, - 174,201,183,124,155,66,161,200,3,25,187,40,77,64,208,246,199,43,87,10, - 249,115,62,11,153,15,222,61,119,78,115,18,177,170,170,42,101,189,77,18, - 76,64,52,55,55,227,197,23,95,68,115,115,51,158,120,226,137,81,130,151, - 43,246,29,56,48,233,126,231,10,197,116,102,76,81,148,38,32,86,174,92, - 137,95,28,56,144,149,8,140,53,138,178,170,170,42,233,194,246,246,246,180, - 249,102,26,69,121,217,130,5,130,91,114,83,81,220,166,170,133,67,247,117, - 242,228,73,148,148,148,96,255,254,253,104,104,104,192,214,173,91,177,125,251, - 246,156,223,231,117,215,95,47,126,251,198,27,41,211,84,81,148,10,69,241, - 80,212,65,38,123,246,236,105,172,170,170,18,103,206,156,65,123,123,59,218, - 219,219,241,147,31,63,143,170,170,42,177,103,207,158,198,92,228,193,45,185, - 169,40,110,196,153,51,103,172,45,95,22,14,89,244,255,176,113,99,222,27, - 121,178,220,122,123,123,177,120,241,98,116,118,118,162,161,161,1,223,249,206, - 119,176,126,253,122,220,113,199,29,227,186,207,117,95,252,226,168,107,23,44, - 88,96,187,95,161,80,20,41,174,49,108,72,88,112,34,219,235,132,16,89, - 109,11,22,44,16,196,238,221,187,197,238,221,187,173,207,11,22,44,16,187, - 119,239,110,116,186,54,219,178,45,88,176,32,171,251,121,224,111,91,178,190, - 255,137,216,0,136,51,103,206,36,109,0,242,82,118,36,4,69,108,220,184, - 49,239,117,3,64,180,180,180,136,230,230,102,209,219,219,43,0,136,127,253, - 215,127,21,205,205,205,226,214,91,111,21,205,205,205,227,186,79,167,107,3, - 129,64,202,52,53,77,19,106,83,155,218,138,99,27,254,47,23,31,100,185, - 1,192,158,61,123,176,102,205,26,172,89,179,198,58,126,230,204,25,172,91, - 183,110,99,174,242,203,196,114,187,255,111,91,4,109,185,202,183,16,212,213, - 213,37,189,223,182,109,219,4,150,38,119,152,166,137,206,206,78,116,119,119, - 227,208,161,67,248,236,103,63,139,15,125,232,67,248,238,119,191,139,15,125, - 232,67,99,78,247,131,55,220,32,156,62,127,245,171,95,29,117,92,161,80, - 20,39,69,43,112,0,224,247,251,45,113,179,59,6,36,220,152,185,200,203, - 73,184,114,33,106,153,184,237,242,225,218,51,1,65,22,109,93,93,93,146, - 208,229,34,237,76,239,43,95,110,203,133,11,23,98,222,188,121,120,227,141, - 55,48,111,222,60,220,113,199,29,104,109,109,197,194,133,11,209,218,218,154, - 85,90,95,254,234,87,5,109,71,142,28,73,58,22,8,4,240,229,175,126, - 85,0,192,198,127,248,7,77,62,174,80,40,138,147,162,31,38,96,39,110, - 185,230,254,191,109,17,219,183,213,12,127,74,47,100,79,63,89,155,113,63, - 93,54,253,64,155,54,109,194,198,141,27,197,63,111,218,148,211,126,192,230, - 230,102,156,57,115,38,167,214,155,11,208,76,64,164,42,51,221,251,198,141, - 27,145,235,123,34,40,176,228,59,223,249,14,182,109,219,134,83,167,78,89, - 226,230,202,34,200,228,209,71,31,117,60,118,96,223,62,109,223,190,125,197, - 235,238,80,40,20,182,20,181,192,233,186,110,89,106,118,199,210,145,107,87, - 98,54,194,6,100,39,110,68,174,68,142,172,55,59,190,184,110,93,78,196, - 70,22,185,77,155,54,37,229,15,228,71,220,40,192,100,225,194,133,248,236, - 103,63,139,127,249,151,127,65,95,95,31,214,173,91,55,38,113,83,40,20, - 83,147,162,30,38,80,85,85,37,156,6,99,87,85,85,97,219,182,109,155, - 0,96,205,154,53,141,242,113,183,166,229,68,224,178,21,53,98,188,145,138, - 227,21,6,18,184,230,230,102,0,201,125,111,185,18,56,158,151,221,254,124, - 139,155,19,99,17,55,222,175,70,46,72,74,103,211,63,255,179,120,241,197, - 23,241,235,35,71,52,42,131,83,30,66,83,195,4,20,138,98,161,104,45, - 56,26,251,86,85,85,133,51,103,206,88,150,156,174,235,212,88,59,138,91, - 46,24,171,176,17,100,221,208,231,116,141,125,54,231,166,163,16,214,219,68, - 96,39,110,185,178,212,72,188,134,73,170,188,71,31,125,20,145,112,120,210, - 214,155,66,49,109,25,107,8,117,62,135,9,44,88,176,64,208,182,123,247, - 238,70,254,153,246,165,26,34,48,150,97,2,249,12,103,71,6,161,243,153, - 158,151,105,158,66,136,164,97,1,219,182,109,19,219,182,109,203,121,248,62, - 47,55,189,231,91,174,134,12,32,33,110,73,105,231,235,59,251,98,98,172, - 155,224,159,233,253,157,119,222,41,248,103,121,155,232,176,104,181,169,77,109, - 35,219,112,219,81,60,240,89,75,200,74,107,111,111,215,182,109,219,182,137, - 54,32,127,150,91,174,113,101,97,97,228,210,165,167,217,204,228,146,47,215, - 164,92,238,141,27,55,90,247,189,105,211,38,140,55,130,50,159,150,155,29, - 219,190,249,77,237,250,235,175,79,250,12,0,143,63,241,132,56,119,238,156, - 245,89,161,80,20,57,99,125,154,206,135,5,151,173,149,150,75,11,46,219, - 129,222,197,188,65,178,162,242,97,189,193,198,66,203,116,95,182,249,20,202, - 114,227,219,129,3,7,70,229,51,103,206,28,97,183,159,111,19,253,196,170, - 54,181,169,109,100,27,110,67,38,30,59,203,173,80,86,26,205,71,153,201, - 18,58,147,141,124,5,150,184,18,1,74,90,58,139,51,211,243,82,81,40, - 203,141,179,106,229,202,81,249,124,244,163,31,181,221,175,80,40,138,147,162, - 16,184,98,16,55,32,177,124,206,84,18,185,124,137,91,161,40,182,73,162, - 255,247,255,250,95,147,178,30,21,138,233,74,198,2,199,151,199,89,185,114, - 37,14,28,56,96,237,27,239,114,57,36,106,19,41,110,196,84,17,185,201, - 46,110,28,178,2,39,186,28,10,133,98,114,49,166,113,112,99,37,213,56, - 56,154,114,43,87,226,150,110,185,28,59,113,227,76,246,149,5,190,185,109, - 155,152,204,226,150,106,172,89,49,35,52,53,14,78,161,40,22,138,70,224, - 114,77,38,2,151,46,141,201,44,112,147,153,201,42,110,128,18,56,133,162, - 152,152,182,2,167,80,228,3,37,112,10,69,241,80,20,65,38,10,133,66, - 161,80,228,154,162,157,170,75,49,189,80,150,143,66,161,200,53,202,130,83, - 40,20,10,197,148,68,115,154,148,87,161,80,253,152,138,169,72,33,99,1, - 198,130,203,229,42,238,2,78,34,148,139,82,161,80,40,24,154,228,46,175, - 174,174,94,213,218,218,186,127,172,233,61,244,208,67,73,233,61,247,220,115, - 227,74,79,145,57,202,69,169,80,40,20,12,33,132,229,186,24,175,184,1, - 192,19,79,60,97,165,167,196,173,176,40,129,83,40,20,138,20,212,212,212, - 84,23,115,122,10,103,178,238,131,227,243,70,2,137,165,108,114,90,162,105, - 64,33,235,112,60,121,77,215,62,184,234,218,218,164,58,107,107,105,153,158, - 21,49,69,113,234,131,91,181,106,85,245,254,253,251,119,0,88,41,29,58, - 80,93,93,221,152,173,229,181,107,215,174,234,19,39,78,216,166,247,220,115, - 207,57,166,167,250,224,114,71,198,22,220,158,61,123,26,171,170,170,196,153, - 51,103,208,222,222,142,246,246,118,252,228,199,207,163,170,170,74,208,52,91, - 138,212,20,178,14,229,188,182,109,219,182,41,151,121,253,99,99,163,227,159, - 80,158,36,57,91,170,107,107,69,117,109,173,240,148,148,88,27,237,147,197, - 39,23,240,180,41,253,179,103,91,112,246,108,139,227,241,241,144,105,253,140, - 183,30,211,165,145,139,244,167,2,171,86,173,170,214,52,109,255,254,253,251, - 91,111,185,165,113,229,241,227,199,49,48,48,0,33,4,142,31,63,142,251, - 238,187,111,101,91,91,219,62,77,211,246,215,212,212,52,164,75,111,215,174, - 93,213,15,61,244,208,254,19,39,78,180,154,166,185,114,217,178,101,184,237, - 182,219,112,219,109,183,97,217,178,101,88,178,100,201,202,187,239,190,123,223, - 67,15,61,148,81,122,138,113,144,205,42,219,196,238,221,187,197,238,221,187, - 173,207,180,126,219,88,215,110,203,102,157,184,225,114,228,37,159,124,231,85, - 200,58,164,188,18,43,162,239,16,11,22,236,200,58,175,84,235,158,53,54, - 54,10,254,74,91,109,66,0,108,143,101,186,213,214,214,138,215,95,127,221, - 118,171,173,173,21,181,181,181,57,91,19,174,182,182,86,252,252,231,215,136, - 223,157,56,34,246,237,75,172,55,39,196,200,218,115,244,126,223,62,136,223, - 157,56,34,126,254,243,107,198,157,63,213,207,210,165,71,146,210,145,63,99, - 156,107,223,45,93,122,36,229,250,121,227,77,127,178,110,242,239,28,192,254, - 134,134,6,113,252,248,113,177,96,193,14,49,48,48,32,142,31,63,46,142, - 31,63,46,132,16,214,231,134,134,6,1,96,127,186,255,205,134,13,27,246, - 63,249,228,147,226,251,223,255,190,104,104,104,16,47,191,252,242,168,237,251, - 223,255,190,120,242,201,39,197,134,13,27,70,165,55,209,107,168,77,165,109, - 248,119,158,26,178,4,0,96,207,158,61,88,179,102,13,214,172,89,99,29, - 63,115,230,12,214,173,91,183,49,147,180,178,193,198,10,41,152,197,147,107, - 235,170,144,117,72,121,237,217,179,103,211,154,53,107,70,165,153,143,239,43, - 149,69,151,75,90,90,90,240,195,31,254,112,148,27,113,60,204,158,249,12, - 254,223,243,255,133,85,171,128,223,157,56,130,55,223,56,130,223,157,56,146, - 244,126,213,42,224,255,61,255,95,152,61,243,153,156,228,185,36,33,62,105, - 95,199,146,230,88,174,31,75,126,83,129,85,171,86,85,3,88,185,101,203, - 22,212,215,215,3,0,22,45,122,14,109,109,109,104,107,107,67,83,83,19, - 130,193,32,234,234,234,176,101,203,22,0,88,153,202,234,218,181,107,87,53, - 128,149,115,230,204,65,69,69,5,0,224,177,199,30,27,117,94,69,69,5, - 230,204,153,147,54,61,197,248,200,120,152,128,223,239,183,26,102,187,99,64, - 66,36,114,185,212,205,186,117,235,54,182,183,183,99,207,158,61,88,183,174, - 31,0,208,222,190,12,237,237,237,168,170,170,218,8,228,110,245,1,202,11, - 72,8,208,112,218,57,205,171,144,117,248,242,203,47,111,90,183,174,127,227, - 186,117,223,179,246,85,85,37,222,183,183,255,117,214,121,201,2,246,79,141, - 141,218,63,54,54,10,254,74,46,175,198,198,70,252,83,99,99,202,107,179, - 189,159,23,94,120,1,31,254,240,135,1,0,31,248,192,0,106,107,255,13, - 213,181,16,231,206,153,214,57,11,22,36,158,215,218,90,178,91,148,180,171, - 247,6,0,137,242,94,187,228,134,108,139,54,102,78,28,191,65,227,194,34, - 127,206,6,46,140,39,142,223,160,81,122,200,192,13,41,95,203,211,24,11, - 252,225,227,246,219,111,199,119,159,126,58,103,125,152,159,187,255,126,177,119, - 239,94,235,243,120,251,71,247,239,223,191,227,190,251,238,67,125,125,61,154, - 154,154,176,105,211,21,56,114,228,2,214,172,89,131,193,193,65,4,131,65, - 108,217,114,2,43,86,84,226,186,235,234,112,223,125,247,97,199,142,29,141, - 53,53,53,182,125,104,39,78,156,216,177,100,201,18,75,220,110,186,233,38, - 252,242,151,191,76,58,231,224,193,131,184,226,138,43,112,197,21,87,96,201, - 146,37,0,224,152,158,98,124,100,100,193,17,118,13,115,190,96,86,136,109, - 190,249,176,120,128,252,91,87,133,170,67,59,203,205,142,76,45,212,127,106, - 108,212,248,102,119,78,109,109,45,6,6,6,108,197,47,221,181,78,188,240, - 194,11,73,159,95,127,253,117,0,192,217,179,183,224,236,217,91,16,137,52, - 88,219,217,179,183,100,147,180,197,220,138,35,88,185,178,17,191,59,113,4, - 251,246,193,241,245,163,119,253,183,97,49,44,78,198,35,74,227,185,150,160, - 62,202,219,111,191,29,109,45,45,90,91,75,139,182,119,239,94,84,215,214, - 138,207,221,127,255,184,44,196,207,221,127,191,168,174,173,21,123,247,238,181, - 210,190,253,246,219,145,131,126,209,149,235,214,173,195,224,224,32,218,218,218, - 112,207,61,203,241,242,203,17,84,85,125,15,193,96,16,85,85,223,195,214, - 173,111,224,186,235,130,8,6,131,88,183,110,29,48,58,104,36,41,61,183, - 219,109,125,184,249,230,155,1,140,88,113,143,61,246,24,126,249,203,95,226, - 138,43,174,0,0,12,159,155,42,61,197,56,200,88,224,116,93,31,211,177, - 241,240,242,203,47,99,221,186,126,203,242,0,18,86,72,85,213,247,146,44, - 158,92,229,85,85,245,61,43,63,190,229,42,175,66,214,161,174,235,104,111, - 255,107,203,90,3,96,125,230,121,181,183,183,99,221,186,117,27,199,115,111, - 220,122,235,234,234,26,71,169,19,214,222,192,192,192,40,97,35,156,246,19, - 45,45,102,202,227,118,116,245,222,128,185,21,71,146,94,87,173,218,135,107, - 151,132,109,95,207,157,203,141,155,114,178,195,133,133,11,27,183,216,184,208, - 141,85,228,200,106,163,180,104,255,119,159,126,58,73,232,236,202,149,9,117, - 117,117,160,7,220,96,48,136,245,235,175,7,48,226,241,56,117,234,110,4, - 131,65,12,14,14,90,110,76,192,57,220,159,172,55,226,166,155,110,2,48, - 34,114,143,60,242,136,237,185,106,248,64,238,201,72,224,218,219,219,181,186, - 186,58,199,227,117,117,117,214,106,220,185,164,144,22,99,190,243,42,100,29, - 102,155,215,88,45,84,59,107,204,53,188,142,219,88,220,144,116,221,140,25, - 51,240,225,15,127,216,114,75,202,175,118,108,218,52,82,117,38,246,137,234, - 218,3,162,186,246,64,70,13,157,44,110,115,43,142,0,0,132,104,176,221, - 0,192,83,178,111,90,246,89,201,112,171,45,149,43,146,68,110,44,144,184, - 57,29,255,238,211,79,143,203,154,163,62,182,234,234,106,12,14,14,226,193, - 7,151,88,199,72,220,232,188,193,193,193,172,203,79,86,28,144,44,110,138, - 252,147,81,31,28,141,165,170,170,170,194,153,51,103,44,139,70,215,245,164, - 198,50,151,253,111,148,62,89,32,114,255,81,190,44,30,167,99,227,165,144, - 117,40,231,197,235,140,231,69,125,116,99,233,147,227,144,245,214,210,210,50, - 234,137,105,172,66,7,192,81,204,56,155,54,109,194,198,141,35,218,76,2, - 4,0,87,94,249,243,140,242,177,179,224,128,125,142,231,71,163,192,169,83, - 149,184,254,250,125,34,30,93,149,242,254,236,250,212,142,31,207,220,205,41, - 95,63,22,87,162,83,191,94,54,229,112,162,165,165,5,181,181,181,57,237, - 103,27,11,223,125,250,105,173,186,182,86,80,121,178,161,169,169,9,245,245, - 245,168,171,171,179,68,172,189,253,175,173,62,56,98,112,112,208,178,244,82, - 209,219,219,59,202,138,115,18,182,222,222,222,172,202,170,200,142,180,2,199, - 7,10,111,219,182,109,83,93,93,93,210,147,126,190,196,173,189,189,93,171, - 170,170,18,20,248,33,147,107,139,39,159,121,21,178,14,51,205,107,221,186, - 254,113,245,41,202,214,81,75,203,74,212,214,30,64,91,75,238,187,19,236, - 132,78,22,54,190,127,132,85,25,165,111,111,193,133,83,230,185,104,209,121, - 148,148,36,234,33,85,80,139,131,32,101,108,101,228,162,111,44,69,26,227, - 182,66,73,76,170,107,107,197,68,14,136,39,203,45,91,113,3,112,96,219, - 182,109,43,159,124,242,73,75,220,248,43,39,24,12,98,219,182,109,0,112, - 32,85,122,134,97,100,252,39,48,12,35,93,122,138,113,144,82,224,228,198, - 18,72,136,129,220,95,147,107,113,227,121,167,179,66,242,97,241,228,210,186, - 42,100,29,102,145,215,70,238,145,205,214,66,229,141,58,189,167,113,85,99, - 43,121,102,112,161,219,184,113,163,37,56,242,43,177,115,103,110,44,184,92, - 88,137,83,145,98,154,225,101,172,101,169,174,174,110,220,177,99,199,190,117, - 235,214,37,89,112,178,184,1,9,75,111,199,142,29,168,174,174,110,4,208, - 103,151,222,115,207,61,215,8,96,223,178,101,203,70,89,113,50,189,189,189, - 56,113,226,4,93,99,155,158,98,124,56,10,156,93,99,73,141,112,62,4, - 45,85,222,197,96,241,228,74,220,242,85,135,233,242,202,183,53,76,22,93, - 58,139,38,83,238,185,231,30,156,59,119,206,250,188,96,193,2,235,125,109, - 237,191,1,128,173,5,55,22,102,204,120,29,93,189,31,24,101,193,229,210, - 74,44,36,227,25,211,150,175,241,112,172,159,46,235,107,111,191,253,118,236, - 221,187,55,47,22,98,107,107,235,126,77,211,14,60,248,224,131,43,183,108, - 217,50,74,228,232,181,169,169,9,15,62,248,32,48,98,109,245,193,70,148, - 90,91,91,247,63,244,208,67,7,186,187,187,87,2,163,3,78,136,222,222, - 94,116,119,119,167,77,79,49,62,108,5,46,85,99,153,111,138,212,226,201, - 58,175,66,214,97,186,188,10,213,255,39,91,117,99,79,103,116,67,214,214, - 210,98,189,175,174,77,182,20,199,35,116,109,45,45,218,61,247,220,35,128, - 90,0,159,192,200,235,51,57,181,18,83,33,139,202,88,68,134,143,125,203, - 102,28,155,221,56,188,92,184,69,9,114,29,142,103,60,220,119,159,126,90, - 27,142,164,20,64,238,45,199,234,234,234,198,253,251,247,55,46,93,186,116, - 229,125,247,221,135,117,235,214,161,190,190,222,234,115,219,182,109,27,118,236, - 216,1,12,207,73,137,97,33,106,109,109,117,180,226,238,190,251,238,198,182, - 182,182,149,75,150,44,129,219,237,182,132,174,183,183,23,134,97,224,196,137, - 19,192,240,156,148,233,210,83,140,157,81,147,45,23,155,184,77,148,40,20, - 107,218,217,230,37,31,151,163,37,83,149,47,213,100,203,100,177,217,137,90, - 174,172,184,84,121,103,50,230,237,202,43,127,158,245,160,111,167,60,156,4, - 110,44,121,152,137,41,178,172,107,100,81,161,207,242,121,99,33,85,26,38, - 32,150,46,61,146,147,126,190,201,132,211,100,203,53,53,53,13,109,109,109, - 141,112,152,108,121,248,61,89,90,125,233,4,169,166,166,166,225,238,187,239, - 182,77,111,88,216,108,211,83,147,45,231,142,81,22,28,53,130,114,195,87, - 85,245,61,209,222,254,215,25,255,17,178,63,191,120,68,97,188,56,213,225, - 232,114,36,215,81,182,117,150,46,175,124,90,168,249,20,176,76,242,190,242, - 202,132,192,242,153,76,56,52,171,73,174,200,149,59,212,14,89,96,10,41, - 56,211,77,220,82,49,60,147,72,131,195,212,89,220,133,152,86,220,242,145, - 158,34,123,108,151,203,161,6,48,185,177,252,158,0,128,76,26,224,108,206, - 77,156,63,117,196,141,176,171,195,228,114,140,174,163,108,235,45,85,94,185, - 184,207,108,151,203,145,173,186,201,76,33,172,68,197,196,224,100,193,113,28, - 6,93,143,89,136,178,73,79,89,112,185,35,227,245,224,168,241,205,134,76, - 27,234,61,123,246,52,102,98,241,228,130,66,230,37,147,207,58,76,206,39, - 55,34,62,93,215,131,3,146,135,65,164,179,18,149,192,77,46,132,166,41, - 1,153,38,100,45,112,249,176,224,128,244,22,79,46,41,100,94,78,228,210, - 130,75,78,55,119,22,234,116,22,56,197,212,69,9,220,244,33,43,129,203, - 103,31,220,116,36,23,125,112,50,185,180,80,149,192,41,166,34,74,224,166, - 15,25,11,156,98,242,144,43,11,85,9,156,98,42,162,4,110,250,160,4, - 78,225,136,234,236,86,40,20,147,153,220,198,82,43,20,10,133,66,81,36, - 40,129,83,40,20,10,197,148,196,243,31,255,241,31,19,93,6,69,145,162, - 9,161,58,225,20,83,142,76,198,193,101,131,114,229,23,47,202,130,83,40, - 20,10,134,166,105,130,111,14,51,145,40,38,1,74,224,20,10,133,130,33, - 152,231,162,186,186,122,213,240,148,91,138,73,136,18,56,133,66,161,72,129, - 195,52,91,138,73,64,218,21,189,101,142,30,61,154,228,111,94,190,124,185, - 234,167,201,146,66,214,161,250,190,178,103,195,195,15,39,213,217,230,111,124, - 67,213,217,52,96,213,170,85,213,251,247,239,223,1,54,251,127,91,91,219, - 62,0,7,106,106,106,26,149,37,55,249,208,126,240,131,31,100,116,226,209, - 163,71,27,1,108,188,237,182,219,172,125,149,151,206,197,174,103,255,29,0, - 54,45,95,190,188,49,15,229,155,82,20,178,14,41,47,0,88,190,124,57, - 142,30,61,186,137,62,103,154,215,39,62,254,113,199,99,91,191,245,45,177, - 254,11,95,176,109,248,255,102,237,90,241,157,237,219,199,44,10,36,48,124, - 165,113,90,195,14,200,189,224,200,130,6,0,183,222,26,2,0,188,246,90, - 233,168,243,199,155,127,166,245,51,222,122,76,151,70,46,210,159,140,200,65, - 38,92,216,110,185,165,17,223,252,230,106,107,225,211,166,166,166,81,235,193, - 201,66,167,130,76,138,151,108,92,148,86,195,252,234,171,175,226,213,87,95, - 197,249,11,93,24,222,183,113,184,65,205,11,71,143,30,21,124,203,87,62, - 5,200,171,144,117,184,113,249,242,229,0,176,233,233,167,159,198,177,99,199, - 54,46,95,190,28,195,251,114,150,215,214,111,125,43,169,142,184,88,200,199, - 178,97,217,178,101,184,233,166,155,172,109,217,178,101,88,182,108,217,168,60, - 198,203,134,135,31,22,75,150,184,177,252,3,75,113,253,245,33,132,66,33, - 220,122,107,8,47,188,0,188,240,66,66,232,66,161,16,174,191,62,132,229, - 31,88,138,37,75,220,57,203,255,203,95,253,119,145,234,115,174,211,87,216, - 179,127,255,254,29,13,13,13,43,143,31,63,142,150,150,106,212,213,213,225, - 204,153,51,104,106,106,66,125,125,61,158,124,242,73,28,63,126,28,13,13, - 13,43,135,215,139,83,76,18,50,18,184,163,71,143,10,222,48,223,118,219, - 109,224,86,8,53,208,185,46,220,209,163,71,27,41,111,218,62,245,201,191, - 36,17,106,156,76,121,21,178,14,73,152,143,30,61,186,105,249,242,229,78, - 105,230,244,251,26,143,152,101,67,40,20,194,178,101,203,114,42,114,94,207, - 245,232,56,223,137,195,135,129,149,183,220,140,129,254,155,177,242,150,155,147, - 222,31,62,12,116,156,239,132,215,115,125,78,242,36,241,73,247,58,150,52, - 199,114,253,116,21,195,85,171,86,85,3,88,185,101,203,22,212,215,215,3, - 0,22,45,122,14,109,109,109,104,107,107,67,83,83,19,130,193,32,234,234, - 234,176,101,203,22,0,88,169,162,42,39,15,89,245,193,81,195,236,196,209, - 163,71,27,115,236,170,180,44,158,199,30,123,12,0,240,200,35,143,224,182, - 219,110,195,171,175,190,186,241,232,209,163,200,97,126,73,214,21,0,75,132, - 114,153,87,1,235,112,211,177,99,199,54,30,59,118,204,218,241,244,211,79, - 3,0,238,191,255,126,28,61,122,52,171,188,100,1,91,255,133,47,104,228, - 166,164,215,191,89,187,86,0,192,251,223,255,254,180,215,102,123,51,23,46, - 92,192,165,151,94,10,0,248,197,47,226,40,45,189,30,27,30,222,37,152, - 23,19,228,197,220,252,141,79,101,149,126,52,118,16,64,162,204,7,126,126, - 48,219,162,141,153,175,63,250,151,26,23,22,249,115,54,112,97,252,250,163, - 127,169,81,122,244,157,100,115,45,79,99,44,240,135,143,101,203,150,225,19, - 31,255,120,206,220,160,223,255,193,15,4,255,77,143,215,93,188,127,255,254, - 29,247,221,119,31,234,235,235,209,212,212,132,77,155,174,192,145,35,23,176, - 102,205,26,12,14,14,34,24,12,98,203,150,19,88,177,162,18,215,93,87, - 135,251,238,187,15,59,118,236,248,255,217,59,243,248,168,202,123,255,191,207, - 108,153,108,144,132,213,8,178,138,43,168,40,22,149,34,162,109,221,80,91, - 105,203,109,109,181,74,235,130,215,106,91,219,218,159,5,180,94,109,235,189, - 245,90,75,173,75,43,183,181,214,93,44,40,86,145,77,220,216,17,5,138, - 108,33,16,18,8,89,39,147,217,159,223,31,103,206,228,204,100,246,153,4, - 72,190,239,215,107,94,147,57,231,60,203,57,51,121,62,231,187,60,231,153, - 43,49,185,99,131,140,4,46,217,192,156,111,98,45,158,120,125,89,178,100, - 201,28,96,110,190,219,138,61,207,124,182,213,93,215,112,194,132,9,81,226, - 150,136,176,181,151,50,38,151,142,40,21,21,21,17,8,4,226,138,95,218, - 29,143,193,44,108,0,95,252,226,23,121,239,189,0,83,167,246,139,123,252, - 210,165,135,51,110,195,97,159,68,191,126,171,184,112,242,36,124,254,85,56, - 236,137,222,7,134,197,176,115,92,238,104,32,23,129,204,165,172,129,33,108, - 102,81,251,241,221,119,171,31,223,125,183,202,85,232,12,97,91,183,110,93, - 68,212,158,123,254,121,101,180,153,131,208,93,120,199,29,119,224,114,185,216, - 179,103,15,223,248,198,151,152,51,231,21,134,14,253,63,170,171,175,103,232, - 208,255,3,224,7,63,24,77,73,73,9,119,220,113,7,243,231,207,191,48, - 69,157,194,81,66,198,89,148,221,141,97,185,197,126,254,217,207,126,6,228, - 215,106,52,234,142,21,134,174,104,171,171,89,179,102,13,183,220,114,11,16, - 109,185,25,251,12,194,9,40,57,89,168,102,235,205,231,243,229,212,239,71, - 30,125,84,237,217,179,167,147,176,25,212,213,213,1,241,197,13,192,237,206, - 188,205,120,98,246,225,135,231,1,65,160,243,187,69,38,215,0,186,120,25, - 194,146,72,196,204,251,159,123,254,121,149,141,200,25,226,22,43,98,70,93, - 134,208,153,219,202,68,240,140,152,27,64,73,73,9,119,221,117,6,143,60, - 178,41,34,110,91,183,94,75,73,73,9,46,151,43,226,198,4,125,250,192, - 238,221,187,247,100,122,62,66,247,145,214,191,234,132,9,19,180,120,86,148, - 65,120,223,125,121,234,83,143,164,59,175,97,154,83,1,98,219,202,56,38, - 23,207,50,51,178,242,178,181,218,238,250,225,15,53,155,205,198,160,65,131, - 34,34,23,251,30,143,237,219,183,71,254,190,117,214,179,234,199,119,235,175, - 116,218,140,103,177,1,92,121,101,191,184,47,128,89,255,153,94,221,61,157, - 116,45,180,255,121,248,97,45,29,143,66,60,226,137,155,153,111,205,152,161, - 25,113,217,108,98,179,70,140,109,248,240,225,184,92,46,126,244,163,51,35, - 251,12,113,51,142,115,185,92,217,156,130,112,132,72,203,130,51,146,22,226, - 185,239,204,3,115,87,88,55,134,245,20,107,185,117,5,93,89,119,119,94, - 67,83,146,9,16,215,114,187,15,192,136,209,101,19,147,51,99,88,111,238, - 56,230,83,46,238,201,68,98,102,102,251,246,237,81,49,63,67,128,32,125, - 119,101,60,11,78,183,216,226,19,10,193,148,41,5,192,179,106,222,99,201, - 227,125,241,220,126,205,205,233,199,249,98,203,103,19,27,75,228,122,204,164, - 31,137,112,187,221,20,21,21,229,53,206,150,13,223,154,49,67,251,241,221, - 119,43,163,63,153,96,100,75,26,83,3,92,46,23,213,213,215,71,98,112, - 6,46,151,43,98,233,9,199,6,41,5,46,38,85,254,190,112,44,202,76, - 151,136,91,216,226,81,137,98,86,249,182,120,186,178,173,238,188,134,177,109, - 161,79,9,232,212,214,186,117,235,114,202,162,140,181,142,220,238,15,41,42, - 58,15,152,151,75,181,113,137,39,116,177,194,102,222,222,65,98,87,166,153, - 248,22,92,48,105,155,203,151,123,177,88,244,235,144,44,169,37,158,32,165, - 147,248,145,172,124,166,36,170,35,147,126,36,194,16,147,76,221,130,249,198, - 176,220,50,21,55,96,197,239,127,255,251,11,31,123,236,177,136,184,153,223, - 205,148,148,148,240,251,223,255,30,96,69,94,58,45,116,57,73,5,46,206, - 96,201,132,9,19,180,216,180,249,174,176,220,98,45,30,179,117,213,85,22, - 79,87,88,87,221,121,13,51,104,203,152,35,103,148,203,168,29,243,160,30, - 253,247,121,93,234,182,51,11,221,152,49,99,34,130,19,251,110,176,111,95, - 126,44,184,124,88,137,61,145,163,233,9,47,217,246,101,248,240,225,115,231, - 207,159,191,236,142,59,238,136,178,224,98,197,13,116,75,111,254,252,249,12, - 31,62,124,46,208,148,99,151,133,110,32,161,192,37,24,44,231,154,223,187, - 138,35,105,241,228,179,173,238,188,134,169,218,90,179,102,141,50,139,90,28, - 114,178,134,13,139,46,149,69,147,46,235,214,173,75,248,36,147,162,34,125, - 46,90,60,11,46,27,108,182,47,226,243,191,215,201,130,203,167,149,216,157, - 228,146,13,217,85,243,225,140,56,93,54,24,241,181,174,16,212,221,187,119, - 47,215,52,109,197,143,126,244,163,11,127,247,187,223,117,18,57,227,125,195, - 134,13,252,232,71,63,130,14,235,173,9,17,185,163,158,184,2,151,108,176, - 236,106,142,82,139,39,227,182,186,243,26,166,106,43,54,38,103,8,93,108, - 76,46,215,254,197,179,234,178,171,39,249,64,22,235,30,205,69,232,254,231, - 225,135,53,221,189,85,4,172,167,227,253,140,188,90,137,201,200,199,19,77, - 204,115,223,50,153,199,22,111,30,94,62,220,162,6,241,166,14,100,202,183, - 102,204,208,242,52,37,32,46,195,135,15,159,187,124,249,242,185,227,199,143, - 191,240,134,27,110,224,142,59,238,224,172,179,206,138,196,220,98,31,213,69, - 88,216,118,239,222,45,2,119,148,211,73,224,142,66,113,155,219,21,125,232, - 202,182,142,70,113,51,237,143,27,147,203,164,127,255,243,240,117,154,33,50, - 249,176,214,242,69,182,66,23,111,192,52,206,47,95,86,98,44,137,4,201, - 252,57,219,24,89,166,2,101,62,62,159,226,6,249,19,163,174,76,98,9, - 79,216,158,50,98,196,136,41,243,231,207,159,27,103,158,155,33,108,208,97, - 185,137,184,29,3,196,179,224,140,135,242,70,13,124,97,23,87,218,63,178, - 108,142,143,233,195,17,19,133,60,16,247,26,198,235,135,249,26,101,122,205, - 82,181,213,149,22,234,145,20,54,189,237,103,195,15,100,142,127,140,201,163, - 153,23,186,74,232,160,179,168,228,91,100,50,105,187,55,99,22,186,56,187, - 205,162,214,36,214,219,177,65,220,213,4,140,1,48,222,96,153,206,0,156, - 201,177,230,227,195,28,235,226,102,180,51,55,89,221,241,174,81,166,215,45, - 89,91,249,56,207,100,171,9,196,227,104,180,234,178,229,199,119,63,171,18, - 61,45,197,204,210,165,135,123,196,249,246,38,98,87,19,136,71,130,53,224, - 226,10,155,172,38,112,244,146,201,114,57,25,127,137,25,8,220,92,210,176, - 120,242,65,119,182,21,167,237,46,187,134,73,218,201,250,60,51,21,184,158, - 132,57,206,151,202,74,20,129,59,182,80,154,38,130,212,75,200,248,81,93, - 153,88,112,25,212,57,215,148,0,49,55,211,62,29,173,109,197,105,59,169, - 181,150,173,5,103,230,72,198,80,123,18,34,90,130,112,236,147,145,192,165, - 59,240,134,227,60,25,139,92,38,199,231,194,209,48,224,39,186,70,121,88, - 113,59,173,248,159,32,8,66,79,39,109,23,165,112,236,144,42,254,151,46, - 189,217,69,41,244,92,196,69,217,123,56,234,87,19,16,50,39,95,86,155, - 12,4,130,32,28,203,200,194,31,130,32,8,66,143,68,4,78,16,4,65, - 232,145,104,162,112,130,112,108,33,174,99,65,72,15,209,55,65,16,4,161, - 71,34,73,38,66,175,37,4,121,181,132,44,16,53,197,163,171,235,23,4, - 33,57,81,46,202,238,252,135,148,182,114,111,171,187,200,247,57,153,201,199, - 249,165,234,95,46,109,204,251,253,124,5,48,235,142,27,186,228,123,200,166, - 126,113,81,10,66,122,68,89,112,233,14,4,198,63,101,42,102,221,113,67, - 194,125,221,217,214,227,191,159,159,78,21,121,25,196,186,179,173,116,184,226, - 202,105,10,224,141,69,11,179,110,207,2,90,8,148,249,220,110,189,227,134, - 168,239,48,215,253,185,162,18,60,95,80,211,142,248,253,129,32,8,71,136, - 156,98,112,143,254,229,236,184,239,153,50,230,204,205,42,222,123,87,144,175, - 62,231,139,174,62,247,133,139,22,178,112,209,194,124,86,121,68,8,129,50, - 94,93,81,127,58,223,67,38,223,85,87,252,134,187,242,255,66,16,122,34, - 89,197,224,204,162,16,79,48,126,120,227,186,180,235,74,52,104,116,252,51, - 167,95,87,42,18,137,219,145,16,57,243,96,21,239,220,183,111,28,155,87, - 215,93,8,212,209,224,238,204,133,119,151,182,3,112,241,212,194,188,158,75, - 242,223,224,186,148,199,196,126,87,249,254,30,99,127,43,255,222,40,9,190, - 229,0,0,32,0,73,68,65,84,52,46,215,42,5,161,87,144,117,146,201, - 5,19,138,227,110,127,127,77,219,17,173,235,104,106,43,21,93,217,23,67, - 220,12,33,48,172,159,92,133,33,213,13,76,174,251,187,27,67,60,98,191, - 139,63,63,53,146,155,190,191,43,242,249,130,9,197,157,182,129,254,93,197, - 10,153,81,87,178,239,49,222,119,145,236,251,49,247,239,223,155,82,157,149, - 32,8,144,194,69,153,200,37,148,104,96,54,246,173,221,60,57,173,198,191, - 247,253,93,202,168,235,207,79,141,228,207,79,141,76,187,157,76,89,187,121, - 114,202,126,199,210,149,46,177,120,3,170,113,254,23,76,40,230,123,223,223, - 149,83,187,241,6,202,124,136,219,5,19,138,19,90,188,185,238,79,151,119, - 151,182,231,45,241,229,130,9,197,113,191,139,68,196,251,141,38,250,93,37, - 250,30,147,245,61,211,255,55,65,16,18,147,84,224,204,119,255,93,221,17, - 227,206,56,217,224,210,157,196,90,64,93,137,113,206,177,214,65,174,84,86, - 86,70,68,186,178,178,50,231,250,140,129,54,217,128,158,203,254,88,98,227, - 110,23,79,45,204,172,195,89,144,236,187,200,199,111,52,217,239,170,59,255, - 223,4,161,55,144,50,201,164,55,138,92,79,16,55,128,218,154,26,45,222, - 223,199,2,33,80,239,46,109,39,246,101,136,92,62,173,56,131,116,190,139, - 92,126,163,233,252,174,68,228,4,33,127,164,21,131,51,210,196,187,35,81, - 225,166,239,239,138,184,235,186,98,208,79,69,79,17,55,128,31,252,231,45, - 234,79,143,253,41,242,247,147,143,253,233,152,16,57,67,220,226,97,136,92, - 162,253,233,18,235,58,52,11,86,212,223,73,234,48,255,70,141,250,158,121, - 106,100,167,107,252,189,239,239,82,230,58,205,226,101,184,243,227,9,90,174, - 110,106,65,232,237,68,4,46,217,63,188,153,116,239,44,83,197,225,204,237, - 37,106,235,207,79,141,132,52,7,255,239,125,127,151,138,55,184,164,211,23, - 131,216,172,67,243,190,88,17,74,52,144,173,221,156,86,83,9,7,84,115, - 91,201,206,41,29,12,113,51,254,238,105,207,101,11,139,93,86,34,96,92, - 87,227,119,104,220,88,25,127,27,156,51,118,37,16,253,27,138,119,92,178, - 239,233,153,167,70,106,22,226,223,60,157,51,118,165,46,140,49,115,6,227, - 245,81,16,132,204,136,8,92,236,63,104,236,96,24,243,207,153,242,31,238, - 156,177,43,121,38,201,254,103,158,26,169,153,7,23,51,230,1,196,24,96, - 82,145,108,226,244,57,99,87,166,37,114,134,165,106,252,29,211,223,148,229, - 159,121,106,164,150,238,196,116,18,12,168,177,245,165,85,87,28,174,184,114, - 154,90,184,104,97,148,203,235,138,43,167,169,76,39,124,167,18,217,100,251, - 141,125,177,22,76,38,245,119,39,233,120,15,114,177,186,211,241,132,116,167, - 7,65,16,122,58,105,221,212,247,36,183,93,42,122,74,204,209,44,110,160, - 159,87,54,19,190,205,55,34,177,152,5,44,89,217,84,2,152,113,167,186, - 144,100,223,73,62,126,155,201,126,95,34,110,130,144,95,82,10,92,111,18, - 55,131,99,93,228,198,159,125,78,194,126,39,219,151,136,68,34,100,108,79, - 229,158,203,102,95,58,92,60,181,48,231,223,229,251,107,218,58,205,87,75, - 39,201,36,89,249,216,253,177,164,147,100,98,230,153,167,70,106,71,98,158, - 166,32,28,235,36,77,50,233,141,226,102,112,44,39,214,172,93,183,54,97, - 26,250,218,117,107,213,209,30,139,179,128,118,241,212,194,184,137,38,249,72, - 48,49,179,125,227,88,109,204,153,155,85,172,128,156,124,230,102,222,95,211, - 198,57,99,245,207,239,175,105,139,108,139,87,135,249,115,58,98,148,205,60, - 69,17,57,65,200,140,148,243,224,226,253,211,165,186,99,77,55,110,102,190, - 51,189,233,251,187,226,222,29,231,139,115,198,174,204,234,78,187,171,196,45, - 158,213,96,156,255,251,107,218,178,182,110,198,159,119,78,82,65,182,128,54, - 254,188,204,173,184,238,38,44,114,196,190,76,143,235,202,219,141,151,33,80, - 137,222,211,61,38,222,177,249,120,84,87,170,246,4,65,136,79,214,143,234, - 202,167,248,116,231,157,233,209,116,23,220,21,125,89,251,225,218,148,126,231, - 116,142,137,199,251,107,218,184,96,66,113,194,126,231,186,63,150,216,213,8, - 242,105,185,197,146,169,112,37,58,38,246,216,174,232,163,32,8,233,145,149, - 183,202,120,150,96,188,247,76,159,51,104,190,203,205,100,0,201,6,115,255, - 18,189,119,23,201,206,57,219,243,30,127,118,114,235,205,192,2,90,54,177, - 184,31,222,184,142,247,215,180,37,188,86,185,238,79,151,124,90,111,130,32, - 244,92,178,182,224,242,45,16,93,45,110,102,142,180,184,25,228,251,156,215, - 175,91,155,118,249,76,142,53,147,234,90,229,186,191,59,73,39,137,232,214, - 142,117,6,83,30,155,205,138,222,185,212,47,8,66,114,162,4,46,221,172, - 65,211,63,101,82,146,153,135,221,217,86,186,117,144,102,159,146,13,52,221, - 217,86,111,195,120,76,87,190,174,73,87,95,91,249,238,4,225,200,146,213, - 138,222,249,64,218,18,50,65,174,171,32,8,153,162,29,237,41,227,194,145, - 167,43,231,3,230,67,184,82,245,175,167,137,163,210,180,163,62,11,86,16, - 142,6,68,224,132,94,135,8,132,32,244,14,68,223,4,65,16,132,30,137, - 8,156,32,8,130,208,35,17,23,165,32,28,99,136,139,85,16,210,67,244, - 77,16,4,65,232,145,100,61,209,91,16,142,117,238,254,217,207,242,106,9, - 61,252,155,223,68,101,107,206,189,255,254,188,214,63,119,246,236,30,149,13, - 42,8,93,77,148,139,242,151,115,230,228,245,31,242,87,247,221,151,240,31, - 82,218,202,189,173,238,34,223,231,100,38,31,231,151,170,127,185,180,241,254, - 170,181,10,224,130,73,231,116,201,247,176,250,227,141,10,224,220,47,156,153, - 118,253,226,162,20,132,244,200,42,6,247,209,71,27,210,250,7,155,56,241, - 172,156,7,133,124,180,117,172,245,55,159,252,237,239,127,87,0,223,249,246, - 183,115,106,239,151,115,230,168,43,46,187,38,242,249,141,197,11,162,132,35, - 215,253,185,246,109,238,220,185,113,247,205,157,59,87,4,78,16,122,41,57, - 197,224,62,222,112,92,220,247,76,121,244,241,90,21,239,189,43,200,87,159, - 243,69,87,159,251,246,237,219,217,190,125,123,62,171,60,34,252,114,206,28, - 101,188,186,162,254,223,254,239,1,21,239,61,211,99,12,30,123,162,46,239, - 253,236,138,58,5,161,39,147,149,192,125,188,225,184,132,66,145,169,96,36, - 26,224,31,125,188,86,229,123,176,79,214,231,238,22,58,243,249,117,149,200, - 153,197,160,43,221,140,221,197,119,175,255,127,124,247,250,255,151,247,115,73, - 36,92,102,1,75,231,24,3,67,136,242,37,72,143,61,81,167,242,93,167, - 32,244,6,178,182,224,134,86,58,226,190,142,116,93,71,83,91,71,178,47, - 134,8,252,234,190,251,52,195,69,151,15,97,72,117,35,144,235,254,238,198, - 16,168,97,67,28,81,175,67,7,254,151,97,67,58,190,11,243,54,243,203, - 92,135,193,208,74,59,67,43,237,73,219,141,151,128,146,44,41,197,168,51, - 85,189,130,32,116,144,84,224,18,185,132,146,13,194,67,43,29,212,212,13, - 75,171,241,87,95,111,80,70,93,27,214,63,202,134,245,143,166,221,78,166, - 212,212,13,75,217,239,88,186,210,37,22,219,158,249,252,135,86,58,120,245, - 245,134,156,218,141,23,119,202,53,230,245,241,134,227,24,90,233,72,40,82, - 185,238,79,151,124,90,113,102,161,50,88,187,230,183,9,143,143,221,23,175, - 188,193,208,74,59,11,22,118,254,30,147,9,89,188,125,34,106,130,144,29, - 73,5,46,159,119,254,169,56,107,252,15,1,58,137,220,145,194,108,1,117, - 117,91,198,57,27,215,32,95,148,150,150,70,68,186,180,180,52,231,250,12, - 81,78,116,163,144,235,254,88,98,227,110,127,253,191,255,202,172,195,89,96, - 8,216,57,19,126,218,105,159,177,45,153,0,166,194,16,176,120,41,255,198, - 182,124,79,47,16,132,222,74,74,23,101,111,20,185,158,32,110,0,63,253, - 201,79,180,120,127,31,11,252,114,206,28,101,196,220,204,47,67,228,186,34, - 22,151,76,220,12,114,17,185,100,226,22,57,70,68,78,16,242,70,90,19, - 189,127,117,223,125,154,113,39,221,213,131,254,89,227,127,24,113,215,117,197, - 160,159,138,158,34,110,0,175,191,177,80,173,93,189,54,242,247,213,87,76, - 59,38,68,206,16,183,120,24,34,151,104,127,186,188,240,242,225,40,1,49, - 11,86,212,223,73,234,88,187,230,183,17,193,51,234,251,230,244,126,157,174, - 241,130,133,13,106,227,134,63,68,62,155,197,171,230,224,9,157,182,153,203, - 165,58,15,65,16,18,19,17,184,216,152,79,34,43,42,221,187,230,84,113, - 56,115,123,137,218,218,176,254,81,72,115,240,127,245,245,6,245,181,171,43, - 226,14,224,233,198,4,147,101,29,198,138,80,188,182,94,125,189,65,213,212, - 165,213,84,212,57,199,158,191,209,86,178,115,74,7,67,220,98,255,238,41, - 132,69,46,43,17,48,132,200,16,166,115,38,252,52,174,5,55,100,240,110, - 0,246,213,142,136,108,139,119,92,60,97,51,184,102,90,69,148,85,102,182, - 224,86,127,124,149,2,184,198,180,205,56,206,40,39,66,39,8,217,17,17, - 184,84,3,169,217,178,121,245,245,31,166,252,135,171,28,84,149,116,255,215, - 174,174,208,12,145,139,21,15,179,101,147,170,30,131,100,19,167,43,7,85, - 165,37,114,134,165,106,252,29,189,247,190,148,229,191,118,117,133,150,238,68, - 111,194,150,42,36,182,224,114,17,183,191,253,253,239,106,251,246,237,81,46, - 230,191,253,253,239,42,211,9,223,169,68,54,217,126,99,223,171,175,55,168, - 68,55,49,185,138,120,62,49,68,206,108,153,197,146,142,27,51,17,115,103, - 207,214,230,222,127,191,154,123,255,253,42,145,155,50,29,55,166,32,8,233, - 145,214,52,129,158,228,182,75,69,79,137,57,154,197,13,244,243,202,102,194, - 183,249,70,36,22,179,128,37,43,155,74,0,51,238,84,23,146,44,198,150, - 139,184,25,36,139,177,137,184,9,66,126,73,41,112,189,73,220,12,142,117, - 145,123,252,79,79,36,236,119,178,125,137,72,36,66,198,246,100,34,149,237, - 190,116,248,235,255,253,87,206,191,203,170,125,62,170,246,249,162,182,165,147, - 100,146,172,188,153,234,26,127,167,109,233,36,153,152,185,102,90,133,22,175, - 30,65,16,146,147,114,30,28,244,46,113,51,56,150,69,174,230,64,77,194, - 121,112,53,7,106,242,210,70,87,242,171,251,238,211,18,77,9,200,71,130, - 137,153,159,222,121,156,6,29,66,101,188,6,28,119,103,148,112,153,183,153, - 95,230,58,12,170,107,252,145,87,34,146,77,19,72,68,170,58,5,65,136, - 38,229,60,184,120,3,101,117,77,178,59,86,95,218,113,179,175,93,93,161, - 25,117,157,53,254,135,157,196,45,89,59,153,82,57,168,42,101,191,99,73, - 116,254,249,32,182,61,243,249,87,215,248,178,182,110,30,127,234,137,164,153, - 174,191,186,239,62,237,241,167,50,183,226,186,27,67,228,98,95,134,184,229, - 195,122,51,48,4,42,209,123,186,199,24,252,231,205,131,52,227,221,248,59, - 87,204,117,230,163,62,65,232,13,100,189,30,92,62,197,39,159,117,29,77, - 109,165,162,43,250,82,179,47,181,133,150,206,49,241,168,174,241,49,180,210, - 145,176,223,185,238,143,37,118,53,130,124,90,110,177,164,35,92,233,28,99, - 208,21,66,36,226,38,8,153,145,213,179,40,191,112,214,129,132,239,198,223, - 233,242,195,91,7,107,63,188,117,176,102,252,29,239,61,95,152,251,151,232, - 189,187,72,118,206,217,158,247,227,127,74,110,189,25,252,234,190,251,180,108, - 98,113,95,56,235,0,213,53,190,132,215,42,215,253,233,146,79,235,77,16, - 132,158,75,214,22,92,190,5,162,171,197,205,204,145,22,55,131,124,159,243, - 173,183,220,156,118,249,76,142,53,147,234,90,229,186,191,59,73,103,69,239, - 5,11,95,74,251,216,108,86,244,126,243,95,255,76,251,88,201,174,20,132, - 204,136,18,184,116,19,42,222,88,188,32,231,134,187,179,173,116,235,72,183, - 79,201,172,135,238,108,171,183,97,36,158,228,235,154,196,10,82,190,17,65, - 18,132,35,75,148,192,117,231,96,42,109,9,153,32,215,85,16,132,76,209, - 114,90,210,91,232,21,116,229,84,137,124,8,87,170,254,245,52,113,84,154, - 118,212,103,193,10,194,209,128,8,156,208,235,16,129,16,132,222,129,232,155, - 32,8,130,208,35,17,129,19,4,65,16,122,36,89,79,19,16,132,163,17, - 113,63,10,130,96,32,22,156,32,8,130,208,35,17,129,19,4,65,16,122, - 36,41,93,148,33,211,138,201,22,72,154,110,157,201,177,169,202,230,179,174, - 124,29,155,170,172,244,57,63,199,166,42,155,75,93,130,32,244,30,210,178, - 224,150,46,109,98,233,210,166,168,129,38,150,16,40,227,184,76,73,84,54, - 157,118,1,130,74,169,160,82,81,199,164,219,103,165,20,49,69,211,238,115, - 188,178,233,246,57,30,71,251,117,142,135,113,13,178,233,115,188,239,45,221, - 178,233,180,43,8,66,239,70,92,148,130,32,8,66,143,36,35,129,75,116, - 151,111,220,101,103,67,58,101,147,89,23,169,44,128,100,125,206,198,114,75, - 183,108,182,22,81,178,178,71,242,58,167,34,145,53,149,78,187,137,190,195, - 116,202,138,21,39,8,66,34,226,10,92,8,148,241,2,152,58,181,44,237, - 10,141,99,99,235,200,180,108,166,237,106,154,70,182,125,214,52,45,235,62, - 155,203,102,218,238,177,120,157,99,219,51,206,63,155,62,103,91,54,211,118, - 5,65,232,157,116,122,84,87,162,187,230,169,83,203,34,113,144,169,83,203, - 34,193,125,243,241,230,99,98,203,198,75,6,72,183,108,188,118,161,227,206, - 95,211,180,140,202,154,45,176,100,101,19,245,57,157,178,137,250,28,175,30, - 51,230,58,147,93,231,68,101,211,185,206,153,180,155,168,158,216,243,53,95, - 147,76,127,27,70,89,171,73,181,50,45,107,180,43,243,224,4,65,48,136, - 210,183,100,46,161,165,75,155,146,222,233,39,26,132,140,178,201,44,140,84, - 101,147,181,155,72,100,242,81,54,89,159,115,105,55,153,139,83,41,149,242, - 58,39,43,155,234,58,103,219,110,170,223,70,50,139,42,213,247,219,85,101, - 5,65,232,221,100,149,100,98,12,254,93,29,19,74,212,46,164,142,189,37, - 42,219,213,177,183,68,237,102,211,222,209,112,157,51,197,16,217,108,218,53, - 190,211,108,202,74,44,78,16,132,88,36,139,82,16,4,65,232,145,136,192, - 9,130,32,8,61,146,172,4,206,72,66,176,128,150,73,6,94,76,195,25, - 151,53,39,63,88,51,12,190,152,251,156,109,220,38,155,178,137,18,54,50, - 41,123,36,175,115,166,24,201,30,217,180,107,124,167,217,148,77,148,96,35, - 8,66,239,197,18,243,33,225,192,146,44,216,15,201,19,43,82,13,152,169, - 202,38,107,55,89,114,68,174,101,147,245,57,151,118,147,9,101,178,228,21, - 72,158,88,145,106,144,79,85,54,85,159,147,157,111,178,216,100,170,239,183, - 171,202,10,130,208,187,137,187,162,119,188,96,125,178,20,242,216,148,238,88, - 146,13,186,169,202,166,74,93,55,79,21,200,180,207,230,20,243,76,251,156, - 172,108,170,62,155,235,201,180,207,71,234,58,39,235,115,188,41,2,233,182, - 27,111,138,64,166,101,205,237,202,52,1,65,16,12,226,186,40,13,23,147, - 49,104,100,146,209,102,28,27,91,71,166,101,51,109,87,41,69,182,125,54, - 6,202,108,250,108,46,155,105,187,199,226,117,142,109,47,19,11,42,182,207, - 217,150,205,180,93,65,16,122,39,25,197,224,18,221,221,119,117,140,40,153, - 85,145,42,22,151,172,207,93,25,139,203,71,236,45,94,187,71,234,58,167, - 34,145,123,52,157,118,19,125,135,233,148,149,216,155,32,8,137,144,44,74, - 65,16,4,161,71,18,55,6,103,230,88,92,243,75,250,156,126,217,158,214, - 103,137,193,9,130,96,144,82,224,4,225,88,66,4,78,16,4,3,209,55, - 65,16,4,161,71,34,2,39,8,130,32,244,72,108,0,51,239,95,175,124, - 158,86,0,28,206,82,158,158,61,62,42,174,97,236,143,221,151,104,123,60, - 242,81,71,170,186,99,251,111,222,110,179,21,242,151,251,207,237,242,108,187, - 124,181,105,212,19,91,71,162,237,249,170,35,213,111,33,114,220,236,213,202, - 231,115,227,112,20,81,82,62,132,255,189,171,50,175,215,86,92,141,130,32, - 228,138,246,131,251,215,171,141,171,230,83,191,111,11,0,253,135,156,202,153, - 147,110,136,12,108,215,222,246,146,250,247,198,133,184,93,245,84,12,30,205, - 184,137,215,241,151,251,207,213,98,183,155,203,196,146,143,58,226,113,227,236, - 213,234,80,205,22,118,111,89,138,171,169,38,170,255,0,230,243,42,41,171, - 100,196,169,83,25,80,121,106,218,194,16,10,4,83,246,193,98,179,70,132, - 96,102,204,181,204,164,205,216,246,55,174,154,79,67,237,14,138,74,250,115, - 210,153,211,120,229,143,95,215,110,156,189,90,125,242,209,179,157,182,231,171, - 142,216,254,199,254,22,12,190,251,243,229,106,251,39,111,210,112,112,7,197, - 197,253,56,126,212,4,42,6,142,161,98,208,152,78,66,103,8,97,200,231, - 75,125,45,29,14,28,142,34,158,190,255,92,89,215,77,16,132,156,177,249, - 60,173,212,239,219,194,242,183,254,66,109,109,45,51,110,248,5,30,151,62, - 169,246,218,219,94,82,159,126,244,15,170,118,188,207,234,15,222,229,170,111, - 220,73,115,125,21,211,102,206,239,180,221,40,19,75,62,234,136,197,16,182, - 213,75,254,64,227,161,93,28,174,251,156,109,159,174,137,234,191,197,102,141, - 156,87,75,75,11,231,158,127,49,141,135,118,81,62,96,36,211,102,206,87, - 137,68,199,60,200,251,253,158,148,125,177,219,157,244,31,114,106,68,20,179, - 105,51,22,115,61,39,159,62,1,191,199,197,180,153,243,85,115,125,85,167, - 237,215,222,246,146,138,39,114,217,212,225,113,53,37,252,45,0,220,249,72, - 141,106,168,219,78,205,174,213,236,219,241,62,239,191,251,60,167,157,113,30, - 135,14,108,97,192,113,167,114,252,168,9,124,247,231,203,149,33,116,51,103, - 175,86,255,222,244,79,234,246,111,193,231,107,75,121,45,29,142,98,6,29, - 127,42,51,103,175,86,79,253,234,11,41,143,23,4,65,72,134,45,20,8, - 226,247,123,104,105,105,161,169,169,9,191,223,67,187,235,112,148,0,25,226, - 225,106,58,64,213,142,247,104,168,221,65,205,158,117,108,251,116,13,123,247, - 238,77,40,4,102,113,203,182,14,51,137,132,173,165,165,133,218,218,218,72, - 255,1,140,243,50,88,190,100,33,69,69,69,41,69,199,44,12,201,104,105, - 105,1,192,237,118,71,9,65,54,109,198,98,238,251,242,37,11,153,114,201, - 52,252,1,15,21,131,71,227,106,58,16,181,221,184,206,177,34,151,105,29, - 211,102,206,87,237,174,195,157,126,11,6,119,62,82,163,170,63,127,143,93, - 159,45,161,118,239,38,154,15,87,225,243,249,248,104,213,219,4,2,1,38, - 77,185,188,147,208,53,214,239,166,122,247,26,86,188,241,180,126,109,147,88, - 113,94,175,151,182,182,54,190,115,235,67,140,56,229,146,164,215,94,16,4, - 33,29,108,230,15,129,64,0,111,91,99,39,1,50,196,163,181,169,134,127, - 175,95,136,207,221,196,191,183,109,162,182,182,54,50,208,199,18,79,220,50, - 173,195,32,145,176,1,145,193,184,161,161,1,151,203,133,221,238,236,84,222, - 237,118,211,212,212,132,207,231,75,41,58,102,97,104,105,105,193,237,118,39, - 28,152,221,110,55,129,64,32,114,188,197,102,197,110,119,70,250,100,148,205, - 86,232,140,235,242,246,155,175,240,165,47,79,227,80,205,86,124,238,166,168, - 237,95,190,252,218,200,245,142,103,201,165,91,135,33,126,222,182,70,64,255, - 45,152,169,254,252,61,54,175,126,129,154,93,171,249,108,211,135,248,124,62, - 188,94,47,77,77,186,176,191,181,232,69,236,118,59,23,127,229,171,17,161, - 43,41,27,68,192,227,2,160,177,177,17,175,215,139,223,239,143,123,174,134, - 192,249,124,109,105,185,51,5,65,16,82,97,139,221,16,43,64,198,96,237, - 241,120,240,122,154,241,122,154,217,179,103,15,45,45,45,212,215,215,199,21, - 149,88,113,203,166,14,72,79,216,90,90,90,112,185,92,4,2,1,102,222, - 114,23,163,79,255,10,14,103,9,190,240,192,10,29,150,131,219,237,78,41, - 58,181,123,214,18,240,186,35,199,27,3,120,60,2,129,0,46,87,71,59, - 14,103,41,101,3,71,113,238,249,23,179,224,229,191,17,8,4,104,105,105, - 193,102,179,101,36,116,134,80,26,125,119,187,221,188,243,246,66,38,79,158, - 28,117,78,110,183,59,161,200,101,90,135,89,252,98,153,57,123,181,90,183, - 226,41,106,118,173,102,195,154,21,180,182,182,210,214,214,134,203,229,194,239, - 247,71,221,0,60,247,215,63,81,92,92,204,117,55,254,140,210,182,33,180, - 53,31,140,136,161,249,90,153,49,234,112,187,221,9,175,181,32,8,66,166, - 68,9,156,205,102,235,36,64,53,53,53,184,92,46,166,79,159,14,192,39, - 159,124,18,177,198,154,154,154,162,68,5,226,139,91,166,117,100,42,108,55, - 205,156,69,89,255,17,140,62,253,43,156,116,230,52,254,114,255,185,218,117, - 63,93,154,48,73,33,145,208,29,218,247,41,193,128,151,214,112,194,74,50, - 151,26,232,2,103,182,116,158,158,61,94,187,246,182,151,84,192,215,206,245, - 51,127,78,83,253,110,94,121,249,239,25,11,157,89,40,223,126,243,149,72, - 159,87,174,92,201,228,201,147,25,55,110,28,43,87,174,140,108,143,39,114, - 153,214,17,43,126,102,124,62,55,141,141,123,217,176,102,69,196,82,54,11, - 155,33,76,129,64,128,239,205,188,149,2,103,41,0,30,119,35,174,214,131, - 0,17,203,45,145,5,103,148,23,4,65,200,23,81,2,87,84,84,4,232, - 2,148,72,152,128,136,48,221,52,115,22,199,143,62,47,34,42,51,239,95, - 175,214,46,125,34,165,184,165,170,99,227,170,249,28,216,189,190,147,176,25, - 22,149,203,229,194,227,241,112,211,204,89,148,150,85,50,252,228,139,24,51, - 254,170,140,179,21,205,66,247,246,155,175,224,112,56,152,56,113,98,164,189, - 108,48,50,21,15,213,108,97,251,250,127,114,195,204,187,105,109,170,225,245, - 5,47,36,108,115,202,37,211,104,60,180,139,1,199,159,198,204,251,215,43, - 67,40,91,26,170,249,210,151,167,241,206,219,11,35,229,222,122,235,45,46, - 189,244,82,38,79,158,204,202,149,43,35,219,23,188,252,55,174,153,254,29, - 236,206,18,110,156,189,58,171,58,12,241,139,197,112,25,54,52,52,80,87, - 87,199,85,87,93,13,192,63,255,249,58,62,159,15,155,205,198,244,233,95, - 7,160,164,236,56,74,251,86,210,218,92,195,123,203,94,231,244,211,199,102, - 117,29,5,65,16,114,37,106,162,183,49,248,25,66,18,8,4,34,194,244, - 209,71,31,1,68,182,207,152,49,3,71,81,25,149,67,206,140,164,153,251, - 60,173,180,52,84,71,196,205,136,81,101,90,71,67,237,14,22,191,246,39, - 86,127,240,110,84,2,137,185,79,215,93,119,29,142,162,50,134,140,153,196, - 152,241,87,177,240,233,27,180,108,230,156,25,214,85,67,67,3,245,245,245, - 188,245,214,91,17,17,206,150,191,220,127,174,182,240,233,27,180,49,227,175, - 98,200,152,73,56,138,202,184,244,210,75,185,244,210,75,35,55,17,70,155, - 181,181,181,188,252,252,51,252,121,222,108,90,26,170,49,230,160,189,242,199, - 175,107,149,195,207,196,81,84,198,228,201,147,41,42,42,138,184,68,223,122, - 235,45,128,78,219,159,127,246,41,92,77,53,4,2,237,89,213,209,210,210, - 194,202,149,43,35,215,57,22,191,223,207,181,223,248,54,37,101,199,97,119, - 150,80,81,81,193,244,233,95,143,136,219,170,85,239,225,245,180,210,218,92, - 131,55,124,30,160,199,215,4,65,16,186,155,40,129,11,4,2,92,122,233, - 165,145,4,9,155,205,198,162,69,139,0,152,56,113,98,228,78,223,216,238, - 115,55,81,179,111,35,215,222,246,146,2,61,6,213,167,98,40,39,159,62, - 33,98,165,100,83,71,197,224,209,92,246,213,91,56,247,252,139,169,169,169, - 137,184,36,3,129,0,54,155,141,183,222,122,139,149,43,87,226,115,55,177, - 111,251,42,182,175,255,39,211,102,206,87,55,206,94,157,246,220,169,64,32, - 128,199,227,193,227,241,224,114,185,112,185,92,52,53,53,113,233,165,151,50, - 110,220,184,156,226,65,55,206,94,173,166,205,156,175,182,175,255,39,251,182, - 175,194,231,110,98,207,158,61,17,225,52,68,198,120,93,59,253,219,220,52, - 235,126,250,84,12,197,17,118,239,93,123,219,75,170,102,207,198,72,89,163, - 28,192,165,151,94,10,116,88,195,198,121,204,184,238,251,148,148,85,98,179, - 21,102,85,135,203,229,98,242,228,201,145,27,19,3,139,195,17,249,187,192, - 89,74,105,223,74,10,156,165,76,154,244,69,0,54,110,220,192,198,141,27, - 176,219,237,248,61,46,92,77,7,216,178,121,61,109,109,109,81,109,10,130, - 32,116,39,113,31,213,101,12,126,64,68,80,64,23,40,195,2,177,217,108, - 188,190,224,5,106,246,172,227,223,27,23,70,220,98,163,78,189,132,97,163, - 47,136,164,159,103,83,199,184,137,215,49,254,194,153,140,62,253,43,92,63, - 243,231,92,125,205,55,129,206,49,175,21,203,255,197,210,183,95,160,106,199, - 251,172,95,241,52,171,151,252,33,34,148,137,48,11,155,241,50,226,120,63, - 254,249,127,211,127,240,41,20,56,251,70,250,152,41,215,222,246,146,90,189, - 228,15,172,95,241,52,85,59,222,103,237,71,139,163,146,117,26,26,26,34, - 22,146,209,230,137,103,78,99,252,133,51,25,63,249,166,200,132,241,157,91, - 150,232,215,37,92,182,165,165,5,143,199,19,229,234,117,187,221,145,237,51, - 111,185,139,97,163,47,136,114,245,102,90,199,140,25,51,0,221,85,109,179, - 117,120,175,29,142,34,6,15,57,131,25,55,220,141,221,94,24,177,208,170, - 170,246,240,249,231,219,1,34,73,36,171,86,189,199,199,31,127,68,93,93, - 29,141,141,141,89,93,67,65,16,132,124,208,41,139,178,192,217,23,71,81, - 25,87,95,243,205,72,220,38,16,8,176,104,209,34,174,188,242,202,168,184, - 77,32,16,224,229,231,159,225,246,159,252,46,146,181,248,202,31,191,174,25, - 34,243,229,203,175,229,237,55,95,201,184,14,195,213,104,126,82,201,77,183, - 220,155,52,105,3,136,136,234,141,179,87,43,115,22,165,129,33,102,102,161, - 52,18,84,78,60,115,26,35,78,157,74,123,203,65,54,127,244,124,202,11, - 23,207,42,137,196,32,183,191,199,230,245,43,128,228,73,49,70,155,241,230, - 226,53,29,220,25,113,245,238,221,187,151,166,166,38,174,187,238,58,160,67, - 152,234,235,235,35,73,58,195,70,95,192,233,19,255,35,202,213,155,73,29, - 55,205,156,69,105,197,48,124,238,38,28,38,139,13,224,233,251,207,213,190, - 251,243,229,170,164,164,63,219,54,190,206,162,151,31,199,102,179,69,82,255, - 141,236,200,182,182,182,136,213,230,243,249,34,174,75,131,100,9,38,130,32, - 8,249,166,147,192,149,150,85,50,100,204,36,90,26,170,35,2,101,220,225, - 27,226,103,36,45,24,219,99,39,105,199,19,185,76,235,128,204,132,14,96, - 193,203,127,227,150,59,127,27,53,69,192,72,22,49,91,107,208,89,216,12, - 145,185,238,167,75,213,214,13,255,4,58,230,185,37,114,177,197,110,55,68, - 101,243,250,21,89,9,155,129,121,242,189,225,162,53,11,16,16,149,129,26, - 43,110,217,212,113,252,232,243,232,83,49,148,125,219,87,117,178,224,0,254, - 250,235,41,218,119,127,190,92,185,92,245,92,57,253,86,26,106,119,176,240, - 245,231,59,101,83,26,215,235,182,219,239,166,124,192,200,72,22,165,215,235, - 77,154,149,154,42,99,85,16,4,33,83,34,163,152,49,56,21,20,151,51, - 116,244,121,192,121,216,109,78,190,124,249,181,145,57,93,177,226,103,108,143, - 71,172,200,101,83,135,65,42,161,51,91,102,241,132,210,16,25,72,44,108, - 198,177,198,252,49,227,122,24,226,148,12,99,190,89,60,81,201,68,216,98, - 113,187,221,17,247,163,89,128,220,110,55,46,151,43,161,184,101,83,199,152, - 241,87,1,112,104,255,103,157,98,112,6,127,253,245,20,109,230,236,213,170, - 255,224,209,236,223,185,134,235,110,252,25,205,135,171,120,254,185,63,227,243, - 249,8,4,2,252,224,150,187,232,219,111,24,39,157,165,215,87,187,119,83, - 100,18,119,162,122,13,140,125,150,24,11,82,16,4,33,27,108,198,128,110, - 220,65,219,237,78,250,86,156,192,179,191,157,26,17,168,107,166,127,135,231, - 159,125,138,130,226,114,70,157,122,9,62,95,27,118,155,51,178,61,222,36, - 109,136,22,185,108,235,48,147,72,232,154,155,246,243,236,252,199,9,4,2, - 145,122,140,243,50,38,152,167,43,50,14,103,41,253,135,156,202,140,27,126, - 145,209,179,40,157,37,101,248,60,173,17,113,244,120,60,92,127,195,205,89, - 9,155,249,59,153,113,221,247,35,2,228,112,20,115,104,255,103,248,124,62, - 174,187,225,214,164,226,150,77,29,215,253,116,169,138,253,45,196,242,244,253, - 231,106,119,62,82,163,42,6,142,225,248,81,19,216,191,115,13,55,255,231, - 253,52,31,174,226,175,243,31,167,111,191,97,156,54,97,58,149,35,207,37, - 228,243,81,80,92,206,119,110,125,40,237,103,81,14,29,49,1,135,35,187, - 248,167,32,8,130,25,89,77,32,14,153,172,38,0,224,44,41,235,85,171, - 9,24,24,15,95,110,56,184,157,253,59,215,208,214,118,152,138,129,163,25, - 51,238,114,254,250,235,41,122,157,178,154,128,32,8,71,8,205,66,234,53, - 192,110,156,189,90,5,2,237,157,246,37,218,30,143,124,212,145,172,110,159, - 199,21,181,116,13,68,11,149,195,89,210,173,235,193,229,218,230,209,190,30, - 156,153,59,31,169,81,174,198,125,24,235,195,61,157,135,235,44,2,39,8, - 66,174,104,191,251,221,239,148,199,147,216,21,231,116,198,119,29,78,159,126, - 13,47,191,188,128,108,203,2,12,29,58,34,131,174,118,80,93,189,251,152, - 43,171,1,63,251,249,207,35,159,127,243,235,95,147,206,8,254,192,3,15, - 100,213,30,192,189,247,222,155,116,255,174,93,187,24,53,114,100,154,253,74, - 166,89,157,75,228,227,78,34,19,133,123,232,161,135,210,58,238,158,123,238, - 137,250,108,213,180,46,187,233,169,61,120,80,109,217,178,133,45,91,182,176, - 113,227,70,0,158,126,242,73,89,24,86,16,186,9,27,192,53,215,92,147, - 81,161,83,78,57,133,234,234,221,228,90,22,96,235,214,173,0,104,154,134, - 197,210,121,90,158,82,250,255,111,40,20,2,224,173,183,222,138,8,100,62, - 202,166,75,174,101,185,235,46,70,142,28,217,105,223,174,93,187,146,150,253, - 214,183,190,197,115,207,61,7,16,121,140,88,50,46,185,228,146,72,189,169, - 234,126,238,185,231,224,222,123,227,246,171,131,116,198,99,227,152,142,177,118, - 103,138,182,71,141,28,73,109,93,93,242,106,7,13,74,163,237,14,98,197, - 43,150,21,43,86,240,208,67,15,165,60,46,91,86,175,93,171,222,120,227, - 13,214,174,93,203,134,13,27,168,172,172,100,240,224,193,140,25,51,134,9, - 19,38,116,73,155,130,32,36,38,238,68,239,238,70,211,180,136,72,197,190, - 172,86,43,22,139,133,68,55,218,185,148,237,110,70,142,28,25,121,101,194, - 183,190,245,45,64,127,212,89,121,121,121,194,151,89,220,242,211,175,76,175, - 91,244,241,35,71,142,100,201,146,37,9,63,3,12,26,52,136,77,155,54, - 37,252,156,111,238,185,231,158,184,214,222,234,39,206,86,230,215,231,59,119, - 170,198,230,230,140,172,163,55,222,120,131,253,251,247,115,217,101,151,241,236, - 179,207,82,83,83,67,205,190,125,218,242,165,75,181,135,127,243,27,237,148, - 83,82,63,151,115,233,242,229,106,233,242,229,98,149,9,66,30,232,52,15, - 174,187,49,4,202,106,181,118,154,123,5,186,21,166,148,138,88,97,249,42, - 123,36,200,84,216,204,24,150,220,226,197,139,185,236,178,203,58,237,63,251, - 236,179,129,204,197,45,113,191,178,189,41,208,48,44,185,93,187,118,69,68, - 55,222,103,128,186,186,58,206,56,227,140,132,159,243,137,185,237,217,179,103, - 71,38,158,175,126,226,108,117,238,205,235,162,78,120,245,19,223,80,141,103, - 63,65,99,115,179,42,239,219,55,173,139,113,214,89,103,113,223,156,57,89, - 223,77,125,182,117,171,154,53,107,22,83,167,78,205,182,10,65,16,76,28, - 21,2,103,88,92,195,135,15,143,123,76,85,85,21,193,96,176,147,80,229, - 82,214,204,41,167,156,18,119,123,58,174,200,76,202,230,34,112,144,88,228, - 114,17,183,124,244,171,187,208,52,45,226,118,206,6,67,208,86,172,88,17, - 17,59,67,220,130,234,137,168,138,173,218,205,218,234,39,110,86,159,175,211, - 143,137,236,88,7,229,63,123,145,254,253,251,147,174,240,165,203,202,149,43, - 89,185,114,37,253,250,245,203,72,88,5,65,136,79,39,129,51,158,25,25, - 139,249,249,148,137,200,182,172,97,137,61,242,200,35,113,247,79,159,62,61, - 165,139,50,155,178,6,137,202,166,115,206,153,148,141,18,160,44,69,37,86, - 228,114,21,183,248,253,202,117,92,213,128,157,140,28,57,146,39,159,124,50, - 34,38,177,159,65,119,73,190,253,246,219,17,171,45,246,115,167,154,115,20, - 185,120,196,138,155,177,205,170,221,220,233,66,60,254,3,212,225,23,94,224, - 155,223,252,102,94,251,240,217,214,173,234,198,27,111,4,224,181,215,94,235, - 100,233,10,130,144,57,157,4,238,174,187,238,138,123,96,58,214,76,54,101, - 13,241,209,52,141,255,248,143,255,136,123,140,241,132,139,88,161,202,165,172, - 153,116,132,44,31,101,243,33,112,208,33,114,249,16,183,124,246,43,94,189, - 93,225,162,236,10,145,99,29,172,91,247,100,212,166,40,203,45,138,87,104, - 92,242,10,159,239,220,169,78,28,53,42,103,43,171,246,224,65,53,107,214, - 44,214,172,89,19,217,246,155,223,252,134,165,203,151,171,169,83,166,136,21, - 39,8,89,210,73,224,50,205,16,204,87,217,222,64,172,16,237,218,181,43, - 146,33,153,45,185,76,35,48,247,35,223,140,74,67,40,7,167,202,146,76, - 114,83,146,87,145,91,183,142,117,235,214,17,27,135,139,71,112,237,19,202, - 122,206,205,218,227,63,64,29,62,252,66,94,154,255,232,163,143,24,57,114, - 36,103,156,113,6,155,54,109,162,162,162,130,65,131,6,177,106,213,42,170, - 170,171,213,176,161,67,163,250,85,85,93,173,0,98,183,11,130,16,205,17, - 143,193,153,25,60,120,112,220,237,251,246,237,235,210,178,221,21,131,187,249, - 7,63,136,250,60,106,228,72,72,49,87,45,25,191,132,156,202,27,196,246, - 75,203,104,6,90,124,180,56,211,54,50,37,85,47,242,109,201,197,115,85, - 118,98,221,58,130,234,9,245,228,205,55,71,214,216,203,133,198,230,102,85, - 95,95,207,53,87,93,165,221,255,192,3,202,200,32,189,231,158,123,152,56, - 113,98,167,197,98,107,15,30,84,175,189,246,26,39,157,116,82,206,109,11, - 66,79,231,168,136,193,25,36,138,103,125,253,235,95,143,187,189,171,203,230, - 59,6,247,143,231,59,150,225,249,143,25,51,210,146,145,5,11,22,164,113, - 84,162,230,253,233,0,0,32,0,73,68,65,84,124,82,205,81,60,120,240, - 32,131,6,14,140,211,175,220,13,3,75,94,166,122,39,103,238,220,185,93, - 222,70,62,88,186,124,185,90,177,98,5,91,183,110,238,180,207,156,72,82, - 81,81,1,232,15,200,126,255,253,247,185,230,170,171,162,46,98,237,193,131, - 234,222,123,239,165,188,188,60,178,118,159,32,8,137,57,226,49,56,51,169, - 226,104,93,85,182,187,98,112,3,7,14,236,180,237,224,193,131,73,203,156, - 127,254,249,124,240,193,7,0,157,238,230,227,97,36,63,28,60,120,48,101, - 221,31,124,240,1,92,115,77,220,126,29,13,196,10,152,249,243,220,185,115, - 153,51,103,78,247,118,8,88,199,58,206,230,236,78,219,171,170,171,213,134, - 13,27,58,109,159,115,223,125,202,136,59,78,158,60,57,105,221,67,134,12, - 97,240,224,193,212,214,214,242,210,75,47,241,248,19,79,168,175,126,245,171, - 120,189,94,54,108,216,192,213,87,95,77,83,83,19,143,63,254,120,222,51, - 56,5,161,39,34,49,184,110,228,208,161,67,89,149,51,68,174,160,160,32, - 97,2,134,82,42,146,238,159,74,216,242,213,175,174,38,86,192,12,129,235, - 82,113,91,183,46,197,126,48,235,219,103,91,183,170,43,174,184,130,17,35, - 70,196,21,176,167,158,122,42,242,247,157,119,222,201,242,165,75,19,86,61, - 113,226,68,206,59,239,60,94,123,237,53,246,238,221,203,175,126,245,43,22, - 45,90,4,192,199,31,127,76,67,67,3,243,230,205,67,18,79,4,33,61, - 36,6,71,247,197,224,46,186,232,162,148,245,37,194,16,185,77,155,54,117, - 18,185,92,196,45,215,126,117,55,71,202,114,75,196,117,215,93,199,222,189, - 123,1,24,61,122,116,39,1,123,231,157,119,88,182,108,25,23,93,116,17, - 167,157,114,74,82,97,26,60,112,160,246,135,63,254,81,189,246,218,107,0, - 212,214,214,178,120,241,98,64,119,95,206,157,59,151,91,111,238,60,117,65, - 16,132,248,72,12,46,73,217,124,199,224,114,117,5,154,69,110,220,184,113, - 128,158,104,145,139,184,229,163,95,221,69,87,136,91,249,37,47,178,110,201, - 55,0,88,119,243,147,172,35,133,5,7,172,187,249,102,22,29,152,198,121, - 231,13,167,188,188,156,198,198,70,46,185,228,18,30,126,248,97,158,126,50, - 122,170,65,42,81,139,101,250,244,233,52,52,52,240,235,95,255,26,143,199, - 131,211,233,100,236,216,177,220,124,243,44,190,250,213,105,204,206,67,82,145, - 32,244,22,36,6,71,247,197,224,162,4,40,75,81,49,68,238,147,79,62, - 97,220,184,113,140,24,49,162,115,221,25,146,143,126,117,7,169,196,109,197, - 138,21,25,215,217,191,127,127,26,207,126,130,183,223,126,155,61,236,129,56, - 241,181,120,156,119,222,112,190,252,229,47,115,238,57,231,104,0,79,63,249, - 100,39,113,203,134,193,3,7,70,9,162,219,229,226,227,15,63,228,227,15, - 63,228,198,27,114,174,94,16,122,21,18,131,235,70,150,45,91,214,241,33, - 135,39,97,24,34,151,171,229,150,239,126,29,73,102,207,158,157,85,185,242, - 190,125,181,198,230,102,85,94,94,30,89,201,60,29,28,14,7,253,251,247, - 207,170,77,65,16,186,7,137,193,209,125,49,184,1,3,6,68,125,62,120, - 240,96,36,67,50,91,114,153,70,96,16,219,175,163,133,120,75,32,229,189, - 126,77,83,101,101,101,217,87,34,235,177,9,194,81,139,196,224,146,148,205, - 119,12,238,226,152,167,196,15,26,56,16,50,92,79,175,19,185,150,167,115, - 191,242,50,209,251,232,88,137,73,16,132,94,140,196,224,232,190,24,92,54, - 43,122,119,37,137,87,244,62,54,38,122,11,130,32,36,67,98,112,221,72, - 54,43,122,167,170,235,129,7,30,136,44,136,154,41,233,173,232,45,8,130, - 112,108,34,49,56,142,157,245,224,98,235,89,23,158,148,252,220,115,207,101, - 45,114,249,236,151,32,8,194,209,196,49,29,131,51,30,180,171,148,74,186, - 30,156,249,216,76,218,205,119,12,46,31,66,18,43,110,151,93,118,25,139, - 23,47,206,73,228,58,247,75,145,219,154,112,10,36,6,39,8,194,17,230, - 152,142,193,41,165,8,133,66,104,154,22,17,178,216,253,198,106,222,201,4, - 174,187,98,112,185,10,92,172,184,25,228,42,114,98,193,9,130,208,19,57, - 166,99,112,193,96,48,34,114,6,102,33,83,74,69,137,220,145,38,151,133, - 69,19,137,155,65,46,34,23,191,95,217,90,113,71,58,117,70,16,4,65, - 231,152,142,193,185,221,110,52,77,67,211,180,168,57,83,102,215,37,116,8, - 97,34,114,137,193,101,66,182,2,103,136,219,146,37,75,146,30,55,113,226, - 68,62,250,232,163,140,69,46,113,191,50,21,57,17,55,65,16,142,30,242, - 26,131,203,149,76,99,112,7,14,28,64,11,175,250,108,44,126,25,207,29, - 105,88,114,153,182,155,239,115,238,138,21,189,19,145,73,189,201,51,57,141, - 235,150,76,232,68,216,4,65,56,250,200,41,6,151,232,216,108,201,52,6, - 183,115,231,206,78,219,60,30,79,194,250,157,78,103,220,237,153,8,89,34, - 49,76,167,221,124,175,232,157,47,98,251,21,255,9,34,201,4,78,18,74, - 4,65,56,250,200,41,6,151,203,163,148,170,170,58,139,83,186,12,27,54, - 42,235,178,211,167,103,255,228,143,92,218,229,174,187,178,90,209,187,43,73, - 180,162,183,32,8,66,79,224,152,142,193,229,139,238,138,193,101,179,162,119, - 170,186,22,44,88,192,249,231,159,159,85,29,71,251,138,222,130,32,8,185, - 112,76,199,224,186,186,221,124,159,115,190,86,206,54,4,105,247,238,221,128, - 46,84,217,138,92,62,251,37,8,130,112,52,145,215,121,112,185,146,203,243, - 36,115,161,59,196,27,242,179,114,118,172,184,141,27,55,142,79,62,249,36, - 39,145,59,150,86,244,22,4,65,72,151,188,206,131,19,146,147,171,43,208, - 40,191,107,215,174,72,246,40,228,46,114,226,162,20,4,161,39,34,49,56, - 186,47,6,151,203,202,217,102,113,3,125,234,131,49,7,16,224,140,51,206, - 96,211,166,77,89,137,220,177,178,162,183,32,8,66,38,72,12,46,73,187, - 249,62,231,108,87,206,54,196,237,133,23,94,72,121,108,65,65,65,198,34, - 215,19,86,244,22,4,65,136,69,98,112,116,95,12,46,215,21,189,11,10, - 10,210,62,54,147,122,143,214,21,189,5,65,16,114,65,98,112,221,132,102, - 177,112,137,249,51,16,223,33,219,189,104,208,169,95,130,32,8,61,1,137, - 193,209,125,49,56,65,16,4,161,251,144,24,92,146,118,187,203,117,41,8, - 130,32,228,31,137,193,33,66,38,8,130,208,19,145,24,156,32,8,130,208, - 35,145,24,28,18,131,19,4,65,232,137,72,12,46,73,187,226,186,20,4, - 65,56,118,145,24,28,34,100,130,32,8,61,17,137,193,9,130,32,8,61, - 18,137,193,33,49,56,65,16,132,158,136,196,224,146,180,43,174,75,65,16, - 132,99,23,137,193,33,66,38,8,130,208,19,145,24,156,32,8,130,208,35, - 145,24,28,18,131,19,4,65,232,137,28,241,24,156,82,42,242,158,40,22, - 54,125,250,244,168,99,243,141,196,224,4,65,16,122,30,71,60,6,167,148, - 34,20,10,161,105,90,68,200,98,247,7,131,65,66,161,80,151,9,156,8, - 153,32,8,66,207,227,136,199,224,130,193,96,68,228,12,204,66,166,148,138, - 18,57,65,16,4,65,72,135,35,30,131,115,187,221,104,154,134,166,105,88, - 44,150,200,118,179,235,18,58,132,80,16,4,65,16,210,225,136,11,220,129, - 3,7,208,52,125,29,105,77,211,34,214,92,172,152,25,150,156,32,8,130, - 32,164,131,45,81,204,173,187,216,185,115,103,167,109,30,143,39,225,241,78, - 167,51,231,54,19,37,149,116,117,187,130,32,8,66,247,161,41,49,139,4, - 65,136,131,102,184,86,146,48,107,214,172,241,243,230,205,91,111,188,103,216, - 196,92,96,14,112,95,248,239,216,246,101,108,18,114,226,136,187,40,5,65, - 56,54,153,53,107,214,186,240,187,177,233,236,52,139,158,12,252,4,248,50, - 16,4,110,4,134,0,255,13,108,203,111,47,133,222,140,88,112,130,32,196, - 37,158,5,55,107,214,44,59,80,4,20,2,19,128,135,0,39,186,88,185, - 129,118,192,61,111,222,60,127,130,106,191,1,252,237,129,7,30,116,92,117, - 213,181,156,114,202,72,170,170,170,120,241,197,23,249,197,47,126,225,3,190, - 3,188,24,110,95,198,38,33,39,68,224,4,65,136,75,172,192,205,154,53, - 171,8,24,3,156,6,156,0,12,5,134,133,119,87,1,213,192,94,224,51, - 96,251,188,121,243,220,49,85,158,12,108,90,182,108,153,99,253,250,50,92, - 46,63,179,103,79,136,236,92,190,124,57,23,93,116,145,15,56,3,216,38, - 2,39,228,138,37,245,33,130,32,244,118,102,205,154,213,23,184,0,152,1, - 92,4,12,2,154,209,93,139,213,225,191,7,133,247,205,0,46,8,151,49, - 243,147,7,31,124,208,49,101,202,20,190,243,157,147,120,233,165,29,28,56, - 208,22,217,57,101,202,20,30,124,240,65,7,186,251,82,16,114,70,44,56, - 65,16,226,98,88,112,97,161,186,20,152,132,30,51,107,4,90,208,221,145, - 3,129,58,64,67,119,91,246,1,202,1,43,240,30,240,175,121,243,230,53, - 135,171,220,187,99,199,142,161,163,70,141,2,96,246,236,143,105,107,11,80, - 84,100,99,240,224,34,102,205,26,203,206,157,59,25,61,122,116,53,112,130, - 88,112,66,174,136,192,9,194,81,137,66,169,32,161,16,28,56,224,101,233, - 178,22,86,127,220,194,182,109,77,212,30,240,209,210,226,193,98,81,244,235, - 111,165,178,210,198,184,177,101,92,112,65,57,23,76,26,72,105,169,61,252, - 240,132,220,28,52,154,166,105,97,183,228,101,192,133,128,15,56,8,156,8, - 124,23,248,26,96,196,218,140,216,92,31,160,31,186,240,57,128,21,192,226, - 176,187,50,224,247,251,173,54,155,158,219,86,91,235,230,75,95,122,157,107, - 174,25,201,109,183,157,206,113,199,21,19,8,4,176,219,237,65,192,38,2, - 39,228,138,8,156,32,28,85,232,255,142,237,237,65,94,91,80,207,255,205, - 63,204,39,155,26,241,122,107,241,249,170,8,169,26,66,161,38,2,65,63, - 154,178,16,82,125,128,62,104,148,3,125,41,43,183,115,233,165,67,184,229, - 150,83,153,56,113,32,86,171,5,221,14,75,153,241,223,137,219,111,191,221, - 1,156,143,46,112,78,160,6,221,90,171,7,94,1,126,5,44,10,31,110, - 163,67,224,250,163,187,43,43,1,15,176,24,248,96,222,188,121,59,205,22, - 156,126,158,1,10,11,59,146,185,197,130,19,242,137,76,19,16,132,163,132, - 80,40,64,40,164,88,188,184,153,95,63,84,195,193,131,245,180,181,45,167, - 177,241,3,74,74,221,156,125,246,72,70,142,28,66,223,178,209,20,22,22, - 18,12,132,112,187,189,28,58,212,204,182,109,219,248,252,243,6,26,27,7, - 242,143,127,12,225,165,151,62,227,178,203,142,231,129,7,38,113,210,73,229, - 216,108,118,210,152,214,22,75,37,48,17,93,176,170,129,6,116,113,59,12, - 188,14,220,1,252,53,124,172,13,221,101,105,182,232,10,209,19,81,38,2, - 123,128,183,95,124,241,197,155,238,185,231,158,72,3,102,113,3,120,241,197, - 23,1,222,206,180,163,130,16,15,177,224,4,225,8,163,148,254,104,58,151, - 43,200,47,238,217,199,170,85,7,113,123,22,177,127,223,34,38,77,58,147, - 75,191,50,133,211,199,158,128,195,97,195,225,176,226,176,59,176,90,173,88, - 172,186,56,168,144,34,16,244,211,216,232,97,217,178,29,44,92,184,129,45, - 91,60,168,208,48,74,75,29,60,244,155,11,184,254,187,103,226,116,218,177, - 88,210,191,167,189,253,246,219,39,2,215,160,11,85,21,176,15,168,69,23, - 184,86,244,140,201,139,128,77,232,2,247,8,112,22,112,11,48,24,61,1, - 101,24,186,240,45,8,199,226,54,45,91,182,204,49,101,202,148,78,237,73, - 22,165,144,111,196,130,19,132,35,140,82,138,198,198,0,215,127,183,138,54, - 119,53,123,170,230,48,246,180,193,252,242,255,205,101,200,9,229,20,20,216, - 41,41,46,161,164,164,132,162,162,34,10,10,10,176,90,173,29,49,54,165, - 8,134,130,248,124,62,78,60,113,40,51,102,76,224,237,127,237,230,209,71, - 223,97,127,77,41,119,220,254,47,62,223,126,144,57,115,166,80,90,90,26, - 245,80,243,20,12,2,250,210,145,80,226,166,99,174,155,7,61,137,228,62, - 116,23,230,221,192,183,129,145,64,133,233,184,246,112,29,131,128,143,129,239, - 92,116,209,69,127,123,240,193,7,29,223,248,198,55,24,54,108,88,188,121, - 112,50,217,91,200,11,98,193,9,194,17,68,183,220,252,124,243,27,123,104, - 247,110,96,245,199,15,113,203,45,211,185,242,202,73,216,29,118,202,202,250, - 82,81,94,78,73,73,41,78,167,19,155,205,22,89,125,35,166,38,66,33, - 125,89,41,159,47,128,187,173,149,234,234,6,238,189,119,49,255,122,187,30, - 141,16,119,222,57,129,217,179,47,161,184,164,24,171,213,154,178,111,183,223, - 126,251,247,128,139,209,221,139,123,208,221,148,117,232,174,74,23,112,10,240, - 62,240,0,112,47,186,176,149,160,103,81,14,70,119,79,14,15,191,222,157, - 55,111,222,252,112,213,230,39,153,84,162,199,246,222,38,230,73,38,98,193, - 9,185,34,22,156,32,28,33,244,117,14,253,252,244,167,251,104,117,237,100, - 227,198,7,248,229,189,183,113,238,196,147,41,46,41,102,224,128,1,244,235, - 215,143,194,194,66,140,204,195,196,104,88,44,250,146,83,118,187,29,167,211, - 78,73,105,9,79,60,249,77,238,185,231,93,254,241,220,46,30,123,108,37, - 39,157,92,193,140,25,103,83,82,82,146,77,76,46,150,141,232,49,183,159, - 163,207,145,75,222,195,196,130,53,20,184,41,252,18,132,188,33,19,189,5, - 225,136,161,120,103,73,43,171,86,213,179,121,243,195,220,252,253,111,51,113, - 226,201,244,237,211,135,161,199,31,207,224,193,199,81,82,82,146,134,184,117, - 198,106,181,225,116,22,50,120,240,64,254,251,191,175,224,194,11,43,9,4, - 6,51,103,206,43,236,217,85,135,199,227,73,103,249,169,96,248,221,110,122, - 217,76,47,43,80,6,252,22,216,108,218,30,123,60,64,32,227,147,16,132, - 28,17,11,46,1,161,80,8,139,197,66,48,216,241,164,5,77,51,150,204, - 233,124,231,107,177,88,8,133,244,241,64,41,79,248,88,45,188,221,88,137, - 92,225,243,5,105,247,53,210,216,226,160,233,176,157,234,189,33,26,235,15, - 178,171,218,73,107,147,131,221,59,107,216,91,229,163,205,85,72,99,163,7, - 183,187,62,110,255,138,251,192,241,199,245,227,132,97,14,74,74,251,48,96, - 64,27,67,135,13,161,108,160,149,126,165,48,244,4,11,101,253,252,148,149, - 21,81,100,211,112,56,108,145,216,139,223,239,143,184,168,204,231,104,156,159, - 197,210,225,190,10,133,130,40,165,47,35,100,181,22,71,93,27,33,55,2, - 1,197,111,30,170,161,221,253,14,167,156,210,151,203,174,56,143,146,146,66, - 42,143,59,142,126,253,251,227,112,56,114,170,95,211,52,236,118,27,3,6, - 244,225,145,71,175,224,162,11,95,164,174,206,202,83,79,47,231,158,123,46, - 103,192,192,129,169,196,179,14,253,9,37,78,244,68,147,162,240,171,157,14, - 193,10,160,187,22,157,113,142,43,12,191,154,209,231,207,9,66,183,34,2, - 151,16,253,238,214,60,168,155,247,25,131,190,65,40,228,52,9,67,49,126, - 191,159,96,80,209,234,10,81,189,63,64,245,222,16,59,119,6,89,191,182, - 145,45,159,214,179,231,243,189,52,123,52,80,30,208,156,40,213,151,162,2, - 63,110,175,29,0,77,51,198,3,111,248,189,192,212,154,151,246,122,168,175, - 119,179,105,51,160,60,104,90,59,240,49,74,121,112,22,56,240,120,125,244, - 235,55,136,243,207,63,145,17,163,42,57,99,108,11,229,253,7,50,244,4, - 11,99,79,45,192,221,236,162,176,143,149,96,176,163,214,104,97,11,153,182, - 21,155,182,155,10,8,89,163,84,136,15,63,108,98,231,206,70,14,31,126, - 157,159,223,115,55,78,167,149,254,3,6,80,94,81,145,80,220,148,82,168, - 144,23,21,242,129,197,142,197,98,71,211,140,239,77,195,248,221,154,111,194, - 172,86,27,167,157,218,159,153,223,63,135,223,253,79,144,87,94,89,197,13, - 55,156,71,73,105,9,37,37,165,201,92,149,134,192,13,66,159,223,214,23, - 61,121,196,152,10,96,163,67,232,108,116,60,201,196,56,182,15,122,76,174, - 46,252,18,132,110,69,4,46,1,198,96,175,15,244,42,230,179,134,213,90, - 28,217,103,28,31,10,133,56,220,224,163,122,127,128,141,159,133,216,188,214, - 195,186,141,27,216,182,185,133,195,13,133,104,90,63,83,11,199,163,105,16, - 82,109,160,64,211,60,180,251,64,211,98,159,79,11,209,226,22,38,44,140, - 128,46,144,132,31,251,167,129,199,7,133,5,86,14,31,110,96,209,162,181, - 40,85,136,254,116,37,24,126,220,80,198,158,51,140,169,23,67,159,210,18, - 198,141,31,204,169,39,57,112,56,108,248,253,126,44,22,95,164,9,77,43, - 140,123,109,116,113,47,142,187,79,72,141,49,45,224,205,55,27,105,111,223, - 194,136,17,253,25,57,106,0,125,250,244,165,162,162,31,5,5,5,113,142, - 15,160,20,40,229,5,111,13,154,247,0,88,75,8,58,135,160,217,42,208, - 52,80,33,31,10,133,197,82,128,166,89,77,194,167,255,62,175,191,126,12, - 143,254,239,191,169,173,115,241,201,230,221,84,30,223,143,162,162,164,9,39, - 7,194,175,161,232,137,35,177,243,220,220,196,127,146,73,127,244,132,147,114, - 244,167,153,24,245,8,66,183,34,2,151,0,191,223,143,221,110,143,184,30, - 163,221,120,26,30,143,15,171,85,191,243,61,120,240,32,107,215,212,179,115, - 207,9,172,92,86,197,7,171,252,52,183,20,19,84,205,132,66,86,52,173, - 16,165,156,40,101,212,161,91,127,74,57,163,62,235,214,90,103,49,43,116, - 88,105,247,153,45,167,130,104,47,169,242,160,103,109,119,208,238,5,77,107, - 15,139,27,232,99,13,236,57,224,98,207,194,207,88,184,80,223,122,230,233, - 229,156,121,134,159,47,78,61,141,161,163,251,51,238,20,39,253,42,28,4, - 131,65,172,86,133,199,227,35,24,244,83,88,216,225,158,77,36,124,66,38, - 40,214,172,105,192,235,221,193,25,103,156,134,221,110,167,79,159,190,20,58, - 11,163,44,170,80,200,79,200,95,15,254,6,64,67,83,1,66,109,27,9, - 184,62,67,43,24,64,40,48,25,138,108,216,105,7,111,141,94,166,96,48, - 154,99,112,148,112,105,154,198,201,39,87,48,100,104,63,170,246,12,98,243, - 39,59,152,52,233,100,202,202,202,18,10,220,188,121,243,14,206,154,53,235, - 93,116,177,26,65,180,181,86,68,98,129,51,30,213,213,23,216,129,158,65, - 121,48,15,73,45,130,144,17,34,112,9,176,88,124,132,66,29,113,38,195, - 98,51,4,175,213,21,226,147,173,30,54,173,83,172,92,118,136,69,111,180, - 3,219,8,133,218,208,180,102,148,234,139,197,162,91,57,74,57,209,52,143, - 73,208,250,81,216,231,16,170,93,31,27,138,138,6,161,217,234,81,129,19, - 244,253,182,122,220,126,243,114,90,33,10,45,237,209,29,12,245,1,192,237, - 181,163,105,209,238,75,3,35,135,64,119,95,98,218,238,1,237,56,0,54, - 126,218,200,198,79,27,249,251,75,219,56,110,80,5,23,124,241,98,166,94, - 222,159,51,79,179,48,244,120,27,253,42,28,128,13,165,218,241,251,237,56, - 157,185,197,133,4,48,238,78,118,239,110,195,231,63,196,9,39,140,195,105, - 183,83,84,92,136,213,102,142,109,42,84,208,5,109,219,9,185,195,139,101, - 91,202,81,237,27,8,212,108,130,65,67,240,250,142,135,64,41,125,44,251, - 8,185,215,160,84,16,10,191,64,168,180,152,130,2,43,86,171,77,119,107, - 170,16,154,166,113,210,73,21,84,237,41,98,255,254,58,60,237,110,2,254, - 128,30,57,75,192,188,121,243,182,206,154,53,107,25,122,50,73,63,58,92, - 145,198,220,184,216,39,151,24,15,91,238,139,238,54,88,54,111,222,188,173, - 249,186,114,130,144,9,34,112,9,208,180,194,168,4,140,80,168,144,195,13, - 62,62,248,208,199,206,157,65,94,127,221,69,109,117,19,159,239,170,195,98, - 41,38,20,106,51,149,46,192,162,237,161,176,207,64,10,195,66,2,29,43, - 135,104,182,122,250,149,57,57,220,20,68,133,92,40,181,19,21,4,180,157, - 180,186,218,176,208,136,215,103,167,99,228,49,91,103,250,54,187,67,255,234, - 28,14,240,249,108,20,22,148,226,245,233,131,163,82,133,20,22,218,104,15, - 235,90,196,138,139,184,52,9,91,125,6,229,4,252,78,170,247,193,115,207, - 189,198,203,47,7,56,110,80,5,215,124,109,34,35,70,4,153,116,225,104, - 134,143,178,83,86,100,139,36,157,104,154,51,42,102,39,100,130,194,231,11, - 225,245,90,177,90,21,118,71,17,109,30,59,187,118,250,41,47,11,97,177, - 88,81,42,68,40,232,70,181,239,33,212,182,129,64,253,50,52,103,1,65, - 203,80,44,161,61,88,107,14,19,234,31,36,224,221,130,53,4,126,107,45, - 154,247,19,112,121,241,148,13,32,164,141,64,179,20,82,160,89,0,197,166, - 141,245,140,62,177,140,162,66,39,54,91,49,237,30,47,62,127,144,64,48, - 128,82,42,233,148,129,121,243,230,189,23,94,181,251,106,116,203,172,4,125, - 30,156,57,217,196,16,190,18,116,183,228,65,224,245,121,243,230,189,215,101, - 151,81,16,82,32,2,151,132,80,40,68,40,228,160,186,206,197,242,149,65, - 54,175,169,98,197,178,118,54,126,210,210,73,212,44,150,98,42,250,234,151, - 179,188,124,16,198,58,144,86,235,1,218,61,85,145,227,92,109,94,90,154, - 219,56,116,72,207,142,84,120,208,240,208,241,112,136,104,87,99,34,124,62, - 227,56,61,121,173,221,171,39,176,169,176,0,182,183,15,14,215,239,164,176, - 160,20,0,143,87,143,195,105,154,51,226,226,84,170,48,202,194,211,40,192, - 239,43,96,111,181,151,223,63,186,2,133,151,179,78,175,97,242,197,67,153, - 50,117,24,231,159,231,160,95,133,51,124,125,130,4,131,161,240,121,70,139, - 157,100,89,198,39,20,10,176,109,155,135,91,111,169,162,168,176,15,45,205, - 13,40,5,159,125,234,229,177,199,22,240,210,75,95,227,196,19,203,176,89, - 125,208,190,147,80,235,106,66,190,15,177,180,239,37,232,183,225,47,240,98, - 179,54,80,80,223,130,178,122,177,171,53,224,109,65,217,220,104,238,3,248, - 125,26,222,246,70,252,246,54,28,133,65,236,54,197,59,75,26,248,249,221, - 111,242,234,130,171,9,6,3,140,28,117,38,139,23,175,197,233,248,132,223, - 60,92,73,159,62,161,168,120,93,60,194,34,87,15,124,21,56,9,221,74, - 235,23,115,152,145,137,181,13,120,77,44,55,225,72,35,2,151,128,128,255, - 48,141,77,65,22,191,233,98,201,187,22,222,94,124,152,134,102,253,102,213, - 112,61,26,239,21,125,109,148,151,59,41,46,49,132,162,157,230,67,7,104, - 245,249,104,115,53,226,241,86,163,240,160,199,217,155,208,69,172,25,40,8, - 235,140,23,93,224,226,17,155,69,105,124,46,11,191,55,155,246,57,195,245, - 57,81,28,192,176,246,218,189,133,64,25,26,101,40,156,40,229,69,163,0, - 103,129,3,104,195,227,45,142,136,156,166,57,81,202,131,194,75,81,225,16, - 60,158,86,54,125,86,195,103,219,55,179,224,213,10,174,189,182,63,95,188, - 232,98,190,242,37,189,110,35,14,25,12,167,99,166,243,132,140,222,139,98, - 199,14,47,87,94,177,27,165,66,88,172,91,112,183,239,71,97,225,64,173, - 159,189,85,123,56,92,191,159,1,253,253,84,148,180,65,235,122,66,77,111, - 161,149,108,3,75,35,150,134,34,180,227,237,88,44,237,40,87,43,118,71, - 11,90,208,143,55,216,76,48,228,64,107,169,199,26,40,38,224,108,35,232, - 111,39,24,242,161,148,147,173,91,154,217,181,103,43,135,15,79,194,231,243, - 97,181,246,163,95,197,104,94,126,117,19,77,205,45,252,245,111,223,162,127, - 255,196,177,56,131,176,187,242,48,250,19,76,78,4,70,163,199,231,64,127, - 186,201,14,224,115,96,235,188,121,243,100,90,128,112,196,233,21,2,103,78, - 109,55,210,251,53,173,144,96,48,136,221,110,39,24,108,35,24,112,99,179, - 247,195,98,177,224,247,251,249,195,227,54,214,175,109,229,157,119,62,231,240, - 225,50,83,93,109,17,107,109,200,80,197,9,195,244,152,84,245,238,106,26, - 26,247,227,106,243,226,110,115,160,66,75,241,248,3,116,88,101,205,232,34, - 230,37,177,149,230,36,158,59,82,199,75,103,218,209,189,66,222,152,99,154, - 77,199,20,96,88,121,138,50,12,43,79,1,30,111,25,138,50,44,154,5, - 69,57,133,206,0,30,79,43,0,22,173,47,30,79,107,68,236,252,190,98, - 170,170,91,120,252,113,197,95,255,246,47,190,125,221,201,76,153,58,140,47, - 94,84,64,223,66,93,248,253,126,59,86,171,46,118,122,146,138,133,128,191, - 1,0,71,193,128,240,245,11,161,84,123,100,250,69,111,65,169,16,109,109, - 126,190,123,253,46,148,10,241,147,187,75,249,241,143,63,66,41,47,161,96, - 0,187,61,136,82,138,246,214,38,188,77,110,148,218,143,242,174,1,215,191, - 177,245,175,67,5,124,104,135,67,104,39,20,97,177,123,176,122,66,96,245, - 96,85,65,156,1,8,56,74,177,180,251,240,218,109,168,80,11,248,107,193, - 91,10,78,43,129,160,66,133,66,180,52,55,226,15,4,216,182,173,153,202, - 193,37,160,138,89,242,238,90,30,252,175,50,230,204,189,156,190,125,203,98, - 19,83,58,205,4,255,227,31,255,152,214,249,74,66,137,112,52,208,99,5, - 46,24,108,139,196,137,140,20,126,221,109,86,28,158,232,172,194,137,36,86, - 252,126,59,14,135,238,109,153,255,204,142,136,197,230,118,215,227,246,218,49, - 123,219,250,151,247,229,252,73,246,200,231,237,219,14,82,181,119,15,30,239, - 33,20,123,128,221,68,11,76,135,168,169,24,97,211,58,69,247,205,251,251, - 154,254,142,151,181,216,132,46,94,198,59,36,202,194,236,168,187,9,240,162, - 209,14,12,15,187,51,203,9,41,221,186,115,183,59,35,150,157,199,219,209, - 23,205,84,167,199,123,136,160,106,228,247,143,110,103,193,171,3,185,230,107, - 19,249,206,13,35,56,105,180,134,221,214,140,187,185,128,162,190,37,145,9, - 238,142,130,1,4,131,109,180,181,181,81,92,92,28,222,222,27,179,48,53, - 158,124,242,48,155,54,184,249,197,255,59,158,23,95,92,143,207,119,24,80, - 250,122,109,74,3,165,17,12,182,99,241,85,161,90,62,68,179,111,66,11, - 214,163,105,109,208,14,90,107,59,54,187,27,13,31,248,125,104,22,208,218, - 3,88,66,205,216,156,126,44,222,0,86,171,134,221,86,133,51,184,2,139, - 171,138,128,101,2,33,127,1,10,8,133,116,189,10,133,52,90,93,86,208, - 138,81,170,128,167,158,94,196,21,87,156,202,121,231,159,68,73,73,177,136, - 147,208,99,232,185,2,23,112,163,175,38,98,184,19,45,120,60,62,28,14, - 27,86,171,149,128,255,48,142,130,1,250,32,236,176,177,240,13,23,47,189, - 80,207,154,143,218,249,124,87,29,118,107,37,65,21,192,98,1,171,214,151, - 211,78,115,113,234,233,253,113,181,182,176,183,202,71,99,227,38,234,234,118, - 226,241,237,67,23,14,227,213,33,102,134,128,25,127,27,159,157,5,250,243, - 104,251,20,13,162,127,255,98,10,156,253,25,49,108,4,0,149,67,237,56, - 10,244,196,148,62,197,80,90,174,127,69,173,141,1,74,203,109,180,54,234, - 214,82,139,41,167,165,177,182,138,102,151,70,85,21,132,216,141,215,83,207, - 150,207,13,87,168,135,104,23,104,25,186,120,26,130,87,75,135,117,87,142, - 162,140,118,47,56,28,253,241,249,108,17,113,211,69,79,159,245,231,243,129, - 134,110,209,61,250,232,219,44,120,181,15,119,253,120,2,147,46,28,205,169, - 39,57,8,248,15,211,230,13,81,82,88,129,207,23,192,225,40,164,176,16, - 60,30,125,142,157,195,209,99,127,118,9,241,250,130,204,155,87,67,101,165, - 149,253,251,235,249,224,253,29,232,33,43,133,82,26,10,133,166,41,172,120, - 177,6,247,162,90,182,98,173,172,198,162,92,250,69,119,41,104,15,97,47, - 104,71,185,2,104,129,0,90,64,97,105,81,132,188,62,172,35,125,104,202, - 138,85,179,226,44,216,143,197,83,135,173,109,11,33,26,8,184,39,0,138, - 144,82,97,23,182,66,133,130,104,20,162,40,198,227,169,229,153,103,222,230, - 228,83,6,80,80,224,200,249,9,42,130,112,180,208,163,71,26,227,209,83, - 30,143,15,167,211,129,211,233,192,31,78,191,183,217,251,225,241,248,168,169, - 111,227,177,223,249,249,215,27,27,169,173,9,208,210,94,78,129,245,100,188, - 193,109,88,44,197,140,59,221,202,133,83,251,115,232,160,147,173,159,108,99, - 227,167,27,40,176,239,195,227,255,156,104,241,104,142,178,208,52,173,21,104, - 69,169,82,52,156,12,44,63,135,227,135,12,99,196,176,17,12,29,53,149, - 9,227,182,83,58,192,74,81,97,41,74,21,18,8,117,88,125,54,75,95, - 2,161,102,236,86,135,105,30,91,52,230,227,11,156,167,226,245,232,110,88, - 191,79,79,110,9,5,70,176,107,215,94,118,239,172,230,195,85,126,246,213, - 236,161,185,229,0,30,191,11,93,216,140,39,43,25,212,134,207,71,79,68, - 241,250,12,129,214,227,118,30,111,248,122,70,156,86,205,56,28,54,124,62, - 27,85,213,45,220,117,231,42,198,143,93,193,119,110,186,144,235,110,60,133, - 190,197,1,66,33,93,204,116,151,165,138,76,49,136,126,42,76,239,224,131, - 247,93,84,85,185,153,52,169,148,37,239,236,10,187,205,21,250,188,66,107, - 228,25,36,90,176,13,107,232,16,154,175,30,75,97,27,4,130,160,41,104, - 213,176,184,130,132,10,60,88,90,3,224,7,229,7,117,64,65,67,16,235, - 23,21,65,45,132,149,54,156,206,3,168,198,32,214,34,11,94,95,27,202, - 219,31,8,187,135,1,208,80,104,40,44,232,73,143,133,44,89,178,154,131, - 7,47,167,111,223,190,34,112,66,143,161,199,10,156,205,94,17,113,77,234, - 131,172,110,242,88,44,250,64,29,12,6,249,215,59,30,238,251,229,231,124, - 246,89,9,48,4,127,176,6,104,195,111,169,102,210,197,21,156,61,118,8, - 0,43,151,172,13,11,219,102,156,5,77,180,123,247,17,207,82,235,112,57, - 58,25,88,54,137,227,135,12,227,130,73,99,24,49,106,40,99,199,245,195, - 233,12,225,245,122,177,216,15,16,244,233,86,154,49,87,205,102,49,187,36, - 117,10,11,21,222,128,11,128,144,223,74,137,106,194,165,149,225,15,250,176, - 91,59,6,161,144,31,236,86,43,74,21,98,115,234,243,222,236,22,55,227, - 206,40,98,220,25,39,241,213,111,6,65,251,2,251,119,216,216,184,185,154, - 61,59,246,178,234,253,229,180,186,219,105,247,6,136,22,58,221,234,211,51, - 59,157,132,56,46,34,116,161,112,114,10,128,166,13,194,239,171,3,234,113, - 56,250,227,247,121,88,183,185,137,61,247,175,226,189,165,123,184,231,190,75, - 24,122,124,144,210,18,253,137,249,14,135,3,143,199,71,160,221,67,97,159, - 232,199,127,245,6,222,121,167,14,77,11,224,113,183,177,127,255,33,84,88, - 220,64,195,162,249,195,15,62,214,176,171,3,216,172,53,88,220,110,176,248, - 81,190,144,110,117,213,1,45,33,44,78,31,161,214,16,154,91,129,15,180, - 127,131,230,242,131,213,10,238,16,86,60,104,125,66,104,159,5,208,70,129, - 237,243,106,20,251,65,41,84,176,5,13,227,81,112,22,52,180,176,155,218, - 78,67,99,53,159,110,174,226,184,202,254,148,148,148,72,178,144,208,35,232, - 177,2,103,177,88,163,30,42,12,16,10,233,43,33,31,110,240,241,224,127, - 125,206,115,207,237,163,169,65,183,120,130,170,217,100,177,13,167,180,204,199, - 242,229,27,88,253,193,70,124,190,53,64,45,30,127,29,224,1,237,80,196, - 50,43,112,106,120,61,186,200,13,40,59,129,51,198,140,231,228,179,79,225, - 242,171,71,68,68,75,211,218,41,44,116,211,222,174,225,15,250,40,176,91, - 35,79,25,49,167,232,27,214,154,166,181,211,167,68,31,136,172,193,82,44, - 246,32,118,85,135,215,90,73,97,65,27,5,161,82,44,22,79,248,156,156, - 248,67,110,10,108,22,2,94,13,127,200,141,82,133,56,11,170,113,187,244, - 233,1,118,28,20,151,104,140,62,53,200,241,163,138,241,122,198,112,203,29, - 19,216,252,201,97,86,46,93,197,222,106,47,91,183,213,134,173,59,195,178, - 107,210,251,194,1,116,215,165,142,61,236,186,180,219,219,240,251,250,162,209, - 23,159,207,139,70,0,13,39,13,13,205,188,242,79,47,107,55,28,98,206, - 220,139,184,98,218,16,108,14,23,190,118,232,91,50,0,171,181,16,143,199, - 71,113,239,210,55,54,111,110,197,162,41,14,31,118,227,247,251,163,158,26, - 233,176,4,8,4,219,64,131,62,5,171,41,40,221,142,182,175,25,44,33, - 180,86,13,213,2,28,80,208,170,80,33,63,90,61,208,170,192,173,161,54, - 128,102,133,96,83,8,203,78,13,85,9,90,169,87,95,185,237,44,13,107, - 77,51,86,199,33,208,202,177,171,122,52,53,16,48,102,137,104,104,216,80, - 56,80,74,177,107,215,126,220,109,167,18,8,4,69,224,132,30,65,143,21, - 184,80,40,20,249,39,213,51,250,10,9,6,3,188,249,150,30,107,123,229, - 133,114,188,193,58,52,109,23,154,214,143,138,190,54,190,124,89,63,198,159, - 83,206,250,181,141,60,254,199,151,240,249,54,163,47,121,229,197,89,96,35, - 164,53,227,245,232,113,140,2,167,134,207,3,22,53,154,241,99,207,229,162, - 139,47,228,204,177,67,25,126,162,7,139,197,67,123,187,134,57,245,223,16, - 55,0,175,39,72,73,81,17,118,207,1,92,148,81,88,168,34,125,54,132, - 203,98,45,37,224,247,99,177,7,177,217,237,40,251,16,10,45,37,104,22, - 221,114,11,4,236,225,227,192,70,95,108,54,27,142,2,208,231,216,130,10, - 157,70,191,114,208,44,30,60,237,237,180,123,117,151,166,221,82,68,105,191, - 66,60,237,237,156,57,97,0,147,190,248,93,106,246,7,216,181,107,47,239, - 47,223,197,251,31,238,161,238,240,231,56,237,253,77,238,76,195,117,233,140, - 184,46,253,62,39,10,27,22,173,47,26,78,148,50,18,81,60,56,28,54, - 246,86,31,228,182,91,159,230,182,205,95,224,182,31,77,161,172,172,136,198, - 198,70,138,139,75,113,56,58,92,197,6,118,187,157,158,204,190,106,55,74, - 121,105,105,110,215,159,44,98,218,103,213,60,160,26,65,5,41,44,223,140, - 163,186,14,246,121,208,154,67,168,131,16,201,93,178,106,88,106,20,161,29, - 154,158,148,191,23,180,253,186,187,87,251,196,2,107,130,104,67,53,152,166, - 161,214,133,80,39,91,177,110,110,199,238,8,160,41,133,93,213,17,82,253, - 0,115,251,90,248,229,163,165,181,25,175,215,75,48,16,128,2,113,83,10, - 199,62,61,86,224,140,7,36,27,66,215,228,246,243,207,151,170,121,236,145, - 237,108,218,82,142,85,235,75,129,245,100,66,180,112,217,229,62,38,95,52, - 140,234,170,125,252,227,153,133,172,219,252,41,250,136,2,198,106,31,30,223, - 33,0,52,6,224,116,244,167,79,225,201,76,186,100,10,23,76,25,25,113, - 63,250,85,0,143,92,243,43,203,0,0,32,0,73,68,65,84,199,2,20, - 225,176,106,248,130,209,89,214,69,246,162,200,223,22,75,27,193,162,190,20, - 132,10,48,66,82,54,187,29,155,77,183,226,156,4,192,102,199,111,43,196, - 30,104,199,111,43,68,95,158,43,108,217,217,236,56,194,143,117,242,5,162, - 99,90,1,159,149,66,139,43,92,198,78,65,129,147,98,71,31,130,1,93, - 84,2,129,0,5,5,229,224,109,196,239,63,192,128,129,208,167,223,0,206, - 248,194,104,174,217,222,198,198,205,213,44,123,119,69,216,170,131,142,132,20, - 103,196,117,9,167,160,209,132,82,250,118,133,19,45,156,249,233,243,213,163, - 225,196,235,43,229,145,255,93,207,158,29,123,185,245,238,235,57,235,172,18, - 218,125,141,56,172,37,189,46,206,227,106,243,17,82,1,60,126,5,81,242, - 166,176,18,132,160,27,77,105,88,189,109,104,139,219,193,170,17,220,9,150, - 173,232,15,195,218,162,224,120,80,85,22,88,15,212,107,240,169,5,26,67, - 40,47,168,151,53,180,189,192,62,5,175,162,207,70,91,26,66,109,129,208, - 176,64,56,139,210,131,10,249,233,16,53,69,199,16,16,36,16,240,16,12, - 5,9,202,138,17,66,15,225,152,21,56,159,247,16,142,130,1,145,101,105, - 236,118,63,193,128,27,127,160,136,194,194,66,64,35,24,108,195,239,183,83, - 83,223,198,252,191,180,241,167,71,27,105,110,25,14,52,227,15,214,112,226, - 200,32,151,79,131,17,35,224,189,165,43,120,227,173,143,240,248,86,1,78, - 208,86,69,218,82,170,20,84,41,133,5,253,57,101,204,87,56,115,220,69, - 92,243,77,69,81,97,105,248,201,239,122,108,13,188,24,25,214,254,16,104, - 26,148,168,38,90,57,14,167,83,23,33,91,216,82,177,217,202,163,206,167, - 208,25,155,222,175,127,118,0,216,138,41,214,83,66,177,218,59,127,101,230, - 8,90,208,31,192,90,98,35,232,183,162,5,3,216,173,54,252,182,0,96, - 1,155,209,70,1,190,64,16,205,98,44,215,165,183,19,8,180,48,252,68, - 63,195,79,28,192,229,215,222,204,166,143,119,176,114,233,42,62,250,216,71, - 221,225,67,116,100,101,214,134,135,104,125,2,185,195,81,130,223,87,16,158, - 36,78,88,232,234,80,52,161,225,228,213,69,251,88,183,233,165,136,203,18, - 71,51,158,22,27,78,167,222,243,226,226,98,66,161,32,1,127,3,86,91, - 17,193,128,59,50,111,174,167,80,84,168,80,202,175,63,251,49,6,165,124, - 88,180,0,33,165,161,246,133,208,118,128,230,10,161,138,45,176,60,136,218, - 109,65,115,41,104,1,181,9,180,109,33,84,131,6,43,20,150,102,5,65, - 208,22,6,209,66,64,80,17,250,99,8,173,25,168,83,168,62,26,202,103, - 3,130,104,49,150,99,184,117,244,167,109,121,195,83,56,82,46,130,42,8, - 199,12,199,172,192,25,226,102,183,219,177,90,67,128,21,171,13,28,5,198, - 250,109,193,136,184,253,104,86,21,139,223,116,0,197,248,131,53,216,173,149, - 204,248,214,32,198,159,83,78,117,213,62,30,249,159,53,84,85,175,0,254, - 13,52,133,7,102,112,20,244,193,231,41,160,176,160,132,145,39,156,205,212, - 75,206,231,255,179,247,230,97,146,220,229,157,231,231,23,87,70,228,89,85, - 125,223,82,75,66,2,36,25,4,194,6,196,33,176,96,48,30,217,140,109, - 24,99,174,129,241,154,245,12,182,121,198,107,27,31,203,120,188,187,222,177, - 253,48,198,131,89,123,141,7,97,33,134,197,6,219,18,136,75,71,35,144, - 133,145,208,65,235,70,221,93,221,213,234,163,186,170,242,206,184,227,183,127, - 252,34,34,35,179,170,91,2,73,86,183,58,190,207,147,79,101,70,70,70, - 68,30,21,223,248,190,239,247,125,223,215,95,245,74,182,110,51,232,245,142, - 161,153,234,74,87,145,219,106,84,42,21,66,54,81,55,117,212,240,99,242, - 1,147,69,5,6,96,234,198,42,242,138,147,42,186,54,194,182,87,59,41, - 19,127,128,27,55,168,85,101,254,88,171,212,41,248,92,114,120,222,234,46, - 41,102,24,17,22,246,159,169,64,195,48,136,162,8,194,101,94,254,202,141, - 252,200,143,190,135,159,121,116,200,63,252,253,237,220,126,71,230,196,156,97, - 92,22,209,206,195,150,82,110,70,144,17,93,86,22,161,66,174,243,11,223, - 227,67,191,241,32,247,239,125,53,111,127,247,85,60,111,103,130,231,121,212, - 106,13,134,195,33,150,101,97,85,54,48,104,247,112,154,213,233,195,61,227, - 177,101,171,197,3,15,170,139,177,177,130,82,208,136,72,8,16,72,120,68, - 34,142,39,170,149,241,223,162,34,195,3,137,180,52,196,102,13,241,96,2, - 71,5,194,151,136,187,37,34,53,167,200,0,197,83,166,64,91,76,32,20, - 48,148,16,235,208,141,65,100,223,117,186,127,153,164,143,2,96,8,4,84, - 29,7,193,217,231,112,45,241,220,197,25,75,112,160,242,54,73,18,23,102, - 181,57,133,25,109,130,219,239,28,241,223,255,68,141,175,209,80,86,105,77, - 235,242,203,31,88,207,142,157,38,119,236,41,170,182,14,118,37,198,245,59, - 8,161,236,253,129,215,226,5,23,252,232,4,177,13,188,62,189,180,8,45, - 9,117,252,169,14,35,217,44,175,177,82,155,252,136,51,165,150,169,23,117, - 223,73,9,106,76,100,134,145,17,226,164,210,43,188,136,234,212,227,34,162, - 40,196,48,178,99,208,167,158,139,241,112,39,8,213,70,169,191,48,142,80, - 10,47,33,142,66,154,198,136,230,165,130,247,239,184,156,87,255,248,107,248, - 230,45,243,124,233,203,95,197,11,59,249,107,69,161,45,152,105,173,39,12, - 148,203,50,145,93,198,102,21,155,99,203,30,215,93,123,27,237,19,26,191, - 249,191,95,206,236,236,28,113,28,226,121,30,186,110,18,199,1,213,86,29, - 215,117,159,115,38,148,75,46,105,112,211,215,15,16,71,233,156,54,41,201, - 170,210,52,17,161,225,41,201,255,16,136,0,146,57,29,113,44,129,77,2, - 17,75,120,137,32,57,63,65,124,59,165,198,138,64,26,18,57,171,129,47, - 144,231,130,88,72,144,150,64,110,50,16,139,49,178,170,195,8,132,159,32, - 228,100,96,20,65,234,220,84,37,46,66,184,108,217,186,5,45,55,151,148, - 74,174,196,153,143,51,150,224,178,206,36,65,16,163,235,9,186,174,229,57, - 55,16,220,240,165,1,191,255,123,143,114,120,65,164,179,217,22,56,239,156, - 58,191,244,31,47,98,174,181,204,159,255,233,151,120,224,225,135,241,194,111, - 98,217,139,248,158,196,11,250,105,87,137,13,108,156,217,201,43,94,113,5, - 63,247,51,47,99,247,11,182,3,30,189,222,128,48,14,168,87,27,171,84, - 219,244,144,202,140,216,138,161,199,105,82,83,235,165,68,102,175,127,194,247, - 108,219,54,158,231,229,219,145,193,100,174,68,88,250,120,121,225,155,205,136, - 174,248,56,219,70,20,133,68,145,218,78,145,244,204,164,74,24,172,224,122, - 62,213,104,9,125,195,22,94,255,122,141,93,59,207,101,215,238,55,240,141, - 155,15,241,192,195,119,224,133,3,108,179,14,68,120,225,81,130,160,131,109, - 173,35,8,207,79,75,10,198,109,206,4,176,184,236,113,205,117,119,209,237, - 206,243,219,127,240,62,118,109,247,9,124,101,62,1,101,8,178,44,107,226, - 194,229,185,128,215,190,118,61,127,250,223,124,36,6,160,49,86,112,202,172, - 159,77,157,17,143,131,212,65,188,88,170,48,228,54,16,247,3,63,34,17, - 47,16,136,187,19,228,107,52,196,253,169,210,250,128,142,252,219,24,222,0, - 242,1,77,189,246,195,192,255,42,144,191,172,193,103,65,14,45,228,161,201, - 73,223,146,4,149,211,93,1,86,104,52,102,56,255,252,13,24,134,145,154, - 179,202,110,38,37,206,124,156,177,4,167,230,147,169,226,237,36,73,242,206, - 36,0,55,124,105,192,111,124,240,32,237,182,34,55,128,75,47,214,249,143, - 191,177,139,193,210,126,254,252,79,191,193,93,123,31,67,112,19,136,5,2, - 95,93,60,75,217,192,169,92,192,171,47,221,194,27,223,246,30,118,239,222, - 201,166,45,30,195,193,32,175,61,51,180,22,94,122,177,13,138,216,148,57, - 100,242,163,204,66,144,197,208,163,109,59,5,101,182,218,53,104,79,169,176, - 181,80,171,53,136,227,16,93,55,193,49,199,247,97,98,185,136,79,78,14, - 158,231,81,209,76,252,68,169,188,162,210,203,200,110,56,130,153,153,89,102, - 128,78,167,130,63,24,18,27,6,231,95,80,97,235,182,231,113,241,37,151, - 112,211,29,59,184,249,239,191,201,241,229,5,148,130,83,164,237,5,135,17, - 52,198,223,85,94,39,152,181,43,59,202,223,127,17,132,118,19,31,250,253, - 31,231,220,115,27,180,87,14,97,85,102,177,109,27,199,113,242,230,205,32, - 158,19,147,9,94,251,218,77,108,217,98,114,228,200,8,33,12,148,66,74, - 59,153,128,10,25,202,132,228,197,2,142,9,53,85,237,223,168,58,55,90, - 26,236,76,16,151,130,108,106,104,63,9,73,91,67,236,22,240,186,4,190, - 3,252,152,64,58,2,158,47,161,150,144,92,161,161,93,33,145,75,2,237, - 129,52,140,153,24,140,199,72,128,10,31,31,1,22,121,229,203,223,64,173, - 102,97,87,108,116,253,140,61,45,148,40,49,129,51,246,151,172,154,35,219, - 185,146,51,204,57,194,48,228,198,175,184,124,242,19,251,57,116,112,125,218, - 141,36,226,149,175,218,206,187,127,113,59,123,239,60,200,167,175,253,22,203, - 43,119,34,120,4,80,164,150,133,36,55,205,94,193,155,223,248,26,126,254, - 189,47,163,90,29,145,36,125,6,125,13,112,48,52,71,25,40,132,139,227, - 72,146,100,76,70,69,114,115,236,202,4,81,197,73,21,219,150,24,134,254, - 132,164,150,17,149,186,127,242,43,104,93,183,210,92,206,244,107,204,252,117, - 186,62,233,82,140,11,142,206,90,45,45,246,141,199,138,175,72,118,81,20, - 210,168,169,2,243,145,11,166,53,199,214,141,27,208,173,136,78,167,141,208, - 60,126,228,178,152,23,94,124,33,47,185,200,228,51,159,218,159,170,225,62, - 146,89,148,171,242,152,218,7,54,176,57,85,115,89,97,188,135,105,213,249, - 187,235,111,166,178,49,225,87,127,241,66,118,238,92,71,69,83,199,181,188, - 18,208,168,107,105,121,71,26,198,59,195,73,206,113,52,254,221,123,47,224, - 255,252,63,110,39,201,75,42,212,123,138,165,69,34,91,8,49,128,203,116, - 24,10,117,173,112,169,132,227,144,92,4,66,211,208,234,18,185,3,228,118, - 96,135,36,121,57,136,102,2,155,52,146,243,5,218,72,64,75,32,18,137, - 220,174,35,37,68,187,107,132,223,75,155,107,39,27,144,66,7,98,226,56, - 64,114,0,216,135,97,68,252,196,155,175,196,182,109,106,181,218,170,139,181, - 18,37,206,84,156,177,191,228,68,182,80,78,201,56,29,76,154,228,228,166, - 166,107,47,160,105,53,126,242,205,14,87,191,173,197,45,123,110,226,11,127, - 243,29,144,243,192,190,180,49,114,218,82,75,110,224,178,75,126,134,119,188, - 251,245,188,252,149,27,25,244,99,92,87,224,56,30,20,50,93,245,134,78, - 20,170,19,181,237,140,243,101,211,97,200,162,41,196,48,180,9,98,123,34, - 66,139,99,169,26,230,166,249,197,56,78,242,26,177,204,84,3,144,149,141, - 77,230,32,227,52,76,91,92,150,164,235,107,249,84,133,108,134,91,86,114, - 48,173,248,100,96,18,166,199,99,85,212,79,36,138,66,252,145,129,105,205, - 97,219,35,34,175,77,100,56,92,241,170,221,236,222,189,147,235,63,127,14, - 55,126,101,79,234,182,220,130,26,13,228,96,91,53,252,192,75,51,58,202, - 120,34,217,130,31,28,70,99,134,235,62,113,43,222,177,133,60,92,137,23, - 82,117,108,178,147,63,156,249,228,6,234,187,254,149,95,185,140,207,126,246, - 30,246,237,59,14,178,150,134,43,33,144,117,18,214,35,89,32,217,214,64, - 142,86,160,18,163,213,33,105,9,69,104,71,12,226,145,134,216,17,145,24, - 49,98,139,134,118,33,32,116,146,205,26,90,69,32,231,82,114,139,4,212, - 117,130,197,38,35,125,51,158,187,13,100,155,80,91,143,250,151,79,240,252, - 69,224,126,132,56,204,155,223,244,211,60,239,162,77,52,155,45,170,213,42, - 186,126,230,127,222,37,74,192,25,76,112,150,101,164,39,62,117,234,252,246, - 183,70,124,244,143,231,217,243,173,165,137,250,182,171,223,182,155,91,246,220, - 196,103,62,241,101,148,37,237,62,16,11,121,134,193,182,206,229,141,175,191, - 154,255,240,107,63,69,171,213,162,219,237,82,173,142,24,141,170,140,70,74, - 177,133,113,64,197,214,113,125,85,40,173,233,227,240,219,180,98,203,194,144, - 167,34,181,105,117,86,44,114,214,245,113,94,45,155,132,176,214,122,197,117, - 166,239,79,46,83,39,43,165,116,39,159,215,245,226,192,210,177,42,196,49, - 9,34,69,218,73,218,75,204,48,134,80,13,49,227,145,90,110,111,77,221, - 153,30,207,191,168,194,142,95,127,61,23,191,88,227,211,159,186,153,123,246, - 42,114,3,23,47,88,78,219,67,217,169,138,219,133,160,139,228,14,18,206, - 69,99,51,55,126,237,40,173,250,39,120,255,7,175,98,247,238,205,105,158, - 49,127,215,64,248,156,40,4,159,155,115,248,171,191,250,9,222,242,150,191, - 162,211,57,140,34,113,141,64,214,144,218,58,16,130,144,77,68,91,143,99, - 152,30,137,30,33,155,2,125,70,18,28,53,17,253,42,250,150,62,154,158, - 32,103,33,89,111,130,39,144,235,5,113,175,2,213,4,177,18,162,199,130, - 200,110,208,91,126,30,109,247,5,12,195,115,144,116,17,122,3,197,93,75, - 196,241,45,32,30,226,5,207,127,17,239,122,207,91,104,212,155,204,206,206, - 174,233,216,45,81,226,76,197,105,79,112,197,89,110,197,19,183,148,46,73, - 226,32,165,199,221,247,73,62,252,225,121,238,184,99,29,154,54,34,161,199, - 213,111,126,148,119,188,239,117,92,255,185,91,249,204,117,95,198,169,44,48, - 242,191,11,164,89,8,121,62,118,37,230,223,191,247,3,188,253,93,47,1, - 192,247,219,84,171,170,11,73,177,133,86,189,170,8,45,203,181,77,59,33, - 167,73,45,11,181,101,166,143,76,169,21,137,237,100,39,236,103,202,88,177, - 150,10,154,38,208,140,92,227,56,161,145,41,74,67,166,203,108,60,15,72, - 93,157,138,132,212,201,48,14,35,42,198,60,111,254,137,11,216,48,187,133, - 207,127,254,111,249,199,27,19,53,77,220,140,240,194,3,192,22,100,30,170, - 132,188,80,156,123,240,130,89,254,231,23,0,253,49,254,195,175,239,98,203, - 134,99,24,209,144,64,191,144,70,29,130,32,64,38,29,12,115,142,44,135, - 116,38,170,58,77,211,120,249,203,183,243,233,235,222,201,175,126,224,26,246, - 237,223,15,24,72,169,35,13,19,41,151,8,188,173,68,181,163,8,121,28, - 49,16,104,117,65,44,5,82,111,225,15,107,88,173,8,211,136,96,29,72, - 195,36,25,89,208,212,241,186,13,116,45,164,98,246,73,34,73,100,213,25, - 6,187,241,204,151,96,214,91,200,164,171,114,107,114,4,220,132,166,221,197, - 43,95,241,58,62,240,129,183,179,126,125,131,13,27,214,211,106,181,86,57, - 110,75,148,56,147,33,164,148,167,189,31,56,11,179,77,159,212,2,255,4, - 137,108,241,198,55,29,231,161,239,29,99,169,221,197,212,183,242,194,23,14, - 248,240,31,92,196,39,63,177,159,175,125,229,47,241,194,111,146,205,104,203, - 58,254,111,156,121,30,191,245,187,191,197,21,175,218,141,239,183,243,246,90, - 69,151,100,150,107,43,90,254,159,12,185,157,140,216,50,167,231,233,138,226, - 197,196,56,140,169,194,166,113,60,110,173,149,57,57,61,207,195,243,60,52, - 225,210,239,69,160,55,49,28,135,35,223,63,198,71,63,250,8,159,191,254, - 239,0,144,204,22,26,82,207,96,87,54,224,249,170,112,60,41,148,17,216, - 150,206,47,255,178,106,237,229,104,203,88,149,89,18,89,163,234,196,216,54, - 120,158,250,76,179,169,4,103,34,164,76,240,3,159,67,7,143,243,153,207, - 236,225,59,223,249,30,111,120,195,229,108,222,188,5,91,244,121,193,246,199, - 168,37,119,81,179,231,209,42,29,68,16,16,91,22,65,127,3,177,172,81, - 171,236,199,110,28,65,30,182,8,119,54,145,163,10,81,199,196,175,108,69, - 211,70,56,98,17,173,158,208,237,108,162,155,92,73,236,188,22,171,190,157, - 175,125,117,63,47,190,108,35,215,95,127,152,35,71,238,228,178,151,156,203, - 11,94,184,157,70,173,206,198,77,27,216,184,113,19,141,70,13,33,158,91, - 161,225,18,103,55,78,91,130,155,206,35,173,245,207,214,238,29,231,191,252, - 103,193,199,255,251,18,177,236,98,138,29,156,187,251,65,126,253,195,63,198, - 222,59,15,242,151,31,255,56,94,120,23,146,249,116,124,141,194,198,153,55, - 241,155,191,243,94,174,120,213,110,0,150,219,135,0,48,117,11,199,145,184, - 174,200,109,255,89,174,45,115,69,158,140,216,178,229,211,164,118,38,135,214, - 84,179,106,45,39,187,44,132,153,145,157,231,165,125,51,205,136,192,149,68, - 81,76,28,24,120,81,204,225,197,46,255,227,83,15,113,243,223,127,147,99, - 203,209,196,112,87,167,114,1,158,31,32,241,83,21,231,97,91,58,94,112, - 152,77,235,54,240,161,223,123,55,63,255,246,139,232,117,15,51,183,161,129, - 165,215,145,65,140,225,216,196,113,72,237,12,47,146,147,82,18,4,1,221, - 110,151,118,187,141,235,142,104,181,102,168,218,22,126,255,48,201,104,30,61, - 152,39,246,23,17,201,128,72,218,132,178,142,33,36,51,214,253,84,234,7, - 96,160,49,52,102,137,195,38,137,108,224,39,91,209,136,168,26,199,144,68, - 120,201,122,70,250,75,177,102,47,99,118,253,54,52,205,192,117,221,52,95, - 29,211,233,116,16,66,208,106,53,153,153,153,165,90,173,174,250,31,43,9, - 174,196,153,142,51,130,224,50,196,241,16,93,87,39,55,207,11,248,248,95, - 12,249,208,255,118,52,39,183,132,30,159,251,194,118,174,255,220,173,124,242, - 186,47,2,123,176,236,46,129,87,1,161,122,73,190,225,165,111,230,29,239, - 255,16,47,188,204,98,249,196,32,159,187,6,228,234,205,243,52,234,13,125, - 162,150,45,179,251,159,138,216,116,93,16,199,18,203,210,79,107,165,246,195, - 34,107,144,92,84,116,25,201,129,50,162,36,241,128,126,47,162,214,104,112, - 228,72,135,255,239,127,62,202,117,215,222,198,177,229,8,45,173,137,147,120, - 104,226,194,180,16,28,224,88,78,112,208,225,37,151,92,197,239,254,254,107, - 121,233,229,235,209,132,75,34,29,172,202,58,26,245,241,9,247,76,86,113, - 25,226,56,198,247,253,244,66,194,192,52,117,226,48,38,240,123,4,110,15, - 111,212,193,243,70,200,88,34,116,19,93,139,48,163,227,36,254,60,73,16, - 225,199,85,164,86,67,90,45,52,179,137,174,27,232,120,196,145,79,44,45, - 52,123,51,141,217,77,180,102,54,96,85,172,188,13,87,28,199,68,81,136, - 38,52,172,74,5,211,52,214,156,226,93,18,92,137,51,29,103,12,193,197, - 241,48,239,81,152,36,73,161,214,205,99,165,171,250,251,253,209,159,92,4, - 192,239,254,230,111,131,118,31,158,191,160,108,233,169,122,123,241,197,239,231, - 131,191,246,14,46,127,153,228,240,177,222,196,254,50,229,6,208,154,25,23, - 39,23,77,36,182,237,228,247,179,80,228,180,105,228,76,86,108,79,132,98, - 8,51,8,98,44,75,39,142,19,149,35,75,75,13,52,83,125,23,43,39, - 250,216,182,195,145,35,29,238,184,35,228,15,255,224,83,28,91,142,168,88, - 219,241,131,195,8,206,65,80,65,226,163,122,91,102,51,232,0,92,254,205, - 79,94,206,111,255,193,251,104,213,143,33,204,132,173,27,207,97,56,236,51, - 51,99,19,134,102,238,52,125,46,64,74,57,65,48,113,28,19,134,17,65, - 24,18,71,97,222,188,64,211,53,100,36,241,124,23,207,119,137,163,8,93, - 215,208,13,27,211,52,48,13,3,93,211,136,226,144,40,74,48,76,3,199, - 182,169,216,14,150,101,158,114,159,107,161,36,184,18,103,58,78,107,147,201, - 120,242,179,36,142,70,232,70,149,36,73,184,119,239,136,79,126,98,63,237, - 118,200,74,55,66,202,101,126,229,87,118,113,222,121,58,111,251,185,255,135, - 32,92,64,242,125,4,118,94,227,118,217,37,191,192,7,127,237,29,92,116, - 169,224,209,3,135,169,55,171,36,161,34,208,48,14,192,181,168,213,235,68, - 169,74,57,153,106,155,206,177,21,201,237,185,62,67,171,88,142,96,154,33, - 113,44,210,94,160,58,56,18,225,122,4,241,128,192,149,212,235,117,162,40, - 166,53,51,203,21,175,105,242,11,243,175,230,227,31,255,103,188,224,49,4, - 51,168,9,226,51,169,101,68,245,182,148,144,154,82,224,11,95,252,38,231, - 156,191,147,183,191,251,42,118,108,51,88,60,218,166,177,46,203,195,169,227, - 41,150,77,156,201,152,38,26,93,215,209,52,13,203,50,144,50,109,96,157, - 213,103,75,168,198,117,146,56,66,38,18,161,9,132,16,232,186,150,111,71, - 74,213,151,75,104,170,72,126,173,223,229,19,145,91,137,18,207,5,156,214, - 4,167,186,155,43,123,187,110,84,17,194,97,254,72,151,107,175,57,204,63, - 125,43,204,77,37,111,122,179,195,107,95,183,139,127,255,239,254,134,32,120, - 12,187,178,15,47,232,99,85,4,190,215,224,133,23,188,145,15,254,218,59, - 184,240,98,135,142,251,40,245,214,22,98,63,33,74,186,24,90,139,153,214, - 152,216,178,156,219,90,185,54,219,182,159,83,57,182,31,22,138,232,106,132, - 97,48,81,214,224,56,14,184,32,107,6,177,39,105,89,1,154,88,100,221, - 92,133,183,191,251,42,0,62,242,167,55,230,83,208,179,105,3,146,25,84, - 49,248,49,188,240,40,170,195,198,44,215,93,123,27,23,95,114,9,51,235, - 214,17,142,14,209,88,183,179,80,66,160,46,46,158,43,36,55,13,33,132, - 234,89,185,6,84,228,220,124,82,42,172,68,137,179,25,167,125,12,34,35, - 57,33,20,241,236,189,71,231,250,207,237,103,165,27,97,234,91,57,103,87, - 204,213,111,219,205,167,255,250,22,86,86,142,3,123,112,253,37,0,124,79, - 178,105,246,10,222,247,75,111,227,162,75,133,50,147,120,155,72,130,33,66, - 184,212,171,13,132,112,137,194,16,219,113,48,12,131,102,173,70,179,86,163, - 234,140,67,146,197,222,141,112,234,46,35,103,11,194,48,196,202,122,95,74, - 15,215,85,225,69,203,178,168,26,2,71,87,195,93,173,202,44,221,225,50, - 155,214,119,121,251,187,175,226,103,174,126,51,26,155,11,91,82,245,113,154, - 104,1,155,211,78,40,10,199,151,7,252,205,255,251,37,246,63,252,16,205, - 217,89,22,23,14,145,200,90,222,131,51,142,79,203,232,250,191,24,74,114, - 43,81,226,212,56,173,9,46,73,146,220,65,25,133,203,220,187,119,196,71, - 62,210,229,224,241,141,152,98,7,177,236,242,182,119,205,178,247,206,131,220, - 240,149,71,144,220,10,89,206,77,94,130,83,89,207,91,255,237,85,92,254, - 178,89,60,215,205,235,217,164,84,100,153,132,58,149,74,37,87,109,142,93, - 81,125,35,245,38,154,94,199,182,109,42,154,73,173,214,64,215,77,44,203, - 202,115,63,217,237,108,133,105,154,121,29,157,174,215,82,103,163,68,215,117, - 116,93,80,169,59,24,142,186,40,152,157,81,245,85,219,54,15,120,199,123, - 206,229,245,47,59,150,110,101,51,146,14,112,28,41,143,163,137,86,74,126, - 179,168,46,247,7,216,243,207,247,243,165,47,53,232,15,85,71,153,40,56, - 140,27,91,12,135,125,226,88,141,159,153,158,14,94,162,68,137,18,112,26, - 19,156,58,121,106,169,173,121,200,32,108,178,231,214,144,189,119,237,69,23, - 45,66,185,192,43,174,172,208,239,88,252,195,23,190,141,38,239,1,252,188, - 206,13,58,252,252,91,126,137,171,223,242,34,64,205,108,243,125,95,41,182, - 164,139,227,72,52,51,206,107,220,50,51,73,213,129,86,115,220,94,107,156, - 111,59,123,67,146,79,30,89,189,159,158,183,28,179,109,27,75,175,99,24, - 38,173,214,28,175,184,226,66,222,254,75,191,202,75,46,217,14,28,195,178, - 212,20,133,172,33,179,76,167,131,43,216,192,81,190,117,203,45,124,231,91, - 71,104,206,206,210,239,69,184,125,229,190,44,58,56,75,146,43,81,162,196, - 52,78,91,130,3,229,156,204,48,191,47,228,211,215,124,159,32,82,39,209, - 117,235,58,252,244,155,207,229,182,155,238,226,224,194,87,241,194,219,177,43, - 131,220,84,242,134,203,47,229,234,183,94,73,171,213,194,243,52,28,71,42, - 51,9,170,51,73,146,216,121,88,50,35,55,219,118,208,210,147,113,69,27, - 231,220,74,114,123,114,40,186,238,44,75,79,213,156,153,231,45,135,195,62, - 186,45,120,245,85,235,120,231,251,94,195,166,117,17,97,16,145,205,146,147, - 50,173,171,99,51,217,180,112,128,239,238,253,58,183,222,242,56,71,79,108, - 70,198,125,194,164,79,20,101,37,11,97,90,182,160,148,92,209,233,249,108, - 35,187,64,59,83,111,37,74,156,233,56,109,127,197,153,131,50,240,79,160, - 235,53,246,220,26,242,192,3,117,188,112,134,88,118,185,234,170,11,89,56, - 20,114,228,232,215,129,135,177,43,117,188,224,0,0,155,102,175,224,93,239, - 127,59,91,183,25,116,187,221,201,182,91,82,117,206,152,86,110,211,78,73, - 195,25,147,155,174,107,37,185,61,73,20,79,142,202,193,39,176,109,139,102, - 179,73,69,51,137,61,73,205,244,185,226,53,231,243,11,239,124,53,146,78, - 65,189,249,105,43,175,86,186,204,65,145,95,135,123,191,119,43,223,187,251, - 24,66,111,224,121,30,81,164,106,185,60,207,155,232,178,82,236,192,82,162, - 68,137,179,27,167,45,193,1,121,81,247,221,247,13,248,203,143,29,6,32, - 73,134,156,119,78,157,221,207,179,184,237,166,187,232,246,212,85,127,34,150, - 213,139,228,6,222,241,238,119,113,193,197,23,49,240,250,57,185,185,174,96, - 86,27,17,218,155,208,52,111,66,185,197,73,117,194,41,169,200,77,228,249, - 182,162,61,190,196,147,67,177,134,49,115,58,86,91,170,237,150,229,8,118, - 108,51,120,213,149,175,207,67,149,0,150,21,41,146,19,118,90,20,62,131, - 114,84,218,220,179,119,200,55,111,121,128,110,63,198,245,124,60,207,205,103, - 215,201,32,158,32,185,18,37,74,148,128,211,152,224,226,56,38,73,18,172, - 202,6,174,189,230,0,251,230,7,249,115,151,255,88,141,239,125,119,137,135, - 30,189,13,47,220,11,56,4,190,42,220,222,56,251,82,94,245,234,221,116, - 187,93,146,96,152,27,74,0,100,99,59,134,105,210,172,52,214,204,185,85, - 52,115,106,166,218,116,235,162,231,118,157,219,51,129,76,249,102,197,202,25, - 52,49,228,21,47,183,120,251,187,119,231,69,222,42,92,169,32,153,73,235, - 229,236,244,214,230,198,175,236,225,142,59,66,154,205,45,0,120,158,139,231, - 121,248,201,184,195,138,218,87,121,33,82,162,68,137,211,152,224,178,19,227, - 221,247,13,248,234,141,71,149,177,36,62,194,5,187,55,1,112,223,189,119, - 166,179,221,142,131,216,11,168,209,55,191,249,59,239,101,219,142,8,219,86, - 161,170,76,193,101,189,37,1,132,93,203,109,255,89,206,45,83,110,197,253, - 151,132,246,212,145,36,113,218,100,90,75,139,151,45,28,107,150,102,179,73, - 163,174,241,154,215,95,201,207,94,253,122,212,48,212,142,154,250,45,61,4, - 21,76,203,64,178,133,44,76,121,124,249,4,183,221,244,13,14,47,118,85, - 104,50,84,132,56,29,170,44,195,148,37,74,148,128,211,152,224,146,36,65, - 74,151,107,175,57,192,163,251,26,170,223,164,190,149,231,191,48,198,31,124, - 143,249,133,239,225,133,75,144,186,38,165,108,240,19,87,189,159,43,94,181, - 155,165,229,69,124,223,207,183,101,106,202,98,174,107,117,26,245,113,163,94, - 149,119,27,43,55,32,207,185,149,120,122,32,165,34,172,113,87,26,213,71, - 50,142,37,110,208,230,156,243,76,222,244,214,215,177,115,199,78,44,107,125, - 74,106,42,76,25,4,75,83,91,235,112,251,29,243,28,123,244,65,130,40, - 33,140,163,137,80,37,144,27,78,74,148,40,81,226,89,59,147,23,195,72, - 73,18,175,186,69,225,50,97,104,114,227,13,227,215,156,183,251,48,245,70, - 147,187,238,57,129,224,33,224,96,222,68,217,169,92,192,59,223,251,90,194, - 240,40,134,214,154,216,151,102,198,216,142,131,208,20,25,22,77,37,48,89, - 10,240,47,69,110,89,141,223,218,207,157,252,179,121,42,219,61,249,107,226, - 85,251,125,186,160,235,53,116,189,150,27,79,50,101,174,137,46,142,53,75, - 236,73,126,234,141,33,175,123,245,70,162,112,29,97,16,229,51,227,4,187, - 168,88,219,81,117,113,170,157,87,111,240,16,55,222,33,136,2,29,215,243, - 137,195,8,77,168,80,229,200,213,243,109,151,101,3,37,74,148,120,214,8, - 238,137,194,127,134,57,199,103,190,224,209,110,167,38,146,100,136,237,204,224, - 15,190,199,241,227,251,128,113,13,148,148,13,126,254,45,111,165,86,31,226, - 71,147,39,247,74,165,178,202,49,9,172,106,191,165,200,77,95,53,4,244, - 153,196,90,86,236,105,114,131,177,10,58,217,243,211,219,252,65,44,222,89, - 83,235,226,223,127,9,168,225,165,164,179,222,108,174,126,235,149,204,205,181, - 10,53,112,99,20,235,226,92,63,226,145,127,94,224,200,227,17,50,81,203, - 35,47,198,48,116,52,49,156,48,155,252,160,68,95,162,68,137,231,22,158, - 245,88,220,244,9,53,35,152,56,78,248,242,231,110,97,165,27,161,139,22, - 235,103,91,236,220,101,177,127,191,133,23,220,15,116,0,15,41,27,108,156, - 121,30,87,191,245,74,0,226,160,142,110,41,67,74,70,110,134,97,160,27, - 38,166,174,90,111,214,235,245,85,166,18,149,115,251,151,251,56,166,247,149, - 41,180,113,72,47,158,32,54,96,226,185,172,70,240,7,81,119,107,31,135, - 190,230,223,103,26,113,156,164,37,4,234,241,171,174,172,240,175,255,149,133, - 83,105,164,19,6,20,130,192,72,103,201,141,137,239,187,123,191,206,254,253, - 106,134,95,24,71,184,129,10,73,122,158,135,12,98,194,168,154,238,163,52, - 155,148,40,113,54,227,89,13,81,102,170,161,168,154,178,16,219,222,7,125, - 110,190,89,205,252,138,101,23,97,44,177,50,74,56,116,100,63,138,220,124, - 16,39,16,216,188,234,138,183,178,117,155,34,47,219,78,136,181,33,154,57, - 121,114,179,12,13,221,52,114,114,43,150,3,60,147,53,110,79,38,252,87, - 84,106,25,178,251,113,52,90,117,203,158,139,194,149,31,72,221,253,32,68, - 184,22,113,62,221,234,206,52,77,226,104,4,192,76,213,228,237,255,203,107, - 168,213,103,199,70,19,97,163,137,86,218,237,68,213,196,57,21,3,232,112, - 195,223,238,231,200,227,17,163,145,160,55,28,146,196,3,60,207,197,79,50, - 195,73,153,139,43,81,226,108,199,179,174,224,138,40,182,231,186,246,154,3, - 244,220,113,227,221,153,198,118,134,199,143,177,180,242,8,112,60,237,97,8, - 27,102,118,242,211,111,121,37,3,79,205,124,11,165,129,219,17,84,3,245, - 120,186,83,73,134,204,84,242,47,241,158,166,195,127,197,191,69,114,91,139, - 204,140,104,37,191,101,200,158,203,238,103,175,47,110,51,219,95,113,95,79, - 182,158,175,248,124,241,184,159,206,122,192,226,69,133,227,56,68,225,50,47, - 126,177,195,107,94,57,61,183,204,33,12,106,144,151,12,40,60,248,232,30, - 218,237,177,97,104,228,78,188,44,15,85,150,185,184,18,37,206,94,156,54, - 4,55,125,34,250,238,253,33,115,45,165,202,146,100,200,166,115,67,86,186, - 143,35,80,227,84,84,67,229,13,108,223,113,57,141,89,19,223,109,43,245, - 230,39,84,157,6,161,189,9,195,52,209,141,241,9,179,216,169,4,158,217, - 169,0,211,10,232,100,74,46,83,96,25,81,229,199,58,69,106,197,101,211, - 203,139,36,119,42,53,247,68,198,158,181,20,94,246,56,142,135,79,41,20, - 58,141,44,63,150,200,177,33,168,81,209,120,211,91,95,183,106,93,33,236, - 188,38,206,245,7,128,207,98,59,164,215,31,215,70,78,79,22,47,81,162, - 68,137,103,149,224,178,124,210,52,78,44,121,60,124,119,204,104,180,68,146, - 12,169,86,66,230,170,90,106,46,57,86,88,179,197,43,175,120,30,155,182, - 120,152,186,69,152,140,208,173,1,82,58,121,238,205,50,52,108,219,158,8, - 77,102,174,73,120,246,250,75,158,140,40,114,242,138,187,167,188,77,147,93, - 70,114,97,248,228,222,79,70,134,39,187,77,67,8,123,226,181,79,21,174, - 171,36,151,109,91,4,65,132,110,84,9,130,128,127,253,6,139,185,185,130, - 11,86,216,72,233,96,90,197,209,133,46,208,225,177,71,254,41,87,238,174, - 167,242,118,69,162,43,187,155,148,40,113,118,227,89,37,56,33,236,60,236, - 149,17,141,231,5,180,151,230,233,246,106,184,193,8,77,171,81,173,174,231, - 208,193,0,55,24,66,26,154,204,240,178,151,190,140,78,119,5,205,140,241, - 189,152,138,161,222,146,97,156,124,150,107,177,199,228,51,141,181,242,106,211, - 143,215,82,111,25,98,127,101,226,118,42,196,209,8,211,12,215,52,167,172, - 117,191,184,223,147,221,95,235,181,69,178,251,97,145,153,75,60,47,192,182, - 173,188,45,91,163,174,177,115,235,238,130,209,164,2,194,78,187,156,100,189, - 41,85,168,121,225,224,65,124,183,77,20,169,130,239,56,140,240,83,243,77, - 54,51,174,68,137,18,103,47,158,181,137,222,202,68,224,228,243,222,194,48, - 68,38,29,44,107,29,95,252,202,38,98,249,48,82,182,144,114,200,236,236, - 38,218,237,111,35,56,0,233,137,79,202,6,47,188,64,141,194,169,216,58, - 113,80,167,106,10,252,168,143,94,81,196,149,229,222,78,230,154,124,186,80, - 84,99,107,169,155,40,84,196,164,27,213,220,60,145,45,43,194,136,86,32, - 238,78,18,89,212,133,36,37,117,109,134,56,234,166,43,183,208,43,202,106, - 111,0,145,161,238,199,209,8,221,168,230,199,34,132,157,19,82,118,108,197, - 144,232,147,37,182,108,59,79,151,203,50,27,96,107,154,33,113,28,34,132, - 77,173,86,227,196,146,199,79,253,148,207,125,15,180,144,210,65,242,72,90, - 23,119,14,153,115,22,42,128,207,183,255,57,224,61,163,173,140,106,22,118, - 252,56,210,78,136,252,109,68,122,140,111,132,224,133,105,174,245,185,57,245, - 187,68,137,18,167,198,179,170,224,138,86,249,76,77,5,65,196,109,183,30, - 156,88,175,86,119,25,12,125,138,181,111,0,23,93,152,230,223,188,24,33, - 92,130,212,53,215,168,142,79,102,113,82,205,239,23,67,147,79,23,214,170, - 85,131,73,247,99,113,89,182,238,52,50,114,203,17,117,39,201,13,212,253, - 194,227,216,95,33,74,149,202,116,94,46,12,77,194,208,92,21,118,44,154, - 87,214,122,93,49,228,121,50,194,123,58,112,178,146,140,117,115,22,63,249, - 179,87,229,143,5,21,69,208,194,70,96,227,84,234,40,21,231,210,27,60, - 196,254,253,135,16,137,250,220,66,239,228,117,111,165,217,164,68,137,179,15, - 167,133,201,36,12,195,92,25,140,34,201,222,187,14,146,36,42,212,164,105, - 42,116,53,28,28,206,215,151,120,56,149,245,156,115,254,78,182,110,51,8, - 3,63,111,199,5,160,27,202,92,98,219,54,181,170,92,101,44,121,186,174, - 230,167,237,253,107,145,218,169,28,144,211,207,71,65,172,212,91,70,108,73, - 135,216,107,35,147,222,228,45,58,43,21,212,226,0,0,32,0,73,68,65, - 84,4,81,151,97,144,32,100,151,200,85,175,31,250,73,190,15,77,116,137, - 227,48,207,201,77,239,55,219,119,241,24,166,31,79,191,46,203,153,62,157, - 229,2,69,133,169,126,7,26,151,188,160,194,174,205,27,242,231,165,116,112, - 108,53,55,206,245,235,249,107,93,127,192,227,135,35,226,244,125,247,252,62, - 196,170,233,246,244,188,184,178,253,90,137,18,103,31,158,181,16,37,140,157, - 116,69,194,233,116,70,244,131,0,33,116,164,180,153,107,25,120,110,27,47, - 136,153,84,112,179,188,232,146,29,184,131,30,166,85,193,170,106,4,253,24, - 167,162,12,10,150,49,121,66,19,150,254,180,150,6,100,133,216,192,42,194, - 90,11,39,91,174,54,160,20,136,144,99,213,38,147,30,210,95,65,0,210, - 7,153,180,17,154,42,155,16,149,57,72,58,212,52,24,6,13,106,86,151, - 254,160,74,171,222,161,235,207,80,75,67,180,166,145,133,33,215,56,142,162, - 90,156,134,222,154,88,55,50,230,242,208,103,22,174,204,62,131,31,54,100, - 89,172,129,44,222,247,188,0,211,12,185,228,165,187,56,248,197,187,242,105, - 16,174,103,164,29,77,178,252,159,90,222,62,118,16,216,132,166,55,0,242, - 254,148,89,159,209,12,170,1,179,40,7,121,150,40,113,22,225,89,35,184, - 44,7,83,68,24,85,233,44,75,72,206,1,142,35,132,135,48,66,150,86, - 6,228,197,221,41,154,85,53,85,32,76,166,84,137,97,16,71,33,24,149, - 116,206,219,51,123,66,91,147,220,78,69,30,160,8,100,106,157,162,114,147, - 73,143,88,44,34,146,126,254,124,48,90,196,74,69,106,34,34,244,68,13, - 159,169,105,0,138,144,250,3,15,28,165,228,50,146,59,217,177,69,65,172, - 8,117,77,172,160,87,207,157,120,109,145,228,224,233,169,133,203,136,45,142, - 147,156,232,76,51,36,142,70,156,187,91,87,23,16,98,22,178,73,223,162, - 133,101,52,240,194,14,160,142,125,165,119,84,109,43,238,231,36,23,135,17, - 216,217,148,1,168,213,50,162,43,11,191,75,148,56,155,240,172,42,184,12, - 217,137,174,86,171,113,239,3,189,147,172,149,85,242,170,147,221,182,237,187, - 208,56,72,24,87,169,154,51,68,97,136,110,141,144,73,11,195,138,211,194, - 110,185,170,223,228,211,133,162,81,99,45,98,203,141,34,5,83,8,81,87, - 253,101,5,189,50,183,166,153,36,87,110,214,126,96,3,164,19,200,163,197, - 4,54,46,98,57,22,208,32,22,139,57,201,13,131,6,240,56,194,216,134, - 230,30,163,81,183,233,250,51,249,166,115,178,75,143,47,78,149,97,126,108, - 5,19,75,118,172,241,232,64,110,98,201,20,29,128,231,129,174,199,185,11, - 53,27,102,250,195,32,8,98,44,171,208,128,89,211,73,18,27,195,180,185, - 228,114,149,123,203,40,201,177,170,120,65,27,55,52,210,169,114,234,247,112, - 104,193,103,56,168,33,132,75,179,89,39,136,98,32,154,216,79,28,135,232, - 186,245,67,29,99,137,18,37,206,92,156,22,241,154,108,126,87,146,36,12, - 150,246,179,210,141,144,178,88,119,117,124,213,107,206,221,117,46,115,219,198, - 121,55,211,59,158,231,225,44,67,67,152,107,27,14,158,49,55,93,129,60, - 114,53,86,200,165,17,164,198,153,116,249,42,114,75,33,179,229,174,9,182, - 154,148,16,184,1,206,253,251,20,201,137,25,68,178,95,237,75,44,210,233, - 248,212,180,177,210,3,56,222,29,135,13,147,208,200,13,44,121,142,47,219, - 103,210,65,70,135,242,220,222,244,177,230,38,150,180,238,46,127,171,105,94, - 43,223,71,18,255,80,141,141,173,41,211,79,24,134,196,113,66,28,39,188, - 232,133,26,21,43,129,116,178,128,27,20,149,122,22,170,118,121,252,240,65, - 250,237,48,111,205,22,167,185,183,181,199,232,148,205,151,75,148,56,155,112, - 26,16,220,164,1,224,190,59,15,174,90,99,52,180,200,231,190,225,81,177, - 5,173,214,57,249,88,156,48,25,49,16,51,249,212,128,12,217,56,156,167, - 91,189,61,41,76,57,30,115,2,153,70,65,69,201,68,169,215,196,142,128, - 14,184,195,124,181,145,49,159,110,168,195,176,208,193,3,160,179,162,46,0, - 6,221,113,191,42,111,160,72,79,51,211,161,160,197,186,176,130,90,4,69, - 170,177,88,28,19,29,48,12,146,177,137,37,136,233,15,60,134,126,66,16, - 171,125,79,147,211,15,14,129,166,169,48,164,231,5,128,186,248,200,110,59, - 182,101,193,5,21,150,118,236,168,48,157,125,92,11,183,216,14,209,24,255, - 102,2,191,253,20,143,171,68,137,18,207,21,60,107,33,202,44,217,159,213, - 193,5,254,9,132,54,195,114,111,23,73,178,132,16,30,234,228,86,37,150, - 217,73,171,131,192,38,240,90,212,154,143,99,219,235,48,189,17,161,118,14, - 73,90,0,222,106,164,39,94,109,3,134,161,174,216,45,75,25,24,134,195, - 33,186,174,33,165,151,23,22,159,12,107,25,40,138,198,146,12,171,106,215, - 166,242,104,0,186,220,56,17,82,148,73,15,145,52,39,182,19,123,109,132, - 236,42,51,201,8,96,6,233,236,131,81,135,104,113,51,213,232,28,122,77, - 15,240,168,53,234,48,234,211,117,171,52,215,45,48,232,238,192,237,6,212, - 90,43,192,54,170,122,74,140,41,65,70,186,82,63,66,118,199,234,204,107, - 35,43,203,136,81,31,161,205,34,70,125,226,84,16,235,9,212,180,133,52, - 100,57,14,79,182,244,78,90,111,55,194,117,85,177,118,28,155,232,58,128, - 76,243,114,202,200,145,125,175,217,231,6,76,24,84,130,64,133,57,53,77, - 117,51,81,235,37,233,107,99,116,91,176,121,110,19,243,199,34,16,45,92, - 207,199,174,116,241,252,153,137,76,154,93,89,225,120,219,98,139,104,50,112, - 31,103,67,173,133,129,75,28,26,185,31,197,243,188,66,30,174,68,137,18, - 103,11,158,53,5,151,245,54,4,117,2,212,141,42,186,174,211,107,11,132, - 232,166,33,202,10,225,72,166,205,118,199,176,43,77,172,202,22,6,163,62, - 3,49,131,23,183,49,42,67,102,235,26,43,221,46,70,85,35,114,221,220, - 42,238,186,30,113,60,164,86,171,161,105,250,19,146,219,147,58,254,172,150, - 108,218,80,82,80,70,25,178,176,99,166,146,166,213,210,42,200,14,211,29, - 91,0,234,90,27,233,44,43,226,74,115,115,189,229,73,179,199,160,235,78, - 40,185,12,185,67,179,248,184,128,209,252,49,196,104,28,234,204,21,103,212, - 101,84,80,69,67,63,97,232,39,152,198,136,172,43,214,56,244,55,86,201, - 69,183,98,230,144,84,131,79,213,125,213,189,68,79,95,63,76,47,40,50, - 98,84,203,103,214,157,140,148,198,78,74,207,87,159,97,221,110,80,49,52, - 58,110,72,196,164,129,169,162,153,101,219,174,18,37,206,66,60,123,4,87, - 24,251,162,105,58,66,56,4,65,68,167,231,231,174,57,128,208,140,48,173, - 33,234,164,86,201,151,55,107,228,33,202,122,170,218,66,47,161,81,175,17, - 246,187,52,106,35,44,71,96,219,54,150,101,17,134,230,15,52,237,122,181, - 122,27,191,110,186,158,172,168,222,50,147,136,114,65,238,39,92,218,135,140, - 15,40,165,52,234,231,170,46,9,98,146,32,38,246,218,196,94,155,238,64, - 45,207,136,171,8,231,254,125,234,152,142,23,66,147,98,102,98,29,67,30, - 194,237,6,120,225,9,106,53,117,60,69,178,91,58,145,150,52,164,251,3, - 20,161,201,14,50,25,19,152,24,245,145,254,10,73,16,211,233,248,19,251, - 232,15,198,223,75,86,115,167,58,145,200,244,187,148,19,196,150,125,222,197, - 91,113,121,182,110,246,91,80,51,238,148,18,108,84,52,164,182,158,226,119, - 174,144,145,155,139,93,49,201,66,149,221,110,151,209,72,73,208,96,106,232, - 173,159,148,67,80,75,148,56,27,241,172,17,156,110,84,39,122,26,198,113, - 140,149,53,212,21,227,176,88,53,207,171,121,216,149,38,96,227,249,26,189, - 33,232,21,141,48,86,249,155,36,177,25,164,230,57,179,117,62,85,125,152, - 231,161,50,67,68,54,138,39,240,79,60,233,227,28,159,152,229,106,231,100, - 22,154,44,24,74,164,191,146,134,25,213,190,163,197,132,209,65,79,25,70, - 100,39,39,186,238,96,81,133,8,83,37,53,83,171,176,116,98,28,138,5, - 96,164,147,244,36,250,210,244,4,130,14,216,39,112,228,188,58,198,72,253, - 237,118,143,83,21,49,110,55,64,70,143,83,171,173,80,171,173,48,242,219, - 172,159,245,243,28,96,22,10,205,201,84,118,20,137,202,78,78,120,178,178, - 172,142,100,229,120,190,61,0,205,29,55,187,14,226,65,174,226,194,208,36, - 142,147,188,99,72,146,36,19,3,71,139,147,198,165,116,201,44,251,186,94, - 195,48,231,38,10,190,85,233,64,49,16,169,136,86,104,217,239,194,6,252, - 84,189,141,213,170,109,39,216,142,67,20,164,195,91,197,164,146,45,231,195, - 149,40,113,118,225,89,35,56,85,7,55,14,105,201,164,67,16,68,233,115, - 235,210,14,38,147,10,194,243,179,43,113,159,102,13,146,96,136,169,91,12, - 7,3,53,26,71,171,115,231,119,108,58,203,38,129,126,33,205,214,22,124, - 105,96,219,22,150,165,211,238,29,39,73,98,12,115,238,73,29,163,10,161, - 74,164,116,215,46,11,152,88,121,42,52,105,159,152,48,137,40,116,214,84, - 104,25,225,52,156,69,50,114,147,178,3,213,120,82,181,101,168,198,12,251, - 131,180,100,96,140,117,77,31,67,30,154,88,230,118,3,220,110,144,119,69, - 153,36,55,181,175,192,13,198,199,231,132,32,59,104,158,65,195,86,239,215, - 105,169,253,100,106,48,112,199,68,97,26,170,193,51,168,118,107,89,216,81, - 211,180,124,74,186,166,105,196,241,112,124,75,63,199,36,73,82,131,137,50, - 156,4,65,140,235,170,110,41,150,101,32,146,37,40,54,93,158,64,133,233, - 223,135,239,251,68,81,132,208,60,194,56,98,228,150,163,115,74,148,56,155, - 241,44,186,40,213,73,50,8,162,52,52,165,80,223,48,233,123,217,190,73, - 162,145,41,155,116,196,74,197,164,55,84,195,48,29,71,82,169,84,136,194, - 16,127,160,113,104,255,94,62,243,169,175,243,23,127,182,200,77,183,40,5, - 17,134,33,81,184,66,179,86,71,211,116,58,163,201,58,169,181,144,29,211, - 116,183,146,98,205,219,116,113,118,166,222,144,243,72,198,68,227,220,191,111, - 146,236,236,19,180,156,17,189,229,152,206,208,167,51,156,60,81,159,10,134, - 214,133,145,34,145,97,212,198,48,30,0,198,42,14,84,184,50,236,60,70, - 216,121,140,245,173,227,172,111,29,207,195,146,99,116,166,254,78,61,59,244, - 115,117,25,118,30,155,120,46,137,199,164,27,70,213,92,197,5,65,76,28, - 199,19,125,31,139,173,189,116,189,166,26,108,203,22,113,156,112,195,151,6, - 188,243,223,222,200,199,62,246,61,78,44,121,216,182,133,227,140,27,58,79, - 135,40,171,85,109,106,108,206,12,78,101,59,0,115,27,46,165,217,220,140, - 235,119,177,57,245,247,91,134,41,75,148,56,59,240,44,22,122,11,164,116, - 177,44,27,48,232,246,117,110,248,154,199,241,3,38,73,162,72,228,69,151, - 238,224,249,23,175,231,158,251,111,37,43,19,176,43,227,67,214,43,26,189, - 65,72,189,106,19,38,35,182,109,223,205,79,254,236,85,220,251,64,194,175, - 252,226,151,113,156,19,92,253,166,29,92,253,214,43,249,137,127,53,131,174, - 155,120,94,192,92,189,146,135,29,139,185,182,162,115,82,17,218,26,189,27, - 11,245,110,211,118,123,96,149,66,115,252,239,3,26,82,118,16,98,6,69, - 40,53,144,29,90,78,214,161,100,35,193,104,113,188,137,108,27,110,31,237, - 72,7,152,67,95,138,233,157,123,140,22,235,65,116,168,234,224,38,32,101, - 139,100,120,4,173,182,149,36,154,71,51,206,153,216,127,150,71,107,216,107, - 132,38,1,152,33,90,244,200,2,193,195,254,128,90,163,78,179,166,211,89, - 246,209,210,143,123,185,19,99,23,60,31,129,43,177,28,129,12,98,132,165, - 99,154,227,190,151,89,1,120,118,95,253,85,198,158,229,149,128,135,247,250, - 252,217,71,111,229,174,123,78,112,112,225,81,182,159,123,158,250,76,211,139, - 138,36,81,249,88,165,224,198,88,63,215,2,118,179,180,188,23,53,225,123, - 6,215,159,225,246,61,251,209,141,29,236,218,41,216,182,99,29,131,40,162, - 65,137,18,37,206,118,60,235,243,224,64,112,239,222,17,31,252,181,35,252, - 214,175,126,149,67,7,103,209,180,26,154,86,227,5,23,175,231,178,151,206, - 82,84,25,158,175,231,206,57,128,102,221,68,211,60,42,134,70,183,211,230, - 193,187,31,230,69,47,212,120,201,203,94,65,187,109,115,205,117,247,243,254, - 247,126,152,223,248,141,135,241,188,0,93,23,105,14,78,41,200,48,12,11, - 83,171,147,147,54,19,62,101,47,73,24,171,55,10,4,229,212,224,251,227, - 143,88,202,14,195,72,237,119,24,181,115,82,107,47,77,146,98,210,43,228, - 138,218,107,171,13,183,176,216,106,141,213,89,18,205,79,168,185,137,99,76, - 214,170,17,91,173,224,134,253,193,42,119,102,85,168,199,131,174,59,46,67, - 0,66,93,169,106,111,106,216,128,174,235,57,185,101,61,38,239,190,111,192, - 13,95,11,248,179,143,222,202,109,119,84,56,116,120,11,130,93,106,125,91, - 76,52,118,30,69,171,243,101,182,51,147,146,156,131,34,184,45,216,214,118, - 62,255,197,199,248,195,63,248,20,215,127,238,86,58,109,255,148,179,0,75, - 148,40,113,246,224,25,35,184,98,216,49,142,135,4,254,137,130,1,33,38, - 10,151,89,94,9,249,79,191,190,196,207,255,204,1,62,251,217,227,172,180, - 183,19,202,5,116,209,162,233,180,249,185,183,173,231,238,187,218,216,166,1, - 120,88,246,34,170,7,225,102,181,97,217,195,143,85,119,121,211,220,66,156, - 12,248,200,71,19,174,253,212,136,119,255,98,139,138,149,32,233,112,124,121, - 129,189,223,221,207,145,165,33,113,44,9,163,106,90,58,160,88,34,8,84, - 88,45,203,31,77,35,55,148,140,14,168,78,37,195,3,170,158,44,233,144, - 184,243,169,237,95,133,38,65,41,53,67,235,170,48,229,5,41,19,125,191, - 15,213,24,180,67,224,14,169,25,171,11,207,45,103,68,220,109,163,53,5, - 163,52,60,40,122,235,209,89,66,103,137,154,177,5,128,81,243,56,78,250, - 205,9,161,214,51,140,7,112,228,60,45,39,205,111,165,68,215,172,28,165, - 89,57,186,202,165,41,101,71,149,28,160,66,168,135,55,171,227,169,54,86, - 168,53,234,180,236,35,19,199,54,146,58,94,120,2,223,158,99,20,215,24, - 166,23,25,73,168,200,164,216,200,58,251,92,149,26,86,23,20,15,62,18, - 176,231,214,144,206,98,76,179,33,168,27,1,200,127,70,178,71,189,198,147, - 36,178,69,34,91,68,225,114,193,69,57,14,223,138,100,137,231,93,180,17, - 167,114,57,146,115,145,216,184,193,16,129,205,226,114,157,107,62,59,228,67, - 255,233,78,110,251,230,110,130,40,33,242,218,36,241,0,207,243,144,129,234, - 115,25,133,203,107,126,199,37,74,148,120,238,225,25,35,184,44,36,21,199, - 67,132,176,177,42,27,38,122,14,126,249,107,21,126,241,125,15,243,153,235, - 190,203,252,193,180,227,136,104,161,139,22,26,77,54,108,218,193,158,91,61, - 30,217,123,3,94,24,1,30,129,167,242,49,78,26,166,76,66,61,31,149, - 98,88,49,81,24,242,232,247,15,240,141,91,230,1,216,181,243,28,108,75, - 39,11,111,70,174,59,81,15,165,218,55,201,194,227,201,241,55,176,134,114, - 43,204,104,147,73,143,196,142,148,99,50,109,171,37,101,103,172,224,70,250, - 132,130,203,114,103,153,146,11,77,117,17,80,171,42,147,71,224,86,209,154, - 147,196,167,179,68,204,250,137,101,77,44,168,198,56,122,234,138,20,227,154, - 182,96,180,152,147,28,144,231,248,138,203,214,82,109,219,143,73,70,177,90, - 62,236,15,232,122,91,129,113,110,47,83,112,69,20,205,38,211,117,102,153, - 97,8,200,27,52,127,241,11,135,184,251,174,54,175,124,211,149,180,54,108, - 161,98,133,76,207,248,51,205,144,161,159,224,15,92,60,119,242,56,165,182, - 158,115,207,219,202,11,158,231,162,177,25,141,25,4,106,78,28,216,72,58, - 220,181,247,49,126,247,183,254,43,31,251,147,3,12,163,231,147,72,135,106, - 195,192,79,66,86,218,58,97,84,165,108,186,92,162,196,217,129,103,140,224, - 146,100,108,25,207,66,84,0,43,3,159,107,62,249,24,191,255,123,15,115, - 253,13,75,44,47,207,172,126,45,61,54,239,152,225,171,95,186,151,239,238, - 61,12,180,81,87,242,217,137,76,169,135,48,14,16,169,21,60,10,116,42, - 149,89,92,207,224,190,189,11,124,249,115,183,176,180,210,197,11,14,3,105, - 43,171,81,147,145,171,227,121,30,65,60,96,56,236,167,125,21,67,130,32, - 64,211,130,147,54,81,158,152,211,70,218,9,196,95,25,147,155,59,204,157, - 143,84,83,50,168,198,104,53,69,124,218,145,181,149,67,70,114,161,57,36, - 52,135,184,137,10,63,86,53,137,232,9,162,166,34,57,64,145,165,222,165, - 71,160,204,38,128,44,144,91,182,173,34,201,181,156,81,126,95,133,68,215, - 54,149,0,84,6,18,119,160,99,134,171,11,225,59,125,69,68,21,111,5, - 55,74,112,12,13,203,17,121,43,176,12,217,236,53,171,96,6,17,194,102, - 225,80,194,119,190,251,48,119,223,249,24,157,197,152,238,137,163,120,193,50, - 224,209,91,74,123,107,198,170,251,127,224,74,134,193,8,219,153,33,51,153, - 72,105,243,248,209,101,118,236,52,185,240,71,119,0,231,32,153,65,48,254, - 253,8,102,208,152,193,11,98,62,121,221,183,248,165,119,253,53,119,221,221, - 32,112,37,154,25,225,232,1,142,227,16,4,241,211,62,215,174,68,137,18, - 167,31,158,49,130,11,130,8,93,215,243,177,56,182,109,145,36,9,255,112, - 189,207,31,253,223,251,121,224,129,58,166,190,21,93,180,136,101,55,255,27, - 198,71,56,103,87,76,191,125,148,131,135,230,213,107,77,131,98,189,83,86, - 46,80,177,117,42,149,10,189,193,88,61,180,170,14,80,225,27,183,135,12, - 7,109,212,9,221,37,9,231,169,87,123,104,98,72,224,183,115,245,145,133, - 175,100,16,79,228,128,78,229,150,140,189,54,196,243,42,44,57,69,110,134, - 214,85,228,163,143,137,71,11,142,231,185,180,102,67,157,84,197,20,49,69, - 125,129,61,236,224,104,228,202,204,144,109,140,130,127,37,35,203,38,22,61, - 253,4,186,222,131,153,99,72,209,69,136,46,85,189,139,30,60,78,104,14, - 9,70,139,56,114,158,96,180,168,136,45,85,149,195,72,170,99,21,234,113, - 55,77,203,233,75,227,146,132,208,28,146,12,199,33,202,229,222,216,201,232, - 133,227,26,194,192,149,36,161,145,247,167,204,84,92,16,100,29,106,198,161, - 202,250,76,130,235,25,44,156,240,184,238,127,220,65,207,95,64,93,184,120, - 204,110,72,232,123,110,126,241,177,10,210,67,211,106,44,45,141,184,251,174, - 54,175,123,237,143,243,162,139,213,108,60,187,178,1,153,147,156,135,196,67, - 96,35,241,184,123,239,18,255,229,119,190,197,183,191,83,197,27,244,177,170, - 62,163,110,118,172,165,147,178,68,137,231,58,158,49,130,203,106,163,50,132, - 97,200,53,159,29,240,177,63,122,152,125,251,183,231,203,51,114,3,72,146, - 33,27,54,132,108,58,55,228,240,227,7,113,125,85,44,45,52,53,11,78, - 57,40,39,235,161,66,105,208,172,171,208,103,63,208,8,34,129,148,54,209, - 72,133,250,156,202,88,97,12,70,205,252,4,154,229,102,78,137,120,178,235, - 127,94,10,80,89,78,139,162,231,199,228,38,58,185,170,2,208,91,17,134, - 214,101,224,15,17,189,245,12,170,46,102,111,126,98,243,69,146,51,26,18, - 191,62,25,158,44,154,29,51,213,154,161,137,133,168,197,42,92,9,56,26, - 136,126,23,87,31,82,213,187,185,34,204,110,195,168,77,104,170,231,38,182, - 115,98,65,189,213,245,58,98,115,130,83,87,228,148,133,77,1,180,164,131, - 85,87,170,206,54,213,164,109,55,74,38,20,92,54,92,21,198,141,152,139, - 93,77,6,29,13,199,170,34,93,147,71,246,245,89,94,57,72,49,60,25, - 185,46,129,191,140,231,121,68,81,156,231,248,38,81,225,238,59,31,99,93, - 3,94,253,227,47,69,224,225,250,125,4,149,116,24,170,106,198,45,57,128, - 99,213,144,120,220,115,255,173,92,251,87,159,228,232,137,205,44,47,119,137, - 131,3,68,174,71,28,203,60,247,90,162,68,137,231,38,158,49,130,27,119, - 165,80,187,184,241,43,46,31,251,163,135,121,224,1,101,10,137,101,151,184, - 208,15,49,150,93,94,116,105,147,171,174,186,144,185,170,150,170,175,99,192, - 81,92,95,229,224,60,127,0,248,56,149,117,0,248,94,76,18,76,23,83, - 167,208,170,184,126,63,125,45,244,71,80,49,230,213,24,21,47,198,141,18, - 252,120,136,231,121,12,131,81,238,6,52,162,149,137,241,50,192,234,46,37, - 195,148,20,186,237,177,114,171,165,138,64,87,234,173,221,157,84,8,245,145, - 131,236,64,52,212,112,147,177,74,179,135,29,236,97,135,100,184,250,132,222, - 29,6,171,150,161,247,208,173,33,61,198,207,53,103,86,114,69,198,161,35, - 233,231,223,157,32,80,96,146,220,228,12,184,234,2,66,95,138,209,151,98, - 228,177,181,127,14,179,51,14,97,111,172,232,42,158,34,125,111,208,207,149, - 176,202,109,41,4,65,140,148,110,193,157,58,84,10,46,253,60,69,197,73, - 115,163,10,237,19,106,191,195,244,162,100,56,18,200,48,59,22,31,132,77, - 146,12,145,210,230,145,239,63,202,158,91,14,242,218,43,109,94,116,241,139, - 243,109,8,42,152,86,29,145,146,166,154,0,127,20,56,160,92,150,31,190, - 137,163,39,54,51,138,107,132,186,155,135,166,227,88,18,134,225,84,237,94, - 169,238,74,148,120,46,224,25,44,19,16,128,58,121,252,227,13,61,62,250, - 199,7,38,200,13,148,169,100,174,101,208,106,14,185,244,98,157,183,92,189, - 153,203,94,58,203,161,131,1,158,127,2,21,94,60,134,186,210,87,97,39, - 0,215,87,249,157,138,163,194,84,126,148,32,52,245,156,101,72,132,240,48, - 171,2,65,5,149,183,155,97,215,46,114,103,93,207,13,137,70,9,50,212, - 72,252,1,81,20,227,13,250,121,127,197,252,29,100,13,138,211,46,32,137, - 29,21,100,85,7,237,248,0,209,47,144,70,129,64,156,245,125,208,187,212, - 43,74,249,24,61,69,88,70,45,201,29,144,64,174,218,244,122,106,124,16, - 147,57,178,81,218,110,204,29,136,137,146,129,89,107,181,242,208,219,171,203, - 0,50,82,155,38,187,108,63,195,232,232,170,215,100,136,70,74,149,181,59, - 133,240,112,56,217,230,204,114,198,170,179,216,213,68,8,123,194,172,51,219, - 52,0,63,39,57,5,117,17,228,59,49,196,138,224,61,207,29,223,119,59, - 20,21,187,154,48,49,203,141,55,192,190,125,49,207,191,244,34,156,202,184, - 226,45,12,6,169,146,219,82,32,208,89,4,30,127,119,253,205,252,95,191, - 247,215,28,61,177,153,19,199,99,60,207,195,243,188,85,179,237,96,82,121, - 150,40,81,226,204,197,51,246,159,172,250,13,194,222,7,125,62,249,137,253, - 220,246,79,234,100,25,79,117,177,7,184,248,133,22,239,120,207,5,92,122, - 249,12,119,223,213,230,145,71,238,69,145,154,75,49,140,37,68,159,105,215, - 29,64,205,80,39,235,170,209,131,100,4,248,132,131,73,101,119,240,224,120, - 24,38,64,24,71,196,161,82,119,89,207,66,205,61,70,127,224,209,31,120, - 147,243,211,178,253,231,221,246,11,78,201,147,192,241,109,228,80,71,36,43, - 99,147,8,74,193,21,73,172,50,80,161,201,202,64,82,25,172,118,247,85, - 235,234,4,238,212,37,26,29,244,101,192,73,79,250,122,170,250,226,113,239, - 78,177,160,222,99,102,62,113,19,69,110,211,219,206,20,103,182,254,196,251, - 156,38,195,83,32,83,112,50,136,9,163,106,94,236,61,61,86,104,225,80, - 2,210,195,177,116,76,63,72,21,150,66,197,213,233,246,83,181,23,70,132, - 113,84,8,31,23,154,111,203,46,136,22,251,230,7,220,177,231,27,108,216, - 88,103,243,220,38,36,126,218,144,27,52,54,35,152,193,11,14,35,153,5, - 102,144,216,8,142,242,133,47,222,207,159,255,201,205,24,142,147,183,240,202, - 72,14,178,154,200,164,12,91,150,40,241,28,193,15,77,112,170,9,113,60, - 81,239,166,150,171,233,206,113,52,98,121,37,228,35,127,188,200,23,191,164, - 8,164,152,111,211,69,139,115,118,197,236,216,118,130,159,254,89,201,79,255, - 172,122,253,35,123,111,192,245,251,72,142,49,118,252,249,64,5,228,134,244, - 177,114,69,250,110,27,41,29,130,68,89,218,221,32,59,137,87,64,171,166, - 235,169,198,188,141,42,68,81,68,132,131,244,134,234,22,247,209,162,54,145, - 23,83,213,135,56,250,40,191,21,213,155,76,122,16,207,167,165,0,233,49, - 137,14,250,232,4,122,187,141,161,117,209,157,113,8,47,92,191,140,20,62, - 218,74,66,63,76,93,128,244,16,11,33,162,39,48,154,105,65,184,232,226, - 53,122,57,201,121,141,113,152,210,104,182,105,44,90,227,215,50,158,31,231, - 153,93,68,5,122,177,141,209,24,130,181,128,81,75,232,14,3,26,166,143, - 232,119,105,152,93,28,61,53,173,104,76,150,31,136,14,61,253,4,200,25, - 170,209,57,0,244,55,47,228,79,47,186,163,220,145,185,22,50,21,231,70, - 9,118,250,93,132,186,139,105,140,208,68,23,211,12,73,18,53,193,33,83, - 67,245,153,4,132,141,27,140,48,170,50,117,63,118,40,214,185,13,71,75, - 132,113,68,16,37,133,137,0,21,16,182,82,111,194,70,74,27,41,143,240, - 192,67,85,78,44,14,152,89,103,34,240,8,2,3,242,60,92,7,216,146, - 134,43,59,8,218,233,115,109,110,252,202,30,254,225,239,32,24,118,89,94, - 241,73,100,13,25,196,12,220,149,212,73,171,161,105,193,15,52,121,162,68, - 137,18,167,39,126,104,130,203,78,92,66,216,249,21,111,28,15,145,210,67, - 211,52,12,115,29,215,126,218,229,107,95,86,246,248,140,216,50,5,119,206, - 174,152,205,59,102,120,245,143,191,148,43,94,115,62,13,219,97,207,45,7, - 217,251,136,151,231,81,158,252,177,168,245,27,213,201,249,97,166,85,79,239, - 77,118,149,247,210,14,101,161,151,48,8,117,180,168,157,55,18,30,249,237, - 85,228,150,141,184,201,144,21,72,3,68,254,58,244,185,241,99,189,21,97, - 7,2,28,117,114,172,143,148,139,84,208,204,239,103,168,106,138,144,179,48, - 101,246,56,199,73,186,152,100,152,8,83,166,161,200,140,80,227,88,17,98, - 86,48,158,119,62,73,213,99,19,43,15,175,198,235,245,156,232,70,253,57, - 54,58,227,124,26,0,107,116,64,169,120,43,172,171,140,149,47,140,71,232, - 100,78,212,162,209,104,208,201,126,106,211,77,147,211,195,74,191,67,233,141, - 137,181,104,16,154,110,172,188,180,210,101,208,239,33,181,245,204,205,169,223, - 150,100,60,157,66,153,77,236,212,129,59,198,241,229,5,174,251,228,239,115, - 108,57,98,118,118,142,36,238,208,29,245,113,44,21,238,246,188,32,119,254, - 150,40,81,226,204,198,83,82,112,64,58,200,114,117,7,144,123,247,142,248, - 135,47,29,96,185,115,60,95,150,145,220,92,203,96,219,214,132,203,94,92, - 225,157,239,174,242,162,75,170,252,211,29,1,183,221,188,176,106,184,233,106, - 216,171,150,36,137,90,214,31,133,169,114,131,32,18,132,65,214,20,88,157, - 176,146,184,143,244,134,121,51,94,211,158,124,251,249,96,207,2,185,37,65, - 156,207,77,195,29,42,114,27,233,24,181,4,153,158,180,227,174,1,182,143, - 110,141,79,206,66,166,38,155,66,221,153,70,39,207,147,141,18,193,40,17, - 84,69,139,196,29,144,184,107,76,13,88,3,178,151,164,4,42,17,21,144, - 194,71,175,169,247,211,12,12,154,35,69,4,70,179,173,182,175,73,16,29, - 21,178,20,29,70,201,234,14,42,250,82,204,200,152,87,199,45,186,196,3, - 181,142,95,40,114,215,146,201,144,172,23,158,152,24,172,90,28,163,3,227, - 209,52,74,9,141,167,30,56,214,218,221,98,64,133,144,67,195,193,140,212, - 118,179,92,235,90,164,184,188,28,112,232,160,50,218,212,107,21,156,74,3, - 203,90,221,100,217,13,179,109,120,57,217,221,179,247,48,127,241,103,143,209, - 247,92,150,150,150,48,12,157,225,176,207,96,208,71,19,221,180,1,120,92, - 230,226,74,148,56,195,241,148,20,156,166,233,133,33,150,170,142,76,8,135, - 19,75,30,31,249,227,69,238,249,238,97,132,88,151,215,184,129,34,183,217, - 89,155,31,121,137,198,107,175,180,185,228,5,21,30,219,119,140,235,63,119, - 43,15,127,255,176,218,22,199,24,171,174,233,78,251,171,213,221,90,10,206, - 50,100,65,193,77,162,231,247,209,162,14,241,96,5,131,99,104,145,186,213, - 180,62,53,22,198,166,146,32,86,106,174,208,222,138,145,62,145,67,211,71, - 99,211,133,168,128,72,10,173,165,228,164,242,17,61,77,57,35,227,22,85, - 77,82,213,36,35,217,69,84,99,68,117,156,147,210,211,220,154,182,70,81, - 182,104,106,120,150,68,122,1,82,76,125,54,153,121,39,37,209,172,230,174, - 72,106,211,42,81,11,212,5,72,81,93,102,134,23,71,215,24,244,134,180, - 154,1,179,51,14,157,238,17,154,28,160,201,1,0,106,181,149,124,78,28, - 64,75,239,228,245,131,154,232,230,74,78,230,228,168,136,42,242,106,83,83, - 1,210,139,19,198,121,210,40,208,167,20,220,20,201,9,85,248,45,146,37, - 180,104,35,158,31,16,6,181,52,223,102,23,186,156,120,168,11,28,27,47, - 52,114,146,251,228,117,95,228,31,63,247,45,76,107,142,36,30,208,29,46, - 99,24,102,58,233,96,220,82,174,68,137,18,103,46,158,182,75,84,41,61, - 116,163,74,16,68,121,104,210,237,109,152,32,55,128,217,89,155,203,127,172, - 198,143,92,234,240,138,151,91,232,186,206,87,190,188,200,158,91,192,15,52, - 160,91,8,81,254,96,161,202,40,138,82,147,201,52,92,250,163,108,139,6, - 51,250,73,78,92,217,216,155,164,135,144,221,113,247,125,210,217,105,213,88, - 213,187,213,18,164,167,20,151,236,104,200,97,218,130,107,138,112,100,91,145, - 26,64,212,4,45,136,104,250,67,208,187,121,30,110,154,112,50,114,59,21, - 28,109,237,48,31,237,169,16,167,222,197,168,37,249,62,70,137,64,215,123, - 19,251,48,158,96,119,51,115,243,106,211,29,151,157,173,241,251,107,114,32, - 159,53,39,163,199,113,244,17,145,171,200,173,216,222,172,56,244,20,192,11, - 103,48,171,130,48,152,84,91,142,53,38,97,15,3,195,138,11,10,206,103, - 250,66,199,177,170,12,7,189,124,157,172,44,37,83,113,153,227,118,50,76, - 233,165,109,223,0,92,254,232,15,111,97,48,106,114,236,196,248,55,211,31, - 36,4,241,32,109,227,86,230,224,74,148,56,147,241,148,67,148,69,8,225, - 240,224,35,1,159,190,230,251,172,116,163,60,36,153,161,213,28,82,171,187, - 92,246,210,89,46,189,108,51,73,220,97,207,29,143,112,203,205,112,124,197, - 162,98,37,169,122,59,21,86,135,40,51,140,162,230,84,136,114,117,200,202, - 38,162,19,235,8,218,84,234,65,222,99,209,144,135,242,246,91,89,189,91, - 113,180,140,148,170,144,219,168,37,121,190,75,164,99,125,140,176,173,114,110, - 78,146,147,156,20,147,228,156,17,73,63,51,142,12,199,161,186,76,205,21, - 81,124,126,45,120,214,120,125,33,39,9,79,22,115,119,122,151,81,34,104, - 152,93,85,47,7,136,218,36,233,232,44,97,244,148,26,205,10,189,133,232, - 230,83,10,6,189,33,36,237,188,129,115,18,205,211,176,71,24,242,16,134, - 60,68,141,5,70,126,155,145,223,38,114,87,232,15,188,188,158,48,87,111, - 241,1,192,199,54,59,140,214,112,41,142,13,66,99,140,21,220,218,132,110, - 105,202,97,58,136,212,111,71,8,59,53,155,76,125,86,97,68,22,166,206, - 96,155,17,199,151,23,248,200,159,127,141,90,197,34,26,37,12,123,17,73, - 220,193,140,157,137,26,185,18,37,74,156,153,120,202,10,174,104,54,9,130, - 136,107,63,53,226,240,130,200,149,91,44,187,36,201,48,15,77,238,220,101, - 113,222,121,58,59,182,25,60,126,172,206,13,127,23,241,232,195,139,184,254, - 10,158,127,226,135,82,111,73,98,35,19,27,145,116,115,5,167,66,148,167, - 30,155,18,12,134,116,250,222,170,41,216,57,177,165,211,1,38,74,2,10, - 181,110,178,91,232,163,233,62,185,143,178,97,42,2,20,181,56,15,29,142, - 146,246,68,24,49,35,32,209,211,86,117,48,153,70,70,110,122,103,188,158, - 236,104,227,18,2,20,129,198,113,83,149,45,212,226,156,60,139,117,115,157, - 205,105,222,107,48,38,214,168,175,142,73,208,166,213,156,44,58,239,14,22, - 73,162,121,90,77,159,78,199,87,161,93,84,30,179,170,29,165,63,240,242, - 217,121,70,180,66,187,173,114,171,238,26,229,23,48,169,224,50,76,42,184, - 73,146,27,249,38,161,25,177,220,73,63,43,77,93,76,101,10,206,178,214, - 167,77,152,243,173,49,190,56,242,240,194,1,96,115,211,231,175,229,161,239, - 43,23,174,231,143,63,143,233,242,129,18,37,74,156,121,120,90,66,148,113, - 28,35,165,199,131,143,4,220,118,211,93,244,123,91,38,194,146,213,138,58, - 65,108,219,154,240,234,43,119,177,99,167,198,194,227,17,223,250,198,99,220, - 118,243,2,7,15,205,35,57,150,218,187,87,55,95,86,56,249,212,107,77, - 243,16,154,167,114,112,5,5,247,131,98,28,146,132,192,85,39,244,188,129, - 178,88,157,15,211,232,140,157,142,78,225,175,147,224,197,130,164,163,194,146, - 146,94,78,84,211,37,102,163,164,77,85,155,85,249,184,108,158,220,80,167, - 95,115,85,113,119,118,108,129,82,95,178,167,246,227,104,21,132,157,170,65, - 225,211,166,137,232,66,194,12,3,127,210,226,111,52,219,24,205,246,152,56, - 107,171,73,102,230,216,88,225,100,53,116,70,99,172,170,134,189,195,171,94, - 211,92,167,19,139,69,234,173,5,58,29,31,183,171,62,179,97,48,86,144, - 89,184,114,118,118,152,215,179,153,254,26,29,90,158,16,171,191,127,51,92, - 125,1,147,149,11,132,65,148,247,165,92,141,108,217,49,22,219,53,174,253, - 171,79,50,240,183,35,227,62,73,60,224,200,82,26,126,14,226,220,44,83, - 146,92,137,18,103,30,158,114,153,128,186,31,160,235,53,174,253,212,136,7, - 31,186,20,221,216,59,177,110,181,186,158,217,89,155,173,59,27,156,119,158, - 82,8,247,62,144,112,203,205,176,112,116,136,31,104,185,114,147,171,148,219, - 248,202,93,61,231,229,203,140,106,218,87,178,232,162,204,20,156,150,157,228, - 109,192,161,81,112,190,207,234,170,240,90,36,93,214,215,85,9,64,18,205, - 35,227,3,105,99,226,121,204,133,71,136,187,237,113,3,229,102,59,207,187, - 101,110,73,217,2,209,26,19,159,144,118,174,228,28,173,130,152,159,12,187, - 37,169,162,204,212,86,195,236,210,48,199,138,41,187,47,106,49,205,189,21, - 106,133,50,128,196,50,208,122,138,252,165,240,212,205,11,112,43,30,158,37, - 105,220,167,142,67,163,67,115,228,171,130,112,200,91,122,201,161,142,28,234, - 244,58,106,89,143,96,50,148,9,244,172,136,70,115,37,15,151,102,5,223, - 173,185,46,173,185,46,134,241,64,126,3,8,151,137,92,6,100,0,0,32, - 0,73,68,65,84,246,33,70,125,122,203,49,245,214,2,179,149,135,169,177, - 64,77,235,35,163,199,233,245,151,114,21,167,190,191,77,233,247,38,201,186, - 211,100,200,134,148,218,68,232,134,50,11,77,154,76,38,33,68,151,48,237, - 131,41,147,1,50,233,34,165,151,118,175,81,106,110,60,105,96,134,233,16, - 37,216,216,149,17,208,225,246,59,230,89,56,176,143,8,135,126,47,162,86, - 149,68,81,136,159,132,107,118,58,41,81,162,196,153,129,167,144,131,155,84, - 1,119,223,55,224,27,183,204,147,208,99,228,155,171,214,175,213,93,54,108, - 80,196,176,112,40,97,239,157,7,89,56,112,132,225,160,141,148,94,238,126, - 123,98,140,215,137,70,89,191,203,213,46,74,117,18,205,48,54,153,156,12, - 89,91,42,203,25,91,218,179,238,250,232,93,136,91,99,5,84,136,150,61, - 81,211,143,100,141,48,105,100,170,154,171,162,146,202,140,31,162,22,79,244, - 153,204,143,37,85,130,19,112,18,108,93,98,235,171,79,192,153,210,83,27, - 31,111,155,153,128,217,150,182,102,171,175,53,143,127,141,30,153,160,6,172, - 186,222,8,236,19,180,102,15,170,125,86,150,233,116,124,72,58,212,52,213, - 245,37,246,87,84,94,174,189,214,254,212,247,182,220,219,165,12,66,192,32, - 82,78,202,40,152,206,65,174,206,195,77,43,56,187,98,77,173,113,170,48, - 119,7,207,215,0,143,227,203,11,220,252,245,219,25,141,68,218,69,197,37, - 138,212,119,83,12,85,150,40,81,226,204,194,83,14,81,102,3,77,239,125, - 32,97,126,223,18,177,236,162,105,42,223,146,153,76,178,220,219,142,93,106, - 138,192,193,3,251,249,238,125,71,56,116,100,63,94,26,174,122,242,197,221, - 39,95,175,231,141,101,90,54,77,224,100,16,137,98,166,172,207,226,186,117, - 217,51,147,161,200,124,66,64,154,123,211,173,33,210,79,141,37,83,40,26, - 75,100,58,255,78,91,195,232,210,15,167,76,30,133,124,89,143,128,38,214, - 42,117,53,222,199,236,234,247,34,237,85,14,202,88,57,249,115,34,19,169, - 107,115,214,10,193,61,121,184,119,26,122,93,34,68,119,130,232,170,122,151, - 154,33,212,36,2,119,8,238,16,49,92,64,140,250,212,91,11,202,172,19, - 169,188,230,48,72,84,169,197,154,176,129,10,235,154,138,32,51,146,203,20, - 220,19,33,156,154,69,167,92,184,147,219,159,188,104,114,152,52,41,217,249, - 227,219,191,245,40,71,30,159,220,94,113,218,68,28,75,60,47,72,219,121, - 149,229,3,37,74,156,9,120,74,4,151,57,41,151,87,66,110,185,113,137, - 206,208,42,60,55,36,150,93,230,90,6,181,186,203,185,187,213,21,249,190, - 125,49,247,221,121,144,165,199,5,43,43,147,39,235,213,225,201,181,112,106, - 149,23,176,246,201,167,81,93,115,177,58,214,116,106,245,68,222,237,9,48, - 161,144,82,100,197,221,249,227,222,234,143,87,244,52,90,253,73,242,205,186, - 142,0,249,248,155,85,199,104,25,104,189,16,86,86,19,235,169,246,151,247, - 173,132,92,201,21,173,251,73,51,117,137,166,234,48,11,195,58,122,39,159, - 120,0,138,232,170,186,154,80,224,38,32,31,93,224,112,95,207,63,43,41, - 231,65,118,212,164,133,120,158,88,44,18,118,30,163,198,2,195,32,65,227, - 96,190,173,209,40,251,236,60,178,220,90,18,247,243,48,229,106,84,152,204, - 193,169,247,52,173,224,42,214,248,59,145,83,191,19,185,138,216,188,194,95, - 143,135,30,62,198,254,253,135,112,61,159,222,96,196,176,223,207,215,46,85, - 92,137,18,103,38,158,66,14,78,71,211,52,194,208,100,225,241,136,59,191, - 61,204,149,155,122,126,124,127,231,46,117,210,54,180,131,116,122,67,238,189, - 207,100,185,19,231,211,184,229,41,12,36,171,177,54,9,102,46,74,139,181, - 237,245,39,11,81,206,206,56,42,60,89,44,230,78,97,84,150,39,148,155, - 110,13,85,49,119,202,25,167,10,79,198,195,201,147,175,22,68,107,170,57, - 81,139,87,41,56,189,21,193,202,36,201,174,245,90,24,147,106,241,88,68, - 79,131,182,204,221,146,225,236,248,228,92,12,175,34,187,104,189,153,137,208, - 231,180,1,69,138,46,82,116,213,4,4,49,57,144,117,103,127,145,164,39, - 11,173,203,58,224,132,138,232,70,125,154,149,163,19,14,203,12,213,106,246, - 179,27,147,142,166,55,136,162,136,250,154,28,55,253,251,88,251,247,50,173, - 224,100,65,161,173,70,246,156,234,87,233,133,3,110,223,179,63,47,56,207, - 66,149,107,205,12,212,180,83,151,112,148,40,81,226,244,192,83,110,182,12, - 176,231,214,144,199,14,28,76,151,79,58,248,102,103,213,9,166,49,171,212, - 218,254,71,3,58,203,33,195,193,100,110,39,203,193,137,124,138,192,15,134, - 105,23,101,254,183,0,131,21,180,168,195,40,53,62,104,73,135,112,241,161, - 60,60,105,57,39,97,65,189,55,73,12,167,58,14,187,144,195,11,34,240, - 214,200,143,117,152,108,235,245,255,179,247,110,207,146,92,217,121,223,111,239, - 157,89,149,117,175,234,211,23,12,128,190,97,48,67,14,7,224,96,192,139, - 37,114,56,131,1,41,146,18,37,146,34,37,145,182,72,75,150,34,164,7, - 133,45,133,173,80,136,150,173,8,69,248,65,225,63,64,17,126,112,132,109, - 234,193,47,126,16,29,182,44,91,182,69,137,20,21,18,57,154,17,73,145, - 67,2,211,221,64,19,232,70,159,238,186,87,101,85,230,222,219,15,59,119, - 94,170,242,244,13,3,78,195,145,95,196,137,115,78,157,172,188,84,213,217, - 95,174,181,190,245,173,158,206,191,134,42,70,175,106,206,35,182,152,36,19, - 161,148,34,69,43,98,216,138,163,232,77,204,65,190,85,242,200,236,29,16, - 100,167,48,129,246,24,238,142,13,150,243,30,61,175,34,245,142,43,191,47, - 143,212,154,214,206,88,47,87,46,18,142,238,49,91,239,232,143,222,117,102, - 213,184,113,55,182,18,229,22,53,56,163,93,196,180,170,229,241,199,123,241, - 203,17,220,33,220,148,111,39,56,114,40,55,128,59,194,252,213,95,187,201, - 226,126,39,175,255,233,164,56,153,50,209,53,138,202,6,13,62,30,248,80, - 41,74,107,99,150,43,195,63,250,71,43,172,141,142,200,109,216,153,210,239, - 190,75,127,48,100,57,107,113,227,134,226,157,247,126,159,229,126,143,53,115, - 204,153,181,153,135,161,254,142,220,154,168,162,162,172,115,52,73,57,7,64, - 175,148,33,92,181,174,1,69,122,18,225,166,115,203,247,10,114,8,186,202, - 53,112,71,190,137,187,62,130,240,117,55,32,87,49,30,194,79,5,208,251, - 94,161,198,44,53,117,43,85,239,237,73,84,156,180,175,245,121,162,75,55, - 58,143,240,60,209,137,133,196,204,128,237,206,121,87,250,231,238,220,245,60, - 10,222,241,164,226,122,210,51,168,253,31,84,30,83,98,225,84,166,253,7, - 4,253,7,116,7,15,72,91,239,177,94,174,24,77,110,177,184,175,49,53, - 189,111,237,146,200,37,20,55,105,181,39,4,65,144,19,93,208,42,63,167, - 254,245,126,88,13,78,224,9,188,78,188,228,173,187,202,254,159,51,230,139, - 247,249,23,255,252,27,236,118,83,182,241,174,36,56,241,102,226,141,162,178, - 65,131,143,19,62,20,193,233,116,195,191,252,181,61,191,241,175,126,11,41, - 123,8,17,87,82,147,97,87,208,187,244,92,174,158,188,119,175,199,250,84, - 179,94,77,243,197,168,154,158,140,142,106,39,143,139,60,130,243,144,221,90, - 87,139,50,38,227,14,253,253,77,230,219,250,2,157,40,181,228,121,231,144, - 220,169,228,236,82,216,67,97,239,187,72,72,181,214,232,204,88,58,79,11, - 170,69,94,31,59,74,127,198,22,113,48,37,220,69,111,18,117,31,214,251, - 226,218,237,208,32,247,41,203,15,90,149,122,155,143,226,236,89,86,95,25, - 242,233,228,56,65,140,39,58,95,159,91,246,182,200,253,93,6,225,142,192, - 78,243,41,230,62,157,107,75,211,196,71,89,84,172,63,248,61,119,93,34, - 102,179,49,236,246,33,229,155,149,125,214,100,45,149,115,39,121,180,138,178, - 157,215,224,182,250,236,235,57,91,188,52,161,154,238,222,17,39,41,191,252, - 127,191,115,180,101,89,81,9,52,36,215,160,193,199,4,79,77,112,90,107, - 90,237,11,188,253,182,38,73,175,98,204,154,64,190,116,20,197,157,243,245, - 22,123,151,119,238,206,242,190,55,99,231,8,218,249,157,182,32,206,26,189, - 225,184,103,169,30,65,230,94,97,76,228,102,189,165,41,123,227,72,99,159, - 138,204,213,226,78,190,63,181,153,103,179,193,92,122,210,43,40,59,246,38, - 219,120,227,250,222,58,3,194,121,86,143,203,78,199,138,29,209,34,2,49, - 116,206,33,29,131,169,211,161,116,10,98,208,239,142,28,233,68,2,185,79, - 243,118,1,57,48,216,7,83,226,97,156,139,62,242,182,0,61,68,41,69, - 60,140,143,82,142,62,61,121,136,184,101,49,183,12,221,15,18,228,34,193, - 14,13,234,212,96,90,1,163,59,9,124,117,148,55,159,123,215,147,56,156, - 187,153,114,55,109,101,206,156,175,219,37,151,190,145,171,46,187,210,165,150, - 151,189,45,235,151,238,230,61,122,0,86,158,195,156,147,174,62,57,114,228, - 185,9,223,162,43,70,110,192,234,118,205,58,185,225,102,233,65,158,158,236, - 118,37,150,56,235,115,43,222,67,112,253,112,58,77,16,50,46,57,153,248, - 231,182,107,135,177,118,212,14,33,71,7,34,147,236,70,36,171,181,137,163, - 72,206,207,136,3,71,158,109,224,14,219,248,223,240,214,239,63,199,62,139, - 226,128,163,40,78,41,209,40,41,27,52,248,24,224,169,9,78,41,69,28, - 239,249,202,175,79,115,215,18,223,34,224,73,110,60,112,109,1,247,238,245, - 92,244,118,247,78,73,65,87,64,60,86,141,165,188,77,177,80,181,148,200, - 251,224,202,104,5,143,113,151,157,57,135,180,58,45,70,94,208,185,117,41, - 50,179,190,80,217,52,143,132,58,246,72,45,89,134,21,113,254,247,206,174, - 88,4,43,34,145,169,165,179,203,246,161,22,12,85,245,252,203,41,197,67, - 113,137,153,65,172,139,191,71,202,30,145,173,105,5,103,138,90,252,115,34, - 101,89,116,51,162,26,102,211,189,51,238,8,167,33,11,29,33,122,58,55, - 133,30,170,24,115,215,145,161,200,94,183,213,110,141,232,233,252,181,241,41, - 87,177,156,23,61,132,144,13,138,45,176,217,24,162,150,170,16,152,148,113, - 222,38,144,63,173,83,132,208,34,111,193,168,255,172,88,51,175,105,19,56, - 142,224,142,51,4,254,119,71,102,167,167,107,126,235,55,127,51,143,36,125, - 212,230,163,56,239,110,210,24,49,55,104,240,236,227,67,165,40,255,253,215, - 247,252,159,255,228,55,142,162,54,143,94,223,69,72,171,229,130,213,114,193, - 131,249,31,96,205,241,29,248,147,169,40,201,28,40,64,136,45,73,86,107, - 83,242,120,52,78,49,229,249,108,2,85,231,58,32,198,172,83,91,153,122, - 237,199,200,148,33,204,46,27,83,243,232,118,134,188,143,173,44,50,137,109, - 229,247,160,171,242,168,77,141,210,156,32,244,58,168,23,168,100,68,86,110, - 236,174,235,129,203,137,45,182,216,7,211,156,112,173,216,21,98,153,173,100, - 184,217,185,105,225,165,104,49,72,166,40,165,42,164,43,122,154,133,142,232, - 156,207,200,127,6,106,177,200,125,53,85,47,205,123,235,134,180,176,119,178, - 244,179,157,33,196,156,245,114,133,237,221,203,211,215,221,174,36,222,107,200, - 157,105,10,120,146,139,72,17,230,244,232,117,45,215,227,194,110,201,202,236, - 32,130,243,120,178,148,247,142,15,166,75,110,190,245,14,105,146,144,166,105, - 30,197,173,75,125,149,205,56,157,6,13,62,30,248,80,4,247,238,59,134, - 7,15,92,212,230,35,55,99,92,187,64,103,88,189,107,127,247,198,123,172, - 214,187,218,187,236,71,163,218,7,21,239,92,205,44,209,123,250,118,134,49, - 17,66,198,185,64,193,163,60,0,115,210,121,43,255,89,154,25,152,41,189, - 96,134,126,176,101,191,249,160,54,245,5,46,42,137,91,246,88,133,152,161, - 182,247,12,224,193,236,168,102,6,46,213,88,62,84,30,245,152,157,139,132, - 58,109,228,13,115,68,110,117,251,2,96,43,144,239,202,195,254,244,252,88, - 21,242,235,24,232,100,54,92,182,157,71,112,101,212,245,247,249,40,179,179, - 139,156,32,166,180,79,159,154,244,237,19,106,148,178,78,223,103,115,227,29, - 204,162,122,13,81,232,78,178,136,226,51,226,53,153,2,55,123,255,210,52, - 37,38,192,202,243,217,73,149,213,151,197,57,39,155,98,255,135,17,220,113, - 86,224,113,137,46,230,198,173,27,196,113,177,175,56,142,81,114,147,219,119, - 53,227,116,26,52,248,120,224,137,217,166,60,38,231,237,183,53,214,102,211, - 178,15,162,184,110,88,136,30,66,113,147,237,46,64,136,75,103,238,247,225, - 119,218,199,110,242,0,237,200,213,165,124,122,203,167,149,172,141,142,20,118, - 169,120,153,192,222,207,29,76,84,86,139,235,79,238,210,234,108,92,159,151, - 63,151,153,27,111,227,83,113,117,86,88,143,194,163,44,188,108,198,215,229, - 246,131,213,249,172,209,188,36,96,169,179,250,42,35,93,246,16,223,40,174, - 85,157,22,239,143,152,27,196,28,236,236,216,213,37,93,246,242,233,223,249, - 246,11,233,102,216,181,201,163,202,67,200,7,230,248,218,58,134,109,187,136, - 196,134,251,128,126,187,135,28,205,233,244,117,126,243,224,45,220,186,93,249, - 80,91,182,163,94,56,81,77,35,214,161,46,130,43,43,41,203,40,126,63, - 60,7,183,253,46,62,229,131,119,223,71,201,126,30,81,234,36,205,211,148, - 30,141,216,164,65,131,103,27,79,21,193,25,99,216,239,83,190,242,235,83, - 16,163,156,220,252,212,0,127,167,238,241,141,111,180,216,173,182,249,157,187, - 181,79,54,200,212,225,120,113,219,197,154,85,38,117,44,75,204,133,136,9, - 147,160,164,162,220,49,223,220,32,176,75,164,153,49,234,223,37,10,4,210, - 206,10,113,9,28,77,12,168,21,146,120,28,14,23,45,193,138,216,17,141, - 127,254,97,52,150,69,125,219,118,156,19,67,186,41,185,139,220,40,182,63, - 170,165,77,125,4,150,53,120,127,109,150,31,231,72,136,50,3,117,91,195, - 7,199,169,52,53,91,16,191,87,108,127,84,175,139,118,8,179,203,35,204, - 60,130,205,156,84,206,170,239,233,121,224,198,245,76,13,98,33,8,228,60, - 159,78,224,81,103,163,22,240,128,128,7,24,189,100,177,203,222,199,82,138, - 210,213,224,234,83,205,162,38,61,157,255,173,244,156,170,208,164,142,96,221, - 96,213,27,239,156,242,149,223,204,6,213,38,9,251,212,160,194,128,245,70, - 84,196,38,13,26,52,120,182,241,196,4,39,165,68,74,201,114,101,248,202, - 191,121,43,79,29,73,217,99,187,215,149,54,1,128,119,110,185,168,100,185, - 47,122,196,234,106,110,143,239,69,233,208,27,185,5,166,159,73,29,15,5, - 10,135,227,114,78,58,217,34,111,166,152,245,123,72,59,163,215,221,19,14, - 103,200,209,156,141,157,231,242,120,97,166,143,156,195,6,142,168,228,62,173, - 77,235,153,165,123,105,77,162,42,61,108,98,238,36,252,90,107,39,246,200, - 4,37,158,64,132,217,85,35,164,114,221,174,46,13,121,195,86,31,247,219, - 103,207,177,167,34,63,191,178,56,165,238,156,115,210,234,216,98,160,106,167, - 74,42,135,164,47,140,123,47,203,83,198,125,3,184,29,218,202,252,60,119, - 3,180,59,48,194,118,207,95,152,34,226,247,19,215,243,20,229,35,224,167, - 9,60,42,253,125,182,21,92,117,110,220,118,183,98,122,199,165,77,165,140, - 209,105,82,105,250,246,208,58,105,154,190,27,52,120,134,241,212,53,184,101, - 188,229,235,111,45,243,250,155,67,38,171,78,10,245,155,183,233,2,216,110, - 179,69,252,49,157,41,170,168,113,147,87,245,190,141,103,33,22,119,80,76, - 105,141,166,244,186,123,146,208,45,196,27,35,24,14,14,44,170,50,101,97, - 161,158,44,234,87,240,232,20,100,245,192,238,121,181,82,255,78,125,29,167, - 188,173,73,84,45,185,249,243,48,51,117,20,197,229,207,153,29,247,236,9, - 27,161,111,56,149,231,97,36,54,219,246,96,43,42,74,206,186,250,227,122, - 31,214,190,6,229,193,171,98,225,247,225,102,194,249,97,167,117,17,220,80, - 30,19,69,57,130,179,53,202,213,58,145,137,16,103,167,62,31,111,90,133, - 75,185,207,87,130,221,202,253,123,68,20,215,159,166,154,120,229,34,76,165, - 30,207,20,186,65,131,6,223,26,60,53,193,253,230,191,85,116,162,20,99, - 214,88,123,31,99,214,8,241,60,198,172,25,118,138,21,245,157,91,206,154, - 43,221,8,132,216,102,163,113,158,76,53,233,80,125,206,115,225,109,18,93, - 68,133,67,102,180,121,59,175,243,136,78,146,137,76,10,21,229,152,219,140, - 207,221,36,76,122,110,212,139,124,7,43,230,116,197,136,197,82,161,206,221, - 167,109,110,97,102,89,26,81,140,114,87,145,88,11,167,158,236,152,202,244, - 110,179,148,232,175,20,173,3,194,70,232,211,22,226,150,151,222,23,106,74, - 57,200,82,180,183,65,222,48,249,252,184,249,196,169,77,71,184,218,152,186, - 173,145,225,113,90,81,172,108,78,42,190,29,65,221,174,110,231,159,151,31, - 55,35,190,88,11,34,101,217,102,17,151,250,119,163,124,219,178,234,114,244, - 245,85,158,46,157,117,183,16,205,156,175,102,199,144,110,180,235,157,91,72, - 58,59,141,88,72,210,101,47,63,159,109,59,198,46,12,227,59,29,194,211, - 7,200,201,220,245,248,141,247,244,131,111,56,146,178,49,73,187,149,57,153, - 68,192,136,81,223,210,94,57,191,202,128,7,204,180,162,155,158,86,34,56, - 151,162,220,81,174,199,150,69,38,30,103,165,191,203,117,184,42,209,29,139, - 87,96,198,173,91,16,116,23,236,82,67,76,192,126,61,71,201,13,235,141, - 32,234,15,176,103,76,38,111,208,160,193,179,131,167,38,184,251,203,71,111, - 3,238,46,124,185,223,87,92,254,203,234,70,143,135,139,76,124,51,120,177, - 205,98,221,97,183,121,62,255,125,185,92,209,85,163,188,14,88,69,117,223, - 73,184,38,28,206,16,118,228,34,55,49,99,56,126,0,219,157,155,213,150, - 213,185,236,172,120,121,14,133,38,71,234,201,173,139,38,172,136,143,108,186, - 242,104,172,84,139,203,163,170,131,8,78,205,22,152,68,157,217,216,93,134, - 141,247,46,5,249,129,55,92,54,71,207,21,43,215,39,231,207,63,82,54, - 243,174,188,95,123,140,178,72,37,127,172,151,58,50,61,195,126,204,35,82, - 22,59,205,220,90,178,107,45,79,71,16,34,166,211,57,91,52,51,80,238, - 216,65,22,241,213,227,236,232,255,97,41,202,71,167,192,253,13,148,187,217, - 48,220,96,187,183,236,98,157,171,58,61,54,203,52,31,134,218,160,65,131, - 103,23,79,77,112,179,15,116,158,114,44,67,136,184,82,255,42,55,243,122, - 36,117,174,250,15,93,128,220,93,123,185,134,50,236,109,233,245,51,1,196, - 102,142,232,234,220,68,249,24,49,210,190,71,24,57,69,95,87,101,14,249, - 153,43,190,82,11,212,40,173,216,100,201,125,138,48,15,72,167,195,163,189, - 149,39,5,248,72,41,221,232,74,141,11,168,164,21,43,196,51,171,10,73, - 218,90,228,68,103,110,25,87,167,43,69,112,98,158,9,86,14,95,162,119, - 2,210,184,3,173,26,115,234,92,224,66,78,216,254,213,49,191,157,96,223, - 18,110,191,37,210,53,137,130,216,58,34,235,152,204,99,164,48,144,54,183, - 170,10,77,185,72,144,239,84,39,154,155,89,65,180,30,229,225,170,219,216, - 189,118,187,220,90,172,184,168,242,251,103,130,49,241,118,86,147,154,60,59, - 250,63,84,81,62,93,166,160,56,134,222,85,247,87,55,89,160,81,82,54, - 104,240,236,226,169,9,238,221,91,183,65,68,37,135,137,227,86,1,143,67, - 247,146,39,247,155,60,156,7,230,144,102,146,255,225,32,193,110,142,163,145, - 58,47,202,193,240,129,83,75,142,239,16,206,103,232,247,149,243,130,180,11, - 146,73,226,100,240,11,233,82,138,239,202,218,193,166,80,168,27,237,72,214, - 215,227,102,7,223,15,32,230,228,81,159,143,174,132,141,114,226,243,132,248, - 176,72,46,253,154,129,155,217,254,86,229,250,160,35,68,177,178,16,187,99, - 229,238,43,91,151,82,245,245,57,79,106,30,246,84,84,136,204,147,182,157, - 9,230,191,215,66,157,58,98,243,231,104,167,110,159,46,221,42,16,55,45, - 105,220,65,204,141,107,26,207,70,12,65,81,71,179,219,176,98,182,12,174, - 62,58,40,141,42,146,233,140,168,51,174,124,190,158,20,143,223,11,231,143, - 81,220,40,188,247,94,113,179,226,155,190,207,66,211,240,221,160,193,179,137, - 167,38,184,123,247,122,212,167,139,74,13,217,219,25,187,213,214,121,15,154, - 121,222,51,87,135,167,233,131,243,34,147,205,98,193,112,144,16,172,86,149, - 191,31,166,66,247,221,223,5,53,207,237,167,120,48,69,190,253,13,208,163, - 163,84,161,73,20,220,55,216,133,57,178,230,82,247,201,73,65,204,157,247, - 163,186,95,16,149,93,24,87,47,91,21,219,84,144,201,247,109,77,128,33, - 230,238,239,135,53,56,79,86,21,76,45,50,222,19,4,103,44,176,217,246, - 62,157,58,2,16,67,118,191,163,42,132,232,182,181,57,49,150,149,146,145, - 178,216,93,132,121,187,207,228,157,106,164,40,230,6,115,195,230,17,158,125, - 87,163,78,13,65,92,218,238,64,133,57,138,14,35,158,226,69,48,114,156, - 167,41,103,90,157,225,100,82,143,199,81,81,62,30,50,15,75,115,19,128, - 160,27,19,100,61,157,251,212,128,46,68,52,190,14,215,52,124,55,104,240, - 108,226,169,87,132,127,255,91,199,139,79,249,110,219,11,0,150,251,125,62, - 61,192,15,56,253,112,40,57,89,120,145,73,207,178,209,115,58,189,52,83, - 234,61,98,64,166,90,208,57,191,196,204,96,247,47,37,250,125,5,91,73, - 164,44,162,36,57,20,115,83,59,53,192,46,140,139,116,178,86,0,123,59, - 75,45,250,8,101,74,157,11,85,145,106,196,69,74,121,127,154,23,173,108, - 5,226,134,251,49,159,253,86,122,14,113,181,246,23,188,109,176,179,18,97, - 148,162,198,114,244,198,125,67,122,63,91,132,111,109,232,254,235,228,232,220, - 76,162,92,228,117,219,58,33,201,1,169,155,111,76,171,173,15,89,4,40, - 230,96,119,17,91,179,115,175,203,237,234,185,8,179,171,52,129,239,77,15, - 228,162,148,162,4,97,221,69,75,51,99,179,88,228,36,87,223,38,112,86, - 47,220,168,246,241,42,30,63,26,92,172,220,113,210,77,68,154,36,197,180, - 113,53,100,167,235,51,21,13,26,52,120,182,240,212,4,119,251,93,159,194, - 57,32,143,76,197,22,118,5,187,149,35,180,199,89,124,30,191,15,174,122, - 188,192,22,202,135,237,58,160,211,114,196,16,238,246,181,181,62,112,46,29, - 29,217,198,206,39,180,222,9,144,191,254,118,30,193,217,41,108,87,162,18, - 205,28,122,79,86,72,207,167,250,102,217,60,184,173,155,195,150,174,148,31, - 22,93,143,154,199,211,141,206,213,151,71,200,78,193,183,47,176,149,152,165, - 36,56,112,215,240,209,162,78,131,236,187,68,220,50,185,64,36,253,154,65, - 188,85,244,213,249,237,197,220,16,220,217,22,209,101,105,182,157,94,109,8, - 126,93,187,136,109,41,43,10,77,117,91,195,118,199,46,19,152,112,179,184, - 54,223,107,231,91,14,252,13,80,221,212,245,243,81,17,25,249,90,220,163, - 188,40,15,241,176,129,167,14,103,25,45,31,103,15,132,172,190,65,105,154, - 18,166,219,210,239,213,134,239,38,77,217,160,193,179,135,167,38,184,116,127, - 239,161,127,223,36,9,171,52,75,93,213,24,44,63,57,30,34,24,88,11, - 122,2,58,165,126,173,178,106,19,64,188,85,77,95,122,210,10,238,108,93, - 202,110,83,147,62,157,225,4,26,219,250,151,73,204,13,248,150,191,178,179, - 201,212,194,254,236,116,172,88,185,26,152,39,0,159,226,91,232,40,39,204, - 124,255,30,7,233,70,255,247,124,246,106,153,131,103,212,71,118,128,184,105, - 49,107,121,102,48,35,230,46,186,244,66,154,88,11,212,125,23,165,166,113, - 7,125,183,136,160,210,184,227,182,45,205,156,19,43,87,131,243,176,98,87, - 204,210,123,200,20,134,211,56,19,243,244,44,26,55,218,161,78,160,244,225, - 80,190,232,78,205,227,117,47,38,132,241,93,210,36,169,40,41,1,118,166, - 168,35,74,249,104,213,107,131,6,13,254,112,241,212,4,87,40,37,219,88, - 27,21,125,74,98,196,118,191,201,189,40,133,236,231,17,156,239,81,170,107, - 244,126,124,225,137,123,110,95,185,197,40,21,39,4,118,201,110,185,194,196, - 211,236,56,35,68,187,67,216,10,128,152,78,251,4,0,245,117,80,195,7, - 206,24,216,70,136,209,20,198,208,253,189,132,228,23,247,16,143,17,147,226, - 72,102,166,8,222,206,72,168,180,56,27,79,66,37,226,144,239,202,124,238, - 154,250,101,67,152,172,32,46,154,176,43,125,105,177,35,2,157,165,35,183, - 102,135,176,17,253,95,106,87,234,118,118,36,43,199,49,107,153,247,172,153, - 223,62,129,155,96,219,110,127,233,170,218,26,16,174,53,105,170,242,235,152, - 50,68,159,182,144,255,204,32,123,166,178,134,219,83,225,206,241,212,98,71, - 192,205,98,34,121,71,182,177,191,56,32,253,221,14,65,180,37,136,183,21, - 2,243,219,142,109,132,253,170,69,167,1,225,106,67,122,167,227,124,45,163, - 22,59,101,25,252,107,137,16,177,75,33,203,110,38,50,57,176,223,50,83, - 88,11,20,211,188,85,160,74,138,126,110,91,253,205,78,185,6,87,86,80, - 10,218,249,92,184,2,15,79,151,111,119,105,46,98,218,41,215,142,162,130, - 179,27,187,155,8,174,65,131,103,15,223,132,170,252,174,118,86,215,38,179, - 48,178,102,85,243,156,15,119,188,50,2,123,159,84,12,42,209,219,67,149, - 119,101,99,224,169,173,212,146,184,181,57,170,185,153,165,68,175,3,172,136, - 115,69,161,184,121,16,29,205,112,202,194,173,68,159,182,42,196,167,130,179, - 213,119,76,93,173,43,82,22,43,98,228,244,33,253,95,165,75,138,181,192, - 206,92,4,37,118,20,81,156,63,159,154,203,31,47,102,174,185,252,182,61, - 222,126,86,125,94,26,119,242,232,50,189,111,224,27,15,8,87,155,252,186, - 188,136,68,102,105,76,115,203,96,227,125,165,233,60,76,55,121,218,182,173, - 143,211,217,187,253,32,251,233,49,110,108,206,104,222,46,59,153,60,29,30, - 199,186,171,65,131,6,31,87,124,72,130,123,120,159,209,38,73,106,141,112, - 191,25,94,148,101,4,182,218,117,110,109,132,221,21,119,232,219,93,65,50, - 250,180,197,246,116,112,84,87,139,223,83,164,95,115,170,192,238,7,137,171, - 171,69,45,196,215,92,253,42,214,130,157,178,240,245,86,46,4,41,19,153, - 79,235,169,251,238,113,157,102,47,237,65,234,176,56,224,129,221,215,86,58, - 130,40,109,95,17,152,228,207,115,195,74,237,219,25,233,144,69,113,165,253, - 167,43,85,28,31,80,171,20,59,5,253,21,75,122,170,72,194,190,35,198, - 211,82,107,193,169,205,133,49,225,233,38,143,46,237,255,99,16,191,149,9, - 86,110,151,124,47,103,110,191,226,52,27,184,250,78,224,34,193,252,248,65, - 158,182,13,167,33,167,171,83,114,7,146,48,45,189,48,245,239,187,23,154, - 184,147,171,55,70,62,116,50,121,116,13,238,97,216,82,220,160,61,228,179, - 168,23,216,228,248,223,166,73,81,54,104,240,236,225,169,9,110,187,223,148, - 126,219,213,254,220,13,195,218,8,238,201,188,40,31,78,162,169,112,233,199, - 109,86,51,106,201,181,139,224,76,185,65,219,45,88,47,222,113,11,162,31, - 220,153,239,35,238,208,253,32,113,234,193,185,251,157,153,139,80,204,76,229, - 125,97,35,50,181,228,215,106,136,103,230,236,183,236,194,184,180,228,193,223, - 142,206,123,165,80,183,53,233,7,238,6,64,175,29,65,164,43,149,215,232, - 124,42,80,172,170,81,151,176,145,75,157,102,68,42,118,192,190,147,63,175, - 14,250,214,132,221,239,40,228,188,102,136,234,97,212,151,53,135,139,77,7, - 249,239,4,220,201,246,145,6,21,223,203,52,117,66,26,113,211,186,215,232, - 102,177,11,149,166,200,119,37,194,182,81,247,65,125,61,147,223,219,136,112, - 183,167,22,178,200,15,47,117,121,126,81,29,225,60,141,159,233,163,176,163, - 142,220,218,250,189,188,85,32,209,238,102,41,56,72,87,54,166,203,13,26, - 60,123,120,106,130,235,142,194,131,133,199,251,4,58,216,221,54,79,83,62, - 14,206,174,193,157,189,144,37,251,93,174,162,244,41,202,189,113,222,136,162, - 147,148,38,122,195,60,92,162,78,53,234,126,213,249,62,239,7,155,57,155, - 170,67,111,71,59,179,152,27,182,232,113,251,170,205,9,172,210,75,54,3, - 125,195,41,44,213,42,69,5,222,131,178,248,251,225,115,236,91,34,55,39, - 246,145,31,20,10,200,28,113,17,17,218,83,129,157,9,215,154,176,150,71, - 219,1,4,169,46,142,159,61,174,190,242,128,238,239,37,71,219,167,113,199, - 93,79,76,158,238,52,107,215,188,110,223,213,136,111,164,152,181,68,151,134, - 180,165,113,70,166,251,142,123,222,13,208,95,29,229,215,230,251,242,182,43, - 23,209,249,27,4,95,79,219,163,143,26,189,221,134,46,63,220,123,138,204, - 227,211,247,193,213,71,107,157,118,113,189,190,6,87,134,87,81,54,104,208, - 224,217,197,211,19,92,248,104,39,117,187,171,159,1,247,244,22,74,224,9, - 207,246,234,85,156,45,89,244,40,149,35,197,81,50,224,173,223,49,149,49, - 49,98,14,196,46,82,75,163,14,102,41,177,167,130,32,222,34,86,22,149, - 166,4,169,118,2,18,92,122,83,126,53,19,157,148,136,17,92,138,79,220, - 116,100,72,92,74,27,194,113,83,53,25,9,204,170,246,87,204,50,114,74, - 83,247,115,118,30,71,105,206,15,244,81,164,230,69,45,98,101,115,226,147, - 115,139,10,156,210,82,124,205,96,110,102,3,98,183,69,244,29,174,54,168, - 213,113,157,80,157,26,244,63,210,152,175,186,231,148,85,153,97,186,41,84, - 157,59,16,183,12,193,87,31,184,235,254,160,184,81,233,126,144,73,232,111, - 88,66,198,249,212,137,110,87,86,250,224,14,177,62,124,185,30,50,33,32, - 223,228,177,250,224,206,66,189,122,178,140,52,73,72,247,103,167,33,195,199, - 248,127,104,208,160,193,31,46,158,154,224,94,248,196,137,107,220,62,67,0, - 176,141,3,68,187,147,247,60,29,142,49,57,76,83,158,93,131,171,39,67, - 177,190,240,144,179,219,97,183,97,229,119,15,59,45,250,213,202,8,238,108, - 235,101,249,59,220,196,236,173,68,222,112,105,56,149,166,149,70,238,52,238, - 184,148,227,169,65,190,43,73,77,86,119,60,92,151,103,213,232,204,204,84, - 238,26,98,110,153,130,8,75,81,159,237,31,251,91,166,165,20,169,10,76, - 181,222,87,17,184,20,215,163,111,74,236,204,30,69,118,21,53,101,187,120, - 158,253,45,144,255,204,228,207,145,115,71,248,106,149,230,199,9,19,151,126, - 22,183,109,209,255,230,125,49,179,232,48,221,104,118,191,83,16,67,183,157, - 28,89,183,125,88,248,58,239,147,213,224,106,58,241,179,55,204,123,158,122, - 167,156,125,230,55,41,100,177,253,97,138,178,65,131,6,207,30,158,154,224, - 6,147,79,16,69,131,131,71,171,164,117,102,173,133,39,137,226,158,174,214, - 34,58,62,133,84,79,156,194,182,243,158,178,114,212,81,118,13,209,65,224, - 200,99,230,106,100,250,70,85,152,81,222,117,144,106,204,82,230,62,141,79, - 42,196,51,103,168,31,129,66,238,223,233,186,122,220,77,91,169,243,201,222, - 241,194,238,73,207,127,151,115,151,82,180,109,183,189,45,235,41,74,233,201, - 252,249,95,149,136,95,183,200,185,37,233,185,99,105,239,230,113,36,124,113, - 4,10,84,250,255,42,150,93,25,54,187,144,78,231,225,61,148,71,168,185, - 137,242,13,253,240,36,74,221,71,25,122,151,178,12,102,92,25,199,228,30, - 43,222,212,195,20,101,83,131,107,208,224,217,195,83,19,220,235,175,205,216, - 198,61,151,62,178,113,182,8,85,61,35,247,232,74,195,181,143,226,190,25, - 34,147,149,110,211,9,222,43,20,148,89,253,198,213,224,218,132,73,64,216, - 90,83,158,7,7,174,86,4,110,214,153,92,36,136,187,16,116,179,5,114, - 6,105,228,4,38,186,31,160,86,41,102,36,16,183,45,105,252,10,242,255, - 181,5,241,5,1,68,142,240,100,188,135,49,200,95,213,36,191,210,37,232, - 174,92,205,42,91,47,147,160,75,122,167,3,227,172,109,32,118,251,183,51, - 139,189,233,206,71,254,187,76,96,178,115,167,236,189,44,203,233,77,185,117, - 82,125,243,63,183,9,254,32,205,137,173,34,64,41,41,51,117,42,243,8, - 79,246,12,114,187,33,53,125,210,64,229,207,59,34,182,140,16,195,181,70, - 236,200,163,55,200,210,148,217,53,153,181,68,167,50,239,195,11,2,13,17, - 4,210,165,74,25,103,175,231,63,124,153,214,59,1,9,179,108,102,224,156, - 216,92,121,232,59,126,54,138,19,173,138,156,178,191,238,101,37,83,224,111, - 162,44,187,74,134,160,152,74,81,23,197,57,12,251,59,2,57,34,84,45, - 84,91,186,201,222,25,145,70,209,113,19,127,147,162,108,208,224,217,195,211, - 183,9,136,75,7,191,71,197,157,246,89,67,39,207,120,28,158,84,100,18, - 229,141,222,101,40,170,142,41,135,86,93,253,219,41,225,233,3,244,58,160, - 173,69,197,169,223,43,39,125,212,161,78,211,202,218,167,126,237,22,226,107, - 6,49,207,68,36,222,93,222,167,41,51,107,174,112,229,234,83,106,149,230, - 169,202,112,181,33,248,246,45,226,182,107,132,38,34,175,239,133,167,15,142, - 157,82,226,82,42,243,240,37,139,65,220,113,215,46,14,94,2,255,187,10, - 12,166,211,173,164,35,61,89,129,139,54,15,159,155,95,103,182,141,109,23, - 95,178,231,154,195,229,220,86,142,81,62,167,195,115,245,231,223,58,189,235, - 44,192,32,171,193,125,24,245,99,251,140,159,11,183,28,255,25,107,181,210, - 252,70,170,124,67,101,137,75,100,119,252,153,243,228,119,254,124,47,127,204, - 143,205,241,126,148,113,188,109,84,148,13,26,124,12,240,212,4,247,234,119, - 71,248,59,106,111,162,252,205,49,83,126,20,92,42,105,165,51,51,92,113, - 152,38,61,27,171,23,3,236,109,167,88,220,41,91,169,185,249,158,178,60, - 253,86,94,251,98,216,253,234,210,57,125,180,139,148,161,95,39,189,72,163, - 28,217,121,164,155,62,246,188,32,253,242,121,202,235,170,14,2,167,88,92, - 74,120,39,128,251,134,32,213,36,97,63,39,72,31,96,148,85,145,102,45, - 145,115,91,17,177,212,33,76,86,149,154,90,249,241,186,136,205,195,147,218, - 145,241,7,69,189,175,76,114,181,86,97,25,204,76,145,254,251,3,231,147, - 15,37,48,42,158,91,78,81,194,177,200,196,143,74,178,236,74,145,92,205, - 221,2,80,118,53,105,71,34,251,238,140,158,125,154,210,152,136,136,148,80, - 185,253,54,42,202,6,13,158,125,60,53,193,157,12,64,48,5,27,31,140, - 193,201,22,33,27,231,195,45,63,28,14,23,196,170,85,215,227,61,199,161, - 127,59,205,149,139,135,154,187,188,255,140,194,137,63,23,139,204,112,14,252, - 51,242,244,94,217,26,11,92,138,206,68,197,244,106,191,118,202,237,6,251, - 57,137,121,99,236,34,183,140,12,125,4,40,230,78,217,169,239,167,27,181, - 19,0,0,32,0,73,68,65,84,182,17,187,66,184,1,69,205,171,76,40, - 254,171,76,82,57,41,157,129,242,223,242,122,90,137,216,124,170,177,118,31, - 37,162,43,215,239,252,182,143,34,218,186,58,220,211,163,56,216,118,95,111, - 141,117,152,162,60,59,29,94,239,63,185,143,219,149,201,241,64,158,162,76, - 130,179,253,69,155,20,101,131,6,207,30,158,154,224,46,95,145,24,91,74, - 9,214,165,31,109,156,79,253,182,182,67,212,110,29,111,147,225,108,21,229, - 195,87,80,95,131,235,5,85,229,131,115,203,128,163,48,228,96,222,153,95, - 232,131,64,215,151,99,50,209,132,23,81,28,186,247,31,102,187,84,121,48, - 102,107,139,25,9,248,211,130,246,229,123,216,23,69,158,126,212,65,80,144, - 196,212,17,65,94,211,202,160,86,41,233,166,234,4,99,219,56,191,72,170, - 196,38,118,85,178,41,255,236,73,89,167,18,117,205,228,207,135,172,198,230, - 69,42,145,219,54,39,246,186,107,44,17,94,18,30,187,212,148,95,139,10, - 225,151,208,169,185,57,25,125,72,39,16,107,230,180,91,166,146,6,119,30, - 148,213,99,185,207,217,33,233,30,159,207,149,203,109,182,241,7,185,146,18, - 64,167,9,137,78,209,166,219,168,40,27,52,248,24,224,233,9,238,133,128, - 171,151,135,199,127,56,163,206,38,196,246,41,27,113,159,62,165,85,87,215, - 19,171,76,216,145,213,189,42,181,36,255,119,47,205,111,109,157,0,101,92, - 136,40,252,207,94,120,225,35,41,29,4,4,209,246,40,181,167,94,51,216, - 215,37,68,51,54,159,14,179,90,88,70,130,217,36,2,51,131,244,78,167, - 114,46,62,13,26,116,87,181,209,82,93,228,228,251,223,202,41,198,67,18, - 178,159,147,142,104,203,251,201,174,139,8,196,88,20,162,155,18,210,64,85, - 9,46,162,118,187,186,212,102,16,85,9,37,221,28,119,114,207,31,105,86, - 252,240,25,127,66,142,142,62,95,85,114,171,251,92,22,100,103,137,243,47, - 136,56,55,252,4,224,6,207,118,90,213,243,237,117,109,163,162,108,208,224, - 99,128,167,111,19,232,75,62,247,218,247,60,214,182,229,113,57,117,81,92, - 225,246,94,134,255,253,209,162,132,182,58,163,233,187,52,209,123,30,186,72, - 79,167,129,19,118,100,168,16,64,169,175,45,31,131,83,66,238,230,17,129, - 25,9,116,63,200,35,64,79,90,182,47,114,194,8,215,26,253,19,18,117, - 126,79,172,5,209,243,26,219,46,4,24,73,191,235,38,6,76,143,27,193, - 161,84,235,195,17,81,78,50,135,136,14,82,134,158,176,202,231,158,157,167, - 121,13,184,86,34,246,140,144,236,121,129,61,47,242,8,52,221,244,115,43, - 46,34,8,250,58,175,29,150,73,238,144,248,210,84,161,131,0,57,214,57, - 177,149,107,112,157,40,5,217,173,189,222,135,163,58,69,160,211,170,238,195, - 71,112,15,67,85,61,89,70,57,234,139,184,48,190,200,228,185,171,0,236, - 98,205,118,95,106,114,87,223,236,17,62,13,26,52,248,168,240,212,4,167, - 148,224,250,39,159,175,8,75,242,113,56,7,98,147,120,215,203,23,159,184, - 166,55,238,80,198,157,61,43,251,254,120,17,156,136,221,93,182,119,50,41, - 155,45,31,29,239,182,235,107,43,55,43,87,14,127,13,146,87,74,11,104, - 228,200,205,68,45,183,144,199,46,210,49,81,203,165,247,162,106,67,118,249, - 103,249,93,231,220,85,40,139,189,38,72,77,31,251,65,132,10,210,156,0, - 188,180,223,147,83,26,40,130,64,35,198,153,213,213,186,148,70,45,157,147, - 71,114,190,139,62,31,228,169,70,221,15,10,162,205,160,2,131,25,9,228, - 119,157,67,188,88,61,94,133,52,179,159,3,185,34,92,235,124,127,73,223, - 189,30,114,156,61,150,213,7,253,57,37,231,187,48,38,63,231,28,99,8, - 158,43,25,95,199,1,147,225,211,70,59,103,215,224,234,34,184,252,111,149, - 55,215,159,75,253,231,43,106,187,27,158,43,215,174,19,182,138,227,73,229, - 196,76,103,121,81,54,53,184,6,13,158,61,60,49,193,25,99,48,198,45, - 164,111,124,57,194,218,14,66,108,115,82,179,220,193,242,220,153,207,127,186, - 94,184,236,185,120,229,102,84,177,234,42,183,7,120,47,202,194,108,217,133, - 32,253,110,102,83,53,214,206,29,63,235,135,203,235,81,99,42,78,32,193, - 47,236,81,175,153,156,124,84,154,186,126,183,172,199,75,142,53,234,239,239, - 93,4,83,94,63,199,69,196,98,175,130,189,230,118,48,2,196,155,18,245, - 233,140,128,251,194,17,194,220,32,191,106,156,253,85,148,145,221,190,131,125, - 69,96,190,189,69,186,233,187,104,107,236,246,237,251,235,116,63,192,172,37, - 102,45,9,254,187,61,242,154,206,235,103,158,132,136,192,94,49,4,125,157, - 215,223,228,39,87,232,243,178,32,183,210,185,48,206,126,206,4,54,233,11, - 1,235,255,168,133,252,31,65,252,237,61,182,47,242,20,174,28,107,167,26, - 237,7,172,127,170,133,250,251,123,236,139,2,251,65,84,173,189,249,222,66, - 192,218,251,64,155,233,226,155,71,6,117,77,222,94,92,226,190,156,20,181, - 218,30,224,113,43,255,73,8,23,225,111,119,167,92,185,252,231,56,63,120, - 27,200,220,76,108,49,109,252,44,21,229,225,60,184,102,62,92,131,6,223, - 122,60,49,193,73,153,57,99,200,61,151,175,72,78,78,90,185,138,178,80, - 176,29,71,93,143,170,191,213,247,193,85,155,180,61,58,237,180,98,213,165, - 51,77,164,41,169,71,68,39,41,245,193,197,168,121,41,34,139,193,78,15, - 210,89,89,42,46,127,254,80,194,235,231,176,151,200,155,187,33,75,43,102, - 132,32,175,74,151,186,59,196,181,44,229,215,23,168,222,129,207,227,184,84, - 187,242,105,196,242,216,157,182,83,94,138,87,220,239,185,111,100,84,234,141, - 139,10,49,139,252,164,65,12,37,246,234,241,235,235,35,201,220,129,228,26, - 16,237,176,215,68,190,31,123,94,20,231,81,74,107,218,43,6,251,215,45, - 237,255,108,130,120,165,120,173,202,209,169,10,82,228,88,211,254,254,1,243, - 171,197,147,203,53,55,127,94,97,105,231,133,0,8,158,172,198,90,221,54, - 9,211,220,166,171,156,6,247,226,18,247,117,248,185,42,167,41,93,56,110, - 137,177,118,128,16,75,4,17,87,175,194,224,66,145,30,110,7,103,127,118, - 149,106,34,183,6,13,158,85,60,85,138,210,147,220,229,23,2,190,253,213, - 71,11,77,14,211,152,135,190,148,80,167,162,204,114,129,71,56,59,242,147, - 178,90,120,114,19,189,253,190,50,100,145,154,189,113,252,39,143,32,222,162, - 79,192,254,164,196,190,44,42,45,1,97,90,114,208,184,218,197,190,44,142, - 34,184,218,159,1,213,75,115,226,98,140,171,191,213,93,71,207,96,255,172, - 202,37,246,118,228,136,69,5,89,131,185,143,54,1,251,227,39,112,81,97, - 94,163,24,133,51,46,142,29,68,91,231,33,25,24,204,107,110,234,120,240, - 57,9,207,81,173,213,149,34,79,34,144,63,187,67,252,180,34,188,62,119, - 147,202,107,174,199,246,5,155,239,13,17,95,20,76,88,84,254,102,102,138, - 205,247,134,152,55,199,236,175,120,37,109,209,59,89,224,49,34,249,252,243, - 114,96,5,151,4,121,4,87,238,131,171,78,243,46,139,71,202,233,201,29, - 48,174,244,198,89,59,32,106,247,121,254,114,149,180,76,201,162,75,133,62, - 53,235,182,209,58,201,190,87,111,152,154,249,112,13,26,124,235,241,161,6, - 158,142,71,138,239,250,220,243,192,180,210,11,231,83,150,229,212,101,241,55, - 111,104,91,94,132,234,68,38,199,228,102,179,133,105,187,43,10,253,109,117, - 15,197,28,209,118,86,93,174,6,247,144,69,211,219,112,221,112,97,83,210, - 239,30,215,161,102,174,25,92,126,114,133,121,67,22,181,176,168,69,18,116, - 243,133,94,180,99,236,235,78,116,81,22,166,228,17,204,56,171,245,121,116, - 12,201,167,206,231,98,21,25,22,209,159,237,11,210,77,31,179,150,216,239, - 22,136,151,139,69,214,111,111,251,34,143,12,253,203,163,191,115,14,157,54, - 193,27,10,121,98,16,23,75,175,91,137,232,146,158,194,94,19,110,42,249, - 149,148,228,229,110,17,141,141,65,156,183,249,121,219,23,5,234,39,20,234, - 252,158,173,113,239,147,60,136,242,252,245,182,191,207,16,92,92,185,27,130, - 171,18,123,197,153,70,203,177,166,253,25,141,248,162,160,245,217,106,215,225, - 195,60,74,31,142,227,8,238,97,40,223,52,249,84,229,161,61,151,79,77, - 250,159,135,221,111,231,250,39,47,87,234,111,30,157,168,250,88,20,69,121, - 4,167,212,135,156,29,220,160,65,131,111,58,62,212,127,165,82,138,55,222, - 188,202,185,115,142,212,172,141,29,89,61,196,146,171,14,245,34,19,143,50, - 17,150,154,120,179,26,220,78,215,77,21,120,116,218,75,220,114,142,252,65, - 180,117,105,186,76,72,82,33,186,201,22,249,101,129,188,230,70,216,4,209, - 182,66,94,91,179,195,124,110,136,125,81,184,199,179,197,223,142,164,35,141, - 23,57,74,81,170,207,103,66,141,242,182,217,254,188,19,191,121,67,194,36, - 179,12,11,76,81,83,43,17,22,128,248,156,37,248,156,68,180,99,184,146, - 58,98,74,83,87,243,202,182,245,245,47,245,90,22,185,1,116,12,234,210, - 238,248,28,178,99,136,47,0,89,212,21,41,139,176,7,55,31,99,224,26, - 136,87,92,93,113,107,118,238,58,79,74,251,185,6,234,117,129,26,165,216, - 215,39,149,167,7,221,178,106,180,120,175,166,241,25,117,171,39,252,60,65, - 153,220,234,196,75,62,154,219,150,182,143,192,94,224,133,23,175,242,242,167, - 221,121,248,30,184,32,12,115,155,174,179,208,68,108,13,26,60,123,120,106, - 130,19,34,66,107,205,171,159,215,92,121,254,37,224,120,66,192,195,136,174, - 44,50,169,143,224,60,234,162,177,248,17,227,114,14,85,148,213,168,198,68, - 45,196,237,204,200,184,44,174,40,63,63,155,27,103,174,75,204,27,210,145, - 224,1,118,202,18,124,231,210,213,182,74,144,3,39,10,209,231,139,151,87, - 216,136,57,32,7,243,202,246,149,17,61,184,246,3,241,230,57,39,155,153, - 149,250,221,106,218,22,54,223,27,58,98,19,177,75,35,94,195,73,250,163, - 109,78,90,65,236,122,243,236,85,137,62,33,31,220,42,7,69,218,81,134, - 26,34,129,29,73,54,159,14,49,63,164,16,94,40,178,173,146,159,255,10, - 162,45,233,39,37,193,137,100,167,44,116,12,230,178,201,111,0,204,107,18, - 241,114,200,60,154,33,39,115,18,102,116,219,9,157,86,247,96,92,78,241, - 254,78,162,71,145,196,147,11,147,170,233,73,79,110,187,210,87,17,197,69, - 237,203,124,255,23,62,77,183,227,20,147,85,135,158,2,65,208,144,89,131, - 6,31,7,60,53,193,249,59,214,241,184,203,143,253,153,239,4,138,190,51, - 33,162,156,220,30,55,154,171,143,224,234,106,54,110,218,242,123,139,49,23, - 164,91,76,31,152,62,139,181,168,136,76,90,114,64,178,79,137,178,154,201, - 60,92,58,47,202,171,210,45,194,135,135,203,136,79,151,239,212,183,174,135, - 77,126,249,88,136,97,71,146,118,150,238,51,175,101,47,227,172,218,243,101, - 235,102,112,94,73,17,231,179,8,38,170,146,102,208,215,168,215,12,242,179, - 247,157,108,102,92,184,144,228,199,246,181,178,8,218,223,63,40,234,99,128, - 125,41,200,137,90,134,58,143,36,1,236,117,80,231,139,212,96,250,201,210, - 91,159,157,135,28,24,218,159,209,200,31,168,146,174,21,89,251,199,139,238, - 24,226,188,197,142,36,234,117,247,188,252,50,39,238,119,219,23,216,107,2, - 49,206,154,225,123,26,253,109,109,54,59,151,206,19,237,122,226,48,143,204, - 92,86,63,11,97,242,168,158,180,248,224,103,79,110,94,241,91,117,191,121, - 233,202,75,92,255,228,229,220,127,82,136,45,237,246,163,73,181,73,79,54, - 104,240,108,226,67,253,103,74,185,167,31,46,248,174,207,15,243,62,183,58, - 1,137,181,241,17,209,149,163,189,179,103,195,197,112,224,4,15,176,221,5, - 124,226,19,191,207,61,211,161,173,238,113,78,174,24,4,53,33,14,16,39, - 69,138,240,229,207,72,244,245,177,139,174,130,160,82,131,242,81,137,111,216, - 22,67,9,98,200,28,16,175,24,87,107,243,24,131,56,25,19,237,133,35, - 152,215,207,229,68,162,46,237,48,173,135,47,188,250,197,131,8,192,159,122, - 22,105,149,73,43,159,175,150,137,82,236,72,230,142,41,242,122,245,237,211, - 87,199,165,125,9,182,237,108,26,119,95,96,175,143,137,181,40,210,141,231, - 198,149,168,208,180,2,76,43,64,94,23,196,45,139,141,247,46,138,204,206, - 69,76,168,92,151,28,24,204,149,49,108,75,61,127,99,72,159,203,82,162, - 215,193,198,123,70,177,59,200,249,254,121,132,136,75,253,107,79,56,48,15, - 56,140,224,30,94,131,139,243,207,203,217,233,111,39,44,1,247,217,106,71, - 231,121,233,165,43,36,251,93,197,162,43,8,2,58,81,155,40,138,106,71, - 229,52,233,201,6,13,158,77,60,53,193,25,99,80,170,135,177,35,254,200, - 247,110,248,217,63,115,137,52,57,193,218,152,32,188,255,200,231,31,166,40, - 171,40,167,23,235,84,119,69,138,114,167,47,228,109,2,213,19,116,106,71, - 23,193,185,197,244,214,43,1,193,151,231,164,81,39,39,50,63,255,205,71, - 59,190,5,192,46,12,68,179,124,207,226,39,108,37,181,104,89,184,52,222, - 86,162,46,207,29,1,102,1,129,29,26,183,191,73,169,249,59,222,51,182, - 17,34,106,161,126,66,177,185,24,98,91,231,138,104,110,6,201,203,93,228, - 223,200,102,181,217,200,17,233,197,56,63,174,28,152,92,152,98,207,11,228, - 96,158,19,214,28,8,255,140,83,20,218,145,196,180,2,122,173,172,87,235, - 26,168,107,115,34,101,115,209,136,248,242,210,157,195,72,22,169,212,47,90, - 228,15,103,164,209,49,140,124,122,50,251,110,135,142,236,214,178,133,62,47, - 73,206,223,103,219,142,243,115,176,175,75,212,119,36,238,245,115,154,31,244, - 106,131,26,62,96,249,189,213,168,176,80,184,186,23,45,178,207,85,234,169, - 41,174,65,94,136,184,164,162,116,105,69,91,19,26,151,219,4,220,251,227, - 73,109,6,76,179,239,115,220,103,171,72,77,10,177,4,123,153,139,227,79, - 243,229,31,252,18,50,184,65,216,106,231,81,92,80,211,192,29,4,33,109, - 233,197,37,199,169,235,6,13,26,60,27,248,16,41,74,73,146,36,104,157, - 112,225,194,69,62,247,61,87,243,22,128,100,159,62,193,196,238,42,142,103, - 117,61,70,138,232,96,14,92,25,229,8,14,92,100,86,238,211,10,98,39, - 14,241,117,179,218,115,138,90,152,235,146,205,197,98,177,243,139,61,29,227, - 100,250,151,77,222,184,13,46,69,120,208,181,128,141,139,28,92,167,111,217, - 172,150,149,191,87,250,199,196,65,196,155,145,86,142,107,213,125,151,151,124, - 25,234,226,252,160,114,222,0,108,37,65,87,209,107,37,21,37,39,56,98, - 141,246,213,69,219,215,227,236,200,93,119,175,149,176,232,182,233,200,118,94, - 211,3,39,168,49,151,77,46,108,1,39,68,202,175,33,35,194,112,183,207, - 199,217,120,196,226,14,143,11,33,98,172,141,8,147,32,239,131,59,28,151, - 3,212,212,222,224,112,122,128,219,110,198,133,11,215,121,253,85,147,215,223, - 202,17,92,25,190,254,38,90,170,233,129,107,208,224,25,199,135,78,81,134, - 193,6,41,37,95,248,210,203,92,185,236,200,200,11,70,202,179,184,160,72, - 85,62,60,93,25,1,29,158,196,170,171,46,130,75,14,60,47,251,93,133, - 254,54,224,162,42,22,252,44,53,41,94,116,53,41,111,97,85,7,213,239, - 210,254,140,174,144,160,21,89,244,18,237,144,215,69,53,229,55,12,17,19, - 138,116,99,246,221,138,216,73,234,51,162,40,215,225,196,139,238,252,192,17, - 141,56,111,157,43,72,181,84,228,234,133,175,201,66,96,226,17,101,202,200, - 108,159,158,16,163,231,181,75,185,146,169,34,163,22,116,172,139,220,178,109, - 203,132,8,20,226,146,173,172,16,179,199,224,98,233,177,44,77,41,162,22, - 242,186,32,248,142,108,2,195,58,64,239,123,121,171,132,16,190,6,86,245, - 9,189,191,60,72,87,174,5,99,117,182,19,136,181,81,182,175,194,201,36, - 142,221,205,130,83,228,206,14,156,75,14,231,190,21,233,75,107,7,8,34, - 190,253,219,190,135,139,151,63,193,102,91,220,116,180,219,109,130,32,32,34, - 155,247,103,158,198,67,179,65,131,6,223,42,124,40,130,211,233,134,32,60, - 71,28,239,185,252,66,192,155,95,188,136,181,119,145,162,74,56,135,68,87, - 135,39,157,232,125,136,181,113,141,222,222,170,171,42,64,200,166,52,99,16, - 99,75,167,111,93,63,91,134,244,147,146,224,13,69,250,221,234,40,138,139, - 181,112,68,214,142,97,34,242,58,88,126,222,153,130,81,94,61,142,240,60, - 169,0,142,48,50,146,83,189,180,112,19,121,24,162,162,253,160,18,105,141, - 65,188,38,170,181,186,51,224,4,33,160,199,69,67,190,21,49,54,222,231, - 34,24,177,112,231,41,38,117,123,200,182,201,174,197,48,70,159,151,46,58, - 221,10,71,128,98,231,250,235,112,238,46,233,97,239,191,62,54,3,40,92, - 102,58,40,249,60,145,45,236,221,116,111,204,76,43,58,237,250,26,155,39, - 183,178,147,73,187,101,48,118,126,64,110,91,138,187,131,25,126,88,174,219, - 199,50,175,191,93,24,95,225,251,223,120,137,245,170,71,29,68,212,35,138, - 34,122,93,155,167,39,125,244,214,120,80,54,104,240,236,226,169,9,46,73, - 18,84,137,36,78,206,181,248,107,127,243,7,185,114,249,34,65,120,31,81, - 227,253,87,216,39,29,147,221,227,244,193,21,40,38,122,67,93,47,156,251, - 91,120,32,246,16,93,237,22,247,161,169,142,112,153,8,196,101,117,148,82, - 4,215,10,0,142,20,228,24,182,109,85,33,27,97,163,188,121,186,253,25, - 93,235,78,226,23,127,182,50,143,140,228,184,136,176,202,207,209,90,231,199, - 43,183,25,248,72,107,45,91,216,145,204,201,40,223,55,46,98,242,251,242, - 164,69,36,144,215,93,63,90,158,200,205,200,86,94,23,206,151,50,139,222, - 236,52,75,163,198,237,236,218,218,196,173,236,250,179,182,9,153,17,134,152, - 128,149,109,232,24,244,58,32,156,134,121,52,185,234,110,49,51,176,139,9, - 139,217,57,22,7,17,168,139,174,139,247,123,212,183,220,51,29,82,49,32, - 21,39,249,227,219,93,144,167,53,203,40,63,230,35,56,111,5,87,223,22, - 224,175,188,236,106,82,244,85,126,223,247,125,129,151,94,186,146,239,243,172, - 244,164,135,200,166,137,55,245,183,6,13,158,109,124,136,105,2,238,159,124, - 191,215,68,81,11,176,92,126,33,224,167,127,250,60,251,253,105,190,93,29, - 209,65,77,250,242,137,34,184,2,169,112,119,225,154,17,154,81,46,69,223, - 167,213,197,71,94,184,200,189,77,72,172,5,139,110,73,153,57,114,209,136, - 237,110,29,105,120,89,253,212,145,87,165,182,117,85,22,194,141,18,34,101, - 29,17,76,4,50,212,5,185,224,8,168,92,167,42,239,203,14,77,81,87, - 203,8,175,220,24,110,71,84,83,162,62,141,120,34,17,67,89,33,55,32, - 111,182,246,164,101,135,6,125,222,145,161,104,199,249,249,228,56,55,169,180, - 50,136,137,75,51,138,210,75,238,235,113,229,8,206,255,46,76,17,185,229, - 81,218,69,69,191,221,67,156,43,135,131,78,48,98,109,228,198,229,28,96, - 190,170,94,199,194,20,81,145,16,199,159,157,195,199,54,27,147,153,12,120, - 83,101,47,42,41,55,117,239,10,98,19,62,157,25,211,105,127,138,47,190, - 249,5,218,221,247,104,119,223,227,98,164,73,244,222,165,39,195,48,87,79, - 66,181,255,173,33,183,6,13,158,125,124,136,20,165,69,169,94,254,143,110, - 109,76,183,163,249,129,47,255,32,87,47,127,186,180,93,85,170,93,23,213, - 249,199,5,81,197,173,196,225,201,196,42,221,246,33,1,29,47,144,131,75, - 29,39,103,63,72,253,137,161,75,63,166,53,82,112,0,125,82,109,222,174, - 156,165,178,200,151,138,69,189,34,244,203,162,182,188,22,149,117,111,31,138, - 1,237,208,228,127,59,132,105,5,136,133,35,88,115,217,160,79,106,54,234, - 24,244,208,17,141,39,89,59,162,154,42,205,16,107,129,57,87,60,190,232, - 182,157,242,209,203,254,227,227,243,88,38,197,99,250,4,236,193,91,163,79, - 91,76,247,33,230,249,19,236,212,160,245,16,179,44,24,90,136,152,109,92, - 159,6,124,18,248,8,206,238,182,142,220,76,17,161,29,91,114,249,134,238, - 42,185,1,8,198,252,137,63,246,51,188,252,105,77,178,119,23,179,228,19, - 133,131,73,169,39,50,138,58,4,65,216,216,115,53,104,240,49,194,83,255, - 135,122,161,72,24,134,24,163,73,146,144,48,216,240,35,127,44,226,39,127, - 234,143,100,91,85,45,250,207,34,57,113,208,235,86,141,230,30,223,189,98, - 110,116,30,193,249,185,112,117,208,93,151,210,44,55,101,123,169,187,12,117, - 110,114,12,213,136,71,245,171,34,3,97,163,74,31,88,254,56,142,100,210, - 112,66,56,205,162,145,184,141,82,42,79,249,213,18,212,225,49,179,54,131, - 124,252,142,143,248,38,130,160,171,138,200,176,148,250,244,56,20,141,84,196, - 40,177,83,63,138,158,206,73,107,16,238,92,218,81,236,142,136,235,144,116, - 237,8,130,108,252,80,56,13,81,74,145,46,38,44,116,245,230,100,99,178, - 155,159,141,98,149,190,84,73,45,182,91,9,135,55,31,169,56,97,106,186, - 40,83,144,96,93,138,18,160,211,82,180,56,171,255,172,44,46,41,38,118, - 31,237,163,253,73,126,242,79,127,63,38,189,206,165,115,123,146,253,46,111, - 238,62,108,15,104,220,75,26,52,248,248,225,67,164,40,139,69,72,74,69, - 171,165,16,114,76,186,141,249,187,127,239,34,175,189,242,121,218,225,105,230, - 22,49,194,112,135,118,107,9,25,129,9,102,57,209,149,199,154,60,58,130, - 43,126,223,166,207,243,222,238,34,169,24,176,211,23,8,248,20,227,206,204, - 45,138,178,91,18,50,20,207,9,79,79,104,127,223,45,248,35,29,130,104, - 139,25,22,11,89,252,114,130,126,81,145,70,29,87,67,138,247,57,137,8, - 27,129,93,96,175,137,202,115,108,119,139,216,100,4,116,109,94,52,113,79, - 4,65,50,117,105,195,184,157,215,214,114,194,203,182,1,215,52,158,167,70, - 69,113,174,222,59,82,93,202,162,220,133,75,61,170,235,238,184,224,82,136, - 78,21,105,96,218,65,92,155,35,22,50,79,37,202,235,2,241,105,151,206, - 28,77,59,68,139,200,165,32,183,18,213,90,99,15,156,243,133,117,231,42, - 218,144,110,52,196,237,252,156,250,217,117,50,17,57,9,218,197,132,116,58, - 68,169,5,131,117,135,238,226,18,235,231,5,139,151,47,98,55,10,99,70, - 232,228,88,158,186,219,135,184,155,159,45,66,186,233,217,83,211,101,34,55, - 180,3,153,15,24,21,217,64,62,71,116,109,160,237,82,148,114,145,43,101, - 183,187,37,150,91,88,238,0,239,83,244,188,237,220,119,241,110,37,114,115, - 59,188,204,223,253,207,127,130,193,36,68,6,55,120,176,26,16,182,218,116, - 58,22,147,168,163,230,238,186,1,167,77,131,119,131,6,207,54,190,105,57, - 22,41,21,74,73,68,75,209,82,125,254,218,223,254,2,189,193,103,105,181, - 206,99,185,133,32,34,222,107,218,173,36,175,149,192,97,84,87,119,183,126, - 24,193,181,43,219,93,140,28,113,248,90,156,199,97,13,206,136,231,1,176, - 107,79,64,46,29,233,163,45,112,181,52,59,114,253,104,117,130,147,135,169, - 22,219,186,190,38,147,79,19,208,195,66,64,178,115,53,76,127,12,123,127, - 118,188,189,71,205,121,228,41,71,223,128,93,83,167,202,183,173,81,70,150, - 35,180,113,39,27,192,58,31,231,205,217,197,201,148,148,151,11,131,100,230, - 190,198,78,12,163,247,61,150,73,145,226,93,38,154,245,202,157,127,239,61, - 139,213,238,61,89,39,89,218,212,75,251,107,166,173,111,211,231,153,200,13, - 162,171,115,114,115,168,143,224,183,113,128,221,109,217,110,203,53,61,47,44, - 241,63,207,136,218,125,90,109,127,252,172,246,102,7,252,196,159,248,41,46, - 191,124,145,94,191,26,233,27,19,209,234,86,255,45,124,244,86,78,79,54, - 104,208,224,217,199,55,181,136,224,34,185,22,74,133,252,228,143,183,249,185, - 159,255,18,201,190,58,113,57,222,235,35,15,192,195,126,165,227,40,174,140, - 162,158,146,163,87,136,56,246,166,135,16,49,173,160,42,236,144,246,61,0, - 150,201,8,189,239,33,175,3,39,18,203,2,43,39,88,17,187,212,96,214, - 10,0,199,169,57,182,153,32,197,171,14,125,127,88,199,178,83,214,201,255, - 71,206,229,164,140,233,62,4,181,200,133,57,122,223,131,78,219,165,4,135, - 198,69,112,7,56,114,240,199,59,164,84,211,155,194,182,143,196,38,224,212, - 142,190,198,103,119,197,190,180,214,238,203,19,105,38,6,241,234,72,43,139, - 107,86,173,53,90,107,103,221,37,38,121,84,232,118,228,72,99,16,42,116, - 78,132,153,152,68,15,88,92,184,12,128,49,197,115,202,233,198,176,213,167, - 252,62,118,2,247,254,120,7,147,67,84,133,37,142,161,29,185,77,179,207, - 207,140,66,88,226,90,2,44,51,226,221,138,93,92,253,44,92,154,124,129, - 47,190,249,5,46,93,25,147,154,57,97,171,93,107,205,21,170,128,110,77, - 57,182,17,152,52,104,240,241,192,55,189,74,30,134,97,190,0,252,252,95, - 188,206,235,175,158,63,218,38,10,61,233,85,103,115,85,235,36,135,67,218, - 106,142,213,106,51,53,93,210,205,121,116,111,92,145,152,215,65,125,61,59, - 206,90,145,94,29,23,130,12,227,66,151,72,89,23,85,249,177,47,157,234, - 194,40,162,86,30,17,217,17,69,243,118,188,119,17,92,38,189,247,4,152, - 134,110,227,161,138,177,139,9,90,235,74,157,202,137,90,64,236,31,84,142, - 19,41,155,55,132,67,33,132,49,140,157,228,95,41,216,74,132,109,99,119, - 153,210,113,91,255,86,122,181,99,56,13,29,177,102,100,164,148,66,107,93, - 17,154,0,176,117,163,111,210,141,139,208,60,41,203,129,75,21,46,186,237, - 156,20,237,90,177,76,70,108,140,96,153,140,176,27,133,213,3,140,25,97, - 204,152,7,243,107,172,182,19,244,254,132,245,162,154,166,116,55,62,197,107, - 177,77,159,103,122,86,35,181,141,75,195,82,75,227,147,196,22,203,14,195, - 29,10,59,174,130,220,132,88,130,184,87,73,79,182,218,67,126,236,71,190, - 228,132,37,122,159,139,75,58,29,75,168,90,4,97,136,10,66,66,21,160, - 194,0,99,11,113,137,123,221,68,211,251,214,160,193,199,4,31,153,12,172, - 27,8,190,237,101,193,127,245,247,222,224,210,73,102,96,156,69,0,113,226, - 102,185,249,158,36,203,236,40,170,171,226,56,77,181,88,187,91,107,127,231, - 109,55,229,122,136,91,180,92,31,92,177,136,154,11,159,197,110,92,196,17, - 244,12,226,58,108,15,36,234,98,114,252,152,135,21,241,113,243,54,133,149, - 85,93,212,85,17,94,232,33,147,153,35,113,61,15,28,1,150,253,42,71, - 85,107,43,247,88,225,3,41,70,89,15,90,230,210,111,119,46,26,244,253, - 106,62,5,154,167,93,39,130,52,156,144,46,11,162,66,45,42,169,71,209, - 211,85,53,103,167,93,73,147,106,173,143,172,187,192,145,155,214,67,87,103, - 91,142,49,203,113,78,110,235,100,200,86,27,130,104,136,102,196,3,211,175, - 60,183,152,38,80,141,196,15,163,168,226,9,209,81,107,128,96,154,9,157, - 238,148,218,2,170,205,220,199,39,125,129,63,254,230,127,194,143,255,185,47, - 3,228,228,230,143,235,157,75,192,77,238,110,9,125,208,26,224,136,205,152, - 179,93,86,26,52,104,240,236,224,155,74,112,78,77,89,200,244,237,94,243, - 133,31,120,145,191,245,11,111,114,114,238,42,134,59,89,244,22,149,200,173, - 100,155,116,240,187,67,253,200,156,157,124,238,232,49,221,29,149,220,234,189, - 91,134,155,72,224,107,112,29,221,99,171,199,44,212,61,196,68,210,233,59, - 178,136,181,139,130,196,80,18,61,127,236,207,232,77,138,245,73,38,189,159, - 23,245,50,47,70,177,34,174,119,3,201,8,197,174,21,211,82,205,79,12, - 167,149,134,239,179,96,18,133,88,72,150,73,150,214,140,247,78,12,178,119, - 66,159,60,138,243,219,15,103,44,186,109,228,216,17,24,144,111,187,208,145, - 35,167,125,175,32,223,137,192,48,102,182,237,161,231,238,92,146,137,123,31, - 149,82,8,219,198,44,71,48,113,31,151,100,228,110,84,54,70,228,117,54, - 99,70,44,119,151,89,39,67,244,254,4,203,132,211,120,200,78,95,168,184, - 148,84,225,109,217,92,52,222,183,142,192,85,230,78,18,117,206,48,7,245, - 150,111,220,194,145,218,157,236,107,158,221,44,197,71,162,18,107,7,124,254, - 213,159,206,123,222,252,49,189,247,100,186,203,94,75,19,209,107,183,208,166, - 75,171,55,58,106,13,128,102,122,64,131,6,31,23,124,211,107,112,229,244, - 77,187,239,22,175,191,240,87,126,152,159,251,249,47,241,220,73,64,156,164, - 88,38,121,3,120,209,8,62,59,104,31,40,23,63,202,17,156,75,107,46, - 14,186,0,146,232,18,198,68,121,157,167,42,50,217,113,127,235,22,165,13, - 146,246,42,147,234,79,38,121,154,210,195,167,21,235,16,107,81,144,85,185, - 65,58,155,42,240,56,24,132,78,82,239,78,96,120,68,136,158,136,192,73, - 241,203,125,122,131,139,123,215,224,221,178,71,82,254,184,101,243,115,19,11, - 201,32,220,97,101,145,74,204,197,53,25,42,191,139,99,47,207,237,233,224, - 232,124,42,231,153,69,111,64,30,181,121,60,48,125,78,227,172,85,66,12, - 142,4,64,117,104,71,42,127,15,31,138,220,199,244,110,118,35,244,62,78, - 49,57,63,147,216,176,23,248,236,167,126,132,159,251,11,63,200,107,223,115, - 129,7,127,176,169,212,221,218,237,54,173,174,36,234,116,232,118,45,42,12, - 232,117,143,155,243,155,244,100,131,6,31,47,124,36,41,202,48,12,105,181, - 156,170,178,215,27,208,13,4,255,229,223,249,20,63,251,115,127,137,86,235, - 229,18,145,109,75,95,14,15,155,221,229,16,17,181,143,213,140,190,111,201, - 55,122,139,78,82,177,234,186,16,189,11,128,236,149,148,129,3,23,149,204, - 182,61,162,164,88,228,115,49,69,77,143,155,26,185,116,235,50,105,163,252, - 84,160,210,118,214,51,86,137,52,202,86,85,101,213,161,106,173,153,13,199, - 199,70,199,249,190,118,21,51,228,69,187,87,241,148,44,163,220,126,160,135, - 67,196,28,68,118,25,65,226,106,140,11,246,48,59,176,161,82,11,196,68, - 34,153,49,220,21,119,13,67,21,187,116,166,90,84,90,23,250,237,30,65, - 207,176,49,2,217,233,99,76,149,28,245,222,21,14,39,145,34,178,207,209, - 205,110,32,226,232,83,217,22,59,194,221,35,39,155,146,166,15,155,245,198, - 129,99,73,53,106,171,54,115,71,124,199,167,190,196,95,254,171,63,195,171, - 223,121,194,106,126,135,115,47,84,107,125,113,44,81,178,95,17,150,4,129, - 170,68,111,13,185,53,104,240,241,195,71,86,131,179,54,102,159,165,11,181, - 78,8,90,115,254,211,255,226,69,254,206,223,250,15,177,68,116,218,239,226, - 162,177,78,246,53,205,191,220,194,181,165,16,154,120,183,147,227,148,85,40, - 187,44,249,4,105,146,176,23,39,32,23,64,27,187,219,102,150,97,17,112, - 9,128,25,47,98,214,11,148,88,16,189,235,220,86,212,231,221,126,124,106, - 14,64,140,102,248,225,224,115,178,20,164,79,1,110,119,69,221,236,162,66, - 108,58,108,219,177,139,160,166,29,228,96,238,8,210,58,81,198,32,171,21, - 106,61,68,235,33,93,57,97,99,166,44,102,46,58,26,132,42,183,14,179, - 242,156,35,21,143,184,237,172,182,178,17,60,147,231,29,1,69,123,225,234, - 109,25,1,65,169,214,39,70,168,197,130,69,183,77,154,145,237,116,28,185, - 99,47,46,209,149,19,150,137,102,153,140,24,172,59,216,197,4,49,206,196, - 35,98,4,58,35,44,95,167,211,195,194,213,100,106,144,215,97,177,204,212, - 160,89,173,114,157,12,177,76,72,121,9,219,26,17,217,231,216,110,47,16, - 203,107,108,244,28,221,27,163,130,203,72,113,19,107,71,44,226,89,37,13, - 61,28,8,244,190,143,73,20,82,198,116,100,54,33,96,59,43,245,191,185, - 186,155,16,91,224,119,129,27,192,77,200,234,183,199,125,110,23,192,94,200, - 201,237,51,175,4,164,102,126,52,14,167,221,110,51,158,180,9,90,217,141, - 135,26,34,85,255,136,220,14,93,75,180,62,219,72,160,65,131,6,207,6, - 62,50,130,19,34,202,22,134,34,186,185,216,83,252,232,159,90,242,55,254, - 250,95,193,218,215,128,9,46,197,244,62,5,153,57,225,64,33,249,62,70, - 188,43,234,124,50,212,68,81,54,117,186,52,244,114,187,77,179,69,212,203, - 198,29,210,244,42,155,233,183,177,85,110,129,74,75,57,194,92,92,49,17, - 174,29,64,182,43,253,109,157,76,66,47,199,206,249,3,170,141,217,144,73, - 248,39,242,192,139,241,16,78,10,239,83,149,131,112,119,60,179,13,220,248, - 27,56,50,112,174,244,202,233,97,81,139,203,210,142,118,104,24,92,220,99, - 135,214,17,214,172,197,198,8,196,162,184,150,174,44,82,112,169,152,20,227, - 111,212,188,226,135,89,222,6,32,221,21,74,213,195,212,36,192,118,123,129, - 180,223,39,237,247,17,93,141,102,146,75,255,221,188,64,87,63,139,90,10, - 47,0,154,207,111,2,208,233,15,145,106,192,131,133,161,159,93,98,46,46, - 177,243,108,212,210,93,12,51,224,22,197,141,79,125,90,243,59,62,245,37, - 254,218,95,120,157,207,188,18,16,200,17,201,126,151,15,50,133,204,181,38, - 139,202,90,129,204,39,6,212,65,235,106,148,93,55,185,190,65,131,6,207, - 22,62,66,51,61,39,103,247,234,189,145,154,209,234,238,248,228,103,94,230, - 231,255,226,117,254,254,127,251,179,124,215,171,175,0,99,162,208,247,68,149, - 149,148,101,179,220,50,218,248,59,250,64,142,136,99,73,28,187,203,24,116, - 67,231,75,104,231,88,238,208,9,143,157,76,22,107,193,118,240,28,189,247, - 44,102,225,22,179,241,11,173,163,26,21,20,81,157,94,7,232,117,224,132, - 38,157,170,162,83,216,54,209,94,84,29,74,252,243,75,106,197,245,42,168, - 16,204,32,84,40,181,112,34,144,115,69,100,234,201,37,214,162,226,7,105, - 71,48,27,22,219,45,116,4,122,136,154,21,17,159,136,74,106,197,131,186, - 154,39,180,242,57,248,116,169,29,218,234,246,217,113,203,10,208,192,78,97, - 34,9,218,247,233,74,139,221,40,130,65,166,230,100,130,102,194,52,214,116, - 178,243,239,170,98,127,190,113,219,205,106,115,131,77,227,253,109,220,123,220, - 102,52,186,6,192,124,238,110,80,78,46,14,216,154,62,157,118,154,183,7, - 184,200,237,46,134,59,8,126,39,219,243,29,16,111,129,184,87,188,78,118, - 0,246,50,127,233,103,126,138,191,252,87,127,134,235,223,253,25,0,182,241, - 7,132,45,119,93,253,238,128,118,187,77,167,61,170,56,150,104,211,205,83, - 147,126,98,55,56,207,201,195,244,100,35,52,105,208,224,217,199,195,229,123, - 79,9,99,138,187,93,173,53,157,78,135,249,106,12,218,32,152,113,249,133, - 17,127,242,167,174,114,245,202,27,252,195,255,225,42,255,219,63,254,39,128, - 95,13,246,252,158,0,0,28,120,73,68,65,84,164,102,148,165,253,157,118, - 192,246,64,80,225,107,112,110,209,35,247,14,180,38,202,38,59,223,195,114, - 147,56,241,105,80,183,176,69,246,57,198,151,52,139,223,254,167,180,94,206, - 4,25,82,209,55,19,214,201,3,208,17,3,112,209,87,214,27,87,38,174, - 112,26,162,117,128,156,0,179,172,54,182,131,233,190,207,164,149,56,101,34, - 123,6,99,3,72,176,99,150,73,65,40,43,169,96,229,198,246,44,19,205, - 32,204,134,155,102,234,68,49,114,199,140,181,112,41,209,104,135,29,9,252, - 30,60,191,169,251,48,28,187,20,91,26,78,96,13,195,94,139,116,45,81, - 100,253,114,217,62,23,203,57,112,142,141,1,43,149,27,25,180,185,192,166, - 91,47,117,183,107,133,206,134,141,14,85,12,218,25,40,15,206,73,192,160, - 39,19,54,6,100,167,79,178,168,214,40,39,145,98,153,21,254,150,90,146, - 114,142,97,59,19,171,164,239,18,181,238,177,219,151,223,223,204,12,89,223, - 0,46,16,69,6,163,55,44,87,78,73,185,221,5,8,49,207,90,2,238, - 98,185,131,224,125,224,22,136,119,243,227,182,218,67,246,187,5,214,14,248, - 236,167,126,132,31,253,177,159,230,245,87,13,23,47,159,144,154,57,201,126, - 151,139,74,18,189,103,183,219,209,235,247,115,114,243,24,13,229,145,106,178, - 213,106,136,172,65,131,143,43,62,18,130,147,82,230,36,167,148,98,191,79, - 233,119,206,161,181,101,189,94,34,197,154,182,136,121,245,245,14,191,112,253, - 135,248,129,55,175,241,139,255,253,47,243,27,191,249,111,136,194,62,113,114, - 27,191,8,110,119,41,229,168,13,118,121,138,210,167,155,194,164,75,74,194, - 70,200,220,89,222,213,241,220,44,176,139,147,23,249,242,15,253,16,176,97, - 181,88,51,124,233,121,140,1,41,231,88,61,64,99,232,173,96,205,3,200, - 248,108,182,237,49,92,43,68,73,148,178,96,207,144,76,72,34,12,90,47, - 65,15,25,2,122,239,8,103,72,139,180,123,30,49,49,108,178,58,156,111, - 128,238,98,216,32,97,179,68,116,207,177,76,30,48,164,16,131,32,70,16, - 111,136,124,196,25,183,97,146,0,182,18,229,165,225,132,37,219,188,190,7, - 78,200,210,149,176,104,165,12,8,208,147,137,123,94,150,30,244,174,254,118, - 9,66,45,49,203,49,66,41,116,63,101,99,4,195,137,204,39,0,4,90, - 99,215,10,49,116,132,55,236,181,208,211,17,118,29,176,150,22,129,70,175, - 68,94,123,211,76,48,123,144,145,75,99,106,38,244,213,8,208,24,160,213, - 27,241,210,75,17,63,246,163,154,95,249,213,95,230,238,253,59,217,123,51, - 118,223,213,245,163,207,80,208,210,116,218,41,130,41,38,139,200,5,55,128, - 57,173,104,206,126,231,136,109,23,91,164,61,33,106,189,204,143,252,224,15, - 240,197,55,221,108,183,118,247,61,182,241,7,238,243,209,106,19,200,17,125, - 251,62,72,208,157,144,32,8,80,153,191,100,217,111,178,26,185,101,67,92, - 155,104,173,65,131,143,37,62,18,130,43,67,74,73,171,21,160,181,70,41, - 65,175,231,238,232,101,152,34,87,146,180,125,155,63,250,71,67,174,94,121, - 131,95,250,95,174,241,191,255,31,255,140,248,254,138,34,61,121,88,235,40, - 238,184,253,157,121,171,43,105,71,61,88,222,167,219,219,179,221,221,2,98, - 46,78,6,252,201,31,254,44,111,254,240,23,249,252,119,36,8,35,73,54, - 19,102,241,130,97,207,50,91,78,24,15,166,172,128,190,116,105,188,101,34, - 232,77,128,19,133,214,41,106,189,64,235,204,76,152,14,22,208,98,132,228, - 62,11,29,49,200,82,155,90,15,217,152,41,140,247,116,1,123,71,98,46, - 13,17,106,153,55,64,175,112,164,10,142,244,68,247,28,139,217,3,70,64, - 167,111,49,184,136,215,47,167,90,107,16,35,182,237,37,209,68,226,8,43, - 195,236,57,180,44,215,139,68,214,187,240,193,209,123,80,150,243,131,203,75, - 27,51,66,169,165,75,157,118,53,233,238,4,197,61,54,70,48,200,154,184, - 55,122,75,87,15,9,112,145,229,237,231,4,39,157,30,150,185,83,163,150, - 34,107,25,77,216,174,3,186,163,17,54,155,162,103,2,71,170,42,12,120, - 245,187,47,241,183,94,8,120,245,151,44,255,235,47,189,195,111,255,238,239, - 102,17,182,123,127,71,35,247,28,109,86,40,217,71,167,69,106,58,106,221, - 35,222,251,27,150,45,187,216,34,184,192,62,142,232,180,3,62,243,233,31, - 225,203,63,248,37,94,123,245,50,231,95,184,71,178,191,65,49,244,214,145, - 155,16,91,86,140,233,245,251,12,3,72,130,48,175,187,69,81,39,119,42, - 17,45,85,17,150,52,228,214,160,193,199,23,31,57,193,121,248,72,174,12, - 169,250,140,38,184,175,193,140,43,127,243,58,63,254,211,215,248,218,111,124, - 131,127,240,15,254,39,150,155,128,237,206,219,122,141,41,200,206,45,156,190, - 166,2,176,94,46,88,109,150,4,226,109,46,157,192,159,255,249,63,207,15, - 124,241,37,94,255,206,136,253,246,247,216,175,92,212,39,163,9,38,6,187, - 155,51,236,77,115,175,196,21,32,231,146,46,6,13,116,52,136,197,2,61, - 28,186,177,47,102,196,32,44,68,44,128,147,220,135,142,220,196,66,64,255, - 92,94,70,92,93,202,250,229,50,114,11,23,17,187,190,59,255,169,90,115, - 89,119,136,51,207,202,100,52,70,94,5,129,139,122,245,218,13,62,13,186, - 138,227,241,170,85,136,133,64,78,230,96,52,8,75,47,248,4,166,37,89, - 75,235,46,170,116,14,101,132,139,136,15,78,36,231,49,206,141,228,82,15, - 117,227,94,101,155,193,186,131,198,69,113,171,210,66,111,55,10,157,28,183, - 80,164,253,62,59,45,233,43,152,105,197,73,95,146,210,65,39,41,138,251, - 92,185,114,194,207,254,199,255,1,95,126,243,77,254,237,111,222,224,159,255, - 211,95,230,31,255,95,255,152,197,210,50,159,207,57,185,208,39,160,67,186, - 39,143,174,172,189,203,118,191,206,106,119,153,147,11,17,81,251,114,30,177, - 189,252,105,77,216,106,147,236,111,3,237,252,115,209,237,12,232,219,25,59, - 53,70,134,46,141,173,100,31,17,89,122,153,21,87,153,220,14,85,147,13, - 185,53,104,240,241,198,71,78,112,101,91,163,48,116,203,181,78,55,244,59, - 231,216,171,61,139,249,251,0,244,6,3,80,130,151,63,245,128,23,46,95, - 225,143,255,248,127,195,175,252,139,111,240,7,183,83,110,190,245,14,55,110, - 221,96,23,159,114,255,193,133,124,127,237,206,4,149,90,246,27,67,171,27, - 242,185,87,62,197,47,252,215,159,224,11,95,122,153,81,255,14,58,73,145, - 233,148,174,208,116,7,17,179,37,25,133,184,136,100,163,71,8,166,140,183, - 123,32,66,143,231,108,144,12,70,35,244,220,109,35,22,2,155,45,116,203, - 174,166,43,39,172,165,162,215,189,0,156,178,76,70,244,86,89,125,109,3, - 162,123,143,197,133,207,35,153,99,204,40,143,216,238,137,14,23,86,91,146, - 33,156,232,30,96,48,203,49,242,242,29,88,128,89,95,64,141,239,2,153, - 79,228,26,130,46,133,219,202,24,230,89,31,219,32,203,162,109,140,160,135, - 23,179,8,54,6,186,0,159,50,200,206,0,179,93,149,156,70,198,108,181, - 161,23,46,80,179,75,36,195,152,19,221,67,246,45,102,187,66,222,93,101, - 115,242,234,123,242,58,186,199,148,45,214,142,56,101,131,215,136,234,236,39, - 95,123,235,103,226,146,147,44,34,11,85,64,167,37,72,2,131,209,43,148, - 132,111,127,245,28,151,94,188,200,143,254,241,63,203,207,255,246,27,160,174, - 115,114,225,38,219,245,7,174,102,215,234,16,166,174,190,26,182,2,38,131, - 128,231,159,127,133,235,87,255,20,215,94,190,194,11,47,6,188,244,210,21, - 158,127,33,96,21,47,193,46,216,197,186,82,103,243,109,0,75,62,65,11, - 104,183,39,89,43,128,38,108,157,71,201,77,150,150,172,78,10,168,107,9, - 40,127,150,27,210,107,208,224,227,3,97,173,173,215,69,127,4,112,117,57, - 119,184,114,143,92,28,199,164,105,66,154,106,226,108,216,104,28,199,236,83, - 131,78,19,226,173,123,108,183,59,182,236,10,101,151,86,87,86,28,224,189, - 143,32,128,76,51,225,70,114,143,253,202,181,6,8,51,103,183,92,209,86, - 46,98,25,102,36,36,218,110,91,41,11,53,167,39,40,15,95,71,19,202, - 245,93,117,116,207,213,213,14,176,220,57,55,253,142,146,108,181,33,74,79, - 242,253,183,87,49,201,48,166,47,179,227,141,230,132,243,25,243,129,101,16, - 42,68,79,147,156,191,79,120,247,37,196,123,11,230,255,106,77,239,143,190, - 232,212,142,25,252,88,26,127,14,249,249,222,93,113,123,169,24,191,220,203, - 94,243,44,93,152,17,92,39,91,188,219,171,152,93,63,202,175,213,95,167, - 80,75,122,253,20,177,16,172,251,16,45,135,108,213,58,39,74,191,207,114, - 253,13,57,97,41,198,121,237,109,166,21,157,222,69,186,193,142,32,154,228, - 142,252,82,21,42,207,52,117,239,79,28,111,209,73,74,162,143,91,19,194, - 82,148,117,184,237,54,118,159,133,120,187,173,124,46,172,237,228,67,75,193, - 25,0,248,122,91,57,37,9,245,205,220,192,55,45,122,147,178,153,248,221, - 160,193,183,18,127,104,41,74,15,41,21,73,146,160,148,64,107,183,96,71, - 81,68,156,149,92,162,168,195,122,35,8,85,10,164,108,83,142,166,43,239, - 118,59,172,237,48,224,125,146,176,77,16,148,220,57,212,16,109,32,232,109, - 72,99,141,9,38,7,81,92,140,149,35,218,3,144,198,45,170,43,3,189, - 96,134,101,140,180,51,140,25,211,94,249,26,80,68,50,140,9,23,238,251, - 10,24,222,123,55,79,65,110,178,173,60,145,172,147,161,139,8,179,69,125, - 177,22,128,66,75,232,103,191,95,192,165,8,25,195,86,173,233,47,4,51, - 117,158,241,242,20,147,77,139,217,158,14,8,129,204,158,145,192,78,73,178, - 212,236,122,21,96,245,32,39,89,79,176,93,12,171,75,67,94,100,193,138, - 42,185,129,147,243,111,52,164,241,130,97,150,46,53,102,140,148,179,74,180, - 105,230,35,54,72,186,75,195,174,47,176,171,42,185,249,125,29,98,160,12, - 22,24,43,141,13,36,34,107,15,48,214,189,24,126,185,247,195,67,61,201, - 169,208,17,89,156,125,8,66,85,24,30,119,59,96,50,94,215,166,139,10, - 55,168,208,253,125,27,239,142,62,27,46,2,45,38,114,151,149,146,161,10, - 206,36,55,143,38,53,217,160,193,255,127,240,135,26,193,29,34,73,18,180, - 182,104,237,82,151,126,129,75,211,132,213,106,85,121,204,223,177,31,90,56, - 121,247,247,114,244,230,23,49,0,147,213,240,124,36,39,211,59,76,151,29, - 164,185,153,111,35,51,219,18,19,79,153,156,223,163,31,28,15,228,244,16, - 237,105,137,252,92,234,17,96,16,20,42,199,101,58,99,16,140,89,215,100, - 251,122,217,42,31,37,239,231,81,156,18,69,47,155,156,100,145,212,112,74, - 58,189,10,191,167,88,167,239,211,127,241,18,235,44,0,242,138,200,67,228, - 34,18,57,175,144,219,98,45,242,243,145,45,119,82,157,84,98,35,203,106, - 53,103,152,205,211,243,209,156,143,44,61,113,150,235,119,158,44,55,122,148, - 71,111,70,142,177,114,196,82,75,250,106,132,234,59,150,246,209,155,119,6, - 169,131,127,127,125,228,94,134,54,93,122,93,155,167,17,15,35,124,168,255, - 92,148,39,17,28,126,46,60,177,1,31,89,228,230,209,68,112,13,26,124, - 107,241,45,39,56,15,79,116,101,146,171,91,208,160,88,212,60,234,22,49, - 15,31,37,152,221,42,39,185,233,82,112,210,121,63,223,102,182,140,57,223, - 47,212,135,211,89,105,177,205,250,225,196,190,154,170,148,45,67,39,149,71, - 36,166,51,5,161,204,130,74,47,159,223,174,3,218,234,94,158,14,133,42, - 201,121,40,177,192,14,45,27,51,117,245,190,85,224,154,210,47,245,137,7, - 139,202,204,181,67,248,200,211,139,89,22,107,65,191,239,182,139,83,91,200, - 249,91,238,188,134,114,142,141,44,34,22,21,226,246,169,203,34,186,171,18, - 234,98,45,16,209,213,236,133,112,233,201,174,26,97,153,228,228,38,212,128, - 160,43,233,4,242,136,224,92,196,94,188,207,238,251,113,95,94,249,125,12, - 130,240,204,207,132,255,60,168,32,68,167,73,165,183,173,156,146,44,139,73, - 128,10,185,125,20,62,147,13,193,53,104,240,173,197,31,122,138,242,16,126, - 240,102,171,165,216,239,33,91,123,136,99,42,139,162,54,93,148,220,212,238, - 163,88,184,138,200,205,63,55,95,24,233,231,242,137,209,4,76,90,240,186, - 101,78,90,178,94,210,65,140,74,111,185,95,164,107,250,182,173,42,161,36, - 123,208,165,204,168,39,142,221,246,2,109,117,143,237,182,16,195,164,155,1, - 189,129,69,154,148,21,19,76,60,101,40,231,196,225,39,16,102,74,121,230, - 121,95,130,180,2,16,152,249,48,203,116,174,80,163,9,233,116,82,137,206, - 214,201,144,36,86,12,123,150,197,90,48,236,89,238,137,14,125,49,34,78, - 45,65,4,235,180,68,78,114,130,204,47,115,202,194,140,96,227,206,187,39, - 44,113,40,176,81,230,78,178,45,122,218,68,123,138,241,13,220,155,49,72, - 16,217,164,2,35,199,116,243,232,173,56,148,39,55,99,59,68,29,1,164, - 132,186,131,56,104,156,62,124,159,14,113,24,249,5,129,34,138,58,196,241, - 54,127,223,203,8,219,189,60,133,121,72,108,254,103,159,146,252,40,201,173, - 65,131,6,223,122,124,75,35,56,168,10,79,180,54,181,41,75,168,222,233, - 31,166,179,202,117,21,247,189,218,176,187,51,73,190,15,163,87,72,213,103, - 191,118,145,148,143,234,220,207,119,42,251,157,207,239,114,50,220,113,127,209, - 206,211,152,117,216,174,131,220,162,42,191,46,57,102,189,18,116,135,67,54, - 139,5,221,225,16,97,230,149,253,140,250,119,73,55,27,164,157,209,235,238, - 217,198,142,192,125,45,172,139,97,101,38,12,239,189,203,226,130,19,173,120, - 239,199,36,206,38,109,203,49,178,101,48,251,34,90,144,45,147,171,27,145, - 89,244,56,232,179,91,174,232,244,82,140,116,100,117,120,77,163,254,93,230, - 11,199,218,189,96,198,58,29,211,79,231,172,130,42,185,111,183,23,242,253, - 172,45,121,244,102,130,49,97,228,206,35,28,140,142,162,183,182,12,243,62, - 51,255,30,123,148,223,235,199,129,143,230,220,115,139,207,67,221,103,193,61, - 94,68,109,238,123,209,230,240,81,17,92,19,193,53,104,240,173,197,183,156, - 224,202,48,198,160,181,206,197,39,126,17,180,123,157,147,20,240,200,59,125, - 191,144,150,97,75,131,80,119,38,225,255,107,239,110,67,44,187,239,2,142, - 255,206,189,51,179,243,180,187,73,19,130,45,73,77,101,9,169,164,248,80, - 76,125,145,66,82,33,37,144,23,213,162,129,32,146,23,37,40,137,121,33, - 130,175,106,27,95,85,16,181,138,160,81,106,170,105,72,104,213,90,10,34, - 164,197,80,65,169,37,69,8,113,83,182,36,164,88,155,37,117,159,102,103, - 102,239,157,123,143,47,238,61,247,158,251,48,51,103,155,93,239,230,183,159, - 207,155,185,119,238,127,238,222,217,217,189,223,57,231,252,255,231,116,46,141, - 195,182,183,219,139,99,27,187,177,117,110,252,70,89,143,221,118,217,158,152, - 129,57,79,217,58,30,69,255,92,148,173,217,93,135,131,235,223,157,153,249, - 250,86,255,108,108,118,94,31,221,175,118,89,86,214,86,7,151,117,217,59, - 221,31,237,118,140,136,232,23,55,68,177,59,255,170,227,163,24,213,182,176, - 14,122,189,117,7,69,188,174,122,206,234,123,173,38,156,212,119,79,30,61, - 54,216,138,170,2,87,143,219,180,122,236,202,78,111,230,103,87,127,172,254, - 239,32,98,246,223,194,244,22,223,116,216,6,183,199,75,1,174,230,132,18, - 129,131,197,186,166,2,23,49,142,92,68,76,108,205,69,204,127,131,155,54, - 111,183,85,68,196,242,210,118,116,182,107,103,65,105,15,143,227,108,93,136, - 245,246,228,165,79,234,161,139,24,44,49,88,31,46,59,216,46,7,111,136, - 151,182,38,175,171,86,5,172,122,179,47,226,76,172,108,110,140,198,29,217, - 28,156,86,172,179,117,49,110,222,60,29,111,109,221,50,58,238,215,61,253, - 95,113,211,109,55,196,15,191,119,54,138,35,103,98,99,189,19,23,183,87, - 98,99,189,19,123,167,199,7,249,118,142,254,216,76,216,206,247,199,199,252, - 234,167,203,170,76,199,104,63,55,111,158,142,31,158,63,18,55,29,187,52, - 113,12,242,198,27,214,70,91,176,245,88,54,137,91,68,196,234,230,209,137, - 93,147,245,227,94,17,49,250,101,166,174,215,235,206,132,176,250,220,188,173, - 251,105,71,90,203,113,169,223,157,51,67,242,234,76,38,217,143,192,193,98, - 93,115,129,171,155,142,221,224,227,120,171,46,34,38,222,56,235,198,231,17, - 236,68,191,191,50,243,70,186,183,51,249,6,89,223,141,25,17,163,93,152, - 149,157,78,25,101,111,242,154,99,221,221,249,139,162,35,34,150,87,91,209, - 221,237,143,118,217,77,235,238,246,163,181,55,216,98,186,241,232,78,156,189, - 176,27,219,231,207,199,198,102,25,23,183,230,111,157,77,188,254,226,166,3, - 31,239,173,31,143,27,218,227,173,214,254,210,252,45,185,234,245,205,251,94, - 170,215,119,225,194,86,108,220,120,235,232,126,253,249,186,75,107,177,178,212, - 26,77,242,137,136,88,41,122,177,126,252,230,209,216,233,73,29,237,118,107, - 230,242,51,211,63,159,122,4,231,141,155,222,197,57,109,101,101,101,52,126, - 81,103,38,17,56,88,172,107,58,112,149,106,182,101,253,77,112,222,111,249, - 17,147,191,165,215,85,111,168,213,27,94,245,92,211,161,171,92,236,140,39, - 180,236,237,245,70,203,13,42,59,157,201,191,182,181,149,98,20,193,245,181, - 99,19,99,214,86,138,209,253,234,118,196,228,241,191,202,185,51,243,119,129, - 94,184,176,53,243,185,75,237,247,196,145,222,247,71,241,217,47,98,17,49, - 19,218,106,141,218,198,112,105,64,181,94,112,171,219,142,245,181,99,163,215, - 182,213,109,143,226,87,69,59,34,162,88,221,136,165,216,137,189,88,155,88, - 92,223,58,178,25,173,98,39,86,142,12,182,236,234,187,139,167,3,183,188, - 188,60,113,166,155,74,175,215,31,253,252,166,67,56,30,51,14,221,65,255, - 14,6,183,23,179,182,77,224,96,177,222,17,129,171,171,47,45,136,24,7, - 43,98,60,89,160,219,237,206,157,56,80,125,126,176,208,188,53,17,189,193, - 199,249,199,252,34,246,159,206,62,152,205,183,54,250,24,49,92,146,112,100, - 51,154,232,117,106,87,18,31,174,234,174,194,88,157,221,163,220,189,24,221, - 165,181,216,235,180,163,104,237,70,123,105,57,246,58,195,73,20,43,147,175, - 167,218,154,170,159,25,164,190,112,122,98,108,209,139,178,24,71,177,40,207, - 142,94,119,61,232,157,178,29,189,238,236,153,70,214,86,138,232,148,237,81, - 216,42,211,107,205,34,102,39,119,92,206,196,142,250,207,109,244,61,77,221, - 175,171,130,86,157,90,107,81,167,216,18,56,88,172,119,92,224,42,213,155, - 94,181,5,112,185,111,96,253,126,127,120,89,159,222,232,180,97,149,38,199, - 253,166,39,55,84,225,171,47,74,174,175,227,26,60,54,126,83,63,183,211, - 138,163,195,32,238,92,24,111,181,237,238,245,70,203,33,170,168,84,177,234, - 236,237,191,75,180,30,182,229,149,119,141,159,99,184,88,250,226,118,17,27, - 235,229,40,168,237,149,250,194,232,217,191,187,121,235,210,46,110,23,113,116, - 99,59,182,119,98,38,106,213,243,76,175,119,139,152,157,224,113,165,103,45, - 94,171,231,136,20,56,88,172,119,108,224,174,132,234,154,117,131,75,249,180, - 38,66,87,143,220,165,114,16,133,114,184,85,211,47,55,162,85,92,156,185, - 93,217,219,235,238,123,230,142,74,53,17,162,250,88,125,93,61,44,173,98, - 39,46,92,28,172,255,171,111,65,181,151,151,70,247,235,91,101,43,69,47, - 118,122,71,7,227,251,235,177,90,11,87,21,180,121,49,219,239,181,78,111, - 181,246,58,75,209,94,217,27,125,28,127,253,228,148,252,106,137,70,253,210, - 51,243,182,180,179,19,56,88,172,235,58,112,17,245,171,143,151,163,192,13, - 22,157,207,59,54,52,59,157,189,236,244,162,179,60,152,157,185,210,29,156, - 81,99,167,183,18,107,237,206,232,118,123,117,240,198,126,164,24,68,225,82, - 185,20,155,203,231,39,102,117,70,140,143,251,77,111,61,181,138,157,216,219, - 157,127,5,238,136,136,165,213,118,236,237,246,98,105,181,29,253,114,45,90, - 197,78,244,203,193,25,93,14,219,146,172,204,91,55,56,173,10,222,65,241, - 158,142,91,196,228,113,209,234,216,219,245,64,224,96,177,4,174,63,187,219, - 175,218,162,27,220,30,47,62,175,166,169,175,174,70,204,155,165,190,188,180, - 29,221,189,245,153,207,215,191,174,219,29,220,174,198,78,175,207,155,54,189, - 21,85,223,5,90,191,95,119,216,214,99,125,41,197,188,117,103,229,84,220, - 187,237,157,88,238,173,141,94,223,116,12,167,151,102,236,23,182,235,237,68, - 198,2,7,139,117,221,7,174,82,133,110,112,92,174,31,101,185,51,245,248, - 96,169,65,117,77,187,136,249,145,171,212,79,57,86,191,31,49,136,220,60, - 189,94,119,180,59,52,98,176,69,184,211,91,153,217,29,58,111,183,104,245, - 248,90,187,19,151,250,221,104,45,239,141,162,180,223,218,192,203,181,223,34, - 236,195,102,179,86,81,219,111,242,79,86,2,7,139,37,112,251,24,79,98, - 153,222,194,27,159,86,172,110,222,218,174,105,243,198,180,90,157,137,224,213, - 119,143,238,183,214,107,122,13,224,116,120,170,45,198,253,194,83,63,30,86, - 191,93,215,100,73,70,245,124,251,169,38,1,93,79,91,109,117,2,7,139, - 37,112,135,152,31,184,218,90,182,225,76,204,177,121,111,248,245,88,244,39, - 150,51,84,187,66,15,59,254,55,248,218,217,224,29,20,179,186,229,229,110, - 20,197,234,156,48,183,71,139,233,231,255,153,229,112,220,252,8,78,127,190, - 254,189,213,239,95,143,4,14,22,75,224,174,144,250,114,133,253,150,46,76, - 239,162,171,223,223,111,77,215,60,7,69,231,32,243,254,236,195,62,206,91, - 136,61,120,13,227,80,214,199,51,38,112,176,88,2,247,14,209,239,247,70, - 19,53,170,184,84,199,183,230,197,229,74,6,103,222,110,198,235,121,215,99, - 83,2,7,139,181,240,235,193,209,92,181,59,179,201,108,196,43,185,53,53, - 239,207,18,55,224,90,103,11,14,174,18,91,112,176,88,254,7,2,144,146, - 192,1,144,210,82,204,159,215,254,182,180,90,45,187,61,1,88,168,203,154, - 100,82,20,197,209,136,248,197,136,120,48,6,97,252,231,178,44,255,234,106, - 188,48,0,120,59,138,38,115,76,138,162,104,69,196,189,17,241,181,136,248, - 143,136,248,185,218,195,255,80,150,229,47,213,199,219,130,3,96,209,154,6, - 238,145,136,248,235,225,221,149,136,56,21,17,239,29,222,191,80,150,229,177, - 250,120,129,3,96,209,14,157,100,82,20,197,157,49,142,219,191,150,101,217, - 141,136,15,69,196,139,17,241,157,136,248,240,213,123,121,0,240,163,105,114, - 12,238,243,181,219,255,24,17,81,150,229,15,98,176,203,18,0,174,73,7, - 238,162,44,138,226,230,136,120,35,34,214,134,159,250,137,178,44,95,59,236, - 73,237,162,4,96,209,230,110,193,21,69,241,116,68,172,71,196,241,24,199, - 45,34,226,207,138,162,216,138,193,233,241,159,40,203,242,205,171,254,10,1, - 224,71,48,115,12,174,40,138,35,17,81,157,104,112,179,246,208,110,68,108, - 199,96,121,64,39,34,102,175,184,9,0,215,136,195,118,81,126,41,34,62, - 62,188,251,131,136,184,181,44,203,253,47,30,54,100,23,37,0,139,118,216, - 36,147,143,213,110,127,175,44,203,94,241,124,220,17,101,252,106,252,231,63, - 125,50,126,234,163,207,199,171,173,135,227,206,56,17,167,95,123,53,110,121, - 95,196,201,184,204,171,148,1,192,149,183,239,50,129,225,4,147,250,53,81, - 254,62,34,34,78,198,169,120,53,62,29,63,253,192,83,241,111,95,124,40, - 34,34,202,242,223,227,150,247,189,20,209,255,205,171,249,98,1,160,169,131, - 182,224,238,158,186,255,149,137,123,39,227,55,34,226,209,184,51,222,136,189, - 238,61,113,106,229,164,115,55,3,112,173,56,168,72,31,170,223,41,203,242, - 149,153,17,239,190,35,34,162,59,136,27,0,92,59,14,10,220,93,181,219, - 95,158,59,98,235,127,35,118,47,222,126,37,95,16,0,92,9,163,192,21, - 69,241,158,98,104,248,169,247,215,198,125,126,56,166,136,19,195,165,3,119, - 198,119,227,3,191,240,169,120,249,133,136,31,143,137,115,81,2,192,162,181, - 34,70,11,187,255,59,34,250,49,88,224,29,49,14,220,201,24,159,162,171, - 140,111,62,127,46,206,126,177,23,59,241,51,81,196,215,162,179,27,177,86, - 190,30,239,143,223,249,127,126,237,0,176,175,162,44,203,40,138,162,190,110, - 237,165,136,248,211,24,156,96,249,141,136,56,49,60,193,242,224,11,190,16, - 183,198,169,248,254,196,179,220,17,247,198,119,226,95,70,99,158,108,29,186, - 86,14,0,174,166,42,112,191,23,17,159,156,122,236,15,35,226,119,203,178, - 188,236,51,150,88,232,13,192,162,141,206,100,82,20,197,221,49,216,101,121, - 169,44,203,111,191,157,39,21,56,0,22,173,120,229,149,87,26,197,232,244, - 233,211,141,158,240,229,151,155,141,251,220,231,222,123,248,160,203,240,210,75, - 63,223,104,220,103,62,243,199,141,198,157,58,245,96,163,113,39,78,124,181, - 209,184,205,205,38,87,38,138,120,236,177,199,26,141,27,207,5,186,50,30, - 125,180,217,239,36,15,63,252,98,163,113,175,191,254,122,163,113,119,61,251, - 108,163,113,77,125,240,246,219,155,13,252,118,195,223,225,62,241,137,70,195, - 158,122,230,153,70,227,254,238,143,214,14,31,116,25,110,255,224,237,141,198, - 253,197,221,205,190,223,167,190,217,236,251,125,230,11,205,190,223,135,206,54, - 59,247,195,227,143,255,114,163,113,79,60,241,221,70,227,254,228,179,39,26, - 141,251,131,15,127,189,209,184,123,182,155,173,132,122,246,158,251,27,141,251, - 217,123,182,27,141,187,121,253,127,26,141,123,240,193,143,54,26,247,229,184, - 181,209,184,223,126,228,93,141,198,61,245,190,143,31,62,40,34,126,237,39, - 191,114,248,160,136,120,238,221,159,109,52,238,133,23,94,104,52,206,202,108, - 0,82,18,56,0,82,18,56,0,82,18,56,0,82,18,56,0,82,18,56, - 0,82,18,56,0,82,18,56,0,82,18,56,0,82,42,166,78,180,12,0, - 41,20,95,127,242,201,70,129,59,255,169,191,108,244,132,31,139,63,111,52, - 238,233,167,223,106,52,238,145,71,30,105,52,238,252,249,102,157,254,214,183, - 206,53,26,119,223,125,199,27,141,123,241,197,102,167,174,106,122,10,179,187, - 238,186,229,138,62,223,227,143,255,74,163,113,101,249,233,70,227,78,158,92, - 63,124,80,68,188,241,70,179,83,147,221,127,255,111,53,26,119,223,125,247, - 54,26,119,91,113,91,163,113,175,117,95,107,52,238,204,153,51,141,198,189, - 249,230,155,141,198,61,240,129,7,26,141,139,102,63,222,136,102,127,108,252, - 205,91,127,219,104,220,239,55,60,149,221,87,127,253,75,141,198,125,227,248, - 55,26,141,107,250,255,232,185,231,94,110,52,238,35,31,185,235,240,65,17, - 241,208,67,247,53,26,199,59,147,93,148,0,164,36,112,0,164,36,112,0, - 164,36,112,0,164,36,112,0,164,36,112,0,164,36,112,0,164,36,112,0, - 164,36,112,0,164,228,84,93,0,164,100,11,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,4, - 14,128,148,4,14,128,148,4,14,128,148,4,14,128,148,254,15,226,42,214, - 217,151,186,226,7,0,0,0,0,73,69,78,68,174,66,96,130, + 167,98,106,240,195,225,48,66,161,71,231,53,174,0,0,32,0,73,68,65, + 84,16,250,251,251,49,48,48,128,216,208,31,131,238,173,180,180,20,165,165, + 165,150,192,145,197,36,187,38,185,251,142,151,147,238,151,187,57,121,4,167, + 108,189,201,86,129,157,104,140,181,254,229,96,6,14,229,151,235,250,47,20, + 133,116,81,210,43,183,212,120,127,155,83,32,145,188,143,126,83,209,104,52, + 201,218,183,179,232,206,5,200,163,98,24,137,223,167,147,120,197,98,137,125, + 94,175,215,241,125,58,241,242,251,253,105,173,254,92,214,191,18,181,226,35, + 73,224,184,251,133,26,86,222,184,146,149,18,137,68,160,235,58,116,93,71, + 52,26,181,4,69,14,63,151,211,37,87,13,53,84,92,72,248,159,159,7, + 123,240,247,118,141,8,255,1,147,232,144,229,54,48,48,128,190,190,62,12, + 12,12,32,30,79,172,107,230,243,249,80,86,86,134,96,48,136,178,178,178, + 36,203,141,238,157,242,227,200,209,111,114,20,34,119,71,1,201,150,165,44, + 18,242,147,254,88,235,159,238,217,174,238,121,221,81,131,202,93,112,99,173, + 127,57,175,124,82,72,23,37,128,36,55,53,89,207,0,70,8,156,44,118, + 178,213,75,86,32,53,206,212,103,199,189,4,147,1,46,94,134,97,64,143, + 232,73,158,20,99,232,55,106,24,134,245,59,119,18,175,146,146,18,120,188, + 94,148,150,38,38,37,247,122,216,123,175,7,129,64,241,173,212,164,92,148, + 197,71,146,192,209,31,217,231,75,248,165,201,186,161,63,100,60,30,183,2, + 52,116,93,183,172,7,222,184,218,69,222,201,174,46,202,203,238,9,150,174, + 35,65,162,70,159,247,133,57,97,154,166,101,185,245,247,247,227,236,217,179, + 8,133,66,136,197,98,112,185,92,8,4,2,152,50,101,10,202,203,203,17, + 8,4,44,183,159,93,95,138,220,112,203,214,24,127,10,151,163,228,248,189, + 82,157,100,82,254,108,235,159,91,205,242,3,69,170,128,16,222,31,39,247, + 45,142,165,254,39,27,212,255,73,15,63,64,106,113,147,127,243,252,97,130, + 26,116,250,174,232,220,96,48,88,224,187,26,29,153,244,119,113,241,34,79, + 131,252,158,44,226,146,33,175,9,48,49,196,43,19,148,139,178,248,240,200, + 253,62,94,175,55,169,207,135,158,226,163,209,168,213,184,14,14,14,90,226, + 198,173,54,194,238,169,158,162,11,121,163,202,243,182,19,69,106,136,121,152, + 60,53,22,50,100,197,80,48,73,127,127,63,66,161,16,226,241,56,220,110, + 55,74,75,75,81,94,94,142,242,242,242,36,203,205,174,241,118,10,166,224, + 86,12,143,62,228,125,46,36,116,78,200,130,50,154,250,15,135,195,150,184, + 57,9,155,147,27,87,22,95,94,166,209,212,127,33,5,175,80,46,74,238, + 109,160,135,31,217,26,151,7,212,167,234,139,163,250,229,209,148,60,170,114, + 188,201,69,176,6,185,228,185,120,185,92,46,248,125,254,161,7,4,205,138, + 0,158,44,104,128,166,105,154,16,34,49,84,64,22,181,87,94,249,11,214, + 173,91,69,131,189,213,64,239,113,192,3,36,55,174,60,232,130,254,124,212, + 184,134,66,33,132,66,33,75,220,120,208,5,145,202,114,224,199,169,65,181, + 179,248,168,33,137,197,98,73,99,134,168,209,145,27,99,250,3,210,48,128, + 193,193,65,75,220,52,77,67,105,105,41,166,78,157,138,169,83,167,162,172, + 172,12,129,64,96,68,195,69,200,141,62,199,78,184,185,56,83,227,47,215, + 9,63,207,46,104,35,155,250,31,28,28,180,30,44,100,43,194,238,126,168, + 254,121,222,220,149,201,133,142,187,35,51,173,255,66,10,28,205,72,146,111, + 200,210,226,131,248,229,250,181,251,205,114,248,67,3,189,82,128,10,185,179, + 157,44,237,92,226,20,172,145,173,120,229,162,191,107,50,66,34,215,215,215, + 135,131,7,223,182,246,75,226,166,24,39,44,129,147,195,209,233,9,149,7, + 107,132,66,33,232,186,110,53,124,64,114,163,232,4,119,239,217,5,42,216, + 89,33,188,81,230,253,66,52,142,136,44,66,42,3,89,111,36,110,228,150, + 244,251,253,168,168,168,64,121,121,57,130,193,96,146,184,81,122,118,101,224, + 240,70,158,142,219,5,143,200,214,157,108,37,241,251,147,143,101,82,255,92, + 220,120,90,116,189,83,227,203,173,13,217,122,148,197,142,210,205,180,254,11, + 41,112,61,61,61,5,203,139,234,148,91,232,118,247,42,91,105,252,55,97, + 7,89,195,84,223,163,181,104,198,26,172,193,69,77,137,215,216,208,0,173, + 188,188,220,18,57,37,110,197,131,135,254,200,52,14,140,207,200,33,139,6, + 13,142,182,107,184,9,121,191,60,224,217,169,177,176,179,224,168,19,154,63, + 185,107,90,162,195,158,91,128,212,247,70,101,141,68,34,16,66,192,231,243, + 97,202,148,41,8,6,131,150,184,241,49,100,188,188,114,57,120,63,21,63, + 102,183,159,62,203,46,87,46,18,60,79,238,194,204,180,254,7,7,7,45, + 183,36,183,40,104,179,179,48,120,89,120,152,58,23,53,126,79,252,88,166, + 245,95,72,129,107,111,47,204,2,6,116,95,252,33,74,118,37,202,94,4, + 170,127,217,3,32,91,236,242,255,195,78,56,10,21,172,161,196,43,119,112, + 145,107,104,184,80,137,91,145,224,225,238,49,222,161,46,139,91,36,18,25, + 17,41,8,216,135,142,219,89,64,169,250,26,236,196,142,139,28,253,185,233, + 24,111,216,185,245,70,193,23,134,97,160,164,164,4,165,165,165,150,192,209, + 48,0,158,190,157,21,230,228,114,149,239,91,118,55,218,221,147,188,201,195, + 25,40,207,116,245,79,150,27,213,35,183,46,248,103,57,31,126,159,220,106, + 224,150,153,124,47,252,123,205,164,254,11,41,112,225,112,184,32,249,112,151, + 34,145,234,62,229,135,10,167,223,3,63,151,231,101,71,60,158,28,161,75, + 86,187,49,244,126,50,7,107,76,84,72,228,148,184,21,15,30,106,168,200, + 53,193,163,1,41,28,157,143,177,114,250,243,218,137,5,144,104,200,105,102, + 7,59,235,141,255,225,73,176,120,35,74,13,183,16,195,179,194,243,198,149, + 143,123,163,190,65,77,75,116,104,7,131,65,148,150,150,90,79,169,114,131, + 44,151,87,118,53,58,61,125,115,228,160,13,42,147,28,152,96,103,189,242, + 64,131,84,245,79,86,51,93,75,247,66,117,195,231,192,180,235,135,163,122, + 229,229,148,131,102,248,128,117,190,47,93,253,23,82,224,10,57,76,32,213, + 3,89,170,62,72,187,223,148,124,156,95,99,55,151,167,203,229,66,89,217, + 240,248,76,195,48,172,160,168,120,60,110,61,8,209,216,58,0,150,215,130, + 126,55,169,2,157,20,57,194,102,133,128,161,111,86,5,148,20,9,30,106, + 92,249,204,27,20,181,71,99,173,40,66,49,221,147,169,29,178,53,33,95, + 43,247,97,240,134,133,139,28,253,121,73,48,185,24,240,233,184,132,16,240, + 14,185,100,104,163,167,93,57,175,84,79,210,178,117,102,103,181,166,58,79, + 182,246,248,24,42,238,6,76,87,255,116,79,118,194,207,95,211,185,41,229, + 126,65,238,182,228,253,169,124,114,96,238,2,115,170,127,39,11,100,34,35, + 91,235,233,206,149,93,143,78,15,67,118,215,86,84,84,140,216,207,163,86, + 101,107,153,255,78,232,55,77,251,101,119,180,219,237,182,196,78,211,180,36, + 225,163,233,234,20,138,201,140,135,79,75,197,45,34,18,12,26,200,157,238, + 137,80,254,131,19,220,162,145,113,114,219,240,125,252,15,78,34,27,141,70, + 173,70,150,247,191,81,100,33,185,39,169,207,141,26,10,185,172,118,101,145, + 221,120,252,30,156,68,208,233,179,28,33,74,239,121,36,98,186,250,231,117, + 207,235,66,22,55,121,227,249,113,209,229,247,193,197,77,22,123,187,52,237, + 234,191,144,20,170,65,166,250,73,229,90,151,235,203,238,247,235,84,94,254, + 59,33,151,162,221,57,20,190,239,4,9,27,5,170,208,131,18,189,7,134, + 135,174,240,239,203,227,241,96,202,148,41,214,123,39,17,164,149,55,38,227, + 67,140,226,220,192,3,32,41,170,144,26,88,46,108,36,28,188,241,151,113, + 250,195,115,55,23,157,39,91,24,78,80,35,206,103,108,167,254,36,42,27, + 9,28,141,9,163,89,64,252,126,191,173,184,165,122,186,150,3,4,232,61, + 23,119,217,117,201,95,229,180,184,59,80,158,181,130,187,75,157,234,159,79, + 230,44,135,171,167,18,58,187,254,35,89,184,229,122,224,179,156,208,43,111, + 28,157,234,191,144,86,64,33,93,148,242,128,125,39,177,147,93,212,114,84, + 174,221,67,144,28,212,51,150,114,166,19,65,32,81,111,212,31,231,114,185, + 224,243,249,172,178,242,53,13,101,17,164,58,160,200,89,250,174,121,224,145, + 18,65,69,49,227,225,227,193,128,225,217,64,104,147,163,6,101,81,114,18, + 60,194,174,81,178,235,7,115,58,46,55,220,212,248,211,140,253,124,177,82, + 33,132,21,106,79,131,74,237,162,223,50,45,59,63,71,110,136,100,161,179, + 251,131,243,200,69,110,145,242,116,83,213,63,31,47,37,215,69,38,34,39, + 247,39,58,185,36,229,123,149,5,46,85,253,79,198,190,30,254,112,34,239, + 147,173,98,110,249,3,24,241,48,200,143,81,63,102,186,57,67,115,141,97, + 24,24,24,24,72,121,142,147,8,146,71,132,63,56,81,20,45,119,123,211, + 239,90,245,11,42,138,9,107,28,28,144,60,151,35,239,119,179,235,115,178, + 235,199,226,112,97,72,213,15,39,99,231,234,225,2,64,13,8,15,122,161, + 134,130,247,103,113,225,144,69,78,182,98,228,190,57,249,92,57,64,195,174, + 225,115,170,3,14,159,128,89,118,37,2,35,235,159,91,71,118,129,42,228, + 226,180,19,57,185,174,157,132,154,187,81,169,174,248,32,114,57,90,82,174, + 255,66,82,232,62,35,110,185,113,75,60,211,235,236,254,55,118,235,9,22, + 3,153,136,32,9,31,121,100,40,122,147,68,16,72,223,47,168,105,154,18, + 65,69,193,240,240,39,80,106,96,101,113,227,231,164,179,190,228,253,178,184, + 201,238,201,84,233,241,115,120,52,31,119,75,202,131,144,101,129,163,114,243, + 52,157,92,140,242,125,218,89,105,153,88,110,28,249,41,157,242,144,163,58, + 229,250,119,18,55,217,114,75,229,178,228,247,235,212,112,240,39,113,94,95, + 92,132,83,213,127,186,7,150,92,82,40,23,37,23,115,249,225,200,206,234, + 165,87,254,93,218,253,46,18,211,97,13,91,110,228,98,156,40,152,166,153, + 52,84,163,191,191,127,196,57,233,250,5,201,107,145,169,8,202,253,130,42, + 56,70,145,13,30,185,81,231,13,172,157,133,38,187,100,236,160,235,228,153, + 249,157,250,223,228,247,178,192,200,141,12,31,23,196,33,129,227,226,198,203, + 99,231,90,146,203,205,203,192,93,123,252,156,116,86,155,108,25,242,116,229, + 190,177,116,245,47,91,121,118,46,72,46,114,242,16,2,32,217,85,106,87, + 86,238,150,228,249,240,7,7,167,250,159,172,125,47,228,78,164,123,231,17, + 163,241,120,220,49,192,198,206,106,163,180,228,223,84,161,92,148,133,132,68, + 123,44,193,49,92,4,169,111,144,142,169,224,24,69,54,120,248,31,140,175, + 6,77,200,214,143,221,123,187,115,100,203,205,206,37,39,11,159,156,6,61, + 213,241,134,151,175,84,77,115,77,242,190,35,190,166,27,79,91,126,210,118, + 186,47,217,170,147,221,160,242,253,210,57,148,14,183,122,101,33,228,238,86, + 18,175,84,245,207,207,227,117,202,239,203,78,232,184,171,82,174,71,94,126, + 187,107,121,185,120,89,157,234,191,144,20,58,138,146,11,156,252,16,64,214, + 171,108,245,202,15,53,84,79,178,229,70,27,205,58,114,46,49,26,17,204, + 87,112,140,98,114,227,1,144,212,168,202,214,138,147,11,74,238,187,226,200, + 22,6,111,108,101,55,19,111,16,228,0,12,217,162,112,122,34,227,13,13, + 119,251,201,66,198,27,120,89,92,228,180,237,158,182,157,92,155,132,221,242, + 32,78,46,44,94,190,84,245,111,23,185,231,100,17,243,253,36,116,188,225, + 77,181,241,180,229,180,82,213,127,33,93,148,133,154,153,131,7,79,240,241, + 159,212,176,202,110,106,142,252,61,115,113,227,162,71,91,36,18,41,200,61, + 77,52,50,17,65,96,236,193,49,193,96,25,6,7,7,11,113,75,138,113, + 192,242,179,100,210,159,196,127,24,228,62,224,11,123,18,244,153,247,51,201, + 46,75,217,146,146,197,141,167,5,216,175,166,109,87,190,76,225,150,161,147, + 184,113,107,133,187,42,229,167,120,218,71,200,203,216,200,117,146,42,207,84, + 164,114,237,218,225,212,16,203,233,240,180,236,202,13,56,215,127,33,221,64, + 243,231,207,47,72,62,60,202,20,72,126,32,49,12,35,105,125,56,59,23, + 35,127,104,145,45,54,94,127,118,191,19,69,118,140,53,56,38,49,119,237, + 196,233,7,85,100,135,7,72,30,155,227,212,47,64,79,65,242,192,96,39, + 11,130,111,124,158,68,158,30,127,149,247,203,200,110,66,126,125,38,179,190, + 83,26,118,199,100,43,143,55,230,252,149,234,199,201,178,226,199,101,100,55, + 160,221,189,209,245,78,245,47,151,221,169,113,164,126,137,84,86,6,79,215, + 14,167,50,202,245,95,72,86,174,92,89,144,124,98,177,152,245,180,79,247, + 27,139,197,146,150,144,145,131,124,8,110,173,217,137,155,236,17,80,2,151, + 127,50,9,142,177,99,230,172,42,116,118,156,78,218,247,210,75,47,229,180, + 108,138,252,226,161,39,73,187,134,151,247,197,112,113,147,103,226,0,70,10, + 150,211,152,172,116,216,137,144,252,52,204,251,183,120,159,147,157,0,200,46, + 66,185,81,225,13,16,125,166,60,237,172,56,94,38,126,62,79,79,126,79, + 101,228,117,69,27,5,108,216,213,191,236,114,228,81,102,118,245,70,229,164, + 62,55,110,149,201,141,173,147,248,241,188,101,23,170,93,253,127,243,155,223, + 180,189,62,31,220,120,227,141,73,223,121,166,200,223,159,236,34,230,46,116, + 94,63,123,247,238,197,159,254,244,39,0,195,129,16,52,67,14,173,182,78, + 139,210,2,201,174,71,234,123,163,48,120,90,211,143,230,118,165,89,130,122, + 123,123,177,178,225,154,92,86,147,34,7,28,62,244,138,18,179,73,128,71, + 110,208,237,66,218,185,75,81,22,50,167,254,27,249,233,150,55,152,252,26, + 167,70,93,126,234,229,227,195,228,153,243,73,104,121,227,107,103,73,217,137, + 143,147,171,80,22,133,116,150,11,207,91,22,38,122,229,253,98,60,47,187, + 250,151,203,69,225,233,178,101,38,11,155,92,30,254,89,182,14,237,202,97, + 119,126,170,250,223,176,97,131,109,125,228,131,66,230,85,72,26,215,255,175, + 241,46,130,130,145,137,184,189,251,221,239,46,80,105,20,99,193,35,132,72, + 138,134,227,79,183,78,214,130,93,67,206,175,145,3,74,156,250,215,248,181, + 242,83,181,108,61,240,153,61,40,109,222,121,76,209,83,100,189,240,134,159, + 71,191,217,137,28,127,111,39,110,78,215,240,244,156,132,143,196,151,207,55, + 41,91,82,78,245,111,135,124,95,220,170,227,34,108,39,120,169,92,100,78, + 86,29,89,248,78,245,175,24,59,203,222,117,249,120,23,65,161,152,148,120, + 228,193,210,188,193,228,110,73,89,156,236,250,220,128,228,225,1,244,74,110, + 32,190,159,210,116,218,71,101,33,87,15,133,245,218,245,127,80,152,176,93, + 95,7,119,253,201,125,83,60,79,217,26,146,143,57,93,39,127,150,173,55, + 30,202,76,174,84,110,93,166,171,127,59,107,205,110,227,226,198,3,127,156, + 44,62,39,119,37,23,62,62,232,223,169,254,21,10,133,162,88,241,80,163, + 70,99,202,128,145,225,233,118,174,74,126,204,201,146,179,115,99,218,89,126, + 60,109,30,169,201,197,141,86,11,0,144,36,24,154,54,188,96,40,239,127, + 146,35,216,100,75,209,201,61,151,202,109,231,132,124,189,44,114,118,51,171, + 80,25,83,213,63,221,3,23,41,46,218,252,126,57,188,223,83,46,167,93, + 95,28,223,120,25,184,184,57,213,191,66,161,80,20,43,30,106,200,128,228, + 177,78,178,21,97,215,216,167,19,62,217,242,73,229,118,227,215,112,55,90, + 44,22,179,214,69,139,199,227,73,3,59,121,191,150,199,227,177,92,125,242, + 184,50,57,226,209,206,21,71,159,101,23,164,124,191,169,234,65,222,231,118, + 187,173,73,159,41,180,156,135,137,115,75,9,24,89,255,252,213,206,45,105, + 231,158,164,115,157,4,78,182,250,120,93,83,125,241,48,246,116,245,175,80, + 40,20,197,138,135,26,52,222,24,242,80,120,234,35,114,178,206,8,187,96, + 18,59,183,164,147,24,16,220,117,71,145,103,131,131,131,214,212,59,30,143, + 7,37,37,37,73,46,63,178,224,248,170,2,220,42,146,35,20,157,92,141, + 178,37,148,106,61,47,187,251,224,194,66,229,164,85,153,249,184,41,18,15, + 30,113,231,84,255,116,62,45,68,42,247,225,241,200,86,121,8,131,60,93, + 153,156,190,108,209,241,190,57,138,0,76,87,255,10,133,66,81,172,120,228, + 134,14,112,182,100,156,92,118,118,141,189,28,216,97,151,70,42,11,131,22, + 49,165,208,234,88,44,6,151,203,149,180,28,142,220,15,87,82,82,130,104, + 52,106,245,67,217,185,40,41,95,59,215,164,220,95,69,3,217,249,57,78, + 247,75,251,201,170,164,105,134,124,62,95,210,226,172,36,188,52,195,69,186, + 250,151,247,217,13,21,224,253,110,124,186,45,59,129,150,133,81,30,183,69, + 226,75,11,174,166,171,127,133,66,161,40,86,60,192,112,160,3,159,218,137, + 91,51,92,172,100,107,195,169,63,142,195,197,205,169,63,142,62,115,113,27, + 28,28,68,127,127,63,194,225,48,76,211,180,21,55,32,97,189,208,192,92, + 94,118,62,198,143,91,147,178,128,216,137,137,124,140,95,235,132,44,182,62, + 159,15,126,191,223,154,56,150,196,141,175,132,144,73,253,243,178,112,55,37, + 47,139,211,20,101,118,214,177,93,95,28,183,38,169,207,45,211,250,87,40, + 20,138,98,196,154,201,68,126,181,107,248,129,244,19,36,211,123,238,42,147, + 177,235,179,227,214,141,174,235,24,28,28,68,95,95,159,229,30,243,120,60, + 240,251,253,8,4,2,240,249,124,214,106,221,84,14,234,27,34,129,228,105, + 218,5,80,200,247,101,39,92,178,200,240,178,243,235,120,127,37,95,81,188, + 180,180,52,105,8,3,143,70,228,2,151,73,253,211,123,121,192,189,60,110, + 209,206,53,44,91,166,252,222,228,113,110,220,45,156,73,253,43,20,10,69, + 177,146,52,23,37,31,71,198,45,4,59,43,45,213,211,59,185,247,100,209, + 176,115,83,114,1,34,113,11,133,66,232,235,235,195,192,192,0,34,145,8, + 52,77,179,26,87,191,223,111,187,90,128,166,105,73,86,28,239,203,227,209, + 127,242,248,47,185,60,148,38,23,10,217,77,201,173,64,62,230,143,139,0, + 205,116,65,101,162,128,141,104,52,106,187,220,79,38,245,207,135,2,144,91, + 82,158,31,148,4,80,22,63,57,47,185,126,200,114,11,135,195,89,213,191, + 66,161,80,20,43,214,106,2,118,129,24,114,35,203,133,141,91,20,4,29, + 179,139,198,228,233,242,6,155,242,161,160,134,80,40,132,254,254,126,244,245, + 245,65,215,117,8,33,70,136,6,31,34,64,121,80,195,78,238,64,62,145, + 173,108,129,202,97,247,178,133,195,207,183,19,55,57,45,234,115,243,249,124, + 86,57,3,129,128,181,132,7,5,204,208,244,76,242,106,216,217,212,63,47, + 39,89,174,178,251,213,229,114,141,8,12,178,179,18,121,196,100,52,26,181, + 30,46,178,173,127,133,66,161,40,70,60,64,178,203,80,14,55,231,107,43, + 81,99,206,95,157,112,114,81,202,214,27,5,92,80,159,207,217,179,103,209, + 223,223,143,80,40,100,205,220,94,90,90,138,178,178,50,248,253,126,203,229, + 103,231,30,149,203,198,197,139,15,80,230,101,145,93,142,178,248,113,120,158, + 124,136,2,5,148,144,91,146,220,120,36,180,212,167,72,226,38,175,163,150, + 109,253,147,133,44,91,164,124,156,29,149,81,174,123,46,112,220,170,28,75, + 253,43,20,10,69,49,98,187,44,49,239,87,2,134,67,219,121,63,147,93, + 163,203,27,105,121,22,14,0,73,98,67,105,198,227,113,171,207,167,191,191, + 31,3,3,3,86,80,131,215,235,197,148,41,83,16,12,6,81,90,90,106, + 5,108,216,9,39,23,9,178,46,228,85,201,229,160,12,62,158,76,62,38, + 187,7,121,160,13,128,164,25,74,200,114,163,190,55,90,157,152,162,17,249, + 36,187,153,172,52,156,105,253,83,61,211,103,114,89,242,64,20,187,180,121, + 221,199,98,177,156,212,191,66,161,80,20,27,73,2,199,67,208,237,26,89, + 58,206,173,23,167,85,3,156,2,52,200,61,199,27,215,80,40,132,112,56, + 108,245,249,0,128,215,235,69,48,24,180,26,216,64,32,144,180,14,23,185, + 14,201,13,72,233,167,178,94,232,149,174,225,99,211,228,190,57,114,119,202, + 229,231,247,205,199,185,209,123,46,110,228,246,163,129,210,233,196,109,44,245, + 207,87,84,112,178,156,53,109,120,245,130,92,213,191,66,161,80,20,43,30, + 57,132,95,110,128,185,181,192,103,8,225,243,44,202,2,231,244,132,207,93, + 146,124,249,144,196,162,131,9,23,30,9,71,105,105,41,130,193,32,130,193, + 96,82,168,189,93,68,36,239,107,178,43,59,193,203,38,15,51,160,180,100, + 107,78,190,150,207,125,73,229,162,129,207,20,197,73,174,63,186,63,93,215, + 147,198,189,241,52,137,137,90,255,10,133,66,81,172,88,38,10,183,26,228, + 144,116,222,200,114,11,140,174,163,198,85,94,193,155,224,46,49,62,183,33, + 189,82,227,207,163,16,203,202,202,80,86,86,102,89,69,36,30,84,46,217, + 5,106,23,80,97,23,24,195,247,201,86,167,28,228,193,211,164,123,35,183, + 36,133,201,243,128,11,110,25,145,107,146,71,77,58,137,219,68,175,127,133, + 66,161,40,70,146,124,112,178,69,65,251,120,195,46,68,98,241,70,0,214, + 242,41,114,127,149,28,181,39,247,249,208,43,119,187,209,160,104,138,214,243, + 251,253,73,227,173,228,242,240,252,156,194,252,229,50,217,185,82,229,72,68, + 121,192,180,44,32,124,122,48,222,255,200,199,145,241,205,78,220,228,58,158, + 232,245,175,80,40,20,197,136,109,144,137,157,197,67,251,169,177,165,193,212, + 188,79,135,26,91,121,250,39,18,0,121,246,12,154,140,152,250,177,168,129, + 165,9,138,229,5,62,121,217,228,242,218,133,240,219,185,211,104,94,71,126, + 30,23,58,32,121,53,114,62,206,77,182,142,184,69,21,139,197,44,203,141, + 68,68,22,32,185,108,78,76,180,250,87,40,20,138,98,196,86,224,128,228, + 241,107,212,208,146,229,194,207,137,197,98,86,227,47,247,51,201,13,35,93, + 75,13,39,133,215,203,27,53,226,188,49,181,115,189,165,195,78,248,56,188, + 177,231,98,40,231,67,233,200,99,230,248,122,105,220,58,162,253,78,226,150, + 105,217,39,122,253,43,20,10,197,120,226,40,112,28,185,209,167,62,153,120, + 60,110,205,226,79,211,79,113,215,23,159,138,138,174,229,129,26,100,37,240, + 254,44,121,124,29,119,17,166,43,35,225,212,39,71,251,237,230,126,164,247, + 100,197,241,57,55,229,160,13,18,17,46,102,220,138,178,11,84,113,114,167, + 102,194,68,168,127,133,66,161,40,54,50,18,56,96,228,244,85,244,222,206, + 37,38,55,176,60,13,222,175,37,135,183,59,185,31,179,109,92,83,89,110, + 220,170,146,45,54,238,170,76,149,175,236,250,227,159,157,34,48,233,186,209, + 50,145,234,95,161,80,40,138,1,77,8,33,14,30,60,136,214,214,86,68, + 163,81,148,149,149,141,88,239,203,41,248,193,137,116,231,240,104,190,80,40, + 132,146,146,18,212,214,214,98,233,210,165,104,111,111,71,123,123,59,158,121, + 230,25,196,227,113,107,224,180,60,37,85,46,203,35,47,238,233,241,120,112, + 227,141,55,162,186,186,26,0,208,222,222,94,20,245,83,93,93,141,253,251, + 247,59,166,155,107,218,219,219,113,225,133,23,38,205,109,41,139,53,9,45, + 119,223,202,174,85,128,79,18,45,32,68,242,68,209,205,205,205,152,53,107, + 86,193,238,235,131,31,252,96,193,242,82,20,6,53,249,128,194,14,207,171, + 175,190,138,55,222,120,3,23,95,124,49,102,207,158,141,210,210,82,0,201, + 17,121,156,76,198,64,165,59,135,26,71,211,52,17,14,135,113,250,244,105, + 188,254,250,235,150,96,236,216,177,3,181,181,181,152,54,109,26,124,62,95, + 65,203,19,141,70,209,213,213,133,29,59,118,224,150,91,110,1,128,162,171, + 159,107,174,185,6,149,149,149,35,132,36,147,87,194,201,186,5,128,129,129, + 1,252,246,183,191,69,40,20,66,79,79,15,128,228,6,132,15,56,231,215, + 9,33,146,86,86,231,86,38,64,99,250,226,48,12,36,93,171,235,122,65, + 239,171,183,183,215,177,238,21,10,197,228,193,51,48,48,128,64,32,128,234, + 234,106,148,150,150,58,6,88,216,53,58,116,92,38,221,57,228,202,115,185, + 92,8,6,131,56,239,188,243,208,210,210,130,129,129,1,28,62,124,24,62, + 159,15,211,167,79,135,223,239,31,113,125,62,203,227,118,187,17,8,4,48, + 99,198,12,180,183,183,99,239,222,189,184,236,178,203,138,170,126,0,160,191, + 191,223,118,56,131,93,122,114,217,248,113,57,24,133,250,39,67,161,16,0, + 160,187,187,59,105,242,106,90,0,86,190,87,195,48,172,33,12,124,218,54, + 0,86,240,203,240,32,120,13,30,207,112,52,171,105,154,232,232,232,192,220, + 185,115,11,118,95,36,168,138,226,37,28,14,3,72,254,174,168,61,8,4, + 2,227,82,38,197,196,195,19,139,197,80,85,85,133,64,32,48,34,152,1, + 24,57,182,138,31,183,235,235,74,119,14,63,78,13,80,32,16,64,85,85, + 21,34,145,8,12,195,24,97,185,21,178,60,66,8,248,124,62,76,155,54, + 13,177,88,12,127,249,203,95,112,225,133,23,22,69,253,188,241,198,27,152, + 58,117,42,186,186,186,16,137,68,146,250,207,232,58,121,178,102,58,135,250, + 232,168,177,31,118,247,154,150,69,165,105,26,34,145,136,213,168,240,1,222, + 124,8,133,108,53,81,116,166,157,80,211,113,90,209,220,227,209,146,210,211, + 52,205,178,138,11,117,95,212,80,42,138,15,93,215,209,218,218,138,167,158, + 58,136,125,251,218,113,244,232,105,244,246,2,21,21,192,162,69,85,184,242, + 202,106,220,114,203,82,212,214,214,170,239,81,145,22,207,59,239,188,131,133, + 11,23,142,152,181,158,144,27,51,187,125,163,57,135,187,225,76,211,68,32, + 16,192,27,111,188,129,246,246,118,212,215,215,39,185,193,198,154,87,166,231, + 80,121,72,228,222,122,235,45,76,153,50,5,129,64,160,40,234,135,32,225, + 161,40,200,120,60,62,98,2,102,46,10,220,157,168,105,154,53,95,38,0, + 196,227,2,62,31,172,116,74,74,74,44,33,240,249,124,182,139,154,242,178, + 242,73,157,101,107,75,238,167,179,235,39,161,64,151,66,222,87,69,69,197, + 136,114,40,198,31,93,215,177,115,231,65,124,247,187,251,1,84,96,233,210, + 43,113,227,45,149,168,168,240,163,183,87,71,107,107,15,158,127,190,21,251, + 246,61,143,79,127,122,57,62,248,193,43,149,200,41,82,226,25,28,28,132, + 215,235,69,95,95,95,210,180,83,178,165,146,75,200,82,74,184,172,12,43, + 220,157,112,187,221,8,133,66,35,34,252,10,81,30,26,188,205,27,246,98, + 171,31,114,27,82,3,79,51,172,112,33,225,86,146,157,235,144,246,251,124, + 195,150,14,185,12,201,34,35,203,11,72,237,106,149,39,165,230,199,229,124, + 121,254,228,242,36,107,189,80,247,165,250,224,138,15,93,215,241,163,31,61, + 143,39,126,212,138,218,69,139,112,195,141,139,80,89,225,135,223,15,232,0, + 42,117,160,118,81,21,150,44,169,198,246,237,71,241,175,15,237,71,123,251, + 105,124,236,99,215,42,145,83,56,226,1,146,93,54,188,127,136,63,41,243, + 227,242,62,153,76,206,225,231,201,101,160,6,79,62,55,223,229,225,240,50, + 20,91,253,0,64,73,73,137,37,122,118,75,216,200,13,190,157,53,76,184, + 92,195,214,152,156,174,157,5,39,167,43,35,187,91,41,109,185,92,84,38, + 94,246,66,220,151,234,131,43,46,194,225,48,142,30,109,197,19,79,29,129, + 191,122,49,170,23,87,195,95,225,7,252,128,30,0,128,0,16,8,3,97, + 192,95,93,129,170,37,85,104,215,195,120,226,169,35,88,180,168,10,139,22, + 213,142,247,45,40,138,148,148,227,224,82,53,94,217,94,151,11,84,121,146, + 175,151,27,127,167,116,211,133,80,147,96,187,92,174,164,126,44,62,255,165, + 44,32,116,126,186,52,233,61,207,131,167,97,55,252,35,223,247,165,158,248, + 139,139,112,56,140,157,59,143,162,39,80,139,128,31,104,7,112,90,215,81, + 1,63,18,223,20,5,156,12,61,156,84,6,208,83,17,0,194,181,216,185, + 243,168,18,56,133,35,89,11,92,46,176,123,218,206,4,85,158,4,242,192, + 108,59,11,146,55,254,118,125,99,118,86,22,159,124,25,64,82,96,9,79, + 219,46,63,158,151,252,153,250,205,156,44,62,190,62,95,33,238,139,250,224, + 118,238,220,137,125,251,246,225,208,161,67,74,244,10,132,174,235,88,178,100, + 9,174,188,242,74,220,112,195,13,0,128,91,110,185,5,251,90,107,129,69, + 215,2,126,63,218,123,194,56,216,10,84,87,248,225,15,36,68,78,7,160, + 135,117,244,232,64,107,123,24,240,251,209,91,9,60,177,115,63,142,30,221, + 62,174,247,164,40,94,60,0,172,249,12,229,224,137,124,53,224,118,240,134, + 50,30,143,39,5,115,140,199,236,245,188,60,197,86,63,124,186,45,32,121, + 161,84,254,158,95,203,251,13,229,21,215,1,88,22,14,15,26,73,37,56, + 118,240,52,249,53,148,39,119,119,114,87,47,95,201,161,16,247,213,219,219, + 139,231,159,127,30,63,250,209,143,80,89,89,169,34,242,10,136,174,235,56, + 125,250,52,158,120,226,9,232,186,142,107,175,189,22,85,85,85,208,123,106, + 81,81,225,71,101,101,162,223,45,113,238,208,69,1,64,15,15,91,112,1, + 63,80,89,233,135,14,160,183,162,22,85,85,225,241,186,29,69,145,227,1, + 134,27,178,124,4,116,100,106,29,217,137,71,54,141,107,62,203,83,108,245, + 67,159,121,100,33,97,39,34,169,44,48,122,79,97,252,242,125,167,154,173, + 197,206,77,233,244,125,201,125,121,116,29,221,67,33,239,75,215,117,28,61, + 122,20,181,181,181,168,172,172,4,160,34,43,11,69,111,111,47,194,225,48, + 42,42,42,112,244,232,81,92,121,229,149,168,172,172,68,69,109,45,170,43, + 253,168,174,168,68,69,165,31,149,254,132,208,249,3,195,130,7,0,149,126, + 63,96,217,116,61,64,109,45,42,43,219,199,233,110,20,197,78,146,192,1, + 133,181,146,156,144,27,188,241,166,216,234,71,211,134,215,166,3,236,45,39, + 39,119,32,157,99,103,13,201,22,20,255,30,228,60,184,245,36,231,199,143, + 81,255,157,83,127,153,252,16,83,136,251,242,251,253,104,111,111,71,117,117, + 53,170,170,170,0,192,18,58,69,126,169,172,172,68,79,79,15,116,93,71, + 123,123,43,252,126,63,42,42,42,80,217,19,70,117,69,45,170,170,19,226, + 86,17,240,35,80,17,128,31,137,239,75,215,117,232,21,1,132,123,195,67, + 251,0,160,18,122,79,187,122,56,81,56,146,180,162,119,62,26,111,187,52, + 51,177,90,84,121,50,187,206,78,120,83,9,0,127,239,52,14,79,118,47, + 218,165,41,239,231,3,177,229,186,226,98,199,223,3,24,97,169,21,226,190, + 42,42,42,112,229,149,87,34,28,14,35,16,8,168,6,178,128,248,253,126, + 248,253,126,244,244,244,160,182,246,74,84,84,84,36,190,3,244,14,89,110, + 21,168,168,12,160,178,2,240,35,209,7,7,36,44,57,61,172,195,95,5, + 160,55,0,244,132,161,87,246,162,162,181,87,205,108,162,112,36,229,130,167, + 249,66,30,115,70,11,134,58,81,136,242,0,195,193,8,66,8,107,62,197, + 241,42,79,170,250,73,229,22,228,125,91,180,143,139,144,188,26,1,207,211, + 52,71,94,203,251,30,121,95,168,188,82,1,183,182,248,128,108,114,37,202, + 125,104,252,61,239,131,43,196,125,245,246,246,162,182,182,22,71,142,28,177, + 26,92,213,72,22,6,154,130,43,16,8,160,182,182,22,189,189,189,168,170, + 170,66,117,107,43,42,43,72,220,134,44,56,127,98,168,0,57,36,3,126, + 63,194,186,62,244,105,40,240,36,208,131,170,42,21,69,169,176,199,3,56, + 55,216,242,56,175,92,53,236,60,61,57,132,123,188,202,35,187,220,50,177, + 28,198,171,126,248,121,233,250,192,236,172,27,59,107,116,56,175,225,125,242, + 178,65,233,234,68,22,47,46,136,78,121,82,62,133,188,47,93,215,173,192, + 18,93,215,209,211,211,163,92,148,5,34,28,14,91,129,61,149,149,149,208, + 117,61,241,185,162,21,61,167,15,161,178,246,90,75,220,252,21,9,113,243, + 83,144,137,31,64,239,112,135,92,235,209,125,168,173,80,238,101,133,51,227, + 50,76,64,78,223,174,65,27,207,242,0,153,45,191,49,94,245,99,103,5, + 165,75,131,222,203,171,146,243,115,92,174,145,209,154,178,192,217,185,49,129, + 244,195,5,104,70,18,126,156,62,203,129,44,249,190,47,138,152,172,173,85, + 79,254,133,198,174,206,151,44,89,2,0,120,126,223,81,180,31,173,70,245, + 181,203,225,247,3,21,1,32,48,20,83,18,240,3,97,29,232,5,0,221, + 143,163,7,15,161,178,231,40,174,189,114,169,117,189,66,33,51,174,2,71, + 121,100,154,143,42,79,242,62,187,128,139,116,251,249,212,87,50,180,159,7, + 153,240,41,194,72,72,232,60,46,44,118,17,152,242,172,35,220,202,162,97, + 3,201,19,36,23,230,190,84,159,91,113,65,15,28,186,174,99,223,145,125, + 104,61,20,198,242,107,175,69,160,34,17,76,226,199,144,245,54,52,108,96, + 255,254,231,161,183,31,194,149,75,107,177,100,201,18,107,221,70,133,66,102, + 220,198,193,201,79,219,156,241,24,7,151,170,60,197,86,63,99,205,223,233, + 58,57,79,57,0,132,246,241,62,47,238,126,76,229,70,148,203,205,221,152, + 178,117,154,239,251,82,115,81,22,31,212,39,215,211,211,131,163,7,119,98, + 251,145,253,168,93,186,8,139,150,44,193,162,218,90,180,182,182,226,232,161, + 67,104,61,120,20,208,123,176,168,182,22,181,181,181,8,4,2,106,234,53, + 133,35,106,28,92,6,229,41,182,250,161,50,217,185,246,184,21,35,7,102, + 56,89,55,114,30,198,80,135,21,205,5,41,91,78,60,29,26,103,198,31, + 0,228,33,3,118,115,69,114,129,227,147,53,23,226,190,84,131,88,156,84, + 85,85,97,233,210,165,168,172,172,68,107,107,43,90,159,127,30,251,126,244, + 35,232,186,14,191,223,143,234,234,106,84,87,87,163,118,113,98,185,28,26, + 226,161,190,79,133,19,106,28,92,6,20,91,253,80,132,37,128,17,150,101, + 166,215,203,215,144,11,145,79,112,76,203,215,200,231,112,129,55,77,211,114, + 99,202,195,0,200,21,73,199,8,126,61,229,89,200,251,82,179,150,20,39, + 20,205,90,85,85,133,218,218,90,132,195,97,244,246,246,90,2,71,67,10, + 104,253,74,245,61,42,210,161,198,193,77,208,242,144,107,143,139,175,220,192, + 203,150,14,191,150,242,230,162,69,174,97,130,79,132,12,36,79,157,101,103, + 209,241,252,237,86,1,176,179,186,100,11,175,16,247,165,250,224,138,31,234, + 87,179,91,209,91,9,155,34,83,212,56,56,76,188,113,112,188,239,74,94, + 27,141,222,243,115,229,0,13,89,56,248,57,252,190,105,53,1,187,242,201, + 130,227,4,9,149,211,57,154,166,33,22,139,33,79,62,89,94,0,0,32, + 0,73,68,65,84,30,143,23,236,190,84,31,220,196,132,196,78,185,36,21, + 153,146,213,56,56,59,228,176,113,25,167,64,3,122,29,203,56,184,92,150, + 39,23,227,224,114,89,30,122,117,170,31,185,1,119,26,39,231,100,5,217, + 157,43,143,123,147,45,184,116,86,84,186,207,50,148,6,173,186,93,168,251, + 82,13,164,66,113,110,48,230,97,2,99,177,102,228,134,60,23,121,229,162, + 60,64,238,198,193,229,163,126,52,45,177,138,182,215,235,29,179,53,201,5, + 152,2,62,200,106,227,43,170,243,188,185,59,209,48,12,219,126,47,46,82, + 118,34,79,251,229,160,146,66,220,151,114,113,41,20,231,6,106,28,156,77, + 30,19,161,60,228,78,77,215,215,197,45,29,158,38,79,7,72,238,19,163, + 104,67,154,198,138,167,45,91,76,36,70,124,160,181,157,160,81,63,155,16, + 0,237,230,105,13,14,14,22,236,190,84,31,156,66,113,110,48,194,69,105, + 215,183,33,191,151,175,225,231,164,106,128,56,233,220,87,118,231,142,87,121, + 138,173,126,12,195,64,40,20,26,17,60,33,231,149,10,57,202,145,210,137, + 68,34,136,70,163,0,18,2,71,209,135,252,60,46,98,148,150,60,76,128, + 231,33,151,133,231,203,207,47,212,125,169,62,56,133,226,220,192,49,138,146, + 58,251,237,26,102,107,176,175,166,1,172,177,167,87,126,220,100,233,89,251, + 152,123,138,247,195,112,236,202,35,11,11,63,47,81,62,13,154,150,220,16, + 218,29,167,253,195,251,146,173,14,59,151,233,104,234,71,211,92,73,229,145, + 235,71,211,92,0,134,27,98,218,39,132,153,178,126,14,31,62,156,225,215, + 59,54,74,74,74,224,245,122,29,195,239,169,124,242,192,124,89,196,121,253, + 200,162,199,251,217,10,117,95,170,15,78,161,56,55,72,18,56,30,158,205, + 7,53,219,117,246,243,6,215,238,28,58,238,182,185,198,197,162,22,157,66, + 190,185,208,216,5,31,216,89,5,114,121,228,125,67,239,70,236,75,184,205, + 146,67,203,237,202,147,143,250,225,53,52,28,57,56,188,24,168,92,158,15, + 125,232,67,80,140,141,238,238,238,241,46,130,66,161,40,0,150,139,146,58, + 251,121,3,238,52,3,69,182,145,115,118,251,248,19,189,93,32,3,89,45, + 92,216,242,93,30,234,251,145,231,85,44,182,250,81,140,141,105,211,166,141, + 119,17,20,10,69,1,72,18,56,77,211,224,245,122,45,97,225,86,7,119, + 55,145,101,33,52,13,176,153,151,144,31,119,219,236,211,134,44,37,183,219, + 141,104,52,106,27,6,79,159,169,15,200,201,82,74,182,188,4,76,115,228, + 76,40,252,56,224,26,177,79,136,225,207,177,88,204,118,126,196,209,212,143, + 92,30,185,126,52,77,64,211,220,35,246,81,121,156,234,71,161,80,40,20, + 233,177,166,234,242,120,60,8,4,2,35,166,103,34,236,130,35,156,2,41, + 248,123,167,96,12,32,49,169,178,219,237,182,181,152,220,110,55,124,62,31, + 60,30,207,136,254,185,124,149,135,132,68,182,166,138,173,126,20,10,133,66, + 145,30,23,0,116,116,116,192,231,243,33,16,8,216,54,222,192,200,32,11, + 187,6,215,238,120,170,107,60,30,15,124,62,31,74,74,74,240,206,59,239, + 88,251,123,123,123,225,245,122,225,243,249,108,197,45,95,229,113,187,221,150, + 128,245,244,244,0,0,102,205,154,85,116,245,163,80,40,20,138,244,184,102, + 204,152,129,35,71,142,140,155,133,64,238,191,163,71,143,98,198,140,25,152, + 58,117,42,78,156,56,49,238,229,121,243,205,55,49,117,234,84,152,166,89, + 52,245,163,80,40,20,138,204,113,149,149,149,161,189,189,29,219,182,109,67, + 83,83,83,193,11,208,212,212,132,109,219,182,161,189,189,29,101,101,101,240, + 251,253,232,234,234,194,174,93,187,112,242,228,201,130,151,231,228,201,147,216, + 181,107,23,186,186,186,224,247,251,81,76,245,115,193,5,23,20,60,127,133, + 66,161,152,168,104,71,143,30,21,77,77,77,248,243,159,255,140,150,150,22, + 244,244,244,32,18,137,100,60,8,123,212,25,107,26,124,62,31,42,43,43, + 81,87,87,135,75,46,185,4,245,245,245,0,128,29,59,118,160,165,165,5, + 111,191,253,54,250,251,251,17,139,197,10,82,30,175,215,139,41,83,166,224, + 188,243,206,67,93,93,29,110,186,233,38,0,9,145,41,150,250,89,188,120, + 113,94,243,85,40,20,138,201,130,38,132,16,167,79,159,70,103,103,39,186, + 186,186,172,153,36,10,209,128,123,60,30,148,149,149,97,250,244,233,152,57, + 115,38,170,170,170,160,235,58,122,123,123,209,217,217,137,221,187,119,35,28, + 14,195,48,140,130,148,199,237,118,35,16,8,96,229,202,149,152,57,115,166, + 53,165,19,149,103,188,235,167,162,162,2,165,165,165,121,205,87,161,80,40, + 38,11,154,0,242,219,82,43,20,10,133,162,40,113,77,242,232,108,53,184, + 74,161,80,40,20,147,18,37,112,10,133,66,161,152,148,40,129,83,40,20, + 10,197,164,68,9,156,66,161,80,40,38,37,74,224,20,10,133,66,49,41, + 73,185,162,183,98,36,153,196,28,169,176,84,133,226,220,64,195,248,254,223, + 199,59,255,98,103,114,8,28,31,147,86,128,176,215,84,99,224,212,164,200, + 10,197,185,129,6,54,105,250,57,152,255,68,96,84,227,224,228,38,92,72, + 251,10,90,217,210,12,252,34,177,122,105,94,179,164,31,214,136,253,231,226, + 15,77,174,135,66,11,252,120,231,127,14,226,84,195,231,210,111,95,110,3, + 10,253,223,207,85,254,147,125,28,220,152,7,122,83,245,140,203,143,219,102, + 201,153,196,238,194,139,220,185,42,110,118,75,2,21,76,100,10,152,255,184, + 254,206,179,32,159,229,180,210,118,240,96,88,203,62,229,33,239,98,98,188, + 31,112,115,153,255,100,23,184,137,27,100,226,32,110,5,203,30,201,75,222, + 76,246,63,245,8,248,58,118,108,211,52,109,164,85,53,73,242,23,66,100, + 212,7,59,94,56,53,124,185,76,59,85,250,214,34,194,121,41,65,113,144, + 170,142,11,113,239,227,157,255,68,99,194,247,193,141,167,5,65,13,234,185, + 42,110,116,223,220,106,176,234,36,159,223,67,138,126,135,124,231,95,172,125, + 30,133,16,183,164,125,118,255,59,246,190,24,235,40,87,140,119,63,251,120, + 231,63,145,152,152,2,199,172,55,96,124,191,240,66,247,55,2,72,221,112, + 103,114,206,24,203,144,73,125,231,77,100,10,156,255,68,109,74,242,234,170, + 148,196,107,162,214,209,104,24,111,209,30,239,252,39,26,19,215,69,57,68, + 161,251,222,198,13,33,224,202,80,201,93,137,214,61,191,197,65,162,97,227, + 5,162,207,133,248,19,242,252,229,45,87,249,243,62,39,238,10,47,54,87, + 16,183,176,72,216,173,207,57,76,219,74,63,197,113,162,216,234,72,113,110, + 50,241,4,78,178,222,206,9,178,16,55,162,16,34,119,46,96,231,122,179, + 222,143,87,161,24,118,226,70,228,250,63,146,78,220,52,77,83,238,51,69, + 81,49,49,93,148,67,156,19,214,155,157,184,101,216,112,185,52,77,51,19, + 173,114,206,139,197,45,37,217,29,86,136,111,33,149,165,54,9,127,5,69, + 135,147,101,167,234,94,81,76,76,44,129,59,215,172,55,27,113,27,141,37, + 151,83,145,203,48,114,53,111,15,28,227,157,191,66,13,145,81,76,24,38, + 150,192,49,206,9,235,77,211,96,10,33,184,168,153,25,168,251,136,243,115, + 89,55,76,92,156,44,183,66,68,80,142,91,254,231,56,74,220,20,19,137, + 137,215,7,135,115,44,76,118,72,228,228,125,142,27,35,159,226,150,248,56, + 28,200,80,104,113,43,84,254,60,63,57,114,183,24,26,118,62,30,83,182, + 108,115,253,63,145,199,193,101,26,112,162,80,140,23,19,214,130,35,206,137, + 167,117,27,75,46,29,5,17,55,59,119,113,33,197,45,207,249,91,145,154, + 76,64,128,226,17,55,130,143,253,27,49,171,79,14,211,230,100,18,112,82, + 76,117,164,56,55,153,208,2,87,12,226,86,168,176,120,91,75,206,129,66, + 137,27,149,43,239,140,99,254,133,12,156,201,37,133,154,50,202,202,175,64, + 150,91,38,223,195,100,22,214,115,253,254,179,101,194,10,92,209,136,91,33, + 103,109,200,228,126,243,60,176,186,224,245,62,222,249,75,20,171,101,226,100, + 105,229,43,237,116,43,106,228,179,142,206,245,213,60,206,245,251,207,134,9, + 217,7,55,222,141,28,144,236,146,41,150,49,81,57,103,188,197,101,188,243, + 151,40,86,113,35,120,127,92,190,210,78,149,62,29,207,171,184,193,249,30, + 139,253,251,201,5,231,250,253,103,203,196,91,46,167,200,196,45,105,255,100, + 252,129,241,161,25,227,81,239,227,157,191,98,4,78,223,66,33,127,251,231, + 122,159,95,174,238,127,178,175,38,48,230,229,114,206,53,210,69,138,77,202, + 63,218,120,139,203,120,231,175,40,74,10,222,69,80,100,228,226,254,149,192, + 41,146,80,157,188,10,69,241,80,176,32,175,34,101,172,247,63,217,5,110, + 194,6,153,140,23,231,242,159,73,161,40,54,206,245,255,227,185,126,255,233, + 152,144,65,38,10,133,66,161,80,164,67,9,156,66,161,80,40,38,37,74, + 224,20,10,133,66,49,41,81,2,167,80,40,20,138,73,137,18,56,133,66, + 161,80,76,74,10,26,36,106,22,112,166,241,201,30,254,170,40,82,52,77, + 5,182,41,20,69,130,178,224,20,10,133,66,49,41,81,2,167,80,40,20, + 138,73,201,57,59,208,251,252,57,115,210,186,146,78,157,60,169,252,156,10, + 133,66,49,65,57,103,5,14,0,218,218,218,28,143,213,212,212,20,176,36, + 138,177,32,79,55,167,77,188,229,219,20,10,69,30,200,216,69,41,18,83, + 222,10,1,136,107,86,172,16,242,231,124,22,50,31,156,58,121,82,115,18, + 177,154,154,26,101,189,77,16,4,32,154,155,155,241,204,51,207,160,185,185, + 25,15,61,244,208,8,193,203,21,123,94,120,97,194,253,206,21,138,115,153, + 81,197,26,10,64,172,88,177,2,191,123,225,133,172,46,31,109,20,101,77, + 77,77,210,133,109,109,109,105,243,205,52,138,242,252,57,115,4,183,228,38, + 163,184,77,86,11,135,238,235,200,145,35,40,41,41,193,158,61,123,208,208, + 208,128,77,155,54,97,203,150,45,57,191,207,191,190,244,82,241,167,87,95, + 77,157,166,138,162,84,40,138,134,162,14,50,121,250,233,167,27,107,106,106, + 68,83,83,19,218,218,218,208,214,214,134,95,252,124,7,106,106,106,196,211, + 79,63,221,152,139,60,184,37,55,25,197,141,104,106,106,178,182,124,89,56, + 100,209,127,109,253,250,188,55,242,100,185,245,244,244,96,241,226,197,232,232, + 232,64,67,67,3,30,123,236,49,172,93,187,22,55,220,112,195,152,238,243, + 51,159,253,236,136,107,231,204,153,99,187,95,161,80,20,41,218,40,54,36, + 44,56,145,237,117,66,136,172,182,57,115,230,8,98,251,246,237,98,251,246, + 237,214,231,57,115,230,136,237,219,183,55,58,93,155,109,217,230,204,153,147, + 213,253,220,125,79,75,214,247,63,30,27,0,209,212,212,148,180,1,200,75, + 217,145,16,20,177,126,253,250,188,215,13,0,209,210,210,34,154,155,155,69, + 79,79,143,0,32,190,255,253,239,139,230,230,102,113,237,181,215,138,230,230, + 230,49,221,167,211,181,129,64,32,117,154,154,38,212,166,54,181,21,199,86, + 180,22,28,89,110,0,240,244,211,79,227,230,155,111,198,205,55,223,108,29, + 111,106,106,194,154,53,107,214,231,42,191,76,44,183,79,221,211,34,104,203, + 85,190,133,160,190,190,62,233,253,230,205,155,199,177,52,185,195,52,77,116, + 116,116,160,171,171,11,251,246,237,195,39,63,249,73,188,239,125,239,195,191, + 253,219,191,225,125,239,123,223,168,211,125,207,21,87,8,167,207,95,254,242, + 151,71,28,87,40,20,197,73,209,10,28,0,248,253,126,75,220,236,142,1, + 9,55,102,46,242,114,18,174,92,136,90,38,110,187,124,184,246,4,32,200, + 162,173,175,175,79,18,186,156,164,157,225,125,229,203,109,185,96,193,2,204, + 154,53,11,175,190,250,42,102,205,154,133,27,110,184,1,173,173,173,88,176, + 96,1,90,91,91,179,74,235,75,95,254,178,160,237,192,129,3,73,199,2, + 129,0,190,244,229,47,11,0,248,218,255,250,95,154,124,92,161,80,20,39, + 69,63,76,192,78,220,114,205,167,238,105,17,91,54,215,14,125,74,47,100, + 143,61,82,151,214,218,35,178,233,7,218,176,97,3,214,175,95,47,190,190, + 97,67,198,233,103,66,115,115,51,154,154,154,114,106,189,105,72,172,6,159, + 170,204,116,239,235,215,175,71,174,239,137,160,192,146,199,30,123,12,155,55, + 111,198,209,163,71,45,113,211,44,111,99,122,190,241,141,111,56,231,177,123, + 183,182,123,247,110,145,151,27,80,40,20,121,163,168,5,78,215,117,203,82, + 179,59,150,142,92,187,18,179,17,54,32,59,113,35,114,37,114,100,189,217, + 241,153,53,107,114,210,86,203,34,183,97,195,134,164,252,129,252,136,27,5, + 152,44,88,176,0,159,252,228,39,241,175,255,250,175,232,237,237,197,154,53, + 107,70,37,110,10,133,98,114,82,212,195,4,106,106,106,132,211,96,236,154, + 154,26,108,222,188,121,3,0,220,124,243,205,141,242,113,151,166,229,68,224, + 178,21,53,98,172,145,138,99,21,6,18,184,230,230,102,0,201,125,111,185, + 18,56,158,151,221,254,124,139,155,19,163,17,55,222,175,70,46,72,74,231, + 235,255,242,47,226,153,103,158,193,31,14,28,208,168,12,142,121,104,106,152, + 128,66,81,44,20,173,5,71,99,223,106,106,106,208,212,212,100,89,114,186, + 174,83,99,237,40,110,185,96,180,194,70,144,117,67,159,211,53,246,217,156, + 155,142,66,88,111,227,129,157,184,229,202,82,35,241,26,206,106,152,111,124, + 227,27,208,195,225,9,91,111,10,197,57,203,104,67,168,243,57,76,96,206, + 156,57,130,182,237,219,183,55,242,207,180,47,213,16,129,209,12,19,200,103, + 56,59,50,8,157,207,244,188,76,243,20,66,36,13,11,216,188,121,179,216, + 188,121,115,206,195,247,121,185,233,61,223,114,53,100,0,9,113,75,74,59, + 95,223,217,103,19,99,221,4,255,76,239,111,188,241,70,193,63,143,216,138, + 32,52,90,109,106,83,91,98,27,117,99,147,47,129,115,18,50,122,159,137, + 184,21,147,192,81,125,101,34,112,185,20,3,176,241,111,24,18,184,124,220, + 23,47,119,186,207,99,201,167,80,226,70,219,165,151,94,58,34,143,135,30, + 122,72,216,237,79,218,138,224,79,173,54,181,169,45,177,141,186,193,201,135, + 192,101,107,165,229,82,224,178,29,232,93,204,27,36,43,42,31,214,27,108, + 196,43,211,125,217,230,83,104,113,211,0,188,240,194,11,35,242,153,62,125, + 186,176,219,159,180,21,193,159,90,109,106,83,91,98,43,154,113,112,124,190, + 201,124,247,175,201,208,124,148,153,44,161,51,209,200,87,96,137,6,104,26, + 160,165,235,43,204,244,188,84,228,163,207,45,29,13,43,86,140,200,231,67, + 31,250,144,237,126,133,66,81,156,20,133,192,21,131,184,1,137,229,115,38, + 147,200,229,75,220,10,69,177,77,18,253,111,223,251,222,132,172,71,133,226, + 92,101,84,203,229,172,88,177,2,47,188,240,130,181,111,172,203,229,144,168, + 141,167,184,17,147,69,228,38,186,184,113,200,10,28,239,114,40,20,138,137, + 197,168,198,193,141,150,84,227,224,104,202,173,92,137,91,186,229,114,236,196, + 141,51,209,87,22,248,206,230,205,98,34,139,91,202,177,102,197,140,166,198, + 193,41,20,197,66,209,8,92,174,201,68,224,210,165,49,145,5,110,34,51, + 97,197,13,80,2,167,80,20,17,231,172,192,41,20,121,65,9,156,66,81, + 52,20,69,144,137,66,161,80,40,20,185,166,104,167,234,82,156,99,40,203, + 71,161,80,228,24,101,193,41,20,10,133,98,82,162,57,77,202,171,80,168, + 126,76,197,100,164,144,177,0,163,193,229,114,21,119,1,39,16,202,69,169, + 80,40,20,12,77,114,151,207,155,55,111,101,107,107,235,158,209,166,119,239, + 189,247,38,165,247,212,83,79,141,41,61,69,230,40,23,165,66,161,80,48, + 132,24,94,188,125,172,226,6,0,15,61,244,144,149,158,18,183,194,162,4, + 78,161,80,40,82,80,91,91,59,175,152,211,83,56,147,117,31,28,159,55, + 18,0,218,218,218,84,71,77,150,20,178,14,199,146,215,185,218,7,87,91, + 87,151,84,103,173,45,45,231,102,69,76,82,156,250,224,86,174,92,57,111, + 207,158,61,79,2,88,33,29,122,97,222,188,121,141,217,90,94,219,182,109, + 155,119,248,240,97,219,244,158,122,234,41,199,244,84,31,92,238,200,216,130, + 123,250,233,167,27,107,106,106,68,83,83,19,218,218,218,208,214,214,134,95, + 252,124,7,106,106,106,4,77,179,165,72,77,33,235,80,206,107,243,230,205, + 27,114,153,215,250,198,70,199,63,161,60,73,114,182,212,214,213,137,218,186, + 58,225,45,41,177,54,218,39,139,79,46,224,105,83,250,199,143,183,224,248, + 241,22,199,227,99,33,211,250,25,107,61,166,75,35,23,233,79,6,86,174, + 92,57,79,211,180,61,123,246,236,105,189,230,154,198,21,7,15,30,68,127, + 127,63,132,16,56,120,240,32,238,184,227,142,21,39,78,156,216,173,105,218, + 158,218,218,218,134,116,233,109,219,182,109,222,189,247,222,187,231,240,225,195, + 173,166,105,174,88,182,108,25,174,187,238,58,92,119,221,117,88,182,108,25, + 46,187,236,178,21,183,220,114,203,238,123,239,189,55,163,244,20,99,32,155, + 85,182,137,237,219,183,139,237,219,183,91,159,105,253,182,209,174,221,150,205, + 58,113,67,229,200,75,62,249,206,171,144,117,72,121,37,86,68,127,82,204, + 153,243,100,214,121,165,90,247,172,177,177,81,240,87,218,234,18,2,96,123, + 44,211,173,174,174,78,188,252,242,203,182,91,93,93,157,168,171,171,203,217, + 154,112,117,117,117,226,119,191,187,72,188,118,248,128,216,189,59,177,222,156, + 16,195,107,207,209,251,221,187,33,94,59,124,64,252,238,119,23,141,57,127, + 170,159,165,75,15,36,165,35,127,198,24,215,190,91,186,244,64,202,245,243, + 198,154,254,68,221,228,223,57,128,61,13,13,13,226,224,193,131,98,206,156, + 39,69,127,127,191,56,120,240,160,56,120,240,160,16,66,88,159,27,26,26, + 4,128,61,233,254,55,235,214,173,219,243,200,35,143,136,31,255,248,199,162, + 161,161,65,60,251,236,179,35,182,31,255,248,199,226,145,71,30,17,235,214, + 173,27,145,222,120,175,161,54,153,182,140,44,56,178,4,0,224,233,167,159, + 198,205,55,223,140,155,111,190,217,58,222,212,212,132,53,107,214,172,207,36, + 173,108,176,177,66,10,102,241,228,218,186,42,100,29,82,94,79,63,253,244, + 134,155,111,190,121,68,154,249,248,190,82,89,116,185,164,165,165,5,63,249, + 201,79,70,184,17,199,194,180,242,39,240,223,59,126,133,149,43,129,215,14, + 31,192,235,175,30,192,107,135,15,36,189,95,185,18,248,239,29,191,194,180, + 242,39,114,146,231,146,132,248,164,125,29,77,154,163,185,126,52,249,77,6, + 86,174,92,57,15,192,138,135,31,126,24,75,150,44,1,0,44,90,244,20, + 78,156,56,129,19,39,78,224,208,161,67,8,6,131,168,175,175,199,195,15, + 63,12,0,43,106,83,88,93,219,182,109,155,7,96,197,244,233,211,81,89, + 89,9,0,184,255,254,251,71,156,87,89,89,137,233,211,167,167,77,79,49, + 54,50,30,38,224,247,251,173,134,217,238,24,144,16,137,92,46,117,179,102, + 205,154,245,109,109,109,120,250,233,167,177,102,77,31,0,160,173,109,25,218, + 218,218,80,83,83,179,30,200,221,234,3,148,23,144,16,160,161,180,115,154, + 87,33,235,240,217,103,159,221,176,102,77,223,250,53,107,126,104,237,171,169, + 73,188,111,107,251,135,172,243,146,5,108,67,99,163,182,190,177,81,240,87, + 114,121,53,54,54,98,67,99,99,202,107,179,189,159,95,254,242,151,248,192, + 7,62,0,0,120,215,187,250,81,87,247,3,212,214,65,156,60,105,90,231, + 204,153,147,120,94,107,109,201,110,81,210,206,158,43,0,36,202,123,241,101, + 87,100,91,180,81,115,232,224,21,26,23,22,249,115,54,112,97,60,116,240, + 10,141,210,67,6,110,72,249,90,158,198,104,224,15,31,215,95,127,61,190, + 247,248,227,163,78,75,230,159,239,186,75,236,218,181,203,250,60,214,254,209, + 61,123,246,60,121,199,29,119,96,201,146,37,56,116,232,16,54,108,152,139, + 3,7,222,193,205,55,223,140,129,129,1,4,131,65,60,252,240,97,44,95, + 94,133,75,46,169,199,29,119,220,129,39,159,124,178,177,182,182,214,182,15, + 237,240,225,195,79,94,118,217,101,150,184,93,117,213,85,120,241,197,23,147, + 206,217,187,119,47,230,206,157,139,185,115,231,226,178,203,46,3,0,199,244, + 20,99,35,171,40,74,187,134,57,95,48,43,196,54,223,124,88,60,64,254, + 173,171,66,213,161,157,229,102,71,166,22,234,134,198,70,141,111,118,231,212, + 213,213,161,191,191,223,86,252,210,93,235,196,47,127,249,203,164,207,47,191, + 252,50,0,224,248,241,107,112,252,248,53,136,68,26,172,237,248,241,107,178, + 73,218,98,102,229,1,172,88,209,136,215,14,31,192,238,221,112,124,253,208, + 77,255,99,72,12,139,147,177,136,210,88,174,37,168,143,242,250,235,175,71, + 107,75,139,214,218,210,162,237,218,181,11,181,117,117,226,159,239,186,107,76, + 22,226,63,223,117,151,168,173,171,19,187,118,237,178,210,190,254,250,235,145, + 131,126,209,21,107,214,172,193,192,192,0,78,156,56,129,91,111,125,55,158, + 125,54,130,154,154,31,34,24,12,162,166,230,135,216,180,233,85,92,114,73, + 16,193,96,16,107,214,172,1,70,6,141,36,165,231,118,187,173,15,87,95, + 125,53,128,97,43,238,254,251,239,199,139,47,190,136,185,115,231,2,0,134, + 206,77,149,158,98,12,100,44,112,186,174,143,234,216,88,120,246,217,103,177, + 102,77,159,101,121,0,9,43,164,166,230,135,73,22,79,174,242,170,169,249, + 161,149,31,223,114,149,87,33,235,80,215,117,180,181,253,131,101,173,1,176, + 62,243,188,218,218,218,176,102,205,154,245,99,185,55,110,189,117,118,118,142, + 161,212,9,107,175,191,191,127,132,176,17,78,251,137,150,22,51,229,113,59, + 58,123,174,192,204,202,3,73,175,43,87,238,198,197,151,133,109,95,79,158, + 204,141,155,114,162,195,133,133,11,27,183,216,184,208,141,86,228,200,106,163, + 180,104,255,247,30,127,60,73,232,236,202,149,9,245,245,245,160,7,220,96, + 48,136,181,107,47,5,48,236,241,56,122,244,22,4,131,65,12,12,12,88, + 110,76,192,57,220,159,172,55,226,170,171,174,2,48,44,114,95,248,194,23, + 108,207,117,74,79,49,122,50,18,184,182,182,54,173,190,190,222,241,120,125, + 125,189,181,26,119,46,41,164,197,152,239,188,10,89,135,217,230,53,90,11, + 213,206,26,211,134,226,23,70,227,134,164,235,166,76,153,130,15,124,224,3, + 150,91,82,126,181,189,110,195,112,213,9,236,22,181,117,47,136,218,186,23, + 50,106,232,100,113,155,89,121,32,145,142,104,176,221,0,192,91,178,251,156, + 236,179,146,225,86,91,42,87,36,137,220,104,32,113,115,58,254,189,199,31, + 31,147,53,71,125,108,243,230,205,195,192,192,0,62,247,185,203,172,99,36, + 110,116,222,192,192,64,214,229,39,43,14,72,22,55,69,254,201,168,15,142, + 198,82,213,212,212,160,169,169,201,178,104,116,93,79,106,44,115,217,255,70, + 233,147,5,34,247,31,229,203,226,113,58,54,86,10,89,135,114,94,188,206, + 120,94,212,71,55,154,62,57,14,89,111,45,45,45,144,91,161,209,10,29, + 0,71,49,75,74,127,195,6,172,95,63,172,205,36,64,0,48,127,254,239, + 50,202,199,206,130,3,118,59,158,31,141,2,71,143,86,225,210,75,119,139, + 88,116,101,202,251,179,235,83,59,120,48,115,55,167,124,253,104,92,137,78, + 253,122,217,148,195,137,150,150,22,212,213,213,229,180,159,109,52,124,239,241, + 199,181,218,186,58,65,229,201,134,67,135,14,97,201,146,37,168,175,175,183, + 68,172,173,237,31,172,62,56,98,96,96,192,178,244,82,209,211,211,51,194, + 138,115,18,182,158,158,158,172,202,170,200,142,180,2,199,7,10,111,222,188, + 121,67,125,125,125,210,147,126,190,196,173,173,173,77,171,169,169,17,20,248, + 33,147,107,139,39,159,121,21,178,14,51,205,107,205,154,190,49,245,41,202, + 214,81,75,203,10,212,213,189,128,214,150,220,119,39,216,9,157,44,108,124, + 255,48,43,51,74,223,222,130,11,167,204,115,209,162,211,40,41,73,212,67, + 170,160,22,7,65,202,216,202,200,69,223,88,138,52,198,108,133,146,152,212, + 214,213,137,241,28,16,79,150,91,182,226,6,224,133,205,155,55,175,120,228, + 145,71,44,113,227,175,156,96,48,136,205,155,55,3,192,11,169,210,51,12, + 35,227,63,129,97,24,233,210,83,140,129,148,2,39,55,150,64,66,12,228, + 254,154,92,139,27,207,59,157,21,146,15,139,39,151,214,85,33,235,48,139, + 188,214,115,143,108,182,22,42,111,212,233,61,141,171,26,93,201,51,131,11, + 221,250,245,235,45,193,145,95,137,173,91,115,99,193,229,194,74,156,140,20, + 211,12,47,163,45,203,188,121,243,26,159,124,242,201,221,107,214,172,73,178, + 224,100,113,3,18,150,222,147,79,62,137,121,243,230,53,2,232,181,75,239, + 169,167,158,106,4,176,123,217,178,101,35,172,56,153,158,158,30,28,62,124, + 152,174,177,77,79,49,54,28,5,206,174,177,164,70,56,31,130,150,42,239, + 98,176,120,114,37,110,249,170,195,116,121,229,219,26,38,139,46,157,69,147, + 41,183,222,122,43,78,158,60,249,255,216,123,243,56,41,170,115,255,255,93, + 189,77,207,6,195,142,8,178,186,70,64,192,49,168,132,77,175,87,19,215, + 43,49,152,232,149,235,18,141,248,53,234,213,36,230,122,217,226,213,24,243, + 51,81,67,92,72,114,73,98,140,235,85,35,70,163,132,77,220,24,134,69, + 34,26,100,25,24,24,24,24,102,163,167,167,247,243,251,163,187,122,170,123, + 122,239,154,97,150,231,253,122,213,171,187,171,234,44,117,186,251,124,234,121, + 158,115,234,68,63,15,31,62,60,250,126,204,152,255,5,72,104,193,229,66, + 105,233,70,142,52,156,221,206,130,51,211,74,236,76,242,153,211,214,81,243, + 225,12,113,186,172,211,94,116,209,69,188,251,238,187,29,98,33,238,217,179, + 103,141,166,105,107,239,185,231,158,25,143,61,246,88,59,145,211,95,55,111, + 222,204,61,247,220,3,109,214,86,35,9,68,105,207,158,61,107,238,189,247, + 222,181,71,143,30,157,1,237,7,156,232,52,52,52,112,244,232,209,180,249, + 9,249,145,80,224,82,117,150,29,77,23,181,120,178,46,171,51,219,48,93, + 89,157,21,255,139,183,234,114,207,167,125,71,182,103,247,238,232,251,209,99, + 98,45,197,124,132,110,207,238,221,218,53,215,92,163,96,12,240,109,218,94, + 127,107,170,149,152,138,120,81,201,69,100,140,115,223,178,153,199,150,104,30, + 158,25,110,81,29,221,117,152,207,124,184,103,158,126,90,139,140,164,84,96, + 190,229,56,106,212,168,69,107,214,172,89,52,121,242,228,25,243,230,205,227, + 206,59,239,100,210,164,73,209,152,219,19,79,60,193,242,229,203,33,242,76, + 74,34,66,180,103,207,158,164,86,220,213,87,95,189,168,170,170,106,198,89, + 103,157,133,213,106,141,10,93,67,67,3,193,96,144,45,91,182,64,228,153, + 148,233,242,19,114,167,221,195,150,187,154,184,29,47,81,232,170,121,103,91, + 86,252,241,248,209,146,169,234,151,234,97,203,186,197,150,72,212,204,178,226, + 82,149,157,201,156,183,177,99,215,101,61,233,59,89,25,201,4,46,151,50, + 84,248,17,89,209,52,241,162,162,127,142,63,47,23,82,229,161,64,77,158, + 252,177,41,113,190,238,68,178,135,45,143,30,61,122,102,85,85,213,34,146, + 60,108,57,242,94,183,180,26,211,9,210,232,209,163,103,94,125,245,213,9, + 243,139,8,91,194,252,228,97,203,230,209,206,130,211,59,193,248,142,111,196, + 136,223,171,234,234,27,50,254,35,100,127,126,215,17,133,124,73,214,134,237, + 235,17,219,70,217,182,89,186,178,58,210,66,237,72,1,203,164,236,177,99, + 195,2,107,124,146,137,17,253,169,38,102,97,150,59,52,17,241,2,211,153, + 130,211,219,196,45,21,145,39,137,204,76,242,232,44,163,11,49,173,184,117, + 68,126,66,246,36,92,46,71,239,0,99,59,203,223,43,128,76,58,224,108, + 206,13,159,223,115,196,77,39,81,27,198,214,163,125,27,101,219,110,169,202, + 50,227,58,179,93,46,39,222,170,235,206,116,134,149,40,28,31,146,89,112, + 70,146,76,186,206,89,136,178,201,79,44,56,243,200,120,61,56,189,243,205, + 134,76,59,234,215,94,123,109,81,38,22,143,25,116,102,89,241,116,100,27, + 198,150,99,142,136,247,214,245,224,32,118,26,68,58,43,81,4,174,155,161, + 105,34,32,189,132,172,5,174,35,44,56,72,111,241,152,73,103,150,149,12, + 51,45,184,216,124,205,179,80,123,179,192,9,61,24,17,184,222,67,230,235, + 139,45,207,106,109,180,108,207,239,141,91,124,27,153,209,102,225,245,223,194, + 235,189,229,187,190,156,198,241,95,187,75,54,217,76,223,186,192,58,101,178, + 117,210,166,50,180,224,132,238,131,89,22,170,88,112,66,143,68,44,184,94, + 131,8,156,144,20,9,118,11,130,208,157,49,119,44,181,32,8,130,32,116, + 17,68,224,4,65,16,132,30,137,237,197,23,95,60,222,117,16,186,42,74, + 73,16,78,232,113,100,50,15,46,27,196,149,223,117,17,11,78,16,4,193, + 64,252,72,188,209,137,159,68,34,116,3,68,224,4,65,16,12,40,131,231, + 98,212,168,81,179,34,143,220,18,186,33,34,112,130,32,8,41,24,61,122, + 244,168,227,92,5,33,71,210,174,232,29,79,69,69,69,140,191,185,188,188, + 92,226,52,89,210,153,109,40,223,87,246,220,123,223,125,49,109,246,243,71, + 31,149,54,235,5,204,154,53,107,212,154,53,107,150,99,120,250,127,85,85, + 213,106,96,237,232,209,163,23,137,37,215,253,208,94,120,225,133,140,78,172, + 168,168,88,4,44,188,240,194,11,163,251,134,14,25,196,115,127,250,51,192, + 226,242,242,242,69,29,80,191,30,69,103,182,161,94,22,64,121,121,57,21, + 21,21,139,245,207,153,150,117,237,220,185,73,143,253,242,241,199,213,93,223, + 255,126,194,142,255,246,249,243,213,175,151,46,205,89,20,116,129,49,174,52, + 174,175,97,7,230,11,78,188,160,1,204,158,237,6,96,213,170,162,118,231, + 231,91,126,166,237,147,111,59,166,203,195,140,252,187,35,241,131,76,140,194, + 54,125,250,34,126,249,203,203,163,11,159,110,222,188,185,221,122,112,241,66, + 39,131,76,186,46,217,184,40,163,29,243,202,149,43,89,185,114,37,135,106, + 143,16,217,183,48,210,161,118,8,21,21,21,202,184,117,84,57,157,80,86, + 103,182,225,194,242,242,114,128,197,79,63,253,52,149,149,149,11,203,203,203, + 137,236,51,173,172,95,62,254,120,76,27,25,197,34,254,88,54,76,153,50, + 133,243,207,63,63,186,77,153,50,133,41,83,166,180,43,35,95,238,189,239, + 62,117,214,89,86,202,207,158,204,196,137,110,220,110,55,179,103,187,89,177, + 2,86,172,8,11,157,219,237,102,226,68,55,229,103,79,230,172,179,172,166, + 149,127,255,143,255,172,82,125,54,59,127,33,49,107,214,172,89,62,115,230, + 204,25,155,54,109,98,247,238,81,156,124,242,201,124,249,229,151,108,222,188, + 153,73,147,38,241,228,147,79,178,105,211,38,102,206,156,57,35,178,94,156, + 208,77,200,72,224,42,42,42,148,177,99,190,240,194,11,49,90,33,122,7, + 109,118,229,42,42,42,22,233,101,235,219,117,223,185,86,23,161,69,221,169, + 172,206,108,67,93,152,43,42,42,22,151,151,151,39,203,211,212,239,43,31, + 49,203,6,183,219,205,148,41,83,76,21,57,187,109,34,7,15,29,230,163, + 143,96,198,244,105,28,107,158,198,140,233,211,98,222,127,244,17,28,60,116, + 24,187,109,162,41,101,234,226,147,238,53,151,60,115,73,223,91,197,112,214, + 172,89,163,128,25,143,61,246,24,147,38,77,2,224,244,211,95,165,170,170, + 138,170,170,42,54,111,222,76,73,73,9,39,159,124,50,143,61,246,24,192, + 12,25,85,217,125,200,42,6,167,119,204,201,168,168,168,88,100,178,171,50, + 106,241,60,242,200,35,0,252,240,135,63,228,194,11,47,100,229,202,149,11, + 43,42,42,48,177,188,24,235,10,136,138,144,153,101,117,98,27,46,174,172, + 172,92,88,89,89,25,221,241,244,211,79,3,112,219,109,183,81,81,81,145, + 85,89,241,2,118,215,247,191,175,233,110,74,253,245,246,249,243,21,192,41, + 167,156,146,54,109,182,23,83,91,91,203,144,33,67,0,120,255,253,0,69, + 69,19,185,247,190,231,148,193,139,137,238,197,252,249,163,215,101,149,191,207, + 191,30,8,215,121,237,186,245,217,86,45,103,30,126,232,90,205,40,44,241, + 159,179,193,40,140,15,63,116,173,166,231,167,127,39,217,164,53,230,145,11, + 198,155,143,41,83,166,112,237,220,185,166,185,65,255,252,194,11,202,248,155, + 206,215,93,188,102,205,154,229,243,230,205,99,210,164,73,108,222,188,153,197, + 139,79,226,227,143,107,185,234,170,171,112,185,92,148,148,148,240,216,99,91, + 56,247,220,161,140,31,127,50,243,230,205,99,249,242,229,139,36,38,215,61, + 200,74,224,82,117,204,102,19,111,241,36,170,203,202,149,43,23,2,139,204, + 46,43,254,58,205,44,171,179,218,176,188,188,60,70,220,146,17,177,246,210, + 198,228,50,17,165,162,162,34,2,129,64,66,241,203,184,226,113,24,133,13, + 224,107,95,251,26,239,191,31,96,246,236,1,9,207,95,181,234,104,214,101, + 56,236,211,24,48,96,61,51,166,79,195,231,95,143,195,158,236,117,112,68, + 12,219,199,229,186,2,249,8,100,62,105,117,116,97,51,138,218,189,247,221, + 167,238,189,239,62,149,175,208,233,194,86,89,89,25,21,181,63,191,240,130, + 210,203,204,67,232,102,220,121,231,157,184,92,46,170,170,170,184,230,154,127, + 97,225,194,87,25,49,226,247,84,87,223,192,136,17,191,7,224,187,223,29, + 71,73,73,9,119,222,121,39,203,151,47,159,145,38,79,161,139,144,245,40, + 202,206,70,183,220,226,63,255,240,135,63,4,204,181,26,245,188,227,133,161, + 35,202,234,104,42,42,42,184,237,182,219,128,88,203,77,63,166,19,25,128, + 146,151,133,106,180,222,124,62,95,94,245,254,229,227,143,171,170,170,170,118, + 194,166,83,91,91,11,36,22,55,0,183,59,251,50,19,137,217,71,31,157, + 11,4,129,246,175,22,153,92,3,132,197,75,23,150,100,34,102,60,254,231, + 23,94,80,185,136,156,46,110,241,34,166,231,165,11,157,177,172,108,4,79, + 143,185,1,148,148,148,112,247,221,19,249,197,47,182,70,197,237,243,207,175, + 166,164,164,4,151,203,21,117,99,66,120,250,192,158,61,123,170,178,189,30, + 161,243,200,232,175,90,94,94,174,37,178,162,116,34,199,22,155,84,167,30, + 73,103,182,97,134,83,1,226,203,202,58,38,151,200,50,211,71,229,229,106, + 181,221,245,253,239,107,54,155,141,33,67,134,68,69,46,254,53,17,59,118, + 236,136,190,191,125,254,115,234,222,251,194,91,38,101,38,178,216,0,46,189, + 116,64,194,13,224,142,255,151,89,222,61,157,76,45,180,159,63,250,168,150, + 137,71,33,17,137,196,205,200,181,115,231,106,122,92,54,151,216,172,30,99, + 27,53,106,20,46,151,139,123,238,57,43,122,76,23,55,253,60,40,55,140, + 113,0,0,32,0,73,68,65,84,151,203,149,203,37,8,199,137,140,44,56, + 125,208,66,34,247,157,177,99,238,8,235,70,183,158,226,45,183,142,160,35, + 243,238,204,54,52,12,50,1,18,90,110,139,1,244,24,93,46,49,57,35, + 186,245,230,78,96,62,229,227,158,76,38,102,70,118,236,216,17,19,243,211, + 5,8,50,119,87,38,178,224,194,22,91,98,66,33,152,57,179,0,120,78, + 253,234,201,212,241,190,68,110,191,166,166,204,227,124,241,233,115,137,141,37, + 115,61,102,83,143,100,184,221,110,138,138,138,76,141,179,229,194,181,115,231, + 106,247,222,119,159,210,235,147,13,250,104,73,125,106,128,203,229,162,186,250, + 134,104,12,78,199,229,114,69,45,61,161,123,144,86,224,226,134,202,47,142, + 196,162,140,116,136,184,69,44,30,149,44,102,101,182,197,211,145,101,117,102, + 27,198,151,69,120,74,64,187,178,42,43,43,243,26,69,25,111,29,185,221, + 31,81,84,116,46,176,52,159,108,19,146,72,232,226,133,205,184,191,141,228, + 174,76,35,137,45,184,96,202,50,215,172,241,98,177,132,219,33,213,160,150, + 68,130,148,201,192,143,84,233,179,37,89,30,217,212,35,25,186,152,100,235, + 22,52,27,221,114,203,86,220,128,181,79,60,241,196,140,39,159,124,50,42, + 110,198,87,35,37,37,37,60,241,196,19,0,107,77,169,180,208,225,164,20, + 184,4,157,37,229,229,229,90,252,176,249,142,176,220,226,45,30,163,117,213, + 81,22,79,71,88,87,157,217,134,89,148,165,207,145,211,211,101,85,142,177, + 83,143,125,127,110,135,186,237,140,66,119,202,41,167,68,5,39,254,85,103, + 255,126,115,44,56,51,172,196,158,72,87,122,194,75,174,117,25,53,106,212, + 162,229,203,151,175,190,243,206,59,99,44,184,120,113,131,176,165,183,124,249, + 114,70,141,26,181,8,104,204,179,202,66,39,144,84,224,146,116,150,139,140, + 175,29,197,241,180,120,204,44,171,51,219,48,93,89,21,21,21,202,40,106, + 9,200,203,26,214,45,186,116,22,77,166,84,86,86,38,125,146,73,81,81, + 120,46,90,34,11,46,23,108,182,175,225,243,191,223,206,130,51,211,74,236, + 76,242,25,13,217,81,243,225,244,56,93,46,232,241,181,142,16,212,61,123, + 246,172,209,52,109,237,61,247,220,51,227,177,199,30,107,39,114,250,235,230, + 205,155,185,231,158,123,160,205,122,107,68,68,174,203,147,80,224,82,117,150, + 29,77,23,181,120,178,46,171,51,219,48,93,89,241,49,57,93,232,226,99, + 114,249,214,47,145,85,151,91,62,169,59,178,120,247,104,62,66,247,243,71, + 31,213,194,238,173,34,96,19,109,175,19,77,181,18,83,97,198,19,77,140, + 115,223,178,153,199,150,104,30,158,25,110,81,157,68,83,7,178,229,218,185, + 115,53,147,166,4,36,100,212,168,81,139,214,172,89,179,104,242,228,201,51, + 230,205,155,199,157,119,222,201,164,73,147,162,49,183,248,71,117,17,17,182, + 61,123,246,136,192,117,113,218,9,92,23,20,183,69,29,81,135,142,44,171, + 43,138,155,225,120,194,152,92,54,245,251,249,163,215,105,186,200,152,97,173, + 153,69,174,66,151,168,195,212,175,207,44,43,49,158,100,130,100,252,156,107, + 140,44,91,129,50,158,111,166,184,129,121,98,212,145,131,88,34,19,182,103, + 142,30,61,122,230,242,229,203,23,37,152,231,166,11,27,180,89,110,34,110, + 221,128,68,22,156,254,80,222,152,142,47,226,226,202,248,71,150,203,249,113, + 117,56,110,162,96,2,9,219,48,81,61,140,109,148,109,155,165,43,171,35, + 45,212,227,41,108,225,178,159,139,60,144,57,241,57,6,143,166,41,116,148, + 208,65,123,81,49,91,100,178,41,187,55,99,20,186,4,135,141,162,214,40, + 214,91,247,32,225,106,2,122,7,152,168,179,204,164,3,206,230,92,227,249, + 17,186,187,184,233,229,44,74,149,119,162,54,202,182,221,82,149,101,198,117, + 166,90,77,32,17,93,209,170,203,149,123,239,123,78,37,123,90,138,145,85, + 171,142,246,136,235,237,77,196,175,38,144,136,36,107,192,37,20,54,89,77, + 160,235,146,205,114,57,89,127,137,89,8,220,34,50,176,120,204,160,51,203, + 74,80,118,135,181,97,138,114,114,190,206,108,5,174,39,97,140,243,165,179, + 18,69,224,186,25,154,38,130,212,75,200,250,81,93,217,88,112,89,228,185, + 200,48,0,98,81,182,117,234,170,101,37,40,59,165,181,150,171,5,103,228, + 120,198,80,123,18,34,90,130,208,253,201,74,224,50,237,120,35,113,158,172, + 69,46,155,243,243,161,43,116,248,201,218,200,132,21,183,51,138,255,9,130, + 32,244,116,50,118,81,10,221,135,116,241,191,76,233,205,46,74,161,7,35, + 46,202,94,67,151,95,77,64,200,30,211,172,54,233,8,4,65,232,198,200, + 194,31,130,32,8,66,143,68,4,78,16,4,65,232,145,104,50,84,76,16, + 186,25,226,58,22,132,140,16,11,78,16,4,65,232,145,200,32,19,161,215, + 162,192,84,75,72,131,24,135,72,71,231,47,8,66,106,98,92,148,157,249, + 135,148,178,242,47,171,179,48,251,154,140,152,113,125,233,234,151,79,25,191, + 126,98,185,2,184,253,206,121,29,242,61,228,148,191,184,40,5,33,35,98, + 44,184,76,59,2,253,79,153,142,219,239,156,151,244,88,103,150,245,212,19, + 203,51,201,194,148,78,172,51,203,202,132,75,47,189,76,1,172,88,241,102, + 206,229,105,160,41,80,198,107,251,222,157,243,98,190,195,124,143,231,139,74, + 242,124,65,77,162,204,130,208,107,201,43,6,247,248,239,166,36,124,205,150, + 83,207,218,166,18,189,118,4,102,213,217,44,58,250,218,223,92,241,38,111, + 174,120,211,204,44,143,11,10,148,190,117,68,254,153,124,15,217,124,87,29, + 241,27,238,200,255,133,32,244,68,114,138,193,25,69,33,145,96,124,255,198, + 202,140,243,74,214,105,180,253,153,51,207,43,29,201,196,237,120,136,156,177, + 179,74,116,237,255,220,50,222,84,215,157,2,213,21,220,157,249,240,247,85, + 173,0,92,48,187,208,212,107,73,253,27,172,76,123,78,252,119,101,246,247, + 24,255,91,249,231,214,9,249,102,41,8,189,130,156,7,153,156,95,94,156, + 112,255,7,21,45,199,53,175,174,84,86,58,58,178,46,186,184,233,66,160, + 91,63,249,10,67,186,27,152,124,143,119,54,186,120,196,127,23,191,93,54, + 134,155,110,217,29,253,124,126,121,113,187,125,16,254,174,226,133,76,207,43, + 213,247,152,232,187,72,245,253,24,235,247,207,173,233,174,74,16,4,72,227, + 162,76,230,18,74,214,49,235,199,54,110,155,158,81,225,55,222,178,91,233, + 121,253,118,217,24,126,187,108,76,198,229,100,203,198,109,211,211,214,59,158, + 142,116,137,37,234,80,245,235,63,191,188,152,27,111,217,157,87,185,137,58, + 74,51,196,237,252,242,226,164,22,111,190,199,51,229,239,171,90,77,27,248, + 114,126,121,113,194,239,34,25,137,126,163,201,126,87,201,190,199,84,117,207, + 246,255,38,8,66,114,82,10,156,241,238,191,163,43,162,223,25,167,234,92, + 58,147,120,11,168,35,209,175,57,222,58,200,151,97,195,134,69,69,122,216, + 176,97,121,231,167,119,180,169,58,244,124,142,199,19,31,119,187,96,118,97, + 118,21,206,129,84,223,133,25,191,209,84,191,171,206,252,191,9,66,111,32, + 237,32,147,222,40,114,61,65,220,0,14,214,212,104,137,222,119,7,20,168, + 191,175,106,37,126,211,69,206,76,43,78,39,147,239,34,159,223,104,38,191, + 43,17,57,65,48,143,140,98,112,250,48,241,206,24,168,112,211,45,187,163, + 238,186,142,232,244,211,209,83,196,13,224,214,255,119,155,122,250,201,167,163, + 239,159,121,242,233,110,33,114,186,184,37,66,23,185,100,199,51,37,222,117, + 104,20,172,152,247,41,242,48,254,70,245,252,126,183,108,76,187,54,190,241, + 150,221,202,152,167,81,188,116,119,126,34,65,203,215,77,45,8,189,157,168, + 192,165,250,195,27,201,244,206,50,93,28,206,88,94,178,178,126,187,108,12, + 100,216,249,223,120,203,110,149,168,115,201,164,46,58,241,163,14,141,199,226, + 69,40,89,71,182,113,91,70,69,37,237,80,141,101,165,186,166,76,208,197, + 77,127,223,45,212,45,11,34,98,151,147,8,232,237,170,255,14,245,27,43, + 253,189,206,217,227,215,1,177,191,161,68,231,165,250,158,126,183,108,140,166, + 145,248,230,233,236,241,235,194,194,24,55,103,48,81,29,5,65,200,142,168, + 192,197,255,65,227,255,173,113,127,206,180,127,184,179,199,175,227,119,41,142, + 255,110,217,24,205,216,185,24,49,118,32,122,7,147,142,84,19,167,207,30, + 191,46,35,145,211,45,85,253,125,92,125,211,166,255,221,178,49,90,166,19, + 211,73,210,161,198,231,151,81,94,9,184,244,210,203,212,155,43,222,140,113, + 121,93,122,233,101,42,219,9,223,233,68,54,213,113,253,88,188,5,147,77, + 254,157,73,38,222,131,124,172,238,76,60,33,157,233,65,16,132,158,78,70, + 19,189,123,146,219,46,29,61,37,230,104,20,55,8,95,87,46,19,190,141, + 55,34,241,24,5,44,85,218,116,2,152,117,165,58,144,84,223,137,25,191, + 205,84,191,47,17,55,65,48,151,180,2,215,155,196,77,167,187,139,220,148, + 41,103,39,173,119,170,99,201,72,38,66,250,254,116,238,185,92,142,101,194, + 5,179,11,243,254,93,126,80,209,210,110,190,90,38,131,76,82,165,143,63, + 30,79,38,131,76,140,252,110,217,24,237,120,204,211,20,132,238,78,202,65, + 38,189,81,220,116,186,243,192,154,141,149,27,147,14,67,223,88,185,81,117, + 117,243,64,3,237,130,217,133,9,7,154,152,49,192,196,200,63,183,140,215, + 78,61,107,155,138,23,144,211,206,218,198,7,21,45,156,61,62,252,249,131, + 138,150,232,190,68,121,24,63,103,34,70,185,204,83,20,145,19,132,236,72, + 59,15,46,209,159,46,221,29,107,166,113,51,227,157,233,77,183,236,78,120, + 119,108,22,103,143,95,151,211,157,118,71,137,91,34,171,65,191,254,15,42, + 90,114,182,110,166,156,123,118,74,65,214,64,155,114,110,246,86,92,103,19, + 17,57,226,55,195,227,186,76,187,241,210,5,42,217,107,166,231,36,58,215, + 140,71,117,165,43,79,16,132,196,228,252,168,46,51,197,167,51,239,76,187, + 210,93,112,71,212,101,227,71,27,211,246,250,153,156,147,136,15,42,90,56, + 191,188,56,105,189,243,61,30,143,81,192,82,77,29,48,131,108,133,43,217, + 57,241,231,118,68,29,5,65,200,140,156,86,19,208,159,37,152,232,53,219, + 231,12,26,239,114,179,233,64,114,193,88,191,100,175,157,69,170,107,206,245, + 186,167,76,73,109,189,233,104,160,229,18,139,251,254,141,149,124,80,209,146, + 180,173,242,61,158,41,102,90,111,130,32,244,92,114,182,224,204,22,136,142, + 22,55,35,199,91,220,116,204,190,230,202,202,141,25,167,207,230,92,35,233, + 218,42,223,227,157,73,38,131,136,190,215,182,206,96,218,115,227,69,183,163, + 243,23,4,33,53,49,2,151,233,168,65,195,159,50,37,169,254,141,157,89, + 86,166,121,144,97,157,82,117,52,157,89,86,111,67,127,76,151,89,109,210, + 209,109,43,223,157,32,28,95,114,90,209,219,12,164,44,33,27,164,93,5, + 65,200,22,77,122,13,33,29,29,57,31,208,12,225,74,87,191,30,39,142, + 154,214,229,71,193,10,66,87,64,4,78,232,125,136,64,8,66,175,32,167, + 81,148,130,32,8,130,208,213,17,129,19,4,65,16,122,36,226,162,20,132, + 238,134,184,88,5,33,35,196,130,19,4,65,16,122,36,57,79,244,22,132, + 238,206,15,126,248,67,83,45,161,159,61,242,72,140,67,100,241,146,37,166, + 230,191,112,193,2,113,184,8,66,22,196,184,40,23,44,92,104,234,31,114, + 201,226,197,73,255,144,82,86,254,101,117,22,102,95,147,17,51,174,47,93, + 253,242,41,227,195,245,27,21,192,121,211,206,238,144,239,161,226,147,45,10, + 160,252,171,103,101,158,191,184,40,5,33,35,114,138,193,125,242,241,230,140, + 254,96,95,157,58,41,239,78,193,140,178,186,91,125,205,228,185,63,253,73, + 1,92,247,157,239,228,85,222,130,133,11,213,55,46,185,50,250,249,173,183, + 95,143,17,142,124,143,231,91,183,69,139,22,37,60,182,104,209,34,17,56, + 65,232,165,228,21,131,251,100,243,9,9,95,179,229,137,167,14,169,68,175, + 29,129,89,117,54,139,142,190,246,29,59,118,176,99,199,14,51,179,60,46, + 44,88,184,80,233,91,71,228,255,232,47,15,170,68,175,217,158,163,243,171, + 103,106,77,175,103,71,228,41,8,61,153,156,4,238,147,205,39,36,21,138, + 108,5,35,89,7,255,196,83,135,148,217,157,125,170,58,119,182,208,25,175, + 175,163,68,206,40,6,29,233,102,236,44,254,253,134,255,226,223,111,248,47, + 211,175,37,153,112,25,5,44,147,115,116,116,33,50,75,144,126,245,76,173, + 50,59,79,65,232,13,228,108,193,141,24,230,72,184,29,239,188,186,82,89, + 199,179,46,186,8,44,89,188,88,211,93,116,102,8,67,186,27,129,124,143, + 119,54,186,64,141,28,238,136,217,142,28,252,37,35,135,183,125,23,198,125, + 198,205,152,135,206,136,97,118,70,12,179,167,44,55,209,0,148,84,131,82, + 244,60,211,229,43,8,66,27,41,5,46,153,75,40,85,39,60,98,152,131, + 154,218,145,25,21,254,218,27,245,74,207,107,243,166,199,217,188,233,241,140, + 203,201,150,154,218,145,105,235,29,79,71,186,196,226,203,51,94,255,136,97, + 14,94,123,163,62,175,114,19,197,157,242,141,121,125,178,249,4,70,12,115, + 36,21,169,124,143,103,138,153,86,156,81,168,116,54,86,252,44,233,249,241, + 199,18,165,215,25,49,204,206,27,111,182,255,30,83,9,89,162,99,34,106, + 130,144,27,41,5,206,204,59,255,116,76,154,252,125,128,118,34,119,188,48, + 90,64,29,93,150,126,205,122,27,152,69,105,105,105,84,164,75,75,75,243, + 206,79,23,229,100,55,10,249,30,143,39,62,238,246,135,223,255,79,118,21, + 206,1,93,192,206,46,255,65,187,99,250,190,84,2,152,14,93,192,18,13, + 249,215,247,153,61,189,64,16,122,43,105,93,148,189,81,228,122,130,184,1, + 220,119,239,189,90,162,247,221,129,5,11,23,42,61,230,102,220,116,145,235, + 136,88,92,42,113,211,201,71,228,82,137,155,142,136,156,32,152,71,70,19, + 189,151,44,94,172,233,119,210,29,221,233,79,154,252,253,168,187,174,35,58, + 253,116,244,20,113,3,248,203,91,111,170,141,27,54,70,223,95,254,141,203, + 186,133,200,233,226,150,8,93,228,146,29,207,148,151,94,57,26,35,32,70, + 193,138,121,159,34,143,141,21,63,139,10,158,158,223,53,115,6,180,107,227, + 55,222,172,87,91,54,255,42,250,217,40,94,53,135,79,106,183,207,152,46, + 221,117,8,130,144,156,168,192,197,199,124,146,89,81,153,222,53,167,139,195, + 25,203,75,86,214,230,77,143,67,134,157,255,107,111,212,171,171,174,232,159, + 176,3,207,52,38,152,106,212,97,188,8,37,42,235,181,55,234,85,77,109, + 70,69,197,92,115,252,245,235,101,165,186,166,76,208,197,45,254,125,79,33, + 34,114,57,137,128,46,68,186,48,157,93,254,131,132,22,220,240,161,123,0, + 216,127,104,116,116,95,162,243,18,9,155,206,21,151,245,143,177,202,140,22, + 92,197,39,151,43,128,43,12,251,244,243,244,116,34,116,130,144,27,81,129, + 75,215,145,26,45,155,215,222,248,126,218,63,220,176,33,123,83,30,191,234, + 138,254,154,46,114,241,226,97,180,108,210,229,163,147,106,226,244,176,33,123, + 51,18,57,221,82,213,223,199,30,93,156,54,253,85,87,244,215,50,157,232, + 77,196,82,133,228,22,92,62,226,246,220,159,254,164,118,236,216,17,227,98, + 126,238,79,127,82,217,78,248,78,39,178,169,142,235,199,94,123,163,94,37, + 187,137,201,87,196,205,68,23,57,163,101,22,79,38,110,204,100,44,92,176, + 64,91,188,100,137,90,188,100,137,74,230,166,204,196,141,41,8,66,102,100, + 52,77,160,39,185,237,210,209,83,98,142,70,113,131,240,117,229,50,225,219, + 120,35,18,143,81,192,82,165,77,39,128,89,87,170,3,73,21,99,203,71, + 220,116,82,197,216,68,220,4,193,92,210,10,92,111,18,55,157,238,46,114, + 79,63,253,76,210,122,167,58,150,140,100,34,164,239,79,37,82,185,30,203, + 132,63,252,254,127,242,254,93,238,221,239,99,239,126,95,204,190,76,6,153, + 164,74,111,164,186,198,223,110,95,38,131,76,140,92,113,89,127,45,81,62, + 130,32,164,38,237,60,56,232,93,226,166,211,157,69,174,230,96,77,210,121, + 112,53,7,107,76,41,163,35,89,178,120,177,150,108,74,128,25,3,76,140, + 220,119,215,9,26,180,9,149,190,13,58,225,174,24,225,50,238,51,110,198, + 60,116,170,107,252,209,45,25,169,166,9,36,35,93,158,130,32,196,146,118, + 30,92,162,142,178,186,38,213,29,171,47,227,184,217,85,87,244,215,244,188, + 38,77,254,126,59,113,75,85,78,182,12,27,178,55,109,189,227,73,118,253, + 102,16,95,158,241,250,171,107,124,57,91,55,79,47,123,38,229,72,215,37, + 139,23,107,79,47,203,222,138,235,108,116,145,139,223,116,113,51,195,122,211, + 209,5,42,217,107,166,231,232,220,113,235,16,77,127,213,223,231,139,49,79, + 51,242,19,132,222,64,206,235,193,153,41,62,102,230,213,149,202,74,71,71, + 212,165,102,127,122,11,45,147,115,18,81,93,227,99,196,48,71,210,122,231, + 123,60,158,248,213,8,204,180,220,226,201,68,184,50,57,71,167,35,132,72, + 196,77,16,178,35,167,103,81,126,117,210,193,164,175,250,251,76,185,243,123, + 67,181,59,191,55,84,211,223,39,122,53,11,99,253,146,189,118,22,169,174, + 57,215,235,126,250,233,212,214,155,206,146,197,139,181,92,98,113,95,157,116, + 144,234,26,95,210,182,202,247,120,166,152,105,189,9,130,208,115,201,217,130, + 51,91,32,58,90,220,140,28,111,113,211,49,251,154,111,187,237,214,140,211, + 103,115,174,145,116,109,149,239,241,206,36,147,21,189,95,127,243,229,140,207, + 205,101,69,239,191,254,237,47,25,159,43,163,43,5,33,59,98,4,46,211, + 1,21,111,189,253,122,222,5,119,102,89,153,230,145,105,157,82,89,15,157, + 89,86,111,67,31,120,98,86,155,196,11,146,217,136,32,9,194,241,37,70, + 224,58,179,51,149,178,132,108,144,118,21,4,33,91,52,233,53,132,116,116, + 228,84,9,51,132,43,93,253,122,156,56,106,90,151,31,5,43,8,93,1, + 17,56,161,247,33,2,33,8,189,130,156,87,244,22,4,65,16,132,174,140, + 8,156,32,8,130,208,35,201,121,154,128,32,116,73,196,253,40,8,66,4, + 177,224,4,65,16,132,30,137,8,156,32,8,130,208,35,73,235,162,84,134, + 21,147,53,72,57,232,50,155,115,211,165,53,51,47,179,206,77,151,86,234, + 108,206,185,233,210,230,147,151,32,8,189,135,140,44,184,85,171,26,89,181, + 170,49,166,163,137,71,129,210,207,203,150,100,105,51,41,23,32,164,148,10, + 41,21,115,78,166,117,86,74,17,151,52,227,58,39,74,155,105,157,19,209, + 213,219,57,97,158,145,54,200,165,206,137,190,183,76,211,102,82,174,32,8, + 189,27,113,81,10,130,32,8,61,146,172,4,46,217,93,190,126,151,157,11, + 153,164,77,101,93,164,179,0,82,213,57,23,203,45,211,180,185,90,68,169, + 210,30,207,118,78,155,127,18,107,42,147,114,147,125,135,153,164,21,43,78, + 16,132,100,36,20,56,5,74,223,0,102,207,46,203,56,67,253,220,248,60, + 178,77,155,109,185,154,166,145,107,157,181,200,243,92,114,169,179,49,109,182, + 229,118,199,118,142,47,79,203,226,89,56,241,117,206,53,109,182,229,10,130, + 208,59,105,215,77,36,187,107,158,61,187,44,26,7,153,61,187,44,26,220, + 55,158,111,60,39,62,109,162,193,0,153,166,77,84,46,180,221,249,107,154, + 150,85,90,163,5,150,42,109,178,58,103,146,54,89,157,19,229,99,196,152, + 103,170,118,78,150,54,147,118,206,166,220,100,249,196,95,175,177,77,178,253, + 109,232,105,45,6,213,202,54,109,180,92,153,7,39,8,66,132,24,11,46, + 149,75,104,213,170,198,148,119,250,201,58,33,61,109,42,11,35,93,218,84, + 229,38,19,25,51,210,166,170,115,62,229,166,114,113,42,165,210,182,115,170, + 180,233,218,57,215,114,211,253,54,82,89,84,233,190,223,142,74,43,8,66, + 239,38,167,65,38,122,231,223,209,49,161,100,229,66,250,216,91,178,180,29, + 29,123,75,86,110,46,229,117,133,118,206,186,188,136,200,230,82,174,254,157, + 230,146,86,98,113,130,32,196,35,163,40,5,65,16,132,30,137,8,156,32, + 8,130,208,35,201,73,224,244,65,8,26,104,217,140,192,51,146,75,90,227, + 224,7,75,150,193,23,99,157,115,141,219,228,146,54,217,128,141,108,210,30, + 207,118,206,186,188,200,96,143,92,202,213,191,211,92,210,38,27,96,35,8, + 66,239,37,70,224,82,117,44,169,130,253,144,122,96,69,186,14,51,93,218, + 84,229,166,26,28,145,111,218,84,117,206,167,220,84,66,153,106,240,10,164, + 30,88,145,174,147,79,151,54,93,157,83,93,111,170,216,100,186,239,183,163, + 210,10,130,208,187,73,216,221,37,10,214,167,26,66,30,63,164,187,93,33, + 169,132,34,77,218,116,67,215,141,83,5,178,173,179,113,136,121,182,117,78, + 149,54,93,157,141,249,100,91,231,227,213,206,169,234,156,104,138,64,166,229, + 38,154,34,144,109,218,152,114,101,154,128,32,8,17,18,186,40,163,174,188, + 72,167,145,205,136,54,253,220,248,60,178,77,155,109,185,74,41,114,173,115, + 180,163,204,161,206,198,180,217,150,219,29,219,57,190,188,108,44,168,248,58, + 231,154,54,219,114,5,65,232,157,100,21,131,75,118,119,223,209,49,162,84, + 86,69,186,88,92,170,58,119,100,44,206,140,216,91,162,114,143,87,59,167, + 205,63,137,123,52,147,114,147,125,135,153,164,149,216,155,32,8,201,144,81, + 148,130,32,8,66,143,36,173,13,99,140,185,164,187,83,206,230,220,116,105, + 205,204,203,172,115,211,165,149,58,155,115,110,186,180,41,243,146,24,156,32, + 8,17,228,65,71,66,207,66,4,78,16,132,8,226,162,20,4,65,16,122, + 36,34,112,130,32,8,66,143,196,6,112,203,146,77,202,231,57,6,128,195, + 89,202,178,5,147,99,60,151,250,241,248,99,201,246,39,194,140,60,210,229, + 29,95,127,227,126,155,173,144,223,46,57,167,195,61,178,102,149,169,231,19, + 159,71,178,253,102,229,145,238,183,16,61,111,193,6,229,243,185,113,56,138, + 40,233,55,156,95,220,61,204,220,182,21,87,163,32,8,121,162,125,119,201, + 38,181,101,253,114,234,246,111,7,96,224,240,51,56,107,218,188,104,199,54, + 231,246,151,213,63,183,188,137,219,85,71,255,161,227,152,48,245,58,126,187, + 228,28,45,126,191,49,77,60,102,228,145,136,155,22,108,80,71,106,182,179, + 103,251,42,92,141,53,49,245,7,48,94,87,73,217,48,70,159,49,155,65, + 195,206,200,88,24,66,129,96,218,58,88,108,214,168,16,220,18,215,150,217, + 148,25,95,254,150,245,203,169,63,180,147,162,146,129,156,122,214,101,188,242, + 235,111,106,55,45,216,160,62,253,248,185,118,251,205,202,35,190,254,241,191, + 5,157,27,126,180,70,237,248,244,175,212,31,222,73,113,241,0,78,28,91, + 78,255,193,167,208,127,200,41,237,132,78,23,194,144,207,151,190,45,29,14, + 28,142,34,150,45,57,71,214,117,19,4,33,111,108,62,207,49,234,246,111, + 103,205,59,191,227,208,161,67,204,157,247,99,60,174,240,164,218,57,183,191, + 172,254,241,241,159,217,187,243,3,54,124,248,119,46,191,230,46,154,234,246, + 114,249,205,203,219,237,215,211,196,99,70,30,241,232,194,182,97,229,175,104, + 56,178,155,163,181,95,242,197,63,42,98,234,111,177,89,163,215,213,220,220, + 204,57,231,93,64,195,145,221,244,27,52,134,203,111,94,174,146,137,142,177, + 147,247,251,61,105,235,98,183,59,25,56,252,140,168,40,230,82,102,60,198, + 124,78,59,179,28,191,199,197,229,55,47,87,77,117,123,219,237,159,115,251, + 203,42,145,200,229,146,135,199,213,152,244,183,0,112,247,47,106,84,125,237, + 14,106,118,111,96,255,206,15,248,224,239,47,240,149,137,231,114,228,224,118, + 6,157,112,6,39,142,45,231,134,31,173,81,186,208,221,178,96,131,250,231, + 214,191,80,123,96,59,62,95,75,218,182,116,56,138,25,114,226,25,220,178, + 96,131,90,246,147,175,166,61,95,16,4,33,21,182,80,32,136,223,239,161, + 185,185,153,198,198,70,252,126,15,173,174,163,49,2,164,139,135,171,241,32, + 123,119,190,79,253,161,157,212,84,85,242,197,63,42,216,183,111,95,82,33, + 48,138,91,174,121,24,73,38,108,205,205,205,28,58,116,40,90,127,0,253, + 186,116,214,172,124,147,162,162,162,180,162,99,20,134,84,52,55,55,3,224, + 118,187,99,132,32,151,50,227,49,214,125,205,202,55,153,121,225,101,248,3, + 30,250,15,29,135,171,241,96,204,126,189,157,227,69,46,219,60,46,191,121, + 185,106,117,29,109,247,91,208,185,251,23,53,170,250,203,247,217,253,217,74, + 14,237,219,74,211,209,189,248,124,62,62,94,255,46,129,64,128,105,51,191, + 222,78,232,26,234,246,80,189,167,130,181,111,253,38,220,182,41,172,56,175, + 215,75,75,75,11,215,127,239,97,70,159,126,97,202,182,23,4,65,200,4, + 155,241,67,32,16,192,219,210,208,78,128,116,241,56,214,88,195,63,55,189, + 137,207,221,200,63,191,216,202,161,67,135,162,29,125,60,137,196,45,219,60, + 116,146,9,27,16,237,140,235,235,235,113,185,92,216,237,206,118,233,221,110, + 55,141,141,141,248,124,190,180,162,99,20,134,230,230,102,220,110,119,210,142, + 217,237,118,19,8,4,162,231,91,108,86,236,118,103,180,78,122,218,92,133, + 78,111,151,119,255,250,42,255,114,209,101,28,169,249,28,159,187,49,102,255, + 69,95,191,58,218,222,137,44,185,76,243,208,197,207,219,210,0,132,127,11, + 70,170,191,124,159,109,27,94,164,102,247,6,62,219,250,17,62,159,15,175, + 215,75,99,99,88,216,223,89,241,18,118,187,157,11,254,245,170,168,208,149, + 148,13,33,224,113,1,208,208,208,128,215,235,197,239,247,39,188,86,93,224, + 124,190,150,140,220,153,130,32,8,233,176,197,239,136,23,32,189,179,246,120, + 60,120,61,77,120,61,77,84,85,85,209,220,220,76,93,93,93,66,81,137, + 23,183,92,242,128,204,132,173,185,185,25,151,203,69,32,16,224,230,219,238, + 102,220,153,255,138,195,89,130,47,210,177,66,155,229,224,118,187,211,138,206, + 161,170,141,4,188,238,232,249,122,7,158,136,64,32,128,203,213,86,142,195, + 89,74,217,224,177,156,115,222,5,188,254,202,31,9,4,2,52,55,55,99, + 179,217,178,18,58,93,40,245,186,187,221,110,222,123,247,77,166,79,159,30, + 115,77,110,183,59,169,200,101,155,135,81,252,226,185,101,193,6,85,185,118, + 25,53,187,55,176,185,98,45,199,142,29,163,165,165,5,151,203,133,223,239, + 143,185,1,120,254,15,79,83,92,92,204,117,55,254,144,210,150,225,180,52, + 29,142,138,161,177,173,140,232,121,184,221,238,164,109,45,8,130,144,45,49, + 2,103,179,217,218,9,80,77,77,13,46,151,139,57,115,230,0,240,233,167, + 159,70,173,177,198,198,198,24,81,129,196,226,150,109,30,217,10,219,77,55, + 207,167,108,224,104,198,157,249,175,156,122,214,101,252,118,201,57,218,245,63, + 88,149,116,144,66,50,161,59,178,255,31,4,3,94,142,69,6,172,164,114, + 169,65,88,224,140,150,206,178,5,147,181,57,183,191,172,2,190,86,110,184, + 249,71,52,214,237,225,213,87,254,148,181,208,25,133,242,221,191,190,26,173, + 243,186,117,235,152,62,125,58,19,38,76,96,221,186,117,209,253,137,68,46, + 219,60,226,197,207,136,207,231,166,161,97,31,155,43,214,70,45,101,163,176, + 233,194,20,8,4,248,143,155,191,71,129,179,20,0,143,187,1,215,177,195, + 0,81,203,45,153,5,167,167,23,4,65,48,139,24,129,43,42,42,2,194, + 2,148,76,152,128,168,48,221,116,243,124,78,28,119,110,84,84,110,89,178, + 73,109,92,245,76,90,113,75,151,199,150,245,203,57,184,103,83,59,97,211, + 45,42,151,203,133,199,227,225,166,155,231,83,90,54,140,81,167,205,226,148, + 201,151,103,61,90,209,40,116,239,254,245,85,28,14,7,83,167,78,141,150, + 151,11,250,72,197,35,53,219,217,177,233,47,204,187,249,62,142,53,214,240, + 198,235,47,38,45,115,230,133,151,209,112,100,55,131,78,252,10,183,44,217, + 164,116,161,108,174,175,230,95,46,186,140,247,222,125,51,154,238,157,119,222, + 225,226,139,47,102,250,244,233,172,91,183,46,186,255,245,87,254,200,149,115, + 174,199,238,44,225,166,5,27,114,202,67,23,191,120,116,151,97,125,125,61, + 181,181,181,92,126,249,21,0,252,229,47,111,224,243,249,176,217,108,204,153, + 243,77,0,74,202,78,160,180,239,48,142,53,213,240,254,234,55,56,243,204, + 241,57,181,163,32,8,66,190,196,76,244,214,59,63,93,72,2,129,64,84, + 152,62,254,248,99,128,232,254,185,115,231,226,40,42,99,216,240,179,162,195, + 204,125,158,99,52,215,87,71,197,77,143,81,101,155,71,253,161,157,188,253, + 218,211,108,248,240,239,49,3,72,140,117,186,238,186,235,112,20,149,49,252, + 148,105,156,50,249,114,254,242,155,121,90,46,115,206,116,235,170,190,190,158, + 186,186,58,222,121,231,157,168,8,231,202,111,151,156,163,253,229,55,243,180, + 83,38,95,206,240,83,166,225,40,42,227,226,139,47,230,226,139,47,142,222, + 68,232,101,30,58,116,136,87,94,248,95,126,187,116,1,205,245,213,232,115, + 208,94,249,245,55,181,97,163,206,194,81,84,198,244,233,211,41,42,42,138, + 186,68,223,121,231,29,128,118,251,95,120,110,25,174,198,26,2,129,214,156, + 242,104,110,110,102,221,186,117,209,118,142,199,239,247,115,245,53,223,161,164, + 236,4,236,206,18,250,247,239,207,156,57,223,140,138,219,250,245,239,227,245, + 28,227,88,83,13,222,200,117,64,56,190,38,8,130,208,217,196,8,92,32, + 16,224,226,139,47,142,14,144,176,217,108,172,88,177,2,128,169,83,167,70, + 239,244,245,253,62,119,35,53,251,183,48,231,246,151,21,132,99,80,125,250, + 143,224,180,51,203,163,86,74,46,121,244,31,58,142,75,174,186,141,115,206, + 187,128,154,154,154,168,75,50,16,8,96,179,217,120,231,157,119,88,183,110, + 29,62,119,35,251,119,172,103,199,166,191,112,249,205,203,213,77,11,54,100, + 60,119,42,16,8,224,241,120,240,120,60,184,92,46,92,46,23,141,141,141, + 92,124,241,197,76,152,48,33,175,120,208,77,11,54,168,203,111,94,174,118, + 108,250,11,251,119,172,199,231,110,164,170,170,42,42,156,186,200,232,219,213, + 115,190,195,77,243,151,208,167,255,8,28,17,247,222,156,219,95,86,53,85, + 91,162,105,245,116,0,23,95,124,49,208,102,13,235,215,49,247,186,91,40, + 41,27,134,205,86,152,83,30,46,151,139,233,211,167,71,111,76,116,44,14, + 71,244,125,129,179,148,210,190,195,40,112,150,50,109,218,215,0,216,178,101, + 51,91,182,108,198,110,183,227,247,184,112,53,30,100,251,182,77,180,180,180, + 196,148,41,8,130,208,153,36,124,84,151,222,249,1,81,65,129,176,64,233, + 22,136,205,102,227,141,215,95,164,166,170,146,127,110,121,51,234,22,27,123, + 198,133,140,28,119,126,116,248,121,46,121,76,152,122,29,147,103,220,204,184, + 51,255,149,27,110,254,17,87,92,249,45,160,125,204,107,237,154,191,177,234, + 221,23,217,187,243,3,54,173,253,13,27,86,254,42,42,148,201,48,10,155, + 190,233,113,188,255,252,209,207,25,56,244,116,10,156,125,163,117,204,150,57, + 183,191,172,54,172,252,21,155,214,254,134,189,59,63,96,227,199,111,199,12, + 214,169,175,175,143,90,72,122,153,39,159,117,25,147,103,220,204,228,233,55, + 69,39,140,239,218,190,50,220,46,145,180,205,205,205,120,60,158,24,87,175, + 219,237,142,238,191,249,182,187,25,57,238,252,24,87,111,182,121,204,157,59, + 23,8,187,170,109,182,54,239,181,195,81,196,208,225,19,153,59,239,62,236, + 246,194,168,133,182,119,111,21,95,126,185,3,32,58,136,100,253,250,247,249, + 228,147,143,169,173,173,165,161,161,33,167,54,20,4,65,48,131,118,163,40, + 11,156,125,113,20,149,113,197,149,223,138,198,109,2,129,0,43,86,172,224, + 210,75,47,141,137,219,4,2,1,94,121,225,127,185,227,222,199,162,163,22, + 95,249,245,55,53,93,100,46,250,250,213,188,251,215,87,179,206,67,119,53, + 26,159,84,114,211,109,15,164,28,180,1,68,69,245,166,5,27,148,113,20, + 165,142,46,102,70,161,212,7,168,156,124,214,101,140,62,99,54,173,205,135, + 217,246,241,11,105,27,46,145,85,18,141,65,238,120,159,109,155,214,2,169, + 7,197,232,101,38,154,139,215,120,120,87,212,213,187,111,223,62,26,27,27, + 185,238,186,235,128,54,97,170,171,171,139,14,210,25,57,238,124,206,156,122, + 109,140,171,55,155,60,110,186,121,62,165,253,71,226,115,55,226,48,88,108, + 0,203,150,156,163,221,240,163,53,170,164,100,32,95,108,121,131,21,175,60, + 133,205,102,139,14,253,215,71,71,182,180,180,68,173,54,159,207,23,117,93, + 234,164,26,96,34,8,130,96,54,237,4,174,180,108,24,195,79,153,70,115, + 125,117,84,160,244,59,124,93,252,244,65,11,250,254,248,73,218,137,68,46, + 219,60,32,59,161,3,120,253,149,63,114,219,93,63,139,153,34,160,15,22, + 49,90,107,208,94,216,116,145,185,254,7,171,212,231,155,255,2,180,205,115, + 75,230,98,139,223,175,139,202,182,77,107,115,18,54,29,227,228,123,221,69, + 107,20,32,32,102,4,106,188,184,229,146,199,137,227,206,165,79,255,17,236, + 223,177,190,157,5,7,240,251,159,206,212,110,248,209,26,229,114,213,113,233, + 156,239,81,127,104,39,111,190,241,66,187,209,148,122,123,221,126,199,125,244, + 27,52,38,58,138,210,235,245,166,28,149,154,110,196,170,32,8,66,182,68, + 123,49,189,115,42,40,238,199,136,113,231,2,231,98,183,57,185,232,235,87, + 71,231,116,197,139,159,190,63,17,241,34,151,75,30,58,233,132,206,104,153, + 37,18,74,93,100,32,185,176,233,231,234,243,199,244,246,208,197,41,21,250, + 124,179,68,162,146,141,176,197,227,118,187,163,238,71,163,0,185,221,110,92, + 46,87,82,113,203,37,143,83,38,95,14,192,145,3,159,181,139,193,233,252, + 254,167,51,181,91,22,108,80,3,135,142,227,192,174,10,174,187,241,135,52, + 29,221,203,11,207,255,22,159,207,71,32,16,224,187,183,221,77,223,1,35, + 57,117,82,56,191,67,251,182,70,39,113,39,203,87,71,63,102,137,179,32, + 5,65,16,114,193,166,119,232,250,29,180,221,238,164,111,255,147,248,227,207, + 102,71,5,234,202,57,215,243,194,115,203,40,40,238,199,216,51,46,196,231, + 107,193,110,115,70,247,39,154,164,13,177,34,151,107,30,70,146,9,93,83, + 227,1,158,91,254,20,129,64,32,154,143,126,93,250,4,243,76,69,198,225, + 44,101,224,240,51,152,59,239,199,89,61,139,210,89,82,134,207,115,44,42, + 142,30,143,135,27,230,221,154,147,176,25,191,147,185,215,221,18,21,32,135, + 163,152,35,7,62,195,231,243,113,221,188,239,165,20,183,92,242,184,254,7, + 171,84,252,111,33,158,101,75,206,209,238,254,69,141,234,63,248,20,78,28, + 91,166,30,6,52,0,0,32,0,73,68,65,84,206,129,93,21,220,250,255, + 150,208,116,116,47,127,88,254,20,125,7,140,228,43,229,115,24,54,230,28, + 66,62,31,5,197,253,184,254,123,15,103,252,44,202,17,163,203,113,56,114, + 139,127,10,130,32,24,145,213,4,18,144,205,106,2,0,206,146,178,94,181, + 154,128,142,254,240,229,250,195,59,56,176,171,130,150,150,163,244,31,60,142, + 83,38,124,157,223,255,116,102,56,79,89,77,64,16,132,227,132,166,145,126, + 13,176,155,22,108,80,129,64,107,187,99,201,246,39,194,140,60,82,229,237, + 243,184,98,150,174,129,88,161,114,56,75,58,117,61,184,124,203,236,234,235, + 193,25,185,251,23,53,202,213,176,31,125,125,184,101,102,180,179,8,156,32, + 8,121,162,61,246,216,99,202,227,73,238,138,115,58,19,187,14,231,204,185, + 146,87,94,121,157,92,211,2,140,24,49,58,139,170,182,81,93,189,167,219, + 165,213,128,31,254,232,71,209,207,143,252,244,167,100,210,131,63,248,224,131, + 57,149,7,240,192,3,15,164,60,190,123,247,110,198,142,25,147,97,189,82, + 105,86,251,20,102,220,73,100,163,112,15,63,252,112,70,231,221,127,255,253, + 49,159,45,154,214,97,55,61,181,135,15,171,237,219,183,179,125,251,118,182, + 108,217,2,192,178,103,159,149,133,97,5,161,147,176,1,92,121,229,149,89, + 37,58,253,244,211,169,174,222,67,190,105,1,62,255,252,115,0,52,77,195, + 98,105,63,45,79,169,240,255,55,20,10,1,240,206,59,239,68,5,210,140, + 180,153,146,111,90,238,190,155,49,99,198,180,59,182,123,247,238,148,105,191, + 253,237,111,243,252,243,207,3,68,31,35,150,138,11,47,188,48,154,111,186, + 188,159,127,254,121,120,224,129,132,245,106,35,147,254,88,63,167,173,175,221, + 149,166,236,177,99,198,112,168,182,54,117,182,67,134,100,80,118,27,241,226, + 21,207,218,181,107,121,248,225,135,211,158,151,43,21,27,55,170,183,222,122, + 139,141,27,55,178,121,243,102,134,13,27,198,208,161,67,57,229,148,83,40, + 47,47,239,144,50,5,65,72,78,194,137,222,157,141,166,105,81,145,138,223, + 172,86,43,22,139,133,100,55,218,249,164,237,108,198,140,25,19,221,178,225, + 219,223,254,54,16,126,212,89,191,126,253,146,110,70,113,51,167,94,217,182, + 91,236,249,99,198,140,97,229,202,149,73,63,3,12,25,50,132,173,91,183, + 38,253,108,54,247,223,127,127,66,107,175,226,153,41,202,184,237,220,181,75, + 53,54,53,101,101,29,189,245,214,91,28,56,112,128,75,46,185,132,231,158, + 123,142,154,154,26,14,236,223,175,173,94,181,74,251,217,35,143,104,167,159, + 158,254,185,156,171,215,172,81,171,215,172,17,171,76,16,76,160,221,60,184, + 206,70,23,40,171,213,218,110,238,21,132,173,48,165,84,212,10,51,43,237, + 241,32,91,97,51,162,91,114,111,191,253,54,151,92,114,73,187,227,83,166, + 76,1,178,23,183,228,245,202,245,166,64,67,183,228,118,239,222,29,21,221, + 68,159,1,106,107,107,153,56,113,98,210,207,102,98,44,123,193,130,5,209, + 137,231,21,207,76,81,229,183,86,198,92,112,197,51,215,168,134,41,207,208, + 216,212,164,202,250,246,205,168,49,38,77,154,196,162,133,11,115,190,155,218, + 254,249,231,106,254,252,249,204,158,61,59,215,44,4,65,48,208,37,4,78, + 183,184,70,141,26,149,240,156,189,123,247,18,12,6,219,9,85,62,105,141, + 156,126,250,233,9,247,103,226,138,204,38,109,62,2,7,201,69,46,31,113, + 51,163,94,157,133,166,105,81,183,115,46,232,130,182,118,237,218,168,216,233, + 226,22,82,207,196,100,108,209,110,213,42,158,185,85,125,89,25,62,39,122, + 160,18,250,253,240,37,6,14,28,72,166,194,151,41,235,214,173,99,221,186, + 117,12,24,48,32,43,97,21,4,33,49,237,4,78,127,102,100,60,198,231, + 83,38,35,215,180,186,37,246,139,95,252,34,225,241,57,115,230,164,117,81, + 230,146,86,39,89,218,76,174,57,155,180,49,2,148,163,168,196,139,92,190, + 226,150,184,94,249,246,171,26,176,139,49,99,198,240,236,179,207,70,197,36, + 254,51,132,93,146,239,190,251,110,212,106,139,255,220,46,231,60,69,46,17, + 241,226,166,239,179,104,183,182,107,136,167,191,139,58,250,226,139,124,235,91, + 223,50,181,14,219,63,255,92,221,120,227,141,0,188,246,218,107,237,44,93, + 65,16,178,167,157,192,221,125,247,221,9,79,204,196,154,201,37,173,46,62, + 154,166,113,237,181,215,38,60,71,127,194,69,188,80,229,147,214,72,38,66, + 102,70,90,51,4,14,218,68,206,12,113,51,179,94,137,242,237,8,23,101, + 71,136,28,149,80,89,249,108,204,174,24,203,45,134,87,105,88,249,42,59, + 119,237,82,227,198,142,205,219,202,170,61,124,88,205,159,63,159,138,138,138, + 232,190,71,30,121,132,213,107,214,168,89,51,103,138,21,39,8,57,210,78, + 224,178,29,33,104,86,218,222,64,188,16,237,222,189,59,58,66,50,87,242, + 153,70,96,172,135,217,140,205,64,40,135,166,27,37,153,226,166,196,84,145, + 171,172,164,178,178,146,248,56,92,34,66,27,159,81,150,179,111,213,158,254, + 46,234,232,209,23,77,41,254,227,143,63,102,204,152,49,76,156,56,145,173, + 91,183,210,191,127,127,134,12,25,194,250,245,235,217,87,93,173,78,26,49, + 34,166,94,251,170,171,21,64,252,126,65,16,98,57,238,49,56,35,67,135, + 14,77,184,127,255,254,253,29,154,182,179,98,112,183,126,247,187,49,159,199, + 142,25,3,105,230,170,165,226,191,33,175,244,58,241,245,210,178,154,129,150, + 24,45,193,180,141,108,73,87,11,179,45,185,68,174,202,118,84,86,18,82, + 207,168,103,111,189,53,186,198,94,62,52,54,53,169,186,186,58,174,184,252, + 114,237,39,15,62,168,244,17,164,247,223,127,63,83,167,78,109,183,88,108, + 237,225,195,234,181,215,94,227,212,83,79,205,187,108,65,232,233,116,137,24, + 156,78,178,120,214,55,191,249,205,132,251,59,58,173,217,49,184,63,191,208, + 182,12,207,181,115,231,102,36,35,175,191,254,122,6,103,37,38,221,28,197, + 195,135,15,51,100,240,224,4,245,202,223,48,176,152,50,213,59,53,139,22, + 45,234,240,50,204,96,245,154,53,106,237,218,181,124,254,249,182,118,199,140, + 3,73,250,247,239,15,132,31,144,253,193,7,31,112,197,229,151,199,52,98, + 237,225,195,234,129,7,30,160,95,191,126,209,181,251,4,65,72,206,113,143, + 193,25,73,23,71,235,168,180,157,21,131,27,60,120,112,187,125,135,15,31, + 78,153,230,188,243,206,227,195,15,63,4,104,119,55,159,8,125,240,195,225, + 195,135,211,230,253,225,135,31,194,149,87,38,172,87,87,32,94,192,140,159, + 23,45,90,196,194,133,11,59,183,66,64,37,149,76,97,74,187,253,251,170, + 171,213,230,205,155,219,237,95,180,120,177,210,227,142,211,167,79,79,153,247, + 240,225,195,25,58,116,40,135,14,29,226,229,151,95,230,233,103,158,81,87, + 93,117,21,94,175,151,205,155,55,115,197,21,87,208,216,216,200,83,79,61, + 101,250,8,78,65,232,137,72,12,174,19,57,114,228,72,78,233,116,145,43, + 40,40,72,58,0,67,41,21,29,238,159,78,216,204,170,87,71,19,47,96, + 186,192,117,168,184,85,86,166,57,14,70,125,219,254,249,231,234,27,223,248, + 6,163,71,143,78,40,96,203,150,45,139,190,191,235,174,187,88,189,106,85, + 210,172,167,78,157,202,185,231,158,203,107,175,189,198,190,125,251,248,201,79, + 126,194,138,21,43,0,248,228,147,79,168,175,175,103,233,210,165,200,192,19, + 65,200,12,137,193,209,121,49,184,89,179,102,165,205,47,25,186,200,109,221, + 186,181,157,200,229,35,110,249,214,171,179,57,94,150,91,50,174,187,238,58, + 246,237,219,7,192,184,113,227,218,9,216,123,239,189,199,234,213,171,153,53, + 107,22,103,156,126,122,74,97,26,50,120,176,182,244,215,191,86,175,189,246, + 26,0,135,14,29,226,237,183,223,6,194,238,203,69,139,22,113,219,173,237, + 167,46,8,130,144,24,137,193,165,72,107,118,12,46,95,87,160,81,228,38, + 76,152,0,132,7,90,228,35,110,102,212,171,179,232,8,113,235,119,225,75, + 84,174,188,6,128,202,91,159,165,146,52,22,28,80,121,235,173,172,56,120, + 25,231,158,59,138,126,253,250,209,208,208,192,133,23,94,200,163,143,62,202, + 178,103,99,167,26,164,19,181,120,230,204,153,67,125,125,61,63,253,233,79, + 241,120,60,56,157,78,198,143,31,207,173,183,206,231,170,171,46,227,191,77, + 24,84,36,8,189,5,137,193,209,121,49,184,24,1,202,81,84,116,145,251, + 244,211,79,153,48,97,2,163,71,143,110,159,119,150,152,81,175,206,32,157, + 184,173,93,187,54,235,60,7,14,28,72,195,148,103,120,247,221,119,169,162, + 10,18,196,215,18,113,238,185,163,184,232,162,139,40,63,251,108,13,96,217, + 179,207,182,19,183,92,24,50,120,112,140,32,182,184,92,124,252,209,71,124, + 252,209,71,252,199,188,188,179,23,132,94,133,196,224,58,145,213,171,87,183, + 125,200,227,73,24,186,200,229,107,185,153,93,175,227,201,130,5,11,114,74, + 87,214,183,175,214,216,212,164,250,245,235,23,93,201,60,19,28,14,7,3, + 7,14,204,169,76,65,16,58,7,137,193,209,121,49,184,65,131,6,197,124, + 62,124,248,112,116,132,100,174,228,51,141,64,39,190,94,93,133,68,75,32, + 153,158,191,166,169,178,178,178,220,51,145,245,216,4,161,203,34,49,184,20, + 105,205,142,193,93,16,247,148,248,33,131,7,67,150,235,233,181,35,223,244, + 180,175,151,41,19,189,187,198,74,76,130,32,244,98,36,6,71,231,197,224, + 114,89,209,187,35,73,190,162,119,247,152,232,45,8,130,144,10,137,193,117, + 34,185,172,232,157,46,175,7,31,124,48,186,32,106,182,100,182,162,183,32, + 8,66,247,68,98,112,116,159,245,224,226,243,169,140,76,74,126,254,249,231, + 115,22,57,51,235,37,8,130,208,149,232,214,49,56,253,65,187,74,169,148, + 235,193,25,207,205,166,92,179,99,112,102,8,73,188,184,93,114,201,37,188, + 253,246,219,121,137,92,251,122,41,242,91,19,78,129,196,224,4,65,56,206, + 116,235,24,156,82,138,80,40,132,166,105,81,33,139,63,174,175,230,157,74, + 224,58,43,6,151,175,192,197,139,155,78,190,34,39,22,156,32,8,61,145, + 110,29,131,11,6,131,81,145,211,49,10,153,82,42,70,228,142,55,249,44, + 44,154,76,220,116,242,17,185,196,245,202,213,138,59,222,67,103,4,65,16, + 194,116,235,24,156,219,237,70,211,52,52,77,139,153,51,101,116,93,66,155, + 16,38,35,159,24,92,54,228,42,112,186,184,173,92,185,50,229,121,83,167, + 78,229,227,143,63,206,90,228,146,215,43,91,145,19,113,19,4,161,235,96, + 106,12,46,95,178,141,193,29,60,120,16,45,178,234,179,190,248,101,34,119, + 164,110,201,101,91,174,217,215,220,17,43,122,39,35,155,124,83,143,228,212, + 219,45,149,208,137,176,9,130,208,245,200,43,6,151,236,220,92,201,54,6, + 183,107,215,174,118,251,60,30,79,210,252,157,78,103,194,253,217,8,89,50, + 49,204,164,92,179,87,244,54,139,248,122,37,126,130,72,42,129,147,1,37, + 130,32,116,61,242,138,193,229,243,40,165,189,123,219,139,83,166,140,28,57, + 54,231,180,115,230,228,254,228,143,124,202,229,238,187,115,90,209,187,35,73, + 182,162,183,32,8,66,79,160,91,199,224,204,162,179,98,112,185,172,232,157, + 46,175,215,95,127,157,243,206,59,47,167,60,186,250,138,222,130,32,8,249, + 208,173,99,112,29,93,174,217,215,108,214,202,217,186,32,237,217,179,7,8, + 11,85,174,34,103,102,189,4,65,16,186,18,166,206,131,203,151,124,158,39, + 153,15,157,33,222,96,206,202,217,241,226,54,97,194,4,62,253,244,211,188, + 68,174,59,173,232,45,8,130,144,41,166,206,131,19,82,147,175,43,80,79, + 191,123,247,238,232,232,81,200,95,228,196,69,41,8,66,79,68,98,112,116, + 94,12,46,159,149,179,141,226,6,225,169,15,250,28,64,128,137,19,39,178, + 117,235,214,156,68,174,187,172,232,45,8,130,144,13,18,131,75,81,174,217, + 215,156,235,202,217,186,184,189,248,226,139,105,207,45,40,40,200,90,228,122, + 194,138,222,130,32,8,241,72,12,142,206,139,193,229,187,162,119,65,65,65, + 198,231,102,147,111,87,93,209,91,16,4,33,31,36,6,215,73,104,22,11, + 23,26,63,3,137,29,178,157,139,6,237,234,37,8,130,208,19,144,24,28, + 157,23,131,19,4,65,16,58,15,137,193,165,40,183,179,92,151,130,32,8, + 130,249,72,12,14,17,50,65,16,132,158,136,196,224,4,65,16,132,30,137, + 196,224,144,24,156,32,8,66,79,68,98,112,41,202,21,215,165,32,8,66, + 247,69,98,112,136,144,9,130,32,244,68,36,6,39,8,130,32,244,72,36, + 6,135,196,224,4,65,16,122,34,18,131,75,81,174,184,46,5,65,16,186, + 47,18,131,67,132,76,16,4,161,39,34,49,56,65,16,4,161,71,34,49, + 56,36,6,39,8,130,208,19,57,238,49,56,165,84,244,53,89,44,108,206, + 156,57,49,231,154,141,196,224,4,65,16,122,30,199,61,6,167,148,34,20, + 10,161,105,90,84,200,226,143,7,131,65,66,161,80,135,9,156,8,153,32, + 8,66,207,227,184,199,224,130,193,96,84,228,116,140,66,166,148,138,17,57, + 65,16,4,65,200,132,227,30,131,115,187,221,104,154,134,166,105,88,44,150, + 232,126,163,235,18,218,132,80,16,4,65,16,50,225,184,11,220,193,131,7, + 209,180,240,58,210,154,166,69,173,185,120,49,211,45,57,65,16,4,65,200, + 4,91,178,152,91,103,177,107,215,174,118,251,60,30,79,210,243,157,78,103, + 222,101,38,27,84,210,209,229,10,130,32,8,157,135,166,196,44,18,4,33, + 1,154,238,90,73,193,252,249,243,39,47,93,186,116,147,254,154,101,17,139, + 128,133,192,226,200,251,248,242,165,111,18,242,226,184,187,40,5,65,232,158, + 204,159,63,191,50,242,170,239,154,146,97,210,211,128,123,129,139,128,32,112, + 35,48,28,248,57,240,133,185,181,20,122,51,98,193,9,130,144,144,68,22, + 220,252,249,243,237,64,17,80,8,148,3,15,3,78,194,98,229,6,90,1, + 247,210,165,75,253,73,178,189,6,248,227,131,15,62,228,184,252,242,171,57, + 253,244,49,236,221,187,151,151,94,122,137,31,255,248,199,62,224,122,224,165, + 72,249,210,55,9,121,33,2,39,8,66,66,226,5,110,254,252,249,69,192, + 41,192,87,128,147,128,17,192,200,200,225,189,64,53,176,15,248,12,216,177, + 116,233,82,119,92,150,167,1,91,87,175,94,237,216,180,169,12,151,203,207, + 130,5,229,209,131,107,214,172,97,214,172,89,62,96,34,240,133,8,156,144, + 47,150,244,167,8,130,208,219,153,63,127,126,95,224,124,96,46,48,11,24, + 2,52,17,118,45,86,71,222,15,137,28,155,11,156,31,73,99,228,222,135, + 30,122,200,49,115,230,76,174,191,254,84,94,126,121,39,7,15,182,68,15, + 206,156,57,147,135,30,122,200,65,216,125,41,8,121,35,22,156,32,8,9, + 209,45,184,136,80,93,12,76,35,28,51,107,0,154,9,187,35,7,3,181, + 128,70,216,109,217,7,232,7,88,129,247,129,191,45,93,186,180,41,146,229, + 190,157,59,119,142,24,59,118,44,0,11,22,124,66,75,75,128,162,34,27, + 67,135,22,49,127,254,120,118,237,218,197,184,113,227,170,129,147,196,130,19, + 242,69,4,78,16,186,36,10,165,130,132,66,112,240,160,151,85,171,155,217, + 240,73,51,95,124,209,200,161,131,62,154,155,61,88,44,138,1,3,173,12, + 27,102,99,194,248,50,206,63,191,31,231,79,27,76,105,169,61,242,240,132, + 252,28,52,154,166,105,17,183,228,37,192,12,192,7,28,6,78,6,254,29, + 248,55,64,143,181,233,177,185,62,192,0,194,194,231,0,214,2,111,71,220, + 149,1,191,223,111,181,217,194,99,219,14,29,114,243,47,255,242,6,87,94, + 57,134,219,111,63,147,19,78,40,38,16,8,96,183,219,131,128,77,4,78, + 200,23,17,56,65,232,82,132,255,142,173,173,65,94,123,189,142,223,47,63, + 202,167,91,27,240,122,15,225,243,237,37,164,106,8,133,26,9,4,253,104, + 202,66,72,245,1,250,160,209,15,232,75,89,63,59,23,95,60,156,219,110, + 59,131,169,83,7,99,181,90,8,219,97,105,71,252,183,227,142,59,238,112, + 0,231,17,22,56,39,80,67,216,90,171,3,94,5,126,2,172,136,156,110, + 163,77,224,6,18,118,87,14,3,60,192,219,192,135,75,151,46,221,101,180, + 224,194,215,25,160,176,176,109,48,183,88,112,130,153,200,52,1,65,232,34, + 132,66,1,66,33,197,219,111,55,241,211,135,107,56,124,184,142,150,150,53, + 52,52,124,72,73,169,155,41,83,198,48,102,204,112,250,150,141,163,176,176, + 144,96,32,132,219,237,229,200,145,38,190,248,226,11,190,252,178,158,134,134, + 193,252,249,207,195,121,249,229,207,184,228,146,19,121,240,193,105,156,122,106, + 63,108,54,59,25,76,107,139,103,24,48,149,176,96,85,3,245,132,197,237, + 40,240,6,112,39,240,135,200,185,54,194,46,75,163,69,87,72,120,32,202, + 84,160,10,120,247,165,151,94,186,233,254,251,239,143,22,96,20,55,128,151, + 94,122,9,224,221,108,43,42,8,137,16,11,78,16,142,51,74,133,31,77, + 231,114,5,249,241,253,251,89,191,254,48,110,207,10,14,236,95,193,180,105, + 103,113,241,191,206,228,204,241,39,225,112,216,112,56,172,56,236,14,172,86, + 43,22,107,88,28,84,72,17,8,250,105,104,240,176,122,245,78,222,124,115, + 51,219,183,123,80,161,145,148,150,58,120,248,145,243,185,225,223,207,194,233, + 180,99,177,100,126,79,123,199,29,119,76,5,174,36,44,84,123,129,253,192, + 33,194,2,119,140,240,136,201,89,192,86,194,2,247,11,96,18,112,27,48, + 148,240,0,148,145,132,133,239,245,72,44,110,235,234,213,171,29,51,103,206, + 108,87,158,140,162,20,204,70,44,56,65,56,206,40,165,104,104,8,112,195, + 191,239,165,197,93,77,213,222,133,140,255,202,80,254,251,191,22,49,252,164, + 126,20,20,216,41,41,46,161,164,164,132,162,162,34,10,10,10,176,90,173, + 109,49,54,165,8,134,130,248,124,62,78,62,121,4,115,231,150,243,238,223, + 246,240,248,227,239,113,160,166,148,59,239,248,27,95,238,56,204,194,133,51, + 41,45,45,141,121,168,121,26,134,0,125,105,27,80,226,166,109,174,155,135, + 240,32,146,197,132,93,152,247,1,223,1,198,0,253,13,231,181,70,242,24, + 2,124,2,92,63,107,214,172,63,62,244,208,67,142,107,174,185,134,145,35, + 71,38,154,7,39,147,189,5,83,16,11,78,16,142,35,97,203,205,207,183, + 174,169,162,213,187,153,13,159,60,204,109,183,205,225,210,75,167,97,119,216, + 41,43,235,75,255,126,253,40,41,41,197,233,116,98,179,217,162,171,111,196, + 229,68,40,20,94,86,202,231,11,224,110,57,70,117,117,61,15,60,240,54, + 127,123,183,14,141,16,119,221,85,206,130,5,23,82,92,82,140,213,106,77, + 91,183,59,238,184,227,63,128,11,8,187,23,171,8,187,41,107,9,187,42, + 93,192,233,192,7,192,131,192,3,132,133,173,132,240,40,202,161,132,221,147, + 163,34,219,223,151,46,93,186,60,146,181,241,73,38,195,8,199,246,222,37, + 238,73,38,98,193,9,249,34,22,156,32,28,39,194,235,28,250,249,193,15, + 246,115,204,181,139,45,91,30,228,191,31,184,157,115,166,158,70,113,73,49, + 131,7,13,98,192,128,1,20,22,22,162,143,60,76,142,134,197,18,94,114, + 202,110,183,227,116,218,41,41,45,225,153,103,191,197,253,247,255,157,63,63, + 191,155,39,159,92,199,169,167,245,103,238,220,41,148,148,148,228,18,147,139, + 103,11,225,152,219,143,8,207,145,75,93,195,228,130,53,2,184,41,178,9, + 130,105,200,68,111,65,56,110,40,222,91,121,140,245,235,235,216,182,237,81, + 110,189,229,59,76,157,122,26,125,251,244,97,196,137,39,50,116,232,9,148, + 148,148,100,32,110,237,177,90,109,56,157,133,12,29,58,152,159,255,252,27, + 204,152,49,140,64,96,40,11,23,190,74,213,238,90,60,30,79,38,203,79, + 5,35,175,118,195,102,51,108,86,160,12,248,25,176,205,176,63,254,124,128, + 64,214,23,33,8,121,34,22,92,18,66,161,16,22,139,133,96,176,237,73, + 11,154,166,47,153,211,254,206,215,98,177,16,10,133,251,3,165,60,145,115, + 181,200,126,125,37,114,133,207,23,164,213,215,64,67,179,131,198,163,118,170, + 247,133,104,168,59,204,238,106,39,199,26,29,236,217,85,195,190,189,62,90, + 92,133,52,52,120,112,187,235,18,214,175,184,15,156,120,194,0,78,26,233, + 160,164,180,15,131,6,181,48,98,228,112,202,6,91,25,80,10,35,78,178, + 80,54,192,79,89,89,17,69,54,13,135,195,22,141,189,248,253,254,168,139, + 202,120,141,250,245,89,44,109,238,171,80,40,136,82,225,101,132,172,214,226, + 152,182,17,242,35,16,80,60,242,112,13,173,238,247,56,253,244,190,92,242, + 141,115,41,41,41,100,216,9,39,48,96,224,64,28,14,71,94,249,107,154, + 134,221,110,99,208,160,62,252,226,241,111,48,107,198,75,212,214,90,89,246, + 155,53,220,127,255,215,25,52,120,112,58,241,172,37,252,132,18,39,225,129, + 38,69,145,173,149,54,193,10,16,118,45,58,19,156,87,24,217,154,8,207, + 159,19,132,78,69,4,46,41,225,187,91,99,167,110,60,166,119,250,58,161, + 144,211,32,12,197,248,253,126,130,65,197,49,87,136,234,3,1,170,247,133, + 216,181,43,200,166,141,13,108,255,71,29,85,95,238,163,201,163,129,242,128, + 230,68,169,190,20,21,248,113,123,237,0,104,154,222,31,120,35,175,5,134, + 210,188,180,214,65,93,157,155,173,219,0,229,65,211,90,129,79,80,202,131, + 179,192,129,199,235,99,192,128,33,156,119,222,201,140,30,59,140,137,227,155, + 233,55,112,48,35,78,178,48,254,140,2,220,77,46,10,251,88,9,6,219, + 114,141,21,182,144,97,95,177,97,191,33,129,144,51,74,133,248,232,163,70, + 118,237,106,224,232,209,55,248,209,253,247,225,116,90,25,56,104,16,253,250, + 247,79,42,110,74,41,84,200,139,10,249,192,98,199,98,177,163,105,250,247, + 166,161,255,110,141,55,97,86,171,141,175,156,49,144,155,111,57,155,199,254, + 191,32,175,190,186,158,121,243,206,165,164,180,132,146,146,210,84,174,74,93, + 224,134,16,158,223,214,151,240,224,17,125,42,128,141,54,161,179,209,246,36, + 19,253,220,62,132,99,114,181,145,77,16,58,21,17,184,36,232,157,125,184, + 163,87,113,159,53,172,214,226,232,49,253,252,80,40,196,209,122,31,213,7, + 2,108,249,44,196,182,141,30,42,183,108,230,139,109,205,28,173,47,68,211, + 6,24,74,56,17,77,131,144,106,1,5,154,230,161,213,7,154,22,255,124, + 90,136,21,183,8,17,97,4,194,2,73,228,177,127,26,120,124,80,88,96, + 229,232,209,122,86,172,216,136,82,133,132,159,174,4,163,78,24,193,248,179, + 71,50,251,2,232,83,90,194,132,201,67,57,227,84,7,14,135,13,191,223, + 143,197,226,139,22,161,105,133,9,219,38,44,238,197,9,143,9,233,209,167, + 5,252,245,175,13,180,182,110,103,244,232,129,140,25,59,136,62,125,250,210, + 191,255,0,10,10,10,18,156,31,64,41,80,202,11,222,26,52,239,65,176, + 150,16,116,14,71,179,245,71,211,64,133,124,40,20,22,75,1,154,102,53, + 8,95,248,247,121,195,13,167,240,248,47,255,201,161,90,23,159,110,219,195, + 176,19,7,80,84,148,114,192,201,193,200,54,130,240,192,145,248,121,110,110, + 18,63,201,100,32,225,1,39,253,8,63,205,68,207,71,16,58,21,17,184, + 36,248,253,126,236,118,123,212,245,24,235,198,211,240,120,124,88,173,225,59, + 223,195,135,15,179,177,162,142,93,85,39,177,110,245,94,62,92,239,167,169, + 185,152,160,106,34,20,178,162,105,133,40,229,68,41,61,143,176,245,167,148, + 51,230,115,216,90,107,47,102,133,14,43,173,62,163,229,84,16,235,37,85, + 30,194,163,182,219,104,245,130,166,181,70,196,13,194,125,13,84,29,116,81, + 245,230,103,188,249,102,120,239,89,103,246,227,172,137,126,190,54,251,43,140, + 24,55,144,9,167,59,25,208,223,65,48,24,196,106,85,120,60,62,130,65, + 63,133,133,109,238,217,100,194,39,100,131,162,162,162,30,175,119,39,19,39, + 126,5,187,221,78,159,62,125,41,116,22,198,88,84,161,144,159,144,191,14, + 252,245,128,134,166,2,132,90,182,16,112,125,134,86,48,136,80,96,58,20, + 217,176,211,10,222,154,112,154,130,161,104,142,161,49,194,165,105,26,167,157, + 214,159,225,35,6,176,183,106,8,219,62,221,201,180,105,167,81,86,86,150, + 84,224,150,46,93,122,120,254,252,249,127,39,44,86,163,137,181,214,138,72, + 46,112,250,163,186,250,2,59,9,143,160,60,108,194,160,22,65,200,10,17, + 184,36,88,44,62,66,161,182,56,147,110,177,233,130,119,204,21,226,211,207, + 61,108,173,84,172,91,125,132,21,111,181,2,95,16,10,181,160,105,77,40, + 213,23,139,37,108,229,40,229,68,211,60,6,65,27,64,97,159,35,168,214, + 112,223,80,84,52,4,205,86,135,10,156,20,62,110,171,195,237,55,46,167, + 21,162,208,210,26,91,193,80,31,0,220,94,59,154,22,235,190,212,209,199, + 16,132,221,151,24,246,123,64,59,1,128,45,255,104,96,203,63,26,248,211, + 203,95,112,194,144,254,156,255,181,11,152,253,245,129,156,245,21,11,35,78, + 180,49,160,191,3,176,161,84,43,126,191,29,167,51,191,184,144,0,250,221, + 201,158,61,45,248,252,71,56,233,164,9,56,237,118,138,138,11,177,218,140, + 177,77,133,10,186,160,101,7,33,119,100,177,108,75,63,84,235,102,2,53, + 91,97,200,112,188,190,19,33,80,74,31,203,126,66,238,10,148,10,66,225, + 87,9,149,22,83,80,96,197,106,181,133,221,154,42,132,166,105,156,122,106, + 127,246,86,21,113,224,64,45,158,86,55,1,127,32,28,57,75,194,210,165, + 75,63,159,63,127,254,106,194,131,73,6,208,230,138,212,231,198,197,63,185, + 68,127,216,114,95,194,110,131,213,75,151,46,253,220,172,150,19,132,108,16, + 129,75,130,166,21,198,12,192,8,133,10,57,90,239,227,195,143,124,236,218, + 21,228,141,55,92,28,170,110,228,203,221,181,88,44,197,132,66,45,134,212, + 5,88,180,42,10,251,12,166,48,34,36,208,182,114,136,102,171,99,64,153, + 147,163,141,65,84,200,133,82,187,80,65,64,219,197,49,87,11,22,26,240, + 250,236,180,245,60,70,235,44,188,207,238,8,127,117,14,7,248,124,54,10, + 11,74,241,250,194,157,163,82,133,20,22,218,104,141,232,90,212,138,139,186, + 52,137,88,125,58,253,8,248,157,84,239,135,231,159,127,141,87,94,9,112, + 194,144,254,92,249,111,83,25,61,58,200,180,25,227,24,53,214,78,89,145, + 45,58,232,68,211,156,49,49,59,33,27,20,62,95,8,175,215,138,213,170, + 176,59,138,104,241,216,217,189,203,79,191,178,16,22,139,21,165,66,132,130, + 110,84,107,21,161,150,205,4,234,86,163,57,11,8,90,70,96,9,85,97, + 173,57,74,104,96,144,128,119,59,214,16,248,173,135,208,188,159,130,203,139, + 167,108,16,33,109,52,154,165,144,2,205,2,40,182,110,169,99,220,201,101, + 20,21,58,177,217,138,105,245,120,241,249,131,4,130,1,148,82,41,167,12, + 44,93,186,244,253,200,170,221,87,16,182,204,74,8,207,131,51,14,54,209, + 133,175,132,176,91,242,48,240,198,210,165,75,223,239,176,102,20,132,52,136, + 192,165,32,20,10,17,10,57,168,174,117,177,102,93,144,109,21,123,89,187, + 186,149,45,159,54,183,19,53,139,165,152,254,125,195,205,217,175,223,16,244, + 117,32,173,214,131,180,122,246,70,207,115,181,120,105,110,106,225,200,145,240, + 232,72,133,7,13,15,109,15,135,136,117,53,38,195,231,211,207,11,15,94, + 107,245,134,7,176,169,136,0,182,182,14,141,228,239,164,176,160,20,0,143, + 55,28,135,211,52,103,212,197,169,84,97,140,133,167,81,128,223,87,192,190, + 106,47,79,60,190,22,133,151,73,103,214,48,253,130,17,204,156,61,146,243, + 206,117,48,160,191,51,210,62,65,130,193,80,228,58,99,197,78,70,89,38, + 38,20,10,240,197,23,30,190,119,219,94,138,10,251,208,220,84,143,82,240, + 217,63,188,60,249,228,235,188,252,242,191,113,242,201,101,216,172,62,104,221, + 69,232,216,6,66,190,143,176,180,238,35,232,183,225,47,240,98,179,214,83, + 80,215,140,178,122,177,171,10,240,54,163,108,110,52,247,65,252,62,13,111, + 107,3,126,123,11,142,194,32,118,155,226,189,149,245,252,232,190,191,242,127, + 175,95,65,48,24,96,204,216,179,120,251,237,141,56,29,159,242,200,163,195, + 232,211,39,20,19,175,75,68,68,228,234,128,171,128,83,9,91,105,3,226, + 78,211,71,98,125,1,188,38,150,155,112,188,17,129,75,66,192,127,148,134, + 198,32,111,255,213,197,202,191,91,120,247,237,163,212,55,133,111,86,117,215, + 163,254,218,191,175,141,126,253,156,20,151,232,66,209,74,211,145,131,28,243, + 249,104,113,53,224,241,86,163,240,16,142,179,55,18,22,177,38,160,32,162, + 51,94,194,2,151,136,248,81,148,250,231,178,200,107,147,225,152,51,146,159, + 19,197,65,116,107,175,213,91,8,148,161,81,134,194,137,82,94,52,10,112, + 22,56,128,22,60,222,226,168,200,105,154,19,165,60,40,188,20,21,14,199, + 227,57,198,214,207,106,248,108,199,54,94,255,191,254,92,125,245,64,190,54, + 235,2,254,245,95,194,121,235,113,200,96,100,56,102,38,79,200,232,189,40, + 118,238,244,114,233,55,246,160,84,8,139,117,59,238,214,3,40,44,28,60, + 228,103,223,222,42,142,214,29,96,208,64,63,253,75,90,224,216,38,66,141, + 239,160,149,124,1,150,6,44,245,69,104,39,218,177,88,90,81,174,99,216, + 29,205,104,65,63,222,96,19,193,144,3,173,185,14,107,160,152,128,179,133, + 160,191,149,96,200,135,82,78,62,223,222,196,238,170,207,57,122,116,26,62, + 159,15,171,117,0,3,250,143,227,149,255,219,74,99,83,51,127,248,227,183, + 25,56,48,121,44,78,39,226,174,60,74,248,9,38,39,3,227,8,199,231, + 32,252,116,147,157,192,151,192,231,75,151,46,149,105,1,194,113,167,87,8, + 156,113,104,187,62,188,95,211,10,9,6,131,216,237,118,130,193,22,130,1, + 55,54,251,0,44,22,11,126,191,159,95,61,101,99,211,198,99,188,247,222, + 151,28,61,90,102,200,171,37,106,173,13,31,161,56,105,100,56,38,85,189, + 167,154,250,134,3,184,90,188,184,91,28,168,208,42,60,254,0,109,86,89, + 19,97,17,243,146,220,74,115,146,200,29,25,198,75,123,90,9,123,133,188, + 113,231,52,25,206,41,64,183,242,20,101,232,86,158,2,60,222,50,20,101, + 88,52,11,138,126,20,58,3,120,60,199,0,176,104,125,241,120,142,69,197, + 206,239,43,102,111,117,51,79,61,165,248,195,31,255,198,119,174,59,141,153, + 179,71,242,181,89,5,244,45,12,11,191,223,111,199,106,13,139,93,120,144, + 138,133,128,191,30,0,71,193,160,72,251,133,80,170,53,58,253,162,183,160, + 84,136,150,22,63,255,126,195,110,148,10,113,239,125,165,252,231,127,126,140, + 82,94,66,193,0,118,123,16,165,20,173,199,26,241,54,186,81,234,0,202, + 91,1,174,127,98,27,88,139,10,248,208,142,134,208,78,42,194,98,247,96, + 245,132,192,234,193,170,130,56,3,16,112,148,98,105,245,225,181,219,80,161, + 102,240,31,2,111,41,56,173,4,130,10,21,10,209,220,212,128,63,16,224, + 139,47,154,24,54,180,4,84,49,43,255,190,145,135,254,167,140,133,139,190, + 78,223,190,101,241,3,83,218,205,4,255,245,175,127,157,209,245,202,128,18, + 161,43,208,99,5,46,24,108,137,198,137,244,33,252,97,183,89,113,100,162, + 179,138,12,36,177,226,247,219,113,56,194,222,150,229,255,187,51,106,177,185, + 221,117,184,189,118,140,222,182,129,253,250,114,222,52,123,244,243,142,47,14, + 179,119,95,21,30,239,17,20,85,192,30,98,5,166,77,212,84,156,176,105, + 237,162,251,198,227,125,13,239,19,141,90,108,36,44,94,250,43,36,27,133, + 217,150,119,35,224,69,163,21,24,21,113,103,246,35,164,194,214,157,187,213, + 25,181,236,60,222,182,186,104,134,60,61,222,35,4,85,3,79,60,190,131, + 215,255,111,48,87,254,219,84,174,159,55,154,83,199,105,216,109,77,184,155, + 10,40,234,91,18,157,224,238,40,24,68,48,216,66,75,75,11,197,197,197, + 145,253,189,113,20,166,198,179,207,30,101,235,102,55,63,254,175,19,121,233, + 165,77,248,124,71,1,21,94,175,77,105,160,52,130,193,86,44,190,189,168, + 230,143,208,236,91,209,130,117,104,90,11,180,130,118,172,21,155,221,141,134, + 15,252,62,52,11,104,173,1,44,161,38,108,78,63,22,111,0,171,85,195, + 110,219,139,51,184,22,139,107,47,1,75,57,33,127,1,10,8,133,194,122, + 21,10,105,28,115,89,65,43,70,169,2,150,253,102,5,223,248,198,25,156, + 123,222,169,148,148,20,139,56,9,61,134,158,43,112,1,55,225,213,68,116, + 119,162,5,143,199,135,195,97,195,106,181,18,240,31,197,81,48,40,220,9, + 59,108,188,249,150,139,151,95,172,163,226,227,86,190,220,93,139,221,58,140, + 160,10,96,177,128,85,235,203,87,190,226,226,140,51,7,226,58,214,204,190, + 189,62,26,26,182,82,91,187,11,143,111,63,97,225,208,183,54,49,211,5, + 76,127,175,127,118,22,132,159,71,219,167,104,8,3,7,22,83,224,28,200, + 232,145,163,1,24,54,194,142,163,32,60,48,165,79,49,148,246,11,127,69, + 199,26,2,148,246,179,113,172,33,108,45,53,27,198,180,52,28,218,75,147, + 75,99,239,94,8,177,7,175,167,142,237,95,234,174,80,15,177,46,208,50, + 194,226,169,11,222,33,218,172,187,126,40,202,104,245,130,195,49,16,159,207, + 22,21,183,176,232,133,103,253,249,124,160,17,182,232,30,127,252,93,94,255, + 191,62,220,253,159,229,76,155,49,142,51,78,117,16,240,31,165,197,27,162, + 164,176,63,62,95,0,135,163,144,194,66,240,120,194,115,236,28,142,30,251, + 179,75,138,215,23,100,233,210,26,134,13,179,114,224,64,29,31,126,176,147, + 112,200,74,161,148,134,66,161,105,10,43,94,172,193,125,168,230,207,177,14, + 171,198,162,92,225,70,119,41,104,13,97,47,104,69,185,2,104,129,0,90, + 64,97,105,86,132,188,62,172,99,124,104,202,138,85,179,226,44,56,128,197, + 83,139,173,101,59,33,234,9,184,203,1,69,72,169,136,11,91,161,66,65, + 52,10,81,20,227,241,28,226,127,255,247,93,78,59,125,16,5,5,142,188, + 159,160,34,8,93,133,30,221,211,232,143,158,242,120,124,56,157,14,156,78, + 7,254,200,240,123,155,125,0,30,143,143,154,186,22,158,124,204,207,223,222, + 218,194,161,154,0,205,173,253,40,176,158,134,55,248,5,22,75,49,19,206, + 180,50,99,246,64,142,28,118,242,249,167,95,176,229,31,155,41,176,239,199, + 227,255,146,88,241,104,138,177,208,52,237,24,112,12,165,74,209,112,50,184, + 223,217,156,56,124,36,163,71,142,102,196,216,217,148,79,216,65,233,32,43, + 69,133,165,40,85,72,32,212,102,245,217,44,125,9,132,154,176,91,29,134, + 121,108,177,24,207,63,25,177,24,0,0,32,0,73,68,65,84,47,112,158, + 129,215,19,118,195,250,125,225,193,45,161,192,104,118,239,222,199,158,93,213, + 124,180,222,207,254,154,42,154,154,15,226,241,187,8,11,155,254,100,37,157, + 67,145,235,9,15,68,241,250,116,129,14,199,237,60,222,72,123,70,157,86, + 77,56,28,54,124,62,27,123,171,155,185,251,174,245,76,30,191,150,235,111, + 154,193,117,55,158,78,223,226,0,161,80,88,204,194,46,75,21,157,98,16, + 251,84,152,222,193,135,31,184,216,187,215,205,180,105,165,172,124,111,119,196, + 109,174,8,207,43,180,70,159,65,162,5,91,176,134,142,160,249,234,176,20, + 182,64,32,8,154,130,99,26,22,87,144,80,129,7,203,177,0,248,65,249, + 65,29,84,80,31,196,250,53,69,80,11,97,165,5,167,243,32,170,33,136, + 181,200,130,215,215,130,242,14,4,34,238,97,0,52,20,26,10,11,225,65, + 143,133,172,92,185,129,195,135,191,78,223,190,125,69,224,132,30,67,143,21, + 56,155,189,127,212,53,25,238,100,195,38,143,197,18,238,168,131,193,32,127, + 123,207,195,226,255,254,146,207,62,43,1,134,227,15,214,0,45,248,45,213, + 76,187,160,63,83,198,15,7,96,221,202,141,17,97,219,134,179,160,145,86, + 239,126,18,89,106,109,46,71,39,131,203,166,113,226,240,145,156,63,237,20, + 70,143,29,193,248,9,3,112,58,67,120,189,94,44,246,131,4,125,97,43, + 77,159,171,102,179,24,93,146,97,10,11,21,222,128,11,128,144,223,74,137, + 106,196,165,149,225,15,250,176,91,219,58,161,144,31,236,86,43,74,21,98, + 115,134,231,189,217,45,110,38,76,44,98,194,196,83,185,234,91,65,208,190, + 202,129,157,54,182,108,171,166,106,231,62,214,127,176,134,99,238,86,90,189, + 1,98,133,46,108,245,133,71,118,58,9,113,66,84,232,66,145,193,41,0, + 154,54,4,191,175,22,168,195,225,24,136,223,231,161,114,91,35,85,75,214, + 243,254,170,42,238,95,124,33,35,78,12,82,90,18,126,98,190,195,225,192, + 227,241,17,104,245,80,216,39,246,241,95,189,129,247,222,171,69,211,2,120, + 220,45,28,56,112,4,21,17,55,208,176,104,254,200,131,143,53,236,234,32, + 54,107,13,22,183,27,44,126,148,47,20,182,186,106,129,230,16,22,167,143, + 208,177,16,154,91,129,15,180,127,130,230,242,131,213,10,238,16,86,60,104, + 125,66,104,159,5,208,198,130,237,203,106,20,7,64,41,84,176,25,13,253, + 81,112,22,52,180,136,155,218,78,125,67,53,255,216,182,151,19,134,13,164, + 164,164,68,6,11,9,61,130,30,43,112,22,139,53,230,161,194,0,161,80, + 120,37,228,163,245,62,30,250,159,47,121,254,249,253,52,214,135,45,158,160, + 106,50,88,108,163,40,45,243,177,102,205,102,54,124,184,5,159,175,2,56, + 132,199,95,11,120,64,59,18,181,204,10,156,26,94,79,88,228,6,149,157, + 196,196,83,38,115,218,148,211,249,250,21,163,163,162,165,105,173,20,22,186, + 105,109,213,240,7,125,20,216,173,209,167,140,24,135,232,235,214,154,166,181, + 210,167,36,220,17,89,131,165,88,236,65,236,170,22,175,117,24,133,5,45, + 20,132,74,177,88,60,145,107,114,226,15,185,41,176,89,8,120,53,252,33, + 55,74,21,226,44,168,198,237,10,79,15,176,227,160,184,68,99,220,25,65, + 78,28,91,140,215,115,10,183,221,89,206,182,79,143,178,110,213,122,246,85, + 123,249,252,139,67,17,235,78,183,236,26,195,117,225,32,97,215,101,24,123, + 196,117,105,183,183,224,247,245,69,163,47,62,159,23,141,0,26,78,234,235, + 155,120,245,47,94,54,110,62,194,194,69,179,248,198,101,195,177,57,92,248, + 90,161,111,201,32,172,214,66,60,30,31,197,189,75,223,216,182,237,24,22, + 77,113,244,168,27,191,223,31,243,212,72,135,37,64,32,216,2,26,244,41, + 216,64,65,233,14,180,253,77,96,9,161,29,211,80,205,192,65,5,199,20, + 42,228,71,171,3,142,41,112,107,168,205,160,89,33,216,24,194,178,75,67, + 13,3,173,212,27,94,185,109,146,134,181,166,9,171,227,8,104,253,176,171, + 58,52,53,24,208,103,137,104,104,216,80,56,80,74,177,123,247,1,220,45, + 103,16,8,4,69,224,132,30,65,143,21,184,80,40,20,253,147,134,71,244, + 21,18,12,6,248,235,59,225,88,219,171,47,246,195,27,172,69,211,118,163, + 105,3,232,223,215,198,69,151,12,96,242,217,253,216,180,177,129,167,126,253, + 50,62,223,54,194,75,94,121,113,22,216,8,105,77,120,61,225,56,70,129, + 83,195,231,1,139,26,199,228,241,231,48,235,130,25,156,53,126,4,163,78, + 246,96,177,120,104,109,213,48,14,253,215,197,13,192,235,9,82,82,84,132, + 221,115,16,23,101,20,22,170,104,157,117,225,178,88,75,9,248,253,88,236, + 65,108,118,59,202,62,156,66,75,9,154,37,108,185,253,255,236,189,121,156, + 36,103,121,231,249,125,227,202,136,60,171,250,80,223,135,26,9,4,72,50, + 8,132,13,8,144,0,193,0,182,12,99,27,198,12,6,15,30,175,25,102, + 124,205,120,124,123,89,143,119,215,187,182,23,27,143,205,122,214,216,136,17, + 98,88,192,216,150,64,96,172,163,17,194,2,116,128,104,73,72,66,234,171, + 90,221,93,213,85,149,119,198,249,198,59,127,188,17,145,145,89,213,66,128, + 100,169,213,249,251,124,242,211,153,145,153,17,145,89,217,239,47,126,207,243, + 123,158,39,73,236,236,117,96,209,194,178,44,156,10,232,26,91,80,233,243, + 217,56,15,194,8,8,124,31,63,212,33,77,219,168,210,216,232,17,248,62, + 47,184,116,51,151,189,226,157,28,127,52,225,224,193,163,124,121,255,65,190, + 124,251,97,22,87,190,141,107,111,42,133,51,243,208,165,91,132,46,227,200, + 69,97,97,136,22,2,23,165,114,35,74,128,227,88,28,93,88,226,189,255, + 238,67,188,247,192,15,242,222,255,120,57,115,115,85,218,237,54,181,90,3, + 199,25,135,138,115,216,182,205,51,25,199,22,70,40,21,210,235,250,186,179, + 72,233,57,83,4,160,218,160,36,222,252,1,156,133,69,56,22,32,186,41, + 106,9,10,239,146,41,48,142,43,210,135,133,54,229,31,5,241,168,14,247, + 138,111,26,112,135,68,236,18,240,35,2,117,87,138,186,192,196,60,224,99, + 59,9,66,41,108,181,72,170,54,2,229,227,139,236,22,209,235,119,9,195, + 16,153,36,80,153,133,41,103,56,243,241,140,37,184,188,65,114,78,116,157, + 81,204,117,159,92,224,191,254,241,67,220,115,255,60,166,104,81,49,47,32, + 165,199,27,222,24,241,202,43,246,176,112,228,24,255,227,195,215,115,215,129, + 123,209,43,10,228,211,62,130,232,20,0,130,205,184,206,38,154,222,5,92, + 246,218,203,121,249,229,251,138,240,99,172,18,130,192,0,170,56,166,32,146, + 147,46,235,170,93,45,238,27,198,16,89,109,81,73,43,228,41,41,203,182, + 177,44,173,226,92,18,176,108,98,203,195,78,124,98,203,67,143,231,202,148, + 157,101,227,100,109,157,162,100,50,167,149,68,38,158,49,200,222,99,83,169, + 184,212,156,38,50,209,164,146,36,9,149,202,60,132,109,226,248,4,155,207, + 129,230,198,205,252,192,15,158,199,155,31,26,242,141,3,11,220,114,211,23, + 51,85,7,99,67,138,91,132,46,225,185,8,58,40,165,183,43,92,68,230, + 252,140,162,101,4,46,97,212,224,143,255,228,110,14,63,124,148,127,247,159, + 223,197,11,95,88,199,143,218,56,102,253,172,203,243,12,134,17,169,74,8, + 98,5,19,244,166,48,145,32,71,8,37,48,195,33,226,115,62,152,2,249, + 8,24,223,66,55,195,186,95,193,14,80,71,12,184,27,88,22,112,175,1, + 237,20,21,130,250,148,64,28,5,142,41,248,52,186,26,237,230,20,117,63, + 164,123,146,204,69,25,160,210,152,49,169,41,198,75,128,36,73,2,100,42, + 145,179,137,17,51,60,67,112,198,18,92,20,158,194,169,108,46,198,210,216, + 118,140,76,70,196,73,21,207,243,0,129,148,67,226,216,230,248,242,144,171, + 255,122,200,95,124,160,77,183,183,23,232,18,203,227,156,191,79,242,198,31, + 129,115,207,133,47,221,252,69,62,251,249,175,16,68,183,1,46,136,219,138, + 99,41,213,0,213,192,171,108,226,185,207,126,61,47,184,248,10,222,252,54, + 69,213,107,100,157,223,117,110,13,66,114,135,117,156,130,16,80,87,29,250, + 108,195,117,53,9,89,153,82,177,172,249,137,207,227,185,211,246,126,253,216, + 1,176,106,212,180,37,20,211,94,251,39,43,103,208,100,156,96,214,45,100, + 108,34,100,130,109,90,196,86,2,24,96,229,199,168,16,37,18,97,228,227, + 186,244,113,146,164,199,222,243,99,246,158,191,153,55,254,216,207,113,207,87, + 31,230,214,155,111,227,43,95,141,88,92,57,197,216,149,121,50,91,162,117, + 1,185,227,212,137,163,74,86,36,78,70,116,139,40,58,8,92,62,253,153, + 99,220,117,207,39,139,144,37,78,151,160,103,225,186,250,204,107,181,26,105, + 42,73,226,85,76,171,138,76,70,69,221,220,51,5,85,79,161,84,172,123, + 63,78,65,169,8,67,36,164,74,160,142,165,136,135,65,12,82,84,205,128, + 253,18,117,200,64,12,20,244,64,221,3,226,129,20,181,42,224,139,10,163, + 171,64,130,184,94,34,82,64,42,210,15,166,136,46,176,168,80,77,129,138, + 44,64,34,166,148,99,118,116,116,183,173,48,43,225,248,142,67,80,103,152, + 225,140,193,25,75,112,57,185,217,182,141,105,166,128,137,105,129,83,201,231, + 183,201,130,220,254,227,191,63,194,231,110,112,128,26,177,60,142,109,110,231, + 95,189,125,11,151,188,120,158,133,35,199,248,227,255,231,14,142,44,124,17, + 120,16,232,100,11,51,56,149,38,81,80,193,171,212,217,183,251,69,188,250, + 181,47,227,53,87,190,156,237,59,44,122,189,147,24,182,190,210,213,228,182, + 22,149,74,133,152,45,212,109,19,61,252,152,98,192,100,89,129,1,216,166, + 181,134,188,100,90,197,52,70,184,238,90,39,101,26,14,240,101,131,90,85, + 21,143,141,74,157,146,207,165,64,16,172,237,146,98,199,9,113,233,248,185, + 10,180,44,139,36,73,32,94,225,165,47,63,135,31,248,193,159,230,199,30, + 26,242,119,127,251,101,190,124,123,238,196,156,99,92,22,209,46,194,150,74, + 109,69,144,19,93,94,22,161,67,174,135,23,190,201,111,252,234,253,220,123, + 224,149,188,253,93,87,242,236,221,41,65,16,80,171,53,24,14,135,56,142, + 131,83,217,204,160,221,195,107,86,167,79,247,140,199,182,237,14,247,221,175, + 47,198,198,10,74,195,32,33,37,66,160,224,65,133,88,76,117,43,227,79, + 162,35,195,3,133,114,12,196,86,3,113,127,10,39,4,34,84,136,187,21, + 34,51,167,168,8,205,83,182,192,88,74,33,22,48,84,32,77,232,74,16, + 249,223,58,59,190,74,179,71,17,48,4,34,170,158,135,224,236,115,184,206, + 240,204,197,25,75,112,160,243,54,105,42,75,179,218,188,210,140,54,193,151, + 239,24,241,95,255,72,143,175,49,208,86,105,195,232,242,222,159,223,196,174, + 221,54,183,239,47,171,182,14,110,69,226,135,29,132,208,246,254,40,104,241, + 188,243,127,112,130,216,6,65,159,94,86,132,150,198,38,225,84,135,145,124, + 150,215,88,169,77,126,197,185,82,203,213,139,190,239,101,4,53,38,50,203, + 202,9,113,82,233,149,222,68,117,234,113,25,73,18,99,89,249,57,152,83, + 207,73,2,252,9,66,117,209,234,47,150,9,90,225,165,200,36,166,105,141, + 104,94,44,120,207,174,75,121,229,107,95,197,151,110,62,204,103,63,247,15, + 4,113,167,120,175,40,181,5,179,157,77,196,145,118,89,166,170,203,216,172, + 226,114,114,37,224,218,107,110,165,125,202,224,215,254,215,75,153,159,223,128, + 148,49,65,16,96,154,54,82,70,84,91,117,124,223,127,198,153,80,46,186, + 168,193,141,255,120,8,153,100,115,218,148,34,175,74,51,68,130,65,160,37, + 255,183,64,68,144,110,48,17,39,83,216,34,16,82,193,139,4,233,121,41, + 226,43,25,53,86,4,202,82,168,121,3,66,129,58,23,196,66,138,114,4, + 106,139,133,88,146,168,170,9,35,16,97,138,80,147,129,81,4,153,115,83, + 151,184,8,225,179,109,251,54,140,194,92,50,83,114,51,156,249,56,99,9, + 46,239,76,18,69,18,211,76,49,77,163,200,185,129,224,250,207,14,248,221, + 223,121,136,99,11,34,155,205,182,192,179,246,214,249,185,255,112,1,27,90, + 43,252,249,159,124,150,251,30,120,128,32,254,18,142,187,68,24,40,130,168, + 159,117,149,216,204,57,115,187,121,217,203,46,227,39,126,236,37,236,123,222, + 78,32,160,215,27,16,203,136,122,181,177,70,181,77,15,169,204,137,173,28, + 122,156,38,53,253,186,140,200,220,77,223,241,51,187,174,75,16,4,197,126, + 84,52,153,43,17,142,57,222,94,250,203,230,68,87,126,156,239,35,73,98, + 146,68,239,167,76,122,118,90,37,142,86,241,131,144,106,178,140,185,121,27, + 175,121,141,193,158,221,231,178,103,223,235,248,226,77,71,185,239,129,219,9, + 226,1,174,93,7,18,130,248,4,81,212,193,117,54,18,197,231,101,37,5, + 227,54,103,2,88,90,9,184,250,218,59,233,118,15,243,155,191,247,51,236, + 217,25,18,133,218,124,2,218,16,228,56,206,196,133,203,51,1,151,95,190, + 137,63,249,227,16,133,5,24,140,21,156,54,235,231,83,103,196,163,160,76, + 16,47,84,58,12,185,3,196,189,192,15,40,196,243,4,226,238,20,245,42, + 3,113,111,166,180,126,222,68,125,82,194,235,64,221,103,232,247,190,15,248, + 119,2,245,94,3,62,14,106,232,160,142,78,78,250,86,164,232,156,238,42, + 176,74,163,49,199,121,231,109,198,178,172,204,156,53,235,102,50,195,153,143, + 51,150,224,244,124,50,93,188,157,166,105,209,153,4,224,250,207,14,248,213, + 95,62,66,187,173,201,13,224,226,11,77,254,195,175,238,97,176,124,144,63, + 255,147,47,114,231,129,135,17,220,8,98,129,40,212,23,207,74,53,240,42, + 231,243,202,139,183,241,250,183,253,52,251,246,237,102,203,182,128,225,96,80, + 212,158,89,70,139,32,187,216,6,77,108,218,28,50,249,85,230,33,200,114, + 232,209,117,189,146,50,91,235,26,116,167,84,216,122,168,213,26,72,25,99, + 154,54,120,246,248,62,76,108,23,242,244,228,16,4,1,21,195,38,76,181, + 202,43,43,189,156,236,134,35,152,155,155,103,14,232,116,42,132,131,33,210, + 178,56,239,252,10,219,119,60,155,11,47,186,136,27,111,223,197,77,127,251, + 37,22,87,22,208,10,78,147,118,16,29,67,208,24,255,173,138,58,193,188, + 93,217,9,254,246,51,32,140,27,249,141,223,125,45,231,158,219,160,189,122, + 20,167,50,143,235,186,120,158,87,52,111,6,241,140,152,76,112,249,229,91, + 216,182,205,230,248,241,17,66,88,104,133,148,117,50,1,29,50,84,41,233, + 11,5,156,20,122,170,218,191,212,117,110,180,12,216,157,34,46,6,213,52, + 48,126,24,210,182,129,216,39,224,213,41,124,13,248,33,129,242,4,60,87, + 65,45,37,189,204,192,184,76,161,150,5,198,125,89,24,51,181,24,143,145, + 0,29,62,62,14,44,241,242,151,190,142,90,205,193,173,184,152,230,25,187, + 44,204,48,195,4,206,216,95,178,110,142,236,22,74,206,178,55,16,199,49, + 55,124,222,231,195,31,58,200,209,35,155,178,110,36,9,47,127,197,78,222, + 245,179,59,57,112,199,17,62,122,205,109,172,172,222,129,224,65,64,147,90, + 30,146,220,50,127,25,111,122,253,171,248,201,119,191,132,106,117,68,154,246, + 25,244,13,192,195,50,60,109,160,16,62,158,167,72,211,49,25,149,201,205, + 115,43,19,68,37,211,42,174,171,176,44,243,59,146,90,78,84,250,254,233, + 175,160,77,211,201,114,57,211,239,177,139,247,153,230,164,75,81,150,28,157, + 181,90,86,236,43,199,138,175,76,118,73,18,211,168,233,2,243,145,15,182, + 179,129,237,231,108,198,116,18,58,157,54,194,8,248,129,75,36,207,191,240, + 57,188,232,2,155,143,125,228,96,166,134,251,40,230,209,174,202,147,250,24, + 184,192,214,76,205,229,133,241,1,182,83,231,83,215,221,68,229,156,148,95, + 252,217,231,176,123,247,70,42,134,62,175,149,213,136,70,221,200,202,59,178, + 48,222,25,78,114,158,103,240,111,222,125,62,255,199,255,254,101,210,162,164, + 66,127,38,169,28,82,213,66,136,1,92,98,194,80,232,107,133,139,21,44, + 66,122,1,8,195,192,168,43,212,46,80,59,129,93,138,244,165,32,154,41, + 108,49,72,207,19,24,35,1,45,129,72,21,106,167,137,82,144,236,171,17, + 127,51,107,174,157,110,70,9,19,144,72,25,161,56,4,60,130,101,37,188, + 241,77,87,224,186,46,181,90,109,205,197,218,12,51,156,169,56,99,127,201, + 169,106,161,157,146,50,27,76,154,22,228,166,167,107,47,96,24,53,126,248, + 77,30,87,189,173,197,205,251,111,228,211,255,253,107,160,14,3,143,100,141, + 145,179,150,90,106,51,151,92,244,99,188,227,93,175,225,165,47,63,135,65, + 95,226,251,2,207,11,160,148,233,170,55,76,146,88,47,212,174,55,206,151, + 77,135,33,203,166,16,203,50,38,136,237,59,17,154,148,74,55,204,205,242, + 139,82,166,69,141,88,110,170,1,200,203,198,38,115,144,50,11,211,150,183, + 165,217,235,141,98,170,66,62,195,45,47,57,152,86,124,42,178,137,179,243, + 113,42,250,39,146,36,49,225,200,194,118,54,224,186,35,146,160,77,98,121, + 92,246,138,125,236,219,183,155,235,254,102,47,55,124,126,127,230,182,220,134, + 30,13,228,225,58,53,194,40,200,50,58,218,120,162,216,70,24,29,195,96, + 142,107,63,116,11,193,201,133,34,92,73,16,83,245,92,242,197,31,206,124, + 114,3,253,183,254,133,95,184,132,143,127,252,235,60,242,200,34,168,90,22, + 174,132,72,213,73,217,132,98,129,116,71,3,53,90,133,138,196,168,67,218, + 18,154,208,142,91,200,145,129,216,149,144,90,18,177,205,192,120,14,32,76, + 210,173,6,70,69,160,54,100,228,150,8,168,155,68,75,77,70,230,86,2, + 127,7,168,54,177,177,9,253,95,62,37,8,151,128,123,17,226,24,111,122, + 195,155,121,246,5,91,104,54,91,84,171,85,76,243,204,255,190,103,152,1, + 206,96,130,115,28,43,91,248,244,210,249,149,219,70,124,224,15,15,179,255, + 182,229,137,250,182,171,222,182,143,155,247,223,200,199,62,244,57,180,37,237, + 30,16,11,69,134,193,117,206,229,245,175,185,138,127,255,75,63,74,171,213, + 162,219,237,82,173,142,24,141,170,140,70,90,177,197,50,162,226,154,248,161, + 46,148,54,204,113,248,109,90,177,229,97,200,199,34,181,105,117,86,46,114, + 54,205,113,94,45,159,132,176,222,235,202,175,153,190,63,185,77,47,86,90, + 233,78,62,111,154,229,129,165,99,85,136,103,19,37,154,180,211,172,151,152, + 101,13,161,26,99,203,145,222,238,110,207,220,153,1,207,189,160,194,174,95, + 121,13,23,190,208,224,163,31,185,137,175,31,208,228,6,62,65,180,146,181, + 135,114,51,21,183,7,65,23,197,237,164,156,139,193,86,110,248,194,9,90, + 245,15,241,158,95,190,146,125,251,182,102,121,198,226,83,3,241,51,162,16, + 124,195,6,143,191,252,203,55,242,150,183,252,37,157,206,49,52,137,27,68, + 170,134,50,54,130,16,196,108,33,217,190,136,101,7,164,102,130,106,10,204, + 57,69,116,194,70,244,171,152,219,250,24,102,138,154,135,116,147,13,129,64, + 109,18,200,94,5,170,41,98,53,198,148,130,196,109,208,91,121,54,109,255, + 121,12,227,189,40,186,8,179,129,230,174,101,164,188,25,196,183,120,222,115, + 95,192,59,127,250,45,52,234,77,230,231,231,215,117,236,206,48,195,153,138, + 167,61,193,149,103,185,149,23,110,165,124,210,212,67,169,128,187,239,81,188, + 239,125,135,185,253,246,141,24,198,136,148,30,87,189,233,33,222,241,51,175, + 230,186,79,220,194,199,174,253,28,94,101,129,81,120,23,144,101,33,212,121, + 184,21,201,191,125,247,207,243,246,119,190,8,128,48,108,83,173,234,46,36, + 229,22,90,245,170,38,180,60,215,54,237,132,156,38,181,60,212,150,155,62, + 114,165,86,38,182,211,45,216,79,150,177,98,61,21,52,77,160,57,185,74, + 153,210,200,21,165,165,178,109,46,65,0,100,174,78,77,66,122,49,148,113, + 66,197,58,204,155,222,120,62,155,231,183,241,55,127,243,73,254,254,134,84, + 79,19,183,19,130,248,16,176,13,85,132,42,161,40,20,231,235,4,209,60, + 255,227,211,128,249,48,255,254,87,246,176,109,243,73,172,100,72,100,62,135, + 70,29,162,40,66,165,29,44,123,3,121,14,233,76,84,117,134,97,240,210, + 151,238,228,163,215,254,20,191,248,243,87,243,200,193,131,128,133,82,38,202, + 178,81,106,153,40,216,78,82,59,129,80,139,136,129,192,168,11,164,18,40, + 179,69,56,172,225,180,18,108,43,129,141,160,44,155,116,228,64,211,36,232, + 54,48,141,152,138,221,39,77,20,137,83,103,24,237,35,176,95,132,93,111, + 161,210,174,206,173,169,17,112,35,134,113,39,47,127,217,171,249,249,159,127, + 59,155,54,53,216,188,121,19,173,86,107,141,227,118,134,25,206,100,8,165, + 212,211,222,15,156,135,217,166,23,181,40,60,69,170,90,188,254,13,139,124, + 235,155,39,89,110,119,177,205,237,60,255,249,3,222,247,123,23,240,225,15, + 29,228,11,159,255,111,4,241,151,200,103,180,229,29,255,207,153,123,54,191, + 254,219,191,206,101,175,216,71,24,182,139,246,90,101,151,100,158,107,43,91, + 254,31,15,185,157,142,216,114,167,231,211,21,229,139,137,113,24,83,135,77, + 165,28,183,214,202,157,156,65,16,16,4,1,134,240,233,247,18,48,155,88, + 158,199,241,111,159,228,3,31,120,144,191,185,238,83,0,40,230,75,13,169, + 231,112,43,155,9,66,93,56,158,150,202,8,92,199,228,189,239,213,173,189, + 60,99,5,167,50,79,170,106,84,61,137,235,66,16,232,239,52,159,74,112, + 38,66,169,148,48,10,57,122,100,145,143,125,108,63,95,251,218,55,121,221, + 235,46,101,235,214,109,184,162,207,243,118,62,76,45,189,147,154,123,24,163, + 210,65,68,17,210,113,136,250,155,145,170,70,173,114,16,183,113,28,117,204, + 33,222,221,68,141,42,36,29,155,176,178,29,195,24,225,137,37,140,122,74, + 183,179,133,110,122,5,210,187,28,167,190,147,47,252,195,65,94,120,201,57, + 92,119,221,49,142,31,191,131,75,94,116,46,207,123,254,78,26,181,58,231, + 108,217,204,57,231,108,161,209,168,33,196,51,43,52,60,195,217,141,167,45, + 193,77,231,145,214,251,207,214,238,45,242,95,254,55,193,7,255,235,50,82, + 117,177,197,46,206,221,119,63,191,242,190,31,226,192,29,71,248,111,31,252, + 32,65,124,39,138,195,217,248,26,141,115,230,222,192,175,253,214,187,185,236, + 21,251,0,88,105,31,5,192,54,29,60,79,225,251,162,176,253,231,185,182, + 220,21,121,58,98,203,183,79,147,218,153,28,90,211,205,170,141,130,236,242, + 16,102,78,118,65,144,245,205,180,19,34,95,145,36,18,25,89,4,137,228, + 216,82,151,191,254,200,183,184,233,111,191,196,201,149,100,98,184,171,87,57, + 159,32,140,80,132,153,138,11,112,29,147,32,58,198,150,141,155,249,141,223, + 121,23,63,249,246,11,232,117,143,177,97,115,3,199,172,163,34,137,229,185, + 72,25,83,59,195,139,228,148,82,68,81,68,183,219,165,221,110,227,251,35, + 90,173,57,170,174,67,216,63,70,58,58,140,25,29,70,134,75,136,116,64, + 162,92,98,85,199,18,138,57,231,94,42,245,67,48,48,24,90,243,200,184, + 73,170,26,132,233,118,12,18,170,214,73,20,9,65,186,137,145,249,98,156, + 249,75,152,223,180,3,195,176,240,125,63,203,87,75,58,157,14,66,8,90, + 173,38,115,115,243,84,171,213,53,255,199,102,4,55,195,153,142,51,130,224, + 114,72,57,196,52,245,226,22,4,17,31,252,139,33,191,241,159,79,20,228, + 150,210,227,19,159,222,201,117,159,184,133,15,95,251,25,96,63,142,219,37, + 10,42,32,116,47,201,215,189,248,77,188,227,61,191,193,243,47,113,88,57, + 53,40,230,174,1,133,122,11,2,131,122,195,156,168,101,203,237,254,143,69, + 108,166,41,144,82,225,56,230,211,90,169,125,175,200,27,36,151,21,93,78, + 114,160,141,40,169,28,208,239,37,212,26,13,142,31,239,240,255,255,143,135, + 184,246,154,91,57,185,146,96,100,53,113,138,0,67,60,39,43,4,7,56, + 89,16,28,116,120,209,69,87,242,219,191,123,57,47,190,116,19,134,240,73, + 149,135,83,217,72,163,62,94,112,207,100,21,151,67,74,73,24,134,217,133, + 132,133,109,155,200,88,18,133,61,34,191,71,48,234,16,4,35,148,84,8, + 211,198,52,18,236,100,145,52,60,76,26,37,132,178,138,50,106,40,167,133, + 97,55,49,77,11,147,0,153,132,72,229,96,184,91,105,204,111,161,53,183, + 25,167,226,20,109,184,164,148,36,73,140,33,12,156,74,5,219,182,214,157, + 226,61,35,184,25,206,116,156,49,4,39,229,176,232,81,152,166,105,169,214, + 45,96,181,171,251,251,253,193,31,93,0,192,111,255,218,111,130,113,15,65, + 184,160,109,233,153,122,123,225,133,239,225,151,127,233,29,92,250,18,197,177, + 147,189,137,227,229,202,13,160,53,55,46,78,46,155,72,92,215,43,238,231, + 161,200,105,211,200,153,172,216,190,19,202,33,204,40,146,56,142,137,148,169, + 206,145,101,165,6,134,173,255,22,171,167,250,184,174,199,241,227,29,110,191, + 61,230,247,127,239,35,156,92,73,168,56,59,9,163,99,8,246,34,168,160, + 8,209,189,45,243,25,116,0,62,255,242,135,47,229,55,127,239,103,104,213, + 79,34,236,148,237,231,236,101,56,236,51,55,231,18,199,118,225,52,125,38, + 64,41,53,65,48,82,74,226,56,33,138,99,100,18,23,205,11,12,211,64, + 37,138,32,244,9,66,31,153,36,152,166,129,105,185,216,182,133,109,89,152, + 134,65,34,99,146,36,197,178,45,60,215,165,226,122,56,142,253,152,199,92, + 15,51,130,155,225,76,199,211,218,100,50,158,252,172,144,201,8,211,170,146, + 166,41,223,56,48,226,195,31,58,72,187,29,179,218,77,80,106,133,95,248, + 133,61,60,235,89,38,111,251,137,255,151,40,94,64,241,109,4,110,81,227, + 118,201,69,255,154,95,254,165,119,112,193,197,130,135,14,29,163,222,172,146, + 198,154,64,99,25,129,239,80,171,215,73,50,149,114,58,213,54,157,99,43, + 147,219,51,125,134,86,185,28,193,182,99,164,20,89,47,80,19,60,133,240, + 3,34,57,32,242,21,245,122,157,36,145,180,230,230,185,236,85,77,254,245, + 225,87,242,193,15,126,149,32,122,24,193,28,122,130,248,92,102,25,209,189, + 45,21,100,166,20,248,244,103,190,196,222,243,118,243,246,119,93,201,174,29, + 22,75,39,218,52,54,230,121,56,125,62,229,178,137,51,25,211,68,99,154, + 38,134,97,224,56,22,74,101,13,172,243,250,108,5,85,89,39,149,9,42, + 85,8,67,32,132,192,52,141,98,63,74,233,190,92,194,208,69,242,235,253, + 46,191,19,185,205,48,195,51,1,79,107,130,211,221,205,181,189,221,180,170, + 8,225,113,248,120,151,107,174,62,198,63,221,22,23,166,146,55,188,201,227, + 242,87,239,225,223,254,155,255,78,20,61,140,91,121,132,32,234,227,84,4, + 97,208,224,249,231,191,158,95,254,165,119,240,156,11,61,58,254,67,212,91, + 219,144,97,74,146,118,177,140,22,115,173,49,177,229,57,183,245,114,109,174, + 235,62,163,114,108,223,43,52,209,213,136,227,104,162,172,193,243,60,240,65, + 213,44,100,160,104,57,17,134,88,98,227,134,10,111,127,215,149,0,188,255, + 79,110,40,166,160,231,211,6,20,115,232,98,240,147,4,241,9,116,135,141, + 121,174,189,230,86,46,188,232,34,230,54,110,36,30,29,165,177,113,119,169, + 132,64,95,92,60,83,72,110,26,66,8,221,179,114,29,232,200,185,253,184, + 84,216,12,51,156,205,120,218,199,32,114,146,19,66,19,207,129,175,155,92, + 247,137,131,172,118,19,108,115,59,123,247,72,174,122,219,62,62,250,87,55, + 179,186,186,8,236,199,15,151,1,8,3,197,150,249,203,248,153,159,123,27, + 23,92,44,180,153,36,216,66,26,13,17,194,167,94,109,32,132,79,18,199, + 184,158,135,101,89,52,107,53,154,181,26,85,111,28,146,44,247,110,132,199, + 238,50,114,182,32,142,99,156,188,247,165,10,240,125,29,94,116,28,135,170, + 37,240,76,61,220,213,169,204,211,29,174,176,101,83,151,183,191,235,74,126, + 236,170,55,97,176,181,180,39,93,31,103,136,22,176,53,235,132,162,177,184, + 50,224,191,255,127,159,229,224,3,223,162,57,63,207,210,194,81,82,85,43, + 122,112,74,249,180,140,174,255,179,97,70,110,51,204,240,216,120,90,19,92, + 154,166,133,131,50,137,87,248,198,129,17,239,127,127,151,35,139,231,96,139, + 93,72,213,229,109,239,156,231,192,29,71,184,254,243,15,162,184,5,242,156, + 155,186,8,175,178,137,183,254,171,43,185,244,37,243,4,190,95,212,179,41, + 165,201,50,141,77,42,149,74,161,218,60,183,162,251,70,154,77,12,179,142, + 235,186,84,12,155,90,173,129,105,218,56,142,83,228,126,242,219,217,10,219, + 182,139,58,58,211,172,101,206,70,133,105,154,152,166,160,82,247,176,60,125, + 81,48,63,167,235,171,118,108,29,240,142,159,62,151,215,188,228,100,182,151, + 173,40,58,192,34,74,45,98,136,86,70,126,243,232,46,247,135,216,255,213, + 123,249,236,103,27,244,135,186,163,76,18,29,195,151,14,195,97,31,41,245, + 248,153,233,233,224,51,204,48,195,12,240,52,38,56,189,120,26,153,173,121, + 200,32,110,178,255,150,152,3,119,30,192,20,45,98,181,192,203,174,168,208, + 239,56,252,221,167,191,130,161,190,14,132,69,157,27,116,248,201,183,252,28, + 87,189,229,5,128,158,217,22,134,161,86,108,105,23,207,83,24,182,44,106, + 220,114,51,73,213,131,86,115,220,94,107,156,111,59,123,67,146,143,31,121, + 189,159,89,180,28,115,93,23,199,172,99,89,54,173,214,6,94,118,217,115, + 120,251,207,253,34,47,186,104,39,112,18,199,209,83,20,242,134,204,42,155, + 14,174,225,2,39,184,237,230,155,249,218,109,199,105,206,207,211,239,37,248, + 125,237,190,44,59,56,103,36,55,195,12,51,76,227,105,75,112,160,157,147, + 57,14,63,18,243,209,171,191,77,148,232,69,116,227,198,14,111,126,211,185, + 220,122,227,157,28,89,248,7,130,248,203,184,149,65,97,42,121,221,165,23, + 115,213,91,175,160,213,106,17,4,6,158,167,180,153,4,221,153,36,77,221, + 34,44,153,147,155,235,122,24,217,98,92,49,198,57,183,25,185,61,62,148, + 93,119,142,99,102,106,206,46,242,150,195,97,31,211,21,188,242,202,141,252, + 212,207,188,138,45,27,19,226,40,33,159,37,167,84,86,87,199,86,242,105, + 225,0,119,29,248,71,110,185,249,81,78,156,218,138,146,125,226,180,79,146, + 228,37,11,113,86,182,160,149,92,217,233,249,84,35,191,64,59,83,111,51, + 204,112,166,227,105,251,43,206,29,148,81,120,10,211,172,177,255,150,152,251, + 238,171,19,196,115,72,213,229,202,43,159,195,194,209,152,227,39,254,17,120, + 0,183,82,39,136,14,1,176,101,254,50,222,249,158,183,179,125,135,69,183, + 219,157,108,187,165,116,231,140,105,229,54,237,148,180,188,49,185,153,166,49, + 35,183,199,137,242,226,168,29,124,2,215,117,104,54,155,84,12,27,25,40, + 106,118,200,101,175,58,143,127,253,83,175,68,209,41,169,183,48,107,229,213, + 202,182,121,104,242,235,240,141,111,222,194,55,239,62,137,48,27,4,65,64, + 146,232,90,174,32,8,38,186,172,148,59,176,204,48,195,12,103,55,158,182, + 4,7,20,69,221,119,223,51,224,191,253,217,49,0,210,116,200,179,246,214, + 217,247,108,135,91,111,188,147,110,79,95,245,167,98,69,191,73,109,230,29, + 239,122,39,231,95,120,1,131,160,95,144,155,239,11,230,141,17,177,187,5, + 195,8,38,148,155,76,171,19,78,73,77,110,162,200,183,149,237,241,51,60, + 62,148,107,24,115,167,99,181,165,219,110,57,158,96,215,14,139,87,92,241, + 154,34,84,9,224,56,137,38,57,225,102,69,225,115,104,71,165,203,215,15, + 12,249,210,205,247,209,237,75,252,32,36,8,252,98,118,157,138,228,4,201, + 205,48,195,12,51,192,211,152,224,164,148,164,105,138,83,217,204,53,87,31, + 226,145,195,131,226,185,75,127,168,198,55,239,90,230,91,15,221,74,16,31, + 0,60,162,80,23,110,159,51,255,98,94,241,202,125,116,187,93,210,104,88, + 24,74,0,84,99,39,150,109,211,172,52,214,205,185,85,12,123,106,166,218, + 116,235,162,103,118,157,219,147,129,92,249,230,197,202,57,12,49,228,101,47, + 117,120,251,187,246,21,69,222,58,92,169,161,152,203,234,229,220,236,214,230, + 134,207,239,231,246,219,99,154,205,109,0,4,129,79,16,4,132,233,184,195, + 138,62,214,236,66,100,134,25,102,120,26,19,92,190,48,222,125,207,128,127, + 184,225,132,54,150,200,227,156,191,111,11,0,247,124,227,142,108,182,219,34, + 136,3,128,30,125,243,107,191,245,110,118,236,74,112,93,29,170,202,21,92, + 222,91,18,64,184,181,194,246,159,231,220,114,229,86,62,254,140,208,190,127, + 164,169,204,154,76,27,89,241,178,131,231,204,211,108,54,105,212,13,94,245, + 154,43,248,241,171,94,131,30,134,218,209,83,191,85,128,160,130,237,88,40, + 182,145,135,41,23,87,78,113,235,141,95,228,216,82,87,135,38,99,77,136, + 211,161,202,89,152,114,134,25,102,128,167,49,193,165,105,138,82,62,215,92, + 125,136,135,30,105,232,126,147,230,118,158,251,124,73,56,248,38,135,23,190, + 73,16,47,67,230,154,84,170,193,27,175,124,15,151,189,98,31,203,43,75, + 132,97,88,236,203,54,180,197,220,52,234,52,234,227,70,189,58,239,54,86, + 110,64,145,115,155,225,137,129,82,154,176,198,93,105,116,31,73,41,21,126, + 212,102,239,179,108,222,240,214,87,179,123,215,110,28,103,83,70,106,58,76, + 25,69,203,83,123,235,240,229,219,15,115,242,161,251,137,146,148,88,38,19, + 161,74,160,48,156,204,48,195,12,51,60,101,43,121,57,140,148,166,114,205, + 45,137,87,136,99,155,27,174,31,191,231,89,251,142,81,111,52,185,243,235, + 167,16,124,11,56,82,52,81,246,42,231,243,83,239,190,156,56,62,129,101, + 180,38,142,101,216,18,215,243,16,134,38,195,178,169,4,38,75,1,254,185, + 200,45,175,241,91,255,185,211,127,55,223,207,126,79,255,30,185,230,184,79, + 20,76,179,134,105,214,10,227,73,174,204,13,209,197,115,230,145,129,226,71, + 95,31,243,234,87,158,67,18,111,36,142,146,98,102,156,96,15,21,103,39, + 186,46,78,183,243,234,13,190,197,13,183,11,146,200,196,15,66,100,156,96, + 8,29,170,28,249,102,177,239,89,217,192,12,51,204,240,148,17,220,119,10, + 255,89,246,6,62,246,233,128,118,59,51,145,164,67,92,111,142,112,240,77, + 22,23,31,1,198,53,80,74,53,248,201,183,188,149,90,125,72,152,76,46, + 238,149,74,101,141,99,18,88,211,126,75,147,155,185,102,8,232,147,137,245, + 172,216,211,228,6,99,21,116,186,231,167,247,249,221,88,188,243,166,214,229, + 127,255,57,160,135,151,146,205,122,115,185,234,173,87,176,97,67,171,84,3, + 55,70,185,46,206,15,19,30,252,234,2,199,31,77,80,169,222,158,4,18, + 203,50,49,196,112,194,108,242,221,134,123,194,83,0,0,32,0,73,68,65, + 84,18,253,12,51,204,240,204,194,83,30,139,155,94,80,115,130,145,50,229, + 115,159,184,153,213,110,130,41,90,108,154,111,177,123,143,195,193,131,14,65, + 116,47,208,1,2,148,106,112,206,220,179,185,234,173,87,0,32,163,58,166, + 163,13,41,57,185,89,150,133,105,217,216,166,110,189,89,175,215,215,152,74, + 116,206,237,159,239,235,152,62,86,174,208,198,33,61,57,65,108,192,196,115, + 121,141,224,119,163,238,214,63,15,115,221,127,159,108,72,153,102,37,4,250, + 241,43,174,168,240,35,255,194,193,171,52,178,9,3,26,81,100,101,179,228, + 198,196,119,215,129,127,228,224,65,61,195,47,150,9,126,164,67,146,65,16, + 160,34,73,156,84,179,99,204,204,38,51,204,112,54,227,41,13,81,230,170, + 161,172,154,242,16,219,129,251,67,110,186,73,207,252,146,170,139,176,150,89, + 29,165,28,61,126,16,77,110,33,136,83,8,92,94,113,217,91,217,190,67, + 147,151,235,166,72,99,136,97,79,46,110,142,101,96,218,86,65,110,229,114, + 128,39,179,198,237,241,132,255,202,74,45,71,126,95,38,163,53,183,252,185, + 36,94,253,174,212,221,119,67,132,235,17,231,19,173,238,108,219,70,38,35, + 0,230,170,54,111,255,95,94,69,173,62,63,54,154,8,23,67,180,178,110, + 39,186,38,206,171,88,64,135,235,63,121,144,227,143,38,140,70,130,222,112, + 72,42,7,4,129,79,152,230,134,147,89,46,110,134,25,206,118,60,229,10, + 174,140,114,123,174,107,174,62,68,207,31,55,222,157,107,236,100,184,120,146, + 229,213,7,129,197,172,135,33,108,158,219,205,155,223,242,114,6,129,158,249, + 22,43,11,191,35,168,70,250,241,116,167,146,28,185,169,228,159,227,51,77, + 135,255,202,255,150,201,109,61,50,179,146,213,226,150,35,127,46,191,159,191, + 191,188,207,252,120,229,99,61,222,122,190,242,243,229,243,126,34,235,1,203, + 23,21,158,231,145,196,43,188,240,133,30,175,122,249,244,220,50,143,56,170, + 65,81,50,160,113,255,67,251,105,183,199,134,161,145,63,241,182,34,84,57, + 203,197,205,48,195,217,139,167,13,193,77,47,68,119,221,27,179,161,165,85, + 89,154,14,217,114,110,204,106,247,81,4,122,156,138,110,168,188,153,157,187, + 46,165,49,111,19,250,109,173,222,194,148,170,215,32,118,183,96,217,54,166, + 53,94,48,203,157,74,224,201,157,10,48,173,128,78,167,228,114,5,150,19, + 85,113,174,83,164,86,222,54,189,189,76,114,143,165,230,190,147,177,103,61, + 133,151,63,150,114,248,125,133,66,167,145,231,199,82,53,54,4,53,42,6, + 111,120,235,171,215,188,86,8,183,168,137,243,195,1,16,178,212,142,233,245, + 199,181,145,211,147,197,103,152,97,134,25,158,82,130,203,243,73,211,56,181, + 28,240,192,221,146,209,104,153,52,29,82,173,196,108,168,26,153,185,228,100, + 233,149,45,94,126,217,179,217,178,45,192,54,29,226,116,132,233,12,80,202, + 43,114,111,142,101,224,186,238,68,104,50,119,77,194,83,215,95,242,116,68, + 81,144,151,236,62,230,109,154,236,114,146,139,227,199,247,121,114,50,60,221, + 109,26,66,184,19,239,253,126,225,251,90,114,185,174,67,20,37,152,86,149, + 40,138,248,145,215,57,108,216,80,114,193,10,23,165,60,108,167,60,186,208, + 7,58,60,252,224,63,21,202,221,15,116,222,174,76,116,179,238,38,51,204, + 112,118,227,41,37,56,33,220,34,236,149,19,77,16,68,180,151,15,211,237, + 213,240,163,17,134,81,163,90,221,196,209,35,17,126,52,132,44,52,153,227, + 37,47,126,9,157,238,42,134,45,9,3,73,197,210,31,201,178,78,63,203, + 181,220,99,242,201,198,122,121,181,233,199,235,169,183,28,50,92,157,184,61, + 22,100,50,194,182,227,117,205,41,235,221,47,31,247,116,247,215,123,111,153, + 236,190,87,228,230,146,32,136,112,93,167,104,203,214,168,27,236,222,190,175, + 100,52,169,128,112,179,46,39,121,111,74,29,106,94,56,114,132,208,111,147, + 36,186,224,91,198,9,97,102,190,201,103,198,205,48,195,12,103,47,158,178, + 137,222,218,68,224,21,243,222,226,56,70,165,29,28,103,35,159,249,252,22, + 164,122,0,165,90,40,53,100,126,126,11,237,246,87,16,28,130,108,225,83, + 170,193,243,207,215,163,112,42,174,137,140,234,84,109,65,152,244,49,43,154, + 184,242,220,219,233,92,147,79,20,202,106,108,61,117,147,196,154,152,76,171, + 90,152,39,242,109,101,88,201,42,200,238,36,145,37,93,72,51,82,55,230, + 144,73,55,123,113,11,179,162,173,246,22,144,88,250,190,76,70,152,86,181, + 56,23,33,220,130,144,242,115,43,135,68,31,47,177,229,251,121,162,92,150, + 249,0,91,219,142,145,50,70,8,151,90,173,198,169,229,128,31,253,209,144, + 123,238,107,161,148,135,226,193,172,46,110,47,185,115,22,42,64,200,87,190, + 26,241,211,163,237,140,106,14,174,124,20,229,166,36,225,14,18,83,18,90, + 49,4,113,150,107,125,102,78,253,158,97,134,25,30,27,79,169,130,43,91, + 229,115,53,21,69,9,183,222,114,100,226,117,181,186,207,96,24,82,174,125, + 3,184,224,57,89,254,45,144,8,225,19,101,174,185,70,117,188,152,201,180, + 90,220,47,135,38,159,40,172,87,171,6,147,238,199,242,182,252,181,211,200, + 201,173,64,210,157,36,55,208,247,75,143,101,184,74,146,41,149,233,188,92, + 28,219,196,177,189,38,236,88,54,175,172,247,190,114,200,243,116,132,247,68, + 224,116,37,25,27,55,56,252,240,143,95,89,60,22,84,52,65,11,23,129, + 139,87,169,163,85,156,79,111,240,45,14,30,60,138,72,245,247,22,7,167, + 175,123,155,153,77,102,152,225,236,195,211,194,100,18,199,113,161,12,70,137, + 226,192,157,71,72,83,29,106,50,12,29,186,26,14,142,21,175,87,4,120, + 149,77,236,61,111,55,219,119,88,196,81,88,180,227,2,48,45,109,46,113, + 93,151,90,85,173,49,150,60,81,87,243,211,246,254,245,72,237,177,28,144, + 211,207,39,145,212,234,45,39,182,180,131,12,218,168,180,55,121,75,142,66, + 210,101,24,165,8,213,37,241,245,251,135,97,90,28,195,16,93,164,140,139, + 156,220,244,113,243,99,151,207,97,250,241,244,251,242,156,233,19,89,46,80, + 86,152,250,119,96,112,209,243,42,236,217,186,185,120,94,41,15,207,213,115, + 227,252,176,94,188,215,15,7,60,122,44,65,102,159,187,23,246,65,234,166, + 219,211,243,226,102,237,215,102,152,225,236,195,83,22,162,132,177,147,174,76, + 56,157,206,136,126,20,33,132,137,82,46,27,90,22,129,223,38,136,36,147, + 10,110,158,23,92,180,11,127,208,195,118,42,56,85,131,168,47,241,42,218, + 160,224,88,147,11,154,112,204,39,180,52,32,47,196,6,214,16,214,122,56, + 221,118,189,3,173,64,132,26,171,54,149,246,80,225,42,2,80,33,168,180, + 141,48,116,217,132,168,108,128,180,67,205,128,97,212,160,230,116,233,15,170, + 180,234,29,186,225,28,181,44,68,107,91,121,24,114,157,243,40,171,197,105, + 152,173,137,215,38,214,134,34,244,153,135,43,243,239,224,123,13,89,150,107, + 32,203,247,131,32,194,182,99,46,122,241,30,142,124,230,206,98,26,132,31, + 88,89,71,147,60,255,167,183,183,79,30,1,182,96,152,13,128,162,63,101, + 222,103,52,135,110,192,44,102,131,60,103,152,225,44,194,83,70,112,121,14, + 166,140,56,169,210,89,81,144,238,5,22,17,34,64,88,49,203,171,3,138, + 226,238,12,205,170,158,42,16,167,83,170,196,178,144,73,12,86,37,155,243, + 246,228,46,104,235,146,219,99,145,7,104,2,153,122,77,89,185,169,180,135, + 20,75,136,180,95,60,31,141,150,112,50,145,154,138,4,51,213,195,103,106, + 6,128,38,164,254,32,0,79,43,185,156,228,78,119,110,73,36,53,161,174, + 139,85,204,234,185,19,239,45,147,28,60,49,181,112,57,177,73,153,22,68, + 103,219,49,50,25,113,238,62,83,95,64,136,121,200,39,125,139,22,142,213, + 32,136,59,128,62,247,213,222,9,189,47,217,47,72,78,198,9,184,249,148, + 1,168,213,114,162,155,21,126,207,48,195,217,132,167,84,193,229,200,23,186, + 90,173,198,55,238,235,157,230,85,121,37,175,94,236,118,236,220,131,193,17, + 98,89,165,106,207,145,196,49,166,51,66,165,45,44,71,102,133,221,106,77, + 191,201,39,10,101,163,198,122,196,86,24,69,74,166,16,146,174,254,151,85, + 204,202,134,117,205,36,133,114,115,14,2,155,33,155,64,158,44,165,112,206, + 18,142,231,0,13,164,88,42,72,110,24,53,128,71,17,214,14,12,255,36, + 141,186,75,55,156,43,118,93,144,93,118,126,50,83,134,197,185,149,76,44, + 249,185,202,209,161,194,196,146,43,58,128,32,0,211,148,133,11,53,31,102, + 250,189,32,138,36,142,83,106,192,108,152,164,169,139,101,187,92,116,169,206, + 189,229,148,228,57,85,130,168,141,31,91,217,84,57,253,123,56,186,16,50, + 28,212,16,194,167,217,172,19,37,18,72,38,142,35,101,140,105,58,223,211, + 57,206,48,195,12,103,46,158,22,241,154,124,126,87,154,166,12,150,15,178, + 218,77,80,170,92,119,181,184,230,61,231,238,57,151,13,59,198,121,55,59, + 88,44,242,112,142,101,32,236,245,13,7,79,154,155,174,68,30,133,26,43, + 229,210,136,50,227,76,182,125,13,185,101,80,249,118,223,6,87,79,74,136, + 252,8,239,222,71,52,201,137,57,68,122,80,31,75,44,209,233,132,212,140, + 177,210,3,88,236,142,195,134,105,108,21,6,150,34,199,151,31,51,237,160, + 146,163,69,110,111,250,92,11,19,75,86,119,87,124,212,44,175,85,28,35, + 149,223,83,99,99,103,202,244,19,199,49,82,166,72,153,242,130,231,27,84, + 156,20,178,201,2,126,84,86,234,121,168,218,231,209,99,71,232,183,227,162, + 53,155,204,114,111,235,143,209,153,53,95,158,97,134,179,9,79,3,130,155, + 52,0,220,115,199,145,53,175,24,13,29,138,185,111,4,84,92,65,171,181, + 183,24,139,19,167,35,6,98,174,152,26,144,35,31,135,243,68,171,183,199, + 133,41,199,99,65,32,211,40,169,40,149,106,245,154,186,9,208,1,127,88, + 188,108,100,29,206,118,212,97,88,234,224,1,208,89,213,23,0,131,238,184, + 95,85,48,208,164,103,216,217,80,208,114,93,88,73,45,130,38,85,41,150, + 198,68,7,12,163,116,108,98,137,36,253,65,192,48,76,137,164,62,246,52, + 57,125,247,16,24,134,14,67,6,65,4,232,139,143,252,182,107,71,30,92, + 208,97,105,207,77,74,211,217,199,181,112,75,237,24,131,241,111,38,10,219, + 223,231,121,205,48,195,12,207,20,60,101,33,202,60,217,159,215,193,69,225, + 41,132,49,199,74,111,15,105,186,140,16,1,122,113,171,34,85,190,104,117, + 16,184,68,65,139,90,243,81,92,119,35,118,48,34,54,246,146,102,5,224, + 173,70,182,240,26,155,177,44,125,197,238,56,218,192,48,28,14,49,77,3, + 165,130,162,176,248,116,88,207,64,81,54,150,228,88,83,187,54,149,71,3, + 48,213,57,19,33,69,149,246,16,105,115,98,63,50,104,35,84,87,155,73, + 70,0,115,40,239,17,24,117,72,150,182,82,77,246,210,107,6,64,64,173, + 81,135,81,159,174,95,165,185,113,129,65,119,23,126,55,162,214,90,5,118, + 80,53,51,98,204,8,50,49,181,250,17,170,59,86,103,65,27,85,89,65, + 140,250,8,99,30,49,234,35,51,65,108,166,80,51,22,178,144,229,56,60, + 217,50,59,89,189,221,8,223,215,197,218,82,218,152,38,128,202,242,114,218, + 200,145,255,93,243,239,13,152,48,168,68,145,14,115,26,134,238,102,162,95, + 151,102,239,149,152,174,96,235,134,45,28,62,153,128,104,225,7,33,110,165, + 75,16,206,77,100,210,220,202,42,139,109,135,109,162,201,192,127,148,205,181, + 22,22,62,50,182,10,63,74,16,4,165,60,220,12,51,204,112,182,224,41, + 83,112,121,111,67,208,11,160,105,85,49,77,147,94,91,32,68,55,11,81, + 86,136,71,42,107,182,59,134,91,105,226,84,182,49,24,245,25,136,57,2, + 217,198,170,12,153,175,27,172,118,187,88,85,131,196,247,11,171,184,239,7, + 72,57,164,86,171,97,24,230,119,36,183,199,117,254,121,45,217,180,161,164, + 164,140,114,228,97,199,92,37,77,171,165,53,80,29,166,59,182,0,212,141, + 54,202,91,209,196,149,229,230,122,43,147,102,143,65,215,159,80,114,57,10, + 135,102,249,113,9,163,195,39,17,163,113,168,179,80,156,73,151,81,73,21, + 13,195,148,97,152,98,91,35,242,174,88,227,208,223,88,37,151,221,138,185, + 67,82,15,62,213,247,117,247,18,51,123,255,48,187,160,200,137,81,111,159, + 219,120,58,82,26,59,41,131,80,127,135,117,183,65,197,50,232,248,49,9, + 147,6,166,138,97,207,218,118,205,48,195,89,136,167,142,224,74,99,95,12, + 195,68,8,143,40,74,232,244,194,194,53,7,16,219,9,182,51,68,47,106, + 149,98,123,179,70,17,162,172,103,170,45,14,82,26,245,26,113,191,75,163, + 54,194,241,4,174,235,226,56,14,113,108,127,87,211,174,215,170,183,241,251, + 166,235,201,202,234,45,55,137,104,23,228,65,226,229,71,80,242,144,86,74, + 163,126,161,234,210,72,146,70,18,25,180,145,65,155,238,64,111,207,137,171, + 12,239,222,71,244,57,45,150,66,147,98,110,226,53,150,58,138,223,141,8, + 226,83,212,106,250,124,202,100,183,124,42,43,105,200,142,7,104,66,83,29, + 84,58,38,48,49,234,163,194,85,210,72,210,233,132,19,199,232,15,198,127, + 151,188,230,78,119,34,81,217,223,82,77,16,91,254,125,151,111,229,237,249, + 107,243,223,130,158,113,167,149,96,163,98,160,140,77,148,255,230,26,57,185, + 249,184,21,155,60,84,217,237,118,25,141,180,4,141,166,134,222,134,233,108, + 8,234,12,51,156,141,120,202,8,206,180,170,19,61,13,165,148,56,121,67, + 93,49,14,139,85,139,188,90,128,91,105,2,46,65,104,208,27,130,89,49, + 136,165,206,223,164,169,203,32,51,207,217,173,243,168,154,195,34,15,149,27, + 34,242,81,60,81,120,234,113,159,231,120,97,86,107,157,147,121,104,178,100, + 40,81,225,106,22,102,212,199,78,150,82,70,71,2,109,24,81,157,130,232, + 186,131,37,29,34,204,148,212,92,173,194,242,169,113,40,22,128,145,73,218, + 83,152,203,211,19,8,58,224,158,194,83,135,245,57,38,250,223,110,119,145, + 170,144,248,221,8,149,60,74,173,182,74,173,182,202,40,108,179,105,62,44, + 114,128,121,40,180,32,83,213,209,36,170,58,5,225,169,202,138,62,147,213, + 197,98,127,0,134,63,110,118,29,201,65,161,226,226,216,70,202,180,232,24, + 146,166,233,196,192,209,242,164,113,165,124,114,203,190,105,214,176,236,13,19, + 5,223,186,116,160,28,136,212,68,43,140,252,119,225,2,97,166,222,198,106, + 213,117,83,92,207,35,137,178,225,173,98,82,201,206,230,195,205,48,195,217, + 133,167,140,224,116,29,220,56,164,165,210,14,81,148,100,207,109,204,58,152, + 76,42,136,32,204,175,196,67,154,53,72,163,33,182,233,48,28,12,244,104, + 28,163,206,29,95,115,233,172,216,68,230,115,104,182,182,17,42,11,215,117, + 112,28,147,118,111,145,52,149,88,246,134,199,117,142,58,132,170,80,202,95, + 191,44,96,226,197,83,161,73,247,212,132,73,68,163,179,174,66,203,9,167, + 225,45,145,147,155,82,29,168,202,73,213,150,163,42,25,246,7,89,201,192, + 24,27,155,33,150,58,58,177,205,239,70,248,221,168,232,138,50,73,110,250, + 88,145,31,141,207,207,139,65,117,48,2,139,134,171,63,175,215,210,199,201, + 213,96,228,143,137,194,182,116,131,103,208,237,214,242,176,163,97,24,197,148, + 116,195,48,144,114,56,190,101,223,99,154,166,153,193,68,27,78,162,72,226, + 251,186,91,138,227,88,136,116,25,202,77,151,39,80,97,250,247,17,134,33, + 73,146,32,140,128,88,38,140,252,217,232,156,25,102,56,155,241,20,186,40, + 245,34,25,69,73,22,154,210,168,111,158,244,189,236,220,162,48,200,149,77, + 54,98,165,98,211,27,234,97,152,158,167,168,84,42,36,113,76,56,48,56, + 122,240,0,31,251,200,63,242,23,127,186,196,141,55,107,5,17,199,49,73, + 188,74,179,86,199,48,76,58,163,201,58,169,245,144,159,211,116,183,146,114, + 205,219,116,113,118,174,222,80,135,81,140,137,198,187,247,145,73,178,115,79, + 209,242,70,244,86,36,157,97,72,103,56,185,80,63,22,44,163,11,35,77, + 34,195,164,141,101,221,7,140,85,28,232,112,101,220,121,152,184,243,48,155, + 90,139,108,106,45,22,97,201,49,58,83,255,78,61,59,12,11,117,25,119, + 30,158,120,46,149,99,210,141,147,106,161,226,162,72,34,165,156,232,251,88, + 110,237,101,154,53,221,96,91,181,144,50,229,250,207,14,248,169,127,117,3, + 127,246,103,223,228,212,114,128,235,58,120,222,184,161,243,116,136,178,90,53, + 166,198,230,204,225,85,118,2,176,97,243,197,52,155,91,241,195,46,46,143, + 253,247,157,133,41,103,152,225,236,192,83,88,232,45,80,202,199,113,92,192, + 162,219,55,185,254,11,1,139,135,108,210,84,147,200,11,46,222,197,115,47, + 220,196,215,239,189,133,188,76,192,173,140,79,217,172,24,244,6,49,245,170, + 75,156,142,216,177,115,31,63,252,227,87,242,141,251,82,126,225,103,63,135, + 231,157,226,170,55,236,226,170,183,94,193,27,255,197,28,166,105,19,4,17, + 27,234,149,34,236,88,206,181,149,157,147,154,208,214,233,221,88,170,119,155, + 182,219,3,107,20,154,23,126,27,48,80,170,131,16,115,104,66,169,129,234, + 208,242,242,14,37,231,16,141,150,198,187,200,247,225,247,49,142,119,128,13, + 152,203,146,222,185,39,105,177,9,68,135,170,9,126,10,74,181,72,135,199, + 49,106,219,73,147,195,24,214,222,137,227,231,121,180,134,187,78,104,18,128, + 57,146,165,128,60,16,60,236,15,168,53,234,52,107,38,157,149,16,35,251, + 186,87,58,18,183,228,249,136,124,133,227,9,84,36,17,142,137,109,143,251, + 94,230,5,224,249,125,253,175,54,246,172,172,70,60,112,32,228,79,63,112, + 11,119,126,253,20,71,22,30,98,231,185,207,210,223,105,118,81,145,166,58, + 31,171,21,220,24,155,54,180,128,125,44,175,28,64,79,248,158,195,15,231, + 248,242,254,131,152,214,46,246,236,22,236,216,181,145,65,146,208,96,134,25, + 102,56,219,241,148,207,131,3,193,55,14,140,248,229,95,58,206,175,255,226, + 63,112,244,200,60,134,81,195,48,106,60,239,194,77,92,242,226,121,202,42, + 35,8,205,194,57,7,208,172,219,24,70,64,197,50,232,118,218,220,127,247, + 3,188,224,249,6,47,122,201,203,104,183,93,174,190,246,94,222,243,238,247, + 241,171,191,250,0,65,16,97,154,34,203,193,105,5,25,199,113,105,106,117, + 122,218,102,194,143,217,75,18,198,234,141,18,65,121,53,248,246,248,43,86, + 170,195,48,209,199,29,38,237,130,212,218,203,147,164,152,246,74,185,162,246, + 250,106,195,47,109,118,90,99,117,150,38,135,39,212,220,196,57,166,235,213, + 136,173,85,112,195,254,96,141,59,179,42,244,227,65,215,31,151,33,0,177, + 169,85,117,48,53,108,192,52,205,130,220,242,30,147,119,223,51,224,250,47, + 68,252,233,7,110,225,214,219,43,28,61,182,13,193,30,253,122,87,76,52, + 118,30,37,107,243,101,174,55,151,145,156,135,38,184,109,184,206,78,254,230, + 51,15,243,251,191,247,17,174,251,196,45,116,218,225,99,206,2,156,97,134, + 25,206,30,60,105,4,87,14,59,74,57,36,10,79,149,12,8,146,36,94, + 97,101,53,230,63,253,202,50,63,249,99,135,248,248,199,23,89,109,239,36, + 86,11,152,162,69,211,107,243,19,111,219,196,221,119,182,113,109,11,8,112, + 220,37,116,15,194,173,122,199,170,71,40,117,119,121,219,222,134,76,7,188, + 255,3,41,215,124,100,196,187,126,182,69,197,73,81,116,88,92,89,224,192, + 93,7,57,190,60,68,74,69,156,84,179,210,1,205,18,81,164,195,106,121, + 254,104,26,133,161,100,116,72,119,42,25,30,210,245,100,105,135,212,63,156, + 217,254,117,104,18,180,82,179,140,174,14,83,158,159,49,209,183,251,80,149, + 96,28,5,127,72,205,90,91,120,238,120,35,100,183,141,209,20,140,178,240, + 160,232,109,194,100,25,147,101,106,214,54,0,70,205,69,188,236,47,39,132, + 126,157,101,221,135,167,14,211,242,178,252,86,70,116,205,202,9,154,149,19, + 107,92,154,74,117,116,201,1,58,132,122,108,171,62,159,106,99,149,90,163, + 78,203,61,62,113,110,35,101,18,196,167,8,221,13,140,100,141,97,118,145, + 145,198,154,76,202,141,172,243,239,85,171,97,125,65,113,255,131,17,251,111, + 137,233,44,73,154,13,65,221,138,64,125,21,197,126,253,158,64,145,170,22, + 169,106,145,196,43,37,23,229,56,124,43,210,101,158,125,193,57,120,149,75, + 81,156,139,194,197,143,134,8,92,150,86,234,92,253,241,33,191,241,159,238, + 224,214,47,237,35,74,82,146,160,77,42,7,4,65,128,138,116,159,203,36, + 94,89,247,111,60,195,12,51,60,243,240,164,17,92,30,146,146,114,136,16, + 46,78,101,243,68,207,193,207,125,161,194,207,254,204,3,124,236,218,187,56, + 124,36,235,56,34,90,152,162,133,65,147,205,91,118,177,255,150,128,7,15, + 92,79,16,39,64,64,20,232,124,140,151,133,41,211,216,44,70,165,88,142, + 36,137,99,30,250,246,33,190,120,243,97,0,246,236,222,139,235,152,228,225, + 205,196,247,39,234,161,116,251,38,85,122,60,57,254,6,214,81,110,165,25, + 109,42,237,145,186,137,118,76,102,109,181,148,234,140,21,220,200,156,80,112, + 121,238,44,87,114,177,173,47,2,106,85,109,242,136,252,42,70,115,146,248, + 76,150,145,108,154,216,214,196,129,170,196,51,51,87,164,24,215,180,69,163, + 165,130,228,128,34,199,87,222,182,158,106,219,121,82,49,146,122,251,176,63, + 160,27,108,7,198,185,189,92,193,149,81,54,155,76,215,153,229,134,33,160, + 104,208,252,153,79,31,229,238,59,219,188,252,13,87,208,218,188,141,138,19, + 51,61,227,207,182,99,134,97,74,56,240,9,252,201,243,84,198,38,206,125, + 214,118,158,247,108,31,131,173,24,204,33,208,115,226,192,69,209,225,206,3, + 15,243,219,191,254,127,243,103,127,116,136,97,242,92,82,229,81,109,88,132, + 105,204,106,219,36,78,170,204,154,46,207,48,195,217,129,39,141,224,210,116, + 108,25,207,67,84,0,171,131,144,171,63,252,48,191,251,59,15,112,221,245, + 203,172,172,204,173,125,47,61,182,238,154,227,31,62,251,13,238,58,112,12, + 104,163,175,228,243,133,76,171,135,88,70,136,204,10,158,68,38,149,202,60, + 126,96,113,207,129,5,62,247,137,155,89,94,237,18,68,199,128,172,149,213, + 168,201,200,55,9,130,128,72,14,24,14,251,89,95,197,152,40,138,48,140, + 232,180,77,148,39,230,180,145,117,2,9,87,199,228,230,15,11,231,35,213, + 140,12,170,18,163,166,137,207,56,190,190,114,200,73,46,182,135,196,246,16, + 63,213,225,199,170,161,16,61,65,210,212,36,7,104,178,52,187,244,136,180, + 217,4,80,37,114,203,247,85,38,185,150,55,42,238,235,144,232,250,166,18, + 128,202,64,225,15,76,236,120,109,33,124,167,175,137,168,18,172,226,39,41, + 158,101,224,120,162,104,5,150,35,159,189,230,148,204,32,66,184,44,28,77, + 249,218,93,15,112,247,29,15,211,89,146,116,79,157,32,136,86,128,128,222, + 114,214,91,83,234,238,255,145,175,24,70,35,92,111,142,220,100,162,148,203, + 163,39,86,216,181,219,230,57,63,184,11,216,139,98,14,193,248,247,35,152, + 195,96,142,32,146,124,248,218,219,248,185,119,254,21,119,222,221,32,242,21, + 134,157,224,153,17,158,231,17,69,242,9,159,107,55,195,12,51,60,253,240, + 164,17,92,20,37,152,166,89,140,197,113,93,135,52,77,249,187,235,66,254, + 224,255,58,200,125,247,213,177,205,237,152,162,133,84,221,226,223,88,30,103, + 239,30,73,191,125,130,35,71,15,235,247,218,22,229,122,167,188,92,160,226, + 154,84,42,21,122,131,177,122,104,85,61,160,194,23,191,28,51,28,180,209, + 11,186,79,26,31,166,94,237,97,136,33,81,216,46,212,71,30,190,82,145, + 156,200,1,61,150,91,82,6,109,144,135,117,88,114,138,220,44,163,171,201, + 199,28,19,143,17,45,22,185,180,102,67,47,170,98,138,152,146,190,192,29, + 118,240,12,10,101,102,169,54,86,201,191,146,147,101,19,135,158,121,10,211, + 236,193,220,73,148,232,34,68,151,170,217,197,140,30,37,182,135,68,163,37, + 60,117,152,104,180,164,137,45,83,149,195,68,233,115,21,250,113,55,75,203, + 153,203,227,146,132,216,30,146,14,199,33,202,149,222,216,201,24,196,227,26, + 194,200,87,164,177,85,244,167,204,85,92,20,229,29,106,198,161,202,250,92, + 138,31,88,44,156,10,184,246,175,111,167,23,46,160,47,92,2,230,55,167, + 244,3,191,184,248,88,3,21,96,24,53,150,151,71,220,125,103,155,87,95, + 254,90,94,112,161,158,141,231,86,54,163,10,146,11,80,4,8,92,20,1, + 119,31,88,230,191,252,214,109,124,229,107,85,130,65,31,167,26,50,234,230, + 231,58,115,82,206,48,195,51,29,79,26,193,229,181,81,57,226,56,230,234, + 143,15,248,179,63,120,128,71,14,238,44,182,231,228,6,144,166,67,54,111, + 142,217,114,110,204,177,71,143,224,135,186,88,90,24,122,22,156,118,80,78, + 214,67,197,202,162,89,215,161,207,126,100,16,37,2,165,92,146,145,14,245, + 121,149,177,194,24,140,154,197,2,154,231,102,30,19,114,178,235,127,81,10, + 80,89,201,138,162,15,143,201,77,116,10,85,5,96,182,18,44,163,203,32, + 28,34,122,155,24,84,125,236,222,225,137,221,151,73,206,106,40,194,250,100, + 120,178,108,118,204,85,107,142,38,14,162,38,117,184,18,240,12,16,253,46, + 190,57,164,106,118,11,69,152,223,134,73,155,216,214,207,77,236,231,212,130, + 254,168,155,76,196,214,20,175,174,201,41,15,155,2,24,105,7,167,174,85, + 157,107,235,73,219,126,146,78,40,184,124,184,42,140,27,49,151,187,154,12, + 58,6,158,83,69,249,54,15,62,210,103,101,245,8,229,240,100,226,251,68, + 225,10,65,16,144,36,178,200,241,77,162,194,221,119,60,204,198,6,188,242, + 181,47,70,16,224,135,125,4,149,108,24,170,110,198,173,56,132,231,212,80, + 4,124,253,222,91,184,230,47,63,204,137,83,91,89,89,233,34,163,67,36, + 126,128,148,170,200,189,206,48,195,12,207,76,60,105,4,55,238,74,161,15, + 113,195,231,125,254,236,15,30,224,190,251,180,41,68,170,46,178,212,15,81, + 170,46,47,184,184,201,149,87,62,135,13,85,35,83,95,39,129,19,248,161, + 206,193,5,225,0,8,241,42,27,1,8,3,73,26,77,23,83,103,48,170, + 248,97,63,123,47,244,71,80,177,14,235,49,42,129,196,79,82,66,57,36, + 8,2,134,209,168,112,3,90,201,234,196,120,25,96,109,151,146,97,70,10, + 221,246,88,185,213,50,69,96,106,245,214,238,78,42,132,250,200,67,117,32, + 25,26,248,233,88,165,185,195,14,238,176,67,58,92,187,160,119,135,209,154, + 109,152,61,76,103,72,143,241,115,205,185,213,66,145,113,244,120,246,253,119, + 39,8,20,152,36,55,53,7,190,190,128,48,151,37,230,178,68,157,92,255, + 231,48,63,231,17,247,198,138,174,18,104,210,15,6,253,66,9,235,220,150, + 70,20,73,148,242,75,238,212,161,86,112,217,247,41,42,94,150,27,213,104, + 159,210,199,29,102,23,37,195,145,64,197,249,185,132,32,92,210,116,136,82, + 46,15,126,251,33,246,223,124,132,203,175,112,121,193,133,47,44,246,33,168, + 96,59,117,68,70,154,122,2,252,9,224,144,118,89,190,239,70,78,156,218, + 202,72,214,136,77,191,8,77,75,169,136,227,120,170,118,111,166,238,102,152, + 225,153,128,39,177,76,64,0,122,241,248,251,235,123,124,224,15,15,77,144, + 27,104,83,201,134,150,69,171,57,228,226,11,77,222,114,213,86,46,121,241, + 60,71,143,68,4,225,41,116,120,241,36,250,74,95,135,157,0,252,80,231, + 119,42,158,14,83,133,73,138,48,244,115,142,165,16,34,192,174,10,4,21, + 116,222,110,142,61,123,40,156,117,61,63,38,25,165,168,216,32,13,7,36, + 137,36,24,244,139,254,138,197,39,200,27,20,103,93,64,82,55,41,201,170, + 14,198,226,0,209,47,145,70,137,64,188,77,125,48,187,212,43,90,249,88, + 61,77,88,86,45,45,28,144,64,161,218,204,122,102,124,16,147,57,178,81, + 214,110,204,31,136,137,146,129,121,103,173,242,48,219,107,203,0,114,82,155, + 38,187,252,56,195,228,196,154,247,228,72,70,90,149,181,59,165,240,112,60, + 217,230,204,241,198,170,179,220,213,68,8,119,194,172,51,223,180,128,176,32, + 57,13,125,17,20,122,18,164,38,248,32,240,199,247,253,14,101,197,174,39, + 76,204,115,195,245,240,200,35,146,231,94,124,1,94,101,92,241,22,71,131, + 76,201,109,43,17,232,60,130,128,79,93,119,19,255,231,239,252,21,39,78, + 109,229,212,162,36,8,2,130,32,88,51,219,14,38,149,231,12,51,204,112, + 230,226,73,251,159,172,251,13,194,129,251,67,62,252,161,131,220,250,79,122, + 177,148,83,93,236,1,46,124,190,195,59,126,250,124,46,190,116,142,187,239, + 108,243,224,131,223,64,147,154,79,57,140,37,68,159,105,215,29,64,205,210, + 139,117,213,234,65,58,2,66,226,193,164,178,59,114,100,60,12,19,32,150, + 9,50,214,234,46,239,89,104,248,39,233,15,2,250,131,96,114,126,90,126, + 252,162,219,126,201,41,121,26,120,161,139,26,154,136,116,117,108,18,65,43, + 184,50,137,85,6,58,52,89,25,40,42,131,181,238,190,106,93,47,224,94, + 93,97,208,193,92,1,188,108,209,55,51,213,39,199,189,59,197,130,254,140, + 185,249,196,79,53,185,77,239,59,87,156,249,235,39,62,231,52,25,62,6, + 114,5,167,34,73,156,84,139,98,239,233,177,66,11,71,83,80,1,158,99, + 98,135,81,166,176,52,42,190,73,183,159,169,189,56,33,150,73,41,124,92, + 106,190,173,186,32,90,60,114,120,192,237,251,191,200,230,115,234,108,221,176, + 5,69,152,53,228,6,131,173,8,230,8,162,99,40,230,129,57,20,46,130, + 19,124,250,51,247,242,231,127,116,19,150,231,21,45,188,114,146,131,188,38, + 50,157,133,45,103,152,225,25,130,239,153,224,116,19,98,57,81,239,166,183, + 235,233,206,50,25,177,178,26,243,254,63,92,226,51,159,213,4,82,206,183, + 153,162,197,222,61,146,93,59,78,241,230,31,87,188,249,199,245,251,31,60, + 112,61,126,216,71,113,146,177,227,47,4,42,160,54,103,143,181,43,50,244, + 219,40,229,17,165,218,210,238,71,249,34,94,1,163,154,189,78,55,230,109, + 84,33,73,18,18,60,84,48,212,55,217,199,72,218,36,129,164,106,14,241, + 204,81,113,43,171,55,149,246,64,30,206,74,1,178,115,18,29,204,209,41, + 204,118,27,203,232,98,122,227,16,94,188,105,5,37,66,140,213,148,126,156, + 185,0,233,33,22,98,68,79,96,53,179,130,112,209,37,104,244,10,146,11, + 26,227,48,165,213,108,211,88,114,198,239,101,60,63,46,176,187,136,10,244, + 164,139,213,24,130,179,128,85,75,233,14,35,26,118,136,232,119,105,216,93, + 60,51,51,173,24,76,150,31,136,14,61,243,20,168,57,170,201,94,0,250, + 91,23,138,167,151,252,81,225,200,92,15,185,138,243,147,20,55,251,91,196, + 166,143,109,141,48,68,23,219,142,73,83,61,193,33,87,67,245,185,20,132, + 139,31,141,176,170,42,115,63,118,40,215,185,13,71,203,196,50,33,74,210, + 210,68,128,10,8,87,171,55,225,162,148,139,82,199,185,239,91,85,78,45, + 13,152,219,104,35,8,136,34,11,138,60,92,7,216,150,133,43,59,8,218, + 217,115,109,110,248,252,126,254,238,83,16,13,187,172,172,134,164,170,134,138, + 36,3,127,53,115,210,26,24,70,244,93,77,158,152,97,134,25,158,158,248, + 158,9,46,95,184,132,112,139,43,94,41,135,40,21,96,24,6,150,189,145, + 107,62,234,243,133,207,105,123,124,78,108,185,130,219,187,71,178,117,215,28, + 175,124,237,139,185,236,85,231,209,112,61,246,223,124,132,3,15,6,69,30, + 229,241,159,139,126,125,163,58,57,63,204,118,234,217,189,201,174,242,65,214, + 161,44,14,82,6,177,137,145,180,139,70,194,163,176,189,134,220,242,17,55, + 57,242,2,105,128,36,220,136,185,97,252,216,108,37,184,145,0,79,47,142, + 245,145,118,145,10,154,197,253,28,85,67,19,114,30,166,204,31,23,56,77, + 23,147,28,19,97,202,44,20,153,19,170,148,154,16,243,130,241,162,243,73, + 166,30,155,56,69,120,85,110,50,11,162,27,245,55,112,142,55,206,167,1, + 176,78,7,148,74,176,202,198,202,88,249,194,120,132,78,238,68,45,27,141, + 6,157,252,167,54,221,52,57,59,173,236,111,168,130,49,177,150,13,66,211, + 141,149,151,87,187,12,250,61,148,177,137,13,27,244,111,75,49,158,78,161, + 205,38,110,230,192,29,99,113,101,129,107,63,252,187,156,92,73,152,159,223, + 64,42,59,116,71,125,60,71,135,187,131,32,42,156,191,51,204,48,195,153, + 141,239,75,193,1,217,32,203,181,29,64,190,113,96,196,223,125,246,16,43, + 157,197,98,91,78,114,27,90,22,59,182,167,92,242,194,10,63,245,174,42, + 47,184,168,202,63,221,30,113,235,77,11,107,134,155,174,133,187,102,75,154, + 234,109,253,81,156,41,55,136,18,65,28,229,77,129,245,130,149,202,62,42, + 24,22,205,120,109,119,242,227,23,131,61,75,228,150,70,178,152,155,134,63, + 212,228,54,50,177,106,41,42,91,180,101,215,2,55,196,116,198,139,179,80, + 153,201,166,84,119,102,208,41,242,100,163,84,48,74,5,85,209,34,245,7, + 164,254,58,83,3,214,129,234,165,25,129,42,68,5,148,8,49,107,250,243, + 52,35,139,230,72,19,129,213,108,235,253,27,10,68,71,135,44,69,135,81, + 186,182,131,138,185,44,25,89,135,245,121,139,46,114,160,95,19,150,138,220, + 141,116,50,36,27,196,167,38,6,171,150,199,232,192,120,52,141,86,66,227, + 169,7,158,179,126,183,24,208,33,228,216,242,176,19,189,223,60,215,186,30, + 41,174,172,68,28,61,162,141,54,245,90,5,175,210,192,113,214,54,89,246, + 227,124,31,65,65,118,95,63,112,140,191,248,211,135,233,7,62,203,203,203, + 88,150,201,112,216,103,48,232,99,136,110,214,0,92,206,114,113,51,204,112, + 134,227,251,82,112,134,97,150,134,88,234,58,50,33,60,78,45,7,188,255, + 15,151,248,250,93,199,16,98,99,81,227,6,154,220,230,231,93,126,224,69, + 6,151,95,225,114,209,243,42,60,252,200,73,174,251,196,45,60,240,237,99, + 122,95,156,100,172,186,166,59,237,175,85,119,235,41,56,199,82,37,5,55, + 137,94,216,199,72,58,200,193,42,22,39,49,18,125,171,25,125,106,44,140, + 77,37,145,212,106,174,212,222,138,145,57,145,67,51,71,99,211,133,168,128, + 72,75,173,165,212,164,242,17,61,67,59,35,101,139,170,161,168,26,138,145, + 234,34,170,18,81,29,231,164,204,44,183,102,172,83,148,45,154,6,129,163, + 80,65,132,18,83,223,77,110,222,201,72,52,175,185,43,147,218,180,74,52, + 34,125,1,82,86,151,185,225,197,51,13,6,189,33,173,102,196,252,156,71, + 167,123,156,38,135,104,114,8,128,90,109,181,152,183,53,88,237,0,0,32, + 0,73,68,65,84,19,7,208,50,59,69,253,160,33,186,133,146,83,5,57, + 106,162,74,130,218,212,84,128,236,226,132,113,158,52,137,204,41,5,55,69, + 114,66,23,126,139,116,25,35,57,135,32,140,136,163,90,150,111,115,75,93, + 78,2,244,5,142,75,16,91,5,201,125,248,218,207,240,247,159,184,13,219, + 217,64,42,7,116,135,43,88,150,157,77,58,24,183,148,155,97,134,25,206, + 92,60,97,151,168,74,5,152,86,149,40,74,138,208,164,223,219,60,65,110, + 0,243,243,46,151,254,80,141,31,184,216,227,101,47,117,48,77,147,207,127, + 110,137,253,55,67,24,25,64,183,20,162,252,238,66,149,73,146,100,38,147, + 105,248,244,71,249,30,45,230,204,211,44,92,249,216,155,180,135,80,221,113, + 247,125,178,217,105,85,169,235,221,106,41,42,208,138,75,117,12,212,48,107, + 193,53,69,56,170,173,73,13,32,105,130,17,37,52,195,33,152,221,34,15, + 55,77,56,57,185,61,22,60,99,253,48,31,237,169,16,167,217,197,170,165, + 197,49,70,169,192,52,123,19,199,176,190,195,225,230,54,28,214,187,238,248, + 236,110,141,63,95,147,67,197,172,57,149,60,138,103,142,72,124,77,110,229, + 246,102,229,161,167,0,65,60,135,93,21,196,209,164,218,242,156,49,9,7, + 88,88,142,44,41,184,144,233,11,29,207,169,50,28,244,138,215,228,101,41, + 185,138,203,29,183,147,97,202,32,107,251,6,224,243,7,191,127,51,131,81, + 147,147,167,198,191,153,254,32,37,146,131,172,141,219,44,7,55,195,12,103, + 50,190,239,16,101,25,66,120,220,255,96,196,71,175,254,54,171,221,164,8, + 73,230,104,53,135,212,234,62,151,188,120,158,139,47,217,74,42,59,236,191, + 253,65,110,190,9,22,87,29,42,78,154,169,183,199,194,218,16,101,142,81, + 210,156,10,81,174,13,89,185,36,116,164,137,160,77,165,30,21,61,22,45, + 117,180,104,191,149,215,187,149,71,203,40,165,11,185,173,90,90,228,187,68, + 54,214,199,138,219,58,231,230,165,5,201,41,49,73,206,57,145,244,115,227, + 200,112,28,170,203,213,92,25,229,231,215,67,224,140,95,47,212,36,225,169, + 114,238,206,236,50,74,5,13,187,171,235,229,0,81,155,36,29,147,101,172, + 158,86,163,121,161,183,16,221,98,74,193,160,55,132,180,93,52,112,78,147, + 195,52,220,17,150,58,138,165,142,82,99,129,81,216,102,20,182,73,252,85, + 250,131,160,168,39,44,212,155,60,4,132,184,118,135,209,58,46,197,177,65, + 104,140,177,130,91,159,208,29,67,59,76,7,137,254,237,8,225,102,102,147, + 169,239,42,78,200,195,212,57,92,59,97,113,101,129,247,255,249,23,168,85, + 28,146,81,202,176,151,144,202,14,182,244,38,106,228,102,152,97,134,51,19, + 223,183,130,43,155,77,162,40,225,154,143,140,56,182,32,10,229,38,85,151, + 52,29,22,161,201,221,123,28,158,245,44,147,93,59,44,30,61,89,231,250, + 79,37,60,244,192,18,126,184,74,16,158,250,158,212,91,154,186,168,212,69, + 164,221,66,193,233,16,229,99,143,77,137,6,67,58,253,96,205,20,236,130, + 216,178,233,0,19,37,1,165,90,55,213,45,245,209,244,31,223,87,217,176, + 53,1,138,154,44,66,135,163,180,61,17,70,204,9,72,244,140,53,29,76, + 166,145,147,155,217,25,191,78,117,140,113,9,1,154,64,165,108,234,178,133, + 154,44,200,179,92,55,215,217,154,229,189,6,99,98,77,250,250,156,4,109, + 90,205,201,162,243,238,96,137,52,57,76,171,25,210,233,132,58,180,139,206, + 99,86,141,19,244,7,65,49,59,207,74,86,105,183,117,110,213,95,167,252, + 2,38,21,92,142,73,5,55,73,114,163,208,38,182,19,86,58,217,119,101, + 232,139,169,92,193,57,206,166,172,9,115,177,55,198,23,71,1,65,60,0, + 92,110,252,155,107,248,214,183,181,11,55,8,199,223,199,116,249,192,12,51, + 204,112,230,225,9,9,81,74,41,81,42,224,254,7,35,110,189,241,78,250, + 189,109,19,97,201,106,69,47,16,59,182,167,188,242,138,61,236,218,109,176, + 240,104,194,109,95,124,152,91,111,90,224,200,209,195,40,78,102,246,238,181, + 205,151,53,78,63,245,218,48,2,132,17,232,28,92,73,193,125,183,24,135, + 36,33,242,245,130,94,52,80,22,107,243,97,6,157,177,211,209,43,253,235, + 165,4,82,144,118,116,88,82,209,43,136,106,186,196,108,148,182,169,26,243, + 58,31,151,207,147,27,154,244,107,190,46,238,206,207,45,210,234,75,245,244, + 113,60,163,130,112,51,53,40,66,218,52,17,93,72,153,99,16,78,90,252, + 173,102,27,171,217,30,19,103,109,45,201,204,157,28,43,156,188,134,206,106, + 140,85,213,176,119,108,205,123,154,27,77,164,88,162,222,90,160,211,9,241, + 187,250,59,27,70,99,5,153,135,43,231,231,135,69,61,155,29,174,211,161, + 229,59,98,237,223,223,142,215,94,192,228,229,2,113,148,252,79,246,222,237, + 87,146,44,59,239,251,237,29,17,153,145,247,204,58,117,233,233,238,186,117, + 215,12,57,156,110,78,79,243,98,137,28,206,244,52,41,146,18,37,146,34, + 37,145,182,72,75,150,0,233,65,176,37,216,130,32,90,182,0,1,126,16, + 252,7,8,48,12,195,146,169,7,191,248,129,52,44,89,150,68,145,18,71, + 20,68,114,52,173,225,112,46,236,238,170,234,170,169,174,203,169,58,121,143, + 200,140,216,123,251,97,199,142,75,102,156,83,183,30,177,10,136,15,56,168, + 115,50,35,227,146,153,181,191,88,107,125,235,91,185,47,229,62,220,99,183, + 185,123,212,227,151,255,215,255,157,229,230,101,140,90,160,213,146,91,135,89, + 250,121,171,114,177,76,67,114,13,26,60,127,120,234,54,1,251,251,22,207, + 235,241,203,255,104,205,239,127,237,187,241,252,175,84,182,237,118,79,51,153, + 132,188,120,97,192,171,175,218,8,225,203,95,213,252,218,191,132,27,31,174, + 216,108,101,30,185,153,189,200,173,184,115,183,207,197,249,99,126,55,243,149, + 44,171,40,93,4,39,221,34,31,2,29,6,37,229,251,196,179,141,215,66, + 207,56,221,183,45,0,58,189,134,81,87,51,99,226,107,4,55,190,129,154, + 29,21,6,202,195,163,188,238,230,212,146,102,4,98,84,16,159,48,97,30, + 201,117,100,27,113,173,154,118,211,89,68,233,162,173,65,48,99,16,20,17, + 147,251,93,244,20,195,175,180,233,149,218,0,116,203,71,206,45,249,27,17, + 219,159,120,75,212,142,137,91,134,193,59,246,60,36,83,134,235,141,109,8, + 135,220,210,203,172,60,204,202,99,62,181,143,205,217,86,83,153,192,188,149, + 50,24,62,200,211,165,174,225,123,116,106,198,232,212,12,223,255,106,254,3, + 144,28,190,135,88,47,152,223,87,244,71,55,152,180,191,78,143,27,244,228, + 2,147,126,139,249,226,48,143,226,236,231,119,46,251,220,12,206,157,198,193, + 13,41,13,73,241,124,43,22,170,138,76,170,16,98,70,146,249,96,26,189, + 196,232,25,198,196,153,123,141,141,230,138,73,3,99,118,83,148,16,18,182, + 215,192,148,47,254,214,53,110,92,125,143,148,14,139,121,74,175,107,72,211, + 132,141,78,106,157,78,26,52,104,240,124,224,41,106,112,213,40,224,75,239, + 44,249,141,95,187,134,102,206,122,19,236,109,223,235,71,156,57,99,137,225, + 198,7,154,175,252,246,117,110,92,189,197,106,121,132,49,113,174,126,123,56, + 138,109,210,181,243,187,220,87,81,218,69,212,161,16,153,28,7,103,75,213, + 234,20,146,118,231,174,143,55,3,53,42,34,160,82,182,236,97,166,31,186, + 38,77,154,6,182,231,170,28,73,57,225,135,232,169,138,207,100,126,46,89, + 36,88,65,71,19,122,134,208,219,95,128,93,164,103,119,94,236,155,241,150, + 201,72,214,90,125,213,158,127,141,71,38,216,1,171,81,188,134,240,30,163, + 201,117,123,204,246,125,166,211,13,232,41,61,105,93,95,212,230,129,173,203, + 29,213,29,207,126,110,247,231,23,173,64,8,88,166,86,73,153,110,119,107, + 144,251,117,184,221,8,46,108,183,118,182,56,41,205,61,37,222,72,32,230, + 206,253,27,252,203,127,254,69,214,107,145,185,168,68,164,169,253,108,202,169, + 202,6,13,26,60,95,120,234,20,165,27,104,250,229,175,106,174,189,119,136, + 50,51,164,180,245,22,39,50,113,181,183,243,23,237,20,129,235,87,223,231, + 119,223,185,197,7,183,222,39,206,210,85,143,222,220,125,252,118,243,184,8, + 211,220,52,129,227,32,180,101,38,231,179,120,112,224,158,169,166,34,243,9, + 1,89,237,205,107,173,48,155,76,88,178,131,178,176,196,100,243,239,100,141, + 208,101,145,236,136,60,74,245,178,57,91,134,180,246,162,171,226,24,147,253, + 107,49,225,158,130,82,89,37,127,78,100,34,83,109,78,90,9,68,199,167, + 123,119,225,245,13,66,204,42,68,215,245,102,244,124,97,39,17,68,43,136, + 86,136,213,13,196,122,65,127,116,195,138,117,82,91,215,92,109,181,109,181, + 168,69,8,180,57,24,90,130,116,36,231,34,184,135,33,217,153,69,103,85, + 184,213,253,87,111,154,58,84,69,74,97,254,247,23,127,243,155,220,250,86, + 117,127,229,105,19,74,25,226,120,155,217,121,53,237,3,13,26,60,15,120, + 42,130,115,74,202,251,15,18,126,237,159,28,50,93,181,74,207,173,80,102, + 198,169,145,79,175,31,113,249,21,123,71,254,222,123,138,119,126,251,58,135, + 223,18,60,120,80,93,172,247,211,147,117,56,57,202,219,82,191,248,12,186, + 181,15,219,115,205,166,86,87,234,110,15,65,37,66,202,224,154,187,243,191, + 231,251,111,175,152,75,70,139,42,249,58,215,17,32,31,127,179,119,142,45, + 31,57,79,224,193,62,177,158,116,188,220,183,18,242,72,174,44,221,215,195, + 76,37,154,69,135,46,13,219,241,166,249,196,3,176,68,215,245,236,132,130, + 72,131,249,230,13,110,46,188,252,189,50,230,26,152,169,157,180,160,174,161, + 196,93,146,233,187,244,184,193,106,171,145,92,207,247,181,94,187,247,46,198, + 213,214,180,90,228,105,202,125,180,169,214,224,236,53,237,70,112,237,86,241, + 153,152,157,239,137,217,35,182,184,244,111,204,215,190,126,155,247,223,255,128, + 40,222,48,95,174,89,45,22,249,214,77,20,215,160,193,243,137,167,168,193, + 121,72,41,73,146,128,27,223,74,249,237,127,183,202,35,55,251,124,241,251, + 133,139,118,209,246,229,117,166,243,21,95,126,39,224,254,84,229,211,184,205, + 9,2,146,125,212,147,160,83,81,182,168,151,215,31,151,162,156,140,59,54, + 61,89,110,230,206,224,183,239,87,34,55,175,181,178,205,220,25,103,156,148, + 158,84,171,234,226,43,183,105,109,52,39,122,106,47,130,243,70,41,60,168, + 146,108,221,107,161,32,213,242,185,136,185,132,35,147,171,37,147,73,177,56, + 151,211,171,152,25,114,62,174,164,62,119,5,40,70,204,48,98,102,39,32, + 136,234,64,214,11,139,187,232,185,41,89,151,77,161,147,88,162,91,47,24, + 182,63,172,40,44,29,186,93,247,181,43,72,71,122,3,210,52,165,95,203, + 113,187,223,143,250,239,203,110,4,103,74,17,218,62,220,115,214,175,50,78, + 150,124,241,215,223,207,27,206,93,170,178,110,102,160,148,39,183,112,52,104, + 208,224,217,192,83,155,45,3,252,250,191,74,120,247,234,245,236,241,170,130, + 111,50,177,11,204,96,98,163,181,247,191,185,101,122,63,97,181,172,214,118, + 92,13,78,228,83,4,30,15,187,42,202,252,223,18,124,30,32,211,41,235, + 76,248,32,245,148,228,238,215,242,244,100,171,115,12,11,122,243,42,49,156, + 116,30,97,169,134,183,77,33,174,169,143,77,169,218,122,245,84,254,51,244, + 98,212,178,230,60,98,131,78,50,17,74,41,82,52,34,134,72,236,69,111, + 98,6,242,221,146,71,102,111,135,32,59,133,9,180,195,112,179,111,176,156, + 247,232,57,21,169,115,92,249,3,185,167,214,52,102,202,106,177,180,145,112, + 120,143,233,106,67,127,116,195,154,85,99,199,221,152,74,148,91,212,224,180, + 178,17,211,178,150,199,31,237,205,47,71,112,187,176,83,190,173,224,200,162, + 220,0,110,9,243,139,191,117,141,249,253,78,94,255,83,73,113,50,101,162, + 107,20,149,13,26,60,31,120,170,20,165,49,49,139,165,230,87,126,101,137, + 49,225,30,185,13,59,71,244,187,55,232,15,134,44,166,45,174,94,245,248, + 224,214,31,176,216,110,49,122,134,62,182,54,115,18,234,239,200,141,14,43, + 42,202,58,71,147,148,83,0,244,74,25,194,101,235,18,80,164,39,17,118, + 58,183,188,85,144,131,223,245,108,3,119,232,154,184,235,35,8,87,119,3, + 114,21,227,46,220,84,0,181,237,21,106,204,82,83,183,231,213,123,123,18, + 22,39,237,106,125,142,232,210,181,202,35,60,71,116,98,46,209,83,32,218, + 88,239,74,247,218,141,189,158,135,193,57,158,84,92,79,122,26,111,251,173, + 202,99,158,152,91,149,105,255,1,126,255,1,221,193,3,210,214,45,86,139, + 37,163,201,117,230,247,21,186,166,247,173,93,18,185,4,226,26,173,246,4, + 223,247,115,162,243,91,229,215,212,191,223,39,213,224,4,142,192,235,196,75, + 206,186,171,236,255,57,101,54,255,144,127,243,175,223,103,179,57,34,138,55, + 37,193,137,51,19,111,20,149,13,26,60,79,120,42,130,83,233,154,127,251, + 91,91,126,247,223,253,30,82,246,16,34,174,164,38,131,174,160,119,238,133, + 92,61,121,239,94,143,213,161,98,181,60,202,23,163,106,122,50,220,171,157, + 60,42,242,8,206,65,118,107,93,45,202,152,140,59,244,183,215,152,69,245, + 5,58,81,106,201,115,206,33,185,83,201,241,165,176,19,97,238,219,72,200, + 107,173,80,153,177,116,158,22,244,230,121,125,108,47,253,25,27,196,206,148, + 112,27,189,73,188,251,176,218,22,215,110,134,26,185,77,89,220,109,85,234, + 109,46,138,51,199,89,125,101,200,167,147,99,5,49,142,232,92,125,110,209, + 139,144,219,59,12,130,13,190,57,202,167,152,187,116,174,41,77,19,31,101, + 81,177,186,251,77,123,93,34,102,189,214,108,182,1,229,155,149,109,214,100, + 45,61,235,78,242,112,21,101,59,175,193,69,234,248,235,57,94,188,52,161, + 154,238,222,16,39,41,191,241,47,63,216,219,178,172,168,4,26,146,107,208, + 224,57,193,19,19,156,82,138,86,251,12,239,189,167,72,210,139,104,189,194, + 151,175,236,69,113,167,92,189,197,220,225,131,59,211,188,239,77,155,25,130, + 118,126,167,45,136,179,70,111,216,239,89,170,135,159,185,87,104,29,218,89, + 111,105,202,86,91,210,216,166,34,115,181,184,157,239,207,91,207,178,217,96, + 54,61,233,20,148,29,115,141,40,94,219,190,183,206,128,96,150,213,227,178, + 211,49,98,67,56,15,65,12,173,115,72,71,163,235,116,40,157,130,24,212, + 141,145,37,157,80,32,183,105,222,46,32,7,26,243,224,136,120,24,231,162, + 143,188,45,64,13,241,60,143,120,24,239,165,28,93,122,114,23,113,203,160, + 175,107,186,119,19,228,60,193,12,53,222,161,70,183,124,70,183,19,248,242, + 40,111,62,119,174,39,113,48,179,51,229,174,153,202,156,57,87,183,75,206, + 189,159,171,46,187,210,166,150,23,189,136,213,43,119,242,30,61,0,35,79, + 161,79,73,91,159,28,89,242,92,7,239,210,21,35,59,96,53,90,177,74, + 174,218,89,122,144,167,39,187,93,137,33,206,250,220,138,207,16,108,63,156, + 74,19,132,140,75,78,38,238,181,237,218,97,172,29,111,131,144,163,29,145, + 73,118,35,146,213,218,196,94,36,231,102,196,129,37,207,54,112,155,40,254, + 109,222,253,131,23,216,102,81,28,176,23,197,121,158,104,148,148,13,26,60, + 7,120,98,130,243,60,143,56,222,242,165,223,57,202,93,75,92,139,128,35, + 185,241,192,182,5,220,187,215,179,209,219,157,219,37,5,93,1,241,72,53, + 150,242,54,197,66,213,242,68,222,7,87,70,203,127,132,187,236,204,57,164, + 213,105,49,114,130,206,200,166,200,244,234,76,101,211,60,18,234,152,61,181, + 100,25,70,196,249,243,157,77,177,8,86,68,34,71,134,206,38,219,135,55, + 103,232,85,207,191,156,82,220,21,151,232,41,196,170,120,62,244,204,30,217, + 234,150,127,172,168,197,189,38,244,12,243,110,70,84,195,108,186,119,198,29, + 193,81,192,92,133,136,158,202,77,161,135,94,140,190,99,201,80,100,239,219, + 114,179,66,244,84,254,222,184,148,171,88,204,138,30,66,200,6,197,22,88, + 175,53,97,203,171,16,152,148,113,222,38,144,191,172,83,132,208,34,111,193, + 168,255,174,24,61,171,105,19,216,143,224,246,51,4,238,111,75,102,135,135, + 43,126,239,43,95,201,35,73,23,181,185,40,206,185,155,52,70,204,13,26, + 60,251,120,170,20,229,239,127,99,203,255,247,207,126,119,47,106,115,232,245, + 109,132,180,92,204,89,46,230,60,152,125,11,163,247,239,192,31,79,69,73, + 230,64,1,66,68,36,89,173,205,147,251,163,113,138,41,207,199,19,168,119, + 170,3,98,204,42,53,149,169,215,110,140,76,25,66,111,178,49,53,15,111, + 103,200,251,216,202,34,147,216,84,254,246,187,94,30,181,121,163,52,39,8, + 181,242,235,5,42,25,145,149,27,187,235,122,224,114,98,139,13,230,193,81, + 78,184,70,108,10,177,76,36,25,174,55,118,90,120,41,90,244,147,35,60, + 207,171,144,174,232,41,230,42,164,115,58,35,255,41,120,243,121,238,171,233, + 245,210,188,183,110,72,11,115,59,75,63,155,41,66,204,88,45,150,152,222, + 189,60,125,221,237,74,226,173,130,220,153,166,128,35,185,144,20,161,15,247, + 222,215,114,61,46,232,150,172,204,118,34,56,135,199,75,121,111,184,123,180, + 224,218,187,31,144,38,9,105,154,230,81,220,170,212,87,217,140,211,105,208, + 224,249,192,83,17,220,141,15,52,15,30,216,168,205,69,110,90,219,118,129, + 206,176,122,215,126,227,234,45,150,171,77,237,93,246,195,81,237,131,138,55, + 182,102,150,168,45,125,51,69,235,16,33,227,92,160,224,80,30,128,57,233, + 188,155,255,46,245,20,244,17,61,127,138,122,16,177,93,223,173,77,125,129, + 141,74,226,150,217,87,33,102,168,237,61,3,120,48,221,171,153,129,77,53, + 150,15,149,71,61,122,99,35,161,78,27,121,85,239,145,91,221,190,0,136, + 4,242,134,220,237,79,207,143,85,33,191,142,134,78,102,195,101,218,121,4, + 87,70,93,127,159,139,50,59,155,208,10,98,74,251,116,169,73,215,62,225, + 141,82,86,233,135,172,175,126,128,158,87,175,33,12,236,73,22,81,124,70, + 188,58,83,224,102,159,95,154,166,196,248,24,121,58,59,169,178,250,178,56, + 231,100,93,236,127,55,130,219,207,10,60,42,209,197,92,189,126,149,56,46, + 246,21,199,49,158,92,231,246,93,205,56,157,6,13,158,15,60,54,219,148, + 199,228,188,247,158,194,152,108,90,246,78,20,215,13,10,209,67,32,174,17, + 109,124,132,56,119,236,126,79,190,211,222,119,147,7,104,135,182,46,229,210, + 91,46,173,100,76,184,167,176,75,197,21,124,115,63,119,48,241,178,90,92, + 127,114,135,86,103,109,251,188,220,185,76,237,120,27,151,138,171,179,194,122, + 24,30,102,225,101,50,190,46,183,31,44,79,103,141,230,37,1,75,157,213, + 87,25,233,162,135,120,191,184,86,239,176,248,124,196,76,35,102,96,166,251, + 174,46,233,162,151,79,255,206,183,159,75,59,195,174,77,30,85,238,66,62, + 208,251,215,214,209,68,237,34,18,27,110,125,250,237,30,114,52,163,211,87, + 249,205,131,179,112,235,118,229,137,182,108,123,189,112,162,154,70,172,67,93, + 4,87,86,82,150,81,252,189,123,14,118,251,77,124,200,221,27,31,226,201, + 126,30,81,170,36,205,211,148,14,141,216,164,65,131,103,27,79,20,193,105, + 173,217,110,83,190,244,59,71,32,70,57,185,185,169,1,238,78,221,225,253, + 247,91,108,150,81,126,231,110,204,227,13,50,181,216,95,220,54,177,98,153, + 73,29,203,18,115,33,98,130,196,47,169,40,55,204,214,87,241,205,2,169, + 167,140,250,119,8,125,129,52,211,66,92,2,123,19,3,106,133,36,14,187, + 195,69,75,48,34,182,68,227,94,191,27,141,101,81,95,212,142,115,98,72, + 215,37,119,145,171,197,246,123,181,180,35,23,129,101,13,222,239,76,243,227, + 236,9,81,166,224,221,84,112,119,63,149,230,77,231,196,183,138,237,247,234, + 117,225,6,161,55,121,132,153,71,176,153,147,202,113,245,61,53,243,237,184, + 158,35,141,152,11,124,57,203,167,19,56,212,217,168,249,60,192,231,1,90, + 45,152,111,178,207,177,148,162,180,53,184,250,84,179,168,73,79,231,207,149, + 94,83,21,154,212,17,172,29,172,122,245,131,67,190,244,149,108,80,109,146, + 176,77,53,94,224,179,90,139,138,216,164,65,131,6,207,54,30,155,224,164, + 148,72,41,89,44,53,95,250,237,119,243,212,145,148,61,162,173,170,180,9, + 0,124,112,221,70,37,139,109,209,35,86,87,115,123,116,47,74,139,222,200, + 46,48,253,76,234,184,43,80,216,29,151,115,208,201,22,121,125,132,94,221, + 66,154,41,189,238,150,96,56,69,142,102,172,205,44,151,199,11,125,244,208, + 57,108,96,137,74,110,211,218,180,158,94,216,183,86,39,94,165,135,77,204, + 172,132,95,41,101,197,30,153,160,196,17,136,208,155,106,132,84,174,219,213, + 165,33,175,154,234,227,110,251,236,53,230,80,228,231,87,22,167,212,157,115, + 78,90,29,83,12,84,237,84,73,101,151,244,133,182,159,101,121,202,184,107, + 0,55,67,83,153,159,103,111,128,54,59,70,216,246,245,115,93,68,252,110, + 226,122,158,162,124,8,220,52,129,135,165,191,143,183,130,171,206,141,139,54, + 75,142,110,219,180,169,148,49,42,77,42,77,223,14,74,37,77,211,119,131, + 6,207,48,158,184,6,183,136,35,190,241,238,34,175,191,89,100,178,234,164, + 80,191,57,155,46,128,40,202,22,241,71,116,166,168,162,198,77,222,171,247, + 109,60,14,177,184,141,199,17,173,209,17,189,238,150,36,176,11,241,90,11, + 134,131,29,139,170,76,89,88,168,39,139,250,21,60,60,5,89,61,176,125, + 93,173,212,191,83,95,199,41,111,171,19,175,150,220,220,121,232,169,183,23, + 197,229,175,153,238,247,236,9,19,162,174,90,149,231,110,36,54,141,122,16, + 137,138,146,179,174,254,184,218,6,181,239,65,121,240,170,152,187,125,216,153, + 112,110,216,105,93,4,55,148,251,68,81,142,224,76,141,114,181,78,100,34, + 196,241,169,207,71,155,86,97,83,238,179,165,96,179,180,255,61,66,138,235, + 79,83,69,188,180,17,166,231,61,154,41,116,131,6,13,254,112,240,196,4, + 247,149,255,224,209,9,83,180,94,97,204,125,180,94,33,196,139,104,189,98, + 216,41,86,212,15,174,91,107,174,116,45,16,34,202,70,227,60,158,106,210, + 162,250,154,23,130,155,36,170,136,10,135,76,105,243,94,94,231,17,157,36, + 19,153,20,42,202,49,55,25,159,186,70,144,244,236,168,23,249,1,70,204, + 232,138,17,243,133,135,119,234,62,109,125,29,61,205,210,136,98,148,187,138, + 196,74,88,245,100,71,87,166,119,235,133,68,125,169,104,29,16,38,68,29, + 182,16,215,157,244,190,80,83,202,65,150,162,189,9,242,170,206,231,199,205, + 38,86,109,58,194,214,198,188,155,10,25,236,167,21,197,210,228,164,226,218, + 17,188,155,213,237,220,235,242,227,102,196,23,43,65,232,25,162,44,226,242, + 254,227,40,223,182,172,186,28,125,99,153,167,75,167,221,8,194,169,245,213, + 236,104,210,181,178,189,115,115,73,103,163,16,115,73,186,232,229,231,19,181, + 99,204,92,51,190,221,33,56,124,128,156,204,108,143,223,120,75,223,127,223, + 146,148,137,73,218,173,204,201,36,4,70,140,250,134,246,210,250,85,250,60, + 96,170,60,186,233,97,37,130,179,41,202,13,229,122,108,89,100,226,112,92, + 250,187,92,135,171,18,221,190,120,5,166,92,191,14,126,119,206,38,213,196, + 248,108,87,51,60,185,102,181,22,132,253,1,230,152,201,228,13,26,52,120, + 118,240,196,4,119,127,241,240,109,192,222,133,47,182,219,138,203,127,89,221, + 232,112,178,200,196,53,131,23,219,204,87,29,54,235,23,243,191,23,139,37, + 93,111,148,215,1,171,168,238,59,9,86,4,195,41,194,140,108,228,38,166, + 12,199,15,32,218,216,89,109,89,157,203,76,139,183,103,87,104,178,167,158, + 140,108,52,97,68,188,103,211,149,71,99,165,90,92,30,85,237,68,112,222, + 116,142,78,188,99,27,187,203,48,241,214,166,32,239,58,195,101,189,247,90, + 177,180,125,114,238,252,67,207,100,222,149,247,107,143,81,22,169,228,143,245, + 82,75,166,199,216,143,57,132,158,193,28,101,110,45,217,181,150,167,35,8, + 17,211,233,28,47,154,25,120,246,216,126,22,241,213,227,248,232,255,164,20, + 229,195,83,224,238,6,202,222,108,104,174,18,109,13,155,88,229,170,78,135, + 245,34,205,135,161,54,104,208,224,217,197,19,19,220,244,174,202,83,142,101, + 8,17,87,234,95,229,102,94,135,164,206,85,255,196,5,200,222,181,151,107, + 40,195,94,68,175,159,9,32,214,51,68,87,229,38,202,251,136,145,230,22, + 65,104,21,125,93,47,115,200,207,92,241,61,111,142,55,74,43,54,89,114, + 155,34,244,3,210,163,225,222,222,202,147,2,92,164,148,174,85,165,198,5, + 84,210,138,21,226,153,86,133,36,109,37,114,162,211,215,181,173,211,149,34, + 56,49,203,4,43,187,111,209,7,62,105,220,129,86,141,57,117,46,112,33, + 39,108,247,238,232,175,38,152,119,133,221,111,137,116,117,226,65,108,44,145, + 117,116,230,49,82,24,72,235,235,85,133,166,156,39,200,15,170,19,205,245, + 180,32,90,135,242,112,213,40,182,239,221,38,183,22,43,46,170,252,249,105, + 127,76,28,77,107,82,147,199,71,255,187,42,202,39,203,20,20,199,80,155, + 234,254,234,38,11,52,74,202,6,13,158,93,60,49,193,221,184,126,19,68, + 88,114,152,216,111,21,112,216,117,47,121,124,191,201,221,121,96,22,105,38, + 249,31,14,18,204,122,63,26,169,243,162,28,12,31,88,181,228,248,54,193, + 108,138,250,208,179,94,144,102,78,50,73,172,12,126,46,109,74,241,134,172, + 29,108,10,133,186,209,140,100,125,61,110,186,243,239,14,196,140,60,234,115, + 209,149,48,97,78,124,142,16,79,138,228,210,119,52,92,203,246,183,44,215, + 7,45,33,138,165,129,216,30,43,119,95,137,108,74,213,213,231,28,169,57, + 152,67,81,33,50,71,218,102,42,152,125,179,133,119,104,137,205,157,163,57, + 178,251,180,233,86,129,184,102,72,227,14,98,166,109,211,120,54,98,8,138, + 58,154,137,130,138,217,50,216,250,232,160,52,170,72,166,83,194,206,184,242, + 253,122,92,60,122,47,156,59,70,113,163,112,235,86,113,179,226,154,190,143, + 67,211,240,221,160,193,179,137,39,38,184,123,247,122,212,167,139,74,13,217, + 209,148,205,50,178,222,131,122,150,247,204,213,225,73,250,224,156,200,100,61, + 159,51,28,36,248,203,101,229,249,221,84,232,182,251,117,240,102,185,253,20, + 15,142,144,239,189,15,106,180,151,42,212,137,7,247,53,102,174,247,172,185, + 188,251,228,164,32,102,214,251,209,187,95,16,149,153,107,91,47,91,22,219, + 84,144,201,247,77,77,128,33,102,246,249,221,26,156,35,171,10,142,12,50, + 222,226,251,199,44,176,217,246,46,157,58,2,16,67,54,95,243,42,132,104, + 183,53,57,49,150,149,146,161,103,48,155,16,253,94,159,201,7,213,72,81, + 204,52,250,170,201,35,60,115,67,225,29,106,252,184,180,221,142,10,115,20, + 238,70,60,197,155,160,229,56,79,83,78,149,119,140,147,73,61,30,69,69, + 249,104,200,60,44,245,53,0,252,110,140,159,245,116,110,83,13,170,16,209, + 184,58,92,211,240,221,160,193,179,137,39,94,17,126,255,247,246,23,159,242, + 221,182,19,0,44,182,219,124,122,128,27,112,250,116,40,57,89,56,145,73, + 207,176,86,51,58,189,52,83,234,61,100,64,166,55,167,115,122,129,158,194, + 230,223,74,212,135,30,68,146,208,51,136,146,228,80,204,116,237,212,0,51, + 215,54,210,201,90,1,204,205,44,181,232,34,148,35,234,92,168,138,84,35, + 54,82,202,251,211,156,104,37,18,136,171,246,215,124,246,91,233,53,196,213, + 218,159,255,158,198,76,75,132,81,138,26,203,209,27,247,53,233,253,108,17, + 190,190,166,251,239,147,189,115,211,137,103,35,175,155,198,10,73,118,72,93, + 191,127,84,109,125,200,34,64,49,3,179,9,137,244,198,190,47,55,171,231, + 34,244,166,210,4,190,213,61,144,243,82,138,18,132,177,23,45,245,148,245, + 124,158,147,92,125,155,192,113,189,112,163,218,199,171,120,244,104,112,190,180, + 199,73,215,33,105,146,20,211,198,189,33,27,85,159,169,104,208,160,193,179, + 133,39,38,184,155,55,92,10,103,135,60,50,21,91,208,21,108,150,150,208, + 30,101,241,121,244,62,184,234,241,124,83,40,31,162,149,79,167,101,137,33, + 216,108,107,107,125,96,93,58,58,178,141,153,77,104,125,224,35,127,231,189, + 60,130,51,71,16,45,69,37,154,217,245,158,172,144,158,75,245,77,179,121, + 112,145,157,195,150,46,61,55,44,186,30,53,143,167,107,149,171,47,247,144, + 157,130,107,95,32,146,232,133,196,223,113,215,112,209,162,74,253,236,95,137, + 184,174,115,129,72,250,142,70,188,91,244,213,185,237,197,76,227,223,142,138, + 232,178,52,219,78,45,215,248,191,163,108,196,182,144,21,133,166,119,83,65, + 180,97,147,9,76,184,86,92,155,235,181,115,45,7,238,6,168,110,234,250, + 233,176,136,140,92,45,238,97,94,148,187,56,105,224,169,197,113,70,203,251, + 217,3,33,171,31,80,154,166,4,105,84,250,187,218,240,221,164,41,27,52, + 120,246,240,196,4,151,110,239,157,248,252,58,73,88,166,89,234,170,198,96, + 249,241,113,130,96,96,37,232,9,232,148,250,181,202,170,77,0,241,110,53, + 125,233,72,203,191,29,217,148,221,186,38,125,58,197,10,52,162,250,183,73, + 204,52,184,150,191,178,179,201,145,129,237,241,233,88,177,180,53,48,71,0, + 46,197,55,87,97,78,152,249,254,29,118,210,141,238,249,124,246,106,153,131, + 167,212,71,118,128,184,102,208,43,121,108,48,35,102,54,186,116,66,154,88, + 9,188,251,54,74,77,227,14,234,78,17,65,165,113,199,110,91,154,57,39, + 150,182,6,231,96,196,166,152,165,119,194,20,134,195,56,19,243,244,12,10, + 59,218,161,78,160,244,116,40,95,116,167,230,241,186,55,19,130,248,14,105, + 146,84,148,148,0,27,93,212,17,165,124,184,234,181,65,131,6,255,105,241, + 196,4,87,40,37,219,24,19,22,125,74,98,68,180,93,231,94,148,66,246, + 243,8,206,245,40,213,53,122,63,186,240,196,190,182,239,217,197,40,21,7, + 248,102,193,102,177,68,199,71,217,113,70,136,118,135,160,229,3,49,157,246, + 1,0,222,55,192,27,62,176,198,192,38,68,140,142,96,12,221,111,38,36, + 191,188,133,120,140,152,20,71,210,83,15,255,189,140,132,74,139,179,118,36, + 84,34,14,121,67,230,115,215,188,223,208,4,201,18,226,162,9,187,210,151, + 22,91,34,80,89,58,50,210,27,132,9,233,255,106,187,82,183,51,35,89, + 57,142,94,201,188,103,77,127,245,0,174,129,105,219,253,165,203,106,107,64, + 176,82,164,169,151,95,199,17,67,212,97,11,249,235,26,217,211,149,53,220, + 28,10,123,142,135,6,51,2,174,21,19,201,59,178,141,249,229,1,233,215, + 59,248,97,132,31,71,21,2,115,219,142,77,136,249,178,65,165,62,193,114, + 77,122,187,99,125,45,195,22,27,207,48,248,247,18,33,98,155,66,150,221, + 76,100,178,99,191,165,143,96,37,240,56,202,91,5,170,164,232,230,182,213, + 223,236,148,107,112,101,5,165,160,157,207,133,43,112,114,186,60,218,164,185, + 136,105,227,217,118,20,207,63,190,177,187,137,224,26,52,120,246,240,17,84, + 229,55,181,179,186,214,153,133,145,209,203,154,215,60,221,241,202,240,205,125, + 82,49,168,68,111,39,42,239,202,198,192,71,166,82,75,226,250,122,175,230, + 166,23,18,181,242,49,34,206,21,133,226,218,78,116,52,197,42,11,35,137, + 58,108,85,136,207,243,143,87,223,113,100,107,93,161,103,48,34,70,30,157, + 208,255,85,186,164,88,9,204,212,70,80,98,67,17,197,185,243,169,185,252, + 241,124,106,155,203,111,154,253,237,167,213,215,165,113,39,143,46,211,251,26, + 222,127,64,176,92,231,215,229,68,36,50,75,99,234,235,26,19,111,43,77, + 231,65,186,206,211,182,109,181,159,206,222,108,7,217,111,143,112,99,115,76, + 243,118,217,201,228,201,240,40,214,93,13,26,52,120,94,241,148,4,119,114, + 159,209,58,73,106,141,112,63,10,47,202,50,124,83,237,58,55,38,196,108, + 138,59,244,104,83,144,140,58,108,17,29,14,246,234,106,241,45,143,244,29, + 171,10,236,222,77,108,93,45,108,33,222,177,245,171,88,9,54,158,129,111, + 180,114,33,72,153,200,92,90,207,187,111,31,87,105,246,214,238,164,14,139, + 3,238,216,125,69,210,18,68,105,251,138,192,36,127,157,29,86,106,222,203, + 72,135,44,138,43,237,63,93,122,197,241,1,111,153,98,142,64,125,201,144, + 30,122,36,65,223,18,227,97,169,181,224,208,228,194,152,224,112,157,71,151, + 230,215,52,226,247,50,193,202,205,146,239,229,212,238,87,28,102,3,87,63, + 240,109,36,152,31,223,207,211,182,193,81,192,225,242,144,220,129,36,72,75, + 111,76,253,231,238,132,38,246,228,234,141,145,119,157,76,30,94,131,59,9, + 17,197,13,218,9,223,69,53,199,36,251,255,109,154,20,101,131,6,207,30, + 158,152,224,162,237,186,244,215,166,246,247,110,16,212,70,112,143,231,69,121, + 50,137,166,194,166,31,163,172,102,212,146,43,27,193,233,114,131,182,93,176, + 94,190,109,23,68,55,184,51,223,71,220,161,123,55,177,234,193,153,253,155, + 169,141,80,244,212,203,251,194,70,100,106,201,119,106,136,103,106,237,183,204, + 92,219,180,228,206,115,123,231,189,244,240,110,42,210,187,246,6,64,173,44, + 65,164,75,47,175,209,185,84,160,88,86,163,46,97,66,155,58,205,136,84, + 108,128,109,39,127,93,29,212,245,9,155,175,121,200,89,205,16,213,221,168, + 47,107,14,23,235,14,242,63,10,184,157,237,35,245,43,190,151,105,106,133, + 52,226,154,177,239,209,181,98,23,94,154,34,111,72,132,105,227,221,7,239, + 27,153,252,222,132,4,155,45,181,144,69,126,120,161,202,243,139,234,8,231, + 73,252,76,31,134,13,117,228,214,86,183,242,86,129,68,217,155,37,127,39, + 93,217,152,46,55,104,240,236,225,137,9,174,59,10,118,22,30,231,19,104, + 97,54,81,158,166,124,20,28,95,131,59,126,33,75,182,155,92,69,233,82, + 148,91,109,189,17,69,39,41,77,244,134,89,176,192,59,84,120,247,171,206, + 247,121,63,216,212,218,84,237,122,59,154,169,65,95,53,69,143,219,151,77, + 78,96,149,94,178,41,168,171,86,97,233,45,83,60,223,121,80,22,207,239, + 190,198,188,43,114,115,98,23,249,65,161,128,204,17,23,17,161,57,20,152, + 169,176,173,9,43,185,183,29,128,159,170,226,248,217,227,222,151,30,208,253, + 102,178,183,125,26,119,236,245,196,228,233,78,189,178,205,235,230,134,66,188, + 159,162,87,18,85,26,210,150,198,25,153,110,59,246,117,87,65,125,121,148, + 95,155,235,203,139,150,54,162,115,55,8,174,158,182,69,237,53,122,219,13, + 109,126,184,247,4,153,199,39,239,131,171,143,214,58,237,226,122,93,13,174, + 12,167,162,108,208,160,193,179,139,39,39,184,224,225,78,234,102,137,188,208, + 180,0,0,32,0,73,68,65,84,83,63,3,238,201,45,148,192,17,158,233, + 213,171,56,91,178,232,81,42,71,138,163,100,192,187,95,211,149,49,49,98, + 6,196,54,82,75,195,14,122,33,49,135,2,63,142,16,75,131,151,166,248, + 169,178,2,18,108,122,83,126,57,19,157,148,136,17,108,138,79,92,179,100, + 72,92,74,27,194,126,83,53,25,9,76,171,246,87,76,51,114,74,83,251, + 123,118,30,123,105,206,187,106,47,82,115,162,22,177,52,57,241,201,153,193, + 243,173,210,82,188,163,209,215,178,1,177,81,17,125,7,203,53,222,114,191, + 78,232,29,106,212,175,40,244,151,237,107,202,170,204,32,93,23,170,206,13, + 136,235,26,255,203,15,236,117,223,45,110,84,186,119,51,9,253,85,67,192, + 56,159,58,209,237,202,74,31,220,46,86,187,111,215,9,19,2,242,77,30, + 169,15,238,56,212,171,39,203,72,147,132,116,123,124,26,50,120,132,255,15, + 13,26,52,248,79,139,39,38,184,151,62,118,96,27,183,143,17,0,68,177, + 143,104,119,242,158,167,221,49,38,187,105,202,227,107,112,245,100,40,86,103, + 78,56,187,13,38,10,42,127,59,152,163,162,95,173,12,255,118,84,47,203, + 223,96,39,102,71,18,121,213,166,225,188,52,173,52,114,167,113,199,166,28, + 15,53,242,134,36,213,89,221,113,119,93,158,86,163,51,61,245,114,215,16, + 125,93,23,68,88,138,250,76,127,223,223,50,45,165,72,61,95,87,235,125, + 21,129,75,113,61,234,154,196,76,205,94,100,87,81,83,182,139,215,153,223, + 3,249,235,58,127,141,156,89,194,247,150,105,126,156,32,177,233,103,113,211, + 20,253,111,206,23,51,139,14,211,181,98,243,181,130,24,186,237,100,207,186, + 237,105,225,234,188,143,87,131,171,233,196,207,62,48,231,121,234,156,114,182, + 153,223,164,144,197,246,187,41,202,6,13,26,60,123,120,98,130,27,76,62, + 70,24,14,118,30,173,146,214,177,181,22,30,39,138,123,178,90,139,232,184, + 20,82,61,113,10,211,206,123,202,202,81,71,217,53,68,249,190,37,143,169, + 173,145,169,171,85,97,70,121,215,126,170,208,11,153,251,52,62,174,16,79, + 31,163,126,4,10,185,127,167,107,235,113,215,76,165,206,39,123,251,11,187, + 35,61,247,175,156,217,148,162,105,219,237,77,89,79,81,74,79,230,175,255, + 178,68,252,142,65,206,12,73,207,30,75,57,55,143,61,225,139,37,80,160, + 210,255,87,177,236,202,176,222,4,116,58,39,247,80,238,161,230,38,202,53, + 244,195,227,40,117,31,102,232,93,202,50,232,113,101,28,147,125,172,248,80, + 119,83,148,77,13,174,65,131,103,15,79,76,112,111,190,49,37,138,123,54, + 125,100,226,108,17,170,122,70,110,81,149,134,107,23,197,125,20,34,147,165, + 106,211,241,111,21,10,202,172,126,99,107,112,109,130,196,39,104,173,40,207, + 131,3,91,43,2,59,235,76,206,19,196,29,240,187,217,2,57,133,52,180, + 2,19,213,247,241,150,41,122,36,16,55,13,105,252,26,242,95,153,130,248, + 124,31,66,75,120,50,222,194,24,228,23,21,201,111,118,241,187,75,91,179, + 202,214,203,196,239,146,222,238,192,56,107,27,136,237,254,205,212,96,174,217, + 243,145,255,49,19,152,108,236,41,59,47,203,114,122,83,70,86,170,175,255, + 207,54,254,183,210,156,216,42,2,148,146,50,83,165,50,143,240,100,79,35, + 163,53,169,238,147,250,94,254,186,61,98,203,8,49,88,41,196,134,60,122, + 131,44,77,153,93,147,94,73,84,42,243,62,60,223,87,16,130,47,109,170, + 148,113,246,126,254,227,43,180,62,240,73,152,102,51,3,103,196,250,194,137, + 159,248,241,40,78,180,42,114,202,158,221,202,74,166,192,221,68,25,54,149, + 12,65,49,149,162,46,138,179,24,246,55,248,114,68,224,181,240,218,210,78, + 246,206,136,52,12,247,155,248,155,20,101,131,6,207,30,158,188,77,64,156, + 219,249,59,44,238,180,143,27,58,121,204,227,240,184,34,147,48,111,244,46, + 195,163,234,152,178,107,213,213,191,153,18,28,62,64,173,124,218,74,84,156, + 250,157,114,210,69,29,222,97,90,89,251,188,223,186,142,120,71,35,102,153, + 136,196,185,203,187,52,101,102,205,21,44,109,125,202,91,166,121,170,50,88, + 174,241,191,51,66,220,180,141,208,132,228,245,189,224,240,193,190,83,74,92, + 74,101,238,190,101,49,136,219,246,218,197,206,91,224,254,246,124,141,238,116, + 43,233,72,71,86,96,163,205,221,215,230,215,153,109,99,218,197,143,236,217, + 230,112,57,51,149,99,148,207,105,247,92,221,249,183,14,239,88,11,48,200, + 106,112,79,163,126,108,31,243,123,225,150,227,190,99,173,86,154,223,72,149, + 111,168,12,113,137,236,246,191,115,142,252,78,159,238,229,143,185,177,57,206, + 143,50,142,163,70,69,217,160,193,115,128,39,38,184,215,191,55,196,221,81, + 59,19,229,143,198,76,249,97,176,169,164,165,202,204,112,197,110,154,244,120, + 44,95,246,49,55,173,98,113,227,153,74,205,205,245,148,229,233,183,242,218, + 23,195,230,139,11,235,244,209,46,82,134,110,157,116,34,141,114,100,231,144, + 174,251,152,211,130,244,11,167,41,175,171,202,247,173,98,113,33,225,3,31, + 238,107,252,84,145,4,253,156,32,93,128,81,86,69,234,149,68,206,76,69, + 196,82,135,32,89,86,106,106,229,199,235,34,54,7,71,106,123,198,31,20, + 245,190,50,201,213,90,133,101,208,83,143,244,247,119,156,79,158,74,96,84, + 188,182,156,162,132,125,145,137,27,149,100,216,148,34,185,154,187,5,160,236, + 106,210,14,69,246,175,53,122,118,105,74,173,67,66,82,2,207,238,183,81, + 81,54,104,240,236,227,137,9,238,96,0,130,35,48,241,206,24,156,108,17, + 50,113,62,220,242,233,176,187,32,86,173,186,30,237,53,22,253,155,105,174, + 92,220,213,220,229,253,103,20,78,252,185,88,100,138,117,224,159,146,167,247, + 202,214,88,96,83,116,58,44,166,87,187,181,83,70,107,204,167,37,250,173, + 177,141,220,50,50,116,17,160,152,89,101,167,186,211,70,108,10,225,6,20, + 53,175,50,161,184,159,50,73,229,164,116,12,202,207,229,245,180,18,177,185, + 84,99,237,62,74,68,87,174,223,185,109,31,70,180,117,117,184,39,71,113, + 176,104,91,111,141,181,155,162,60,62,29,94,239,63,185,141,219,149,201,241, + 64,158,162,76,252,227,253,69,155,20,101,131,6,207,30,158,152,224,206,95, + 144,104,83,74,9,214,165,31,77,156,79,253,54,166,67,216,110,237,111,147, + 225,120,21,229,201,43,168,171,193,245,252,170,242,193,186,101,192,94,24,178, + 51,239,204,45,244,190,175,234,203,49,153,104,194,137,40,118,221,251,119,179, + 93,94,121,48,102,43,66,143,4,252,105,65,251,252,61,204,203,34,79,63, + 42,223,47,72,226,200,18,65,94,211,202,224,45,83,210,117,213,9,198,180, + 177,126,145,84,137,77,108,170,100,83,254,221,145,178,74,37,222,37,157,191, + 30,178,26,155,19,169,132,118,219,156,216,235,174,177,68,120,73,176,239,82, + 83,126,47,42,132,95,66,167,230,230,100,244,148,78,32,70,207,104,183,116, + 37,13,110,61,40,171,199,178,223,179,93,210,221,63,159,11,231,219,68,241, + 221,92,73,9,160,210,132,68,165,40,221,109,84,148,13,26,60,7,120,114, + 130,123,201,231,226,249,225,254,19,199,212,217,132,136,158,176,17,247,201,83, + 90,117,117,61,177,204,132,29,89,221,171,82,75,114,207,59,105,126,43,178, + 2,148,113,33,162,112,191,59,225,133,139,164,148,239,227,135,209,94,106,207, + 123,67,99,222,148,16,78,89,127,34,200,106,97,25,9,102,147,8,244,20, + 210,219,157,202,185,184,52,168,223,93,214,70,75,117,145,147,235,127,43,167, + 24,119,73,200,124,90,90,162,45,239,39,187,46,66,16,99,81,136,110,74, + 72,125,175,74,112,33,181,219,213,165,54,253,176,74,40,233,122,191,147,123, + 246,80,179,226,147,103,252,9,57,218,251,126,85,201,173,238,123,89,144,157, + 33,206,127,32,228,212,240,99,128,29,60,219,105,85,207,183,215,53,141,138, + 178,65,131,231,0,79,222,38,208,151,124,250,141,239,123,164,109,203,227,114, + 234,162,184,194,237,189,12,247,247,195,69,9,109,239,152,166,239,210,68,239, + 89,96,35,61,149,250,86,216,145,161,66,0,165,190,182,124,12,78,9,185, + 155,71,8,122,36,80,125,63,143,0,29,105,153,190,200,9,35,88,41,212, + 79,73,188,211,91,98,37,8,95,84,152,118,33,192,72,250,93,59,49,224, + 104,191,17,28,74,181,62,44,17,229,36,179,139,112,39,101,232,8,171,124, + 238,217,121,234,55,128,75,37,98,207,8,201,156,22,152,211,34,143,64,211, + 117,63,183,226,34,4,191,175,242,218,97,153,228,118,137,47,77,61,148,239, + 35,199,42,39,182,114,13,174,19,166,32,187,181,215,123,50,170,83,4,58, + 173,234,62,92,4,119,18,170,234,201,50,202,81,95,200,153,241,89,38,47, + 92,4,96,19,43,162,109,169,201,221,251,168,71,248,52,104,208,224,219,133, + 39,38,56,207,19,92,126,245,197,138,176,36,31,135,179,35,54,137,55,189, + 124,241,137,107,122,227,118,101,220,217,171,178,127,31,45,130,19,177,189,203, + 118,78,38,101,179,229,189,227,221,180,125,109,229,102,229,202,225,47,65,242, + 90,105,1,13,45,185,233,176,101,23,242,216,70,58,58,108,217,244,94,88, + 109,200,46,255,46,191,231,148,189,10,207,96,46,9,82,221,199,220,13,241, + 252,52,39,0,39,237,119,228,148,250,30,190,175,16,227,204,234,106,85,74, + 163,150,206,201,33,57,221,69,157,246,243,84,163,234,251,5,209,102,240,124, + 141,30,9,228,247,156,66,188,92,61,94,133,52,179,223,125,185,36,88,169, + 124,127,73,223,190,31,114,156,61,150,213,7,221,57,37,167,187,48,38,63, + 231,28,99,240,95,40,25,95,199,62,147,225,147,70,59,199,215,224,234,34, + 184,252,185,202,135,235,206,165,254,251,21,182,237,13,207,133,75,151,9,90, + 197,241,164,103,197,76,199,121,81,54,53,184,6,13,158,61,60,54,193,105, + 173,209,218,46,164,111,125,33,196,152,14,66,68,57,169,25,110,99,120,225, + 216,215,63,89,47,92,246,90,156,114,51,172,88,117,149,219,3,156,23,101, + 97,182,108,67,144,126,55,179,169,26,43,235,142,159,245,195,229,245,168,49, + 21,39,16,255,151,182,120,111,232,156,124,188,52,181,253,110,89,143,151,28, + 43,188,191,191,181,17,76,121,253,28,23,17,139,185,8,230,146,221,193,8, + 16,111,75,188,79,100,4,220,23,150,16,102,26,249,101,109,237,175,194,140, + 236,182,29,204,107,2,253,157,45,210,117,223,70,91,99,187,111,215,95,167, + 250,62,122,37,209,43,137,255,191,108,145,151,84,94,63,115,36,68,8,230, + 130,198,239,171,188,254,38,95,93,162,78,203,130,220,74,231,194,56,251,61, + 19,216,164,47,249,172,254,139,22,242,31,129,248,219,91,76,95,228,41,92, + 57,86,86,53,218,247,89,253,76,11,239,239,111,49,47,11,204,221,176,90, + 123,115,189,133,128,49,247,129,54,71,243,143,142,12,234,154,188,157,184,196, + 254,88,41,106,181,61,192,225,122,254,155,16,54,194,143,54,135,92,56,255, + 231,56,61,120,15,200,220,76,76,49,109,252,56,21,229,238,60,184,102,62, + 92,131,6,127,248,120,108,130,147,50,115,198,144,91,206,95,144,28,28,180, + 114,21,101,161,96,219,143,186,30,86,127,171,239,131,171,54,105,59,116,218, + 105,197,170,75,101,154,72,93,82,143,136,78,82,234,131,139,241,102,165,136, + 44,6,115,180,147,206,202,82,113,249,235,135,18,222,60,133,57,71,222,220, + 13,89,90,49,35,4,121,81,218,212,221,46,46,101,41,191,190,192,235,237, + 248,60,142,75,181,43,151,70,44,143,221,105,91,229,165,120,205,254,157,251, + 70,134,165,222,184,176,16,179,200,87,53,98,40,49,23,247,223,95,23,73, + 230,14,36,151,128,112,131,185,36,242,253,152,211,162,56,143,82,90,211,92, + 208,152,191,110,104,255,55,19,196,107,197,123,85,142,78,61,63,69,142,21, + 237,31,28,48,187,88,188,184,92,115,115,231,21,148,118,94,8,128,224,241, + 106,172,213,109,147,32,205,109,186,202,105,112,39,46,177,63,187,223,171,114, + 154,210,134,227,134,24,99,6,8,177,64,16,114,241,34,12,206,20,233,225, + 182,127,252,119,215,243,154,200,173,65,131,103,21,79,148,162,116,36,119,254, + 37,159,239,124,253,225,66,147,221,52,230,174,47,37,212,169,40,179,92,224, + 30,142,143,252,164,172,22,158,236,68,111,183,175,12,89,164,102,174,238,63, + 229,224,199,17,234,0,204,79,75,204,21,81,105,9,8,210,146,131,198,197, + 46,230,138,216,139,224,106,127,7,188,94,154,19,23,99,108,253,173,238,58, + 122,26,243,103,189,92,98,111,70,150,88,60,63,107,48,119,209,38,96,126, + 242,0,206,122,232,55,40,70,225,140,139,99,251,97,100,61,36,125,141,126, + 195,78,29,247,63,45,225,5,170,181,186,82,228,73,8,242,231,55,136,159, + 245,8,46,207,236,164,242,154,235,49,125,193,250,251,3,196,231,4,19,230, + 149,231,244,212,99,253,253,1,250,237,49,219,11,78,73,91,244,78,22,120, + 132,72,62,255,190,236,88,193,37,126,30,193,149,251,224,170,211,188,203,226, + 145,114,122,114,3,140,43,189,113,198,12,8,219,125,94,60,95,37,45,93, + 178,232,242,2,151,154,181,219,40,149,100,255,86,111,152,154,249,112,13,26, + 252,225,227,169,6,158,142,71,30,223,243,233,23,129,163,74,47,156,75,89, + 150,83,151,197,115,206,208,182,188,8,213,137,76,246,201,205,100,11,83,180, + 41,10,253,109,239,30,30,51,68,219,90,117,217,26,220,9,139,166,179,225, + 186,106,195,166,164,223,221,175,67,77,109,51,184,124,117,137,126,75,22,181, + 176,176,69,226,119,243,133,94,180,99,204,155,86,116,81,22,166,228,17,204, + 56,171,245,57,116,52,201,199,79,231,98,21,25,20,209,159,233,11,210,117, + 31,189,146,152,239,21,136,43,197,34,235,182,55,125,145,71,134,238,237,81, + 223,61,131,78,27,255,45,15,121,160,17,103,75,239,91,137,232,146,158,135, + 185,36,236,84,242,11,41,201,149,110,17,141,141,65,156,54,249,121,155,151, + 5,222,79,121,120,167,183,68,218,126,78,114,39,202,115,215,219,254,1,141, + 127,118,105,111,8,46,74,204,5,107,26,45,199,138,246,39,21,226,115,130, + 214,167,170,93,135,39,121,148,158,140,253,8,238,36,148,111,154,92,170,114, + 215,158,203,165,38,221,239,195,238,119,114,249,213,243,149,250,155,67,39,172, + 62,22,134,97,30,193,121,222,83,206,14,110,208,160,193,71,142,167,250,95, + 233,121,30,111,189,125,145,83,167,44,169,25,19,91,178,58,193,146,171,14, + 245,34,19,135,50,17,150,154,120,179,26,220,70,213,77,21,120,120,218,75, + 92,183,142,252,126,24,217,52,93,38,36,169,16,221,36,66,126,65,32,47, + 217,17,54,126,24,85,200,43,210,27,244,167,135,152,151,133,125,60,91,252, + 205,72,90,210,120,153,189,20,165,247,153,76,168,81,222,54,219,159,115,226, + 215,111,73,152,100,150,97,190,46,106,106,37,194,2,16,159,54,248,159,150, + 136,118,12,23,82,75,76,105,106,107,94,217,182,174,254,229,189,145,69,110, + 0,29,141,119,110,179,127,14,217,49,196,103,129,44,234,10,61,131,48,59, + 55,31,99,224,18,136,215,108,93,49,210,27,123,157,7,165,253,92,2,239, + 77,129,55,74,49,111,78,42,47,247,187,101,213,104,241,89,29,197,199,212, + 173,30,243,251,4,101,114,171,19,47,185,104,46,42,109,31,130,57,195,75, + 47,95,228,202,39,236,121,184,30,56,63,8,114,155,174,227,208,68,108,13, + 26,60,123,120,98,130,19,34,68,41,197,235,159,81,92,120,241,21,96,127, + 66,192,73,68,87,22,153,212,71,112,14,117,209,88,252,144,113,57,187,42, + 202,106,84,163,195,22,226,102,102,100,92,22,87,148,95,159,205,141,211,151, + 37,250,45,105,73,112,7,27,207,224,127,247,194,214,182,74,144,3,43,10, + 81,167,139,183,87,152,144,25,32,7,179,202,246,149,17,61,216,246,3,241, + 246,41,43,155,153,150,250,221,106,218,22,214,223,31,88,98,19,177,77,35, + 94,194,74,250,195,40,39,45,63,182,189,121,230,162,68,29,144,15,110,149, + 131,34,237,40,3,5,161,192,140,36,235,79,4,232,31,241,16,78,40,18, + 85,201,207,253,248,97,68,250,170,196,63,144,108,60,3,29,141,62,175,243, + 27,0,253,134,68,92,9,152,133,83,228,100,70,194,148,110,59,161,211,234, + 238,140,203,41,62,223,73,248,48,146,120,124,97,82,53,61,233,200,109,83, + 250,41,162,184,176,125,158,31,252,236,39,232,118,172,98,178,234,208,83,192, + 247,27,50,107,208,224,121,192,19,19,156,187,99,29,143,187,252,196,159,249, + 110,160,232,59,19,34,204,201,237,81,163,185,250,8,174,174,102,99,167,45, + 223,154,143,57,35,237,98,250,64,247,153,175,68,69,100,210,146,3,146,109, + 74,152,213,76,102,193,194,122,81,94,148,118,17,222,61,92,70,124,170,124, + 167,30,217,30,54,249,133,125,33,134,25,73,218,89,186,79,191,145,189,141, + 211,106,207,151,169,155,193,121,33,69,156,206,34,152,176,74,154,126,95,225, + 189,161,145,159,186,111,101,51,227,194,133,36,63,182,171,149,133,208,254,193, + 65,81,31,3,204,43,126,78,212,50,80,121,36,9,96,46,131,119,186,72, + 13,166,175,150,62,250,236,60,228,64,211,254,164,66,254,80,149,116,141,200, + 218,63,94,182,199,16,167,13,102,36,241,222,180,175,203,47,115,98,255,54, + 125,129,185,36,16,227,172,25,190,167,80,223,209,102,189,177,233,60,209,174, + 39,14,253,208,204,101,245,187,16,36,15,235,73,139,119,126,119,228,230,20, + 191,85,247,155,87,46,188,194,229,87,207,231,254,147,66,68,180,219,15,39, + 213,38,61,217,160,193,179,137,167,250,159,41,229,150,126,48,231,123,62,51, + 204,251,220,234,4,36,198,196,123,68,87,142,246,142,159,13,23,195,142,19, + 60,64,180,241,249,216,199,254,128,123,186,67,219,187,199,41,185,100,224,215, + 132,56,64,156,20,41,194,43,159,148,168,203,99,27,93,249,126,165,6,229, + 162,18,215,176,45,134,18,196,144,25,32,94,211,182,214,230,48,6,113,48, + 38,220,10,75,48,111,158,202,137,196,59,183,65,183,78,94,120,213,203,59, + 17,128,59,245,44,210,42,147,86,62,95,45,19,165,152,145,204,29,83,228, + 229,234,199,167,46,142,75,251,18,68,237,108,26,119,95,96,46,143,137,149, + 40,210,141,167,198,149,168,80,183,124,116,203,71,94,22,196,45,131,137,183, + 54,138,204,206,69,76,168,92,151,28,104,244,133,49,68,165,158,191,49,164, + 47,100,41,209,203,96,226,45,163,216,30,228,116,255,52,66,196,165,254,181, + 199,28,152,7,236,70,112,39,215,224,226,252,251,114,124,250,219,10,75,192, + 126,183,218,225,105,94,121,229,2,201,118,83,177,232,242,125,159,78,216,38, + 12,195,218,81,57,77,122,178,65,131,103,19,79,76,112,90,107,60,175,135, + 54,35,254,200,247,175,249,249,63,115,142,52,57,192,152,24,63,184,255,208, + 215,239,166,40,171,40,167,23,235,84,119,69,138,114,163,206,228,109,2,213, + 19,180,106,71,27,193,217,197,244,250,107,62,254,23,102,164,97,39,39,50, + 55,255,205,69,59,174,5,192,204,53,132,211,124,207,226,167,76,37,181,104, + 152,219,52,94,36,241,206,207,44,1,102,1,129,25,106,187,191,73,169,249, + 59,222,50,54,33,34,108,225,253,148,199,250,108,128,105,157,42,162,185,41, + 36,87,186,200,191,145,205,106,51,161,37,210,179,113,126,92,57,208,185,48, + 197,156,22,200,193,44,39,172,25,16,252,25,171,40,52,35,137,110,249,244, + 90,89,175,214,37,240,46,205,8,61,147,139,70,196,23,22,246,28,70,178, + 72,165,126,206,32,127,52,35,141,142,102,228,210,147,217,191,102,104,201,110, + 37,91,168,211,146,228,244,125,162,118,156,159,131,121,83,226,125,87,98,223, + 63,171,249,65,45,215,120,195,7,44,190,191,26,21,22,10,87,251,166,133, + 230,133,74,61,53,197,54,200,11,17,151,84,148,54,173,104,106,66,227,114, + 155,128,253,124,28,169,77,129,163,236,223,25,246,187,85,164,38,133,88,128, + 57,207,217,241,39,248,194,15,127,30,233,95,37,104,181,243,40,206,175,105, + 224,246,253,128,182,116,226,146,253,212,117,131,6,13,158,13,60,69,138,82, + 146,36,9,74,37,156,57,115,150,79,127,223,197,188,5,32,217,166,143,49, + 177,187,138,253,89,93,143,144,34,218,153,3,87,70,57,130,3,27,153,149, + 251,180,252,216,138,67,92,221,172,246,156,194,22,250,178,100,125,182,88,236, + 220,98,79,71,91,153,254,121,157,55,110,131,77,17,238,116,45,96,226,34, + 7,215,233,27,214,203,69,229,249,74,255,152,216,137,120,51,210,202,113,169, + 186,239,242,146,47,3,85,156,31,84,206,27,128,72,226,119,61,122,173,164, + 162,228,4,75,172,225,182,186,104,187,122,156,25,217,235,238,181,18,230,221, + 54,29,217,206,107,122,96,5,53,250,188,206,133,45,96,133,72,249,53,100, + 68,24,108,182,249,56,27,135,88,220,230,81,33,68,140,49,33,65,226,231, + 125,112,187,227,114,128,154,218,27,236,78,15,176,219,77,57,115,230,50,111, + 190,174,243,250,91,57,130,43,195,213,223,68,203,107,122,224,26,52,120,198, + 241,212,41,202,192,95,35,165,228,179,159,191,194,133,243,150,140,156,96,164, + 60,139,11,138,84,229,201,233,202,16,232,240,56,86,93,117,17,92,178,227, + 121,217,239,122,168,239,0,206,122,197,130,159,165,38,197,203,182,38,229,44, + 172,234,224,245,187,180,63,169,42,36,104,68,22,189,132,27,228,101,81,77, + 249,13,3,196,132,34,221,152,253,107,68,108,37,245,25,81,148,235,112,226, + 101,123,126,96,137,70,156,54,214,21,164,90,42,178,245,194,55,100,33,48, + 113,8,51,101,100,182,79,71,136,225,139,202,166,92,201,84,145,97,11,58, + 198,70,110,217,182,101,66,4,10,113,73,36,43,196,236,48,56,91,122,44, + 75,83,138,176,133,188,44,240,191,43,155,192,176,242,81,219,94,222,42,33, + 132,171,129,85,125,66,239,47,118,210,149,43,193,216,59,222,9,196,152,48, + 219,87,225,100,18,199,246,102,193,42,114,167,59,206,37,187,115,223,138,244, + 165,49,3,4,33,223,249,29,223,199,217,243,31,99,29,21,55,29,237,118, + 27,223,247,9,201,230,253,233,39,241,208,108,208,160,193,31,22,158,138,224, + 84,186,198,15,78,17,199,91,206,191,228,243,246,231,206,98,204,29,164,168, + 18,206,46,209,213,225,113,39,122,239,98,165,109,163,183,179,234,170,10,16, + 178,41,205,104,196,216,208,233,27,219,207,150,33,125,85,226,191,229,145,126, + 175,183,23,197,197,74,88,34,107,199,48,17,121,29,44,63,239,76,193,40, + 47,238,71,120,142,84,0,75,24,25,201,121,189,180,112,19,57,9,97,209, + 126,80,137,180,198,32,222,16,213,90,221,49,176,130,16,80,227,162,33,223, + 136,24,19,111,115,17,140,152,219,243,20,147,186,61,100,219,100,215,162,25, + 163,78,75,27,157,70,194,18,160,216,216,254,58,172,187,75,186,219,251,175, + 246,205,0,10,151,153,14,158,124,145,208,20,246,110,170,55,102,170,60,58, + 237,250,26,155,35,183,178,147,73,187,165,209,102,182,67,110,17,197,221,193, + 20,55,44,215,238,99,145,215,223,206,140,47,240,131,111,189,194,106,217,163, + 14,34,236,17,134,33,189,174,201,211,147,46,122,107,60,40,27,52,120,118, + 241,196,4,151,36,9,94,137,36,14,78,181,248,107,127,243,135,185,112,254, + 44,126,112,31,81,227,253,87,216,39,237,147,221,163,244,193,21,40,38,122, + 67,93,47,156,125,46,216,17,123,136,174,178,139,251,80,87,71,184,76,4, + 226,188,183,151,82,4,219,10,0,150,20,228,24,162,182,87,33,27,97,194, + 188,121,186,253,73,85,235,78,226,22,127,34,153,71,70,114,92,68,88,229, + 215,40,165,242,227,149,219,12,92,164,181,146,45,204,72,230,100,148,239,27, + 27,49,185,125,57,210,34,20,200,203,182,31,45,79,228,102,100,43,47,11, + 235,75,153,69,111,230,40,75,163,198,237,236,218,218,196,173,236,250,179,182, + 9,153,17,134,152,128,145,109,232,104,212,202,39,56,10,242,104,114,217,141, + 208,83,48,243,9,243,233,41,230,59,17,168,141,174,139,207,123,212,55,220, + 211,29,82,49,32,21,7,249,227,209,198,207,211,154,101,148,31,115,17,156, + 179,130,171,111,11,112,87,94,118,53,41,250,42,127,224,7,62,203,43,175, + 92,200,247,121,92,122,210,65,100,211,196,155,250,91,131,6,207,54,158,98, + 154,128,253,79,190,221,42,194,176,5,24,206,191,228,243,179,63,123,154,237, + 246,48,223,174,142,232,160,38,125,249,88,17,92,129,84,216,187,112,197,8, + 197,40,151,162,111,211,234,226,35,207,156,229,222,58,32,86,130,121,183,164, + 204,28,217,104,196,116,35,75,26,78,86,127,100,201,171,82,219,186,40,11, + 225,70,9,161,103,44,17,76,4,50,80,5,185,96,9,168,92,167,42,239, + 203,12,117,81,87,203,8,175,220,24,110,70,84,83,162,46,141,120,32,17, + 67,89,33,55,32,111,182,118,164,101,134,26,117,218,146,161,104,199,249,249, + 228,56,53,169,180,50,136,137,77,51,138,210,91,238,234,113,229,8,206,253, + 45,116,17,185,229,81,218,89,143,126,187,135,56,85,14,7,173,96,196,152, + 208,142,203,217,193,108,89,189,142,185,46,162,34,33,246,191,59,187,143,173, + 215,58,51,25,112,166,202,78,84,82,110,234,222,20,196,38,92,58,51,166, + 211,254,56,159,123,251,179,180,187,183,104,119,111,113,54,84,36,106,107,211, + 147,65,144,171,39,161,218,255,214,144,91,131,6,207,62,158,34,69,105,240, + 188,94,254,31,221,152,152,110,71,241,67,95,248,97,46,158,255,68,105,187, + 170,84,187,46,170,115,143,11,194,138,91,137,197,227,137,85,186,237,93,2, + 218,95,32,7,231,58,86,206,190,147,250,19,67,155,126,76,107,164,224,0, + 234,160,218,188,93,57,75,207,32,95,41,22,245,138,208,47,139,218,242,90, + 84,214,189,189,43,6,52,67,157,63,183,11,221,242,17,115,75,176,250,188, + 70,29,212,108,212,209,168,161,37,26,71,178,102,68,53,85,154,33,86,2, + 125,170,120,124,222,109,91,229,163,147,253,199,251,231,177,72,138,199,212,1, + 152,157,143,70,29,182,56,218,6,232,23,15,48,71,26,165,134,232,69,193, + 208,66,196,68,113,125,26,240,113,224,34,56,179,137,44,185,233,34,66,219, + 183,228,114,13,221,85,114,3,16,140,249,19,127,236,231,184,242,9,69,178, + 181,23,179,224,99,133,131,73,169,39,50,12,59,248,126,208,216,115,53,104, + 240,28,225,137,255,135,58,161,72,16,4,104,173,72,146,128,192,95,243,99, + 127,44,228,167,127,230,143,100,91,85,45,250,143,35,57,177,211,235,86,141, + 230,30,221,189,98,166,85,30,193,185,185,112,117,80,93,155,210,44,55,101, + 59,169,187,12,84,110,114,12,213,136,199,235,87,69,6,194,132,149,62,176, + 252,113,44,201,164,193,132,224,40,139,70,226,54,158,231,229,41,191,90,130, + 218,61,102,214,102,144,143,223,113,17,223,68,224,119,189,34,50,44,165,62, + 29,118,69,35,21,49,74,108,213,143,162,167,114,210,26,4,27,155,118,20, + 155,61,226,218,37,93,51,2,63,27,63,20,28,5,120,158,71,58,159,48, + 87,213,155,147,181,206,110,126,214,30,203,244,149,74,106,177,221,74,216,189, + 249,72,197,1,71,186,139,167,11,18,172,75,81,2,116,90,30,45,142,235, + 63,43,139,75,138,137,221,123,251,104,191,202,79,255,233,31,68,167,151,57, + 119,106,75,178,221,228,205,221,187,237,1,141,123,73,131,6,207,31,158,34, + 69,89,44,66,82,122,180,90,30,66,142,73,163,152,191,251,247,206,242,198, + 107,159,161,29,28,102,110,17,35,52,183,105,183,22,144,17,152,96,154,19, + 93,121,172,201,195,35,184,226,239,40,125,145,91,155,179,164,98,192,70,157, + 193,231,227,140,59,83,187,40,202,110,73,200,80,188,38,56,60,160,253,3, + 215,225,143,116,240,195,8,61,44,22,178,248,74,130,122,217,35,13,59,182, + 134,20,111,115,18,17,38,4,51,199,92,18,149,215,152,110,132,88,103,4, + 116,105,86,52,113,79,4,126,114,100,211,134,113,59,175,173,229,132,151,109, + 3,182,105,60,79,141,138,226,92,157,119,164,119,46,139,114,231,54,245,232, + 93,182,199,5,155,66,180,170,72,13,71,29,196,165,25,98,46,243,84,162, + 188,44,16,159,176,233,204,209,81,135,112,30,218,20,100,36,241,90,43,204, + 142,115,190,48,246,92,69,27,210,181,130,184,157,159,83,63,187,78,38,34, + 39,65,51,159,144,30,13,241,188,57,131,85,135,238,252,28,171,23,5,243, + 43,103,49,107,15,173,71,168,100,95,158,186,217,6,216,155,159,8,33,237, + 244,236,35,221,101,34,215,180,125,153,15,24,21,217,64,62,75,116,109,160, + 109,83,148,114,158,43,101,163,205,2,195,117,12,183,129,15,41,122,222,54, + 246,95,113,163,18,185,217,29,158,231,239,254,183,63,197,96,18,32,253,171, + 60,88,14,8,90,109,58,29,131,78,188,189,230,238,186,1,167,77,131,119, + 131,6,207,54,62,178,28,139,148,30,158,39,17,45,143,150,215,231,175,253, + 237,207,210,27,124,138,86,235,52,134,235,8,66,226,173,162,221,74,242,90, + 9,236,70,117,117,119,235,187,17,92,187,178,221,217,208,18,135,171,197,57, + 236,214,224,180,120,17,0,179,114,4,100,211,145,46,218,2,91,75,51,35, + 219,143,86,39,56,57,73,181,216,86,245,53,153,124,154,128,26,22,2,146, + 141,173,97,186,99,152,251,211,253,237,29,106,206,35,79,57,186,6,236,154, + 58,85,190,109,141,50,178,28,161,141,59,217,0,214,217,56,111,206,46,78, + 166,164,188,156,107,36,83,251,51,182,98,24,181,237,177,72,138,20,239,34, + 81,172,150,246,252,123,183,12,70,217,207,100,149,100,105,83,39,237,175,153, + 182,30,165,47,50,145,107,68,87,229,228,102,81,31,193,71,177,143,217,68, + 68,81,185,166,231,132,37,238,247,41,97,187,79,171,237,142,159,213,222,204, + 128,159,250,19,63,195,249,43,103,233,245,171,145,190,214,33,173,110,245,191, + 133,139,222,202,233,201,6,13,26,60,251,248,72,139,8,54,146,107,225,121, + 1,63,253,147,109,126,225,23,63,79,178,173,78,92,142,183,106,207,3,112, + 183,95,105,63,138,43,163,168,167,228,232,21,34,142,173,238,33,68,76,203, + 175,10,59,164,185,5,192,34,25,161,182,61,228,101,224,64,98,152,99,228, + 4,35,98,155,26,204,90,1,96,63,53,71,148,9,82,156,234,208,245,135, + 117,12,27,207,88,249,255,200,186,156,148,113,180,13,192,155,231,194,28,181, + 237,65,167,109,83,130,67,109,35,184,29,236,57,248,227,28,82,170,233,77, + 97,218,123,98,19,176,106,71,87,227,51,155,98,95,74,41,251,227,136,52, + 19,131,56,117,164,145,197,53,123,173,21,74,41,107,221,37,38,121,84,104, + 119,100,73,99,16,120,168,156,8,51,49,137,26,48,63,115,30,0,173,139, + 215,148,211,141,65,171,79,249,115,236,248,246,243,113,14,38,187,168,10,75, + 44,67,91,114,59,202,190,63,83,10,97,137,109,9,48,76,137,55,75,54, + 113,245,187,112,110,242,89,62,247,246,103,57,119,97,76,170,103,4,173,118, + 173,53,87,224,249,116,107,202,177,141,192,164,65,131,231,3,31,121,149,60, + 8,130,124,1,248,197,191,120,153,55,95,63,189,183,77,24,56,210,171,206, + 230,170,214,73,118,135,180,213,28,171,213,230,72,119,73,215,167,81,189,113, + 69,98,94,7,239,27,217,113,86,30,233,197,113,33,200,208,54,116,9,61, + 99,163,42,55,246,165,83,93,24,69,216,202,35,34,51,162,104,222,142,183, + 54,130,203,164,247,142,0,211,192,110,60,244,98,204,124,130,82,170,82,167, + 178,162,22,16,219,7,149,227,132,158,201,27,194,161,16,194,104,198,86,242, + 239,121,16,73,132,105,99,54,153,210,49,170,255,40,157,218,49,56,10,44, + 177,102,100,228,121,30,74,169,138,208,4,128,200,142,190,73,215,54,66,115, + 164,44,7,54,85,56,239,182,115,82,52,43,143,69,50,98,173,5,139,100, + 132,89,123,24,53,64,235,17,90,143,121,48,187,196,50,154,160,182,7,172, + 230,213,52,165,189,241,41,222,139,40,125,145,163,227,26,169,77,92,26,150, + 90,26,159,36,34,12,27,52,183,41,236,184,10,114,19,98,1,226,94,37, + 61,217,106,15,249,137,31,251,188,21,150,168,109,46,46,233,116,12,129,215, + 194,15,2,60,63,32,240,124,188,192,71,155,66,92,98,223,55,209,244,190, + 53,104,240,156,224,219,38,3,235,250,130,239,184,34,248,31,254,222,91,156, + 59,200,12,140,179,8,32,78,236,44,55,215,147,100,152,238,69,117,85,236, + 167,169,230,43,123,107,237,238,188,205,186,92,15,177,139,150,237,131,43,22, + 81,125,230,83,152,181,141,56,252,158,70,92,134,104,71,162,46,38,251,143, + 57,24,17,239,55,111,83,88,89,213,69,93,21,225,133,26,50,153,90,18, + 87,51,223,18,96,217,175,114,84,181,182,178,143,21,62,144,98,148,245,160, + 101,46,253,102,99,163,65,215,175,230,82,160,121,218,117,34,72,131,9,233, + 162,32,42,188,121,37,245,40,122,170,170,230,236,180,43,105,82,165,212,158, + 117,23,88,114,83,106,104,235,108,139,49,122,49,206,201,109,149,12,137,148, + 198,15,135,40,70,60,208,253,202,107,139,105,2,213,72,124,55,138,42,94, + 16,238,181,6,8,142,50,161,211,237,82,91,64,181,153,123,255,164,207,240, + 199,223,254,175,248,201,63,247,5,128,156,220,220,113,157,115,9,216,201,221, + 45,161,118,90,3,44,177,105,125,188,203,74,131,6,13,158,29,124,164,4, + 103,213,148,133,76,223,108,21,159,253,161,151,249,91,191,244,54,7,167,46, + 162,185,157,69,111,97,137,220,74,182,73,59,127,91,212,143,204,217,200,23, + 246,30,83,221,81,201,173,222,185,101,216,137,4,174,6,215,81,61,34,53, + 102,238,221,67,76,36,157,190,37,139,88,217,40,72,12,37,225,139,251,254, + 140,206,164,88,29,100,210,251,89,81,47,115,98,20,35,226,122,55,144,140, + 80,204,202,227,168,84,243,19,195,163,74,195,247,113,208,137,135,152,75,22, + 73,150,214,140,183,86,12,178,181,66,159,60,138,115,219,15,167,204,187,109, + 228,216,18,24,144,111,59,87,161,37,167,109,175,32,223,137,64,51,102,26, + 245,80,51,123,46,201,196,126,142,158,231,33,76,27,189,24,193,196,126,93, + 146,145,189,81,89,107,145,215,217,180,30,177,216,156,103,149,12,81,219,3, + 12,19,14,227,33,27,117,166,226,82,82,133,179,101,179,209,120,223,88,2, + 247,50,119,146,176,115,140,57,168,179,124,227,58,150,212,110,103,63,179,236, + 102,41,222,19,149,24,51,224,51,175,255,108,222,243,230,142,233,188,39,211, + 77,246,94,234,144,94,187,133,210,93,90,189,209,94,107,0,52,211,3,26, + 52,120,94,240,145,215,224,202,233,155,118,223,46,94,127,225,175,252,40,191, + 240,139,159,231,133,3,159,56,73,49,76,242,6,240,162,17,124,186,211,62, + 80,46,126,148,35,56,155,214,156,239,116,1,36,225,57,180,14,243,58,79, + 85,100,178,225,126,100,23,165,53,146,246,50,147,234,79,38,121,154,210,193, + 165,21,235,16,43,81,144,85,185,65,58,155,42,240,40,24,4,86,82,111, + 79,114,208,70,251,0,0,32,0,73,68,65,84,96,184,71,136,142,136,192, + 74,241,203,125,122,131,179,91,219,224,221,50,123,82,254,184,101,242,115,19, + 115,201,32,216,96,100,145,74,204,197,53,25,42,127,139,125,47,207,232,112, + 176,119,62,149,243,204,162,55,32,143,218,28,30,232,62,135,113,214,42,33, + 6,123,2,160,58,180,67,47,255,12,79,68,238,99,122,39,187,17,250,16, + 171,152,156,29,75,108,152,51,124,234,227,63,198,47,252,133,31,230,141,239, + 59,195,131,111,173,43,117,183,118,187,77,171,43,9,59,29,186,93,131,23, + 248,244,186,251,205,249,77,122,178,65,131,231,11,223,150,20,101,16,4,180, + 90,86,85,217,235,13,232,250,130,255,254,239,124,156,159,255,133,191,68,171, + 117,165,68,100,81,233,199,226,164,217,93,22,33,97,123,95,205,232,250,150, + 92,163,183,232,36,21,171,174,51,225,13,0,100,175,164,12,28,216,168,100, + 26,245,8,147,98,145,207,197,20,53,61,110,222,200,166,91,23,73,27,207, + 77,5,42,109,103,28,99,149,72,163,108,85,85,86,29,122,173,21,211,225, + 120,223,232,56,223,215,166,98,134,60,111,247,42,158,146,101,148,219,15,212, + 112,136,152,129,200,46,195,79,108,141,113,206,22,166,59,54,84,222,28,49, + 145,72,166,12,55,197,93,195,208,139,109,58,211,155,87,90,23,250,237,30, + 126,79,179,214,2,217,233,163,117,149,28,213,214,22,14,39,161,71,104,94, + 160,155,221,64,196,225,199,179,45,54,4,155,135,78,54,37,77,79,154,245, + 198,142,99,73,53,106,171,54,115,135,124,215,199,63,207,95,254,171,63,199, + 235,223,125,192,114,118,155,83,47,85,107,125,113,44,241,100,191,34,44,241, + 125,175,18,189,53,228,214,160,193,243,135,111,91,13,206,152,152,109,150,46, + 84,42,193,111,205,248,175,255,187,151,249,59,127,235,63,199,16,210,105,223, + 192,70,99,157,236,231,40,255,177,11,87,68,33,52,113,110,39,251,41,171, + 64,118,89,240,49,210,36,97,43,14,64,206,129,54,102,19,101,150,97,33, + 112,14,128,41,47,163,87,115,60,49,39,188,97,221,86,188,207,216,253,184, + 212,28,128,24,77,113,195,193,103,100,41,72,151,2,140,54,69,221,236,172, + 135,88,119,136,218,177,141,160,142,58,200,193,204,18,164,177,162,140,65,86, + 43,84,106,136,82,67,186,114,194,90,31,49,159,218,232,104,16,120,185,117, + 152,145,167,44,169,56,196,109,107,181,149,141,224,153,188,104,9,40,220,10, + 91,111,203,8,8,74,181,62,49,194,155,207,153,119,219,164,25,217,30,141, + 67,123,236,249,57,186,114,194,34,81,44,146,17,131,85,7,51,159,32,198, + 153,120,68,140,64,101,132,229,234,116,106,88,184,154,28,105,228,101,152,47, + 50,53,104,86,171,92,37,67,12,19,82,94,193,180,70,132,230,5,162,232, + 12,177,188,196,90,205,80,189,49,158,127,30,41,174,97,204,136,121,60,173, + 164,161,135,3,129,218,246,209,137,135,148,49,29,153,77,8,136,166,165,254, + 55,91,119,19,34,2,190,14,92,5,174,65,86,191,221,239,115,59,3,230, + 76,78,110,159,124,205,39,213,179,189,113,56,237,118,155,241,164,141,223,202, + 110,60,188,33,210,235,239,145,219,174,107,137,82,199,27,9,52,104,208,224, + 217,192,183,141,224,132,8,179,133,161,136,110,206,246,60,126,252,79,45,248, + 27,127,253,175,96,204,27,192,4,155,98,250,144,130,204,172,112,160,144,124, + 239,35,222,20,117,62,25,40,194,48,155,58,93,26,122,25,69,105,182,136, + 58,217,184,69,154,94,100,125,244,29,68,158,93,160,210,82,142,48,23,87, + 76,132,109,7,144,237,74,127,91,39,147,208,203,177,117,254,128,106,99,54, + 100,18,254,137,220,241,98,220,133,149,194,187,84,229,32,216,236,207,108,3, + 59,254,6,246,12,156,43,189,114,106,88,212,226,178,180,163,25,106,6,103, + 183,152,161,177,132,53,109,177,214,2,49,47,174,165,43,139,20,92,42,38, + 197,248,27,111,86,241,195,44,111,3,144,110,10,165,234,110,106,18,32,138, + 206,144,246,251,164,253,62,162,171,80,76,114,233,191,157,23,104,235,103,97, + 203,195,9,128,102,179,107,0,116,250,67,164,55,224,193,92,211,207,46,49, + 23,151,152,89,54,106,233,14,154,41,112,157,226,198,167,62,173,249,93,31, + 255,60,127,237,47,188,201,39,95,243,241,229,136,100,187,201,7,153,66,230, + 90,147,69,101,45,95,230,19,3,234,160,84,53,202,174,155,92,223,160,65, + 131,103,11,223,70,51,61,43,103,119,234,189,145,55,165,213,221,240,234,39, + 175,240,139,127,241,50,127,255,127,254,121,190,231,245,215,128,49,97,224,122, + 162,202,74,202,178,89,110,25,109,220,29,189,47,71,196,177,36,142,237,101, + 12,186,129,245,37,52,51,12,183,233,4,251,78,38,243,149,32,26,188,64, + 239,150,65,207,237,98,54,126,169,181,87,163,130,34,170,83,43,31,181,242, + 173,208,164,83,85,116,10,211,38,220,138,170,67,137,123,125,73,173,184,90, + 250,21,130,25,4,30,158,55,183,34,144,83,69,100,234,200,37,86,162,226, + 7,105,70,48,29,22,219,205,85,8,106,136,55,45,34,62,17,150,212,138, + 59,117,53,71,104,229,115,112,233,82,51,52,213,237,179,227,150,21,160,190, + 57,130,137,196,111,223,167,43,13,102,237,225,15,50,53,39,19,20,19,142, + 98,69,39,59,255,174,87,236,207,53,110,219,89,109,118,176,105,188,189,137, + 253,140,219,140,70,151,0,152,205,236,13,202,193,217,1,145,238,211,105,167, + 121,123,128,141,220,238,160,185,141,224,107,217,158,111,131,120,23,196,189,226, + 125,50,3,48,231,249,75,63,247,51,252,229,191,250,115,92,254,222,79,2, + 16,197,119,9,90,246,186,250,221,1,237,118,155,78,123,84,113,44,81,186, + 155,167,38,221,196,110,176,158,147,187,233,201,70,104,210,160,193,179,143,147, + 229,123,79,8,173,139,187,93,165,20,157,78,135,217,114,12,74,35,152,114, + 254,165,17,127,242,103,46,114,241,194,91,252,227,127,120,145,255,231,159,254, + 51,192,45,82,83,202,210,254,78,219,39,218,17,84,184,26,156,93,244,200, + 189,3,141,14,179,201,206,247,48,92,35,78,92,26,212,46,108,161,121,129, + 241,57,197,252,171,255,130,214,149,76,144,33,61,250,122,194,42,121,0,42, + 100,0,54,250,202,122,227,202,196,21,28,5,40,229,35,39,192,52,171,141, + 109,224,104,219,103,210,74,172,50,145,45,131,177,6,36,152,49,139,164,32, + 148,165,244,96,105,199,246,44,18,197,32,200,134,155,102,234,68,49,178,199, + 140,149,176,41,209,112,131,25,9,220,30,28,191,121,247,97,56,182,41,182, + 52,152,192,10,134,189,22,233,74,226,145,245,203,101,251,156,47,102,192,41, + 214,26,140,244,236,200,160,245,25,214,221,122,169,187,89,121,168,108,216,232, + 208,139,65,89,3,229,193,41,9,104,212,100,194,90,131,236,244,73,230,213, + 26,229,36,244,88,100,133,191,133,146,164,156,98,216,206,196,42,233,13,194, + 214,61,54,219,242,231,155,153,33,171,171,192,25,194,80,163,213,154,197,210, + 42,41,163,141,143,16,179,172,37,224,14,134,219,8,62,4,174,131,184,145, + 31,183,213,30,178,221,204,49,102,192,167,62,254,99,252,248,79,252,44,111, + 190,174,57,123,254,128,84,207,72,182,155,92,84,146,168,45,155,205,134,94, + 191,159,147,155,195,104,40,247,84,147,173,86,67,100,13,26,60,175,248,182, + 16,156,148,50,39,57,207,243,216,110,83,250,157,83,40,101,88,173,22,72, + 177,162,45,98,94,127,179,195,47,93,254,17,126,232,237,75,252,242,255,246, + 27,252,238,87,126,155,48,232,19,39,55,113,139,96,180,73,41,71,109,176, + 201,83,148,46,221,20,36,93,82,18,214,66,230,206,242,182,142,103,103,129, + 157,157,188,204,23,126,228,71,128,53,203,249,138,225,43,47,162,53,72,57, + 195,168,1,10,77,111,9,43,30,64,198,103,211,168,199,112,229,33,74,162, + 148,57,91,134,100,66,18,161,81,106,1,106,200,16,80,91,75,56,67,90, + 164,221,211,136,137,102,157,213,225,92,3,116,23,205,26,9,235,5,162,123, + 138,69,242,128,33,133,24,4,49,130,120,77,232,34,206,184,13,147,4,48, + 149,40,47,13,38,44,136,242,250,30,88,33,75,87,194,188,149,50,192,71, + 77,38,246,117,89,122,208,185,250,155,5,8,111,129,94,140,17,158,135,234, + 167,172,181,96,56,145,249,4,0,95,41,204,202,67,12,45,225,13,123,45, + 212,209,8,179,242,89,73,131,64,161,150,34,175,189,41,38,232,45,200,208, + 166,49,21,19,250,222,8,80,104,160,213,27,241,202,43,33,63,241,227,138, + 223,252,226,111,112,231,254,237,236,179,25,219,127,189,203,123,223,33,191,165, + 232,180,83,4,71,232,44,34,23,92,5,102,180,194,25,219,141,37,182,77, + 108,144,230,128,176,117,133,31,251,225,31,226,115,111,219,217,110,237,238,45, + 162,248,174,253,126,180,218,248,114,68,223,124,8,18,84,39,192,247,125,188, + 204,95,178,236,55,89,141,220,178,33,174,77,180,214,160,193,115,137,111,11, + 193,149,33,165,164,213,242,81,74,225,121,130,94,207,222,209,203,32,69,46, + 37,105,251,38,127,244,143,6,92,188,240,22,191,250,127,93,226,159,252,191, + 191,78,124,127,73,145,158,220,173,117,20,119,220,238,206,188,213,149,180,195, + 30,44,238,211,237,109,137,54,215,129,152,179,147,1,127,242,71,63,197,219, + 63,250,57,62,243,93,9,66,75,146,245,132,105,60,103,216,51,76,23,19, + 198,131,35,150,64,95,218,52,222,34,17,244,38,192,129,135,82,41,222,106, + 142,82,153,153,48,29,12,160,196,8,201,125,230,42,100,144,165,54,149,26, + 178,214,71,48,222,210,5,204,109,137,62,55,68,120,139,188,1,122,137,37, + 85,176,164,39,186,167,152,79,31,48,2,58,125,131,198,70,188,110,57,85, + 74,129,24,17,181,23,132,19,137,37,172,12,211,23,80,178,92,47,18,89, + 239,194,221,189,207,160,44,231,7,155,151,214,122,132,231,45,108,234,180,171, + 72,55,7,120,220,99,173,5,131,172,137,123,173,34,186,106,136,143,141,44, + 111,190,32,56,232,244,48,204,172,26,181,20,89,203,112,66,180,242,233,142, + 70,152,108,138,158,246,45,169,122,129,207,235,223,123,142,191,245,146,207,235, + 191,106,248,191,127,245,3,190,250,245,175,103,17,182,253,124,71,35,251,26, + 165,151,120,178,143,74,139,212,116,216,186,71,188,117,55,44,17,155,216,32, + 56,195,54,14,233,180,125,62,249,137,31,227,11,63,252,121,222,120,253,60, + 167,95,186,71,178,189,74,49,244,214,146,155,16,17,75,198,244,250,125,134, + 62,36,126,144,215,221,194,176,147,59,149,136,150,87,17,150,52,228,214,160, + 193,243,139,111,59,193,57,184,72,174,12,233,245,25,77,176,63,131,41,23, + 254,230,101,126,242,103,47,241,206,239,190,207,63,248,7,255,7,139,181,79, + 180,113,182,94,99,10,178,179,11,167,171,169,0,172,22,115,150,235,5,190, + 120,143,115,7,240,231,127,241,207,243,67,159,123,133,55,191,59,100,27,125, + 147,237,210,70,125,50,156,160,99,48,155,25,195,222,81,238,149,184,4,228, + 76,210,69,163,128,142,2,49,159,163,134,67,59,246,69,143,24,4,133,136, + 5,176,146,251,192,146,155,152,11,232,159,202,203,136,203,115,89,191,92,70, + 110,193,60,100,211,183,231,127,228,173,56,175,58,196,153,103,101,50,26,35, + 47,130,192,70,189,106,101,7,159,250,93,143,253,241,170,85,136,185,64,78, + 102,160,21,8,67,207,255,24,186,37,89,73,99,47,170,116,14,101,4,243, + 144,187,7,146,211,104,235,70,114,174,135,119,245,94,101,155,193,170,131,194, + 70,113,203,210,66,111,214,30,42,217,111,161,72,251,125,54,74,210,247,96, + 170,60,14,250,146,148,14,42,73,241,184,207,133,11,7,252,252,127,249,159, + 241,133,183,223,230,63,124,229,42,255,250,95,252,6,255,244,159,255,83,230, + 11,195,108,54,227,224,76,31,159,14,233,150,60,186,50,230,14,209,118,149, + 213,238,50,39,23,66,194,246,249,60,98,187,242,9,69,208,106,147,108,111, + 2,237,252,123,209,237,12,232,155,41,27,111,140,12,108,26,219,147,125,68, + 104,232,101,86,92,101,114,219,85,77,54,228,214,160,193,243,141,111,59,193, + 149,109,141,130,192,46,215,42,93,211,239,156,98,235,109,153,207,62,4,160, + 55,24,128,39,184,242,241,7,188,116,254,2,127,252,39,255,39,126,243,223, + 188,207,183,110,166,92,123,247,3,174,94,191,202,38,62,228,254,131,51,249, + 254,218,157,9,94,106,216,174,53,173,110,192,167,95,251,56,191,244,63,126, + 140,207,126,254,10,163,254,109,84,146,34,211,35,186,66,209,29,132,76,23, + 100,20,98,35,146,181,26,33,56,98,28,109,129,16,53,158,177,70,50,24, + 141,80,51,187,141,152,11,76,182,208,45,186,138,174,156,176,146,30,189,238, + 25,224,144,69,50,162,183,204,234,107,107,16,221,123,204,207,124,6,201,12, + 173,71,121,196,118,79,116,56,179,140,72,134,112,160,122,128,70,47,198,200, + 243,183,97,14,122,117,6,111,124,7,200,124,34,87,224,119,41,220,86,198, + 48,203,250,216,6,89,22,109,173,5,61,156,152,69,176,214,208,5,248,184, + 70,118,6,232,104,89,114,26,25,19,41,77,47,152,227,77,207,145,12,99, + 14,84,15,217,55,232,104,137,188,179,204,230,228,213,247,228,117,84,143,35, + 34,140,25,113,200,26,167,17,85,217,111,174,246,214,207,196,37,7,89,68, + 22,120,62,157,150,32,241,53,90,45,241,36,124,231,235,167,56,247,242,89, + 126,252,143,255,89,126,241,171,111,129,119,153,131,51,215,136,86,119,109,205, + 174,213,33,72,109,125,53,104,249,76,6,62,47,190,248,26,151,47,254,41, + 46,93,185,192,75,47,251,188,242,202,5,94,124,201,103,25,47,192,204,217, + 196,170,82,103,115,109,0,11,62,70,11,104,183,39,89,43,128,34,104,157, + 198,147,235,44,45,89,157,20,80,215,18,80,254,46,55,164,215,160,193,243, + 3,97,140,169,215,69,127,27,96,235,114,246,112,229,30,185,56,142,73,211, + 132,52,85,196,217,176,209,56,142,217,166,26,149,38,196,145,125,108,179,217, + 183,236,10,100,151,86,87,86,28,224,157,143,32,128,76,51,225,70,114,143, + 237,210,182,6,8,61,99,179,88,210,246,108,196,50,204,72,72,180,237,182, + 82,22,106,78,71,80,14,174,142,38,60,219,119,213,81,61,91,87,219,193, + 98,99,221,244,59,158,36,82,154,48,61,200,247,223,94,198,36,195,152,190, + 204,142,55,154,17,204,166,204,6,134,65,224,33,122,138,228,244,125,130,59, + 175,32,110,205,153,253,187,21,189,63,250,178,85,59,102,112,99,105,220,57, + 228,231,123,103,201,205,133,199,248,74,47,123,207,179,116,97,70,112,157,108, + 241,110,47,99,54,253,48,191,86,119,157,194,91,208,235,167,136,185,96,213, + 135,112,49,36,242,86,57,81,186,125,150,235,111,200,9,11,49,206,107,111, + 83,229,209,233,157,165,235,111,240,195,73,238,200,47,189,66,229,153,166,246, + 243,137,227,8,149,164,36,106,191,53,33,40,69,89,187,219,70,177,253,46, + 196,81,84,249,94,24,211,201,135,150,130,53,0,112,245,182,114,74,18,234, + 155,185,129,143,44,122,147,178,153,248,253,255,183,119,191,33,182,220,245,29, + 199,63,51,115,206,217,115,206,158,61,187,107,110,98,149,168,177,4,137,37, + 210,63,210,216,7,17,140,5,69,200,3,91,105,3,82,74,30,136,180,152, + 250,160,20,250,200,106,250,200,66,105,107,75,161,77,139,213,86,69,209,182, + 86,132,82,136,98,176,208,98,37,82,8,233,85,34,73,19,106,114,111,162, + 251,239,252,219,115,206,204,175,15,102,126,51,115,230,204,222,157,171,247,230, + 220,124,239,251,245,100,247,236,254,246,220,179,217,205,188,247,55,51,191,25, + 96,147,94,182,93,148,94,24,70,90,44,22,138,162,64,113,156,110,176,187, + 221,174,102,217,33,151,110,183,167,241,36,80,59,90,74,90,106,186,212,218, + 221,149,79,79,79,229,92,79,59,122,94,139,246,150,90,173,210,213,57,162, + 161,226,68,106,109,79,180,156,197,74,90,251,149,89,220,76,46,220,213,214, + 142,20,38,233,70,117,148,72,219,173,67,57,237,41,116,135,74,146,61,109, + 141,252,49,160,174,22,195,153,218,199,233,219,145,164,225,139,207,229,187,32, + 39,217,40,31,146,241,98,152,206,8,179,141,250,241,56,144,20,41,14,165, + 65,246,248,86,165,187,8,181,39,77,163,177,6,199,129,14,163,11,218,59, + 121,73,73,118,183,152,233,75,59,106,75,202,46,207,168,150,59,208,34,219, + 53,59,30,181,228,226,157,60,178,62,176,125,37,26,189,122,168,219,117,172, + 145,86,227,38,165,167,243,79,98,105,57,59,214,48,219,93,154,36,123,10, + 195,195,149,217,102,114,180,171,137,66,245,79,18,157,14,2,185,209,106,220, + 252,115,85,237,68,137,156,164,189,40,150,107,133,10,178,229,1,137,75,255, + 99,248,205,189,191,121,168,143,92,212,78,67,54,203,126,9,218,81,113,193, + 227,126,79,74,178,174,199,73,95,81,123,162,168,157,126,126,58,59,93,251, + 221,72,103,160,197,29,185,203,103,74,182,163,214,153,113,243,216,53,9,216, + 241,178,206,224,170,22,139,133,226,216,41,142,211,93,151,126,3,183,92,46, + 52,26,141,86,62,230,255,98,175,94,194,201,95,253,189,60,123,243,27,49, + 73,74,178,99,120,126,38,23,46,95,208,193,73,79,97,242,76,62,38,204, + 46,91,146,204,14,180,127,97,174,248,71,235,55,228,244,130,173,131,82,252, + 210,93,143,146,180,211,42,206,114,60,89,30,106,167,181,167,113,205,222,190, + 237,108,43,223,93,60,159,207,226,162,160,88,203,22,238,103,51,169,225,129, + 150,7,111,144,190,23,105,188,124,94,131,219,95,173,113,54,1,242,103,68, + 86,229,39,145,132,71,43,113,59,30,7,249,235,9,59,233,139,234,45,67, + 185,174,211,104,116,164,97,118,63,61,63,155,243,51,75,31,206,242,241,59, + 31,203,73,188,155,207,222,146,112,79,46,220,213,73,28,106,16,237,42,26, + 164,149,246,179,55,127,101,144,58,254,231,235,103,238,101,113,210,215,118,223, + 229,187,17,171,51,124,169,254,247,162,124,39,130,234,239,133,15,155,164,235, + 54,115,243,152,193,1,155,181,241,192,121,62,116,229,200,213,109,208,164,98, + 163,230,213,109,196,60,63,75,72,78,71,121,228,14,78,2,221,210,123,62, + 31,115,120,50,211,133,65,113,246,225,193,97,105,99,155,173,135,11,230,171, + 187,42,195,78,162,222,50,92,139,88,156,157,65,24,102,147,74,127,250,252, + 116,220,210,86,244,98,190,59,84,90,141,156,23,5,199,114,67,167,73,114, + 144,30,239,27,181,210,69,233,175,30,104,182,115,188,114,207,181,42,63,243, + 244,39,179,28,143,3,13,6,233,184,217,210,21,167,243,119,210,215,53,12, + 143,228,186,78,193,44,88,9,183,223,117,89,204,238,86,131,122,60,14,20, + 116,223,144,253,135,72,119,79,246,163,93,57,237,231,113,11,162,29,181,250, + 161,122,173,112,45,112,233,140,189,248,57,167,111,215,215,229,149,127,142,173, + 86,251,204,223,9,255,251,16,181,218,138,151,139,149,181,109,229,93,146,229, + 147,73,36,173,196,237,122,92,103,146,192,1,155,245,178,239,162,172,242,55, + 222,236,116,34,205,231,82,182,237,209,108,166,149,141,98,156,244,21,133,147, + 218,231,40,54,92,197,204,205,127,109,190,97,212,32,63,125,98,119,95,74, + 150,69,215,157,142,180,44,93,122,41,110,205,20,45,255,55,125,16,166,139, + 190,93,103,53,40,139,185,20,151,246,140,250,112,156,78,111,213,86,244,162, + 166,211,226,100,152,229,100,71,219,59,78,97,178,212,72,251,74,102,7,26, + 134,71,154,181,95,163,32,57,80,249,158,231,131,80,10,93,32,41,80,114, + 52,204,246,116,142,20,237,238,107,121,176,191,50,59,27,47,134,90,204,34, + 13,183,157,142,199,129,134,219,78,47,6,61,13,130,93,205,150,78,173,174, + 52,94,150,226,20,238,43,204,191,205,3,29,39,187,210,36,125,221,219,129, + 211,172,29,200,117,179,171,147,76,139,53,109,193,214,129,18,191,128,123,178, + 39,133,82,144,221,169,32,9,247,212,207,103,111,197,63,229,227,150,184,158, + 186,189,64,210,82,237,184,167,160,178,112,186,250,115,170,170,206,252,90,173, + 72,221,110,79,179,217,52,255,185,151,181,183,182,243,93,152,213,176,249,247, + 253,46,201,235,25,55,0,155,183,209,25,156,180,122,226,73,28,39,181,187, + 44,165,213,191,244,171,187,179,202,199,85,210,183,171,11,118,79,147,69,254, + 28,73,60,82,24,13,52,31,167,51,41,63,171,75,223,127,97,229,121,143, + 142,46,233,150,225,169,126,120,188,149,239,198,172,51,29,183,242,75,84,229, + 223,87,184,167,241,40,80,127,56,212,228,248,88,253,225,80,65,114,180,242, + 60,187,131,75,90,78,38,10,221,161,182,251,115,77,103,105,192,253,177,176, + 190,18,141,146,125,13,95,124,78,199,183,166,39,173,248,107,63,46,102,217, + 157,182,195,61,133,157,68,201,188,152,45,132,157,36,63,187,81,97,54,123, + 220,25,232,244,100,164,222,246,82,73,152,198,170,250,61,237,14,46,233,232, + 56,173,246,118,235,80,227,229,158,6,203,35,141,90,171,113,159,78,111,205, + 159,103,236,148,207,222,146,214,158,218,221,244,117,180,119,118,215,102,111,91, + 97,59,95,103,230,127,198,94,249,103,221,132,159,205,165,95,91,252,62,212, + 253,46,164,31,47,102,109,233,219,98,153,195,245,10,28,51,56,96,179,54, + 30,184,178,36,73,20,199,113,126,242,137,223,8,186,121,156,71,74,210,185, + 127,233,251,13,105,153,43,221,8,245,52,89,104,126,90,132,109,57,139,53, + 220,158,105,116,84,108,40,203,177,155,184,104,229,12,204,58,46,220,85,144, + 28,201,133,235,187,14,211,251,223,29,172,125,125,152,28,106,48,127,38,127, + 236,119,89,122,189,110,122,91,151,229,229,36,223,237,40,73,73,176,167,96, + 86,127,215,241,60,70,165,25,214,149,94,111,217,149,34,94,230,159,211,127, + 175,254,132,147,242,238,201,157,97,58,139,242,129,43,199,173,170,28,59,55, + 143,215,126,118,229,207,149,127,15,164,245,223,133,234,140,175,26,182,244,253, + 98,41,192,245,60,161,132,192,1,155,117,67,5,78,42,34,39,105,101,54, + 39,213,111,224,170,234,118,91,73,82,187,53,209,124,82,186,10,74,148,29, + 199,25,157,168,31,173,222,250,164,28,58,41,93,98,208,207,150,29,76,92, + 186,65,60,29,173,222,87,205,7,204,111,236,3,29,168,51,216,206,199,109, + 13,210,203,138,205,71,99,93,24,92,214,75,163,219,242,227,126,139,203,255, + 163,91,94,183,167,31,62,119,168,96,235,64,219,253,185,198,147,142,182,251, + 115,45,47,23,7,249,166,59,63,181,22,182,227,164,56,230,87,190,92,150, + 87,141,209,89,46,12,46,235,135,199,91,186,101,120,186,114,12,114,127,175, + 151,207,96,203,177,108,18,55,73,234,14,118,86,118,77,150,143,123,73,202, + 255,152,41,139,227,197,90,8,253,199,234,102,247,85,91,97,91,167,201,162, + 230,12,201,235,115,50,201,89,8,28,176,89,55,92,224,202,170,177,75,223, + 22,179,58,73,43,27,206,178,226,58,130,115,37,73,103,109,67,186,156,174, + 110,32,203,187,49,37,229,187,48,189,233,220,201,197,171,247,28,91,204,234, + 23,69,75,82,187,27,106,49,75,242,93,118,85,139,89,162,112,153,206,152, + 246,119,166,58,60,153,105,114,124,172,237,129,211,120,84,63,59,91,121,253, + 193,45,87,252,124,220,223,213,94,84,204,90,147,86,253,76,206,191,190,186, + 239,197,191,190,147,147,145,182,247,111,207,31,151,159,111,209,234,169,211,10, + 243,147,124,36,169,19,196,234,239,94,200,199,86,79,234,136,162,112,237,246, + 51,213,159,79,57,130,117,227,170,187,56,171,58,157,78,62,126,83,87,38, + 33,112,192,102,221,208,129,243,252,217,150,229,141,96,221,95,249,210,234,95, + 233,101,126,131,234,55,120,254,185,170,161,243,198,243,226,132,150,229,50,206, + 151,27,120,211,249,234,127,182,94,39,200,35,216,239,13,87,198,244,58,65, + 254,216,191,47,173,30,255,243,142,14,234,119,129,158,156,140,214,62,118,26, + 189,86,91,241,15,242,248,156,21,49,73,107,161,245,107,212,182,179,165,1, + 126,189,224,104,17,169,223,27,230,175,109,180,136,242,248,249,104,75,82,208, + 221,86,75,83,45,213,91,89,92,31,110,13,20,6,83,117,182,210,153,93, + 121,119,113,53,112,237,118,123,229,74,55,94,28,39,249,207,175,26,194,98, + 76,17,186,43,253,30,164,239,111,102,109,27,129,3,54,235,21,17,184,178, + 242,210,2,169,8,150,84,156,44,176,88,44,106,79,28,240,31,79,23,154, + 135,43,209,75,223,214,31,243,147,206,62,157,61,61,155,175,151,191,149,178, + 37,9,91,3,53,17,207,75,119,18,207,86,117,251,48,250,171,123,184,217, + 88,139,86,79,203,121,164,32,156,41,106,181,181,156,103,39,81,116,86,95, + 143,159,77,149,175,12,82,94,56,189,50,54,136,229,130,34,138,129,59,204, + 95,119,57,232,115,23,41,94,172,95,105,164,215,9,52,119,81,30,54,175, + 186,214,76,90,63,185,227,106,78,236,40,255,220,242,239,169,242,184,204,7, + 205,95,90,107,83,151,216,34,112,192,102,189,226,2,231,249,141,158,159,1, + 92,237,6,44,73,146,236,182,62,113,126,217,48,175,201,113,191,234,201,13, + 62,124,229,69,201,229,117,92,233,231,138,141,250,209,52,212,78,22,196,233, + 73,49,107,155,45,227,124,57,132,143,138,143,213,124,121,246,46,209,114,216, + 218,157,87,21,207,145,45,150,30,79,2,109,247,93,30,212,168,83,94,24, + 189,254,223,174,110,93,218,120,18,104,103,123,162,201,84,107,81,243,207,83, + 93,239,38,173,159,224,113,173,207,90,188,81,175,17,73,224,128,205,122,197, + 6,238,90,240,247,172,75,111,229,19,174,132,174,28,185,83,151,70,193,101, + 179,154,196,109,43,12,198,107,239,123,203,229,226,204,43,119,120,254,68,8, + 255,214,127,93,57,44,97,48,213,201,56,93,255,87,158,65,69,237,86,254, + 184,60,43,235,4,177,166,241,78,58,62,233,171,91,10,151,15,90,93,204, + 206,122,173,213,89,107,60,111,41,234,44,243,183,197,215,175,158,146,239,151, + 104,148,111,61,83,55,211,182,142,192,1,155,117,83,7,78,42,223,125,220, + 229,129,75,23,157,215,29,27,90,63,157,221,205,99,205,219,233,217,153,157, + 69,122,69,141,105,220,81,47,154,231,239,71,221,116,195,190,21,164,81,56, + 117,45,13,218,199,43,103,117,74,197,113,191,234,236,41,12,166,90,206,234, + 239,192,45,73,173,110,164,229,44,86,171,27,41,113,61,133,193,84,137,75, + 175,232,114,222,76,210,171,91,55,88,229,131,119,165,120,87,227,38,173,30, + 23,245,199,222,110,6,4,14,216,44,2,151,172,239,246,243,51,186,244,253, + 98,241,185,63,77,189,219,149,234,206,82,111,183,38,90,44,251,107,31,47, + 127,221,98,145,190,239,199,86,215,231,85,85,103,81,229,93,160,229,199,101, + 231,205,30,203,75,41,234,214,157,185,74,220,23,209,84,237,184,151,191,190, + 106,12,171,75,51,206,10,219,205,118,33,99,2,7,108,214,77,31,56,207, + 135,46,61,46,151,200,185,105,229,243,233,82,3,127,79,59,169,62,114,94, + 249,146,99,229,199,82,26,185,58,113,188,200,119,135,74,233,140,112,26,119, + 214,118,135,214,237,22,245,159,239,69,115,157,38,11,133,237,101,30,165,179, + 214,6,94,173,179,22,97,159,119,54,171,143,218,89,39,255,88,69,224,128, + 205,34,112,103,40,78,98,169,206,240,138,203,138,149,213,173,237,170,170,27, + 19,134,243,149,224,149,119,143,158,181,214,171,186,6,176,26,30,63,99,60, + 43,60,229,227,97,229,247,203,154,44,201,240,207,119,22,127,18,208,205,52, + 107,43,35,112,192,102,17,184,115,212,7,174,180,150,45,59,19,179,80,183, + 193,47,199,34,89,89,206,224,119,133,158,119,252,47,253,218,245,224,93,41, + 102,101,237,246,66,65,208,173,9,115,148,47,166,175,255,55,93,54,174,62, + 130,213,143,151,191,183,242,227,155,17,129,3,54,139,192,93,35,229,229,10, + 103,45,93,168,238,162,43,63,62,107,77,87,157,43,69,231,74,234,254,237, + 243,222,214,45,196,78,95,67,17,202,242,120,20,8,28,176,89,4,238,21, + 34,73,226,252,68,13,31,23,127,124,171,46,46,215,50,56,117,187,25,111, + 230,93,143,77,17,56,96,179,54,126,63,56,52,231,119,103,54,57,27,241, + 90,206,166,234,254,45,226,6,224,70,199,12,14,184,78,152,193,1,155,197, + 255,129,0,0,147,8,28,0,192,164,150,234,207,107,255,137,132,97,200,110, + 79,0,192,70,93,213,73,38,65,16,236,72,250,21,73,247,43,13,227,191, + 57,231,254,246,122,188,48,0,0,126,18,65,147,115,76,130,32,8,37,189, + 67,210,215,36,253,151,164,95,44,125,250,159,157,115,191,90,30,207,12,14, + 0,176,105,77,3,247,160,164,191,203,30,118,36,61,37,233,245,217,227,19, + 231,220,176,60,158,192,1,0,54,237,220,147,76,130,32,184,75,69,220,254, + 221,57,183,144,244,54,73,143,73,250,158,164,183,95,191,151,7,0,192,143, + 167,201,49,184,79,151,222,255,23,73,114,206,189,160,116,151,37,0,0,55, + 164,43,238,162,12,130,224,130,164,103,37,245,178,15,253,180,115,238,233,243, + 158,148,93,148,0,128,77,171,157,193,5,65,240,41,73,125,73,187,42,226, + 38,73,127,25,4,193,72,233,229,241,63,236,156,187,116,221,95,33,0,0, + 63,134,181,99,112,65,16,108,73,242,23,26,28,148,62,53,147,52,81,186, + 60,96,46,105,253,142,155,0,0,220,32,206,219,69,249,37,73,239,203,30, + 190,32,233,118,231,220,217,55,15,203,176,139,18,0,176,105,231,157,100,242, + 222,210,251,207,57,231,226,224,11,122,147,156,126,67,255,253,175,31,209,207, + 190,251,11,250,110,248,126,221,165,59,117,249,233,239,234,182,55,74,23,117, + 149,119,41,3,0,224,218,59,115,153,64,118,130,73,249,158,40,255,36,73, + 186,168,167,244,93,125,76,63,247,158,71,244,31,95,124,64,146,228,220,127, + 234,182,55,62,46,37,191,115,61,95,44,0,0,77,93,105,6,119,79,229, + 241,87,86,30,93,212,111,75,250,160,238,210,179,90,46,238,213,83,157,139, + 92,187,25,0,112,163,184,82,145,222,86,126,224,156,123,114,109,196,107,222, + 36,73,139,52,110,0,0,220,56,174,20,184,187,75,239,127,185,118,196,232, + 71,210,108,124,199,181,124,65,0,0,92,11,121,224,130,32,120,109,144,201, + 62,244,230,210,184,79,103,99,2,221,153,45,29,184,75,223,215,91,126,249, + 163,122,226,81,233,13,90,185,22,37,0,0,155,22,74,249,194,238,255,147, + 148,40,93,224,45,21,129,187,168,226,18,93,78,223,250,194,145,14,191,24, + 107,170,159,87,160,175,105,62,147,122,238,25,189,89,191,255,50,191,118,0, + 0,206,20,56,231,20,4,65,121,221,218,227,146,254,66,233,5,150,159,149, + 116,103,118,129,229,244,11,62,171,219,245,148,126,176,242,44,111,210,59,244, + 61,125,35,31,243,112,120,238,90,57,0,0,174,39,31,184,63,148,244,145, + 202,231,254,68,210,31,56,231,174,250,138,37,44,244,6,0,108,90,126,37, + 147,32,8,238,81,186,203,242,212,57,247,157,159,228,73,9,28,0,96,211, + 130,39,159,124,178,81,140,46,95,190,220,232,9,159,120,162,217,184,79,126, + 242,245,231,15,186,10,143,63,254,75,141,198,125,252,227,127,214,104,220,83, + 79,221,223,104,220,157,119,126,181,209,184,193,160,201,157,137,164,15,125,232, + 67,141,198,21,231,2,93,27,31,252,96,179,191,73,222,255,254,199,26,141, + 123,230,153,103,26,141,187,251,115,159,107,52,174,169,183,222,113,71,179,129, + 223,105,248,55,220,7,62,208,104,216,35,159,249,76,163,113,255,248,167,189, + 243,7,93,133,59,222,122,71,163,113,127,125,79,179,239,247,145,111,53,251, + 126,63,243,217,102,223,239,3,135,205,174,253,240,208,67,191,214,104,220,135, + 63,252,253,70,227,254,252,19,119,54,26,247,199,111,255,122,163,113,247,78, + 154,173,132,250,220,189,239,106,52,238,23,238,157,52,26,119,161,255,124,163, + 113,247,223,255,238,70,227,190,172,219,27,141,251,189,7,95,213,104,220,35, + 111,124,223,249,131,36,253,230,207,124,229,252,65,146,62,255,154,79,52,26, + 247,232,163,143,54,26,199,202,108,0,128,73,4,14,0,96,18,129,3,0, + 152,68,224,0,0,38,17,56,0,128,73,4,14,0,96,18,129,3,0,152, + 68,224,0,0,38,17,56,0,128,73,65,229,66,203,0,0,152,16,124,253, + 225,135,27,5,238,248,163,127,211,232,9,223,171,191,106,52,238,83,159,122, + 169,209,184,7,31,124,176,209,184,227,227,102,157,254,246,183,143,26,141,187, + 239,190,221,70,227,30,123,172,217,165,171,154,94,194,236,238,187,111,187,166, + 207,247,208,67,191,222,104,156,115,31,107,52,238,226,197,254,249,131,36,61, + 251,108,179,75,147,189,235,93,191,219,104,220,125,247,189,163,209,184,215,5, + 175,107,52,238,233,197,211,141,198,29,28,28,52,26,119,233,210,165,70,227, + 222,243,150,247,52,26,167,102,63,94,169,217,63,171,191,127,233,31,26,141, + 251,163,134,151,178,251,234,111,125,169,209,184,111,238,126,179,209,184,166,255, + 31,125,254,243,79,52,26,247,206,119,222,125,254,32,73,15,60,112,95,163, + 113,120,101,98,23,37,0,192,36,2,7,0,48,137,192,1,0,76,34,112, + 0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0, + 0,147,8,28,0,192,36,46,213,5,0,48,137,25,28,0,192,36,2,7, + 0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0, + 48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48, + 137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137, + 192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192, + 1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1, + 0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0, + 76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76, + 34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34, + 112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112, + 0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0, + 0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0, + 147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147, + 8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8, + 28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28, + 0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0, + 192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192, + 36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36, + 2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2, + 7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7, + 0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0, + 48,137,192,1,0,142,189,15,69,0,0,2,156,73,68,65,84,76,34,112, + 0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0, + 0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0, + 147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147, + 8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8, + 28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28, + 0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0, + 192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192, + 36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36, + 2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2, + 7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7, + 0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0, + 48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48, + 137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137, + 192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192, + 1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1, + 0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0, + 76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76, + 34,112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34, + 112,0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112, + 0,0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0, + 0,147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0, + 147,8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147, + 8,28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8, + 28,0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28, + 0,192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0, + 192,36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192, + 36,2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36, + 2,7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2, + 7,0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7, + 0,48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0, + 48,137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48, + 137,192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,137, + 192,1,0,76,34,112,0,0,147,8,28,0,192,36,2,7,0,48,233,255, + 1,45,69,241,160,158,199,201,193,0,0,0,0,73,69,78,68,174,66,96, + 130, diff --git a/src/toolbars/ControlToolBar.cpp b/src/toolbars/ControlToolBar.cpp index 3337dd0a1..3aa0ce7f6 100644 --- a/src/toolbars/ControlToolBar.cpp +++ b/src/toolbars/ControlToolBar.cpp @@ -49,6 +49,7 @@ #include #include "ControlToolBar.h" +#include "TranscriptionToolBar.h" #include "MeterToolBar.h" #include "../AColor.h" @@ -72,7 +73,6 @@ AudacityProject *ControlToolBar::mBusyProject = NULL; BEGIN_EVENT_TABLE(ControlToolBar, ToolBar) EVT_CHAR(ControlToolBar::OnKeyEvent) - EVT_TIMER(wxID_ANY, ControlToolBar::OnTimer) EVT_BUTTON(ID_PLAY_BUTTON, ControlToolBar::OnPlay) EVT_BUTTON(ID_STOP_BUTTON, ControlToolBar::OnStop) EVT_BUTTON(ID_RECORD_BUTTON, ControlToolBar::OnRecord) @@ -89,8 +89,6 @@ END_EVENT_TABLE() ControlToolBar::ControlToolBar() : ToolBar(TransportBarID, _("Transport"), wxT("Control")) { - mShiftKeyTimer.SetOwner(this); - mPaused = false; gPrefs->Read(wxT("/GUI/ErgonomicTransportButtons"), &mErgonomicTransportButtons, true); @@ -102,31 +100,12 @@ ControlToolBar::ControlToolBar() ControlToolBar::~ControlToolBar() { - wxTheApp->Disconnect( wxEVT_KEY_DOWN, - wxKeyEventHandler( ControlToolBar::OnKeyDown ), - NULL, - this ); - - wxTheApp->Disconnect( wxEVT_KEY_UP, - wxKeyEventHandler( ControlToolBar::OnKeyUp ), - NULL, - this ); } void ControlToolBar::Create(wxWindow * parent) { ToolBar::Create(parent); - - wxTheApp->Connect( wxEVT_KEY_DOWN, - wxKeyEventHandler( ControlToolBar::OnKeyDown ), - NULL, - this ); - - wxTheApp->Connect( wxEVT_KEY_UP, - wxKeyEventHandler( ControlToolBar::OnKeyUp ), - NULL, - this ); } // This is a convenience function that allows for button creation in @@ -148,27 +127,16 @@ AButton *ControlToolBar::MakeButton(teBmps eEnabledUp, teBmps eEnabledDown, teBm return r; } -void ControlToolBar::MakeLoopImage() +// static +void ControlToolBar::MakeAlternateImages(AButton &button, int idx, + teBmps eEnabledUp, + teBmps eEnabledDown, + teBmps eDisabled) { - // JKC: See ToolBar::MakeButton() for almost identical code. Condense?? - - wxSize Size1( theTheme.ImageSize( bmpRecoloredUpLarge )); - wxSize Size2( theTheme.ImageSize( bmpLoop )); - - int xoff = (Size1.GetWidth() - Size2.GetWidth())/2; - int yoff = (Size1.GetHeight() - Size2.GetHeight())/2; - - wxImage * up2 = OverlayImage(bmpRecoloredUpLarge, bmpLoop, xoff, yoff); - wxImage * hilite2 = OverlayImage(bmpRecoloredHiliteLarge, bmpLoop, xoff, yoff); - wxImage * down2 = OverlayImage(bmpRecoloredDownLarge, bmpLoop, xoff + 1, yoff + 1); - wxImage * disable2 = OverlayImage(bmpRecoloredUpLarge, bmpLoopDisabled, xoff, yoff); - - mPlay->SetAlternateImages(*up2, *hilite2, *down2, *disable2); - - delete up2; - delete hilite2; - delete down2; - delete disable2; + ToolBar::MakeAlternateImages(button, idx, + bmpRecoloredUpLarge, bmpRecoloredDownLarge, bmpRecoloredHiliteLarge, + eEnabledUp, eEnabledDown, eDisabled, + theTheme.ImageSize( bmpRecoloredUpLarge )); } void ControlToolBar::Populate() @@ -180,8 +148,10 @@ void ControlToolBar::Populate() mPlay = MakeButton( bmpPlay, bmpPlay, bmpPlayDisabled, ID_PLAY_BUTTON, true, _("Play")); - - MakeLoopImage(); + MakeAlternateImages(*mPlay, 1, bmpLoop, bmpLoop, bmpLoopDisabled); + MakeAlternateImages(*mPlay, 2, + bmpCutPreview, bmpCutPreview, bmpCutPreviewDisabled); + mPlay->FollowModifierKeys(); mStop = MakeButton( bmpStop, bmpStop, bmpStopDisabled , ID_STOP_BUTTON, false, _("Stop")); @@ -194,6 +164,9 @@ void ControlToolBar::Populate() mRecord = MakeButton(bmpRecord, bmpRecord, bmpRecordDisabled, ID_RECORD_BUTTON, true, _("Record")); + MakeAlternateImages(*mRecord, 1, bmpAppendRecord, bmpAppendRecord, + bmpAppendRecordDisabled); + mRecord->FollowModifierKeys(); #if wxUSE_TOOLTIPS RegenerateToolsTooltips(); @@ -397,7 +370,13 @@ void ControlToolBar::EnableDisableButtons() } } - mPlay->SetEnabled((!recording) || (tracks && !busy)); + const bool enablePlay = (!recording) || (tracks && !busy); + mPlay->SetEnabled(enablePlay); + // Enable and disable the other play button + TranscriptionToolBar *const pttb = p->GetTranscriptionToolBar(); + if (pttb) + pttb->SetEnabled(enablePlay); + mRecord->SetEnabled(!busy && !playing); mStop->SetEnabled(busy); @@ -406,14 +385,26 @@ void ControlToolBar::EnableDisableButtons() mPause->SetEnabled(true); } -void ControlToolBar::SetPlay(bool down, bool looped) +void ControlToolBar::SetPlay(bool down, bool looped, bool cutPreview) { + AudacityProject *p = GetActiveProject(); + TranscriptionToolBar *const pttb = + p ? p->GetTranscriptionToolBar(): 0; if (down) { - mPlay->SetAlternate(looped); + mPlay->SetAlternateIdx(cutPreview ? 2 : looped ? 1 : 0); mPlay->PushDown(); - } else { + if (pttb) + // This disables cursor changes for modifier keys + // in the other play button too + pttb->SetPlaying(true, looped, cutPreview); + } + else { mPlay->PopUp(); - mPlay->SetAlternate(false); + mPlay->SetAlternateIdx(0); + if (pttb) + // This reenables cursor changes for modifier keys + // in the other play button too + pttb->SetPlaying(false, looped, cutPreview); } EnableDisableButtons(); } @@ -444,13 +435,12 @@ bool ControlToolBar::IsRecordDown() { return mRecord->IsDown(); } - void ControlToolBar::PlayPlayRegion(double t0, double t1, bool looped /* = false */, bool cutpreview /* = false */, TimeTrack *timetrack /* = NULL */) { - SetPlay(true, looped); + SetPlay(true, looped, cutpreview); if (gAudioIO->IsBusy()) { SetPlay(false); @@ -573,7 +563,7 @@ void ControlToolBar::PlayPlayRegion(double t0, double t1, #ifdef EXPERIMENTAL_MIDI_OUT NoteTrackArray(), #endif - NULL, p->GetRate(), tcp0, tcp1, p, false, + timetrack, p->GetRate(), tcp0, tcp1, p, false, t0, t1-t0); } else { @@ -677,48 +667,6 @@ void ControlToolBar::OnKeyEvent(wxKeyEvent & event) event.Skip(); } -void ControlToolBar::OnKeyDown(wxKeyEvent & event) -{ - event.Skip(); - - if (event.GetKeyCode() == WXK_SHIFT) - { - // Turn the "Play" button into a "Loop" button - if (!mPlay->IsDown()) - mPlay->SetAlternate(true); - mShiftKeyTimer.Start(100); - } -} - -void ControlToolBar::OnKeyUp(wxKeyEvent & event) -{ - event.Skip(); - - if (event.GetKeyCode() == WXK_SHIFT) - { - // Turn the "Loop" button into a "Play" button - if (!mPlay->IsDown()) - mPlay->SetAlternate(false); - } -} - -void ControlToolBar::OnTimer(wxTimerEvent & event) -{ - event.Skip(); - - // bug 307 fix: - // Shift key-up events get swallowed if a command with a Shift in its keyboard - // shortcut opens a dialog, and ControlToolBar::OnKeyUp() doesn't get called. - if (!wxGetKeyState(WXK_SHIFT)) - { - wxKeyEvent dummyEvent; - dummyEvent.m_keyCode = WXK_SHIFT; - this->OnKeyUp(dummyEvent); - mShiftKeyTimer.Stop(); - } -} - - void ControlToolBar::OnPlay(wxCommandEvent & WXUNUSED(evt)) { StopPlaying(); @@ -736,12 +684,11 @@ void ControlToolBar::OnStop(wxCommandEvent & WXUNUSED(evt)) void ControlToolBar::PlayDefault() { - if(mPlay->WasControlDown()) - PlayCurrentRegion(false, true); /* play with cut preview */ - else if(mPlay->WasShiftDown()) - PlayCurrentRegion(true); /* play looped */ - else - PlayCurrentRegion(false); /* play normal */ + // Let control have precedence over shift + const bool cutPreview = mPlay->WasControlDown(); + const bool looped = !cutPreview && + mPlay->WasShiftDown(); + PlayCurrentRegion(looped, cutPreview); } void ControlToolBar::StopPlaying(bool stopStream /* = true*/) diff --git a/src/toolbars/ControlToolBar.h b/src/toolbars/ControlToolBar.h index 713e789d2..25210c8a2 100644 --- a/src/toolbars/ControlToolBar.h +++ b/src/toolbars/ControlToolBar.h @@ -14,8 +14,6 @@ #ifndef __AUDACITY_CONTROL_TOOLBAR__ #define __AUDACITY_CONTROL_TOOLBAR__ -#include - #include "ToolBar.h" #include "../Theme.h" @@ -44,10 +42,6 @@ class ControlToolBar:public ToolBar { void UpdatePrefs(); virtual void OnKeyEvent(wxKeyEvent & event); - void OnKeyDown(wxKeyEvent & event); - void OnKeyUp(wxKeyEvent & event); - - void OnTimer(wxTimerEvent & event); // msmeyer: These are public, but it's far better to // call the "real" interface functions like PlayCurrentRegion() and @@ -60,7 +54,7 @@ class ControlToolBar:public ToolBar { void OnPause(wxCommandEvent & evt); //These allow buttons to be controlled externally: - void SetPlay(bool down, bool looped=false); + void SetPlay(bool down, bool looped=false, bool cutPreview = false); void SetStop(bool down); void SetRecord(bool down); @@ -94,7 +88,13 @@ class ControlToolBar:public ToolBar { int id, bool processdownevents, const wxChar *label); - void MakeLoopImage(); + + static + void MakeAlternateImages(AButton &button, int idx, + teBmps eEnabledUp, + teBmps eEnabledDown, + teBmps eDisabled); + void ArrangeButtons(); void SetupCutPreviewTracks(double playStart, double cutStart, double cutEnd, double playEnd); @@ -118,8 +118,6 @@ class ControlToolBar:public ToolBar { AButton *mStop; AButton *mFF; - wxTimer mShiftKeyTimer; - static AudacityProject *mBusyProject; // Maybe button state values shouldn't be duplicated in this toolbar? diff --git a/src/toolbars/ToolBar.cpp b/src/toolbars/ToolBar.cpp index d4a4f2d11..16e6c1769 100644 --- a/src/toolbars/ToolBar.cpp +++ b/src/toolbars/ToolBar.cpp @@ -503,22 +503,40 @@ AButton * ToolBar::MakeButton(teBmps eUp, int xoff = (size.GetWidth() - theTheme.Image(eStandardUp).GetWidth())/2; int yoff = (size.GetHeight() - theTheme.Image(eStandardUp).GetHeight())/2; - wxImage * up2 = OverlayImage(eUp, eStandardUp, xoff, yoff); - wxImage * hilite2 = OverlayImage(eHilite, eStandardUp, xoff, yoff); - wxImage * down2 = OverlayImage(eDown, eStandardDown, xoff + 1, yoff + 1); - wxImage * disable2 = OverlayImage(eUp, eDisabled, xoff, yoff); + typedef std::auto_ptr wxImagePtr; + wxImagePtr up2 (OverlayImage(eUp, eStandardUp, xoff, yoff)); + wxImagePtr hilite2 (OverlayImage(eHilite, eStandardUp, xoff, yoff)); + wxImagePtr down2 (OverlayImage(eDown, eStandardDown, xoff + 1, yoff + 1)); + wxImagePtr disable2 (OverlayImage(eUp, eDisabled, xoff, yoff)); AButton * button = new AButton(this, id, placement, size, *up2, *hilite2, *down2, *disable2, processdownevents); - delete up2; - delete down2; - delete hilite2; - delete disable2; return button; } +//static +void ToolBar::MakeAlternateImages(AButton &button, int idx, + teBmps eUp, + teBmps eDown, + teBmps eHilite, + teBmps eStandardUp, + teBmps eStandardDown, + teBmps eDisabled, + wxSize size) +{ + int xoff = (size.GetWidth() - theTheme.Image(eStandardUp).GetWidth())/2; + int yoff = (size.GetHeight() - theTheme.Image(eStandardUp).GetHeight())/2; + + typedef std::auto_ptr wxImagePtr; + wxImagePtr up (OverlayImage(eUp, eStandardUp, xoff, yoff)); + wxImagePtr hilite (OverlayImage(eHilite, eStandardUp, xoff, yoff)); + wxImagePtr down (OverlayImage(eDown, eStandardDown, xoff + 1, yoff + 1)); + wxImagePtr disable (OverlayImage(eUp, eDisabled, xoff, yoff)); + + button.SetAlternateImages(idx, *up, *hilite, *down, *disable); +} // // This changes the state a button (from up to down or vice versa) diff --git a/src/toolbars/ToolBar.h b/src/toolbars/ToolBar.h index b98aee49a..f7e064c36 100644 --- a/src/toolbars/ToolBar.h +++ b/src/toolbars/ToolBar.h @@ -127,6 +127,16 @@ class ToolBar:public wxPanel bool processdownevents, wxSize size); + static + void MakeAlternateImages(AButton &button, int idx, + teBmps eUp, + teBmps eDown, + teBmps eHilite, + teBmps eStandardUp, + teBmps eStandardDown, + teBmps eDisabled, + wxSize size); + void SetButton(bool down, AButton *button); void MakeMacRecoloredImage(teBmps eBmpOut, teBmps eBmpIn); diff --git a/src/toolbars/TranscriptionToolBar.cpp b/src/toolbars/TranscriptionToolBar.cpp index 4837233c5..7723e1154 100644 --- a/src/toolbars/TranscriptionToolBar.cpp +++ b/src/toolbars/TranscriptionToolBar.cpp @@ -162,6 +162,16 @@ AButton *TranscriptionToolBar::AddButton( return r; } +void TranscriptionToolBar::MakeAlternateImages( + teBmps eFore, teBmps eDisabled, + int id, unsigned altIdx) +{ + ToolBar::MakeAlternateImages(*mButtons[id], altIdx, + bmpRecoloredUpSmall, bmpRecoloredDownSmall, bmpRecoloredHiliteSmall, + eFore, eFore, eDisabled, + theTheme.ImageSize( bmpRecoloredUpSmall )); +} + void TranscriptionToolBar::Populate() { // Very similar to code in ControlToolBar... @@ -170,6 +180,9 @@ void TranscriptionToolBar::Populate() AddButton(bmpPlay, bmpPlayDisabled, TTB_PlaySpeed, _("Play at selected speed")); + MakeAlternateImages(bmpLoop, bmpLoopDisabled, TTB_PlaySpeed, 1); + MakeAlternateImages(bmpCutPreview, bmpCutPreviewDisabled, TTB_PlaySpeed, 2); + mButtons[TTB_PlaySpeed]->FollowModifierKeys(); //Add a slider that controls the speed of playback. const int SliderWidth=100; @@ -386,7 +399,8 @@ void TranscriptionToolBar::GetSamples(WaveTrack *t, sampleCount *s0, sampleCount *slen = ss1 - ss0; } -void TranscriptionToolBar::OnPlaySpeed(wxCommandEvent & WXUNUSED(event)) +// Come here from button clicks, or commands +void TranscriptionToolBar::PlayAtSpeed(bool looped, bool cutPreview) { // Can't do anything without an active project AudacityProject * p = GetActiveProject(); @@ -427,12 +441,22 @@ void TranscriptionToolBar::OnPlaySpeed(wxCommandEvent & WXUNUSED(event)) #endif p->GetControlToolBar()->PlayPlayRegion(playRegionStart, playRegionEnd, - false, - false, + looped, + cutPreview, mTimeTrack); } } +// Come here from button clicks only +void TranscriptionToolBar::OnPlaySpeed(wxCommandEvent & WXUNUSED(event)) +{ + // Let control have precedence over shift + const bool cutPreview = mButtons[TTB_PlaySpeed]->WasControlDown(); + const bool looped = !cutPreview && + mButtons[TTB_PlaySpeed]->WasShiftDown(); + PlayAtSpeed(looped, cutPreview); +} + void TranscriptionToolBar::OnSpeedSlider(wxCommandEvent& WXUNUSED(event)) { mPlaySpeed = (mPlaySpeedSlider->Get()) * 100; @@ -867,12 +891,6 @@ void TranscriptionToolBar::SetKeyType(wxCommandEvent & WXUNUSED(event)) } -void TranscriptionToolBar::PlayAtSpeed() -{ - wxCommandEvent e; - OnPlaySpeed(e); -} - void TranscriptionToolBar::ShowPlaySpeedDialog() { mPlaySpeedSlider->ShowDialog(); @@ -881,6 +899,24 @@ void TranscriptionToolBar::ShowPlaySpeedDialog() OnSpeedSlider(e); } +void TranscriptionToolBar::SetEnabled(bool enabled) +{ + mButtons[TTB_PlaySpeed]->SetEnabled(enabled); +} + +void TranscriptionToolBar::SetPlaying(bool down, bool looped, bool cutPreview) +{ + AButton *const button = mButtons[TTB_PlaySpeed]; + if (down) { + button->SetAlternateIdx(cutPreview ? 2 : looped ? 1 : 0); + button->PushDown(); + } + else { + button->SetAlternateIdx(0); + button->PopUp(); + } +} + void TranscriptionToolBar::AdjustPlaySpeed(float adj) { if (adj < 0) { diff --git a/src/toolbars/TranscriptionToolBar.h b/src/toolbars/TranscriptionToolBar.h index 47264e2ca..cf6dcc15a 100644 --- a/src/toolbars/TranscriptionToolBar.h +++ b/src/toolbars/TranscriptionToolBar.h @@ -92,10 +92,13 @@ class TranscriptionToolBar:public ToolBar { virtual double GetSensitivity(); virtual void SetKeyType(wxCommandEvent & event); - void PlayAtSpeed(); + void PlayAtSpeed(bool looped, bool cutPreview); void ShowPlaySpeedDialog(); void AdjustPlaySpeed(float adj); + void SetEnabled(bool enabled); + void SetPlaying(bool down, bool looped, bool cutPreview); + private: void InitializeTranscriptionToolBar(); @@ -103,6 +106,9 @@ class TranscriptionToolBar:public ToolBar { teBmps eFore, teBmps eDisabled, int id, const wxChar *label); + void MakeAlternateImages( + teBmps eFore, teBmps eDisabled, + int id, unsigned altIdx); void GetSamples(WaveTrack *t, sampleCount *s0, sampleCount *slen); void SetButton(bool newstate, AButton *button); void RegenerateTooltips(); diff --git a/src/widgets/AButton.cpp b/src/widgets/AButton.cpp index 1320aacd5..3be01b276 100644 --- a/src/widgets/AButton.cpp +++ b/src/widgets/AButton.cpp @@ -46,6 +46,110 @@ BEGIN_EVENT_TABLE(AButton, wxWindow) EVT_ERASE_BACKGROUND(AButton::OnErase) END_EVENT_TABLE() +class AButton::Listener + : public wxEvtHandler +{ +public: + Listener (AButton *button); + ~Listener(); + + void OnKeyDown(wxKeyEvent & event); + void OnKeyUp(wxKeyEvent & event); + void OnTimer(wxTimerEvent & event); + + DECLARE_CLASS(AButton::Listener); + DECLARE_EVENT_TABLE(); + +private: + AButton *mButton; + wxTimer mShiftKeyTimer; +}; + +IMPLEMENT_CLASS(AButton::Listener, wxEvtHandler); + +BEGIN_EVENT_TABLE(AButton::Listener, wxEvtHandler) + EVT_TIMER(wxID_ANY, AButton::Listener::OnTimer) +END_EVENT_TABLE() + +AButton::Listener::Listener (AButton *button) +: mButton(button) +{ + mShiftKeyTimer.SetOwner(this); + + wxTheApp->Connect( wxEVT_KEY_DOWN, + wxKeyEventHandler( AButton::Listener::OnKeyDown ), + NULL, + this ); + + wxTheApp->Connect( wxEVT_KEY_UP, + wxKeyEventHandler( AButton::Listener::OnKeyUp ), + NULL, + this ); +} + +AButton::Listener::~Listener () +{ + wxTheApp->Disconnect( wxEVT_KEY_DOWN, + wxKeyEventHandler( AButton::Listener::OnKeyDown ), + NULL, + this ); + + wxTheApp->Disconnect( wxEVT_KEY_UP, + wxKeyEventHandler( AButton::Listener::OnKeyUp ), + NULL, + this ); +} + +void AButton::Listener::OnKeyDown(wxKeyEvent & event) +{ + // Really, it's all the same check for changes of key states. + OnKeyUp(event); + + // See comments in OnTimer() + mShiftKeyTimer.Start(100); +} + +void AButton::Listener::OnKeyUp(wxKeyEvent & event) +{ + event.Skip(); + + if (!mButton->IsDown()) + { + int idx = 0; + // Ignore the event, consult key states. One modifier key might + // have gone up but another remained down. + // Note that CMD (or CTRL) takes precedence over Shift if both are down + // and alternates are defined for both + // see also AButton::OnMouseEvent() + if (wxGetKeyState(WXK_CONTROL) && mButton->HasAlternateImages(2)) + idx = 2; + else if (wxGetKeyState(WXK_SHIFT) && mButton->HasAlternateImages(1)) + idx = 1; + + // Turn e.g. the "Play" button into a "Loop" button + // or "Cut Preview" button + mButton->SetAlternateIdx(idx); + } +} + +void AButton::Listener::OnTimer(wxTimerEvent & event) +{ + event.Skip(); + + // bug 307 fix: + // Shift key-up events get swallowed if a command with a Shift in its keyboard + // shortcut opens a dialog, and OnKeyUp() doesn't get called. + // With CTRL now causing the button to change appearance, presumably similar + // can happen with that key. + if (!wxGetKeyState(WXK_SHIFT) || + !wxGetKeyState(WXK_CONTROL)) + { + wxKeyEvent dummy; + this->OnKeyUp(dummy); + mShiftKeyTimer.Stop(); + } +} + AButton::AButton(wxWindow * parent, wxWindowID id, const wxPoint & pos, @@ -108,18 +212,19 @@ void AButton::Init(wxWindow * parent, mToggle = toggle; mUseDisabledAsDownHiliteImage = false; - mImage[0] = up; - mImage[1] = over; - mImage[2] = down; - mImage[3] = dis; + mImages.resize(1); + mImages[0].mArr[0] = up; + mImages[0].mArr[1] = over; + mImages[0].mArr[2] = down; + mImages[0].mArr[3] = dis; - mAlternate = false; + mAlternateIdx = 0; mButtonIsFocused = false; mFocusRect = GetRect().Deflate( 3, 3 ); - SetSizeHints(mImage[0].GetMinSize(), - mImage[0].GetMaxSize()); + SetSizeHints(mImages[0].mArr[0].GetMinSize(), + mImages[0].mArr[0].GetMaxSize()); #if wxUSE_ACCESSIBILITY SetName( wxT("") ); @@ -132,38 +237,50 @@ void AButton::UseDisabledAsDownHiliteImage(bool flag) mUseDisabledAsDownHiliteImage = flag; } -void AButton::SetAlternateImages(wxImage up, +void AButton::SetAlternateImages(unsigned idx, + wxImage up, wxImage over, wxImage down, wxImage dis) { - mAltImage[0] = ImageRoll(up); - mAltImage[1] = ImageRoll(over); - mAltImage[2] = ImageRoll(down); - mAltImage[3] = ImageRoll(dis); + if (1 + idx > mImages.size()) + mImages.resize(1 + idx); + mImages[idx].mArr[0] = ImageRoll(up); + mImages[idx].mArr[1] = ImageRoll(over); + mImages[idx].mArr[2] = ImageRoll(down); + mImages[idx].mArr[3] = ImageRoll(dis); } -void AButton::SetAlternateImages(ImageRoll up, +void AButton::SetAlternateImages(unsigned idx, + ImageRoll up, ImageRoll over, ImageRoll down, ImageRoll dis) { - mAltImage[0] = up; - mAltImage[1] = over; - mAltImage[2] = down; - mAltImage[3] = dis; + if (1 + idx > mImages.size()) + mImages.resize(1 + idx); + mImages[idx].mArr[0] = up; + mImages[idx].mArr[1] = over; + mImages[idx].mArr[2] = down; + mImages[idx].mArr[3] = dis; } -void AButton::SetAlternate(bool useAlternateImages) +void AButton::SetAlternateIdx(unsigned idx) { // If alternate-image-state is already correct then // nothing to do (saves repainting button). - if( mAlternate == useAlternateImages ) + if( mAlternateIdx == idx ) return; - mAlternate = useAlternateImages; + mAlternateIdx = idx; Refresh(false); } +void AButton::FollowModifierKeys() +{ + if(!mListener.get()) + mListener.reset(new Listener(this)); +} + void AButton::SetFocusRect(wxRect & r) { mFocusRect = r; @@ -218,10 +335,7 @@ void AButton::OnPaint(wxPaintEvent & WXUNUSED(event)) AButtonState buttonState = GetState(); - if (mAlternate) - mAltImage[buttonState].Draw(dc, GetClientRect()); - else - mImage[buttonState].Draw(dc, GetClientRect()); + mImages[mAlternateIdx].mArr[buttonState].Draw(dc, GetClientRect()); #if defined(__WXMSW__) if( mButtonIsFocused ) @@ -242,12 +356,17 @@ void AButton::OnSize(wxSizeEvent & WXUNUSED(event)) Refresh(false); } -bool AButton::HasAlternateImages() +bool AButton::HasAlternateImages(unsigned idx) { - return (mAltImage[0].Ok() && - mAltImage[1].Ok() && - mAltImage[2].Ok() && - mAltImage[3].Ok()); + if (mImages.size() <= idx) + return false; + + const ImageArr &images = mImages[idx]; + const ImageRoll (&arr)[4] = images.mArr; + return (arr[0].Ok() && + arr[1].Ok() && + arr[2].Ok() && + arr[3].Ok()); } void AButton::OnMouseEvent(wxMouseEvent & event) @@ -264,8 +383,17 @@ void AButton::OnMouseEvent(wxMouseEvent & event) (event.m_x >= 0 && event.m_y >= 0 && event.m_x < clientSize.x && event.m_y < clientSize.y); - if (HasAlternateImages() && !mButtonIsDown) - mAlternate = event.ShiftDown(); + 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)) { diff --git a/src/widgets/AButton.h b/src/widgets/AButton.h index cad49f2d2..4902803fe 100644 --- a/src/widgets/AButton.h +++ b/src/widgets/AButton.h @@ -12,6 +12,8 @@ #ifndef __AUDACITY_BUTTON__ #define __AUDACITY_BUTTON__ +#include + #if wxUSE_ACCESSIBILITY #include #endif @@ -23,9 +25,12 @@ class AButton: public wxWindow { friend class AButtonAx; + class Listener; public: + // Construct button, specifying images (button up, highlight, button down, + // and disabled) for the default state AButton(wxWindow * parent, wxWindowID id, const wxPoint & pos, @@ -36,6 +41,8 @@ class AButton: public wxWindow { ImageRoll dis, bool toggle); + // Construct button, specifying images (button up, highlight, button down, + // and disabled) for the default state AButton(wxWindow * parent, wxWindowID id, const wxPoint & pos, @@ -48,17 +55,30 @@ class AButton: public wxWindow { virtual ~ AButton(); - virtual void SetAlternateImages(ImageRoll up, + // Associate a set of four images (button up, highlight, button down, + // disabled) with one nondefault state of the button + virtual void SetAlternateImages(unsigned idx, + ImageRoll up, ImageRoll over, ImageRoll down, ImageRoll dis); - virtual void SetAlternateImages(wxImage up, + // Associate a set of four images (button up, highlight, button down, + // disabled) with one nondefault state of the button + virtual void SetAlternateImages(unsigned idx, + wxImage up, wxImage over, wxImage down, wxImage dis); - virtual void SetAlternate(bool useAlternateImages); + // Choose state of the button + virtual void SetAlternateIdx(unsigned idx); + + // Make the button change appearance with the modifier keys, no matter + // where the mouse is: + // Use state 2 when CTRL is down, else 1 when SHIFT is down, else 0 + virtual void FollowModifierKeys(); + virtual void SetFocusRect(wxRect & r); virtual bool IsEnabled() const { return mEnabled; } @@ -103,7 +123,7 @@ class AButton: public wxWindow { private: - bool HasAlternateImages(); + bool HasAlternateImages(unsigned idx); void Init(wxWindow * parent, wxWindowID id, @@ -115,7 +135,7 @@ class AButton: public wxWindow { ImageRoll dis, bool toggle); - bool mAlternate; + unsigned mAlternateIdx; bool mToggle; // This bool, if true, makes the button able to // process events when it is in the down state, and // moving to the opposite state when it is clicked. @@ -133,11 +153,13 @@ class AButton: public wxWindow { bool mEnabled; bool mUseDisabledAsDownHiliteImage; - ImageRoll mImage[4]; - ImageRoll mAltImage[4]; + struct ImageArr { ImageRoll mArr[4]; }; + std::vector mImages; wxRect mFocusRect; + std::auto_ptr mListener; + public: DECLARE_EVENT_TABLE()