From c9400cc4d20bf7099b2d7c632424d5743e0ec464 Mon Sep 17 00:00:00 2001 From: Keith Date: Fri, 12 Aug 2022 22:02:52 -0500 Subject: [PATCH 1/8] Added stereo processing, updated Juce and RTNeural, removed win32 builds --- .gitmodules | 13 ++-- CMakeLists.txt | 2 +- README.md | 11 --- Source/PluginProcessor.cpp | 47 +++++++++---- Source/PluginProcessor.h | 2 +- .../windows/Chameleon_Install_Script.iss | 68 +------------------ modules/JUCE | 2 +- modules/RTNeural | 2 +- win_builds.sh | 22 ++---- 9 files changed, 49 insertions(+), 120 deletions(-) diff --git a/.gitmodules b/.gitmodules index b5c549d..b18c7a4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,16 +1,15 @@ -[submodule "modules/RTNeural"] - path = modules/RTNeural - url = https://github.com/jatinchowdhury18/RTNeural [submodule "modules/json"] path = modules/json url = https://github.com/nlohmann/json.git -[submodule "modules/JUCE"] - path = modules/JUCE - url = https://github.com/lv2-porting-project/JUCE.git - branch = lv2 [submodule "modules/chowdsp_utils"] path = modules/chowdsp_utils url = https://github.com/Chowdhury-DSP/chowdsp_utils [submodule "modules/libsamplerate"] path = modules/libsamplerate url = https://github.com/libsndfile/libsamplerate +[submodule "modules/JUCE"] + path = modules/JUCE + url = https://github.com/juce-framework/JUCE.git +[submodule "modules/RTNeural"] + path = modules/RTNeural + url = https://github.com/jatinchowdhury18/RTNeural.git diff --git a/CMakeLists.txt b/CMakeLists.txt index ca16f6f..c9e08f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.15) set(CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment target") -project(Chameleon VERSION 1.1.0) +project(Chameleon VERSION 1.2.0) set(CMAKE_CXX_STANDARD 17) diff --git a/README.md b/README.md index c0eb061..f141044 100644 --- a/README.md +++ b/README.md @@ -60,14 +60,3 @@ $ cmake -Bbuild $ cmake --build build --config Release ``` The binaries will be located in `Chameleon/build/Chameleon_artefacts/` - -### Build with Projucer - -1. Clone or download this repository. -2. Download and install [JUCE](https://juce.com/) This project uses the "Projucer" application from the JUCE website. -3. Initialize and set up submodules -```git submodule update --init --recursive``` -4. Open the Chameleon.jucer file and in the appropriate Exporter Header Search Path field, enter the appropriate include paths from the modules folder. -5. Build Chameleon from the Juce Projucer application. - -Note: Make sure to build in Release mode unless actually debugging. Debug mode will not keep up with real time playing. diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index a5334d6..87a4284 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -111,10 +111,11 @@ void ChameleonAudioProcessor::prepareToPlay (double sampleRate, int samplesPerBl // Use this method as the place to do any pre-playback // initialisation that you need.. LSTM.reset(); + LSTM2.reset(); // prepare resampler for target sample rate: 44.1 kHz constexpr double targetSampleRate = 44100.0; - resampler.prepareWithTargetSampleRate ({ sampleRate, (uint32) samplesPerBlock, 1 }, targetSampleRate); + resampler.prepareWithTargetSampleRate ({ sampleRate, (uint32) samplesPerBlock, 2 }, targetSampleRate); // set up DC blocker dcBlocker.coefficients = dsp::IIR::Coefficients::makeHighPass (sampleRate, 35.0f); @@ -162,12 +163,9 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff const int numInputChannels = getTotalNumInputChannels(); const int sampleRate = getSampleRate(); - + dsp::AudioBlock block(buffer); // Amp ============================================================================= if (amp_state == 1) { - // EQ (Presence, Bass, Mid, Treble) - eq4band.process(buffer.getReadPointer(0), buffer.getWritePointer(0), midiMessages, numSamples, numInputChannels, sampleRate); - // Apply ramped changes for gain smoothing if (ampDrive == previousAmpDrive) @@ -180,15 +178,38 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff } // resample to target sample rate - auto block = dsp::AudioBlock (buffer.getArrayOfWritePointers(), 1, numSamples); + + //auto block = dsp::AudioBlock (buffer.getArrayOfWritePointers(), 1, numSamples); auto block44k = resampler.processIn (block); - // Apply LSTM model - LSTM.process(block44k.getChannelPointer(0), block44k.getChannelPointer(0), (int) block44k.getNumSamples()); + for (int ch = 0; ch < buffer.getNumChannels(); ++ch) + { + // Apply LSTM model + if (ch == 0) { + LSTM.process(block44k.getChannelPointer(0), block44k.getChannelPointer(0), (int) block44k.getNumSamples()); + + } + else if (ch == 1) { + LSTM2.process(block44k.getChannelPointer(1), block44k.getChannelPointer(1), (int) block44k.getNumSamples()); + } + } + // resample back to original sample rate resampler.processOut (block44k, block); + for (int ch = 0; ch < buffer.getNumChannels(); ++ch) + { + // Apply EQ + if (ch == 0) { + eq4band.process(buffer.getReadPointer(0), buffer.getWritePointer(0), midiMessages, numSamples, numInputChannels, sampleRate); + + } + else if (ch == 1) { + eq4band.process(buffer.getReadPointer(1), buffer.getWritePointer(1), midiMessages, numSamples, numInputChannels, sampleRate); + } + } + // Master Volume // Apply ramped changes for gain smoothing if (ampMaster == previousAmpMaster) @@ -206,14 +227,9 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff } } - // process DC blocker - auto monoBlock = dsp::AudioBlock (buffer).getSingleChannelBlock (0); - dcBlocker.process (dsp::ProcessContextReplacing (monoBlock)); - - // Handle stereo input by copying channel 1 to channel 2 - for (int ch = 1; ch < buffer.getNumChannels(); ++ch) - buffer.copyFrom(ch, 0, buffer, 0, 0, buffer.getNumSamples()); + dsp::ProcessContextReplacing context(block); + dcBlocker.process(context); } //============================================================================== @@ -281,6 +297,7 @@ void ChameleonAudioProcessor::loadConfig(File configFile) char_filename = path.toUTF8(); LSTM.load_json(char_filename); + LSTM2.load_json(char_filename); this->suspendProcessing(false); } diff --git a/Source/PluginProcessor.h b/Source/PluginProcessor.h index 07c9d40..fab5912 100644 --- a/Source/PluginProcessor.h +++ b/Source/PluginProcessor.h @@ -111,9 +111,9 @@ class ChameleonAudioProcessor : public AudioProcessor float ampGainKnobState = 0.0; float ampMasterKnobState = -18.0; float ampPresenceKnobState = 0.0; - RT_LSTM LSTM; + RT_LSTM LSTM2; AudioProcessorValueTreeState treeState; diff --git a/installers/windows/Chameleon_Install_Script.iss b/installers/windows/Chameleon_Install_Script.iss index c422245..1cf1478 100644 --- a/installers/windows/Chameleon_Install_Script.iss +++ b/installers/windows/Chameleon_Install_Script.iss @@ -20,33 +20,24 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; \ [Components] Name: "VST3_64"; Description: "VST3 Plugin 64-bit"; Types: full -Name: "VST3_32"; Description: "VST3 Plugin 32-bit"; Types: full Name: "STANDALONE_64"; Description: "Standalone 64-bit"; Types: full -Name: "STANDALONE_32"; Description: "Standalone 32-bit"; Types: full Name: "AAX"; Description: "AAX Plugin"; Types: full [Files] Source: "../../bin/Win64/Chameleon.vst3"; DestDir: "{code:GetDir|VST3_64}"; Components: VST3_64; Flags: ignoreversion recursesubdirs createallsubdirs -Source: "../../bin/Win32/Chameleon.vst3"; DestDir: "{code:GetDir|VST3_32}"; Components: VST3_32; Flags: ignoreversion recursesubdirs createallsubdirs Source: "../../bin/Win64/Chameleon.exe"; DestDir: "{code:GetDir|STANDALONE_64}"; Components: STANDALONE_64; Flags: ignoreversion recursesubdirs createallsubdirs -Source: "../../bin/Win32/Chameleon.exe"; DestDir: "{code:GetDir|STANDALONE_32}"; Components: STANDALONE_32; Flags: ignoreversion recursesubdirs createallsubdirs Source: "../../build-aax/Chameleon_artefacts/Release/AAX/Chameleon.aaxplugin"; DestDir: "{code:GetDir|AAX}"; Components: AAX; Flags: ignoreversion recursesubdirs createallsubdirs Source: "../../resources/guitarml.ico"; Components: STANDALONE_64; DestDir: "{pf64}\GuitarML" -Source: "../../resources/guitarml.ico"; Components: STANDALONE_32; DestDir: "{pf32}\GuitarML" [Icons] Name: "{userdesktop}\Chameleon"; Filename: "{pf64}\GuitarML\Chameleon.exe"; Components: VST3_64; \ IconFilename: "{pf64}\GuitarML\guitarml.ico"; Tasks: desktopicon; -Name: "{userdesktop}\Chameleon32"; Filename: "{pf32}\GuitarML\Chameleon.exe"; Components: VST3_32; \ - IconFilename: "{pf32}\GuitarML\guitarml.ico"; Tasks: desktopicon; [Code] var AAXDirPage: TInputDirWizardPage; Vst3_64DirPage: TinputDirWizardPage; - Vst3_32DirPage: TinputDirWizardPage; Standalone_64DirPage: TinputDirWizardPage; - Standalone_32DirPage: TinputDirWizardPage; procedure InitializeWizard; begin @@ -71,19 +62,9 @@ begin Vst3_64DirPage.add(''); Vst3_64DirPage.values[0] := ExpandConstant('{commoncf64}\VST3'); - - //VST3 32-bit Dir Page - Vst3_32DirPage := CreateInputDirPage(Vst3_64DirPage.ID, - 'Select Install Location for VST3 32-bit', 'Where would you like to install the plugin?', - 'VST3 32-bit plugin will be installed in the following folder.'#13#10#13#10 + - 'To continue, click Next. If you would like to select a different folder, click Browse.', - False, 'New Folder'); - - Vst3_32DirPage.add(''); - Vst3_32DirPage.values[0] := ExpandConstant('{commoncf32}\VST3'); - //Standalone 64-bit Dir Page - Standalone_64DirPage := CreateInputDirPage(Vst3_32DirPage.ID, + //Standalone 64-bit Dir Page + Standalone_64DirPage := CreateInputDirPage(Vst3_64DirPage.ID, 'Select Install Location for Standalone 64-bit', 'Where would you like to install the plugin?', 'Standalone 64-bit plugin will be installed in the following folder.'#13#10#13#10 + 'To continue, click Next. If you would like to select a different folder, click Browse.', @@ -92,17 +73,6 @@ begin Standalone_64DirPage.add(''); Standalone_64DirPage.values[0] := ExpandConstant('{pf64}\GuitarML'); - - //Standalone 32-bit Dir Page - Standalone_32DirPage := CreateInputDirPage(Standalone_64DirPage.ID, - 'Select Install Location for Standalone 32-bit', 'Where would you like to install the plugin?', - 'Standalone 32-bit plugin will be installed in the following folder.'#13#10#13#10 + - 'To continue, click Next. If you would like to select a different folder, click Browse.', - False, 'New Folder'); - - Standalone_32DirPage.add(''); - Standalone_32DirPage.values[0] := ExpandConstant('{pf32}\GuitarML'); - end; function IsSelected(Param: String) : Boolean; @@ -139,18 +109,6 @@ begin Result := False; end end - - else if (PageID = Vst3_32DirPage.ID) then - begin - Result := True; - Log('Selected 3: ' + WizardSelectedComponents(False)); - - if IsSelected ('vst3_32') then - begin - Log('Not Skipping'); - Result := False; - end - end else if (PageID = Standalone_64DirPage.ID) then begin @@ -164,18 +122,6 @@ begin end end - else if (PageID = Standalone_32DirPage.ID) then - begin - Result := True; - Log('Selected 5: ' + WizardSelectedComponents(False)); - - if IsSelected ('standalone_32') then - begin - Log('Not Skipping'); - Result := False; - end - end - end; function GetDir(Param: String) : String; @@ -184,12 +130,8 @@ begin Result := AAXDirPage.values[0] else if (Param = 'VST3_64') then Result := Vst3_64DirPage.values[0] - else if (Param = 'VST3_32') then - Result := Vst3_32DirPage.values[0] else if (Param = 'STANDALONE_64') then Result := Standalone_64DirPage.values[0] - else if (Param = 'STANDALONE_32') then - Result := Standalone_32DirPage.values[0] end; function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo, @@ -208,15 +150,9 @@ begin if IsSelected('vst3_64') then S := S + Space + GetDir('VST3_64') + ' (VST3 64-bit)' + NewLine; - - if IsSelected('vst3_32') then - S := S + Space + GetDir('VST3_32') + ' (VST3 32-bit)' + NewLine; if IsSelected('standalone_64') then S := S + Space + GetDir('STANDALONE_64') + ' (Standalone 64-bit)' + NewLine; - if IsSelected('standalone_32') then - S := S + Space + GetDir('STANDALONE_32') + ' (Standalone 32-bit)' + NewLine; - Result := S; end; diff --git a/modules/JUCE b/modules/JUCE index 90e8da0..4c43bf4 160000 --- a/modules/JUCE +++ b/modules/JUCE @@ -1 +1 @@ -Subproject commit 90e8da0cfb54ac593cdbed74c3d0c9b09bad3a9f +Subproject commit 4c43bf429e90690cb1f05b7c8a044cc9f5a59e7d diff --git a/modules/RTNeural b/modules/RTNeural index c8d0443..0888e5a 160000 --- a/modules/RTNeural +++ b/modules/RTNeural @@ -1 +1 @@ -Subproject commit c8d044398c1ac05958015f5fec622a5ecdea2f70 +Subproject commit 0888e5a1157dd37110daca3acfa97a26ceed3563 diff --git a/win_builds.sh b/win_builds.sh index ff08571..a7ab542 100644 --- a/win_builds.sh +++ b/win_builds.sh @@ -1,24 +1,19 @@ #!/bin/bash build64(){ - cmake -Bbuild -G"Visual Studio 15 2017 Win64" - #cmake -Bbuild -G"Visual Studio 16 2019 Win64" + #cmake -Bbuild -G"Visual Studio 15 2017 Win64" + cmake -Bbuild -G"Visual Studio 16 2019 Win64" + #cmake -Bbuild -G"Visual Studio 16 2019" -A x64 cmake --build build --config Release -j4 } -build32(){ - cmake -Bbuild32 -G"Visual Studio 15 2017" - cmake --build build32 --config Release -j4 -} - # exit on failure set -e # clean up old builds rm -Rf build/ -rm -Rf build32/ rm -Rf bin/*Win64* -rm -Rf bin/*Win32* + # set up VST and ASIO paths sed -i -e "9s/#//" CMakeLists.txt @@ -27,19 +22,14 @@ sed -i -e '16s/#//' CMakeLists.txt # cmake new builds build64 & -build32 & wait # copy builds to bin mkdir -p bin/Win64 -mkdir -p bin/Win32 declare -a plugins=("Chameleon") for plugin in "${plugins[@]}"; do cp -R build/${plugin}_artefacts/Release/Standalone/${plugin}.exe bin/Win64/${plugin}.exe cp -R build/${plugin}_artefacts/Release/VST3/${plugin}.vst3 bin/Win64/${plugin}.vst3 - - cp -R build32/${plugin}_artefacts/Release/Standalone/${plugin}.exe bin/Win32/${plugin}.exe - cp -R build32/${plugin}_artefacts/Release/VST3/${plugin}.vst3 bin/Win32/${plugin}.vst3 done # reset CMakeLists.txt @@ -50,9 +40,7 @@ VERSION=$(cut -f 2 -d '=' <<< "$(grep 'CMAKE_PROJECT_VERSION:STATIC' build/CMake ( cd bin rm -f "Chameleon-Win64-${VERSION}.zip" - rm -f "Chameleon-Win32-${VERSION}.zip" - tar -a -c -f "Chameleon-Win64-${VERSION}.zip" Win64 - tar -a -c -f "Chameleon-Win32-${VERSION}.zip" Win32 + tar -a -c -f "Chameleon-Win64-${VERSION}.zip" Win64 ) # create installer From 263f5e9144b0b2bda1875b1aa0bd5a52aca0883f Mon Sep 17 00:00:00 2001 From: Keith Date: Mon, 15 Aug 2022 20:46:32 -0500 Subject: [PATCH 2/8] param handling updates --- Source/PluginEditor.cpp | 47 +++++----- Source/PluginProcessor.cpp | 179 +++++++++++-------------------------- Source/PluginProcessor.h | 63 +++++++------ Source/RTNeuralLSTM.cpp | 8 +- Source/RTNeuralLSTM.h | 2 +- modules/RTNeural | 2 +- resources/CMakeLists.txt | 8 +- 7 files changed, 123 insertions(+), 186 deletions(-) diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index 947ca9f..c6783bf 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -46,67 +46,67 @@ ChameleonAudioProcessorEditor::ChameleonAudioProcessorEditor (ChameleonAudioProc addAndMakeVisible(ampBassKnob); ampBassKnob.setLookAndFeel(&SilverKnobLAF); ampBassKnob.addListener(this); - ampBassKnob.setRange(-8.0, 8.0); - ampBassKnob.setValue(processor.ampBassKnobState); + //ampBassKnob.setRange(-8.0, 8.0); + //ampBassKnob.setValue(processor.ampBassKnobState); ampBassKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampBassKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - ampBassKnob.setNumDecimalPlacesToDisplay(1); + //ampBassKnob.setNumDecimalPlacesToDisplay(1); ampBassKnob.setDoubleClickReturnValue(true, 0.0); midSliderAttach = std::make_unique(processor.treeState, MID_ID, ampMidKnob); addAndMakeVisible(ampMidKnob); ampMidKnob.setLookAndFeel(&SilverKnobLAF); ampMidKnob.addListener(this); - ampMidKnob.setRange(-8.0, 8.0); - ampMidKnob.setValue(processor.ampMidKnobState); + //ampMidKnob.setRange(-8.0, 8.0); + //ampMidKnob.setValue(processor.ampMidKnobState); ampMidKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampMidKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - ampMidKnob.setNumDecimalPlacesToDisplay(1); + //ampMidKnob.setNumDecimalPlacesToDisplay(1); ampMidKnob.setDoubleClickReturnValue(true, 0.0); trebleSliderAttach = std::make_unique(processor.treeState, TREBLE_ID, ampTrebleKnob); addAndMakeVisible(ampTrebleKnob); ampTrebleKnob.setLookAndFeel(&SilverKnobLAF); ampTrebleKnob.addListener(this); - ampTrebleKnob.setRange(-8.0, 8.0); - ampTrebleKnob.setValue(processor.ampTrebleKnobState); + //ampTrebleKnob.setRange(-8.0, 8.0); + //ampTrebleKnob.setValue(processor.ampTrebleKnobState); ampTrebleKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampTrebleKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - ampTrebleKnob.setNumDecimalPlacesToDisplay(1); + //ampTrebleKnob.setNumDecimalPlacesToDisplay(1); ampTrebleKnob.setDoubleClickReturnValue(true, 0.0); gainSliderAttach = std::make_unique(processor.treeState, GAIN_ID, ampGainKnob); addAndMakeVisible(ampGainKnob); ampGainKnob.setLookAndFeel(&SilverKnobLAF); ampGainKnob.addListener(this); - ampGainKnob.setRange(-10.0, 10.0); - ampGainKnob.setValue(processor.ampGainKnobState); + //ampGainKnob.setRange(-10.0, 10.0); + //ampGainKnob.setValue(processor.ampGainKnobState); ampGainKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampGainKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - ampGainKnob.setNumDecimalPlacesToDisplay(1); - ampGainKnob.setDoubleClickReturnValue(true, 0.0); + //ampGainKnob.setNumDecimalPlacesToDisplay(1); + ampGainKnob.setDoubleClickReturnValue(true, 0.5); presenceSliderAttach = std::make_unique(processor.treeState, PRESENCE_ID, ampPresenceKnob); addAndMakeVisible(ampPresenceKnob); ampPresenceKnob.setLookAndFeel(&SilverKnobLAF); ampPresenceKnob.addListener(this); - ampPresenceKnob.setRange(-8.0, 8.0); - ampPresenceKnob.setValue(processor.ampPresenceKnobState); + //ampPresenceKnob.setRange(-8.0, 8.0); + //ampPresenceKnob.setValue(processor.ampPresenceKnobState); ampPresenceKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampPresenceKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20 ); - ampPresenceKnob.setNumDecimalPlacesToDisplay(1); + //ampPresenceKnob.setNumDecimalPlacesToDisplay(1); ampPresenceKnob.setDoubleClickReturnValue(true, 0.0); masterSliderAttach = std::make_unique(processor.treeState, MASTER_ID, ampMasterKnob); addAndMakeVisible(ampMasterKnob); ampMasterKnob.setLookAndFeel(&SilverKnobLAF); ampMasterKnob.addListener(this); - ampMasterKnob.setRange(-36.0, 0.0); - ampMasterKnob.setValue(processor.ampMasterKnobState); + //ampMasterKnob.setRange(-36.0, 0.0); + //ampMasterKnob.setValue(processor.ampMasterKnobState); ampMasterKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampMasterKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20 ); - ampMasterKnob.setNumDecimalPlacesToDisplay(1); - ampMasterKnob.setDoubleClickReturnValue(true, -18.0); + //ampMasterKnob.setNumDecimalPlacesToDisplay(1); + ampMasterKnob.setDoubleClickReturnValue(true, 0.5); // Size of plugin GUI setSize(774, 293); @@ -168,22 +168,19 @@ void ChameleonAudioProcessorEditor::colorSelectClicked() { if (processor.current_model_index == 0) { processor.current_model_index = 1; processor.fromUpDown = 0; - processor.loadConfig(processor.gold_tone); } else if (processor.current_model_index == 1) { if (processor.fromUpDown == 0) { processor.current_model_index = 2; - processor.loadConfig(processor.green_tone); } else { processor.current_model_index = 0; - processor.loadConfig(processor.red_tone); } } else if (processor.current_model_index == 2) { processor.current_model_index = 1; processor.fromUpDown = 1; - processor.loadConfig(processor.gold_tone); } + processor.setMode(); resetImages(); // Resets the Toggle Switch and LED image based on current settings repaint(); } @@ -192,6 +189,7 @@ void ChameleonAudioProcessorEditor::colorSelectClicked() { void ChameleonAudioProcessorEditor::sliderValueChanged(Slider* slider) { // Amp + /* if (slider == &GainKnob) processor.set_ampDrive(slider->getValue()); else if (slider == &MasterKnob) @@ -206,6 +204,7 @@ void ChameleonAudioProcessorEditor::sliderValueChanged(Slider* slider) else if (slider == &PresenceKnob) { processor.set_ampEQ(ampBassKnob.getValue(), ampMidKnob.getValue(), ampTrebleKnob.getValue(), ampPresenceKnob.getValue()); } + */ } void ChameleonAudioProcessorEditor::resetImages() diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index 87a4284..eef52b6 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -24,19 +24,27 @@ ChameleonAudioProcessor::ChameleonAudioProcessor() .withOutput("Output", AudioChannelSet::stereo(), true) #endif ), - //treeState(*this, nullptr, "PARAMETER", { std::make_unique(GAIN_ID, GAIN_NAME, NormalisableRange(-10.0f, 10.0f, 0.01f), 0.0f), - treeState(*this, nullptr, "PARAMETER", { std::make_unique(GAIN_ID, GAIN_NAME, NormalisableRange(-10.0f, 10.0f, 0.01f), 0.0f), + //treeState(*this, nullptr, "PARAMETER", { std::make_unique(GAIN_ID, GAIN_NAME, NormalisableRange(0.0f, 1.0f, 0.01f), 0.5f), + treeState(*this, nullptr, "PARAMETER", { std::make_unique(GAIN_ID, GAIN_NAME, NormalisableRange(0.0f, 1.0f, 0.01f), 0.5f), std::make_unique(BASS_ID, BASS_NAME, NormalisableRange(-8.0f, 8.0f, 0.01f), 0.0f), std::make_unique(MID_ID, MID_NAME, NormalisableRange(-8.0f, 8.0f, 0.01f), 0.0f), std::make_unique(TREBLE_ID, TREBLE_NAME, NormalisableRange(-8.0f, 8.0f, 0.01f), 0.0f), std::make_unique(PRESENCE_ID, PRESENCE_NAME, NormalisableRange(-8.0f, 8.0f, 0.01f), 0.0f), - std::make_unique(MASTER_ID, MASTER_NAME, NormalisableRange(-36.0f, 0.0f, 0.01f), 0.0f) }) + std::make_unique(MASTER_ID, MASTER_NAME, NormalisableRange(0.0f, 1.0f, 0.01f), 0.5f) }) #endif { - setupDataDirectories(); - installTones(); - loadConfig(red_tone); + //setupDataDirectories(); + //installTones(); + //loadConfig(red_tone); + setMode(); + + gainParam = treeState.getRawParameterValue (GAIN_ID); + bassParam = treeState.getRawParameterValue (BASS_ID); + midParam = treeState.getRawParameterValue (MID_ID); + trebleParam = treeState.getRawParameterValue (TREBLE_ID); + presenceParam = treeState.getRawParameterValue (PRESENCE_ID); + masterParam = treeState.getRawParameterValue (MASTER_ID); } ChameleonAudioProcessor::~ChameleonAudioProcessor() @@ -163,6 +171,13 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff const int numInputChannels = getTotalNumInputChannels(); const int sampleRate = getSampleRate(); + auto ampDrive = static_cast (gainParam->load()); + auto bassValue = static_cast (bassParam->load()); + auto midValue = static_cast (midParam->load()); + auto trebleValue = static_cast (trebleParam->load()); + auto presenceValue = static_cast (presenceParam->load()); + auto ampMaster = static_cast (masterParam->load()); + dsp::AudioBlock block(buffer); // Amp ============================================================================= if (amp_state == 1) { @@ -170,10 +185,10 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff // Apply ramped changes for gain smoothing if (ampDrive == previousAmpDrive) { - buffer.applyGain(ampDrive); + buffer.applyGain(ampDrive*2.0); } else { - buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousAmpDrive, ampDrive); + buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousAmpDrive*2.0, ampDrive*2.0); previousAmpDrive = ampDrive; } @@ -198,6 +213,8 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff // resample back to original sample rate resampler.processOut (block44k, block); + //eq4band.setParameters(bassValue, midValue, trebleValue, presenceValue); + for (int ch = 0; ch < buffer.getNumChannels(); ++ch) { // Apply EQ @@ -214,10 +231,10 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff // Apply ramped changes for gain smoothing if (ampMaster == previousAmpMaster) { - buffer.applyGain(ampMaster); + buffer.applyGain(ampMaster *2.0); } else { - buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousAmpMaster, ampMaster); + buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousAmpMaster *2.0, ampMaster * 2.0); previousAmpMaster = ampMaster; } @@ -269,19 +286,7 @@ void ChameleonAudioProcessor::setStateInformation (const void* data, int sizeInB { treeState.replaceState (juce::ValueTree::fromXml (*xmlState)); current_model_index = xmlState->getIntAttribute ("current_tone"); - - switch (current_model_index) - { - case 0: - loadConfig (red_tone); - break; - case 1: - loadConfig (gold_tone); - break; - case 2: - loadConfig (green_tone); - break; - } + setMode(); if (auto* editor = dynamic_cast (getActiveEditor())) editor->resetImages(); @@ -289,114 +294,38 @@ void ChameleonAudioProcessor::setStateInformation (const void* data, int sizeInB } } -void ChameleonAudioProcessor::loadConfig(File configFile) -{ - this->suspendProcessing(true); - model_loaded = 1; - String path = configFile.getFullPathName(); - char_filename = path.toUTF8(); - - LSTM.load_json(char_filename); - LSTM2.load_json(char_filename); - - this->suspendProcessing(false); -} - - -void ChameleonAudioProcessor::setupDataDirectories() -{ - // User app data directory - File userAppDataTempFile = userAppDataDirectory.getChildFile("tmp.pdl"); - - File userAppDataTempFile_tones = userAppDataDirectory_tones.getChildFile("tmp.pdl"); - - // Create (and delete) temp file if necessary, so that user doesn't have - // to manually create directories - if (!userAppDataDirectory.exists()) { - userAppDataTempFile.create(); - } - if (userAppDataTempFile.existsAsFile()) { - userAppDataTempFile.deleteFile(); - } - - if (!userAppDataDirectory_tones.exists()) { - userAppDataTempFile_tones.create(); - } - if (userAppDataTempFile_tones.existsAsFile()) { - userAppDataTempFile_tones.deleteFile(); - } -} - -void ChameleonAudioProcessor::installTones() -//==================================================================== -// Description: Checks that the default tones -// are installed to the Chameleon directory, and if not, -// copy them from the binary data in the plugin to that directory. -// -//==================================================================== -{ - if (red_tone.existsAsFile() == false) { - std::string string_command = red_tone.getFullPathName().toStdString(); - const char* char_red = &string_command[0]; - - std::ofstream myfile; - myfile.open(char_red); - myfile << BinaryData::red_json; - - myfile.close(); - } - - if (gold_tone.existsAsFile() == false) { - std::string string_command = gold_tone.getFullPathName().toStdString(); - const char* char_gold = &string_command[0]; - - std::ofstream myfile; - myfile.open(char_gold); - myfile << BinaryData::gold_json; - - myfile.close(); - } - - if (green_tone.existsAsFile() == false) { - std::string string_command = green_tone.getFullPathName().toStdString(); - const char* char_green = &string_command[0]; - - std::ofstream myfile; - myfile.open(char_green); - myfile << BinaryData::green_json; - - myfile.close(); - } -} -void ChameleonAudioProcessor::set_ampDrive(float db_ampDrive) +void ChameleonAudioProcessor::setMode() { - ampDrive = decibelToLinear(db_ampDrive); - ampGainKnobState = db_ampDrive; -} + + if (current_model_index ==0) { + MemoryInputStream jsonInputStream(BinaryData::red_json, BinaryData::red_jsonSize, false); + nlohmann::json weights_json = nlohmann::json::parse(jsonInputStream.readEntireStreamAsString().toStdString()); + LSTM.reset(); + LSTM2.reset(); + LSTM.load_json(weights_json); + LSTM2.load_json(weights_json); + + } else if (current_model_index == 1) { + MemoryInputStream jsonInputStream(BinaryData::gold_json, BinaryData::gold_jsonSize, false); + nlohmann::json weights_json = nlohmann::json::parse(jsonInputStream.readEntireStreamAsString().toStdString()); + LSTM.reset(); + LSTM2.reset(); + LSTM.load_json(weights_json); + LSTM2.load_json(weights_json); + + } else if (current_model_index == 2) { + MemoryInputStream jsonInputStream(BinaryData::green_json, BinaryData::green_jsonSize, false); + nlohmann::json weights_json = nlohmann::json::parse(jsonInputStream.readEntireStreamAsString().toStdString()); + LSTM.reset(); + LSTM2.reset(); + LSTM.load_json(weights_json); + LSTM2.load_json(weights_json); -void ChameleonAudioProcessor::set_ampMaster(float db_ampMaster) -{ - ampMasterKnobState = db_ampMaster; - if (db_ampMaster == -36.0) { - ampMaster = decibelToLinear(-100.0); - } else { - ampMaster = decibelToLinear(db_ampMaster); } + } - - -void ChameleonAudioProcessor::set_ampEQ(float bass_slider, float mid_slider, float treble_slider, float presence_slider) -{ - eq4band.setParameters(bass_slider, mid_slider, treble_slider, presence_slider); -} - -float ChameleonAudioProcessor::decibelToLinear(float dbValue) -{ - return powf(10.0, dbValue/20.0); -} - //============================================================================== // This creates new instances of the plugin.. AudioProcessor* JUCE_CALLTYPE createPluginFilter() diff --git a/Source/PluginProcessor.h b/Source/PluginProcessor.h index fab5912..fcb743f 100644 --- a/Source/PluginProcessor.h +++ b/Source/PluginProcessor.h @@ -74,43 +74,45 @@ class ChameleonAudioProcessor : public AudioProcessor void getStateInformation (MemoryBlock& destData) override; void setStateInformation (const void* data, int sizeInBytes) override; - void loadConfig(File configFile); - void setupDataDirectories(); - void installTones(); + void setMode(); + + //void loadConfig(File configFile); + //void setupDataDirectories(); + //void installTones(); // Amp - void set_ampDrive(float db_ampCleanDrive); - void set_ampMaster(float db_ampMaster); - void set_ampEQ(float bass_slider, float mid_slider, float treble_slider, float presence_slider); + //void set_ampDrive(float db_ampCleanDrive); + //void set_ampMaster(float db_ampMaster); + //void set_ampEQ(float bass_slider, float mid_slider, float treble_slider, float presence_slider); - float decibelToLinear(float dbValue); + //float decibelToLinear(float dbValue); - std::vector jsonFiles; - File currentDirectory = File::getCurrentWorkingDirectory().getFullPathName(); - File userAppDataDirectory = File::getSpecialLocation(File::userDocumentsDirectory).getChildFile(JucePlugin_Manufacturer).getChildFile(JucePlugin_Name); - File userAppDataDirectory_tones = userAppDataDirectory.getFullPathName() + "/tones"; + //std::vector jsonFiles; + //File currentDirectory = File::getCurrentWorkingDirectory().getFullPathName(); + //File userAppDataDirectory = File::getSpecialLocation(File::userDocumentsDirectory).getChildFile(JucePlugin_Manufacturer).getChildFile(JucePlugin_Name); + //File userAppDataDirectory_tones = userAppDataDirectory.getFullPathName() + "/tones"; - File red_tone = userAppDataDirectory_tones.getFullPathName() + "/red.json"; - File gold_tone = userAppDataDirectory_tones.getFullPathName() + "/gold.json"; - File green_tone = userAppDataDirectory_tones.getFullPathName() + "/green.json"; + //File red_tone = userAppDataDirectory_tones.getFullPathName() + "/red.json"; + //File gold_tone = userAppDataDirectory_tones.getFullPathName() + "/gold.json"; + //File green_tone = userAppDataDirectory_tones.getFullPathName() + "/green.json"; // Pedal/amp states int amp_state = 1; // 0 = off, 1 = on - int custom_tone = 0; // 0 = custom tone loaded, 1 = default channel tone - File loaded_tone; - juce::String loaded_tone_name; + //int custom_tone = 0; // 0 = custom tone loaded, 1 = default channel tone + //File loaded_tone; + //juce::String loaded_tone_name; const char* char_filename = ""; - int model_loaded = 0; + //int model_loaded = 0; int current_model_index = 0; // 0 = red, 1 = gold, 2 = green int fromUpDown = 0; // Amp knob states - float ampBassKnobState = 0.0; - float ampMidKnobState = 0.0; - float ampTrebleKnobState = 0.0; - float ampGainKnobState = 0.0; - float ampMasterKnobState = -18.0; - float ampPresenceKnobState = 0.0; + //float ampBassKnobState = 0.0; + //float ampMidKnobState = 0.0; + //float ampTrebleKnobState = 0.0; + //float ampGainKnobState = 0.0; + //float ampMasterKnobState = -18.0; + //float ampPresenceKnobState = 0.0; RT_LSTM LSTM; RT_LSTM LSTM2; @@ -121,8 +123,17 @@ class ChameleonAudioProcessor : public AudioProcessor Eq4Band eq4band; // Amp EQ // Amp - float ampDrive = 1.0; - float ampMaster = 1.0; + //float ampDrive = 1.0; + //float ampMaster = 1.0; + + std::atomic* bassParam = nullptr; + std::atomic* midParam = nullptr; + std::atomic* trebleParam = nullptr; + std::atomic* driveParam = nullptr; + std::atomic* gainParam = nullptr; + std::atomic* presenceParam = nullptr; + std::atomic* masterParam = nullptr; + float previousAmpDrive = 1.0; float previousAmpMaster = 1.0; diff --git a/Source/RTNeuralLSTM.cpp b/Source/RTNeuralLSTM.cpp index b0a6bbd..92aec77 100644 --- a/Source/RTNeuralLSTM.cpp +++ b/Source/RTNeuralLSTM.cpp @@ -17,15 +17,15 @@ Vec2d transpose(const Vec2d& x) return y; } -void RT_LSTM::load_json(const char* filename) +void RT_LSTM::load_json(const nlohmann::json& weights_json) { auto& lstm = model.get<0>(); auto& dense = model.get<1>(); // read a JSON file - std::ifstream i2(filename); - nlohmann::json weights_json; - i2 >> weights_json; + //std::ifstream i2(filename); + //nlohmann::json weights_json; + //i2 >> weights_json; Vec2d lstm_weights_ih = weights_json["/state_dict/rec.weight_ih_l0"_json_pointer]; lstm.setWVals(transpose(lstm_weights_ih)); diff --git a/Source/RTNeuralLSTM.h b/Source/RTNeuralLSTM.h index 184082f..448cfa2 100644 --- a/Source/RTNeuralLSTM.h +++ b/Source/RTNeuralLSTM.h @@ -9,7 +9,7 @@ class RT_LSTM RT_LSTM() = default; void reset(); - void load_json(const char* filename); + void load_json(const nlohmann::json& weights_json); void process(const float* inData, float* outData, int numSamples); diff --git a/modules/RTNeural b/modules/RTNeural index 0888e5a..0ffc489 160000 --- a/modules/RTNeural +++ b/modules/RTNeural @@ -1 +1 @@ -Subproject commit 0888e5a1157dd37110daca3acfa97a26ceed3563 +Subproject commit 0ffc489faea93cc084ac351232c3b6239c88f332 diff --git a/resources/CMakeLists.txt b/resources/CMakeLists.txt index e37b28c..1646f0f 100644 --- a/resources/CMakeLists.txt +++ b/resources/CMakeLists.txt @@ -14,11 +14,9 @@ juce_add_binary_data(BinaryData SOURCES power_switch_down.png power_switch_mid.png power_switch_up.png - - - ../models/red.json - ../models/gold.json - ../models/green.json + ../models/red.json + ../models/gold.json + ../models/green.json ) # Need to build BinaryData with -fPIC flag on Linux From cea54554547cb31d9be985c02a09439f73d7250d Mon Sep 17 00:00:00 2001 From: Keith Date: Tue, 16 Aug 2022 20:34:14 -0500 Subject: [PATCH 3/8] Fixed EQ, updated models --- Source/PluginEditor.cpp | 30 +----------------------------- Source/PluginProcessor.cpp | 18 +++++++++++------- Source/PluginProcessor.h | 38 +------------------------------------- Source/RTNeuralLSTM.cpp | 2 +- Source/RTNeuralLSTM.h | 4 ++-- models/gold.json | 2 +- models/green.json | 2 +- models/red.json | 2 +- 8 files changed, 19 insertions(+), 79 deletions(-) diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index c6783bf..dd77b8a 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -46,66 +46,48 @@ ChameleonAudioProcessorEditor::ChameleonAudioProcessorEditor (ChameleonAudioProc addAndMakeVisible(ampBassKnob); ampBassKnob.setLookAndFeel(&SilverKnobLAF); ampBassKnob.addListener(this); - //ampBassKnob.setRange(-8.0, 8.0); - //ampBassKnob.setValue(processor.ampBassKnobState); ampBassKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampBassKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - //ampBassKnob.setNumDecimalPlacesToDisplay(1); ampBassKnob.setDoubleClickReturnValue(true, 0.0); midSliderAttach = std::make_unique(processor.treeState, MID_ID, ampMidKnob); addAndMakeVisible(ampMidKnob); ampMidKnob.setLookAndFeel(&SilverKnobLAF); ampMidKnob.addListener(this); - //ampMidKnob.setRange(-8.0, 8.0); - //ampMidKnob.setValue(processor.ampMidKnobState); ampMidKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampMidKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - //ampMidKnob.setNumDecimalPlacesToDisplay(1); ampMidKnob.setDoubleClickReturnValue(true, 0.0); trebleSliderAttach = std::make_unique(processor.treeState, TREBLE_ID, ampTrebleKnob); addAndMakeVisible(ampTrebleKnob); ampTrebleKnob.setLookAndFeel(&SilverKnobLAF); ampTrebleKnob.addListener(this); - //ampTrebleKnob.setRange(-8.0, 8.0); - //ampTrebleKnob.setValue(processor.ampTrebleKnobState); ampTrebleKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampTrebleKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - //ampTrebleKnob.setNumDecimalPlacesToDisplay(1); ampTrebleKnob.setDoubleClickReturnValue(true, 0.0); gainSliderAttach = std::make_unique(processor.treeState, GAIN_ID, ampGainKnob); addAndMakeVisible(ampGainKnob); ampGainKnob.setLookAndFeel(&SilverKnobLAF); ampGainKnob.addListener(this); - //ampGainKnob.setRange(-10.0, 10.0); - //ampGainKnob.setValue(processor.ampGainKnobState); ampGainKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampGainKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20); - //ampGainKnob.setNumDecimalPlacesToDisplay(1); ampGainKnob.setDoubleClickReturnValue(true, 0.5); presenceSliderAttach = std::make_unique(processor.treeState, PRESENCE_ID, ampPresenceKnob); addAndMakeVisible(ampPresenceKnob); ampPresenceKnob.setLookAndFeel(&SilverKnobLAF); ampPresenceKnob.addListener(this); - //ampPresenceKnob.setRange(-8.0, 8.0); - //ampPresenceKnob.setValue(processor.ampPresenceKnobState); ampPresenceKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampPresenceKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20 ); - //ampPresenceKnob.setNumDecimalPlacesToDisplay(1); ampPresenceKnob.setDoubleClickReturnValue(true, 0.0); masterSliderAttach = std::make_unique(processor.treeState, MASTER_ID, ampMasterKnob); addAndMakeVisible(ampMasterKnob); ampMasterKnob.setLookAndFeel(&SilverKnobLAF); ampMasterKnob.addListener(this); - //ampMasterKnob.setRange(-36.0, 0.0); - //ampMasterKnob.setValue(processor.ampMasterKnobState); ampMasterKnob.setSliderStyle(juce::Slider::SliderStyle::RotaryVerticalDrag); ampMasterKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20 ); - //ampMasterKnob.setNumDecimalPlacesToDisplay(1); ampMasterKnob.setDoubleClickReturnValue(true, 0.5); // Size of plugin GUI @@ -189,22 +171,12 @@ void ChameleonAudioProcessorEditor::colorSelectClicked() { void ChameleonAudioProcessorEditor::sliderValueChanged(Slider* slider) { // Amp - /* - if (slider == &GainKnob) - processor.set_ampDrive(slider->getValue()); - else if (slider == &MasterKnob) - processor.set_ampMaster(slider->getValue()); - else if (slider == &BassKnob || slider == &MidKnob || slider == &TrebleKnob) { + if (slider == &BassKnob || slider == &MidKnob || slider == &TrebleKnob) { processor.set_ampEQ(ampBassKnob.getValue(), ampMidKnob.getValue(), ampTrebleKnob.getValue(), ampPresenceKnob.getValue()); - // Set knob states for saving positions when closing/reopening GUI - processor.ampBassKnobState = ampBassKnob.getValue(); - processor.ampMidKnobState = ampMidKnob.getValue(); - processor.ampTrebleKnobState = ampTrebleKnob.getValue(); } else if (slider == &PresenceKnob) { processor.set_ampEQ(ampBassKnob.getValue(), ampMidKnob.getValue(), ampTrebleKnob.getValue(), ampPresenceKnob.getValue()); } - */ } void ChameleonAudioProcessorEditor::resetImages() diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index eef52b6..f20ed1e 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -24,7 +24,6 @@ ChameleonAudioProcessor::ChameleonAudioProcessor() .withOutput("Output", AudioChannelSet::stereo(), true) #endif ), - //treeState(*this, nullptr, "PARAMETER", { std::make_unique(GAIN_ID, GAIN_NAME, NormalisableRange(0.0f, 1.0f, 0.01f), 0.5f), treeState(*this, nullptr, "PARAMETER", { std::make_unique(GAIN_ID, GAIN_NAME, NormalisableRange(0.0f, 1.0f, 0.01f), 0.5f), std::make_unique(BASS_ID, BASS_NAME, NormalisableRange(-8.0f, 8.0f, 0.01f), 0.0f), std::make_unique(MID_ID, MID_NAME, NormalisableRange(-8.0f, 8.0f, 0.01f), 0.0f), @@ -34,9 +33,6 @@ ChameleonAudioProcessor::ChameleonAudioProcessor() #endif { - //setupDataDirectories(); - //installTones(); - //loadConfig(red_tone); setMode(); gainParam = treeState.getRawParameterValue (GAIN_ID); @@ -45,6 +41,13 @@ ChameleonAudioProcessor::ChameleonAudioProcessor() trebleParam = treeState.getRawParameterValue (TREBLE_ID); presenceParam = treeState.getRawParameterValue (PRESENCE_ID); masterParam = treeState.getRawParameterValue (MASTER_ID); + + auto bassValue = static_cast (bassParam->load()); + auto midValue = static_cast (midParam->load()); + auto trebleValue = static_cast (trebleParam->load()); + auto presenceValue = static_cast (presenceParam->load()); + + eq4band.setParameters(bassValue, midValue, trebleValue, presenceValue); } ChameleonAudioProcessor::~ChameleonAudioProcessor() @@ -193,8 +196,6 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff } // resample to target sample rate - - //auto block = dsp::AudioBlock (buffer.getArrayOfWritePointers(), 1, numSamples); auto block44k = resampler.processIn (block); for (int ch = 0; ch < buffer.getNumChannels(); ++ch) @@ -294,7 +295,10 @@ void ChameleonAudioProcessor::setStateInformation (const void* data, int sizeInB } } - +void ChameleonAudioProcessor::set_ampEQ(float bass_slider, float mid_slider, float treble_slider, float presence_slider) +{ + eq4band.setParameters(bass_slider, mid_slider, treble_slider, presence_slider); +} void ChameleonAudioProcessor::setMode() { diff --git a/Source/PluginProcessor.h b/Source/PluginProcessor.h index fcb743f..60b367b 100644 --- a/Source/PluginProcessor.h +++ b/Source/PluginProcessor.h @@ -74,45 +74,13 @@ class ChameleonAudioProcessor : public AudioProcessor void getStateInformation (MemoryBlock& destData) override; void setStateInformation (const void* data, int sizeInBytes) override; + void set_ampEQ(float bass_slider, float mid_slider, float treble_slider, float presence_slider); void setMode(); - //void loadConfig(File configFile); - //void setupDataDirectories(); - //void installTones(); - - // Amp - //void set_ampDrive(float db_ampCleanDrive); - //void set_ampMaster(float db_ampMaster); - //void set_ampEQ(float bass_slider, float mid_slider, float treble_slider, float presence_slider); - - //float decibelToLinear(float dbValue); - - //std::vector jsonFiles; - //File currentDirectory = File::getCurrentWorkingDirectory().getFullPathName(); - //File userAppDataDirectory = File::getSpecialLocation(File::userDocumentsDirectory).getChildFile(JucePlugin_Manufacturer).getChildFile(JucePlugin_Name); - //File userAppDataDirectory_tones = userAppDataDirectory.getFullPathName() + "/tones"; - - //File red_tone = userAppDataDirectory_tones.getFullPathName() + "/red.json"; - //File gold_tone = userAppDataDirectory_tones.getFullPathName() + "/gold.json"; - //File green_tone = userAppDataDirectory_tones.getFullPathName() + "/green.json"; - // Pedal/amp states int amp_state = 1; // 0 = off, 1 = on - //int custom_tone = 0; // 0 = custom tone loaded, 1 = default channel tone - //File loaded_tone; - //juce::String loaded_tone_name; - const char* char_filename = ""; - //int model_loaded = 0; int current_model_index = 0; // 0 = red, 1 = gold, 2 = green int fromUpDown = 0; - - // Amp knob states - //float ampBassKnobState = 0.0; - //float ampMidKnobState = 0.0; - //float ampTrebleKnobState = 0.0; - //float ampGainKnobState = 0.0; - //float ampMasterKnobState = -18.0; - //float ampPresenceKnobState = 0.0; RT_LSTM LSTM; RT_LSTM LSTM2; @@ -122,10 +90,6 @@ class ChameleonAudioProcessor : public AudioProcessor private: Eq4Band eq4band; // Amp EQ - // Amp - //float ampDrive = 1.0; - //float ampMaster = 1.0; - std::atomic* bassParam = nullptr; std::atomic* midParam = nullptr; std::atomic* trebleParam = nullptr; diff --git a/Source/RTNeuralLSTM.cpp b/Source/RTNeuralLSTM.cpp index 92aec77..d2c4d7f 100644 --- a/Source/RTNeuralLSTM.cpp +++ b/Source/RTNeuralLSTM.cpp @@ -35,7 +35,7 @@ void RT_LSTM::load_json(const nlohmann::json& weights_json) std::vector lstm_bias_ih = weights_json["/state_dict/rec.bias_ih_l0"_json_pointer]; std::vector lstm_bias_hh = weights_json["/state_dict/rec.bias_hh_l0"_json_pointer]; - for (int i = 0; i < 80; ++i) + for (int i = 0; i < 128; ++i) lstm_bias_hh[i] += lstm_bias_ih[i]; lstm.setBVals(lstm_bias_hh); diff --git a/Source/RTNeuralLSTM.h b/Source/RTNeuralLSTM.h index 448cfa2..afe2ef0 100644 --- a/Source/RTNeuralLSTM.h +++ b/Source/RTNeuralLSTM.h @@ -15,6 +15,6 @@ class RT_LSTM private: RTNeural::ModelT, - RTNeural::DenseT> model; + RTNeural::LSTMLayerT, + RTNeural::DenseT> model; }; diff --git a/models/gold.json b/models/gold.json index e3f28f0..1677a92 100644 --- a/models/gold.json +++ b/models/gold.json @@ -1 +1 @@ -{"model_data": {"model": "SimpleRNN", "input_size": 1, "skip": 1, "output_size": 1, "unit_type": "LSTM", "num_layers": 1, "hidden_size": 20, "bias_fl": true}, "state_dict": {"rec.weight_ih_l0": [[-0.019447844475507736], [-0.025056468322873116], [-0.027949145063757896], [-0.0577019564807415], [0.0598582848906517], [-0.13664653897285461], [0.04766739159822464], [-0.0004665635642595589], [-0.01822698302567005], [-0.026177534833550453], [0.13945509493350983], [0.08213596791028976], [-0.07263191044330597], [0.016477657482028008], [0.08215028792619705], [-0.037856072187423706], [-0.02933952771127224], [0.02008328214287758], [0.26485326886177063], [-0.005131983198225498], [0.029838887974619865], [-0.18419921398162842], [-0.0031650769524276257], [0.01123843714594841], [0.02191070280969143], [-0.27952781319618225], [-0.08440619707107544], [0.003502423409372568], [-0.05589883029460907], [0.009617816656827927], [-0.17085745930671692], [0.18455921113491058], [0.13033755123615265], [0.12017399072647095], [-0.01160273514688015], [-0.06674443930387497], [-0.006865261122584343], [0.0690724328160286], [0.3255431354045868], [0.038427989929914474], [-0.01661967858672142], [-0.5548465251922607], [0.11351384967565536], [0.584331750869751], [-0.016461731866002083], [-0.16648893058300018], [-1.0327941179275513], [0.9544013738632202], [-0.20280593633651733], [1.1926831007003784], [-0.616495668888092], [0.09868396073579788], [-0.13096849620342255], [-0.24977411329746246], [-0.20742036402225494], [-0.38016119599342346], [0.29314446449279785], [-1.937903881072998], [0.024048205465078354], [-0.25330114364624023], [0.013881120830774307], [0.05058179050683975], [-0.06444364786148071], [0.0011564228916540742], [0.07852021604776382], [-0.1330355554819107], [0.005339630413800478], [-0.02271626703441143], [-0.020067662000656128], [-0.016898978501558304], [-0.33312153816223145], [0.15334169566631317], [0.04010051488876343], [-0.06493920832872391], [0.0035527292639017105], [-0.08799711614847183], [0.0704353079199791], [0.013689864426851273], [0.25253525376319885], [0.17539390921592712]], "rec.weight_hh_l0": [[0.05518711358308792, -0.07754596322774887, 0.1685483306646347, -0.0913996696472168, -0.2602922022342682, -0.037981774657964706, 0.13025124371051788, -0.19238460063934326, -0.011549021117389202, 0.11967886239290237, -0.0605015903711319, 0.14672507345676422, -0.15146052837371826, -0.05317859351634979, -0.030638353899121284, 0.012755597941577435, -0.08355163782835007, -0.018700124695897102, -0.06902393698692322, 0.20091427862644196], [0.06355689465999603, 0.030786724761128426, -0.05928857624530792, -0.012655655853450298, 0.007466302718967199, 0.08178248256444931, -0.03774162381887436, 0.16089120507240295, -0.05458729714155197, 0.197276309132576, -0.06130843982100487, 0.022037575021386147, 0.0040161521174013615, -0.0770571306347847, -0.16013172268867493, -0.0008425589185208082, 0.1516290158033371, 0.14186187088489532, 0.02541075088083744, -0.08810049295425415], [-0.524373471736908, 0.16818387806415558, -0.019238272681832314, -0.11372976750135422, 0.0701417550444603, -0.028050227090716362, 0.027428431436419487, 0.1503446251153946, -0.2877107560634613, 0.031496159732341766, 0.07854628562927246, 0.014592357911169529, -0.07841438800096512, 0.013700781390070915, 0.11680330336093903, -0.0017987401224672794, -0.04115646332502365, 0.0809141993522644, -0.13139332830905914, -0.007932211272418499], [-0.4056844711303711, 0.12930133938789368, 0.15358392894268036, 0.026014741510152817, 0.005089582875370979, -0.11111375689506531, -0.0958380326628685, -0.015418748371303082, -0.21881882846355438, 0.027688652276992798, 0.18690986931324005, -0.10109016299247742, 0.13574892282485962, -0.19272464513778687, -0.09890548139810562, 0.01318427175283432, 0.016408206894993782, 0.026119373738765717, -0.05442313104867935, 0.15848655998706818], [0.13398471474647522, 0.08619386702775955, -0.021596305072307587, -0.1534799039363861, 0.16563911736011505, 0.10313551127910614, 0.07548533380031586, 0.16313296556472778, -0.06530635803937912, 0.19126686453819275, -0.06023223325610161, 0.09392081201076508, -0.004347410053014755, -0.09310080856084824, -0.0575074777007103, -0.030204886570572853, 0.007390162441879511, 0.019699223339557648, 0.005358520429581404, -0.08646290749311447], [0.1843971461057663, -0.018506525084376335, 0.03716927021741867, 0.012037134729325771, -0.006488522980362177, 0.02295824885368347, -0.1835903823375702, 0.2045467644929886, 0.0771871879696846, -0.147933229804039, 0.03253037482500076, -0.03855613246560097, 0.022985512390732765, -0.017058363184332848, -0.11690850555896759, -0.03735721856355667, 0.018544495105743408, -0.10423094779253006, -0.010551358573138714, -0.07274038344621658], [0.052193935960531235, -0.09647965431213379, 0.08652778714895248, -0.20198531448841095, -0.016227394342422485, 0.0027239988557994366, 0.07964092493057251, 0.005623224191367626, 0.09144940227270126, -0.06319887936115265, -0.1224178820848465, 0.07078646123409271, 0.03756197541952133, -0.06315693259239197, 0.21645326912403107, -0.14940914511680603, -0.11221224814653397, -0.140094593167305, 0.17217060923576355, 0.0003183537919539958], [0.24861879646778107, -0.11006616801023483, 0.041085343807935715, 0.04827073588967323, 0.01700403541326523, 0.09396681189537048, -0.009279567748308182, 0.034621912986040115, 0.04443267732858658, 0.012656724080443382, -0.07372145354747772, 0.004609929397702217, 0.0008676739525981247, 0.07328000664710999, -0.04831444099545479, -0.024859372526407242, -0.06788402050733566, 0.11174312978982925, 0.009761597029864788, -0.11245103925466537], [-0.007153129670768976, 0.07364089041948318, -0.0407341793179512, -0.12981930375099182, -0.2676835060119629, 0.016422968357801437, 0.12459628283977509, 0.10387853533029556, -0.03812267258763313, 0.10162214189767838, -0.05509015545248985, 0.054045651108026505, 0.018475472927093506, -0.014680090360343456, 0.06931336969137192, -0.19449570775032043, -0.026312896981835365, -0.03233358636498451, 0.008052026852965355, 0.08063368499279022], [0.613568127155304, 0.0727277472615242, -0.05489224195480347, -0.09499085694551468, 0.13869860768318176, 0.11290702223777771, -0.0036256411112844944, -0.10369529575109482, 0.06793326884508133, 0.20772422850131989, -0.09905779361724854, 0.048957910388708115, 0.015556463971734047, 0.03691618889570236, 0.2973245084285736, 0.07774403691291809, 0.02511819265782833, 0.08108650892972946, 0.00046650462900288403, -0.1091407909989357], [-0.86009681224823, -0.10406261682510376, 0.22447270154953003, -0.021440040320158005, 0.16686441004276276, 0.035943347960710526, -0.34318485856056213, 0.03716016933321953, -0.42758941650390625, -0.44736242294311523, 0.1625305414199829, -0.09072662144899368, -0.11658599972724915, 0.07145371288061142, -0.34718888998031616, 0.1038302630186081, 0.19135968387126923, -0.24012550711631775, 0.37812545895576477, 0.32723236083984375], [-0.15308919548988342, 0.08990888297557831, -0.027086924761533737, 0.05531707778573036, 0.006414886564016342, -0.08645354211330414, -0.06555881351232529, -0.06185548007488251, 0.07370388507843018, -0.1491524577140808, -0.04989151656627655, 0.04488036781549454, -0.1230119913816452, -0.06806948035955429, -0.172956183552742, -0.12870381772518158, -0.09606195986270905, 0.08611079305410385, 0.10462788492441177, 0.008232355117797852], [-0.367292582988739, 0.11138580739498138, 0.0031885395292192698, -0.3427893817424774, -0.1015293300151825, -0.14681513607501984, 0.25029194355010986, 0.15894490480422974, 0.09416560083627701, -0.19857197999954224, -0.03334103152155876, 0.14039084315299988, -0.023395443335175514, -0.22777166962623596, 0.27052807807922363, -0.5065270662307739, -0.1796034872531891, 0.0019449623068794608, 0.3372080326080322, -0.025632493197917938], [-0.022000785917043686, -0.004159725271165371, 0.19379712641239166, -0.24253106117248535, -0.09026728570461273, -0.1452236920595169, 0.11413471400737762, 0.12810909748077393, 0.24495892226696014, -0.20736302435398102, 0.09517615288496017, 0.10710468143224716, -0.060880232602357864, -0.05134632810950279, 0.2977038621902466, -0.390456885099411, -0.1439114660024643, -0.027828190475702286, 0.29142382740974426, 0.08747142553329468], [-0.09254381060600281, -0.036984626203775406, 0.04237798973917961, 0.020839734002947807, -0.12830771505832672, 0.09405510872602463, -0.3001168370246887, 0.25881487131118774, 0.024240506812930107, -0.5709332823753357, -0.09835831820964813, -0.20472173392772675, -0.06580699980258942, -0.016431452706456184, 0.10101104527711868, -0.3172624707221985, -0.01669861376285553, -0.16322168707847595, 0.021406587213277817, 0.006790733430534601], [-0.10307866334915161, 0.15614144504070282, 0.11624249070882797, 0.01447403896600008, 0.03802252933382988, -0.09303879737854004, 0.09924206137657166, -0.019547684118151665, -0.05412214249372482, 0.18201403319835663, 0.11399507522583008, 0.009984846226871014, -0.06619109213352203, 0.033900387585163116, -0.1033070757985115, -0.02524891123175621, 0.11317434906959534, -0.0199305210262537, 0.0794379860162735, 0.09347192198038101], [0.0037171465810388327, -0.08064486086368561, -0.0036210191901773214, 0.03865945711731911, 0.08312246203422546, 0.10228807479143143, -0.15479548275470734, 0.041672952473163605, -0.12907816469669342, -0.00853489339351654, 0.07558782398700714, 0.0034813617821782827, 0.19832739233970642, 0.0597023069858551, 0.018976539373397827, -0.17339521646499634, -0.07434844225645065, 0.03505590558052063, 0.12372438609600067, -0.06665539741516113], [0.008073627017438412, -0.10481277108192444, 0.005965737160295248, -0.15711688995361328, -0.24352867901325226, 0.15142901241779327, 0.00287107122130692, 0.30174970626831055, 0.3665829598903656, -0.49575045704841614, -0.08783245831727982, -0.010550597682595253, 0.06200718134641647, 0.007726295851171017, 0.578364372253418, -0.38180312514305115, -0.05335056409239769, -0.03512635827064514, -0.006351667456328869, -0.2357603907585144], [0.03611001372337341, -0.008967970497906208, -0.009080021642148495, 0.033711690455675125, 0.12387523055076599, 0.13339465856552124, 0.055278174579143524, 0.09763850271701813, -0.035956818610429764, 0.024043133482336998, -0.2639020085334778, 0.0026563771534711123, 0.12354875355958939, 0.07986221462488174, -0.013545723631978035, -0.2586804926395416, 0.13148213922977448, -0.15180565416812897, 0.2021348774433136, -0.0351102240383625], [-0.11332911252975464, -0.024008115753531456, 0.2591845989227295, -0.036349114030599594, 0.07933103293180466, -0.0941624641418457, -0.05212608352303505, 0.040998347103595734, -0.1126856654882431, -0.15193016827106476, 0.03711472451686859, -0.03700776398181915, -0.19575026631355286, 0.007940077222883701, -0.09336519241333008, -0.0832693800330162, 0.06101037189364433, 0.08595991879701614, 0.08712240308523178, -0.09356433153152466], [0.16976068913936615, 0.053457923233509064, 0.047168467193841934, -0.038565173745155334, -0.11630398035049438, -0.1273966133594513, 0.11235647648572922, -0.04071684554219246, -0.1456076204776764, 0.22767679393291473, -0.11523449420928955, 0.0979793444275856, -0.11354968696832657, 0.19242408871650696, -0.28191548585891724, 0.19490966200828552, -0.0451824814081192, 0.03359649330377579, -0.057823117822408676, 0.0956057533621788], [0.09106718748807907, 0.0511152409017086, 0.11181432753801346, -0.10830819606781006, -0.2195604145526886, 0.053606968373060226, 0.03869840130209923, 0.3305540978908539, 0.1176816001534462, -0.16111579537391663, 0.05209739878773689, 0.05709341540932655, -0.11477018892765045, 0.02699420414865017, 0.2768569588661194, -0.03854607790708542, -0.23495110869407654, -0.020116491243243217, -0.10312322527170181, -0.07122493535280228], [0.40556085109710693, 0.35976940393447876, -0.057626549154520035, 0.08397476375102997, -0.06416057050228119, 0.02077019028365612, -0.06882838159799576, 0.1651061326265335, -0.2175593376159668, -0.0877477154135704, -0.1346227377653122, 0.10463865846395493, -0.24723148345947266, 0.1293589323759079, 0.02098769322037697, -0.06147242337465286, -0.08753819018602371, 0.22121471166610718, 0.1341845840215683, -0.5504289269447327], [0.3860865533351898, 0.045471809804439545, -0.08179875463247299, 0.13998962938785553, -0.03690464422106743, 0.038696177303791046, -0.05967707559466362, -0.0849035456776619, 0.023538896813988686, -0.2226492017507553, -0.1061340793967247, 0.06482906639575958, 0.010904069058597088, -0.07550954073667526, 0.1631031185388565, -0.09098077565431595, -0.02459479123353958, -0.01733514852821827, -0.017377126961946487, -0.25344717502593994], [0.3391460180282593, 0.10788827389478683, 0.13200058043003082, -0.1252831518650055, 0.21193215250968933, 0.11215222626924515, -0.0776895061135292, 0.1670871526002884, -0.06608565896749496, -0.03549337014555931, -0.051310647279024124, -0.017618706449866295, -0.09330866485834122, 0.11655986309051514, -0.23797817528247833, -0.0675773173570633, 0.005865470971912146, -0.0082725053653121, -0.011635241098701954, -0.1532534658908844], [-0.10071156173944473, 0.10421384871006012, 0.20407120883464813, -0.0030700182542204857, -0.0048719351179897785, -0.1255800426006317, -0.22566194832324982, 0.2017441838979721, 0.05974109098315239, 0.03128395974636078, 0.26711562275886536, -0.08869525790214539, 0.09876594692468643, -0.19008401036262512, -0.1641746163368225, -0.003172787372022867, -0.059353578835725784, -0.09080056846141815, -0.04172667860984802, 0.10759281367063522], [0.11491812020540237, -0.04278715327382088, 0.13546107709407806, -0.32020047307014465, 0.14268504083156586, -0.004577815532684326, 0.15249836444854736, -0.12116020917892456, -0.021616654470562935, -0.10573703050613403, -0.06680600345134735, -0.010151765309274197, -0.01626966893672943, -0.023915179073810577, -0.10059578716754913, -0.06953808665275574, 0.026196515187621117, -0.08279087394475937, -0.030784161761403084, 0.05564115568995476], [0.11658988893032074, 0.07681453227996826, 0.06907898187637329, 0.07555898278951645, 0.13886964321136475, 0.11012448370456696, 0.02053801529109478, 0.14608268439769745, -0.06404314935207367, 0.2591259777545929, -0.04033399745821953, 0.09589162468910217, 0.055985063314437866, 0.01348342839628458, -0.19363245368003845, 0.16787676513195038, 0.02078312076628208, 0.21490556001663208, -0.04522955045104027, -0.07876956462860107], [0.0420592725276947, -0.16450564563274384, -0.025422630831599236, -0.14074808359146118, -0.26500189304351807, -0.05448778346180916, 0.03831452503800392, 0.028988296166062355, 0.04341387003660202, 0.10080904513597488, 0.05014178901910782, 0.025865083560347557, 0.18208439648151398, -0.15921948850154877, -0.07673126459121704, -0.09131553769111633, 0.11459461599588394, -0.16353444755077362, 0.010043404996395111, -0.21848678588867188], [0.09297915548086166, -0.07854297012090683, -0.0019902244675904512, 0.01058158278465271, 0.08630484342575073, 0.19351205229759216, -0.07669854164123535, 0.0073563032783567905, 0.08910699933767319, 0.16878071427345276, -0.059664756059646606, 0.06689996272325516, 0.2060290277004242, -0.1598183959722519, 0.4693920314311981, 0.20351167023181915, -0.02319936454296112, -0.2049332559108734, 0.0444454662501812, -0.05937489494681358], [0.7798285484313965, 0.20003077387809753, -0.1343485713005066, 0.1370982676744461, 0.017063530161976814, 0.06680324673652649, 0.03752143681049347, -0.06393051147460938, 0.19468966126441956, 0.16968829929828644, 0.0761818140745163, 0.11241009086370468, -0.020848605781793594, -0.030951332300901413, 0.44083860516548157, 0.04575372114777565, -0.10479496419429779, 0.05636642873287201, 0.2869620621204376, -0.443560928106308], [0.18153466284275055, 0.027363019064068794, -0.23293231427669525, 0.0028774382080882788, -0.052322935312986374, 0.0663243755698204, -0.03143864497542381, 0.2670721113681793, 0.00170124473515898, -0.005373551044613123, -0.09155614674091339, -0.011632365174591541, -0.08735886216163635, 0.013353523798286915, -0.25829771161079407, -0.17538999021053314, 0.12865805625915527, -0.12845346331596375, -0.059509169310331345, -0.24301007390022278], [0.17737792432308197, 0.06863731145858765, 0.054283928126096725, -0.057352688163518906, -0.03799900412559509, 0.19825217127799988, -0.037604548037052155, 0.11726255714893341, -0.010019748471677303, 0.037927061319351196, -0.25382697582244873, 0.13807876408100128, 0.16005846858024597, -0.021249303594231606, 0.12161421775817871, -0.1691218614578247, -0.12973327934741974, 0.11699627339839935, 0.13884595036506653, -0.34416183829307556], [0.3007068634033203, 0.09789492934942245, -0.033219631761312485, -0.1408054530620575, -0.05611281096935272, 0.06117524206638336, 0.1869868040084839, 0.2733920216560364, 0.14597037434577942, -0.0854317843914032, -0.09783947467803955, 0.11572053283452988, 0.06885351240634918, 0.20954126119613647, -0.08388807624578476, -0.0762842670083046, -0.050169311463832855, 0.06211793050169945, 0.00341834407299757, -0.17761747539043427], [-0.1346873790025711, -0.06681209802627563, 0.017213420942425728, 0.11984555423259735, -0.24496197700500488, 0.17371641099452972, -0.18343396484851837, 0.04677750915288925, 0.006853971630334854, -0.3461613059043884, -0.09639036655426025, -0.14038771390914917, -0.33644846081733704, -0.019630586728453636, 0.09115317463874817, -0.25757458806037903, -0.06273835897445679, -0.22995640337467194, 0.1631535440683365, 0.07523029297590256], [0.32713791728019714, -0.053083036094903946, -0.08243323117494583, 0.06900257617235184, -0.12421544641256332, 0.05434458330273628, 0.22892023622989655, 0.15312838554382324, 0.008620060980319977, 0.07965958118438721, -0.13229049742221832, 0.05122791603207588, -0.14224916696548462, 0.11537053436040878, 0.04483243450522423, -0.1551467478275299, 0.21375761926174164, 0.08786673843860626, 0.04111376777291298, -0.17772528529167175], [0.03148979693651199, -0.1760224550962448, 0.09003748744726181, 0.15080566704273224, 0.049119677394628525, 0.041085563600063324, -0.07567440718412399, -0.030287746340036392, 0.048328906297683716, -0.0744897723197937, 0.027094217017292976, 0.12166319042444229, -0.03629114106297493, 0.011878994293510914, 0.27847597002983093, 0.03419726341962814, -0.0050366781651973724, 0.22292423248291016, 0.18567684292793274, -0.17328034341335297], [0.12912826240062714, -0.025668499991297722, 0.01809111423790455, -0.11586974561214447, -0.35044318437576294, -0.1909199208021164, -0.0835878923535347, -0.31039685010910034, 0.21585716307163239, 0.07006615400314331, -0.07119827717542648, 0.003586525097489357, -0.09913111478090286, -0.04842475801706314, 0.5373096466064453, 0.22338496148586273, -0.09059341251850128, 0.29390236735343933, -0.1838504523038864, 0.006482669152319431], [0.0954788476228714, -0.032887041568756104, 0.08449117094278336, 0.09508473426103592, 0.055184315890073776, 0.16823363304138184, -0.04347890987992287, 0.08229794353246689, -0.01208715420216322, -0.1341208666563034, -0.40839409828186035, 0.010798952542245388, 0.06817186623811722, 0.10478953272104263, 0.013213057070970535, -0.15433190762996674, 0.13343586027622223, -0.03425770252943039, 0.25413352251052856, -0.03963897377252579], [0.3240131139755249, -0.2790905833244324, 0.15220527350902557, -0.12126345187425613, -0.07320094853639603, 0.04171093553304672, 0.10024428367614746, 0.19695627689361572, 0.19993437826633453, -0.04386099800467491, -0.06523620337247849, 0.0064988513477146626, -0.2966424226760864, 0.1711294949054718, -0.005026223137974739, -0.15169019997119904, -0.04805539548397064, 0.025549598038196564, 0.061277370899915695, -0.42419594526290894], [0.13923175632953644, 0.017169682309031487, -0.04358465224504471, -0.29512137174606323, -0.2871777415275574, -0.20253393054008484, 0.16914258897304535, -0.041008614003658295, -0.21866939961910248, 0.4340055286884308, -0.06894917041063309, -0.3058825135231018, -0.15388667583465576, 0.31054675579071045, 0.01102521177381277, -0.3149740695953369, -0.01754787191748619, -0.4037586748600006, -0.3517920970916748, 0.158807173371315], [-0.4313404858112335, 1.1180589199066162, -0.12737725675106049, -0.2799406349658966, -0.15076160430908203, 0.22833599150180817, 0.11000654101371765, -0.8952880501747131, 0.2768722474575043, 0.07509218156337738, 0.14199607074260712, 0.20531217753887177, 0.38628679513931274, -0.8842794895172119, 0.001496198121458292, 0.37435269355773926, 0.518085241317749, -0.5048409104347229, 0.3589304983615875, 0.10033226013183594], [0.03063080459833145, -0.24207119643688202, 0.38083839416503906, -0.11670436710119247, -0.17530037462711334, 0.10815171897411346, -0.03697971627116203, -0.16784346103668213, -0.18032021820545197, -0.006299176253378391, 0.06263911724090576, 0.20600225031375885, 0.07931842654943466, 0.06473029404878616, -0.022941092029213905, 0.017116080969572067, -0.27065062522888184, -0.013434681110084057, -0.028377745300531387, 0.4438842236995697], [0.04224401339888573, -0.07611489295959473, -0.010809943079948425, 0.29222550988197327, -0.11268536746501923, -0.043959204107522964, -0.09121895581483841, -0.34670591354370117, 0.06419596821069717, 0.039221327751874924, 0.3267923891544342, 0.16331574320793152, -0.1173529103398323, 0.24470095336437225, -0.13202466070652008, 0.1369520127773285, -0.32494786381721497, -0.02809019386768341, 0.19161471724510193, -0.030928315594792366], [0.2406466156244278, -0.047444719821214676, 0.17867831885814667, -0.35072630643844604, 0.2735164761543274, -0.41306042671203613, -0.19087530672550201, -0.04930517077445984, 0.009675138629972935, 0.17522534728050232, -0.23789304494857788, -0.16921637952327728, 0.043332818895578384, 0.17128579318523407, -0.1873631477355957, 0.13223111629486084, -0.2983833849430084, -0.39131173491477966, 0.2106103003025055, -0.11893614381551743], [0.10713448375463486, 0.08144135773181915, -0.06139902397990227, 0.47830289602279663, 0.0024118758738040924, 0.17847904562950134, -0.4969433844089508, 0.4308473765850067, -0.02927405945956707, -0.07437098771333694, -0.5246979594230652, -0.00395441148430109, 0.1126737892627716, -0.40116825699806213, 0.04712648689746857, -0.1883619874715805, 0.18932709097862244, -0.5393751263618469, -0.20471177995204926, 0.10393787175416946], [-0.11637541651725769, 0.16183283925056458, 0.03938937559723854, 0.10318911820650101, -0.33420419692993164, 0.23087525367736816, 0.09553191810846329, -0.09233136475086212, 0.29236873984336853, 0.2825022041797638, -0.5552937984466553, -0.08126301318407059, -0.4086342453956604, 0.2552979290485382, 0.22795289754867554, -0.06688957661390305, 0.22683085501194, -0.6351633667945862, -0.3816053569316864, -0.20521199703216553], [0.06815006583929062, 0.4565068185329437, -0.06525842100381851, 0.4270302653312683, -0.04826843738555908, -0.8507645726203918, 0.41582822799682617, 0.33449864387512207, 0.18746115267276764, -0.10201624035835266, 0.4767521023750305, -0.1108599454164505, 0.0032275542616844177, 0.30028200149536133, -0.10117435455322266, -0.17669804394245148, 0.37637728452682495, 0.11025926470756531, 0.1056724414229393, -0.1760924756526947], [0.2070411890745163, -0.32502317428588867, 0.29637452960014343, -0.04921501502394676, -0.24431903660297394, 0.2864691913127899, 0.28001365065574646, -0.06782922148704529, 0.2464793622493744, -0.27357301115989685, -0.2570817470550537, 0.17266914248466492, 0.02090652659535408, 0.10924096405506134, 0.23944680392742157, 0.20374080538749695, -0.27400997281074524, 0.042763601988554, -0.32242053747177124, 0.10804042220115662], [0.19071649014949799, 0.01202115137130022, -0.026613228023052216, 0.1986340880393982, 0.11925983428955078, 0.11513922363519669, -0.04764822870492935, 0.476375550031662, -0.3040287494659424, 0.98257976770401, 0.7210394144058228, 0.09049449861049652, 0.11846762895584106, -0.0026971306651830673, -0.14613811671733856, -0.46489810943603516, 0.045152369886636734, -1.6310784816741943, -0.18576636910438538, -0.09904998540878296], [-0.21525487303733826, 0.04094169661402702, -0.06941691040992737, -0.09283953160047531, 0.03514055907726288, 0.03903475031256676, -0.022421587258577347, -0.06441312283277512, 0.16870999336242676, -0.08788010478019714, 0.45228129625320435, -0.2011692374944687, -0.14479069411754608, -0.05831347405910492, -0.03652813658118248, 0.1244521364569664, -0.245909184217453, 0.5162651538848877, 0.06720925122499466, -0.08223555982112885], [0.026699259877204895, 0.00360883423127234, -0.18935711681842804, 0.40429866313934326, -0.3906765282154083, 0.2240845263004303, 0.18387466669082642, 0.4693744480609894, -0.10609876364469528, 0.16114476323127747, 0.0063889906741678715, 0.139456644654274, 0.2566794157028198, -0.20481769740581512, 0.13368941843509674, 0.009563636966049671, -0.05193132162094116, -0.060658689588308334, -0.06102257966995239, 0.026429595425724983], [-0.1268141269683838, 0.10378284007310867, -0.01828247494995594, 0.2100524753332138, 0.02284441702067852, -0.22071857750415802, 0.17202308773994446, 0.1727799028158188, 0.10225635021924973, 0.021009469404816628, -0.22915436327457428, -0.35565224289894104, 0.7137183547019958, 0.4633220434188843, 0.06783448904752731, -0.04633165895938873, -0.06192544847726822, -0.14755545556545258, -0.16726748645305634, -0.26141396164894104], [-0.38820764422416687, 0.07095174491405487, -0.15632595121860504, -0.11489453166723251, 0.14005668461322784, -0.056401774287223816, 0.40626779198646545, -0.12793578207492828, -0.10824675858020782, -0.10862603783607483, -0.13559739291667938, -0.25529247522354126, -0.4646509885787964, 0.2838524281978607, 0.10328935831785202, 0.4633214771747589, 0.056607820093631744, -0.32452288269996643, -0.04348072409629822, 0.2882534861564636], [0.30375927686691284, 0.051862116903066635, -0.14059531688690186, 0.21215425431728363, 0.09002532064914703, 0.059089843183755875, 0.29778897762298584, 0.2619076371192932, -0.2252063751220703, 1.0252048969268799, 0.03024251013994217, 0.02512906678020954, 0.1990104466676712, 0.093150295317173, 0.456004798412323, -0.32553035020828247, -0.10106544941663742, 0.30300936102867126, 0.31197354197502136, -0.10592939704656601], [-0.10675077885389328, 0.03682442381978035, -0.010096455924212933, 0.14318576455116272, 0.20980194211006165, 0.1857621818780899, 0.008769013918936253, 0.5586007237434387, -0.03416971489787102, 0.12339051812887192, -0.13547898828983307, 0.4690411686897278, -0.09273680299520493, -0.3867665231227875, -0.22544987499713898, 0.5164781212806702, 0.018709702417254448, 0.21482619643211365, 0.007817843928933144, -0.08669661730527878], [0.05136937275528908, 0.08086460828781128, 0.21252280473709106, 0.07833073288202286, 0.2651141583919525, 0.00030707858968526125, -0.198433980345726, -0.36806657910346985, -0.08295860141515732, -0.08443014323711395, 0.05079793184995651, -0.11356166005134583, -0.12516193091869354, -0.42306795716285706, -0.1525263637304306, -0.07236669957637787, 0.15414094924926758, -0.046727996319532394, 0.0373234748840332, -0.7135791778564453], [0.2396337240934372, 0.03729848936200142, -0.017802035436034203, 0.12509280443191528, 0.31392529606819153, 0.4061480760574341, 0.7166010141372681, -0.0667586475610733, -0.13034680485725403, 0.10801254212856293, -1.1205450296401978, -0.026681294664740562, 0.13077040016651154, 0.0846031978726387, -0.15310442447662354, -0.007979312911629677, 0.05364982411265373, 0.1986275464296341, 0.35777002573013306, -0.006562936119735241], [-0.11628499627113342, -0.19037050008773804, -0.004186953417956829, 0.1302499920129776, -0.048719123005867004, -0.1498170644044876, -0.2743493914604187, 0.1006791740655899, -0.09985107183456421, 0.19557268917560577, -0.38731253147125244, 0.2661249041557312, 0.2161782681941986, 0.06950879842042923, 0.13739536702632904, -0.2847604751586914, -0.3093758821487427, -0.13636299967765808, 0.31451910734176636, -0.04805455729365349], [-0.02166399173438549, 0.6374966502189636, -0.15104129910469055, 0.18398530781269073, -0.06696739047765732, 0.1132352352142334, -0.2109995037317276, 0.09604392945766449, -0.026411037892103195, -0.0023876805789768696, 0.04268968477845192, 0.07891078293323517, 0.05361737310886383, -0.29614102840423584, 0.0869331881403923, 0.09887289255857468, 0.4863097071647644, -0.0004327053902670741, 0.13819122314453125, 0.1984143853187561], [0.23051334917545319, -0.1709744930267334, 0.14953890442848206, 0.0054176305420696735, 0.11638125777244568, 0.1266314685344696, 0.030762163922190666, 0.035325802862644196, -0.0201104823499918, 0.19108863174915314, -0.1377185583114624, 0.10326515883207321, -0.10290209203958511, 0.0265737846493721, -0.11793085187673569, -0.057479046285152435, -0.15671487152576447, -0.02553725056350231, -0.020432863384485245, 0.09188609570264816], [-0.20288819074630737, -0.14035733044147491, 0.2599354088306427, -0.12636587023735046, 0.1716126948595047, 0.045363347977399826, -0.30592286586761475, 0.507266640663147, -0.19150719046592712, 0.0693628266453743, -0.12916161119937897, -0.07910674065351486, -0.24438121914863586, 0.2909030318260193, 0.02503439038991928, 0.035324253141880035, -0.06596338748931885, 0.1651722937822342, 0.022286176681518555, 0.26621538400650024], [0.1899721473455429, 0.08468672633171082, -0.09108949452638626, -0.11257001757621765, 0.10953354090452194, 0.1350809782743454, 0.05919210612773895, 0.05906875059008598, -0.07084725052118301, -0.10556021332740784, 0.12131771445274353, 0.034024108201265335, 0.018359538167715073, -0.06456560641527176, 0.0032120670657604933, 0.051280274987220764, 0.13367721438407898, -0.13550032675266266, -0.12439004331827164, -0.24519376456737518], [-0.02472725324332714, -0.017404649406671524, 0.0636158138513565, 0.03262493759393692, 0.1450464129447937, 0.005044430959969759, -0.09617512673139572, -0.12185516953468323, -0.17306165397167206, 0.027704963460564613, 0.045100804418325424, -0.049219902604818344, -0.014663508161902428, -0.10401890426874161, -0.18337421119213104, -0.054771535098552704, 0.09166082739830017, -0.0731942430138588, 0.05720146745443344, -0.10533948987722397], [0.26419153809547424, 0.10495138168334961, -0.0076685380190610886, -0.10598411411046982, 0.3827645480632782, 0.114641934633255, -0.07933659106492996, 0.07565934211015701, -0.002265776274725795, 0.1884608268737793, -0.08026482909917831, 0.05847161263227463, 0.002042987383902073, -0.0067171985283494, -0.18542268872261047, 0.03555125370621681, -0.003627935890108347, -0.050981711596250534, 0.06457199901342392, -0.1540309339761734], [0.17835724353790283, -0.029317228123545647, 0.028521044179797173, 0.0035392811987549067, 0.027483467012643814, 0.15516617894172668, -0.10134986788034439, 0.10501471906900406, 0.026896057650446892, -0.05632646754384041, 0.013510658405721188, -0.015052174217998981, -0.024902354925870895, -0.0015614175936207175, -0.11609374731779099, 0.010721812956035137, 0.06179821863770485, -0.19459344446659088, 0.025492019951343536, -0.051282402127981186], [0.07877568155527115, -0.026986969634890556, 0.07073523849248886, -0.15905673801898956, 0.06028737872838974, -0.010365620255470276, 0.1017925813794136, -0.06199342757463455, 0.0740463137626648, -0.1665819138288498, -0.11410873383283615, 0.014859393239021301, 0.021334506571292877, -0.026313917711377144, 0.19240055978298187, -0.16641037166118622, -0.07086162269115448, 0.002937508514150977, 0.13439172506332397, -0.049346305429935455], [0.28698548674583435, -0.1560705602169037, 0.01952996663749218, 0.021978450939059258, 0.019334550946950912, 0.07389725744724274, -0.03320539742708206, 0.057249560952186584, 0.04705408588051796, -0.09220963716506958, -0.08259608596563339, 0.01085758302360773, 0.012495073489844799, 0.05938482657074928, -0.0057157413102686405, -0.025711944326758385, -0.025855442509055138, 0.13672302663326263, -0.00433687586337328, -0.1726580560207367], [0.15554185211658478, 0.18901211023330688, -0.06088297814130783, -0.08506298810243607, -0.047368451952934265, -0.06249123811721802, 0.1434173583984375, -0.02158305048942566, -0.07309050112962723, 0.16348381340503693, -0.0514211505651474, 0.08650696277618408, -0.04560128599405289, -0.07383815944194794, 0.24159756302833557, -0.1319306492805481, 0.03624483570456505, -0.0053337933495640755, 0.14580881595611572, -0.012695527635514736], [0.017098521813750267, 0.02503501996397972, -0.05076740309596062, -0.15532885491847992, -0.08970646560192108, 0.06014537811279297, -0.030462652444839478, 0.21565033495426178, 0.3237997889518738, -0.2852051258087158, -0.07067572325468063, 0.03924785554409027, 0.21194329857826233, -0.1601308286190033, 0.24752213060855865, -0.053338728845119476, -0.18312014639377594, -0.16718827188014984, -0.17160071432590485, -0.22419995069503784], [0.08555172383785248, -0.02454000897705555, -0.21753042936325073, -0.15531988441944122, -0.036603983491659164, -0.20419520139694214, -0.2580181360244751, 0.05731011927127838, -0.2696142792701721, -0.020279016345739365, -0.09182162582874298, 0.04090350493788719, -0.045855581760406494, 0.28867611289024353, 0.024244854226708412, 0.1187562346458435, 0.11405564099550247, 0.09064043313264847, 0.25273922085762024, -0.05670219287276268], [-0.05385452136397362, 0.06621890515089035, -0.07044613361358643, 0.04675038531422615, 0.02152925357222557, -0.009806583635509014, -0.08709662407636642, 0.17900450527668, 0.02588646300137043, 0.02044445276260376, -0.07280890643596649, 0.058553047478199005, -0.06649596244096756, -0.07144111394882202, -0.20431692898273468, -0.05683119595050812, -0.03799177706241608, -0.11374171078205109, 0.08909958600997925, 0.007314491551369429], [-0.1342078000307083, 0.0033359371591359377, -0.02266041748225689, -0.1688535511493683, 0.03621985390782356, -0.07345856726169586, 0.07044830918312073, -0.11105158925056458, -0.065687395632267, 0.14396783709526062, -0.061915475875139236, 0.06165111064910889, -0.12667125463485718, -0.14244189858436584, -0.30820944905281067, -0.25725340843200684, -0.07673522084951401, 0.051614630967378616, 0.17282825708389282, -0.1732366681098938], [0.05335399881005287, 0.04370842128992081, 0.11886487156152725, -0.10240764170885086, -0.05008556321263313, -0.04787052795290947, -0.02903696894645691, 0.10461476445198059, 0.16830579936504364, -0.06434677541255951, 0.012763012200593948, 0.0333307608962059, 0.026882650330662727, -0.010828156024217606, -0.16058841347694397, -0.2006685733795166, -0.17212340235710144, 0.10095018148422241, 0.1615990847349167, -0.10633113980293274], [-0.11777893453836441, -0.1932394653558731, 0.04955294728279114, 0.005075437482446432, -0.1590052843093872, 0.21985219419002533, -0.17645008862018585, 0.05407583341002464, 0.02613874524831772, -0.4451829493045807, -0.11264562606811523, -0.23517920076847076, -0.06383272260427475, 0.0607115775346756, -0.07532841712236404, -0.2579372525215149, 0.06117881461977959, -0.31672361493110657, -0.021872924640774727, -0.0706743374466896], [0.07996908575296402, 0.04626275226473808, 0.02481096424162388, -0.04288803040981293, 0.04978155344724655, -0.1629432588815689, 0.0822039321064949, 0.17862951755523682, -0.09502481669187546, 0.4352978467941284, 0.08532485365867615, 0.07033726572990417, 0.0459168404340744, 0.08127461373806, 0.05702952295541763, 0.0921453982591629, -0.052166979759931564, 0.2103320211172104, 0.002976727904751897, 0.03580274060368538], [0.1289876401424408, -0.03575800359249115, 0.021792303770780563, -0.014487012289464474, 0.016564980149269104, 0.04814746230840683, -0.12159586697816849, 0.04213055595755577, -0.0889158770442009, -0.04056653007864952, 0.034457724541425705, 0.0005513964570127428, 0.037567924708127975, 0.047996435314416885, -0.06937775015830994, -0.14253641664981842, -0.021663444116711617, -0.09004682302474976, 0.11391518265008926, -0.07379676401615143], [0.43603023886680603, -0.0029760815668851137, -0.10980848222970963, -0.16192962229251862, -0.011631254106760025, 0.056147251278162, -0.006954428274184465, 0.12824289500713348, 0.08456043154001236, 0.22289247810840607, -0.030710216611623764, 0.07302848994731903, -0.023945657536387444, 0.011976624839007854, 0.3609016239643097, -0.02172541432082653, 0.003756101941689849, -0.10637445002794266, 0.050293948501348495, -0.2468091994524002], [0.1385963410139084, -0.06833112984895706, -0.04986532777547836, 0.03133188188076019, 0.15011072158813477, 0.05505494400858879, 0.008324693888425827, 0.18377022445201874, -0.050877895206213, 0.17120873928070068, -0.28318557143211365, 0.04503720626235008, 0.047725822776556015, 0.05922408401966095, 0.05306164175271988, -0.14810509979724884, 0.10992700606584549, -0.009958084672689438, 0.24131332337856293, -0.1501450538635254], [0.17556996643543243, 0.12208673357963562, 0.08723075687885284, 0.010026003234088421, 0.25097987055778503, -0.07268402725458145, -0.06488477438688278, -0.19588764011859894, -0.026841677725315094, -0.030350737273693085, 0.02051105909049511, -0.05738178268074989, 0.009565136395394802, -0.03752167895436287, 0.01649254932999611, -0.04465774819254875, 0.16749273240566254, -0.1124056875705719, 0.08275403827428818, -0.44765087962150574]], "rec.bias_ih_l0": [0.14517435431480408, 0.6256894469261169, -0.5717323422431946, -0.3645298182964325, -0.08454426378011703, 0.14826171100139618, 0.16085481643676758, 0.5091933012008667, -0.15307006239891052, 0.7597822546958923, -0.8900325298309326, -0.17418847978115082, -0.10293237864971161, 0.011349597945809364, -0.01765066385269165, -0.3141070008277893, -0.07679037749767303, 0.515574038028717, -0.2621793746948242, -0.012434535659849644, 0.40655070543289185, 0.4257395565509796, 1.2611676454544067, 0.7791802287101746, 0.5075463652610779, 0.07835584878921509, 0.2709204852581024, 0.3717329204082489, 0.37483495473861694, 0.21627648174762726, 1.2124181985855103, 0.2910071015357971, 0.5797698497772217, 0.4539254307746887, 0.09796024858951569, 0.6119762063026428, 0.4341959059238434, 0.2678508758544922, 0.4402651786804199, 0.5339578986167908, 0.2266973853111267, 0.01239941455423832, -0.0822000727057457, 0.007153352256864309, 0.053930606693029404, 0.043209657073020935, -0.06513307243585587, 0.04835222661495209, -0.2300364077091217, -0.11231109499931335, 0.12749990820884705, 0.015378490090370178, 0.08578379452228546, 0.10476798564195633, 0.07995379716157913, -0.018380586057901382, -0.08287065476179123, -0.13277867436408997, -0.09044957906007767, -0.08579383790493011, 0.3516314923763275, -0.19832743704319, 0.29906585812568665, 0.34712737798690796, 0.10509075969457626, 0.3543000817298889, 0.328898161649704, 0.6580108404159546, 0.04005907475948334, 0.3715592324733734, 0.32867833971977234, 0.056479569524526596, 0.15456300973892212, 0.41150355339050293, 0.06998909264802933, 0.10156511515378952, 0.3027420938014984, 0.836060643196106, 0.07527327537536621, 0.18008150160312653], "rec.bias_hh_l0": [0.018375858664512634, 0.6242098212242126, -0.6204426288604736, -0.1853937953710556, -0.022900238633155823, 0.10749237984418869, 0.13822628557682037, 0.5310292840003967, -0.056469663977622986, 0.8753479719161987, -1.1072821617126465, -0.11722907423973083, -0.16967375576496124, -0.11796876043081284, -0.0055249473080039024, -0.2868879735469818, -0.07874584943056107, 0.46796464920043945, -0.31792253255844116, -0.13146205246448517, 0.5312536358833313, 0.4049069285392761, 1.1813859939575195, 0.7111272215843201, 0.5536248087882996, 0.1589651256799698, 0.18216070532798767, 0.35282230377197266, 0.4690030515193939, 0.32424694299697876, 1.3772910833358765, 0.4310070872306824, 0.7315399646759033, 0.3486241400241852, 0.1225629672408104, 0.6205018758773804, 0.5245019197463989, 0.2472427934408188, 0.3821500539779663, 0.501843273639679, 0.1527239978313446, 0.14041176438331604, 0.16786015033721924, 0.0007133455364964902, -0.12824152410030365, 0.0063535552471876144, -0.018522439524531364, 0.03538041561841965, 0.17421527206897736, 0.14589400589466095, -0.10892212390899658, 0.015044253319501877, -0.08327899128198624, 0.10795953124761581, 0.0783134326338768, -0.000978068565018475, 0.024949895218014717, -0.093327097594738, 0.1053456962108612, -0.03664274886250496, 0.38756445050239563, -0.20239730179309845, 0.21224819123744965, 0.29082581400871277, 0.10203298181295395, 0.281552255153656, 0.26964759826660156, 0.6644425392150879, 0.055581990629434586, 0.33446845412254333, 0.4395447373390198, 0.00493905832991004, 0.05383862927556038, 0.5078919529914856, 0.1035236343741417, 0.24302226305007935, 0.29049086570739746, 0.8210676312446594, 0.04698069393634796, 0.31791824102401733], "lin.weight": [[0.05645647272467613, -0.2549063563346863, -1.4746023416519165, -0.631580114364624, -0.6705546379089355, 0.23585760593414307, -0.17128312587738037, -0.3324567973613739, -0.5485033392906189, 0.0011912216432392597, 0.3762320280075073, 0.41860735416412354, 0.14777110517024994, 0.612967312335968, -0.06913593411445618, 0.2421087920665741, -1.038062572479248, 0.15200375020503998, -0.06400201469659805, 1.1660274267196655]], "lin.bias": [0.20427300035953522]}} \ No newline at end of file +{"model_data": {"model": "SimpleRNN", "input_size": 1, "skip": 1, "output_size": 1, "unit_type": "LSTM", "num_layers": 1, "hidden_size": 32, "bias_fl": true}, "state_dict": {"rec.weight_ih_l0": [[-0.06672177463769913], [-0.0023324538487941027], [-0.01594376005232334], [0.015051043592393398], [-0.026421640068292618], [-0.0002856706269085407], [-0.020345276221632957], [-0.0067958221770823], [-0.010054689832031727], [-0.0236964114010334], [-0.006091768853366375], [0.012124951928853989], [-0.05779307335615158], [0.0141138955950737], [0.010795796290040016], [0.010084250941872597], [0.03287185728549957], [-0.0378926657140255], [-0.018586548045277596], [0.09712546318769455], [0.0023879623040556908], [0.0295820664614439], [0.007005459163337946], [-0.020938225090503693], [-0.010190196335315704], [0.022088386118412018], [0.0006648855633102357], [0.031199604272842407], [0.04846779257059097], [0.0066369217820465565], [0.013272366486489773], [0.00014677229046355933], [-0.11285093426704407], [-0.023542018607258797], [0.0060554202646017075], [0.0436968058347702], [0.010105744004249573], [-0.009374336339533329], [-0.010077746585011482], [-0.00026876642368733883], [-0.03041713498532772], [0.021799180656671524], [0.032243795692920685], [-0.0015870480565354228], [-0.07507339119911194], [-0.004682226572185755], [0.010037614032626152], [0.03309785574674606], [-0.021298496052622795], [-0.030450958758592606], [-0.015541686676442623], [0.14484341442584991], [-0.015880828723311424], [0.048765186220407486], [0.026324529200792313], [-0.033553894609212875], [0.023607073351740837], [-0.005134160630404949], [0.05989484861493111], [0.05520700663328171], [-0.00029765942599624395], [-0.07595475018024445], [-0.007549760397523642], [0.0165484007447958], [0.2780693471431732], [0.37742605805397034], [0.07614660263061523], [-0.5471219420433044], [-0.0707068219780922], [-0.34887322783470154], [0.11456787586212158], [0.15211164951324463], [-0.025597432628273964], [-0.07345440238714218], [-0.08455686271190643], [0.0375201553106308], [-0.050398088991642], [0.2479351907968521], [0.22816945612430573], [-0.23188795149326324], [-0.16365382075309753], [0.09468201547861099], [-0.07676702737808228], [0.05941073223948479], [0.039599210023880005], [-0.007473581004887819], [-0.22508125007152557], [-0.2813667058944702], [1.5082460641860962], [0.07945933192968369], [-0.09791435301303864], [-0.6620646119117737], [0.3859967589378357], [-0.1160433441400528], [0.8426483273506165], [0.6798376441001892], [-0.07412514835596085], [-0.000531300320290029], [-0.007883081212639809], [0.029803061857819557], [-0.0297345332801342], [-0.001997576327994466], [0.015466061420738697], [-0.022994205355644226], [0.005288282874971628], [0.03480790555477142], [0.016612911596894264], [0.012025605887174606], [-0.06337212026119232], [0.004350592847913504], [0.03668456897139549], [-0.018540652468800545], [-0.01444193534553051], [-0.043578460812568665], [-0.0203993059694767], [0.09252401441335678], [-0.011963889002799988], [0.025237999856472015], [0.011910767294466496], [-0.057064566761255264], [-0.054621364921331406], [-0.005474340636283159], [0.056655995547771454], [0.0519103966653347], [0.06434796750545502], [-0.10267264395952225], [0.026935778558254242], [0.03033207356929779]], "rec.weight_hh_l0": [[-0.04963672161102295, 0.03941136226058006, -0.012485930696129799, 0.04819149896502495, 0.0004724652098957449, -0.017575757578015327, 0.02177530527114868, -0.03331548348069191, -0.049342259764671326, 0.013681909069418907, -0.015163314528763294, 0.004048687405884266, 0.019518256187438965, 0.04657193273305893, -0.025820795446634293, 0.018352961167693138, -0.056647371500730515, 0.030511686578392982, -0.042673949152231216, -0.05528751015663147, -0.03094838373363018, 0.021313926205039024, 0.015363802202045918, 0.028384249657392502, -0.0604093037545681, -0.007636744529008865, -0.02843170426785946, 0.028540799394249916, -0.012095227837562561, 0.05548780411481857, 0.021681876853108406, 0.01504101138561964], [0.0050149280577898026, 0.03350268304347992, 0.011599946767091751, 0.01637948676943779, -0.01608121395111084, 0.04034396633505821, 0.023638863116502762, 0.00185008451808244, -0.0188128761947155, -0.032565951347351074, -0.0649312362074852, -0.035036422312259674, 0.010621324181556702, -0.03407943621277809, 0.004194330424070358, 0.030792897567152977, -0.009155189618468285, -0.015285060741007328, -0.0748523697257042, -0.03954640403389931, 0.035452891141176224, 0.025841062888503075, 0.019168663769960403, 0.0077303070574998856, 0.03315045312047005, 0.012788411229848862, -0.026513824239373207, -0.01538771577179432, -0.0013085298705846071, 0.05329965427517891, -6.492469401564449e-05, 0.006129790563136339], [-0.004938455298542976, 0.040115900337696075, 0.011096551083028316, -0.012701238505542278, -0.061534833163022995, 0.017101306468248367, 0.0045769307762384415, -0.0168869998306036, -0.036682628095149994, 0.03703024238348007, -0.015547971241176128, -0.003944572061300278, 0.047154501080513, 0.04274970293045044, -0.05358066037297249, 0.004368479363620281, -0.04699086397886276, 0.06975256651639938, -0.07545534521341324, 0.009199967607855797, 0.11130313575267792, 0.008020925335586071, 0.004937143996357918, 0.013241196982562542, 0.008665517903864384, -0.03653104975819588, 0.02308969758450985, 0.00389087968505919, 0.04646177962422371, 0.08150802552700043, -0.04777776449918747, -0.03454725071787834], [0.04833504930138588, -0.000791443744674325, 0.013440256007015705, -0.007596752140671015, -0.025586597621440887, 0.019951365888118744, -0.007398518268018961, 0.02519666776061058, -0.027044828981161118, 0.03922579810023308, -0.059247035533189774, 0.05187537521123886, -0.042423587292432785, 0.015886837616562843, 0.008172605186700821, 0.048619337379932404, -0.024040574207901955, 0.06843636184930801, 0.04408995807170868, -0.032869089394807816, -0.03849206492304802, -0.014980143867433071, 0.05338281765580177, 0.015703799203038216, -0.03088626265525818, -0.001085152616724372, -0.10003376752138138, -0.002265612594783306, 0.044006846845149994, 0.03934410214424133, 0.04414006322622299, -0.028485413640737534], [0.041229527443647385, -0.022746535018086433, -0.00798672717064619, -0.021157847717404366, 0.02146027982234955, 0.005476054735481739, -0.020533163100481033, -0.02124333567917347, 0.006458940915763378, 0.005238198675215244, -0.0009145468357019126, 0.020739080384373665, 0.01598975621163845, -0.04279539734125137, 0.05580771341919899, 0.03611212968826294, -0.025916675105690956, 0.0028056444134563208, 0.017354462295770645, -0.05517715960741043, -0.15517300367355347, -0.023575251922011375, -0.006926198024302721, -0.027579501271247864, -0.01688956283032894, 0.025027647614479065, 0.03469839692115784, 0.0143963061273098, -0.012246157042682171, 0.00645778002217412, 0.00126095290761441, -0.0394250862300396], [0.024609824642539024, 0.020786529406905174, 0.010788174346089363, -0.02002057619392872, -0.05121640861034393, -0.003782040672376752, -0.034309230744838715, -0.005498832557350397, -0.005689129699021578, 0.024865811690688133, -0.00452448008581996, 0.006846897769719362, 0.00018426818132866174, -0.012013418599963188, 0.015869664028286934, 0.028966840356588364, -0.01550682820379734, 0.0030884232837706804, -0.06626415997743607, -0.031128406524658203, -0.161237895488739, -0.0210918877273798, -0.056796107441186905, -0.013295263051986694, -0.0031976921018213034, 0.010534754022955894, 0.050633106380701065, 0.006841184571385384, 0.014919809065759182, -0.01929628662765026, 0.012691362760961056, -0.03087623417377472], [0.007514729164540768, 0.047095462679862976, -0.016217682510614395, 0.024616999551653862, 0.05122939869761467, -0.011139333248138428, -0.03030353970825672, -0.017645196989178658, -0.01857699640095234, 0.05551838502287865, 0.027633916586637497, -0.04450807347893715, -0.005236194469034672, -0.010688313283026218, -0.001328453654423356, -0.004024951718747616, -0.01801445707678795, -0.014438988640904427, -0.03612801060080528, -0.03379788622260094, 0.1251867264509201, -0.04359998181462288, 0.049850352108478546, -0.01089573185890913, 0.0002978792181238532, -0.03789525479078293, -0.05683853104710579, -0.00720082875341177, -0.04069538041949272, -0.03929802030324936, 0.02561572939157486, -0.024512270465493202], [0.052573565393686295, -0.01518985629081726, 0.05373193696141243, 0.023083597421646118, -0.048887960612773895, -0.004292065743356943, -0.010271747596561909, -0.002837839536368847, -0.0007420878973789513, -0.004005781374871731, 0.00357105303555727, -0.0293840654194355, 0.024273380637168884, 0.05820557102560997, -0.027570635080337524, 0.014012248255312443, -0.02626783959567547, 0.007440670859068632, -0.04950052499771118, -0.0011533128563314676, 0.08903732150793076, -0.003524752799421549, 0.03467075526714325, -0.020432908087968826, 0.025003140792250633, -0.01004764623939991, -0.01397583819925785, -0.0213499516248703, -0.0026433137245476246, -0.010962649248540401, -0.03295446187257767, -0.013353446498513222], [0.04921440780162811, 0.017800496891140938, -0.018617667257785797, 0.05638499930500984, -0.08346716314554214, 0.03006860986351967, -0.011541210114955902, 0.010634592734277248, -0.043082356452941895, 0.10796822607517242, 0.024489495903253555, -0.03850186616182327, 0.04253800958395004, 0.017618877813220024, 0.01412503607571125, 0.03608094900846481, -0.03625522926449776, -0.009043554775416851, -0.10276053100824356, 0.04015619307756424, 0.17880669236183167, 0.026027945801615715, -0.06554704904556274, 0.001279745833016932, 0.030732765793800354, -0.04316325485706329, -0.030036285519599915, 0.0004455582529772073, 0.07826951146125793, -0.03333941474556923, 0.008353753946721554, -0.027951296418905258], [-0.017449188977479935, -0.05713479593396187, -0.014504645951092243, -0.07591572403907776, 0.01916312426328659, -0.03663291409611702, -0.003336122492328286, -0.021477187052369118, -0.04260443523526192, -0.022391481325030327, -0.03110315464437008, 0.00836623553186655, -0.05203932523727417, -0.03460685908794403, -0.0008572879014536738, -0.04570480063557625, 0.005336880683898926, -0.035834453999996185, 0.029591655358672142, 0.0008968445472419262, -0.03673108294606209, 0.010701541788876057, -0.1275206208229065, -0.04542030394077301, -0.005684508942067623, 0.027970310300588608, 0.0474749393761158, 0.056987464427948, 0.02839069813489914, -0.012398547492921352, -0.12397902458906174, -0.07070355862379074], [0.009560005739331245, 0.020116426050662994, -0.0065294490195810795, 0.011405866593122482, -0.017773548141121864, -0.05895285680890083, -0.0006290379096753895, 0.029048772528767586, 0.00023858148779254407, 0.019189894199371338, -0.020514262840151787, -0.02902621030807495, 0.04690994322299957, 0.040530454367399216, -0.03366703540086746, 0.008106795139610767, 0.013903023675084114, 0.009939996525645256, -0.056921496987342834, 0.030679138377308846, 0.09662486612796783, -0.007939642295241356, 0.04625978693366051, -0.015375550836324692, -0.021252699196338654, 0.022573554888367653, 0.014701380394399166, -0.012029252015054226, 0.049729976803064346, -0.0007864163490012288, -0.05187089368700981, -0.004686705302447081], [0.005859113298356533, 0.06685831397771835, -0.01863463595509529, -0.009435529820621014, -0.006249605678021908, -0.009174145758152008, 0.004116935655474663, 0.016660450026392937, -0.020665794610977173, -0.002444849582388997, -0.022970953956246376, 0.020536016672849655, 0.017338860780000687, 0.03775550797581673, -0.04275628924369812, 0.03007527068257332, -0.0023921397514641285, -0.031043611466884613, -0.015354129485785961, 0.03787071257829666, 0.06740830093622208, 0.0158326905220747, 0.13218805193901062, -0.0022973334416747093, 0.011825233697891235, -0.018622087314724922, -0.021108292043209076, -0.04377817362546921, 0.05875536799430847, 0.019477950409054756, -0.04685136675834656, 0.01910308562219143], [-0.050336338579654694, 0.00983771588653326, 0.008397975005209446, 0.014880488626658916, 0.02837388962507248, -0.00038464213139377534, 0.023501558229327202, 0.01660783402621746, 0.00480478024110198, 0.07042035460472107, -0.008189062587916851, 0.02551311068236828, 0.061797723174095154, -0.008792201988399029, -0.0023227129131555557, 0.017448075115680695, -0.003958303015679121, 0.03412400558590889, -0.030629148706793785, -0.04565539211034775, -0.06353001296520233, -0.022585084661841393, 0.015261344611644745, 0.04025828838348389, -0.08129581809043884, 0.02854597568511963, 0.006985880900174379, 0.03658226504921913, -0.005990447476506233, 0.06157078221440315, 0.07770843058824539, -0.02342968061566353], [0.007788712624460459, 0.006003763992339373, -0.002525410847738385, -0.040352415293455124, 0.010814149864017963, 0.004861033521592617, 0.019469309598207474, 0.03753450885415077, -0.04713078960776329, 0.01661428064107895, -0.02668032795190811, 0.02076256275177002, -0.009476548060774803, -0.025597110390663147, 0.013614912517368793, -0.02079739421606064, -0.006262166891247034, 0.029326049610972404, 0.02849159948527813, 0.015621536411345005, -0.09170888364315033, 0.003381771268323064, -0.01575312204658985, -0.01689729653298855, 0.021503714844584465, -0.008968105539679527, 0.02677864208817482, 0.0025928050745278597, 0.05997583642601967, 0.0023181058932095766, -0.01991153322160244, -0.019590109586715698], [0.0005339052295312285, -0.008938336744904518, 0.020601173862814903, -0.051262807101011276, 0.045755382627248764, -0.003976317588239908, -0.013822687789797783, -0.0012035337276756763, 0.0542806014418602, -0.12167777866125107, 0.022376110777258873, -0.05356624722480774, 0.022272920235991478, 0.051183756440877914, -0.12673434615135193, -0.04858284071087837, -0.016097526997327805, -0.021892406046390533, -0.00967497006058693, 0.06148626282811165, 0.05922635644674301, -0.017244841903448105, -0.08767209202051163, -0.029678644612431526, -0.012720197439193726, 0.0073732552118599415, 0.004512989427894354, -0.007399176713079214, 0.045004963874816895, 0.06742807477712631, -0.1212879866361618, 0.007593146990984678], [0.02301231399178505, 0.006855167914181948, 0.027336500585079193, 0.03937656059861183, -0.04941708594560623, 0.006857224740087986, -0.0157639030367136, -0.022311124950647354, -0.07516376674175262, 0.05484660342335701, 0.011379772797226906, -0.07104658335447311, 0.007103437092155218, 0.06581876426935196, -0.034309305250644684, 0.04897422343492508, -0.018553173169493675, -0.017771393060684204, -0.09706837683916092, -0.019657060503959656, 0.15674912929534912, 0.010615172795951366, -0.0006448747008107603, 0.011398961767554283, -0.0040939366444945335, -0.039282239973545074, -0.0015984340570867062, -0.004426869098097086, 0.02368069440126419, -0.009221863001585007, 0.019368188455700874, 0.02061384730041027], [0.0016831617103889585, 0.021078048273921013, -0.01283789798617363, -0.07315897196531296, -0.030871400609612465, -0.06613568216562271, -0.01388575229793787, 0.03519343584775925, 0.014684652909636497, 0.03184911236166954, -0.0004201420524623245, -0.02917264588177204, -0.05072973668575287, 0.04689878597855568, -0.08721557259559631, 0.015981795266270638, -0.06161608174443245, 0.07395476847887039, -0.12549039721488953, 0.01068792212754488, 0.2984235882759094, -0.07730195671319962, 0.06644800305366516, -0.009442560374736786, -0.019986603409051895, -0.006352908909320831, -0.05832101032137871, 0.01365471351891756, 0.0988970622420311, 0.017572520300745964, -0.019931385293602943, -0.026240693405270576], [0.002222255803644657, 0.05808424577116966, 0.0063309259712696075, 0.05275637283921242, -0.02440379373729229, 0.007500240579247475, 0.01602829061448574, 0.006576897110790014, -0.0007006296655163169, -0.013874438591301441, -0.012827369384467602, -0.03527494892477989, 0.07183371484279633, 0.003255573334172368, -0.044084809720516205, 0.0566926971077919, 0.03210851922631264, 0.01667577400803566, -0.03988463431596756, 0.04872492700815201, 0.16237731277942657, 0.011147077195346355, 0.06203902140259743, 0.04906216263771057, -0.028570055961608887, -0.01240100059658289, -0.013347521424293518, 0.030629757791757584, 0.024987677112221718, 0.04495719447731972, 0.04179523140192032, -0.01141067873686552], [-0.040564898401498795, -0.0287484023720026, -0.06008707731962204, -0.008018188178539276, 0.08551713824272156, -0.0008364968234673142, -0.08011471480131149, -0.03517071530222893, -0.08376383781433105, -0.021677710115909576, -0.051487069576978683, 0.020445646718144417, -0.04440288245677948, -0.017586441710591316, 0.038042131811380386, -0.013183742761611938, 0.013616700656712055, -0.02243749424815178, -0.03103134036064148, -0.10693491995334625, -0.27253007888793945, 0.00633807061240077, -0.22635069489479065, 0.0010150076122954488, -0.005830324254930019, -0.014984291978180408, -0.14103133976459503, -0.003796852193772793, -0.012354530394077301, 0.021574949845671654, 0.018788516521453857, 0.0033153884578496218], [0.029064053669571877, -0.008408145979046822, 0.0009932860266417265, -0.07046429812908173, -0.013229385018348694, -0.02543337643146515, -0.005967192351818085, -0.01487646158784628, -0.05901326239109039, -0.04599108546972275, -0.00992659479379654, 0.03874216601252556, -0.07534144073724747, 0.011583207175135612, -0.028582923114299774, 0.03356701880693436, -0.02383412793278694, 0.03744656965136528, -0.003458894556388259, 0.05071791261434555, 0.0076463534496724606, 0.018005702644586563, 0.0002890493778977543, -0.06406167149543762, 0.0841926634311676, 0.007903428748250008, -0.015306184068322182, -0.06235568970441818, 0.0733114704489708, -0.016228388994932175, -0.1188875362277031, 0.0715378150343895], [0.04469410702586174, 0.0002989447384607047, -4.979982622899115e-05, 0.032257456332445145, -0.028862139210104942, -0.01121457014232874, 0.0395197868347168, -0.032140783965587616, -0.05168073996901512, 0.03975730761885643, 0.035334423184394836, 0.06521933525800705, 0.01829518750309944, 0.03210398182272911, 0.04893624410033226, 0.05348382145166397, 0.002380217192694545, 0.009384781122207642, -0.03707807883620262, -0.07938273251056671, 0.03049539402127266, -0.023476414382457733, 0.09823084622621536, -0.036359939724206924, 0.01036450732499361, -0.00890924222767353, 0.09761202335357666, -0.03888295218348503, 0.05066399276256561, -0.05271239951252937, 0.022316988557577133, 0.025616494938731194], [0.0027177645824849606, 0.05707903951406479, -0.04282413795590401, -0.025123465806245804, -0.004306836053729057, -0.021001283079385757, 0.0040087043307721615, 0.002026826608926058, -0.023982549086213112, -0.021264368668198586, -0.019003508612513542, -0.028950849547982216, 0.03659052029252052, 0.027169642969965935, -0.059029918164014816, 0.017991425469517708, -0.06743590533733368, -0.0367756113409996, -0.011349150910973549, 0.0596548430621624, 0.1364351511001587, -0.05916036292910576, 0.042685385793447495, 0.05184178054332733, 0.007601574063301086, 0.03648104891180992, 0.033954448997974396, -0.039751335978507996, 0.05464202165603638, -0.07861831784248352, -0.02041797712445259, -0.03309515491127968], [-0.0014206126797944307, -0.0021456775721162558, 0.006761572323739529, -0.013743891380727291, 0.034317564219236374, -0.013677028939127922, -0.015415973030030727, 0.0368732213973999, 0.01943955384194851, 0.040587760508060455, -0.03395969420671463, 0.07477283477783203, -9.092445543501526e-05, -0.0720260813832283, 0.06797073781490326, 0.005893808789551258, 0.02472025901079178, -0.00568345794454217, -0.07970082759857178, -0.05545474588871002, -0.19090373814105988, -0.03433624282479286, -0.12197165936231613, -0.04068954288959503, -0.025703517720103264, 0.050039537250995636, -0.02229338325560093, -0.0005781312356702983, 0.02640046738088131, 0.011689707636833191, 0.03189389035105705, -0.00870419666171074], [-0.006016952451318502, -0.03675519675016403, 0.031915321946144104, -0.009744416922330856, -0.04138888418674469, -0.053117331117391586, -0.0037586966063827276, -0.026849932968616486, -0.035336241126060486, -0.011320970021188259, 0.0036512233782559633, -0.05474530905485153, 0.005106909200549126, 0.02259954810142517, -0.0269894041121006, 0.03621521592140198, 0.012365566566586494, 0.07089193910360336, -0.0850253775715828, 0.0291177686303854, -0.031041786074638367, -0.02242361195385456, -0.07208117842674255, -0.036330632865428925, -0.0046022734604775906, 0.01911047101020813, -0.03241042420268059, -0.008924491703510284, -0.024622386321425438, -0.016202356666326523, -0.023992100730538368, 0.021986177191138268], [0.025846140459179878, -0.036805007606744766, -0.02401111274957657, -0.01291435956954956, 0.018533967435359955, -0.038924820721149445, -0.03997037187218666, -0.007097300607711077, -0.030977187678217888, 0.06562650948762894, -0.0016134172910824418, 0.031247558072209358, -0.09976722300052643, -0.05766228958964348, 0.07144449651241302, -0.006831340026110411, -0.025306660681962967, -0.043293535709381104, 0.043488286435604095, -0.12144295126199722, -0.13902655243873596, 0.027682507410645485, 0.036614514887332916, 0.012033780105412006, -0.015099908225238323, 0.06341466307640076, -0.07779883593320847, 0.04043794795870781, 0.03368373215198517, -0.05945029854774475, -0.01939425989985466, 0.04541768133640289], [0.06613466888666153, -0.048608556389808655, 0.05790605768561363, 0.0589090958237648, 0.02237865701317787, 0.035156771540641785, 0.05589889734983444, 0.0002811973390635103, 0.1229429617524147, 0.20754113793373108, 0.043421924114227295, -0.034465041011571884, 0.023331569507718086, -0.007214204873889685, -0.07259511947631836, -0.007902972400188446, 0.044032253324985504, 0.004369509872049093, -0.004976645577698946, 0.015676802024245262, 0.11069178581237793, 0.015086589381098747, -0.002803188981488347, -0.1407206505537033, -0.00632035918533802, -0.03243796527385712, 0.08218272030353546, -0.010194819420576096, 0.0083891237154603, -0.00777954887598753, -0.01218037586659193, 0.025517869740724564], [0.004860399290919304, -0.01820681430399418, -0.0067131794057786465, -0.04510335996747017, 0.02266981080174446, -0.00541020417585969, -0.023441720753908157, 0.008342692628502846, 0.02891593985259533, 0.0202658548951149, 0.012232013046741486, -0.03769269213080406, -0.0074860877357423306, 0.001821700599975884, 0.016246087849140167, -0.001238104421645403, -0.004268909338861704, -0.014626984484493732, 0.12299845367670059, -0.053115516901016235, -0.16185273230075836, -0.0277390219271183, -0.014067166484892368, -0.019216250628232956, -0.03333171829581261, 0.04147487133741379, 0.08734257519245148, 0.039496541023254395, 0.04320325329899788, 0.019228778779506683, -0.0066960775293409824, 0.005352460779249668], [0.025486791506409645, 0.00465486291795969, -0.03258073329925537, 0.03367188200354576, -0.02671867609024048, -0.0281155314296484, -0.01844809390604496, -0.038571447134017944, -0.08566906303167343, 0.07497692853212357, -0.04484663903713226, -0.028079310432076454, 0.00023260813031811267, -0.04844916984438896, 0.05290643498301506, -0.004080640152096748, -0.019536418840289116, 0.015368307009339333, 0.02351289801299572, -0.04688013345003128, -0.06056685745716095, 0.02339278534054756, -0.023236935958266258, 0.010287613607943058, 0.024934817105531693, -0.02120332606136799, -0.07299191504716873, 0.002920120023190975, 0.024529626592993736, -0.06435539573431015, 0.05628473311662674, -0.006230292841792107], [-0.033276114612817764, 0.05096160247921944, -0.015931066125631332, 0.016264066100120544, -0.024443481117486954, 0.02400723099708557, -0.012528897263109684, 0.003760339692234993, -0.021647432819008827, 0.01114698126912117, -0.008484418503940105, -0.008809938095510006, 0.035615965723991394, 0.026280272752046585, -0.03294863551855087, -0.012401270680129528, 0.05811168625950813, -0.00019220926333218813, -0.030719244852662086, 0.012035483494400978, 0.053460393100976944, 0.014914129860699177, 0.0206872820854187, 0.037615157663822174, 0.023136358708143234, -0.022070670500397682, -0.060827672481536865, -0.039323657751083374, 0.05911211296916008, -0.02570956200361252, 0.028615059331059456, 0.0313766673207283], [-0.17637436091899872, 0.047849565744400024, -0.010201104916632175, 0.103534035384655, 0.1016290932893753, -0.09877859801054001, 0.06194807216525078, -0.009715547785162926, 0.18710297346115112, 0.3562662899494171, -0.07254575937986374, 0.18569350242614746, 0.18170668184757233, 0.038374241441488266, -0.09408619999885559, 0.055863022804260254, 0.0020311097614467144, 0.014866252429783344, -0.08311789482831955, 0.25497910380363464, 0.3282338082790375, -0.009327315725386143, 0.1026768609881401, -0.0209676343947649, -0.06253355741500854, 0.02970522828400135, -0.07081346958875656, -0.15401634573936462, -0.018313195556402206, -0.03258572146296501, 0.10915417969226837, 0.07954227179288864], [0.009446412324905396, 0.019126085564494133, -0.06641028821468353, -0.006813789252191782, -0.012373040430247784, 0.012107284739613533, -0.055001985281705856, -4.78614165331237e-05, -0.06570138782262802, 0.13221536576747894, 0.005606412887573242, 0.0038068743888288736, -0.014487756416201591, -0.02200528420507908, 0.06472340226173401, 0.033054765313863754, 0.00942244939506054, -0.025382235646247864, 0.0013486082898452878, -0.02176675945520401, -0.15086954832077026, -0.004727351013571024, -0.12094178050756454, -0.0576634481549263, 0.003312978195026517, 0.006889175623655319, 0.04391668364405632, 0.00828014686703682, 0.04460803419351578, -0.047852836549282074, -0.013289032503962517, -0.00014319682668428868], [-0.017176441848278046, 0.009635577909648418, 0.040783580392599106, -0.0069080134853720665, -0.049497317522764206, -0.01644386537373066, 0.0065773651003837585, -0.002743678167462349, 0.018856709823012352, 0.040415551513433456, 0.02801879495382309, 0.039645638316869736, 0.021034566685557365, 0.012836004607379436, -0.036703113466501236, -0.025004617869853973, -0.0041426713578403, 0.029416780918836594, -0.05311223119497299, -0.026107965037226677, 0.0844850018620491, -0.004782200325280428, 0.0016245520673692226, 0.03171994164586067, -0.03759056329727173, 0.0212166178971529, 0.02466430515050888, 0.020285340026021004, 0.02028706669807434, -0.023030783981084824, 0.005404340103268623, -0.0035813713911920786], [-0.09722824394702911, 0.04774865880608559, -0.03569558635354042, 0.07771927118301392, 0.016300316900014877, -0.02427295781672001, 0.02491224929690361, -0.031415220350027084, -0.02051820419728756, 0.018220236524939537, -0.015476532280445099, -0.00955903809517622, 0.04209137335419655, 0.05930652469396591, -0.033503346145153046, 0.011705341748893261, -0.08595156669616699, 0.03315277770161629, -0.06290419399738312, -0.08444011956453323, -0.06812293082475662, 0.03149028122425079, 0.01724390685558319, 0.05240717530250549, -0.11436797678470612, -0.007398156449198723, 0.049360666424036026, 0.057292576879262924, -0.01393846794962883, 0.09376271069049835, 0.057850949466228485, 0.02412400394678116], [-0.023859338834881783, 0.05188804119825363, 0.01682843081653118, 0.015419675037264824, -0.018853729590773582, -0.0023972734343260527, 0.015891792252659798, -0.002404025988653302, -0.027829881757497787, -0.01707223430275917, -0.046135883778333664, -0.05898653343319893, -0.018176214769482613, -0.013772910460829735, 0.07931850850582123, 0.040416985750198364, 0.009251518175005913, -0.041472163051366806, -0.014332462102174759, -0.03869355842471123, -0.07142655551433563, 0.028581814840435982, 0.0269550122320652, -0.014598733745515347, 0.004003666341304779, -0.003479220438748598, -0.012738232500851154, 0.029433419927954674, -0.0012503834441304207, -0.006382401566952467, -0.010595750994980335, -0.0057881358079612255], [0.008101505227386951, 0.010189025662839413, 0.01286332681775093, 0.03150307014584541, -0.00863529834896326, 0.039151813834905624, 0.06262357532978058, 0.01217089407145977, -0.03738045692443848, 0.01962956041097641, -0.03850986063480377, -0.013923526741564274, 0.02327890694141388, -0.021099217236042023, 0.036970824003219604, 0.02794184349477291, -0.008711070753633976, 0.0007148875738494098, -0.029638612642884254, 0.020852012559771538, -0.026108352467417717, 0.03674162179231644, 0.08383417129516602, 0.010766997933387756, 0.022802788764238358, -0.049997176975011826, 0.00022837062715552747, -0.02383042313158512, 0.005190715659409761, -0.022739658132195473, 0.03367724269628525, -0.011928658001124859], [0.07578989118337631, 0.01819501630961895, -0.004079557489603758, -0.023874759674072266, -0.0027310443110764027, 0.006507814396172762, -0.0229501910507679, 0.07088997215032578, 0.030963324010372162, 0.08455891162157059, -0.06667973101139069, 0.08263754844665527, -0.061525002121925354, -0.009969339706003666, 0.04583745822310448, 0.027019573375582695, -0.00827977154403925, -0.005426575429737568, -0.023661095649003983, 0.003945433534681797, -0.12084902822971344, -0.03606926649808884, -0.0031891202088445425, -0.03242787346243858, -0.015437975525856018, 0.001679356093518436, 0.05696617439389229, -0.03684860095381737, 0.09015001356601715, 0.0010091750882565975, 0.03359512984752655, -0.03453008458018303], [0.01820535771548748, -0.043457843363285065, -0.024292880669236183, -0.022132419049739838, 0.04399348422884941, -0.013788746669888496, -0.005064160563051701, -0.04341069236397743, 0.005289353430271149, -0.024983901530504227, -0.009739494882524014, 0.06807582080364227, -0.05452239513397217, -0.03183083236217499, 0.0459669828414917, 0.012016892433166504, 0.003168647876009345, 0.027884729206562042, 0.13449609279632568, -0.021824592724442482, -0.17445684969425201, 0.003994259983301163, -0.021731439977884293, -0.022387325763702393, 0.022949250414967537, 0.00287118973210454, -0.026099329814314842, 0.008143323473632336, -0.006806215737015009, -0.06617473065853119, -0.015989748761057854, -0.011491787619888783], [0.012452878057956696, 0.010695657692849636, -0.010341946966946125, -0.0036645676009356976, -0.02108892984688282, -0.012279815040528774, -0.07815133780241013, 0.01776539534330368, -0.0006745680002495646, 0.06589288264513016, -0.002454761415719986, -0.00560955423861742, -0.036842066794633865, -0.016086911782622337, 0.07263237982988358, -0.02293562889099121, 0.016249235719442368, -0.046647973358631134, 0.035026200115680695, -0.059194717556238174, -0.21295420825481415, -0.01341958250850439, -0.002852297853678465, -0.04808443784713745, 0.005665590055286884, 0.02339610829949379, 0.01114766113460064, 0.006090502254664898, 0.00036163447657600045, -0.0350659117102623, 0.0018475454999133945, -0.00715575972571969], [-0.010464943945407867, 0.01848907209932804, -0.026399677619338036, -0.04735032841563225, -0.0767410546541214, -0.029692547395825386, 0.004756137728691101, 0.004685197491198778, -0.03430051729083061, -0.0332513265311718, 0.0492221973836422, -0.004718237090855837, -0.0305471234023571, 0.04603589326143265, -0.024306554347276688, 0.004473878536373377, -0.0045340657234191895, -0.00806504487991333, -0.036879535764455795, -0.05508194863796234, -0.009080467745661736, -0.03534216061234474, 0.04742804914712906, -0.013838319107890129, 0.01731998473405838, 0.03731665760278702, 0.047568079084157944, -0.003847347339615226, -0.011795024387538433, 0.039088208228349686, -0.05842166021466255, 0.02044585347175598], [0.03464184328913689, 0.025452520698308945, 0.050233401358127594, 0.0183012243360281, -0.027461744844913483, -0.012882228940725327, -0.012656215578317642, -0.00041850603884086013, -0.02728874795138836, 0.003449660027399659, -0.03859304264187813, -0.06173187494277954, 0.058679524809122086, 0.02977960743010044, -0.029599597677588463, 0.03258552402257919, 0.005917042028158903, 0.03460662066936493, -0.03169606253504753, 0.011768576689064503, -0.008600318804383278, -0.008444982580840588, 0.012259419076144695, -0.014713604934513569, -0.03578595072031021, -0.03136511892080307, 0.017839845269918442, -0.018000861629843712, 0.034478288143873215, -0.04977414384484291, 0.022686922922730446, -0.037222299724817276], [-0.007047953549772501, 0.020209958776831627, -0.013942176476120949, 0.0718589648604393, -0.04548263177275658, -0.0035805401857942343, -0.05472433567047119, 0.029255066066980362, -0.05253858119249344, 0.0007836445583961904, -0.006263372488319874, -0.09359843283891678, 0.04264659807085991, -0.03941015899181366, 0.016789468005299568, 0.06340093165636063, -0.03861408308148384, 0.042452726513147354, 0.05893814563751221, -0.015796059742569923, 0.0033496448304504156, 0.08202610164880753, 0.09591642767190933, 0.03539934754371643, 0.008356602862477303, -0.054999105632305145, 0.0331670418381691, 0.04175298660993576, 0.06995853036642075, -0.048387493938207626, 0.023945171386003494, 0.0033064279705286026], [0.12619860470294952, 0.02147669345140457, -0.061643678694963455, -0.0005976616521365941, -0.05617912486195564, 0.1506047546863556, -0.0330112986266613, -0.08709563314914703, -0.03897956386208534, -0.33104193210601807, -0.024990221485495567, -0.042050834745168686, -0.10986634343862534, -0.13970650732517242, 0.03649552911520004, 0.03749118000268936, -0.03455264866352081, -0.11359784007072449, -0.09838699549436569, -0.11189807951450348, -0.20207639038562775, 0.020066644996404648, 0.013049040921032429, 0.2846556603908539, 0.07530999928712845, 0.13532036542892456, -0.003961597103625536, 0.02698027901351452, -0.10090107470750809, -0.09928702563047409, 0.07512284070253372, -0.06568048894405365], [-0.012299795635044575, 0.020956315100193024, 0.022489266470074654, 0.0009645501268096268, -0.05204027518630028, -0.04230840504169464, -0.0073782214894890785, 0.0068126278929412365, -0.05869653448462486, -0.06561354547739029, 0.012330410070717335, -0.028261495754122734, 0.04767013341188431, -0.011161276139318943, -0.04602779075503349, 0.021116912364959717, -0.01793101243674755, 0.06927675008773804, -0.043286100029945374, 0.018973302096128464, -0.014494352042675018, -0.009275401011109352, 0.07266692072153091, 0.05884410813450813, -0.014888964593410492, 0.050858739763498306, 0.028029851615428925, 0.004279164597392082, 0.03307061642408371, -0.028579160571098328, 0.023871883749961853, -0.007389821112155914], [0.02795333042740822, -0.005655765999108553, -0.06516535580158234, 0.03218495473265648, 0.027220042422413826, 0.0065414756536483765, 0.028488509356975555, -0.0162950549274683, -0.011046252213418484, 0.020856784656643867, -0.01180393248796463, 0.04280799254775047, -0.03237941488623619, -0.018832063302397728, 0.051540471613407135, 0.009118986316025257, 0.003779608989134431, -0.05564862862229347, -0.03293251246213913, -0.030022600665688515, -0.08537837862968445, 0.030137380585074425, 0.035697828978300095, 0.008646145462989807, 0.020634062588214874, -1.4028060832060874e-05, 0.10214810073375702, -0.013966514728963375, 0.0214617308229208, -0.048913177102804184, -0.004193729721009731, 0.015980184078216553], [-0.0823165774345398, 0.010003821924328804, 0.00886161532253027, 0.013536404818296432, 0.029646320268511772, -0.005218930542469025, 0.0020130048505961895, 0.003088354831561446, 0.012413927353918552, 0.1722990721464157, -0.03267914801836014, 0.047745924443006516, 0.09955568611621857, -0.0041107055731117725, 0.006824325770139694, 0.010372452437877655, -0.01184630487114191, 0.0360458642244339, -0.019346412271261215, -0.041688334196805954, -0.05156075581908226, -0.02396956831216812, -0.0031188414432108402, 0.0025599177461117506, -0.07219737768173218, 0.022487925365567207, 0.021884720772504807, 0.024377910420298576, 0.010781009681522846, 0.10477843880653381, 0.05560259521007538, -0.03438691794872284], [-0.0033620037138462067, 0.04554574936628342, 0.0629381611943245, -0.010668642818927765, 0.0024513935204595327, 0.033040136098861694, -0.02043246291577816, -0.006011051591485739, -0.06261024624109268, -0.06007341295480728, 0.037381675094366074, -0.03951676934957504, -0.0030563888140022755, 0.01413322426378727, -0.04935288056731224, -0.05052170157432556, 0.020154666155576706, 0.009081073105335236, -0.025704165920615196, 0.03934016823768616, 0.05074107274413109, -0.0019776117987930775, -0.027169151231646538, 0.05861487612128258, -0.015550261363387108, 0.0008190663065761328, 0.005214591510593891, 0.0016077235341072083, 0.012385182082653046, -0.028726238757371902, 0.037107646465301514, -0.02158590592443943], [-0.014750298112630844, 0.006945046130567789, -0.008010395802557468, -0.05553000792860985, 0.03770707920193672, -0.02842883951961994, -0.033624809235334396, 0.029806053265929222, 0.10979605466127396, -0.16709299385547638, 0.01871727593243122, -0.029000630602240562, 0.0495549775660038, 0.041791535913944244, -0.1734340488910675, -0.04744282737374306, 0.007545237895101309, -0.014702972024679184, -0.09021200984716415, 0.035342104732990265, -0.016733525320887566, -0.04708397015929222, -0.07730132341384888, 0.013073919340968132, -0.053110893815755844, 0.05552378296852112, 0.07349914312362671, 0.020002946257591248, 0.055903926491737366, 0.10536465048789978, -0.07674020528793335, 0.008508543483912945], [-0.003938887733966112, 0.07329123467206955, -0.02200412191450596, 0.0010116577614098787, -0.005307779647409916, -0.007625292520970106, -0.036876607686281204, -0.04741133004426956, -0.04110604152083397, 0.007284955587238073, 0.009716653265058994, -0.030200080946087837, -0.07927661389112473, 0.034917693585157394, -0.015313250944018364, 0.035962313413619995, -0.041316766291856766, -0.1103731095790863, 0.021866638213396072, -0.0334029346704483, -0.15566706657409668, -0.0014331224374473095, 0.0927899032831192, -0.001769869588315487, 0.019675657153129578, 0.016042843461036682, -0.09359710663557053, -0.0374317392706871, 0.01757371798157692, -0.07391712814569473, -0.021229663863778114, 0.059962667524814606], [-3.623029260779731e-05, 0.03062780760228634, 0.011692183092236519, -0.04118596017360687, -0.08383764326572418, -0.06183357909321785, 0.058521103113889694, 0.005741307977586985, 0.017472947016358376, -0.011616491712629795, 3.5755292628891766e-05, 0.049760203808546066, -0.02745499648153782, 0.01583549939095974, 0.05452107638120651, 0.047812074422836304, 0.007383494172245264, 0.030239172279834747, -0.14161713421344757, -0.013455614447593689, -0.28509801626205444, -0.024382248520851135, 0.20220576226711273, -0.0327264629304409, -0.015246511436998844, 0.023929554969072342, 0.10744559019804001, 0.00802664551883936, 0.013004561886191368, 0.0013293056981638074, -0.023816483095288277, -0.029232336208224297], [0.04042389988899231, 0.009716618806123734, 0.01584593579173088, 0.043696753680706024, -0.02506900578737259, 0.01045217551290989, 0.000293660705210641, -0.004754538182169199, 0.007766066584736109, 0.07846735417842865, 0.012700692750513554, -0.05617697164416313, 0.08821096271276474, -0.016245387494564056, 0.0158163420855999, 0.054492875933647156, -0.026687026023864746, 0.03011004440486431, -0.0658794417977333, 0.027901053428649902, 0.06242552399635315, -0.013350090943276882, -0.012379772961139679, -0.03852485120296478, -0.005027429200708866, -0.009138097055256367, 0.04460382089018822, 0.0021656746976077557, 0.0028948101680725813, 0.03534835949540138, 0.025687096640467644, -0.020433546975255013], [-0.007262110244482756, -0.050116922706365585, -0.0707864984869957, 0.04333287477493286, -0.01510364655405283, -0.01504192128777504, 0.017028283327817917, -0.033605244010686874, 0.013867318630218506, -0.054436519742012024, -0.032523054629564285, 0.12140579521656036, -0.10418432950973511, -0.040264301002025604, 0.13659057021141052, 0.012341110967099667, 0.01512052770704031, -0.06074818968772888, -0.10432318598031998, -0.12877628207206726, -0.19456680119037628, 0.025626495480537415, -0.024554388597607613, 0.12340521067380905, 0.033847909420728683, 0.04596024006605148, 0.08768445998430252, 0.022790037095546722, -0.052626751363277435, -0.017634892836213112, 0.05867112800478935, 0.02994101122021675], [0.03512135148048401, -0.012683579698204994, -0.01063450425863266, -0.10827759653329849, -0.0304606631398201, -0.06686645746231079, -0.030816644430160522, -0.02634059637784958, -0.037638988345861435, -0.16464301943778992, -0.001822184887714684, 0.03331049159169197, -0.08587344735860825, 0.008245090954005718, -0.10137750953435898, 0.01694752834737301, -0.03355992212891579, 0.04302682355046272, 0.0709707960486412, 0.15376923978328705, 0.07254430651664734, 0.005320197436958551, 0.043711788952350616, -0.03766380250453949, 0.08255589008331299, 0.05704113095998764, -0.03418070822954178, -0.09605874866247177, 0.08121249824762344, -0.08874330669641495, -0.141229510307312, 0.07946034520864487], [0.0077462042681872845, -0.0639335885643959, 0.02940484881401062, -0.07587852329015732, 0.07758158445358276, 0.014481198973953724, 0.009059075266122818, -0.07431862503290176, -0.07568290084600449, -0.1521378606557846, 0.060035474598407745, -0.10083723068237305, 0.0035280839074403048, 0.015315086580812931, -0.004473614506423473, 0.01180773414671421, -0.06206045299768448, -0.0030273478478193283, 0.19997557997703552, -0.06143007054924965, 0.030122065916657448, -0.06768032908439636, 0.06736153364181519, 7.75159933255054e-05, -0.014269144274294376, 0.06701227277517319, 0.17342184484004974, 0.019130297005176544, 0.02928066812455654, -0.06564093381166458, -0.010359113104641438, -0.028973489999771118], [-0.009793737903237343, 0.03763563185930252, -0.030757274478673935, -0.057373639196157455, -0.016566282138228416, -0.026005612686276436, -0.03007676638662815, 0.03697684034705162, -0.05576779320836067, -0.09193342924118042, -0.025100668892264366, -0.03885131701827049, 0.012784318067133427, 0.020134707912802696, -0.0697554498910904, 0.0597648024559021, -0.09151627123355865, -0.021260900422930717, -0.001826237072236836, 0.02613016404211521, 0.004610846750438213, -0.06413987278938293, 0.05122603848576546, 0.06680794805288315, 0.015664350241422653, 0.06829904764890671, -0.014193650335073471, -0.0413750559091568, 0.029595477506518364, -0.059921931475400925, -0.01852019876241684, -0.009437013417482376], [-0.009792419150471687, -0.03457460552453995, 0.00192832516040653, -0.02515379525721073, 0.08518737554550171, -0.03441996872425079, -0.018915938213467598, 0.04757529869675636, 0.053463902324438095, -0.08450289815664291, -0.009827327914536, 0.10973154753446579, -0.04387768730521202, -0.07365823537111282, 0.11672639101743698, -0.01953306794166565, -0.01456664688885212, -0.10882115364074707, 0.06250809878110886, -0.055455904453992844, -0.1950460523366928, -0.04176497831940651, -0.05880751088261604, -0.02657294273376465, -0.006440781522542238, 0.13399380445480347, 0.07380488514900208, 0.004214704968035221, 0.026988226920366287, 0.03387174755334854, -0.0009701937669888139, 0.0489007793366909], [0.007331113796681166, 0.03650953248143196, 0.03437289968132973, 0.01969066634774208, -0.03552376851439476, 0.007144874893128872, -0.027430251240730286, 0.046481773257255554, -0.04639388248324394, 0.06775341182947159, -0.05415935069322586, 0.03864007443189621, -0.03487309068441391, -0.05174452066421509, 0.08569343388080597, 0.0034885748755186796, 0.026622721925377846, -0.00021224109514150769, 0.008992618881165981, 0.018635444343090057, -0.171213299036026, -0.0059380605816841125, 0.13123756647109985, -0.0340392142534256, -0.0123253483325243, 0.010044494643807411, 0.06602867692708969, -0.03202633187174797, 0.03464367985725403, -0.036781445145606995, 0.04994348809123039, -0.02411874756217003], [0.05909288302063942, -0.0551811121404171, 0.0028185956180095673, -0.007414535619318485, 0.03736143186688423, -0.05406671389937401, -0.03077666275203228, 0.017636507749557495, -0.006999906152486801, 0.2538807690143585, 0.00786329060792923, 0.021781452000141144, -0.10635340958833694, -0.09362087398767471, 0.11541371792554855, -0.015606560744345188, -0.04506060853600502, -0.05649229511618614, -0.01693597435951233, -0.15531136095523834, -0.05837307497859001, 0.021446341648697853, 0.0277287308126688, -0.016204621642827988, -0.029787635430693626, 0.06554020196199417, 0.004827091470360756, 0.04903097823262215, 0.1095835343003273, -0.09571906924247742, 0.019338713958859444, 0.060749590396881104], [0.029469354078173637, 0.015373222529888153, 0.11861065030097961, -0.016017140820622444, -0.0027822405099868774, -0.03971784561872482, -0.021441854536533356, 0.027561064809560776, 0.024701863527297974, 0.012928235344588757, 0.022346211597323418, -0.0005053758504800498, 0.05439988523721695, -0.0013103560777381063, -0.11249172687530518, 0.042422372847795486, 0.029465999454259872, 0.03628316521644592, 0.008891906589269638, 0.0008835872868075967, -0.2968168258666992, -0.007793746422976255, 0.056942638009786606, -0.13075394928455353, -0.014331484213471413, -0.0014899653615429997, -0.01993674412369728, -0.0182234775274992, -0.05360628291964531, 0.055924586951732635, -0.03196944668889046, 0.017857996746897697], [0.008614552207291126, -0.05767868831753731, -0.024845320731401443, -0.07537036389112473, 0.038138605654239655, -0.004843404050916433, -0.057418860495090485, -0.050873443484306335, 0.027820024639368057, -0.004582716152071953, 0.008756794966757298, 0.02155441977083683, -0.01610841602087021, 0.011685195378959179, -0.02539733424782753, 0.003017690032720566, 0.07235778868198395, 0.03933774679899216, 0.12507401406764984, -0.012587564066052437, -0.2456454038619995, -0.049146782606840134, 0.02626943029463291, 0.0021174370776861906, 0.04070621356368065, 0.09063023328781128, 0.27375879883766174, 0.013138937763869762, 0.0018035928951576352, -0.028768526390194893, 0.00223374436609447, 0.041652560234069824], [0.08744415640830994, -0.0652293935418129, -0.025285188108682632, -0.0115912314504385, -0.050677087157964706, -0.0025407110806554556, -0.029614847153425217, -0.048906419426202774, -0.08288578689098358, -0.08279915153980255, -0.07199094444513321, 0.11179691553115845, -0.06582887470722198, -0.07011353224515915, 0.05541149899363518, -0.05020885169506073, -0.03565793111920357, 0.005676343105733395, 0.06655512005090714, -0.0007138671353459358, -0.09524804353713989, 0.02785499580204487, 0.05598963424563408, 0.008163836784660816, 0.09087781608104706, 0.02016717568039894, 0.03795800358057022, -0.036760397255420685, 0.04024694859981537, -0.10210131853818893, -0.020712560042738914, -0.022189194336533546], [-0.007986688986420631, -0.015829766169190407, -0.030702920630574226, 0.030559595674276352, -0.02836562506854534, 0.029595382511615753, 0.02713773027062416, 0.01525530032813549, -0.008915967307984829, -0.020135456696152687, 0.01249296497553587, 0.0032417448237538338, 0.021557295694947243, 0.034522317349910736, 0.004768626298755407, 0.005717569496482611, 0.07931885123252869, -0.00846025999635458, -0.06978324055671692, -0.04544772207736969, -0.008049795404076576, 0.01234518364071846, 0.044049061834812164, 0.028522612527012825, 0.012109371833503246, -0.01146228238940239, 0.03859515115618706, -0.012297924607992172, -0.002874161349609494, -0.014004449360072613, 0.011499674990773201, 0.01999909244477749], [-0.08822790533304214, 0.028363309800624847, -0.037507470697164536, 0.025814931839704514, -0.03564649075269699, -0.007359033916145563, 0.004111728630959988, -0.051292818039655685, -0.024277275428175926, -0.23370738327503204, -0.007578814402222633, -0.021169640123844147, 0.09011594951152802, 0.043257951736450195, 0.009273265488445759, 0.09269658476114273, 0.004400847479701042, 0.0651860460639, -0.07350829243659973, 0.04008015990257263, -0.25163817405700684, 0.027732403948903084, 0.12419912964105606, 0.11950422078371048, -0.017161399126052856, 0.00466254074126482, 0.030134573578834534, -0.05148971825838089, 0.014971590600907803, -0.08885855227708817, -0.018039779737591743, -0.012187539599835873], [0.045940399169921875, -2.565165596024599e-05, -0.0549086257815361, -0.002045795088633895, 0.024347400292754173, 0.08568907529115677, -0.06124558299779892, -0.02105134166777134, -0.07665896415710449, 0.028016546741127968, 0.02090192586183548, 0.04716167598962784, -0.08774708211421967, -0.09871716797351837, 0.11405827850103378, -0.08798658847808838, 0.017644692212343216, -0.05009837448596954, -0.03481872379779816, -0.15431345999240875, -0.16782426834106445, -0.015273724682629108, 0.03166239336133003, -0.009538027457892895, 0.015992028638720512, 0.09595336765050888, 0.04819405823945999, 0.04000873491168022, -0.04099545627832413, -0.035116925835609436, -0.01844138093292713, -0.044939495623111725], [-0.02592829428613186, 0.05298164486885071, 0.0220389012247324, -0.02644139900803566, -0.044744156301021576, -0.0007511806907132268, -0.09158690273761749, -0.036983292549848557, 0.02414441853761673, 0.03616982698440552, 0.03449924290180206, 0.04511146619915962, 0.01898762211203575, 0.01365653332322836, -0.034899044781923294, -0.034095074981451035, -0.0180925652384758, 0.01193633396178484, 6.789046437916113e-06, -0.08223367482423782, -0.05463748797774315, -0.015453645959496498, 0.059084706008434296, 0.014190467074513435, -0.018017180263996124, 0.04468019679188728, -0.054274678230285645, 0.0005701851914636791, 0.016918787732720375, -0.016483033075928688, -0.022757938131690025, 0.016681760549545288], [0.4046231806278229, -0.19207845628261566, -0.06372412294149399, 0.0002498285612091422, 0.18029378354549408, 0.30849456787109375, 0.057007405906915665, 0.009661508724093437, 0.09436681121587753, 0.01864936202764511, -0.16407783329486847, 0.1735767126083374, -0.05324934050440788, 0.04602579027414322, 0.06319628655910492, 0.129825621843338, -0.12335366010665894, -0.029097238555550575, -0.15252742171287537, -0.27206534147262573, 0.14842770993709564, -0.18697038292884827, 0.042232658714056015, -0.06100093945860863, 0.02036401815712452, 0.00299080740660429, -0.1501762717962265, -0.10641708970069885, 0.13753484189510345, -0.03630484640598297, 0.09039661288261414, -0.05886939540505409], [-0.10199447721242905, 0.4478507339954376, 0.6131685376167297, 0.06905988603830338, 0.1972578763961792, 0.4417993128299713, 0.03401630371809006, 0.033228274434804916, 0.38757508993148804, 0.031795434653759, -0.03321260213851929, -0.18514645099639893, -0.1536204069852829, -0.0927657037973404, -0.03823867067694664, -0.2771628797054291, -0.3306339979171753, -0.171112522482872, -0.1245691180229187, 0.09621681272983551, -0.07750622183084488, 0.21487069129943848, 0.08440713584423065, 0.07178030908107758, -0.3737456798553467, -0.2034076601266861, -0.30169278383255005, 0.09328693151473999, 0.2586222290992737, -0.0468955896794796, -0.05601533129811287, -0.15740779042243958], [-0.015283096581697464, -0.5899425745010376, 0.5608922243118286, -0.04526733234524727, 0.1958649456501007, -0.2453414350748062, -0.053796298801898956, 0.3969983756542206, -0.2308286428451538, -0.058438148349523544, 0.23241396248340607, 0.27122169733047485, 0.06379584968090057, 0.2384164035320282, 0.05560414493083954, -0.020110035315155983, 0.07779902219772339, 0.005833566188812256, -0.15522116422653198, -0.02318902499973774, 0.05847417190670967, 0.023276884108781815, 0.09149075299501419, 0.05844072252511978, 0.06866113841533661, -0.20490726828575134, -0.0075919064693152905, -0.04196846857666969, -0.10457158833742142, 0.10214202105998993, 0.16303926706314087, 0.023554611951112747], [-0.07494302093982697, -0.0567854642868042, -0.2052246630191803, 0.1467161923646927, -0.10110297054052353, 0.09327033907175064, -0.004985141102224588, -0.12846311926841736, -0.08207092434167862, 0.1363181173801422, -0.05731211602687836, -0.06780647486448288, -0.046185679733753204, -0.12375013530254364, -0.14762571454048157, -0.12741172313690186, 0.007665557321161032, -0.08287077397108078, -0.12783804535865784, 0.07130695879459381, -0.039478521794080734, 0.3331000804901123, -0.010767203755676746, 0.24440163373947144, -0.1657765954732895, 0.056508805602788925, -0.03446092829108238, 0.18237395584583282, -0.1530160903930664, -0.5479305982589722, 0.3078467845916748, 0.13583819568157196], [-0.39988699555397034, -0.5460174679756165, -0.11677785217761993, 0.16053013503551483, -0.07646844536066055, 0.8570268750190735, -0.46290814876556396, -0.03544243797659874, -0.30976587533950806, 0.13044430315494537, -0.38863763213157654, -0.06762107461690903, -0.15553537011146545, -0.08989729732275009, -0.31046321988105774, 0.3932499587535858, 0.10929670184850693, 0.05952958017587662, 0.10848402231931686, 0.07172252237796783, -0.16775627434253693, -0.14418484270572662, 0.16120347380638123, -0.17023175954818726, -0.7292901873588562, -0.0462704561650753, 0.25986361503601074, -0.14635302126407623, -0.07222213596105576, -0.20774787664413452, -0.43344250321388245, 0.08218566328287125], [0.06704051047563553, -0.38947799801826477, 0.2590356469154358, -0.07598792761564255, -0.6829360723495483, 0.2969430387020111, 0.08459693193435669, -0.15976810455322266, 0.12047521770000458, 0.06279974430799484, 0.1313527375459671, -0.10419335961341858, -0.024933187291026115, -0.020055873319506645, -0.15840090811252594, -0.012729625217616558, -0.09060157090425491, -0.09665850549936295, 0.21832019090652466, -0.09282979369163513, -0.028999177739024162, -9.734156628837809e-05, -0.2720240652561188, 0.4432104229927063, 0.3894876539707184, -0.0987723246216774, -0.001024669036269188, -0.21508532762527466, 0.4038543701171875, 0.07966987043619156, 0.371457576751709, 0.0791344940662384], [0.06770775467157364, -0.10717588663101196, 0.002619524486362934, 0.1883014291524887, 0.3165394067764282, -0.013132804073393345, 0.6384015083312988, -0.4108453392982483, -0.04158308729529381, -0.04267929121851921, -0.08529976010322571, -0.021168354898691177, 0.0682150349020958, 0.1670963317155838, 0.10814058780670166, 0.20395061373710632, -0.009392107836902142, -0.10520356148481369, -0.34498801827430725, 0.008654391393065453, -0.2686873972415924, -0.07623321563005447, 0.31077826023101807, 0.02134147472679615, -0.12479463964700699, -0.04543393477797508, -0.01209984626621008, 0.01434662938117981, 0.167030468583107, 0.06357675045728683, -0.20740212500095367, 0.02273366041481495], [0.11930965632200241, -0.18901470303535461, -0.26445698738098145, -0.02259260043501854, 0.032743364572525024, -0.006956160068511963, 0.27324000000953674, 0.5788736343383789, 0.4421587288379669, 0.022577591240406036, -0.470240980386734, -0.30784451961517334, -0.10312376171350479, 0.07854451984167099, 0.014848897233605385, -0.05566968396306038, -0.16577760875225067, -0.15054170787334442, -0.05946091562509537, 0.05019953101873398, 0.02984997071325779, -0.13025325536727905, -0.033113639801740646, 0.09076246619224548, 0.0509626679122448, 0.007647617720067501, -0.19660595059394836, 0.04822351783514023, -0.06522652506828308, 0.2272762656211853, 0.12601220607757568, -0.058135539293289185], [-0.022302478551864624, -0.24644127488136292, -0.009870379231870174, 0.1362788826227188, 0.44181758165359497, -0.3592498004436493, -0.2501356303691864, -0.5255275368690491, 0.321306437253952, 0.024661799892783165, -0.19620703160762787, 0.19935977458953857, 0.05595574527978897, 0.03583797439932823, -0.004777677357196808, 0.17247556149959564, 0.11467783153057098, -0.16210685670375824, -0.2551669478416443, -0.09263937920331955, -0.062469299882650375, -0.06514447182416916, 0.0706169381737709, 0.12296564131975174, 0.003377575660124421, 0.11835899949073792, 0.04791774973273277, -0.0818352922797203, -0.1036779060959816, -0.057765644043684006, -0.16446569561958313, 0.16745319962501526], [-0.00688128313049674, 0.05218323692679405, -0.1078311875462532, 0.42505979537963867, -0.030477195978164673, 0.07745152711868286, -0.1166507825255394, 0.06250178068876266, 0.11784321069717407, 0.9194480776786804, 0.10554567724466324, 0.03631899133324623, 0.2727339565753937, -0.03036852553486824, 0.19692757725715637, -0.14297807216644287, 0.19035954773426056, 0.0047146715223789215, -0.1345619112253189, -0.28195416927337646, 0.08692219108343124, -0.2940308451652527, 0.2226896584033966, -0.0331091433763504, -0.27184897661209106, 0.14614234864711761, 0.008691241964697838, 0.13756845891475677, -0.18010474741458893, -0.4238945543766022, 0.8808205127716064, -0.0026393195148557425], [0.253804475069046, -0.08223281055688858, -0.08068541437387466, 0.0881078764796257, 0.23769551515579224, 0.32997843623161316, 0.010269485414028168, 0.27878230810165405, 0.2959787845611572, -0.06228453665971756, 0.44304946064949036, 0.23794972896575928, -0.02916536293923855, 0.10855741798877716, 0.18375761806964874, -0.06966933608055115, -0.3344096541404724, -0.08574822545051575, 0.024729624390602112, 0.06688680499792099, 0.16951406002044678, 0.02848314680159092, -0.025342721492052078, 0.07947468012571335, -0.2865273952484131, -0.10116953402757645, -0.09362268447875977, 0.08854293823242188, 0.1394307017326355, -0.09638412296772003, -0.1995779573917389, 0.3055116832256317], [-0.022685352712869644, 0.022801756858825684, -0.48009440302848816, -0.14718151092529297, 0.08628515899181366, -0.007992997765541077, -0.0779772475361824, 0.2978948950767517, -0.15882664918899536, 0.18938952684402466, 0.10048148036003113, 0.2709646224975586, -0.0224776528775692, -0.23794791102409363, -0.15040303766727448, -0.30376818776130676, 0.035453278571367264, 0.20819349586963654, -0.27820414304733276, 0.14073877036571503, -0.39474937319755554, 0.08681055903434753, 0.2806539237499237, 0.12148222327232361, 0.16621369123458862, 0.059742361307144165, -0.2029133439064026, -0.09441760927438736, -0.03757220879197121, 0.15206806361675262, 0.021332208067178726, -0.1374734342098236], [-0.04522419348359108, 0.03912852331995964, -0.1470094621181488, 0.15463890135288239, 0.29374536871910095, 0.012307082302868366, -0.12546522915363312, -0.10897871851921082, -0.18240585923194885, 0.19632558524608612, 0.12478630989789963, 0.04712475836277008, 0.30933424830436707, -0.13094598054885864, -0.18065936863422394, 0.10395514219999313, 0.25178712606430054, 0.08392638713121414, -0.012791491113603115, 0.12037800252437592, 0.11988990008831024, -0.12062312662601471, 0.045790787786245346, 0.12715961039066315, -0.16377438604831696, 0.21777507662773132, 0.12614327669143677, 0.006875736638903618, -0.01925458386540413, -0.040375709533691406, 0.18532541394233704, -0.2030085027217865], [-0.10781534016132355, 0.014065203256905079, -0.16753171384334564, 0.3070836067199707, 0.029002008959650993, -0.2285609394311905, 0.16955479979515076, 0.11720691621303558, 0.12123384326696396, -0.11008260399103165, -0.06565158069133759, 0.18078050017356873, 0.3068905770778656, 0.23007060587406158, 0.020226996392011642, -0.2802305817604065, -0.2136506587266922, -0.3795589804649353, -0.057893216609954834, -0.07555301487445831, 0.08363006263971329, -0.17778529226779938, 0.11422945559024811, -0.23963703215122223, -0.3017807602882385, -0.2018442153930664, -0.24535466730594635, -0.07840170711278915, -0.021308675408363342, 0.12330851703882217, -0.3230178952217102, -0.18987280130386353], [0.16344720125198364, -0.12648585438728333, -0.027101043611764908, 0.24667799472808838, 0.15778471529483795, 0.19110894203186035, 0.07321048527956009, 0.017230311408638954, -0.0477483905851841, 0.2798413038253784, -0.14284108579158783, 0.21339643001556396, -0.2129465490579605, -0.2557063698768616, 0.3664131462574005, 0.12428534030914307, -0.015685927122831345, -0.12397684156894684, -0.09473977982997894, -0.17671747505664825, -0.06800804287195206, 0.08102498948574066, 0.13519179821014404, 0.044352930039167404, 0.0017699837917461991, -0.12382335960865021, -0.009155703708529472, 0.20024892687797546, -0.11534838378429413, -0.2060159593820572, 0.1336532086133957, -0.10506148636341095], [0.1005278155207634, 0.3520902395248413, -0.05575070157647133, -0.1379653364419937, 0.03650446981191635, -0.041280075907707214, -0.3393517732620239, 0.02563287876546383, -0.2728034555912018, 0.10180390626192093, 0.05220627784729004, 0.02904043346643448, -0.04445338621735573, 0.1261478066444397, -0.09351737052202225, 0.5248568654060364, 0.23991484940052032, -0.31776347756385803, 0.04003162309527397, 0.09317720681428909, -0.09818670153617859, -0.31751132011413574, 0.06246424838900566, 0.20592565834522247, 0.1952521800994873, -0.32506972551345825, 0.1205243468284607, -0.16314762830734253, -0.017436234280467033, 0.19585217535495758, 0.16761896014213562, 0.024037126451730728], [0.044397156685590744, 0.06237417086958885, -0.03660613298416138, 0.015057790093123913, -0.03989003971219063, 0.05847423896193504, 0.01508465874940157, 0.03412926197052002, -0.0815163254737854, 0.021226512268185616, 0.03092014789581299, 0.026723569259047508, -0.10158419609069824, 0.11104778200387955, -0.059847138822078705, -0.15763334929943085, 0.5035744905471802, -0.07927990704774857, 0.02167549729347229, 0.0461815781891346, 0.054200123995542526, 0.03589221462607384, -0.06376678496599197, -0.08490971475839615, -0.050443436950445175, 0.1300860345363617, -0.18238306045532227, -0.023172417655587196, -0.0954752042889595, -0.017007339745759964, -0.019782571122050285, 0.14407458901405334], [-0.10176362097263336, 0.1945216804742813, -0.030582958832383156, 0.040357377380132675, -0.08586914837360382, -0.1016479879617691, 0.08939959108829498, 0.24170081317424774, -0.18009483814239502, -0.0013027634704485536, 0.42346152663230896, -0.04318811744451523, 0.20745757222175598, -0.11194576323032379, -0.10933534801006317, 0.3527276813983917, 0.04372955486178398, 0.5257275700569153, 0.06913384050130844, -0.07435907423496246, -0.07165784388780594, -0.05949163809418678, -0.1001407578587532, 0.02645428478717804, -0.04168061912059784, 0.10552751272916794, 0.07573724538087845, 0.19834105670452118, 0.18790867924690247, -0.11844418197870255, 0.004493358079344034, 0.25867101550102234], [0.038103289902210236, 0.03093680553138256, 0.07150634378194809, -0.1572260856628418, -0.7075608968734741, -0.31849440932273865, 0.22990068793296814, 0.016727136448025703, 0.33486810326576233, 0.018476935103535652, 0.025406034663319588, 0.2604396939277649, -0.14121292531490326, 0.05874529108405113, 0.33957621455192566, 0.043969761580228806, -0.014889223501086235, -0.09303104132413864, 1.0830947160720825, 0.07304862886667252, 0.3241382837295532, 0.15925218164920807, 0.5298531651496887, -0.22768379747867584, -0.015758207067847252, 0.19501374661922455, 0.1516747623682022, 0.2879939377307892, 0.18190640211105347, 0.013019418343901634, -0.014187355525791645, -0.14204612374305725], [0.11361150443553925, 0.026921993121504784, 0.1097620353102684, -0.011070923879742622, -0.11021009087562561, 0.13514770567417145, 0.13746850192546844, 0.06769225746393204, 0.14854836463928223, -0.08362589031457901, 0.028407394886016846, -0.041648559272289276, 0.16744698584079742, -0.08917251229286194, 0.13189184665679932, 0.12663160264492035, -0.03874807059764862, 0.012325534597039223, -0.04543974995613098, 0.4256671667098999, 0.0004925623652525246, -0.011216806247830391, 0.043309204280376434, -0.16726413369178772, 0.0929989293217659, -0.20012657344341278, -0.008452238515019417, -0.26384568214416504, -0.02012636512517929, 0.024898793548345566, -0.23498359322547913, -0.04021761938929558], [0.07080310583114624, 0.08790513128042221, -0.043380603194236755, 0.06573827564716339, -0.2540948987007141, -0.11998634785413742, 0.19574511051177979, 0.0830213874578476, 0.35876035690307617, 0.009732389822602272, -0.14448867738246918, 0.28220218420028687, 0.1425282508134842, -0.06456677615642548, -0.1823507845401764, 0.1790817230939865, -0.02244139462709427, 0.11718560755252838, 0.01380353793501854, 0.13003398478031158, 0.3702837824821472, 0.012409507296979427, 0.645260751247406, 0.020668141543865204, 0.06935515999794006, 0.28824901580810547, 0.18672879040241241, -0.21070310473442078, 0.01448152493685484, 0.09326351433992386, -0.024843307211995125, 0.06854650378227234], [-0.06089727580547333, -0.014094825834035873, 0.031015286222100258, 0.3459866940975189, -0.10675206035375595, -0.015070067718625069, 0.041878774762153625, 0.07917614281177521, 0.02151446044445038, -0.08893198519945145, -0.033619415014982224, -0.05121863633394241, -0.09864956885576248, -0.14589625597000122, 0.08767406642436981, -0.06419055163860321, 0.024845609441399574, 0.15533657371997833, -0.006387342698872089, -0.030848754569888115, 0.0008047644514590502, 0.29344865679740906, 0.14020687341690063, -0.06797545403242111, 0.10274369269609451, -0.5360720157623291, 0.0398697555065155, 0.18478187918663025, -0.10016945004463196, 0.02849673107266426, -0.1415446698665619, 0.48756685853004456], [-0.023756545037031174, 0.23683656752109528, -0.011923014186322689, 0.13609863817691803, 0.30849549174308777, 0.3661814033985138, -0.03221665322780609, 0.30654361844062805, -0.09594788402318954, -0.08194978535175323, -0.17635278403759003, 0.5066106915473938, -0.05198895186185837, -0.45163848996162415, -0.14752481877803802, -0.02238103188574314, 0.13967673480510712, -0.06372711807489395, -0.12111445516347885, 0.015540474094450474, -0.047366924583911896, -0.07743890583515167, 1.0818678140640259, 0.5389804244041443, 0.01557410228997469, 0.3341768682003021, 0.05823793634772301, -0.5333138704299927, -0.22799722850322723, 0.10854370146989822, 0.45699018239974976, 0.3542226254940033], [0.047398097813129425, -0.0998326987028122, -0.18171609938144684, -0.06076500192284584, 0.036998577415943146, -0.07290715724229813, -0.23177365958690643, -0.0743195116519928, -0.09410173445940018, -0.5803471803665161, 0.023207467049360275, -0.11712304502725601, -0.06733855605125427, 0.2725701332092285, -0.1441977471113205, 0.08522143214941025, 0.0659434050321579, -0.03331884369254112, -0.009794626384973526, 0.10286863148212433, -0.00659919623285532, 0.14866982400417328, -0.1122656837105751, 0.3074949085712433, -0.18372870981693268, -0.23211732506752014, 0.09791687875986099, 0.19864648580551147, 0.13510563969612122, -0.23280635476112366, -0.020207416266202927, -0.20284441113471985], [0.17403282225131989, 0.0973324179649353, -0.09579011052846909, 0.06074924394488335, 0.08744721859693527, -0.09917629510164261, 0.016663994640111923, -0.11960572749376297, -0.14664435386657715, -0.02554456703364849, 0.023912811651825905, -0.11243538558483124, 0.007282947655767202, 0.11849157512187958, 0.20329460501670837, 0.00836491584777832, 0.018853945657610893, 0.1014021784067154, -0.07429947704076767, -0.0362103134393692, -0.025659896433353424, 0.3013288080692291, 0.021468007937073708, -0.028085047379136086, 0.3290964663028717, -0.07525826245546341, 0.06295750290155411, 0.09412507712841034, -0.1171892061829567, 0.7041851282119751, 0.1928200125694275, -0.180244579911232], [0.10504157841205597, 0.04365629330277443, 0.12294991314411163, -0.1391759067773819, -0.02355685643851757, 0.13046611845493317, 0.0100812753662467, -0.07411268353462219, 0.04300549626350403, -0.18180552124977112, 0.2089223712682724, -0.15822529792785645, -0.13869822025299072, 0.05655399709939957, -0.12631557881832123, 0.0035881479270756245, 0.03523781895637512, 0.02437416836619377, -0.13159987330436707, 0.00884946621954441, -0.16953229904174805, -0.3396241366863251, 0.05156032741069794, 0.10293836146593094, -0.03338362276554108, 0.44866448640823364, 0.03408576548099518, 0.11697478592395782, 0.11888860166072845, 0.051604464650154114, -0.08543301373720169, 0.04276056960225105], [0.1448962539434433, 0.2641846239566803, 0.20503900945186615, 0.003802105551585555, -1.181358814239502, -0.6020015478134155, 0.2650811970233917, 0.07315466552972794, 0.4165629744529724, -0.005085804499685764, 0.05150321498513222, 0.7486990690231323, 0.03602923825383186, 0.2643931210041046, 0.20122411847114563, 0.22784724831581116, 0.30959552526474, -0.12691964209079742, -0.8714801073074341, 0.0579703189432621, -0.4876251518726349, -0.1398976892232895, 0.19649480283260345, 0.10648176074028015, 0.13057772815227509, -0.10489385575056076, 1.131140112876892, 0.21241144835948944, 0.00635869475081563, -0.11385304480791092, -0.06775673478841782, -0.01340132299810648], [0.27635088562965393, 0.15006116032600403, -0.016698652878403664, 0.11448661983013153, 0.2510559558868408, -0.26132598519325256, -0.1763729751110077, 0.007830985821783543, -0.16879577934741974, -0.18014618754386902, 0.07884570211172104, 0.052241452038288116, -0.03855196386575699, 0.033250074833631516, 0.15552474558353424, 0.24878302216529846, 0.20346494019031525, -0.04658631607890129, 0.0065366290509700775, -0.11019017547369003, -0.036767907440662384, 0.2957390546798706, 0.07135716080665588, -0.005713499151170254, -0.5238258838653564, -0.01028752513229847, 0.2053675651550293, 0.12331963330507278, 0.01842891052365303, -0.1577925682067871, -0.5854325294494629, -0.08836622536182404], [-0.17018821835517883, -0.018775174394249916, -0.07404245436191559, 0.06998191773891449, 0.19765864312648773, -0.13142608106136322, -0.3086515963077545, 0.081788070499897, -0.1850370466709137, 0.12362246215343475, -0.153720885515213, 0.3013470768928528, 0.12170512229204178, 0.17466077208518982, 0.030444076284766197, 0.018492482602596283, 0.4363826811313629, -0.21358820796012878, -0.004771545995026827, -0.22695724666118622, 0.08833155035972595, -0.02422361634671688, 0.06174220144748688, 0.19046668708324432, 0.13458195328712463, -0.34216490387916565, 0.2412320226430893, -0.11147873848676682, 0.4280519485473633, 0.1739213764667511, 0.1360166072845459, 0.13634060323238373], [-0.025157000869512558, -0.018166732043027878, 0.005504991859197617, 0.1676170527935028, -0.03976994380354881, 0.15907932817935944, -0.08766357600688934, -0.024879394099116325, 0.05837635323405266, 0.06477939337491989, 0.023331446573138237, 0.011684665456414223, 0.19490210711956024, 0.032235290855169296, -0.038392163813114166, -0.0540669783949852, 0.013658286072313786, 0.0244193933904171, -0.07734263688325882, -0.17777997255325317, 0.012125586159527302, -0.22028081119060516, -0.006375940516591072, -0.06547196954488754, -0.16462329030036926, -0.03907717019319534, -0.02344440668821335, 0.2559780776500702, -0.07580865174531937, 0.4849714934825897, 0.30476704239845276, 0.12139283865690231], [-0.07644541561603546, -0.052277009934186935, -0.07537993788719177, 0.4261637330055237, -0.061525169759988785, -0.17147831618785858, 0.10626495629549026, -0.08349591493606567, 0.01697017252445221, 0.06919487565755844, 0.11939634382724762, -0.03309128060936928, -0.14714813232421875, 0.24186497926712036, -0.07818745076656342, -0.09560898691415787, 0.04423141852021217, -0.09983038902282715, 0.1370828002691269, 0.15771260857582092, -0.09397844970226288, 0.04801325500011444, -0.16968891024589539, 0.5915889143943787, -0.4281425178050995, -0.026068054139614105, 0.02517320215702057, 0.6997404098510742, -0.3643287122249603, -0.23871055245399475, 0.33330875635147095, -0.5810619592666626], [-0.21946154534816742, 0.016322679817676544, -0.2132284790277481, 0.127661794424057, 0.03785902261734009, -0.05093788728117943, 0.03575389087200165, 0.12314458191394806, 0.1402502804994583, 0.155300110578537, 0.29603004455566406, -0.24335350096225739, -0.16339656710624695, 0.17680394649505615, -0.054580725729465485, 0.009121076203882694, 0.02097475714981556, -0.16974349319934845, 0.013040062971413136, 0.08775702118873596, -0.08384217321872711, 0.2175178825855255, 0.05046132579445839, 0.15019653737545013, 0.22897273302078247, -0.010097692720592022, -0.03172740712761879, -0.15061557292938232, -0.11361678689718246, 0.5836732387542725, 0.3145564794540405, 0.22823764383792877], [-0.050288815051317215, 0.031115755438804626, -0.007970621809363365, 0.04789765551686287, 0.01963942125439644, -0.018142402172088623, 0.03671318665146828, -0.020689059048891068, -0.031006518751382828, 0.042523548007011414, -0.014657890424132347, 0.006864984519779682, 0.04429323598742485, 0.03527570888400078, -0.015915874391794205, 0.020369261503219604, -0.04979367181658745, 0.04087211564183235, -0.06608984619379044, -0.047043099999427795, -0.05487653240561485, 0.01667739823460579, -0.012486596591770649, 0.019384650513529778, -0.07132139801979065, -0.018875250592827797, 0.02180642820894718, 0.035408865660429, -0.008423009887337685, 0.0746593251824379, 0.03132517635822296, 0.003378174966201186], [0.0026047304272651672, 0.03513920679688454, -0.011424658820033073, 0.00262003717944026, -0.018612900748848915, 0.03622841835021973, 0.026741044595837593, 0.004599810112267733, -0.018171846866607666, -0.05993499606847763, -0.06297438591718674, -0.03587111085653305, 0.002251760335639119, -0.03298987075686455, 0.0016129353316500783, 0.0355277918279171, -0.010965884663164616, -0.002373786410316825, -0.08166909962892532, -0.03403669223189354, 0.030675839632749557, 0.024267803877592087, 0.023658959195017815, 0.0013165908167138696, 0.03344103693962097, 0.00986902043223381, -0.030773507431149483, -0.009571612812578678, 0.00044376557343639433, 0.05247385427355766, -0.021403884515166283, 0.0030500798020511866], [-0.007200305815786123, 0.05420788377523422, 0.009363398887217045, -0.014947207644581795, -0.03201344609260559, 0.024714728817343712, 0.0029564392752945423, -0.011211924254894257, -0.049101557582616806, 0.0242923516780138, -0.012514523230493069, 0.012525673024356365, 0.0390472412109375, 0.038578055799007416, -0.04525788873434067, 0.006875250488519669, -0.049414508044719696, 0.05022035539150238, -0.0405147559940815, 0.014367573894560337, 0.06895679235458374, 0.006208272650837898, 0.021931961178779602, -0.002217544475570321, 0.007835912518203259, -0.030435392633080482, -0.03745950385928154, -0.0037589145358651876, 0.052131760865449905, 0.08127107471227646, -0.03797841817140579, -0.024165421724319458], [0.05746803060173988, 0.024233758449554443, 0.0224912166595459, -0.02820385992527008, 0.013043532148003578, 0.02898762933909893, 0.0008045695722103119, 0.043590594083070755, -0.055096615105867386, 0.04122043773531914, -0.0312936045229435, 0.035051558166742325, -0.034529611468315125, -7.456241291947663e-05, -0.016287878155708313, 0.05113856494426727, -0.030856052413582802, 0.04815571382641792, 0.03986970707774162, 0.020944517105817795, -0.04794849827885628, -0.014335237443447113, 0.09834935516119003, -0.00038388348184525967, 0.00045410735765472054, 0.0047923787496984005, -0.030841438099741936, -0.023870332166552544, 0.07033215463161469, 0.05353932082653046, 0.008415920659899712, -0.005254553630948067], [0.041307851672172546, -0.025403471663594246, -0.008100478909909725, -0.02007085457444191, 0.024204373359680176, 0.003666968084871769, -0.01865779422223568, -0.02309996820986271, 0.01092512533068657, -0.00012119261373300105, -0.001162232831120491, 0.018272440880537033, 0.019374508410692215, -0.04784020408987999, 0.058792389929294586, 0.035113491117954254, -0.02636183239519596, 0.000375767849618569, 0.018153470009565353, -0.055238787084817886, -0.15908142924308777, -0.024990109726786613, -0.005799517966806889, -0.023872248828411102, -0.02087506838142872, 0.02561780996620655, 0.05427231639623642, 0.018553750589489937, -0.01319845113903284, 0.006659998092800379, 0.006030094809830189, -0.04415981099009514], [0.02117222175002098, 0.023059457540512085, 0.003707358380779624, -0.01951505057513714, -0.04215993732213974, -0.0013001811457797885, -0.035483695566654205, -0.008253314532339573, -0.009778082370758057, 0.027014676481485367, -0.010674228891730309, 0.023145494982600212, 0.0003413082449696958, -0.014585224911570549, 0.0132747208699584, 0.03915519639849663, -0.014811960980296135, 0.004608167335391045, -0.047420088201761246, -0.03135254979133606, -0.191933274269104, -0.021420419216156006, -0.03392084315419197, -0.01113789901137352, -0.0020607840269804, 0.012037291191518307, 0.054175179451704025, 0.003999924752861261, 0.01517631858587265, -0.01584150828421116, 0.007366348057985306, -0.028888696804642677], [0.012341472320258617, -0.019581736996769905, 0.00258428230881691, -0.016012560576200485, -0.0166021678596735, 0.012307872995734215, -0.08608848601579666, -0.01975203864276409, -0.024460194632411003, -0.030029311776161194, 0.01404444221407175, -0.04715842381119728, -0.02592051774263382, 0.009673814289271832, -0.005187607370316982, 0.043304190039634705, 0.007877361960709095, 0.0035038760397583246, 0.020718839019536972, -0.07033508270978928, 0.05455575883388519, -0.03473718464374542, 0.023794738575816154, -0.00325663760304451, 0.02407972328364849, -0.00023979879915714264, -0.08490075170993805, -0.018594691529870033, -0.02349088154733181, -0.037393175065517426, 0.00579038355499506, -0.006376688834279776], [0.03297445550560951, 0.013688866049051285, 0.03038799948990345, 0.004263416398316622, -0.008512650616466999, 0.030632976442575455, -0.004233861807733774, -0.00822905357927084, -0.025189319625496864, -0.03962354362010956, 0.0001373414124827832, -0.04670960083603859, 0.02576187439262867, 0.028697893023490906, -0.028720758855342865, 0.02382664382457733, -0.028044549748301506, 0.005276245065033436, -0.041926492005586624, -0.0027499401476234198, 0.011240954510867596, -0.006771888583898544, -0.01402178592979908, 0.0056673684157431126, -0.0020339288748800755, -0.012841446325182915, 0.006547851022332907, -0.005067714024335146, -0.0008776435279287398, 0.007875126786530018, -0.016501449048519135, -0.027121225371956825], [0.03469683602452278, 0.0080356290563941, -0.02080628275871277, -0.005291670095175505, -0.040101513266563416, 0.06552192568778992, -0.042560819536447525, -0.01719195581972599, -0.07060561329126358, 0.028201529756188393, 0.0320536233484745, -0.020964335650205612, 0.0003600706113502383, 0.020620843395590782, -0.012404552660882473, 0.034654561430215836, -0.037810783833265305, 0.02059541828930378, -0.03153517097234726, -0.010792032815515995, 0.0014539452968165278, 0.021909916773438454, -0.044770099222660065, 0.0070648486725986, 0.02066940627992153, -0.026494814082980156, -0.06834021955728531, 0.0023012051824480295, 0.053734179586172104, -0.01513039879500866, -0.0231162216514349, -0.015179022215306759], [0.060772817581892014, -0.036717988550662994, -0.03807346150279045, -0.04492196813225746, -0.05939760431647301, 0.05884517729282379, -0.03423415869474411, 0.027521580457687378, -0.010467048734426498, -0.0018859922420233488, -0.02136765420436859, -0.03392767161130905, -0.07510067522525787, -0.05145689845085144, 0.04813121259212494, -0.048329442739486694, 0.04583192989230156, -0.07895839959383011, 0.06615804880857468, -0.010749480687081814, -0.1773395985364914, -0.015333079732954502, -0.15234380960464478, -0.039517033845186234, 0.03885443136096001, 0.07009269297122955, -0.041730042546987534, -0.029271524399518967, -0.009439501911401749, -0.08259844779968262, -0.003927409648895264, -0.04161055386066437], [0.0001619242539163679, 0.005842674057930708, 0.003071312792599201, 0.00749330036342144, -0.02975097857415676, -0.04332645982503891, -0.003985580988228321, 0.009377981536090374, -0.0025041846092790365, 0.05183248594403267, -0.03864877671003342, -0.006164193153381348, 0.0590466670691967, 0.019770925864577293, -0.03204098343849182, 0.006832428276538849, 0.010515636764466763, 0.03953107073903084, -0.0209877360612154, 0.022204332053661346, -0.010505727492272854, -0.00544107286259532, 0.0019223474664613605, -0.01274073589593172, -0.012862679548561573, 0.01758718118071556, -0.04365004226565361, -0.017121635377407074, 0.045521143823862076, 0.02256878651678562, -0.005691478028893471, -0.004978299606591463], [0.016168847680091858, 0.04920554533600807, -0.009986469522118568, -0.013651058077812195, -0.006994083058089018, -0.03477533906698227, 0.009348459541797638, 0.01720162108540535, -0.005060888361185789, 0.0224324818700552, -0.015536298044025898, 0.019812868908047676, 0.02934323064982891, 0.03181256726384163, -0.016806157305836678, 0.03964899107813835, -0.005606897175312042, -0.030037472024559975, -0.011399512179195881, 0.028941163793206215, 0.015516988933086395, 0.009910210967063904, 0.10747472196817398, -0.01452064048498869, 0.013548588380217552, -0.02001866325736046, 0.021548515185713768, -0.02468619868159294, 0.07231350988149643, 0.020814429968595505, -0.06216934695839882, 0.010789078660309315], [-0.05317702144384384, 0.010729717090725899, 0.010955444537103176, 0.020186901092529297, 0.02819601632654667, -0.0016597507055848837, 0.02595621533691883, 0.017686495557427406, 0.004365571308881044, 0.10592583566904068, -0.013922384940087795, 0.010362877510488033, 0.08449390530586243, 0.00664058281108737, -0.00024892258807085454, 0.021680815145373344, -0.01123028714209795, 0.033314287662506104, -0.05501529201865196, -0.038035064935684204, -0.06033316254615784, -0.023431923240423203, 0.01494015846401453, 0.013867339119315147, -0.07202628999948502, 0.009780623018741608, 0.012623975984752178, 0.0190446637570858, -0.0013828151859343052, 0.07691085338592529, 0.060416329652071, -0.021569153293967247], [0.0008734594448469579, 0.019157955422997475, -0.0055398233234882355, -0.033335380256175995, -0.0026566162705421448, 0.006615908350795507, 0.002713019261136651, 0.014193449169397354, -0.050971101969480515, 0.012296483851969242, -0.035942014306783676, 0.01054953970015049, 0.009589306078851223, -0.05660947784781456, 0.019578641280531883, 0.009075842797756195, -0.007116985507309437, 0.03218000754714012, -0.0026062787510454655, -0.0035911770537495613, -0.13837236166000366, -0.004561020527034998, -0.05608050897717476, -9.238882194040343e-05, 0.022893335670232773, 0.004618776962161064, 0.026790399104356766, 0.013415094465017319, 0.06148338317871094, 0.006632313597947359, 0.007604178972542286, -0.022161738947033882], [-0.004480356350541115, 0.024527840316295624, 0.01408326718956232, -0.06268524378538132, 0.014275014400482178, -0.03038419969379902, -0.012893203645944595, 0.017675021663308144, 0.03822517767548561, -0.1691526174545288, 0.03514811769127846, -0.04539860785007477, 0.004295182414352894, 0.07230750471353531, -0.149667888879776, -0.04226502403616905, -0.022007087245583534, -0.025111204013228416, -0.011035298928618431, 0.06450457125902176, 0.08289062231779099, -0.01549482997506857, -0.04210435971617699, 0.005770427640527487, -0.007634411565959454, 0.022195421159267426, -0.07029300183057785, -0.005625723395496607, 0.0372299887239933, 0.06013987213373184, -0.10947460681200027, 0.018892772495746613], [0.033888157457113266, 0.034303225576877594, 0.007593638263642788, 0.023743996396660805, -0.024818694218993187, 0.004287989344447851, 0.021614404395222664, -0.004221360199153423, -0.047666266560554504, 0.07263553887605667, 0.0015150484396144748, -0.0658726766705513, 0.012546063400804996, 0.02182058058679104, -0.01606593281030655, 0.09178737550973892, -0.009122364223003387, 0.008009236305952072, -0.02994455210864544, -0.014799225144088268, 0.010160875506699085, -0.001736858393996954, -0.0029555466026067734, -0.00570674566552043, -0.02337474934756756, -0.023940546438097954, -0.0023744755890220404, 0.011482466012239456, 0.043536435812711716, 5.8669083955464885e-06, 0.02109096385538578, 0.00922017078846693], [-0.04765672981739044, -0.01608455367386341, 0.024642042815685272, -0.03458310663700104, -0.0041660419665277, -0.03329137712717056, 0.015346418134868145, 0.023898882791399956, -0.010347221978008747, 0.0058165667578577995, -0.00899718888103962, -0.06159115210175514, -0.02124210260808468, 0.03165740147233009, -0.0036312497686594725, -0.022447826340794563, -0.02305687591433525, -0.0029078114312142134, 0.05532115325331688, -0.001254824921488762, -0.061485808342695236, -0.008848034776747227, 0.02619255892932415, -0.05086343362927437, -0.0488780252635479, -0.0016191602917388082, -0.07973594218492508, 0.0038649518974125385, -0.01551775261759758, 0.0312514491379261, -0.01617320254445076, -0.007329024840146303], [0.007646930404007435, 0.053151171654462814, -0.0026786078233271837, 0.037035174667835236, -0.04266910254955292, 0.016037065535783768, 0.007255070377141237, 0.010530966334044933, -0.019584758207201958, -0.04669851064682007, -0.0014430629089474678, -0.06373627483844757, 0.08189129084348679, 0.005260063335299492, -0.04304521530866623, 0.07305499166250229, 0.028040742501616478, 0.031858038157224655, -0.08934776484966278, 0.05251261219382286, 0.19094830751419067, 0.012154254131019115, 0.04017718881368637, 0.04518201947212219, -0.019178174436092377, -0.017472436651587486, -0.0615837462246418, 0.019325952976942062, 0.024132119491696358, 0.06017268821597099, 0.020194564014673233, -0.007224089466035366], [-0.06380677223205566, -0.05702316015958786, -0.061468303203582764, 0.014062389731407166, 0.0701480433344841, 0.0072045219130814075, -0.05966344475746155, -0.02955431304872036, -0.12051572650671005, 0.011371498927474022, -0.06364679336547852, 0.011417265981435776, -0.08412943035364151, 0.0051855603232979774, 0.03473586216568947, -0.034056808799505234, 0.032956261187791824, -0.035004131495952606, -0.0327584370970726, -0.1127154678106308, -0.22947953641414642, 0.02855769731104374, -0.2768993079662323, 0.020970575511455536, 0.00797320157289505, -0.056899022310972214, -0.10465457290410995, -0.010360075160861015, -0.04647836089134216, 0.00737459771335125, 0.06635285168886185, 0.026598945260047913], [0.026271257549524307, -0.020622095093131065, -0.0007465881062671542, -0.07578285783529282, -0.003513298463076353, -0.016764270141720772, -0.02155640348792076, -0.026052046567201614, -0.04235447198152542, -0.10400348901748657, -0.0014406400732696056, 0.019022183492779732, -0.06385937333106995, 0.000821886002086103, -0.05278044939041138, 0.017268085852265358, -0.022953728213906288, 0.02902986668050289, 0.030233686789870262, 0.07432399690151215, 0.015302097424864769, 0.009509338065981865, -0.014817933551967144, -0.023824887350201607, 0.07121627777814865, 0.022121168673038483, -0.013461611233651638, -0.05770810693502426, 0.06232413649559021, -0.03692983090877533, -0.10003025829792023, 0.05362517014145851], [0.03203902021050453, -0.010661263950169086, -0.0023039209190756083, 0.025195598602294922, -0.053271904587745667, -0.039936840534210205, 0.045321643352508545, -0.0621819794178009, -0.05194242298603058, 0.012891299091279507, 0.006848712917417288, 0.06545432657003403, -0.0036068970803171396, 0.02394723705947399, 0.03109288029372692, 0.0688779279589653, 0.020262882113456726, 0.04739592969417572, -0.07317004352807999, -0.10475378483533859, 0.08719181269407272, -0.013831484131515026, 0.09775590151548386, -0.01578359305858612, 0.0020222740713506937, -0.011863174848258495, 0.01774423010647297, -0.00637265108525753, 0.03530573099851608, -0.06636832654476166, -0.0107168173417449, 0.012632371857762337], [0.01690611243247986, 0.013109026476740837, -0.038099877536296844, -0.020091496407985687, -0.0026348347309976816, -0.017697032541036606, -0.02409372478723526, 0.011353639885783195, -0.015541075728833675, -0.001436759252101183, -0.00012678220809902996, -0.024722056463360786, 0.048256564885377884, 0.027708083391189575, -0.048085279762744904, 0.031517840921878815, -0.04435696452856064, 0.005766900721937418, -0.03157423064112663, 0.032402828335762024, 0.0756336897611618, -0.06454198807477951, -0.012218674644827843, 0.02894585020840168, -0.009469042532145977, 0.027697863057255745, -0.005775901023298502, -0.0375407412648201, 0.038131143897771835, -0.077252596616745, 0.003101723501458764, -0.02235141023993492], [-0.036963652819395065, 0.013773164711892605, 0.029261598363518715, -0.0141441710293293, -0.017427483573555946, -0.03159371763467789, 0.015925563871860504, 0.04185383394360542, 0.0004539105575531721, -0.032524172216653824, -0.02436853013932705, 0.03558904305100441, -0.026153920218348503, -0.049025457352399826, 0.08339790999889374, -0.009673151187598705, 0.005328380037099123, -0.04073263332247734, 0.08946530520915985, -0.11096720397472382, -0.06704900413751602, -0.03481648117303848, -0.0018630168633535504, 0.007834293879568577, -0.04325129836797714, 0.10938368737697601, -0.13711543381214142, 0.03088397905230522, 0.022662067785859108, 0.013066863641142845, 0.0940358117222786, 0.01969747617840767], [-0.02279401756823063, -0.024232685565948486, 0.02953602746129036, -0.0027970534283667803, 0.015376134775578976, -0.051866549998521805, -0.013506608083844185, -0.044527869671583176, -0.058221183717250824, 0.053229473531246185, -0.011662113480269909, -0.017306596040725708, 0.01864551194012165, 0.008026285097002983, -0.034678347408771515, 0.05382101982831955, 0.0023127945605665445, 0.06308256834745407, -0.01832197792828083, 0.03462148457765579, -0.07845427095890045, -0.008865075185894966, -0.0398857556283474, -0.0365883968770504, -0.03631960600614548, 0.012850194238126278, -0.04421359673142433, 0.008832854218780994, -0.016183970496058464, 0.011943772435188293, -0.0608397014439106, 0.011174201034009457], [0.03550169989466667, -0.010485142469406128, -0.007424831390380859, 0.02392781525850296, -0.009726417250931263, -0.02359473891556263, -0.010147574357688427, -0.010011298581957817, -0.00986302737146616, 0.19379711151123047, 0.009397689253091812, 0.033386893570423126, -0.0638725757598877, -0.04185939580202103, 0.09272816777229309, -0.005509431008249521, -0.030553657561540604, -0.02002713643014431, 0.02090706303715706, -0.09951212257146835, -0.11725983768701553, 0.027595123276114464, 0.04514579474925995, -0.015493310987949371, -0.06916256994009018, 0.04345041513442993, 0.0027131722308695316, 0.053587328642606735, 0.030680228024721146, -0.03558969870209694, 0.004702461417764425, 0.0205535925924778], [-0.0025678668171167374, 0.07517866045236588, 0.07045100629329681, -0.0018018375849351287, -0.029075954109430313, -0.02132473699748516, 0.024759337306022644, -0.00759937334805727, 0.042182181030511856, -0.0037074715364724398, 0.02130947634577751, -0.021459603682160378, 0.045801009982824326, 0.03483634069561958, -0.10543502122163773, -0.0004797246656380594, 0.021515781059861183, 0.003047457430511713, -0.0016018144087865949, 0.011698995716869831, 0.03267325833439827, 0.004734009969979525, 0.06370974332094193, -0.06155533716082573, -0.025590557605028152, -0.03732201084494591, -0.029196657240390778, -0.00543450191617012, 0.015493917278945446, 0.032588616013526917, -0.01676829159259796, 0.009629447013139725], [-0.037478890269994736, 0.009803659282624722, -0.02512768656015396, -0.038638629019260406, 0.02554432861506939, -0.14015118777751923, -0.03487924858927727, 0.03827604651451111, 0.07668940722942352, 0.01329716295003891, 0.06055394932627678, 0.043441206216812134, 0.02082037553191185, 0.0055376519449055195, -0.03185984119772911, -0.1320871263742447, -0.07770749926567078, -0.014234078116714954, 0.07778170704841614, -0.06972881406545639, -0.10599859803915024, -0.0902542993426323, 0.01876855455338955, -0.0026304745115339756, 0.004077971447259188, 0.14934980869293213, 0.1509447544813156, 0.03354795649647713, 0.06142817810177803, 0.049094121903181076, 0.012776775285601616, 0.08832404762506485], [0.03023337759077549, 0.01013079471886158, -0.013938098214566708, 0.0014356967294588685, -0.04462989792227745, 0.014546132646501064, -0.02634667046368122, -0.029064852744340897, -0.03455817699432373, -0.007750328164547682, -0.023676110431551933, -0.0021455292589962482, -0.02199668064713478, -0.007997498847544193, 0.021041933447122574, 0.0025379618164151907, -0.014994245953857899, -0.03241455554962158, 0.046330664306879044, 0.01653674989938736, -0.034610193222761154, 0.0034274959471076727, 0.025570549070835114, 0.009267720393836498, 0.03210270032286644, -0.0017584001179784536, 0.05806786194443703, -0.023742899298667908, 0.042062416672706604, -0.05979404225945473, 0.027735352516174316, -0.005514059215784073], [-0.010856473818421364, 0.015333132818341255, 0.020015856251120567, -0.017146557569503784, 0.02195722796022892, 0.01696753315627575, -0.014241226017475128, 0.006156884133815765, -0.036663077771663666, -0.01718570850789547, -0.02023034170269966, 0.015996206551790237, 0.02401740476489067, -0.0007128858705982566, -0.029964881017804146, 0.007401693612337112, 0.04052676260471344, 0.0059432643465697765, -0.03933790698647499, 0.006950052455067635, 0.07624701410531998, 0.01580813340842724, 0.040571995079517365, 0.01874881237745285, 0.0470641627907753, -0.014221279881894588, -0.010439407080411911, -0.05362226068973541, 0.09727229923009872, -0.010926108807325363, 0.0019463052740320563, 0.0423402301967144], [-0.17775137722492218, 0.04103521630167961, 0.03384421765804291, 0.018179895356297493, 0.09146533161401749, 0.036521364003419876, 0.011756940744817257, 0.03095427341759205, 0.10420312732458115, -0.06650328636169434, -0.05275166779756546, -0.005271981470286846, 0.11572428047657013, 0.06082608178257942, -0.09517378360033035, -0.006451684515923262, 0.047117020934820175, 0.05688938498497009, -0.0449804849922657, 0.01981857605278492, -0.06753657013177872, -0.053566090762615204, 0.0048675923608243465, 0.06597799807786942, -0.12315291911363602, 0.03182317689061165, -0.06651758402585983, -0.0894896611571312, -0.06685487180948257, 0.022019516676664352, 0.06973114609718323, -0.05408894643187523], [-0.0006174020818434656, 0.027956001460552216, -0.07026179134845734, -0.003371192142367363, 0.025245537981390953, -0.01274270098656416, -0.06512812525033951, -0.01350496243685484, -0.06614254415035248, 0.045661211013793945, 0.0006749566528014839, 0.03418891131877899, -0.0071579525247216225, -0.027064979076385498, 0.04895395785570145, 0.03567977622151375, 0.006296184379607439, -0.036376841366291046, 0.00450269365683198, -0.03326059505343437, -0.1334165781736374, -0.008510635234415531, -0.0287894606590271, -0.021393902599811554, -0.004640035331249237, 0.029720552265644073, -0.008951427415013313, 0.004808084107935429, 0.028680142015218735, -0.04830764979124069, 0.0026054270565509796, 0.004838245455175638], [0.00037338410038501024, 0.036386050283908844, 0.01558319479227066, -0.023877901956439018, -0.03124360181391239, 0.007347180508077145, -0.01466729398816824, -0.025855321437120438, 0.011440289206802845, 0.06337998062372208, 0.008942408487200737, -0.004660069942474365, 0.030607573688030243, 0.016806114464998245, -0.0268112625926733, -0.0074318777769804, 0.0009126056684181094, 0.01860562339425087, -0.04509196802973747, -0.02941782958805561, 0.0150121059268713, -0.018154457211494446, -0.028845787048339844, -0.023465288802981377, -0.010868693701922894, 0.016464337706565857, -0.05597342923283577, -0.01096153724938631, 0.03367558866739273, -0.012818261981010437, -0.01888732984662056, -0.012973801232874393]], "rec.bias_ih_l0": [0.040753670036792755, 0.2976895272731781, 0.10654570162296295, -0.1395995318889618, 0.6252351403236389, 0.44031932950019836, -0.09772845357656479, -0.07565156370401382, -0.03778596594929695, 0.2285386472940445, -0.028454473242163658, 0.2632367014884949, 0.07613515853881836, 0.22610528767108917, 0.0020130639895796776, -0.02967274934053421, -0.6776976585388184, 0.2588861286640167, 0.24348308145999908, 0.060695383697748184, 0.05588361993432045, -0.28998494148254395, 0.4427805542945862, 0.11020897328853607, 0.3735913634300232, -0.3033097982406616, 0.629776656627655, -0.000405862316256389, -0.015898916870355606, -1.0613691806793213, 0.31486812233924866, -0.15884055197238922, 0.36103713512420654, 0.3386598527431488, 0.47684937715530396, 0.3831205666065216, -0.021871646866202354, 0.2010878324508667, 0.6566867828369141, 0.6458636522293091, 0.6159794330596924, 0.5408316850662231, 0.5947968363761902, 0.26583051681518555, 0.25531354546546936, 0.27416008710861206, 0.321581095457077, 0.6808708906173706, 1.2270827293395996, 0.4175439476966858, 0.12039215862751007, 0.3168293833732605, 0.42589181661605835, 0.5660601258277893, 0.08806733787059784, 0.32447367906570435, 0.12310804426670074, 0.7671939134597778, 0.3775519132614136, 0.3668028712272644, 0.6032077670097351, 1.410095453262329, 0.20426513254642487, 0.5721200108528137, 0.019963497295975685, -0.047508060932159424, -0.039258427917957306, -0.017166867852211, -0.07975441217422485, 0.05827447399497032, -0.013889670372009277, -0.0012084005866199732, -0.05454471707344055, -0.0021440116688609123, 0.04738076776266098, 0.012084512040019035, 0.06193023920059204, 0.07795943319797516, -0.015291640534996986, 0.03855080530047417, 0.012523694895207882, 0.008757682517170906, -0.016723254695534706, -0.039279479533433914, -0.05501855909824371, 0.09746277332305908, -0.0070275356993079185, -0.07500342279672623, -0.004714313428848982, 0.09941454976797104, -0.13549432158470154, -0.14674730598926544, -0.0406271256506443, 0.05803310126066208, -0.009882142767310143, -0.09012254327535629, 0.12342744320631027, 0.3449752628803253, 0.18301470577716827, 0.0127249239012599, 0.6483837366104126, 0.4875405728816986, 0.17545780539512634, 0.12221936136484146, 0.28908634185791016, 0.08363241702318192, 0.14169864356517792, 0.3656439483165741, 0.17710717022418976, 0.3530547022819519, 0.1142273023724556, 0.17309831082820892, 0.18533891439437866, 0.309915155172348, 0.052858442068099976, 0.17908942699432373, 0.04837081953883171, -0.011586206965148449, 0.10738692432641983, 0.19003386795520782, 0.34228479862213135, 0.01925724372267723, -0.24603398144245148, 0.33498528599739075, 0.1704017072916031, 0.1872716248035431, 0.42716631293296814, 0.09983012825250626], "rec.bias_hh_l0": [0.04478032514452934, 0.3003802001476288, 0.10632307082414627, -0.13974416255950928, 0.6252658367156982, 0.4403192698955536, -0.09734155237674713, -0.080926813185215, -0.03793777525424957, 0.23156702518463135, -0.0425928570330143, 0.26350706815719604, 0.07167995721101761, 0.22312001883983612, -0.0007715781102888286, -0.029235953465104103, -0.7057597637176514, 0.25888603925704956, 0.2794250249862671, 0.06063760071992874, -0.014071870595216751, -0.2968383729457855, 0.4447369873523712, 0.0915217399597168, 0.34136122465133667, -0.3297850489616394, 0.6146335005760193, 0.002511383732780814, -0.01585915870964527, -1.0389232635498047, 0.31622910499572754, -0.19223906099796295, 0.354633629322052, 0.3417900800704956, 0.4764486849308014, 0.38286349177360535, -0.021851683035492897, 0.20108097791671753, 0.6676821112632751, 0.6442511677742004, 0.6090788841247559, 0.3453664481639862, 0.5376762747764587, 0.27540647983551025, 0.2542265057563782, 0.276944100856781, 0.30682268738746643, 0.6763625741004944, 1.2274810075759888, 0.4175439476966858, 0.15974582731723785, 0.31674695014953613, 0.38336318731307983, 0.5707245469093323, 0.09853214770555496, 0.33424112200737, 0.16608980298042297, 0.7422093152999878, 0.34949174523353577, 0.37001293897628784, 0.6047385334968567, 1.4221396446228027, 0.20457802712917328, 0.5824272632598877, -0.0004858888569287956, 0.08736533671617508, 0.0638418197631836, 0.0006453999667428434, 0.010888073593378067, -0.05024624615907669, -0.058044422417879105, 0.03180732578039169, 0.024054277688264847, 0.040897030383348465, -0.009602906182408333, -0.07069279998540878, -0.02382591925561428, -0.07042775303125381, 0.044840555638074875, -0.046556394547224045, 0.01934659108519554, -0.04324091225862503, 0.07467546314001083, -0.028282860293984413, -0.17291119694709778, -0.08802950382232666, 0.005309491418302059, 0.05636310949921608, -0.03853890672326088, -0.12447145581245422, 0.04937455803155899, 0.11346274614334106, 0.07628031075000763, -0.03876293823122978, 0.061983443796634674, 0.09688326716423035, 0.11708498746156693, 0.3452482223510742, 0.18357452750205994, 0.012337896972894669, 0.6484274864196777, 0.4875451624393463, 0.16923248767852783, 0.11452711373567581, 0.2881685197353363, 0.07460632175207138, 0.14986056089401245, 0.36672621965408325, 0.17612598836421967, 0.3481738865375519, 0.11624976992607117, 0.17951811850070953, 0.2029598206281662, 0.3099152147769928, 0.049048181623220444, 0.17911487817764282, 0.053749337792396545, -0.01828649267554283, 0.10634298622608185, 0.21428120136260986, 0.3457753360271454, 0.01694641076028347, -0.28316447138786316, 0.32928764820098877, 0.1701069474220276, 0.21450665593147278, 0.426963210105896, 0.09768624603748322], "lin.weight": [[-0.021699154749512672, -0.6394550800323486, 0.14379805326461792, -0.11726770550012589, 0.42825454473495483, -0.10787313431501389, 0.45714446902275085, -0.05076697841286659, 0.7022079229354858, -0.00040399093995802104, -0.5012795329093933, -0.5289252400398254, 0.45242446660995483, -0.998617947101593, 0.1982422024011612, 0.5942330956459045, 0.841001033782959, 0.37876230478286743, 0.01592891849577427, 0.00597533630207181, -0.0028054278809577227, -0.08750567585229874, 0.04330115020275116, 0.3700222671031952, 0.05650749430060387, 0.00041046529076993465, 0.4347514808177948, 0.7434120178222656, 0.7950530052185059, 0.022611094638705254, 0.01425265148282051, -0.60597825050354]], "lin.bias": [-0.06686370074748993]}} \ No newline at end of file diff --git a/models/green.json b/models/green.json index c565bd8..35428a0 100644 --- a/models/green.json +++ b/models/green.json @@ -1 +1 @@ -{"model_data": {"model": "SimpleRNN", "input_size": 1, "skip": 1, "output_size": 1, "unit_type": "LSTM", "num_layers": 1, "hidden_size": 20, "bias_fl": true}, "state_dict": {"rec.weight_ih_l0": [[-0.004365227650851011], [0.05745846405625343], [0.04903366416692734], [0.021297721192240715], [0.04958232864737511], [-0.04272837936878204], [-0.06914352625608444], [0.10769404470920563], [0.013982485979795456], [0.08297251909971237], [0.0613304078578949], [-0.057048242539167404], [-0.08214276283979416], [-0.10406539589166641], [0.042161718010902405], [0.07242550700902939], [0.06630612164735794], [0.005755288060754538], [-0.015684835612773895], [0.052425287663936615], [-0.037460967898368835], [-0.0746796503663063], [0.07569839060306549], [-0.05686017870903015], [0.010756313800811768], [0.002998247742652893], [0.0060876887291669846], [-0.03298813849687576], [-0.006279350258409977], [0.06171537563204765], [0.07514651119709015], [-0.11653005331754684], [-0.13526690006256104], [-0.02135433815419674], [0.0736880749464035], [0.151833176612854], [0.05994478985667229], [0.00881354883313179], [0.011385748162865639], [0.2295500934123993], [-0.574135959148407], [-4.883035659790039], [0.14401108026504517], [0.8650239109992981], [3.726999521255493], [0.30410850048065186], [-0.41269710659980774], [0.5716276168823242], [-4.680317401885986], [0.08827661722898483], [0.009596794843673706], [0.09269894659519196], [0.06222614273428917], [-0.6384732723236084], [0.18447498977184296], [0.16981899738311768], [0.3522067964076996], [-0.39887577295303345], [0.1599375456571579], [3.460444211959839], [-0.07213884592056274], [0.11862494796514511], [0.11423148959875107], [0.0066992007195949554], [0.04705970734357834], [0.06914521753787994], [-0.00980708934366703], [0.17490050196647644], [0.5115919709205627], [0.07011517137289047], [0.057137373834848404], [-0.1258491426706314], [-0.3007758855819702], [-0.07193025946617126], [0.039195407181978226], [0.07527397572994232], [0.04013752192258835], [0.034925900399684906], [0.04811106622219086], [0.06736346334218979]], "rec.weight_hh_l0": [[-0.11843838542699814, -0.1262785941362381, 0.040494002401828766, 0.015995459631085396, 0.005691566504538059, 0.06731974333524704, 0.05266081541776657, -0.12471511214971542, -0.09368826448917389, 0.14380457997322083, 0.08341008424758911, 0.0039828261360526085, -0.07713091373443604, -0.06067056208848953, 0.024828968569636345, 0.05288081616163254, -0.08961674571037292, 0.06349994242191315, -0.013112763874232769, 0.013834337703883648], [-0.10609839111566544, 0.03040066733956337, 0.8163653016090393, -0.045682862401008606, -0.010115829296410084, 0.015410811640322208, -0.040886346250772476, -0.44663289189338684, -0.046403273940086365, 0.4055411219596863, 0.1053847074508667, -0.5379031896591187, -0.4214523434638977, -0.008083213120698929, 0.0036318402271717787, -0.00912868045270443, 0.023337842896580696, -0.03495655953884125, -0.010693096555769444, 0.09330953657627106], [-0.020850446075201035, 0.00414617033675313, 0.11871717125177383, 0.0257922001183033, 0.008197884075343609, 0.08664580434560776, 0.012183679267764091, 0.007658874616026878, -0.01576831378042698, 0.05229654535651207, -0.013759608380496502, -0.1019015833735466, -0.040239375084638596, 0.05336921662092209, 0.010297663509845734, 0.008069139905273914, 0.012332114391028881, 0.010477844625711441, 0.024439577013254166, 0.014421368949115276], [0.0049679894000291824, 0.03430340811610222, 0.2977767884731293, -0.002349210437387228, 0.044307563453912735, 0.08023162186145782, 0.030615946277976036, -0.06289836019277573, -0.06344394385814667, 0.07061020284891129, 0.007077829912304878, -0.11076488345861435, -0.16028280556201935, -0.010529443621635437, -0.0042290352284908295, 0.008554146625101566, -0.06331615149974823, 0.013828524388372898, 0.051276642829179764, 0.015293764881789684], [0.026178305968642235, -0.04535374417901039, 0.7762565612792969, -0.03909614682197571, 0.04751657694578171, 0.06902804225683212, -0.04420915246009827, -0.2402729094028473, -0.07891573756933212, 0.33215609192848206, 0.04960939288139343, -0.3695993721485138, -0.45615726709365845, -0.07187363505363464, 0.011932413093745708, 0.006798374466598034, -0.10890792310237885, -0.005904635414481163, 0.010415183380246162, 0.006654605735093355], [0.0939740315079689, -0.16698035597801208, -0.5343497395515442, -0.1233922466635704, 0.023942749947309494, -0.052983202040195465, 0.023803509771823883, 0.35935622453689575, -0.04054219275712967, -0.15981988608837128, 0.053255949169397354, 0.3606727719306946, 0.27775028347969055, -0.07276713103055954, 0.0500003919005394, 0.06615033745765686, -0.042666107416152954, -0.0889967754483223, 0.046705763787031174, -0.06434275209903717], [-0.2475925087928772, -0.23101618885993958, -0.7930517196655273, 0.084730364382267, -0.06839399039745331, -0.2366264909505844, 0.20340389013290405, 0.27228954434394836, -0.047834742814302444, -0.4217708110809326, 0.14835990965366364, 0.6057295799255371, 0.49038243293762207, 0.012251043692231178, -0.017644114792346954, 0.15783341228961945, 0.19454294443130493, 0.19468162953853607, 0.09810027480125427, -0.10460397601127625], [-0.1202521100640297, -0.5065279006958008, 0.02698844112455845, -0.16795530915260315, 0.0562867671251297, -0.03063429519534111, 0.023277264088392258, -0.0849289670586586, -0.14137117564678192, 0.13941675424575806, -0.042125869542360306, -0.1419019252061844, 0.02459310181438923, -0.27698978781700134, 0.03779926151037216, 0.04283369705080986, -0.14339973032474518, -0.0229440126568079, 0.14530068635940552, -0.2936837077140808], [-0.04234025627374649, 0.09518133103847504, 0.7599375247955322, 0.025277553126215935, -0.0949278399348259, 0.07325904816389084, -0.05611996725201607, -0.37466731667518616, 0.04745445027947426, 0.30070823431015015, 0.08538287878036499, -0.44489535689353943, -0.44441768527030945, 0.017131250351667404, 0.016342394053936005, 0.021754641085863113, 0.04539530724287033, -0.032575950026512146, -0.05728272721171379, 0.06417127698659897], [-0.0814632773399353, 0.07615737617015839, -0.057326216250658035, 0.04822702333331108, 0.023895855993032455, 0.06929908692836761, -0.01641133241355419, 0.3003711998462677, -0.08178446441888809, 0.14098064601421356, -0.04435855895280838, 0.24184760451316833, -0.04116636887192726, 0.22112326323986053, -0.06534430384635925, -0.019544314593076706, 0.02280636876821518, -0.02446150965988636, 0.1821211725473404, 0.08939498662948608], [-0.01617131195962429, -0.2005605250597, 0.17462944984436035, -0.03561946004629135, -0.02122184820473194, 0.07626762986183167, -0.05470282956957817, 0.09037625789642334, -0.0761859267950058, 0.09695743769407272, 0.01846075989305973, -0.0009527563233859837, -0.0490846261382103, -0.055318549275398254, 0.033930111676454544, 0.0486907921731472, -0.14448022842407227, -0.00014764053048565984, 0.17730818688869476, -0.08710325509309769], [-0.03349927440285683, 0.22654569149017334, 0.2050311267375946, 0.05722641944885254, 0.035107530653476715, 0.01417509000748396, 0.050784844905138016, -0.044705457985401154, -0.06192588061094284, 0.10490590333938599, 0.05766909942030907, 0.055767692625522614, -0.2048478126525879, 0.016300346702337265, -0.010311059653759003, 0.022286012768745422, -0.08999171108007431, 0.02465571090579033, -0.0009505911730229855, 0.1497163623571396], [0.14557510614395142, 0.24987159669399261, -0.0693252757191658, 0.02303292602300644, 0.0022779940627515316, -0.04883967339992523, 0.03280085325241089, 0.052208948880434036, 0.08103514462709427, -0.0494304820895195, -0.015759633854031563, 0.1232411339879036, -0.07576195895671844, 0.02458522655069828, -0.03951242193579674, -0.012501043267548084, 0.08173537254333496, 0.039001964032649994, -0.07007426023483276, 0.02762032300233841], [0.06454659253358841, -0.07725439220666885, 0.239349827170372, 0.020766424015164375, 0.0017698571318760514, -0.1103130355477333, 0.0008236481808125973, 0.07586250454187393, -0.07820890843868256, 0.15081533789634705, -0.04910033196210861, 0.2739812135696411, -0.15550467371940613, -0.061491020023822784, -0.0019710755441337824, 0.036848798394203186, -0.17256265878677368, -0.04030487686395645, -0.05670936778187752, -0.06619270890951157], [-0.01515217311680317, -0.013423780910670757, -0.02368777059018612, 0.01906566135585308, 0.007357360329478979, 0.0733889788389206, -0.028003400191664696, 0.07025259733200073, -0.020543023943901062, 0.0027582221664488316, -0.043490540236234665, 0.005220565013587475, 0.025518514215946198, 0.07352367043495178, 0.04194609448313713, 0.0652928277850151, 0.05166851356625557, 0.009617415256798267, 0.03223111107945442, -0.0034326016902923584], [-0.06575597077608109, -0.10422263294458389, -0.1317324936389923, 0.019247695803642273, -0.03020954318344593, 0.2323634922504425, 0.0682542696595192, 0.03293367847800255, -0.021758195012807846, -0.020225299522280693, -0.01877729967236519, 0.06352359801530838, 0.10609891265630722, 0.09900721162557602, 0.10193653404712677, 0.1828269213438034, -0.03056701086461544, 0.14908276498317719, 0.02367381751537323, -0.005137128289788961], [0.05792148783802986, 0.12041901797056198, 0.11237978935241699, -0.029326671734452248, 0.07115986198186874, 0.013099918141961098, -0.11011847108602524, 0.07278217375278473, 0.05119877681136131, 0.11665643751621246, -0.016161711886525154, -0.03627200052142143, -0.09302244335412979, 0.033597782254219055, 0.013166975229978561, -0.009752366691827774, 0.002998604904860258, 0.011326111853122711, 0.09544936567544937, 0.05126269534230232], [-0.05946280062198639, -0.3308475613594055, -1.2321641445159912, 0.06318081170320511, 0.21285027265548706, -0.21803408861160278, -0.0028747390024363995, 0.16952598094940186, 0.32706302404403687, -0.2077482044696808, 0.32355430722236633, 0.5810874104499817, 1.0472347736358643, -0.06688287109136581, -0.02348036877810955, 0.25047001242637634, 0.310557097196579, -0.20015834271907806, -0.058282990008592606, 0.0008298783795908093], [-0.0493963398039341, -0.5197150111198425, -0.24058641493320465, -0.16297751665115356, 0.04795577749609947, -0.18725013732910156, -0.13548758625984192, 0.232946515083313, -0.257566899061203, 0.11922918260097504, 0.116251640021801, 0.32268789410591125, -0.021379666402935982, -0.23454558849334717, -0.019833864644169807, -0.06746094673871994, -0.10678251087665558, 0.0571281798183918, 0.2297067940235138, -0.18823833763599396], [0.0758061334490776, -0.03873485326766968, 0.8125045895576477, -0.025061123073101044, 0.07225744426250458, 0.09596381336450577, -0.038316760212183, -0.1973588913679123, -0.06162396818399429, 0.33208441734313965, 0.061394043266773224, -0.3694240152835846, -0.47823566198349, -0.0916382297873497, 0.01578577421605587, 0.00807973463088274, -0.12215547263622284, -0.004562830552458763, 0.029805511236190796, -0.0183644387871027], [-0.1427992731332779, -0.045674439519643784, 0.22229976952075958, 0.040233314037323, 0.011354613117873669, 0.08780699968338013, -0.071067675948143, -0.24757027626037598, -0.04325298219919205, 0.2041214555501938, 0.09981855005025864, -0.011297301389276981, -0.21077892184257507, -0.03341764956712723, 0.06610016524791718, 0.033800363540649414, 0.05958356335759163, 0.0026577727403491735, -0.015285834670066833, 0.03187618777155876], [0.08993019163608551, -0.30244144797325134, -0.18228444457054138, -0.14701563119888306, -0.04515659064054489, -0.062486447393894196, 0.04262455925345421, -0.004130748566240072, -0.10605815798044205, -0.006691957823932171, -0.047623105347156525, -0.04624692350625992, 0.22825144231319427, 0.10141079127788544, -0.01241402979940176, -0.12450119853019714, -0.1597631722688675, -0.027721881866455078, -0.07264221459627151, -0.027910878881812096], [0.013145381584763527, 0.13929621875286102, 0.5393329858779907, 0.05290863290429115, 0.019259925931692123, 0.16649118065834045, -0.005718453321605921, -0.06516047567129135, 0.009931566193699837, 0.1505623608827591, -0.007943855598568916, -0.23827096819877625, -0.26425406336784363, 0.11573293060064316, 0.019502811133861542, 0.008579768240451813, 0.028126277029514313, 0.01839716173708439, 0.0036807083524763584, 0.08442966639995575], [0.047093383967876434, 0.03168052062392235, 0.012398344464600086, 0.0944288969039917, 0.043158773332834244, 0.06447327882051468, 0.08368254452943802, 0.06474956125020981, 0.029209310188889503, -0.11737007647752762, -0.021074343472719193, 0.15222838521003723, -0.02911994233727455, 0.027486400678753853, -0.0018903474556282163, 0.033866994082927704, 0.014336157590150833, -0.0002387708955211565, -0.06227254122495651, -0.010425128974020481], [-0.11579861491918564, -0.06127437204122543, -0.24736398458480835, -0.05482427403330803, -0.07767969369888306, -0.06899397820234299, 0.04029850289225578, -0.03711890056729317, -0.04034363478422165, -0.02223852463066578, 0.011395852081477642, 0.04943033680319786, 0.2009028196334839, 0.04989352822303772, 0.0012402529828250408, 0.020121337845921516, -0.041228700429201126, 0.011679203249514103, -0.010410075075924397, 0.05979035422205925], [0.07202612608671188, 0.10934761166572571, 0.7485091090202332, -0.13025641441345215, -0.03523142263293266, 0.06632234156131744, -0.10892746597528458, -0.11529478430747986, -0.11401275545358658, 0.37367814779281616, 0.0604034848511219, -0.21230047941207886, -0.5749963521957397, -0.034914880990982056, 0.06384313851594925, 0.032303497195243835, -0.14519132673740387, -0.1328561007976532, 0.09543269872665405, 0.10523301362991333], [0.11278825253248215, 0.16504795849323273, 0.9544439911842346, -0.02520396001636982, 0.03627833351492882, 0.10690063238143921, -0.22371980547904968, -0.23198221623897552, -0.2263948619365692, 0.38149160146713257, -0.13650979101657867, -0.4227020740509033, -0.6889131665229797, 0.02228569984436035, -0.033250484615564346, -0.11212887614965439, -0.021529296413064003, 0.004032693803310394, -0.008712551556527615, -0.02817334048449993], [-0.030822331085801125, -0.10808857530355453, -0.04411226138472557, -0.09398156404495239, -0.0774604082107544, -0.102533258497715, -0.022269554436206818, -0.2069457620382309, 0.036188531666994095, 0.09643624722957611, 0.0723685696721077, -0.048446331173181534, 0.06410545110702515, -0.3050501048564911, 0.04624994844198227, 0.04388953372836113, -0.1131075993180275, -0.030720099806785583, 0.02738098055124283, -0.16539549827575684], [-0.09369102120399475, 0.0006954721175134182, -0.462787926197052, 0.05495988950133324, -0.15229029953479767, -0.020631249994039536, 0.015489781275391579, 0.02493255026638508, 0.12225993722677231, -0.239353746175766, -0.03150133788585663, 0.14387108385562897, 0.2674972414970398, 0.14047306776046753, 0.03534555435180664, 0.05467643216252327, 0.18125155568122864, -0.015668759122490883, -0.08021900802850723, 0.08017006516456604], [0.11947858333587646, 0.18818399310112, 0.49897053837776184, 0.2893325388431549, 0.19837938249111176, 0.254999041557312, -0.13482223451137543, -0.263083279132843, 0.000417093513533473, 0.2403317093849182, 0.08572244644165039, -0.26591020822525024, -0.592610776424408, -0.07778171449899673, 0.048727065324783325, 0.12183915078639984, -0.04419543966650963, 0.054224688559770584, -0.22239245474338531, 0.19316937029361725], [-0.0994170680642128, -0.11940500885248184, 0.030091335996985435, 0.06025628000497818, -0.05057171732187271, 0.11964771896600723, -0.07747303694486618, 0.005707241129130125, 0.034219443798065186, -0.020623665302991867, 0.03869382664561272, -0.01946125365793705, 0.07949968427419662, 0.01875809021294117, 0.051270537078380585, 0.10055365413427353, 0.048715926706790924, -0.0019675951916724443, 0.13302744925022125, -0.01611984148621559], [-0.12202681601047516, 0.0438125841319561, 0.008286571130156517, 0.24817782640457153, 0.12431038171052933, 0.04518188536167145, 0.1278558224439621, 0.09124119579792023, -0.039366353303194046, 0.016848094761371613, -0.10748928040266037, 0.16136930882930756, -0.2950945496559143, 0.3559360206127167, -0.026180094107985497, 0.07981937378644943, 0.18954616785049438, -0.011999326758086681, -0.0005583860329352319, 0.13880816102027893], [0.1384517252445221, 0.10344919562339783, 0.45776981115341187, 0.04277375340461731, -0.044045597314834595, 0.10616624355316162, 0.07845479995012283, -0.10739122331142426, 0.09657976031303406, -0.017893649637699127, 0.005770629271864891, -0.06715519726276398, -0.2790255546569824, 0.015790250152349472, -0.02263335883617401, -0.02086012065410614, 0.10200861096382141, 0.04685475677251816, -0.2224397510290146, -0.010815326124429703], [-0.10231788456439972, -0.05423799902200699, 0.15766744315624237, 0.1266361027956009, 0.020747538655996323, -0.039900120347738266, -0.28069740533828735, 0.41108354926109314, -0.17162694036960602, 0.14187763631343842, -0.12492061406373978, 0.5500894784927368, -0.1819787174463272, -0.08989793062210083, -0.0030313560273498297, 0.081048384308815, -0.09259692579507828, -0.0034392692614346743, 0.2317192405462265, -0.2286084145307541], [-0.05199632793664932, -0.0365917943418026, 0.07450582087039948, 0.004293710459023714, 0.011902542784810066, 0.10077673941850662, -0.04292016476392746, 0.09289524704217911, -0.05277084931731224, 0.03695221617817879, -0.0695250853896141, -0.05037098377943039, 0.010238977149128914, 0.11237147450447083, 0.05160451680421829, 0.08742738515138626, 0.06520389765501022, 0.010820096358656883, 0.07924644649028778, -0.010993240401148796], [-0.17403966188430786, -0.15025991201400757, 0.22835379838943481, 0.009128096513450146, -0.02697591856122017, 0.3597899079322815, 0.04938982054591179, 0.005323099438101053, -0.09922890365123749, 0.05242110788822174, -0.06817290186882019, -0.1812952607870102, 0.023670490831136703, 0.18549881875514984, 0.1265093833208084, 0.24906522035598755, -0.002057550009340048, 0.18634983897209167, 0.10696716606616974, -0.0001372655970044434], [0.13177722692489624, 0.09335854649543762, 0.1156400516629219, -0.15424129366874695, 0.1662382036447525, -0.17779693007469177, -0.13987354934215546, 0.17415033280849457, 0.013377410359680653, 0.2552065849304199, -0.08845321089029312, -0.1213122010231018, -0.09522143751382828, -0.014441448263823986, -0.03150377795100212, -0.07901574671268463, 0.02218615449965, -0.06748500466346741, 0.013332812115550041, -0.05363444238901138], [0.10670321434736252, 0.12102480977773666, 1.1221511363983154, -0.06909811496734619, -0.061784032732248306, 0.2269507646560669, -0.2689616084098816, -0.37516599893569946, -0.21689072251319885, 0.35973820090293884, -0.2197781503200531, -0.35886138677597046, -0.6871381998062134, 0.07951632887125015, 0.10048305988311768, 0.2078992873430252, -0.2248408943414688, -0.10484245419502258, -0.14044857025146484, -0.01367212738841772], [-0.25390541553497314, -0.002290905686095357, 0.2577784061431885, -0.09090561419725418, -0.00852720346301794, -0.023506546393036842, -0.08678334206342697, -0.005630631931126118, -0.15207472443580627, 0.2323296219110489, 0.10361076146364212, -0.0009224355453625321, -0.1390761435031891, -0.0005387726705521345, 0.059329431504011154, 0.021358581259846687, -0.010377388447523117, -0.05260475352406502, 0.17384496331214905, 0.015729885548353195], [-0.19963163137435913, -0.47920188307762146, -0.21158508956432343, -0.08867859840393066, 0.18773464858531952, -0.06719955801963806, 0.06860151141881943, -0.009101973846554756, -0.22939415276050568, 0.06634747982025146, 0.09163558483123779, -0.07068353146314621, 0.19374829530715942, -0.32028236985206604, 0.019370611757040024, 0.06817924231290817, -0.0837806686758995, 0.035456545650959015, 0.08487293869256973, -0.13947652280330658], [0.03999048098921776, 0.4346141219139099, -0.1369054615497589, 0.13334619998931885, 0.02394542284309864, 0.22440071403980255, 0.010457922704517841, 0.19322596490383148, 0.6204501986503601, 0.16032353043556213, -0.1861252784729004, -0.045784980058670044, 0.00428360840305686, -0.2041705995798111, -0.07341594249010086, 0.11554204672574997, 0.036100223660469055, 0.007857474498450756, -0.17828790843486786, -0.5647873282432556], [-0.4447746276855469, 0.8127460479736328, 0.27753376960754395, -0.6732667684555054, -2.579848527908325, 0.4516005218029022, -0.33290696144104004, 0.0868004709482193, 1.8231651782989502, 0.42007774114608765, -0.14264026284217834, -0.7614402770996094, 0.3732753396034241, 1.1247535943984985, 0.04855102673172951, 0.0553097277879715, -0.33090975880622864, 0.42221012711524963, 1.0434380769729614, -1.7779631614685059], [0.028841659426689148, 0.11943744868040085, 0.08178044110536575, 0.07005545496940613, 0.11876615136861801, 0.26794081926345825, -0.025167226791381836, 0.16607099771499634, 0.002909955568611622, 0.007596789393573999, -0.11902191489934921, -0.08788421005010605, -0.14074091613292694, 0.18408527970314026, 0.030736872926354408, 0.02619708701968193, 0.09269366413354874, 0.015240556560456753, 0.012912589125335217, 0.04642272740602493], [-0.021018043160438538, 0.10956066846847534, -0.0308873001486063, -0.13769641518592834, -0.5447757244110107, 0.03202221170067787, 0.22898632287979126, -0.3062328100204468, 0.5460060834884644, -0.3973008692264557, 0.06406113505363464, 0.3721752464771271, -0.04542600363492966, 0.06312049925327301, 0.04682738333940506, 0.03211919963359833, 0.09499555826187134, -0.08544214069843292, 0.01901061274111271, -0.07239606231451035], [0.527607262134552, 0.18642109632492065, -0.1796160638332367, 0.5541471242904663, -1.223861813545227, -0.6479164361953735, 0.20822909474372864, -0.09383126348257065, -1.3938347101211548, -0.28108730912208557, 0.3925778269767761, 0.5908179879188538, -0.5060245394706726, -0.5084136724472046, -0.12698940932750702, 0.01814919151365757, 0.24846011400222778, -0.17484310269355774, -0.9469819068908691, 0.23193193972110748], [-0.24532154202461243, -0.3614215552806854, 0.24850447475910187, 0.1529470980167389, 0.3454716205596924, 0.3313276469707489, 0.024755312129855156, -0.09494982659816742, -0.1853581666946411, -0.2464955896139145, 0.1763603240251541, 0.32302361726760864, 0.3185415267944336, 0.07449137419462204, 0.101934514939785, 0.06700579822063446, 0.15322618186473846, -0.29923176765441895, 0.006757093593478203, 0.5267248749732971], [0.10786446183919907, 0.1141471117734909, 0.23912610113620758, -0.06766332685947418, -0.4069780111312866, 0.14489828050136566, 0.38239529728889465, -0.04177383333444595, 0.12160547077655792, 0.1377127319574356, -0.04193778336048126, -0.07161162048578262, 0.12903763353824615, 0.1777358055114746, 0.024799183011054993, -0.08987052738666534, -0.13269151747226715, -0.43792834877967834, 0.0106156375259161, -0.34415632486343384], [-0.21938133239746094, -0.491947740316391, -0.2119988352060318, 0.22764895856380463, 0.778296709060669, -0.07724468410015106, 0.07250578701496124, 0.34464722871780396, -0.5605969429016113, -0.091643787920475, -0.15598954260349274, 0.3026933968067169, 0.06334555894136429, -0.2790074050426483, 0.06809016317129135, 0.08748402446508408, 0.007669111713767052, -0.08042184263467789, 0.461260586977005, 0.03207089751958847], [-0.541447639465332, 0.069029800593853, 0.2007354199886322, 0.128011554479599, -0.288936048746109, 0.6528326869010925, -0.6340238451957703, -0.28614872694015503, -0.8095105886459351, 0.29474762082099915, 0.022274719551205635, -0.025611240416765213, 0.2810365855693817, 0.3850918412208557, 0.2503598928451538, 0.20906205475330353, 0.161161407828331, 0.34698396921157837, 0.28210288286209106, 0.022892827168107033], [-0.007251597475260496, -0.3089538514614105, -0.023642638698220253, 0.2065812200307846, 0.7017375230789185, -0.05252653360366821, -0.2800159752368927, -0.1776161789894104, -0.6740673780441284, 0.18463654816150665, 0.28270605206489563, 0.17974993586540222, -0.22944428026676178, -0.3097178041934967, 0.20954711735248566, 0.024742625653743744, -0.08841303735971451, 0.006196644622832537, 0.01863362453877926, 0.6487108469009399], [0.29404202103614807, 0.029502462595701218, -0.08157824724912643, -0.19083403050899506, -0.8035756945610046, 0.12894313037395477, 0.016640203073620796, -0.3093167841434479, 0.38693034648895264, 0.235429048538208, -0.00393345532938838, -0.032373346388339996, -0.25647372007369995, 0.10156344622373581, -0.0059505547396838665, -0.11736512929201126, -0.24872562289237976, 0.043502405285835266, 0.07849960774183273, -0.142130509018898], [0.16560280323028564, 0.4616489112377167, -0.5089251399040222, -0.2381976842880249, -1.0658700466156006, 0.03627094626426697, 0.21955449879169464, 0.08233395218849182, 0.8252824544906616, -0.18166197836399078, 0.024656472727656364, -0.03165854886174202, -0.35152316093444824, 0.2481626272201538, 0.1965050995349884, 0.033802580088377, 0.026763075962662697, -0.11375356465578079, 0.0477510541677475, -0.5668647289276123], [-0.2782544195652008, -0.2847900390625, -0.06446754932403564, 0.07443919777870178, 0.11766525357961655, -0.20463241636753082, 0.13866442441940308, -0.08451393991708755, -0.23985746502876282, -0.03655766323208809, -0.0037892614491283894, -0.010395507328212261, 0.22058719396591187, 0.030986523255705833, 0.022378508001565933, 0.018965531140565872, 0.04088437184691429, 0.2179698497056961, 0.022757351398468018, 0.0907929316163063], [-0.14230100810527802, 0.6749207973480225, 0.06499708443880081, -0.10540695488452911, -0.09528781473636627, 0.38640329241752625, 0.3063587546348572, 0.1152678057551384, 1.002071738243103, 0.44106820225715637, -0.6345523595809937, -0.5037927031517029, 0.47985756397247314, 0.1069774180650711, -0.13841237127780914, 0.18229979276657104, -0.16441594064235687, -0.1378416270017624, 0.46290841698646545, -0.9477726817131042], [0.17926454544067383, -0.23052604496479034, -0.11848815530538559, -0.1328120231628418, -0.13121512532234192, 0.20915067195892334, -0.16450437903404236, -0.17422738671302795, -0.1719704419374466, -0.1612410992383957, -0.007897915318608284, 0.1550106555223465, -0.31707763671875, 0.30804890394210815, 0.08985142409801483, 0.21615374088287354, -0.004346783272922039, -0.03325823321938515, -0.06180601194500923, 0.16076497733592987], [-0.11171472817659378, -0.08512882888317108, 0.07665016502141953, 0.05466768145561218, 0.1572611927986145, 0.18777623772621155, 0.05233185738325119, -0.09600409120321274, -0.07477068901062012, -0.16418690979480743, -0.07161524891853333, 0.20316074788570404, -0.06222010403871536, 0.16899175941944122, 0.22992604970932007, 0.31116345524787903, 0.11724282801151276, 0.24062493443489075, -0.10634057223796844, 0.008268658071756363], [0.022703828290104866, 0.31244227290153503, -0.03936288505792618, -0.11129291355609894, -0.14642131328582764, 0.029909102246165276, -0.2532678544521332, -0.22687508165836334, -0.19089195132255554, -0.10516470670700073, 0.10408566892147064, -0.33421269059181213, 0.14512673020362854, 0.3918003439903259, 0.033067166805267334, -0.20518648624420166, 0.1701459139585495, -0.004951819311827421, 0.014154596254229546, 0.42743009328842163], [-0.312915176153183, -0.45882755517959595, 0.36845070123672485, 0.2574378550052643, -0.2095162272453308, 0.3412643074989319, 0.2630058825016022, -0.2134254276752472, -0.16419266164302826, 0.08327903598546982, 0.015694841742515564, -0.12910661101341248, -0.004058438818901777, -0.13483494520187378, -0.023384559899568558, 0.07569971680641174, -0.31251060962677, 0.333783894777298, 0.10007213801145554, 0.01645762473344803], [0.059707820415496826, -0.19424962997436523, -0.060033176094293594, -0.023786958307027817, 0.6127804517745972, 0.09888973087072372, -0.37610679864883423, 0.23729611933231354, -0.5209341645240784, 0.34716394543647766, -0.02421848103404045, -0.1775362640619278, -0.013872591778635979, -0.1798962503671646, -0.19064374268054962, -0.21836154162883759, -0.1449546217918396, 0.022021107375621796, 0.14221058785915375, 0.10674755275249481], [0.5881435871124268, 0.7076294422149658, -0.1709786206483841, -0.2810872197151184, -2.2961602210998535, -0.45711690187454224, 0.17329192161560059, -0.29781949520111084, 0.5082993507385254, -0.3343004584312439, 0.3176020085811615, 0.2124965637922287, -0.5875188708305359, 0.5279390811920166, -0.19979698956012726, -0.11915764212608337, -0.4736948609352112, -0.30044499039649963, -0.5937017202377319, -1.4445116519927979], [-0.08074550330638885, -0.025684339925646782, 0.20784622430801392, 0.03391142562031746, 0.09326311945915222, 0.06522975116968155, -0.07478073984384537, -0.33305907249450684, -0.07214240729808807, 0.22489848732948303, 0.14337019622325897, -0.008924666792154312, -0.21866804361343384, -0.128251314163208, 0.026904379948973656, 0.0629945695400238, -0.16159650683403015, 0.09414460510015488, -0.06908392906188965, 0.2122984677553177], [-0.3902731239795685, 0.006278156768530607, 0.4867541790008545, -0.23244492709636688, -0.05534355342388153, -0.1284683793783188, -0.07778003811836243, -0.7239809036254883, -0.14931470155715942, 0.447130024433136, 0.1585916429758072, -0.8331109285354614, -0.10243132710456848, 0.004420304670929909, -0.028002437204122543, -0.08166270703077316, 0.2144564986228943, -0.04171447083353996, -0.07256441563367844, 0.2061154693365097], [-0.13417907059192657, -0.1829766035079956, 0.5796316862106323, -0.01139269769191742, -0.064585380256176, 0.2340894639492035, 0.0024972667451947927, -0.21300044655799866, -0.11694183200597763, 0.04378867521882057, -0.0388166643679142, -0.04983856528997421, -0.47940877079963684, 0.09097892045974731, 0.005784057546406984, 0.0377473458647728, -0.12032506614923477, 0.0075797997415065765, 0.001723965280689299, -0.05345594510436058], [0.024565069004893303, 0.020517569035291672, 0.32300353050231934, 0.013932030647993088, 0.08435153216123581, 0.10231693089008331, 0.029566852375864983, -0.04286811128258705, -0.06055472046136856, 0.07213301211595535, 0.009957258589565754, -0.08820952475070953, -0.1846555918455124, -0.039664193987846375, 0.009701233357191086, 0.018177984282374382, -0.06088772043585777, 0.013935023918747902, 0.037051714956760406, -0.017932122573256493], [0.03155830502510071, -0.03766356781125069, 0.7786334753036499, -0.041407328099012375, 0.049506526440382004, 0.06453770399093628, -0.04278045520186424, -0.24138151109218597, -0.08565977215766907, 0.3343983292579651, 0.049669548869132996, -0.36283475160598755, -0.4593706727027893, -0.06857435405254364, 0.01262580044567585, 0.007411111146211624, -0.1204739362001419, -0.006138764321804047, 0.007755274884402752, 0.017810804769396782], [-0.14187267422676086, -0.0541619211435318, 0.16428492963314056, -0.013013150542974472, 0.021106403321027756, 0.11455253511667252, -0.06131220981478691, 0.0025641084648668766, -0.20111435651779175, -0.0050630415789783, -0.09125760942697525, 0.16582167148590088, -0.014733565039932728, 0.02192566730082035, 0.08621235936880112, 0.18141913414001465, 0.021091828122735023, -0.03739592060446739, 0.08478554338216782, 0.03052552416920662], [0.12805552780628204, 0.10144323855638504, 0.25916415452957153, 0.05869108438491821, 0.019404258579015732, 0.10827882587909698, -0.05305153876543045, 0.015130317769944668, -0.010171136818826199, 0.17083905637264252, 0.07231119275093079, 0.030624886974692345, -0.16355830430984497, -0.027752932161092758, 0.029956551268696785, -0.010192166082561016, 0.03408140316605568, 0.10015341639518738, 0.03488040715456009, -0.005420508794486523], [-0.13567231595516205, -0.5399180054664612, 0.06333346664905548, -0.2178250402212143, -0.023626428097486496, 0.002505525015294552, 0.07220519334077835, -0.06645997613668442, -0.1479547768831253, 0.16264542937278748, -0.027503471821546555, -0.1257437765598297, 0.06139509379863739, -0.22119508683681488, 0.0263216570019722, 0.01783778704702854, -0.23301173746585846, -0.059572476893663406, 0.22874289751052856, -0.23849281668663025], [-0.6115298867225647, -0.2809411883354187, 0.5316663384437561, -0.31803736090660095, 0.05912657082080841, -0.01286077219992876, -0.03874388337135315, -0.4286758303642273, -0.2883986234664917, 0.35563960671424866, -0.11059673130512238, -1.3332315683364868, 0.029352523386478424, 0.3066420257091522, -0.04567693918943405, -0.01486970204859972, 0.3650355339050293, 0.0002123666781699285, 0.238752081990242, 0.10872336477041245], [-0.09098461270332336, -0.15162988007068634, 0.21643519401550293, -0.0826028436422348, 0.23838356137275696, 0.06890702247619629, -0.168929323554039, 0.07273747771978378, -0.33057406544685364, 0.27969303727149963, -0.034350957721471786, -0.045820143073797226, -0.15663163363933563, -0.04550259932875633, -0.0823575034737587, -0.05818464979529381, -0.31364020705223083, 0.017648285254836082, 0.19134387373924255, 0.08217328041791916], [-0.007890501990914345, -0.2140960544347763, 0.1985182762145996, 0.014102989807724953, 0.003357286099344492, 0.05687343329191208, -0.044813983142375946, 0.08233696967363358, -0.06137159839272499, 0.10070127248764038, 0.0452362596988678, 0.0788666307926178, -0.08377061039209366, -0.1117820292711258, 0.012915100902318954, 0.03509991988539696, -0.17955371737480164, -0.00040870002703741193, 0.1478138417005539, -0.09810604900121689], [-0.0120499636977911, 0.008967428468167782, 0.4731888175010681, 0.0519411563873291, 0.046310681849718094, 0.06637869030237198, -0.0033133153337985277, -0.03155921399593353, -0.14421245455741882, 0.1216987892985344, -0.006373477168381214, -0.03364467993378639, -0.32511916756629944, 0.011046113446354866, -0.021175237372517586, -0.004667145665735006, -0.10166562348604202, -0.00806352123618126, 0.01341014914214611, 0.04895684868097305], [0.20281776785850525, 0.2434515804052353, 0.04961201921105385, 0.06327109038829803, -0.13019205629825592, -0.018081899732351303, 0.1464890092611313, -0.037846215069293976, 0.2608221173286438, -0.007163727656006813, 0.02837706357240677, 0.41022223234176636, -0.4443928599357605, -0.1637696474790573, 0.0332643948495388, 0.025561731308698654, -0.10162989050149918, 0.27102136611938477, -0.049390386790037155, -0.2278377115726471], [0.0743267610669136, -0.08830229938030243, 0.3680232763290405, 0.016717582941055298, 0.06578759104013443, -0.11283741146326065, 0.004554146900773048, 0.14321312308311462, -0.13810886442661285, 0.17478451132774353, -0.05347965285181999, 0.19762228429317474, -0.210534930229187, -0.09815845638513565, -0.014484899118542671, 0.014818616211414337, -0.27048879861831665, -0.03464940935373306, -0.02983633428812027, -0.06811435520648956], [-0.008499962277710438, -0.041862815618515015, 0.009541470557451248, 0.02127247303724289, 0.006602390203624964, 0.08396613597869873, -0.03446014225482941, 0.07203397899866104, -0.023541320115327835, -0.00591006176546216, -0.05221235007047653, 0.0018374929204583168, 0.01588972471654415, 0.05932620167732239, 0.045288607478141785, 0.07300344109535217, 0.047332968562841415, 0.011258618906140327, 0.028604498133063316, -0.03245896100997925], [-0.10961063206195831, -0.05962137132883072, 0.030904719606041908, 0.06919923424720764, -0.02242721989750862, 0.26011329889297485, 0.016445942223072052, -0.04918462783098221, 0.0001350674865534529, -0.006842258386313915, -0.02131737768650055, -0.027233708649873734, 0.04424506053328514, 0.10504268854856491, 0.11402398347854614, 0.20916049182415009, 0.05809769406914711, 0.1491539180278778, 0.0022656049113720655, -0.006981289014220238], [0.06765024363994598, 0.18550337851047516, 0.08597313612699509, -0.055113498121500015, 0.0285333264619112, 0.06363195180892944, -0.09826253354549408, 0.10140736401081085, 0.0927521288394928, 0.06627269089221954, -0.049548693001270294, -0.05211072042584419, -0.01970335654914379, 0.1318741738796234, 0.028907595202326775, -0.006245987024158239, 0.014602294191718102, 0.011814267374575138, 0.1189890205860138, 0.04798480495810509], [-0.0733117014169693, 0.002555103274062276, -0.015943404287099838, -0.06948885321617126, -0.003914874047040939, -0.08010882884263992, -0.23467163741588593, -0.05650263652205467, -0.07377664744853973, 0.2191874235868454, -0.04040702059864998, 0.0954623743891716, -0.03414050117135048, -0.0018377339001744986, 0.018604326993227005, 0.07709350436925888, 0.000729740655515343, -0.010823186486959457, 0.07622798532247543, 0.033659350126981735], [-0.046286601573228836, -0.32050105929374695, 0.24052758514881134, -0.08291133493185043, 0.1768305003643036, -0.05310214310884476, -0.0753491222858429, 0.05615108460187912, -0.2526493966579437, 0.2794216275215149, 0.10901828110218048, 0.008780451491475105, -0.18636281788349152, -0.20203107595443726, -0.0021251854486763477, 0.013139561749994755, -0.2605823576450348, 0.03151693195104599, 0.1209397092461586, 0.058138590306043625], [0.05953994393348694, -0.060427360236644745, 0.8350152969360352, -0.03608955070376396, 0.08654237538576126, 0.08418115973472595, -0.03418497368693352, -0.18355625867843628, -0.08166872709989548, 0.3559004068374634, 0.057531554251909256, -0.3970505893230438, -0.4813263714313507, -0.09924294054508209, 0.012324824929237366, 0.002686457009986043, -0.12603339552879333, -0.008031037636101246, 0.04790881276130676, -0.02748052030801773]], "rec.bias_ih_l0": [-0.05815473571419716, 0.9309095740318298, 0.1250695139169693, 0.33392953872680664, 0.8673969507217407, -0.4471716284751892, -0.6448164582252502, 0.06661692261695862, 0.8443434238433838, -0.10392045229673386, 0.19862216711044312, 0.4628460109233856, -0.1347844898700714, 0.35077691078186035, -0.030551820993423462, -0.1862156093120575, 0.11867870390415192, -0.8277486562728882, -0.11118528991937637, 0.9242892861366272, 0.3248366117477417, -0.2933495342731476, 0.5207487344741821, -0.0025294332299381495, -0.29364871978759766, 0.8897802829742432, 1.18317449092865, -0.08699896931648254, -0.544822633266449, 0.49618300795555115, 0.026919493451714516, 0.14471843838691711, 0.4684416651725769, 0.19135715067386627, 0.0825151652097702, 0.22544023394584656, 0.127827450633049, 1.455720067024231, 0.38034990429878235, -0.3660050928592682, 0.06368599086999893, -0.08967835456132889, 0.29834479093551636, 0.133426696062088, -0.07332127541303635, 0.019296793267130852, -0.1265777051448822, -0.29686298966407776, -0.20763640105724335, 0.014965920709073544, -0.1429484784603119, 0.05862394720315933, -0.19475454092025757, -0.03204215317964554, 0.1367175579071045, 0.014941549859941006, -0.17672228813171387, -0.14747218787670135, -0.07543577253818512, 0.09839373081922531, 0.21959975361824036, 0.6291540265083313, 0.6626660227775574, 0.3598769009113312, 0.8707009553909302, 0.17315712571144104, 0.31628724932670593, 0.08587723970413208, 0.5718942880630493, 0.1371992826461792, 0.22725559771060944, 0.6771664023399353, 0.17392094433307648, 0.4841066002845764, 0.009205883368849754, 0.009805833920836449, 0.0785396546125412, 0.14603380858898163, 0.30932721495628357, 0.9502255320549011], "rec.bias_hh_l0": [-0.055151741951704025, 0.9309101700782776, 0.12327037006616592, 0.3339387774467468, 0.8673969507217407, -0.5367010235786438, -0.778972327709198, 0.07905062288045883, 0.8443434238433838, -0.08942186087369919, 0.19463597238063812, 0.4018401801586151, -0.0685100182890892, 0.37494343519210815, -0.031125830486416817, -0.17916133999824524, 0.11479751765727997, -0.8442211747169495, -0.19651362299919128, 0.9242631196975708, 0.203027606010437, -0.3335893750190735, 0.564534068107605, -0.003145338734611869, -0.29364874958992004, 0.8624542951583862, 1.1028934717178345, -0.0649973675608635, -0.5446871519088745, 0.3138398230075836, 0.0201873816549778, 0.27274462580680847, 0.42341479659080505, 0.13090640306472778, 0.08272197097539902, 0.21897755563259125, 0.12738679349422455, 1.2444006204605103, 0.3107142746448517, -0.3246399164199829, 0.04126093164086342, -0.11203369498252869, 0.3427947163581848, 0.04819023609161377, 0.1547311395406723, 0.17200161516666412, -0.11855146288871765, -0.1913621723651886, 0.02260046824812889, -0.0310932919383049, -0.029237382113933563, -0.06129399314522743, -0.3073646128177643, -0.04441794753074646, -0.14157257974147797, -0.017891695722937584, -0.02309940755367279, -0.2294502556324005, -0.07306278496980667, -0.12126517295837402, 0.19381526112556458, 0.6297222971916199, 0.6504173874855042, 0.35987618565559387, 0.8707009553909302, 0.18814235925674438, 0.36701852083206177, 0.07119433581829071, 0.5719123482704163, 0.13080108165740967, 0.22902320325374603, 0.6348314881324768, 0.12201632559299469, 0.4827418625354767, 0.008713997900485992, 0.007040906231850386, 0.08150121569633484, 0.29207438230514526, 0.3001864552497864, 0.9501461386680603], "lin.weight": [[0.34938329458236694, 1.897311806678772, -0.3317743241786957, -0.6433548927307129, -1.334720253944397, 0.12130985409021378, 0.23619145154953003, 0.3559126555919647, 2.097583293914795, 0.439781129360199, -0.6854264140129089, -0.6435064673423767, 0.27606111764907837, -0.49401381611824036, -0.2348136305809021, 0.08855897188186646, -0.07340412586927414, 0.43191269040107727, 0.20469874143600464, -2.7901816368103027]], "lin.bias": [0.09549009799957275]}} \ No newline at end of file +{"model_data": {"model": "SimpleRNN", "input_size": 1, "skip": 1, "output_size": 1, "unit_type": "LSTM", "num_layers": 1, "hidden_size": 32, "bias_fl": true}, "state_dict": {"rec.weight_ih_l0": [[0.02280654013156891], [-0.18592184782028198], [0.09484853595495224], [-0.10429269075393677], [0.023848051205277443], [0.009946993552148342], [-0.019365031272172928], [0.001675815205089748], [-0.1454068124294281], [0.0027651884593069553], [-0.02486431412398815], [-0.0001572431792737916], [-0.1922788918018341], [-0.012238224036991596], [0.026079585775732994], [-0.003336245659738779], [0.0007218122482299805], [0.007629978936165571], [0.21040800213813782], [0.002396310679614544], [-0.0735320970416069], [-0.0037246569991111755], [0.002095287200063467], [-0.09978342056274414], [0.0019979611970484257], [-0.25578317046165466], [-0.08153442293405533], [-0.2699919641017914], [-0.027911460027098656], [0.09249579906463623], [0.0278171356767416], [0.005234595853835344], [-0.016576046124100685], [0.014341870322823524], [0.10205284506082535], [-0.05196921154856682], [0.05597695708274841], [0.027794843539595604], [0.0007386708166450262], [0.0016613065963611007], [-0.17322909832000732], [0.0015739526133984327], [0.11405310034751892], [0.01923185959458351], [-0.07445067167282104], [-0.09036241471767426], [0.027043042704463005], [-0.007410585414618254], [0.009238104335963726], [0.006668070796877146], [0.16727039217948914], [0.014069899916648865], [0.0860883817076683], [-0.004894251469522715], [0.003723002737388015], [-0.018660258501768112], [0.0030780048109591007], [-0.2694023549556732], [0.21331371366977692], [-0.3238396942615509], [-0.1956062912940979], [0.4337223768234253], [0.03445378318428993], [0.021450651809573174], [0.18564367294311523], [-0.45003241300582886], [0.12854436039924622], [0.33759862184524536], [0.08545250445604324], [0.03548695892095566], [0.1984810084104538], [-0.026421120390295982], [-0.07825791090726852], [0.035949185490608215], [0.818510115146637], [0.02001628279685974], [0.30003082752227783], [0.2946728765964508], [0.009301416575908661], [-0.041412677615880966], [-0.00856445636600256], [0.09446970373392105], [-0.23511774837970734], [0.06511206924915314], [-0.7868626117706299], [-0.03553198650479317], [-0.09543795883655548], [-1.4860351085662842], [0.0673024132847786], [0.5077850222587585], [1.1297352313995361], [-0.32986193895339966], [-0.7442583441734314], [-0.7603431344032288], [-0.16468948125839233], [-0.43522632122039795], [0.008710214868187904], [-0.11790411919355392], [0.07817061990499496], [-0.09489000588655472], [-0.06553508341312408], [-0.10749313235282898], [0.008997784927487373], [0.0019738187547773123], [-0.10985279083251953], [-0.0345163568854332], [0.11637501418590546], [0.036587752401828766], [0.06453604251146317], [0.0025269933976233006], [0.04028598964214325], [-0.002900088205933571], [0.0024498533457517624], [0.010270564816892147], [0.18371739983558655], [0.11470487713813782], [0.07805400341749191], [-0.0036276739556342363], [0.0003709077718667686], [0.10596030950546265], [0.002404231345281005], [-0.2851586639881134], [0.02833326905965805], [0.20422188937664032], [0.01808224245905876], [0.21314698457717896], [0.02577865868806839], [0.009967837482690811]], "rec.weight_hh_l0": [[0.04596409946680069, 0.02770962007343769, 0.01054596621543169, 0.04794389754533768, -0.02961607463657856, 0.07076787948608398, 0.10430427640676498, -0.0055685886181890965, -0.027607837691903114, 0.1059766486287117, -0.025677721947431564, -0.07119207084178925, 0.02442672848701477, 0.04914925619959831, 0.05312664434313774, -0.011172535829246044, -0.029313620179891586, 0.024984287098050117, 0.0053930822759866714, -0.07929320633411407, -0.03563149645924568, 0.018367135897278786, 0.017328063026070595, -0.16186611354351044, 0.010329690761864185, -0.016757432371377945, 0.05327264592051506, -0.12733891606330872, -0.04004630446434021, -0.06388458609580994, 0.00561303598806262, 0.008797950111329556], [-0.09810514748096466, 0.020053500309586525, -0.34200519323349, 0.06475744396448135, 0.3490789234638214, -0.5249095559120178, -0.4671095013618469, -0.03375312313437462, -0.07664548605680466, -0.5476850271224976, -0.05571240559220314, 0.3815060257911682, 0.34228596091270447, -0.13033750653266907, -0.33721309900283813, 0.12317308038473129, 0.08347126841545105, 0.04380558058619499, 0.2710912227630615, 0.3849423825740814, 0.25368374586105347, -0.15119491517543793, -0.3164951205253601, 0.5919474959373474, 0.008190515451133251, 0.14993730187416077, 0.0585491918027401, 0.12592102587223053, -0.3633846044540405, 0.09653038531541824, 0.02329314686357975, -0.09975658357143402], [0.008446647785604, -0.06068012863397598, -0.05083658546209335, 0.0539456307888031, -0.026721308007836342, -0.06650633364915848, -0.05449780449271202, -0.004677420482039452, 0.028534863144159317, 0.016287999227643013, 0.10048327594995499, 0.04327455535531044, -0.38168761134147644, -0.0824735090136528, 0.09479983150959015, 0.022017812356352806, -0.044622886925935745, 0.016782497987151146, -0.09829971939325333, -0.06011858582496643, -0.10941588133573532, 0.001058630645275116, 0.02074352651834488, 0.06228569895029068, 0.011645016260445118, 0.07607503980398178, 0.11714252084493637, 0.3343842923641205, -0.127481609582901, 0.04103098437190056, -0.029541241005063057, -0.009516078978776932], [-0.004455463495105505, -0.017756950110197067, 0.0017823971575126052, -0.06495119631290436, -0.10952866822481155, 0.10703323781490326, 0.048843514174222946, 0.0024844366125762463, 0.0404270738363266, 0.08237696439027786, -0.048390597105026245, -0.12719857692718506, 0.010022279806435108, 0.08208980411291122, 0.05914320424199104, 0.0030536127742379904, 9.724985284265131e-05, -0.019331615418195724, 0.013450168073177338, -0.11433865875005722, 0.03502169996500015, 0.0011161784641444683, 0.003670850768685341, -0.04616671800613403, 0.009221941232681274, -0.060434721410274506, -0.006695152260363102, -0.07910898327827454, 0.20080888271331787, 0.023835834115743637, -0.015060069039463997, 0.025599641725420952], [-0.033276721835136414, -0.049821168184280396, 0.004942542873322964, 0.009245033375918865, -0.11298630386590958, 0.022953424602746964, -0.001603302313014865, -0.0004015240992885083, -0.005050663836300373, 0.01502679567784071, 0.024092523381114006, -0.006745409220457077, -0.10127820819616318, -0.012513750232756138, 0.029643725603818893, 0.011206245049834251, -0.010422952473163605, -0.0028182314708828926, -0.019498882815241814, -0.09537716209888458, -0.04784221947193146, 0.001340215210802853, 0.0013582826359197497, 0.001002793898805976, 0.002089408691972494, 0.07021085917949677, 0.015544665977358818, 0.03268541768193245, 0.021155105903744698, -0.0002109277993440628, 0.009124858304858208, -0.007028282154351473], [-0.04145561158657074, -0.10395035147666931, 0.00469193933531642, 0.03089153952896595, -0.1798720806837082, 0.13828247785568237, 0.07454987615346909, -0.00112500402610749, -0.01761760748922825, 0.09598634392023087, 0.030764812603592873, -0.21766117215156555, 0.054841361939907074, 0.052103687077760696, 0.03552297502756119, -0.002841814886778593, -0.01864386908710003, -0.00405660318210721, -0.006873519159853458, -0.09748617559671402, -0.07533338665962219, 0.0051079378463327885, 0.0016206701984629035, -0.09930102527141571, 0.0017312675481662154, 0.021151641383767128, 0.022307712584733963, -0.09721920639276505, 0.1328517645597458, -0.028770560398697853, 0.003262836253270507, -0.020985931158065796], [-0.0018442259170114994, 0.026292243972420692, -0.00181799556594342, 0.042281556874513626, -0.07550444453954697, 0.14589452743530273, 0.08019665628671646, -0.0015626613749191165, 0.010445472784340382, 0.045858465135097504, -0.0036986940540373325, -0.2144947350025177, 0.08141030371189117, 0.003856543218716979, 0.028010642156004906, -0.00041621652781032026, -0.008261006325483322, 0.004375230520963669, 0.019844871014356613, -0.10120083391666412, -0.041981540620326996, 0.01329171285033226, 0.004724164493381977, -0.09388362616300583, 0.005557393655180931, -0.05494443699717522, -0.10177414119243622, -0.08715546131134033, -0.026271425187587738, -0.06037174537777901, 0.01775876060128212, 0.006161815952509642], [-0.0013383629266172647, 0.0022162289824336767, 0.000924300285987556, 0.0009769171010702848, -0.003805475076660514, 0.0043038069270551205, 0.004629337228834629, -0.00016399601008743048, -0.0015041722217574716, 0.00380509695969522, -0.0006579746841453016, -0.005056347232311964, 0.003808049950748682, 0.0015083493199199438, 0.0019654599018394947, -0.00023861261433921754, -0.0007765911868773401, 0.00044526447891257703, 0.0016056867316365242, -0.003953713458031416, -0.0008966191671788692, 0.0004080947255715728, 0.000554807425942272, -0.006313876248896122, 0.00026599495322443545, -0.00010864022624446079, 0.0012038376880809665, -0.003933629486709833, 0.0022699947003275156, -0.0014526366721838713, -0.0002516817767173052, -0.00022225391876418144], [0.017882471904158592, -0.24757128953933716, -0.08222921192646027, -0.00360494339838624, -0.015326200053095818, 0.034767065197229385, -0.09358362853527069, -0.00451292097568512, 0.22014102339744568, 0.01141637284308672, -0.11403275281190872, 0.09249716252088547, -0.23456278443336487, 0.022375404834747314, 0.05784847214818001, 0.015227735973894596, -0.020309187471866608, 0.0017728660022839904, 0.010570492595434189, 0.006456071510910988, 0.02938253805041313, 0.01965782605111599, 0.01133418083190918, -0.09480747580528259, 0.02165854349732399, 0.17231126129627228, 0.09709710627794266, 0.17453522980213165, 0.02915104292333126, 0.07518427819013596, -0.0007168184965848923, 0.029603809118270874], [0.019864413887262344, -0.03244751691818237, 0.04483409598469734, 0.021164976060390472, -0.020269760861992836, 0.07831078767776489, 0.07827621698379517, 0.00100796390324831, -0.027075326070189476, 0.020534131675958633, -0.03625169023871422, -0.05569157376885414, -0.051789816468954086, 0.01590420864522457, 0.030821271240711212, -0.008177613839507103, -0.010065085254609585, -0.0026227219495922327, 0.02407931163907051, 0.0076828994788229465, -0.011223786510527134, 0.011449534446001053, -0.0003889273793902248, -0.10742813348770142, 0.007342285942286253, 0.03693399205803871, 0.04808592051267624, -0.08547727018594742, -0.08611954748630524, -0.015814298763871193, 0.014029689133167267, 0.00022710023040417582], [-0.20301185548305511, 0.06105177477002144, -0.06314803659915924, -0.03222648426890373, -0.00989910215139389, 0.04374556988477707, -0.09792852401733398, 0.014197379350662231, 0.12018561363220215, -0.07386381179094315, 0.07122734934091568, -0.12082663923501968, 0.16848012804985046, 0.09958525747060776, -0.06812727451324463, 0.043923504650592804, 0.007254424039274454, -0.04712028056383133, -0.01594993844628334, -0.02403813786804676, -0.09036163240671158, -0.04271905869245529, -0.01024901494383812, 0.07060172408819199, -0.012730109505355358, -0.024513840675354004, -0.07131071388721466, 0.00199373671784997, 0.22363585233688354, 0.0470728874206543, 0.011279125697910786, -0.03009287267923355], [0.011803186498582363, -0.06416057795286179, 0.03452003002166748, 0.003856738330796361, -0.07623644918203354, 0.08220992982387543, 0.052388180047273636, 0.0003001948643941432, -0.011554112657904625, 0.04859405755996704, 0.0021361163817346096, -0.10865261405706406, 0.05748264119029045, 0.03000909648835659, 0.016803013160824776, -0.009441508911550045, -0.011310376226902008, -0.0020983798895031214, -0.002834692830219865, -0.07450176775455475, -0.02127653732895851, 0.01124392170459032, 0.005301805213093758, -0.04781710356473923, 0.007161158602684736, 0.0070656039752066135, 0.029353512451052666, -0.09916974604129791, 0.0295912753790617, -0.04173441231250763, 0.013475975953042507, 0.0030538393184542656], [-0.06678469479084015, 0.3697057068347931, -0.22434113919734955, -0.24462495744228363, 0.2811364531517029, -0.17827026546001434, -0.020686959847807884, 0.015841053798794746, 0.04192935675382614, -0.10609697550535202, 0.15414810180664062, 0.31122010946273804, 0.13162966072559357, 0.15244968235492706, -0.1800549477338791, -0.057838622480630875, 0.11075052618980408, -0.08712391555309296, 0.06199526786804199, 0.3150098919868469, 0.06104614958167076, -0.13129019737243652, -0.18134193122386932, 0.048661861568689346, 0.016079291701316833, -0.09560689330101013, 0.073185995221138, 0.22541803121566772, -0.21096599102020264, 0.09572131186723709, -0.04996340349316597, -0.09319205582141876], [0.07562216371297836, 0.039587538689374924, -0.006810725200921297, -0.01721666194498539, 0.07071319967508316, -0.022765707224607468, 0.007240666076540947, 0.00674924161285162, 0.0465247668325901, 0.01351769920438528, -0.129678413271904, -0.020187033340334892, 0.10801496356725693, 0.10581569373607635, -0.060365330427885056, -0.05311470478773117, -0.003320935182273388, -5.7870958698913455e-05, -0.03448539227247238, 0.04803648591041565, 0.04254182055592537, 0.0015735154738649726, 0.0013043810613453388, 0.06506754457950592, -0.017931461334228516, -0.09507295489311218, -0.050582826137542725, -0.2780090570449829, -0.007155799772590399, 0.0012371427146717906, -0.0038032671436667442, -0.007517220452427864], [0.03493458777666092, 0.01121400948613882, 0.02145525999367237, 0.02299235388636589, -0.08138401806354523, 0.062046464532613754, 0.028323527425527573, -0.0013319876743480563, 0.006042416673153639, 0.056067295372486115, 0.03314444050192833, -0.038662414997816086, -0.08301064372062683, 0.016762249171733856, 0.04277931898832321, -0.01769068092107773, -0.02397305704653263, 0.009662152267992496, -0.03187146782875061, -0.09334740787744522, -0.028398817405104637, 0.01661350019276142, 0.020926330238580704, 0.021217040717601776, -0.0005711067351512611, -0.005942571442574263, -0.018772827461361885, 0.04196306690573692, -0.03418181464076042, -0.04754553362727165, -0.0065467264503240585, 0.0018673683516681194], [0.005693657323718071, 0.01926422491669655, 0.0020668392535299063, 0.0048718927428126335, -0.016485614702105522, 0.015310774557292461, 0.020266590639948845, -0.00043358257971704006, -0.0022587901912629604, 0.01842575892806053, -0.009765242226421833, -0.019782869145274162, 0.008661692962050438, 0.011013437993824482, 0.011343855410814285, -0.003625241108238697, -0.00307691702619195, 0.0028264105785638094, 0.004679991398006678, -0.018577227368950844, 0.007096785120666027, 0.0017238394357264042, 0.002405863953754306, -0.02760385535657406, 0.0007781177409924567, -0.0021209088154137135, 0.006714125629514456, -0.022571522742509842, 0.009006330743432045, -0.002752849133685231, -0.0018615865847095847, 0.001374002080410719], [-0.003968632314354181, 0.013485388830304146, -0.002112968359142542, -0.015420997515320778, 0.005055679474025965, -0.009152477607131004, -0.03547798469662666, -6.496226706076413e-05, 0.04109922796487808, -0.002301321132108569, -0.012867148965597153, -0.012327594682574272, 0.0005147369229234755, 0.011612915433943272, 0.005817540921270847, -0.0018596991430968046, 0.00010967745038215071, -0.00016124040121212602, 0.012954707257449627, -0.008365776389837265, -0.01076601818203926, 0.0033848690800368786, 0.0009366762824356556, -0.02180076576769352, 0.0016843202756717801, -0.008856033906340599, 0.007734040264040232, 0.04117966070771217, 0.0009557396988384426, 0.011394749395549297, -0.0013685942394658923, 0.0026713984552770853], [-0.007772128563374281, 0.0028171020094305277, 0.0033868083264678717, 0.004424480255693197, -0.01255103386938572, 0.017420200631022453, 0.01912573166191578, -0.0005798343336209655, -0.002074961783364415, 0.018926464021205902, -0.010751305148005486, -0.017760947346687317, 0.01284418348222971, 0.013767342083156109, 0.010360414162278175, 0.00011712255218299106, -0.004336311481893063, 0.001998064573854208, 0.01376370806246996, -0.015859274193644524, -0.005316570866852999, 0.0019414123380556703, 0.0025527430698275566, -0.033255692571401596, 0.0016540659125894308, 0.0015152832493185997, 0.012764129787683487, -0.02404777705669403, 0.005082135088741779, -0.0027628978714346886, -0.0009268528083339334, -0.00010319690773030743], [0.213857963681221, 0.03398090973496437, 0.061844952404499054, 0.10586261749267578, 0.028324466198682785, -0.05024535581469536, -0.004877279046922922, -0.010801034048199654, -0.015871010720729828, 0.011394874192774296, 0.14141489565372467, 0.04981179162859917, -0.03948788344860077, 0.053856514394283295, 0.02084539085626602, -0.04727858677506447, -0.06714524328708649, 0.04952006787061691, -0.22368183732032776, 0.01128153596073389, -0.12901423871517181, 0.023354964330792427, 0.028744148090481758, 0.07166648656129837, 0.006004501134157181, 0.09455647319555283, 0.24874290823936462, 0.012009682133793831, -0.35149621963500977, -0.10127855092287064, -0.013572617433965206, -0.05034332722425461], [0.04970969259738922, -0.08430595695972443, -0.0016894098371267319, 0.06265708059072495, -0.0859503298997879, 0.046786949038505554, -0.029087582603096962, -0.009477850049734116, -0.004283156245946884, 0.017682701349258423, -0.010921829380095005, -0.047912921756505966, -0.22009417414665222, -0.02826642617583275, 0.0462351031601429, 0.004380799829959869, -0.0016637324588373303, 0.02301744930446148, 0.02503330446779728, -0.08454528450965881, -0.00922548770904541, 0.017242109403014183, -0.003310919739305973, -0.07330786436796188, 0.020573044195771217, 0.09847508370876312, 0.05243224650621414, 0.12369035184383392, -0.022156674414873123, 0.07417679578065872, 0.010818022303283215, 0.014770325273275375], [-0.13220183551311493, 0.3431300222873688, -0.0712699145078659, -0.06755603104829788, 0.006447765976190567, -0.15640057623386383, -0.26226311922073364, 0.005678226705640554, 0.19005997478961945, -0.08288858830928802, 0.03154253959655762, 0.026181044057011604, -0.01103290542960167, 0.028099332004785538, -0.007845881395041943, 0.03849935904145241, 0.05756049230694771, -0.006676337216049433, 0.027026232331991196, -0.010958726517856121, 0.08931984007358551, -0.0446491502225399, -0.01704549416899681, -0.07902228832244873, 0.0005554927047342062, 0.06884641945362091, -0.1490810215473175, 0.2967246174812317, 0.10936437547206879, 0.2230234444141388, 0.012590592727065086, 0.03145051747560501], [0.00941579882055521, -0.0019405923085287213, 0.00293326866813004, 0.005627007223665714, -0.00888693518936634, 0.012709667906165123, 0.012381070293486118, -0.00046380519052036107, -0.00016458882601000369, 0.01094144582748413, -0.0023673970717936754, -0.012603051960468292, 0.013074657879769802, 0.0008001494570635259, 0.004868991672992706, -0.0032750628888607025, -0.0026882137171924114, 0.0013705720193684101, -0.0022543102968484163, -0.008411051705479622, 0.0032731241080909967, 0.002953127957880497, 0.001871977699920535, -0.013045784085988998, 0.0006521506584249437, -0.0053714062087237835, 0.002059265971183777, -0.016692813485860825, 0.002154567511752248, -0.008001609705388546, 0.0007410275284200907, 0.0002863492409233004], [0.008091820403933525, -1.715973121463321e-05, -0.0009341873810626566, -0.009063920006155968, 0.02054486982524395, -0.023223577067255974, -0.01780758798122406, 0.0004196864028926939, 0.016066335141658783, -0.012842200696468353, 0.002575561171397567, 0.026973700150847435, -0.0055249580182135105, -0.0030029239133000374, -0.00722445547580719, -0.003636349691078067, 6.944884080439806e-05, 3.072024628636427e-05, -0.0011493369238451123, 0.017601778730750084, -0.0011394465109333396, 0.0023911776952445507, 0.0003517137374728918, 0.014840184710919857, -0.00032374291913583875, 0.0011682981858029962, -0.0019704781007021666, 0.010676146484911442, -0.015224102884531021, -0.0002457993687130511, 0.001688803662545979, 0.00111513736192137], [-0.19836273789405823, -0.16133557260036469, -0.06746019423007965, -0.061155885457992554, -0.012194838374853134, 0.026560936123132706, -0.15737517178058624, 0.011015101335942745, 0.10646207630634308, 0.039222352206707, -0.19420400261878967, -0.14461840689182281, 0.021281341090798378, 0.01403276901692152, -0.0020998716354370117, 0.05832817777991295, 0.0641142800450325, -0.04439643397927284, 0.2297968715429306, -0.04633762314915657, 0.1082989051938057, -0.024437546730041504, -0.0364210344851017, -0.13371478021144867, 0.0026919131632894278, -0.10500985383987427, -0.14461103081703186, 0.09246405214071274, 0.10700055211782455, 0.1795729249715805, 0.03143803030252457, 0.04978516697883606], [0.0036724009551107883, 0.008947632275521755, 0.0034487091470509768, -0.004914478864520788, 0.0004282901936676353, 0.004559669177979231, 0.007390998769551516, 0.0004077402700204402, -0.0030264004599303007, 0.006588084623217583, 0.003809793619439006, -0.0026431805454194546, 0.012983647175133228, 0.002525963122025132, 0.002763576339930296, -0.0017858796054497361, -0.0013995926128700376, -0.0004705678438767791, -0.005171524826437235, -0.00402684323489666, -6.427536573028192e-05, 0.0005856215720996261, 0.001978477230295539, -0.0027441715355962515, 0.0005211056559346616, -0.007127494551241398, -0.0024250729475170374, -0.011375242844223976, 0.006438403856009245, -0.00805653352290392, -0.000836690072901547, 0.0016019534086808562], [-0.2632630467414856, -0.0647258535027504, 0.020043347030878067, -0.28975042700767517, 0.08157800137996674, -0.05458776280283928, -0.21366474032402039, 0.009666097350418568, 0.17245562374591827, -0.10701525211334229, -0.25955304503440857, 0.04506487771868706, 0.33874306082725525, 0.2742302119731903, -0.03976549580693245, 0.05126576125621796, 0.023604096844792366, -0.058255162090063095, -0.013762803748250008, 0.08569027483463287, 0.05133109539747238, -0.04218818247318268, -0.012731164693832397, 0.03397852182388306, 0.0006703771068714559, -0.2344154715538025, -0.11507266759872437, -0.042948849499225616, 0.32857105135917664, 0.19922368228435516, -0.024878542870283127, 0.015358668752014637], [-0.2097187638282776, -0.08610426634550095, -0.06439702957868576, -0.06393783539533615, -0.0920957699418068, 0.06403370201587677, -0.032718174159526825, 0.0029854055028408766, 0.15311980247497559, 0.049050357192754745, -0.2092498540878296, -0.0877460241317749, -0.05907157063484192, 0.04232463985681534, 0.03857129439711571, 0.04996787756681442, 0.02755807340145111, -0.030862947925925255, 0.12141336500644684, -0.08773055672645569, 0.11181101202964783, -0.016161613166332245, -0.021441791206598282, -0.3073526620864868, 0.01063759345561266, -0.09202232956886292, 0.04513327777385712, -0.031142476946115494, 0.12361709028482437, 0.15403655171394348, 0.008909191004931927, 0.020340226590633392], [0.16365882754325867, -0.12509791553020477, -0.16700005531311035, -0.03428133949637413, 0.33372533321380615, -0.5613374710083008, -0.2521859407424927, -0.05666279047727585, 0.03657858073711395, -0.2995535433292389, -0.13331487774848938, 0.6704987287521362, 0.23263676464557648, -0.3889017701148987, -0.29508331418037415, 0.11679714173078537, 0.1522694081068039, 0.02868783473968506, 0.12101917713880539, 0.4525008797645569, 0.2947752773761749, -0.1732637584209442, -0.2248210608959198, 0.3970869779586792, 0.07032886892557144, 0.09948465973138809, 0.08299829065799713, -0.048563048243522644, -0.3379330337047577, -0.03200573846697807, -0.0006722582038491964, -0.002741873962804675], [0.019901340827345848, -0.04716528207063675, -0.008429205976426601, 0.08809265494346619, -0.12377101927995682, 0.14959578216075897, 0.1454925686120987, -0.005803322419524193, 0.027573859319090843, 0.125730499625206, -0.0461537167429924, -0.17123398184776306, -0.04032302647829056, 0.03613913804292679, 0.055576201528310776, 0.000294467929052189, -0.018221067264676094, 0.010799725539982319, 0.010314016602933407, -0.1297101080417633, 0.06064683943986893, 0.010788878425955772, 0.004558561369776726, -0.15831363201141357, 0.0033370377495884895, -0.04806119203567505, 0.03361881896853447, -0.14835143089294434, 0.10112127661705017, -0.0031249201856553555, 0.003255606861785054, -0.004163699224591255], [-0.11454499512910843, -0.006837825756520033, -0.17296935617923737, 0.0016425796784460545, 0.27488064765930176, -0.39165860414505005, -0.03147610276937485, 0.020300937816500664, 0.17073744535446167, -0.17493924498558044, 0.07245156168937683, 0.3973601460456848, 0.4893583655357361, -0.19502562284469604, -0.1542079746723175, 0.0015127944061532617, -0.019931064918637276, -0.07016007602214813, 0.16910243034362793, 0.32106277346611023, -0.11247464269399643, 0.002065625274553895, -0.047464221715927124, 0.5442183017730713, -0.021042613312602043, 0.1973801851272583, -0.05432586371898651, -0.43314430117607117, -0.10582657158374786, -0.4742022156715393, 0.04117446392774582, -0.030142994597554207], [0.045129500329494476, 0.027963990345597267, 0.0173256304115057, 0.018974564969539642, -0.033128004521131516, 0.03970958665013313, 0.04196007922291756, -0.0020267190411686897, -0.008063730783760548, 0.037984974682331085, 0.020636441186070442, -0.04140430688858032, 0.03435134515166283, 0.053049370646476746, 0.02433157153427601, -0.012187527492642403, -0.021769866347312927, 0.00601273262873292, -0.06642569601535797, -0.03442925587296486, -0.014336399734020233, 0.0025413138791918755, 0.011403974145650864, -0.0148859154433012, 0.0014730205293744802, -0.01722818613052368, 0.04222298413515091, -0.05368385463953018, -0.007727448362857103, -0.029549477621912956, -0.02280977927148342, -0.012968519702553749], [0.0336495041847229, 0.030559981241822243, -0.004738723859190941, -0.004136502742767334, 0.042839765548706055, -0.04477996379137039, -0.07716485857963562, -0.0013910167617723346, 0.029119456186890602, -0.008274226449429989, -0.010300965048372746, 0.02031668834388256, -0.006361494306474924, 0.02638380415737629, -0.005938254296779633, -0.009219640865921974, -0.002382770413532853, 0.006400613114237785, -0.012957434169948101, 0.012042839080095291, 0.014782832935452461, 0.0023920738603919744, 0.0050638155080378056, 0.023457473143935204, 0.006543130613863468, -0.0012472189264371991, 0.024082766845822334, 0.023227350786328316, 0.011284374631941319, 0.01878950744867325, -0.0026945346035063267, 0.005777279380708933], [0.08187774568796158, 0.010483205318450928, -0.002626073779538274, 0.002307075774297118, 0.003593570552766323, 0.05353321507573128, 0.10508349537849426, -0.00583355687558651, -0.03078392893075943, 0.1041119173169136, 0.01319661270827055, -0.035156987607479095, -0.0488414540886879, 0.05884605273604393, 0.05934159830212593, -0.014321275986731052, -0.029050171375274658, 0.019184967502951622, -0.02371641993522644, -0.07285375893115997, -0.056076403707265854, 0.023153433576226234, 0.021196618676185608, -0.07840604335069656, 0.017996441572904587, -0.09375371783971786, 0.010850230231881142, -0.1303441971540451, -0.03611406311392784, -0.08667302876710892, -0.00201843841932714, 0.033187445253133774], [0.2292240709066391, 0.04127843677997589, 0.03301204741001129, 0.18860574066638947, -0.8892190456390381, 0.7534687519073486, 0.6936284303665161, -0.019378559663891792, -0.05423252657055855, 0.6342989206314087, 0.3391244113445282, -0.37106695771217346, -0.5385247468948364, 0.06727326661348343, 0.5244495272636414, -0.11639255285263062, -0.038694992661476135, 0.05824287235736847, -0.14003580808639526, -0.7893737554550171, 0.2457013726234436, 0.15585684776306152, 0.15344132483005524, -0.4654615521430969, 0.05385220795869827, -0.019267616793513298, 0.3259783983230591, -0.6451847553253174, 0.7192583680152893, -0.47527819871902466, 0.036530785262584686, 0.06913092732429504], [-0.015747584402561188, -0.01281947921961546, -0.06398996710777283, 0.03761983662843704, -0.19413937628269196, 0.087055504322052, 0.07281357795000076, -0.0032812021672725677, 0.061279330402612686, 0.14180029928684235, 0.10746336728334427, -0.15546341240406036, -0.4409846365451813, -0.044169846922159195, 0.14220677316188812, 0.01940663531422615, -0.052763961255550385, 0.017109056934714317, -0.09476516395807266, -0.22882531583309174, -0.13685296475887299, 0.0005012540495954454, 0.027217764407396317, -0.12764662504196167, 0.009670025669038296, 0.08404465019702911, 0.12172085791826248, 0.2605440020561218, -0.037652015686035156, -0.0003699240041896701, -0.0316893495619297, -0.007270114962011576], [-0.09078293293714523, -0.07244573533535004, 0.004358428530395031, -0.020072555169463158, -0.11155519634485245, 0.09936364740133286, 0.05656485632061958, 0.006371612660586834, -0.049468785524368286, 0.06770087778568268, 0.0430380217730999, -0.11739269644021988, -0.013413520529866219, -0.06048087403178215, 0.055249206721782684, 0.028880402445793152, 0.007550460286438465, -0.0289024468511343, 0.12062429636716843, -0.11297418177127838, -0.09815195202827454, 0.0014145242748782039, 0.00549828028306365, -0.06209487095475197, 0.005432198289781809, 0.11204423010349274, -0.15524570643901825, 0.007890556007623672, 0.20085832476615906, -0.02348114736378193, 0.007124481722712517, 0.030913526192307472], [-0.007476642727851868, -0.07417811453342438, 0.019049281254410744, 0.017488470301032066, -0.28765687346458435, 0.09440890699625015, 0.0414232574403286, -0.002811599289998412, -0.00402013910934329, 0.07878557592630386, 0.03486201539635658, -0.0739223062992096, -0.20511379837989807, -0.021678732708096504, 0.09311749786138535, 0.0006929811206646264, -0.030955035239458084, 0.008247129619121552, -0.044482916593551636, -0.2911055088043213, -0.05828176066279411, 0.015969594940543175, 0.015557100996375084, -0.08659584075212479, 0.012521901167929173, 0.11476873606443405, 0.04142846539616585, -0.0794777125120163, 0.03670794516801834, -0.040493227541446686, 0.019973520189523697, -0.004052835050970316], [-0.042636506259441376, -0.23235264420509338, 0.004260487388819456, 0.03861067816615105, -0.2222672551870346, 0.2267691195011139, 0.14466209709644318, -0.0026670077349990606, -0.03662586957216263, 0.14572139084339142, 0.04866969212889671, -0.3538486361503601, 0.13752250373363495, 0.05118393152952194, 0.06970079243183136, -0.004685346502810717, -0.03656284138560295, -0.0025903708301484585, -0.014943566173315048, -0.147929385304451, -0.10710232704877853, 0.010620784945786, 0.012503311038017273, -0.218870148062706, 0.007311217952519655, -0.006230483762919903, -0.03169313445687294, -0.19973354041576385, 0.1540667712688446, -0.13142190873622894, 0.009025800041854382, -0.030701017007231712], [0.008831729181110859, 0.022586392238736153, -0.028055649250745773, 0.04552850499749184, -0.1785399168729782, 0.22282172739505768, 0.13657231628894806, -0.004461731296032667, -0.014343597926199436, 0.0032684809993952513, -0.07696881890296936, -0.27813389897346497, 0.1043597087264061, -0.06493145227432251, 0.02504597418010235, 0.003827490611001849, 0.0040707518346607685, 0.014812675304710865, 0.10706435889005661, -0.1630522757768631, -0.09222732484340668, 0.030674265697598457, -0.0017338554607704282, -0.13679340481758118, 0.012034817598760128, -0.10883820801973343, -0.24309499561786652, 0.05489812046289444, -0.1523653119802475, -0.08268134295940399, 0.05244991555809975, 0.022171618416905403], [-0.0012463671155273914, 0.0023459582589566708, 0.0009496836573816836, 0.0005566353211179376, -0.0033055231906473637, 0.0037737523671239614, 0.00410815654322505, -3.124826980638318e-05, -0.0018135050777345896, 0.0032249176874756813, 0.00045239285100251436, -0.004397082142531872, 0.0034489429090172052, 0.0010970690054818988, 0.001635105931200087, -0.0001729778596200049, -0.0006637524929828942, 0.0002264189679408446, 0.0009720412199385464, -0.003454025834798813, -0.0015664020320400596, 0.00021575352002400905, 0.0005230156821198761, -0.004296229686588049, 0.0001311954838456586, 0.0003565010556485504, 0.00018801834085024893, -0.0033112827222794294, 0.002441920805722475, -0.001932932180352509, -0.0002727647952269763, -0.00018134978017769754], [-0.006592923309653997, -0.3933505713939667, -0.12137541174888611, 0.024131782352924347, -0.23684775829315186, 0.2735562026500702, 0.08683177828788757, -0.009308974258601665, 0.29262885451316833, 0.21768565475940704, -0.165742427110672, -0.05818726122379303, -0.43361636996269226, 0.08778353035449982, 0.2086477428674698, 0.03246438503265381, -0.06280524283647537, 0.011413796804845333, 0.055812835693359375, -0.20980919897556305, 0.03613905608654022, 0.027086898684501648, 0.029506351798772812, -0.3340218961238861, 0.028653481975197792, 0.1982453167438507, 0.21520739793777466, 0.13834506273269653, 0.1401469111442566, 0.07257244735956192, -0.008115138858556747, 0.035834815353155136], [0.02048499695956707, -0.029964689165353775, 0.052199993282556534, 0.028018023818731308, -0.03803666681051254, 0.09538210183382034, 0.09945593029260635, 0.0015264898538589478, -0.03509032353758812, 0.029493138194084167, -0.030754754319787025, -0.05405857786536217, -0.0381317064166069, -0.0007786561618559062, 0.02680983394384384, -0.008861775510013103, -0.008828144520521164, -0.003890498075634241, 0.03751933574676514, 0.0137181980535388, -0.00680964021012187, 0.011695527471601963, -0.007309827487915754, -0.10333026200532913, 0.007811230141669512, 0.04645386338233948, 0.050384484231472015, -0.10900022089481354, -0.12133251875638962, -0.04474392905831337, 0.016183314844965935, -0.003159539308398962], [-0.1686124950647354, -0.036368194967508316, 0.00030612939735874534, -0.01740906573832035, -0.1815786212682724, 0.22002771496772766, 0.11040765047073364, -0.0008924531866796315, 0.01342825684696436, 0.04381444305181503, -0.028663422912359238, -0.2877848148345947, 0.08203613758087158, -0.009702888317406178, 0.02452993392944336, 0.024581681936979294, -0.013681534677743912, 0.008198111318051815, 0.03121953271329403, -0.19673322141170502, -0.23116905987262726, 0.0008961450657807291, 0.00937231071293354, -0.3892105221748352, -0.006438732147216797, 0.056987661868333817, -0.07023294270038605, 0.06710455566644669, 0.046905767172575, -0.039371125400066376, 0.0282717477530241, -0.03527870029211044], [0.014675586484372616, -0.08632563054561615, 0.06337867677211761, 0.015427572652697563, -0.1968354433774948, 0.17801135778427124, 0.13365618884563446, 0.000430687447078526, -0.02562420442700386, 0.13473565876483917, 0.035305287688970566, -0.24621355533599854, 0.016794515773653984, 0.045303791761398315, 0.05055028572678566, -0.01468756701797247, -0.019604206085205078, -0.0040728128515183926, -0.0055298455990850925, -0.19846558570861816, -0.05705615133047104, 0.017279766499996185, 0.00907085370272398, -0.23335447907447815, 0.009882329031825066, 0.018251735717058182, 0.04023735225200653, -0.058071669191122055, 0.07370734959840775, -0.06857791543006897, 0.019155248999595642, -0.00045328406849876046], [-0.0870104432106018, 0.3490186333656311, -0.34228312969207764, -0.028018124401569366, -0.5671412944793701, 0.6098602414131165, 0.7039744257926941, -0.014399244450032711, 0.23321175575256348, 0.454184353351593, -0.10071540623903275, -0.38567638397216797, -0.22795628011226654, 0.3232458829879761, 0.32922276854515076, -0.0796673446893692, -0.14836956560611725, 0.025106092914938927, -0.1099800169467926, -0.4432114362716675, -0.1426188051700592, 0.13310818374156952, 0.1571163684129715, -0.6166156530380249, 0.000329014437738806, -0.3214770257472992, 0.023528777062892914, -0.38103094696998596, 0.16682270169258118, -0.6720845699310303, -0.040619052946567535, 0.0440841019153595], [-0.0272242221981287, -0.07824961096048355, 0.007377833127975464, 0.019038405269384384, -0.1667916625738144, 0.211654394865036, 0.18696661293506622, 0.004267606418579817, 0.023558100685477257, 0.2070402204990387, -0.26529958844184875, -0.263818621635437, -0.03252764046192169, 0.15547522902488708, 0.06855638325214386, -0.010547894984483719, -0.014993755146861076, 0.015828728675842285, 0.13068976998329163, -0.16576837003231049, -0.05297781527042389, 0.003670617239549756, 0.008582153357565403, -0.2491839975118637, -0.011913134716451168, 0.08922422677278519, -0.13131430745124817, -0.42790234088897705, 0.1674581617116928, 0.028417110443115234, 0.010134568437933922, 0.008788127452135086], [0.04258769378066063, 0.014052876271307468, 0.01780431903898716, 0.02583209238946438, -0.08707068115472794, 0.05559656769037247, 0.032649166882038116, -0.0016236754599958658, -0.0026470946613699198, 0.05782448872923851, 0.03745725378394127, -0.05024198070168495, -0.06132707744836807, 0.007481949403882027, 0.041390951722860336, -0.020256705582141876, -0.024841660633683205, 0.0112708555534482, -0.036696773022413254, -0.08618009090423584, -0.027679674327373505, 0.018201656639575958, 0.021509790793061256, 0.013974977657198906, -0.0010223612189292908, -0.01596626453101635, -0.0190756656229496, 0.030612211674451828, -0.020899692550301552, -0.04435507208108902, -0.008662653155624866, 0.0010491325519979], [0.000515839783474803, 0.01744636334478855, 0.0002106292813550681, 0.0005407113349065185, -0.015370123088359833, 0.013715636916458607, 0.01697630062699318, -0.0002869092859327793, 0.0007248677429743111, 0.016735563054680824, -0.013233566656708717, -0.018640993162989616, 0.006085891276597977, 0.010597688145935535, 0.01054990291595459, -0.002484313677996397, -0.0016869516111910343, 0.0020325970835983753, 0.007294150069355965, -0.017794286832213402, 0.011161260306835175, 0.0012637174222618341, 0.0016394398408010602, -0.027166711166501045, 0.0009198901243507862, -0.004965564236044884, 0.004669286776334047, -0.019963273778557777, 0.013345140963792801, 0.001619222341105342, -0.0009267372079193592, 0.002521130256354809], [-0.011355132795870304, 0.002421399811282754, -0.0015920334262773395, -0.008079779334366322, 0.0008972006617113948, 0.0029844902455806732, -0.014704589731991291, 0.00035763991763815284, 0.0220872163772583, -0.001211256836540997, 0.007075183093547821, -0.0011754996376112103, -0.0037475747521966696, -0.014767242595553398, -0.00021110751549713314, 0.0014289087848737836, 0.0021567672956734896, -0.0009318595402874053, 0.01978272572159767, -0.007589142769575119, -0.024996317923069, 0.0029247410129755735, 0.00014268583618104458, -0.010132656432688236, 0.0004216936358716339, 0.007985143922269344, -0.012890460900962353, 0.03344908356666565, -0.0055326176807284355, -0.005182853899896145, 0.003184977686032653, 0.0024405301082879305], [-0.008630536496639252, 0.0016997943166643381, 0.0021300408989191055, 0.00048160130972974, -0.0028707687743008137, 0.0073796892538666725, 0.010816985741257668, 3.793768701143563e-05, -0.004862499423325062, 0.009039990603923798, -0.0005881836405023932, -0.005667412653565407, 0.007425292395055294, 0.00509564857929945, 0.00500348350033164, 0.0007214877987280488, -0.0023555736988782883, 8.621595043223351e-05, 0.010997369885444641, -0.0060911946929991245, -0.009124532341957092, 0.0010543911485001445, 0.0019459478789940476, -0.012877977453172207, 0.0009676634217612445, 0.003847140120342374, 0.0005986648029647768, -0.013912657275795937, 0.005394509062170982, -0.006829327903687954, -0.00020322302589192986, 0.0008582488517276943], [0.22609515488147736, 0.03064722567796707, 0.0774037092924118, 0.08579915016889572, -0.10117978602647781, 0.09664390236139297, 0.14099320769309998, -0.007500532083213329, -0.07764194905757904, 0.10715413093566895, 0.24559195339679718, -0.11660091578960419, -0.044075921177864075, 0.012288291938602924, 0.0693928673863411, -0.05215783044695854, -0.06808516383171082, 0.03792862966656685, -0.2285466194152832, -0.12609541416168213, -0.16375871002674103, 0.03501707315444946, 0.03899158909916878, 0.021882029250264168, 0.005810610018670559, 0.07990521937608719, 0.12516646087169647, -0.0207107812166214, -0.1553690880537033, -0.18145708739757538, -0.011036558076739311, -0.029894711449742317], [0.06620050966739655, -0.05638854205608368, 0.009844847023487091, 0.08284367620944977, -0.29549363255500793, 0.17224745452404022, 0.020017890259623528, -0.012475072406232357, -0.012295362539589405, 0.03926672041416168, -0.03489184379577637, -0.12779758870601654, -0.36364462971687317, -0.05197226256132126, 0.09704507142305374, 0.003220809856429696, -0.0076780496165156364, 0.03312215209007263, 0.043279413133859634, -0.2425573766231537, -0.011088738217949867, 0.025226907804608345, -0.0008584917522966862, -0.17453928291797638, 0.026039740070700645, 0.13169771432876587, 0.05191488936543465, 0.14072780311107635, -0.006117903161793947, 0.08311410248279572, 0.013936836272478104, 0.01946081407368183], [-0.14282380044460297, 0.3951733112335205, 0.044052716344594955, -0.03504759818315506, -0.26308467984199524, 0.09684845060110092, 0.05064402520656586, 0.0004941805964335799, -0.05240967124700546, 0.12407946586608887, 0.19565550982952118, -0.13814488053321838, -0.07379494607448578, 0.034833211451768875, 0.12008319050073624, 0.043114300817251205, 0.02990126796066761, 0.014202401973307133, 0.011161241680383682, -0.2958727777004242, -0.0215094443410635, -0.022333461791276932, 0.02109798975288868, -0.20269840955734253, 0.002787718316540122, 0.10966593772172928, -0.2400117963552475, 0.1971655786037445, 0.24443508684635162, 0.05290425568819046, 0.005107839126139879, 0.0370342880487442], [0.0050628636963665485, -0.0029774298891425133, 0.001448633149266243, 0.004894128069281578, -0.0066862753592431545, 0.010513607412576675, 0.010067484341561794, -0.00030747067648917437, 0.001127613359130919, 0.008443324826657772, -0.00385125819593668, -0.010262696072459221, 0.012692874297499657, -0.0028775667306035757, 0.003015657886862755, -0.0024909523781389, -0.001356201944872737, 0.0009111452964134514, 0.001662630820646882, -0.0060093700885772705, 0.0063597760163247585, 0.002774307271465659, 0.0011237512808293104, -0.01508772186934948, 0.0005330229760147631, -0.0072870259173214436, -0.00033010271727107465, -0.014028623700141907, 0.0037975411396473646, -0.006527463439851999, 0.0022687772288918495, 0.000880005769431591], [0.0058159176260232925, -0.0024930883664637804, -0.0002748710394371301, -0.0038693160749971867, 0.014527798630297184, -0.013651101849973202, -0.009343198500573635, 0.0003501393075566739, 0.00846298597753048, -0.008194295689463615, 0.005901826545596123, 0.017589598894119263, -0.0018057336565107107, -0.008064080029726028, -0.0060802330262959, -0.002824414288625121, 0.00010388772352598608, 0.00019905183580704033, 0.0015641830395907164, 0.01293560117483139, -0.002977887401357293, 0.0023463829420506954, 0.0004344097978901118, 0.008762453682720661, -0.000445725629106164, 0.0034350783098489046, -0.005984215531498194, 0.005505305249243975, -0.01077988650649786, -0.006154530216008425, 0.0023634000681340694, 0.0008803068194538355], [-0.1323511004447937, -0.20078019797801971, -0.07500790059566498, 0.056439876556396484, -0.296587198972702, 0.14883486926555634, -0.15772852301597595, 0.018831461668014526, 0.21368953585624695, 0.07125046849250793, -0.22424004971981049, -0.2442183494567871, 0.1929856538772583, 0.036418113857507706, 0.12502630054950714, 0.021889403462409973, 0.13841110467910767, -0.0301966555416584, 0.3079143464565277, -0.2101311981678009, 0.3268303871154785, -0.047975219786167145, -0.1077873557806015, -0.16708062589168549, 0.0011118862312287092, 0.052577268332242966, -0.04335559159517288, 0.28005170822143555, 0.18971151113510132, 0.04834895581007004, 0.0529216043651104, 0.015607925131917], [0.00372509122826159, 0.008109335787594318, 0.00349211972206831, -0.003669783240184188, -0.0006683579995296896, 0.005719547159969807, 0.00883133802562952, 0.00033728862763382494, -0.003934553358703852, 0.007519251201301813, 0.00441885506734252, -0.005013123154640198, 0.012683427892625332, 0.00024252678849734366, 0.0028698863461613655, -0.0018050008220598102, -0.0013969007413834333, -6.315511564025655e-05, -0.0037792229559272528, -0.0052847606129944324, -0.0011586770415306091, 0.0009378479444421828, 0.0020791413262486458, -0.005459017585963011, 0.0005025814170949161, -0.005142189096659422, -0.0031357298139482737, -0.010840059258043766, 0.005103226285427809, -0.008912052027881145, -0.000271521566901356, 0.0016420334577560425], [-0.24414251744747162, -0.07821770012378693, 0.004030088894069195, -0.18596580624580383, -0.07841962575912476, 0.10424558818340302, -0.09690696746110916, 0.004983841907233, 0.2472275346517563, 0.05230794847011566, -0.36892223358154297, -0.13059262931346893, 0.2515980899333954, 0.24518634378910065, 0.012581952847540379, 0.05338510125875473, 0.0059613729827106, -0.03562592342495918, 0.011313281022012234, -0.06969532370567322, 0.11468732357025146, -0.027978243306279182, -0.00844255555421114, -0.3295709192752838, 0.004364662803709507, -0.23824413120746613, 0.06782223284244537, -0.18235988914966583, 0.2577878534793854, 0.1776238977909088, -0.0022437339648604393, 0.007929092273116112], [-0.053564026951789856, -0.038027573376894, -0.0042698318138718605, 0.0035751669201999903, -0.14121928811073303, 0.13125675916671753, 0.16820219159126282, 0.005855748895555735, -0.0014372911537066102, 0.07663440704345703, 0.2603950798511505, -0.08836770057678223, -0.0635407418012619, 0.0030805785208940506, 0.04784553125500679, 0.011725146323442459, -0.048250000923871994, -0.020508328452706337, -0.050689853727817535, -0.1362658590078354, -0.262219101190567, -0.0021830941550433636, 0.023226816207170486, 0.027083691209554672, -0.004470663145184517, 0.23259682953357697, 0.03735833615064621, -0.06458302587270737, -0.09520431607961655, -0.19329412281513214, -0.036583561450242996, -0.035405177623033524], [-0.10411251336336136, -0.12796644866466522, -0.06740123778581619, 0.10083626210689545, -0.14852531254291534, 0.16694238781929016, 0.21155212819576263, -0.009993442334234715, 0.2143562287092209, 0.4237060844898224, -0.46020427346229553, -0.040946364402770996, -0.12056416273117065, 0.3849714696407318, 0.17051883041858673, 0.07127979397773743, -0.0866396352648735, -0.02190079353749752, -0.051936253905296326, -0.10252992063760757, 0.25825342535972595, 0.12244299799203873, 0.11213424056768417, -0.5449767112731934, 0.04542747512459755, -0.09125103801488876, 0.16763368248939514, -0.6537019610404968, 0.15678736567497253, -0.3842770457267761, 0.0346783809363842, 0.13583916425704956], [-0.09382373094558716, 0.033013343811035156, -0.04058321565389633, 0.0968686118721962, -0.10215719789266586, 0.06280969828367233, 0.12677651643753052, -0.0026310288812965155, 0.008270148187875748, 0.051626794040203094, -0.2548958659172058, -0.08493592590093613, -0.014293746091425419, 0.17081515491008759, 0.03687708079814911, 0.03018278256058693, -0.00757548026740551, -0.015296157449483871, 0.19931739568710327, -0.07848931849002838, 0.021560655906796455, -0.01570662297308445, -0.011214573867619038, -0.023196924477815628, -0.0004398315504658967, 0.1728934943675995, -0.26013317704200745, -0.1601264625787735, 0.32180455327033997, 0.12591911852359772, -0.0032299498561769724, 0.008520667441189289], [-0.2577565014362335, 0.0034886456560343504, -0.08466779440641403, -0.029850678518414497, 0.05050094798207283, -0.09653294086456299, -0.19362260401248932, 0.017868975177407265, 0.036885909736156464, -0.14093559980392456, 0.17477181553840637, -0.12174425274133682, 0.614756166934967, -0.27263185381889343, -0.13315245509147644, 0.04959435388445854, 0.06443263590335846, -0.04386443272233009, 0.28327295184135437, 0.1901036500930786, -0.2005700170993805, -0.02449948899447918, -0.05735364556312561, -0.3277676999568939, -0.029927032068371773, 0.26493483781814575, 0.056058939546346664, 0.11593043804168701, -0.3086303770542145, -0.28340083360671997, 0.035033609718084335, -0.05093034356832504], [0.05042613670229912, 0.03750760853290558, 0.024330871179699898, 0.015548980794847012, -0.04613769054412842, 0.052958905696868896, 0.053088415414094925, -0.002327932743355632, -0.008734173141419888, 0.050029415637254715, 0.02459857240319252, -0.0573267936706543, 0.04183979704976082, 0.0720462054014206, 0.03367310017347336, -0.013764270581305027, -0.02781747467815876, 0.0055285790003836155, -0.07888852804899216, -0.04894666746258736, -0.020078904926776886, 0.001229245332069695, 0.015088832937180996, -0.024759748950600624, 0.00263441470451653, -0.015978720039129257, 0.05555199459195137, -0.06731326878070831, 0.0005647584912367165, -0.030680563300848007, -0.03267138823866844, -0.016807271167635918], [0.027804916724562645, 0.02577517367899418, -0.0005014507914893329, -0.00158990069758147, 0.030927661806344986, -0.025727292522788048, -0.04387781769037247, -0.0009720355737954378, 0.011661550030112267, -0.0008190090302377939, 0.008324399590492249, 0.014479956589639187, -0.005816465709358454, 0.007189452648162842, -0.007519342005252838, -0.006979597266763449, -0.003165877191349864, 0.0063123805448412895, -0.0067480881698429585, 0.001173214754089713, -0.01101736817508936, 0.0025875777937471867, 0.005793452728539705, 0.020757023245096207, 0.005512461066246033, 0.021740855649113655, 0.008833002299070358, 0.01701279543340206, -0.012191114947199821, -0.007821433246135712, 0.001562280347570777, 0.005334400571882725], [0.1945330798625946, 0.11515969783067703, 0.11107029765844345, 0.08913058042526245, 0.044264938682317734, -0.06568805873394012, -0.06851451843976974, -0.025115812197327614, -0.12456642836332321, 0.05736587569117546, -0.1799427717924118, 0.09932268410921097, -0.1268676519393921, -0.0999758169054985, -0.06446248292922974, -0.05051558092236519, -0.0037871061358600855, 0.10400427132844925, -0.07654590159654617, 0.10678902268409729, 0.12780289351940155, 0.0969579741358757, -0.011166930198669434, -0.32461440563201904, 0.03835604712367058, -0.08688829094171524, -0.00322083942592144, -0.013969146646559238, -0.44287508726119995, 0.03944743052124977, 0.14185546338558197, 0.08740665763616562], [0.13293907046318054, 0.5851380825042725, -0.060651957988739014, 0.001646743738092482, -0.16852492094039917, -0.29729804396629333, -0.0525403767824173, -0.039054252207279205, 0.1700090616941452, 0.14698317646980286, -0.19055958092212677, 0.011544459499418736, -0.1878821849822998, 0.06971649825572968, 0.13438759744167328, -0.020684609189629555, -0.045063573867082596, 0.09650209546089172, -0.01977623999118805, -0.15972557663917542, 0.15504708886146545, -0.00760517967864871, 0.007220843806862831, -0.2584036588668823, 0.08988767862319946, 0.22208184003829956, 0.2905347943305969, 0.1483599692583084, -0.05292876437306404, -0.05527697503566742, -0.07085758447647095, 0.06169406324625015], [-0.04704562574625015, 0.1508491337299347, 0.3801180422306061, -0.27843496203422546, 0.08402294665575027, 0.09575549513101578, 0.05205967277288437, 0.034171149134635925, -0.2372274100780487, 0.0889912024140358, -0.15231953561306, 0.009786825627088547, 0.5017499923706055, 0.16038981080055237, -0.05283642187714577, -0.07799261808395386, -0.04433293268084526, -0.05529121309518814, 0.00838449876755476, 0.08003153651952744, -0.030814431607723236, -0.024587417021393776, -0.04058442264795303, 0.1617920994758606, -0.038546811789274216, 0.1166679635643959, -0.04467596113681793, -0.15881751477718353, -0.03266939893364906, -0.20489835739135742, 0.019245389848947525, -0.02168569527566433], [-0.09345302730798721, -0.044778719544410706, -0.034473977982997894, 0.2114122211933136, -0.08861891180276871, -0.3231174647808075, 0.143650084733963, -0.019731249660253525, -0.03961220383644104, -0.03375781327486038, 0.334762305021286, 0.1881592571735382, -0.009835326112806797, -0.2902366518974304, 0.10322790592908859, 0.0793808102607727, 0.08350837975740433, 0.030210360884666443, 0.24487541615962982, -0.09974706918001175, -0.007260752841830254, -0.06407718360424042, -0.09708163887262344, -0.5995596051216125, 0.06131065636873245, -0.31813234090805054, 0.4732983708381653, -0.1484130173921585, 0.03054194711148739, 0.04508567973971367, -0.07124479860067368, 0.005577525589615107], [0.36687108874320984, 0.040457986295223236, -0.029243633151054382, -0.027347028255462646, 0.4579830467700958, -0.15624508261680603, -0.037227679044008255, -0.004000851884484291, 0.018242452293634415, 0.043634891510009766, -0.04838215559720993, 0.1311301440000534, 0.010628401301801205, -0.0723349004983902, -0.06093946471810341, -0.08823005855083466, -0.017690230160951614, 0.06503859907388687, -0.035413023084402084, 0.33705100417137146, -0.033166904002428055, 0.08608904480934143, 0.028845831751823425, -0.06022396683692932, 0.050649069249629974, -0.15679343044757843, -0.057873472571372986, 0.0717853307723999, -0.10948500037193298, -0.088845394551754, 0.08993888646364212, 0.09869080781936646], [-0.2609330117702484, -0.10084214806556702, 0.011737188324332237, 0.07787865400314331, -0.2097778171300888, 0.19294188916683197, -0.06833752244710922, 0.0002016555517911911, -0.005135832820087671, 0.17764796316623688, 0.019542107358574867, -0.21149496734142303, 0.19073288142681122, 0.12575183808803558, -0.023909686133265495, 0.06881721317768097, -0.05409234017133713, -0.04643239825963974, 0.010476321913301945, 0.02443702705204487, -0.21724200248718262, -0.054441794753074646, -0.029179804027080536, -0.43878045678138733, -0.027303708717226982, 0.07586017996072769, 0.17537711560726166, -0.007122389506548643, -0.2890990674495697, -0.03903096169233322, -0.05153103172779083, -0.18045899271965027], [-0.006934018339961767, 0.191160649061203, -0.021027501672506332, -0.04561397805809975, -0.20136460661888123, 0.16483621299266815, 0.02885870821774006, -0.020049944519996643, -0.04035522788763046, -0.0070799472741782665, -0.15728549659252167, -0.11468084901571274, -0.2309701144695282, -0.002144954865798354, 0.031411971896886826, 0.03317119926214218, -0.0010708359768614173, 0.054079558700323105, 0.2631675899028778, -0.07823914289474487, -0.210970938205719, 0.036658696830272675, -0.03506850823760033, -0.3909875452518463, 0.030801672488451004, -0.22817029058933258, -0.18272213637828827, -0.182237446308136, -0.26356709003448486, -0.39771437644958496, 0.08516370505094528, 0.0722939595580101], [-0.010531078092753887, 0.006266329437494278, -0.007126189768314362, -0.005907223094254732, 0.02336413599550724, 0.012764080427587032, 0.0361371710896492, 0.006093852687627077, 0.04171786084771156, -0.008915508165955544, -0.010235979221761227, -0.03793259710073471, 0.02337813191115856, 0.005834575276821852, -0.004888478666543961, -0.007715275511145592, -0.003713887883350253, -0.007840671576559544, -0.003229566151276231, -0.0010682513238862157, 0.016820363700389862, 0.0003175018064212054, 0.001271402812562883, 0.1111033707857132, -0.009323240257799625, 0.03549657762050629, -0.015878256410360336, -0.02244315668940544, 0.047457702457904816, -0.037867847830057144, 0.015688056126236916, -0.005676449276506901], [0.049689289182424545, -0.5372940897941589, -0.3783546984195709, -0.2525590658187866, -0.10497447103261948, 0.02251323312520981, -0.2432800680398941, 0.015967927873134613, 0.17742080986499786, -0.09786375612020493, -0.2902837097644806, 0.02226642146706581, -0.34224802255630493, 0.2585044503211975, -0.0010146329877898097, -0.03078962117433548, -0.12475748360157013, -0.01911073550581932, -0.10356944799423218, -0.019504079595208168, 0.1323617398738861, -0.03958788141608238, 0.10007038712501526, 0.021258139982819557, -0.008419257588684559, 0.16384847462177277, -0.03457944840192795, 0.03379006311297417, 0.1943078637123108, 0.2750397026538849, -0.13343051075935364, 0.09913275390863419], [0.04698421061038971, -0.03892390802502632, 0.045086540281772614, 0.02385512739419937, -0.29244258999824524, -0.05112059786915779, 0.157637357711792, 0.00028443863266147673, -0.005271629896014929, 0.07139798998832703, 0.03715776279568672, -0.021049173548817635, -0.06008013337850571, 0.022569119930267334, 0.0819510817527771, -0.013651237823069096, -0.011956959031522274, 0.001824243227019906, 0.0027450229972600937, -0.2595576047897339, 0.005441864021122456, 0.018921557813882828, 0.007253509480506182, -0.4546205997467041, 0.012722425162792206, 0.04943985119462013, 0.14722560346126556, -0.3562244176864624, 0.06740950793027878, -0.0033783065155148506, 0.01937890611588955, 0.009195142425596714], [0.24699082970619202, 0.1008889228105545, -0.042805399745702744, -0.03233448788523674, 0.02023843117058277, 0.10988162457942963, 0.3783354163169861, -0.05388140305876732, 8.460588287562132e-05, -0.003999059088528156, 0.03873789682984352, 0.04118231683969498, -0.16960038244724274, -0.10031868517398834, 0.10360325872898102, -0.08891787379980087, 0.03761666268110275, 0.09072378277778625, -0.025925755500793457, -0.024592697620391846, -0.08849307149648666, 0.11000140756368637, -0.04036399722099304, -0.05813763663172722, 0.0546993650496006, -0.0760727971792221, -0.0007201947155408561, 0.15494868159294128, -0.04054144024848938, -0.5819679498672485, -0.04046310484409332, 0.07636111229658127], [0.14903540909290314, 0.09886597841978073, -0.12410902976989746, -0.013173832558095455, 0.20686127245426178, -0.11958496272563934, 0.15241704881191254, -0.004150124732404947, 0.0407942496240139, -0.12138622999191284, -0.024394161999225616, 0.318828821182251, -0.4542939364910126, -0.14180350303649902, -0.02256406471133232, -0.033685583621263504, 0.055612895637750626, 0.03072560764849186, 0.03903535008430481, 0.2626168131828308, 0.07012204825878143, 0.029377978295087814, -0.01208838727325201, 0.026516111567616463, 0.014038593508303165, -0.08470174670219421, -0.10731856524944305, 0.2313946783542633, 0.041603583842515945, -0.18112440407276154, 0.03143654391169548, 0.12056376039981842], [0.06069968268275261, 0.34776222705841064, -0.0015388786559924483, -0.13237416744232178, 0.14602889120578766, -0.025738174095749855, -0.20031842589378357, 0.020245980471372604, -0.062161367386579514, 0.006731435190886259, -0.15921999514102936, -0.2933219075202942, 0.25828346610069275, 0.08397264778614044, -0.023361248895525932, 0.038124293088912964, -0.02351297438144684, -0.003847097745165229, -0.04053732752799988, -0.2168199121952057, -0.03515074774622917, -0.06797778606414795, 0.09410008043050766, 0.43770819902420044, -0.015000474639236927, 0.018906209617853165, -0.10670012980699539, -0.44376593828201294, 0.2799195647239685, -0.05562160909175873, -0.10218892246484756, 0.06591538339853287], [0.06418287009000778, -0.060911741107702255, -0.01909143105149269, 0.12113286554813385, -0.027463039383292198, -0.031805723905563354, 0.05530070513486862, 0.016662389039993286, 0.05006105825304985, 0.036674901843070984, 0.01772172376513481, 0.022914694622159004, -0.28189554810523987, 0.182552307844162, 0.0660926103591919, -0.06810754537582397, -0.13652120530605316, 0.039342425763607025, -0.2016904652118683, -0.21542814373970032, -0.02395469695329666, 0.04955298453569412, 0.08523902297019958, 0.23320913314819336, -0.0813298374414444, -0.05610170215368271, -0.007698800414800644, -0.658433198928833, 0.262285441160202, 0.42109695076942444, -0.009315596893429756, -0.04118102788925171], [0.04017831012606621, -0.07621492445468903, 0.040178876370191574, 0.04867204278707504, -0.5062342882156372, 0.06950902938842773, 0.059325966984033585, -0.012792671099305153, 0.050372082740068436, 0.07655400782823563, 0.011459852568805218, -0.008815311826765537, -0.4956214427947998, -0.016554219648241997, 0.04962935298681259, 0.01983725093305111, 0.018414316698908806, 0.030310651287436485, 0.010622565634548664, -0.24196352064609528, 0.05022752657532692, 0.011521140113472939, -0.0007230952614918351, -0.09152619540691376, 0.024292880669236183, 0.09065816551446915, 0.09128236025571823, -0.004526324570178986, 0.07650821655988693, 0.17955277860164642, -0.011602670885622501, 0.03248792141675949], [-0.04704579710960388, -0.12923753261566162, 0.02502366527915001, -0.003541377140209079, 0.017456665635108948, -0.007327803410589695, -0.026441771537065506, -0.006881944835186005, -0.05488830804824829, -0.016149774193763733, 0.10067742317914963, -0.0847649797797203, -0.018445348367094994, 0.046282581984996796, 0.034828051924705505, 0.02399851381778717, -0.008161070756614208, -0.004281722940504551, 0.0375540517270565, -0.038369011133909225, -0.12054170668125153, -0.019268818199634552, 0.0036348914727568626, 0.14740292727947235, 0.0033501251600682735, 0.006218144670128822, 0.0176924467086792, 0.10180406272411346, 0.2851833403110504, 0.08345939218997955, -0.05118197947740555, -0.021720197051763535], [0.09436589479446411, -0.04364507272839546, 0.06305420398712158, -0.12283419817686081, -0.01534515991806984, 0.11735957115888596, -0.06595902889966965, 0.0035158535465598106, -0.011657284572720528, -0.16464932262897491, -0.20792947709560394, 0.045579131692647934, -0.039868567138910294, -0.042997460812330246, 0.012717596255242825, -0.030492380261421204, -0.0004483212542254478, 0.00667374674230814, 0.029931722208857536, -0.10762514919042587, 0.2147376835346222, 0.006131147965788841, 0.009909134358167648, 0.2725059390068054, -0.0063437060452997684, 0.08473046123981476, -0.36082661151885986, 0.13913679122924805, 0.13402831554412842, 0.03458784893155098, -0.0014351889258250594, 0.06481731683015823], [0.00994389969855547, 0.11451494693756104, 0.03447457775473595, 0.05931731313467026, 0.009827971458435059, -0.06960337609052658, -0.05158982798457146, -0.007363222539424896, -0.04275105521082878, 0.039059076458215714, 0.027809949591755867, 0.07684364169836044, -0.04757637903094292, -0.08419296890497208, -0.03575050085783005, 0.024839425459504128, 0.02467441000044346, 0.006744829937815666, 0.06423304229974747, 0.10148899257183075, -0.01646791584789753, 0.0136219821870327, -0.016654180362820625, -0.3834053575992584, 0.02365398220717907, -0.047271229326725006, 0.09886103868484497, 0.07720901817083359, -0.18896913528442383, 0.05546335130929947, 0.00689820758998394, 0.02716345153748989], [-0.08405320346355438, -0.15860137343406677, -0.04522622376680374, 0.03081386908888817, -0.03516453132033348, 0.11216364055871964, -0.025301801040768623, 0.0030542213935405016, -0.0999714732170105, -0.15997883677482605, -0.2689162790775299, -0.08748526871204376, -0.0615454837679863, -0.07494783401489258, -0.0339667946100235, 0.0036060779821127653, 0.0895259752869606, -0.01916508376598358, 0.3679560720920563, -0.03473363071680069, 0.1947430521249771, 0.01359137799590826, -0.0030975406989455223, 0.15459094941616058, -0.016901787370443344, 0.015648365020751953, -0.37182584404945374, -0.07389957457780838, 0.23883453011512756, 0.06898131966590881, -0.03431263193488121, 0.12707675993442535], [-0.006441224366426468, 0.0872844010591507, 0.009131945669651031, -0.05883822962641716, 0.49519652128219604, -0.24174754321575165, -0.08894604444503784, 0.01755359396338463, -0.01687898486852646, -0.12590816617012024, 0.007324133068323135, 0.20035602152347565, 0.27173662185668945, 0.04087766259908676, -0.13290375471115112, 0.007522194180637598, -0.004335814155638218, -0.03930804133415222, -0.05506346747279167, 0.30124691128730774, -0.13925525546073914, -0.02403244934976101, 0.0007695257081650198, 0.04037683457136154, -0.031504228711128235, -0.14540089666843414, -0.09269964694976807, 0.0474553145468235, -0.03223041445016861, -0.04100070148706436, -0.023530345410108566, -0.09209515154361725], [-0.14484968781471252, -0.09902551770210266, -0.16628074645996094, -0.25393566489219666, -0.19012539088726044, 0.13607825338840485, -0.21388040482997894, 0.04438379034399986, 0.11747300624847412, -0.247039332985878, -0.3221396505832672, -0.0017027085414156318, -0.17447234690189362, -0.06745492666959763, 0.049731772392988205, 0.10240961611270905, 0.2814136743545532, -0.08686485886573792, 0.15675120055675507, -0.19810305535793304, 0.19768908619880676, -0.05799434334039688, -0.03192022442817688, 0.45860201120376587, -0.0063367863185703754, -0.2861781716346741, -0.5181834697723389, 0.12012901157140732, 0.023137692362070084, 0.2383558750152588, -0.022984283044934273, 0.26610374450683594], [0.0007402939372695982, -0.06153378635644913, -0.0060265641659498215, 0.028718695044517517, -0.014828342013061047, 0.0007729352219030261, -0.03202058747410774, 0.0007640983094461262, 0.05320657044649124, 0.019832409918308258, -0.06516610831022263, 0.023145250976085663, -0.013610937632620335, -0.12495045363903046, -0.01849314570426941, 0.008005103096365929, 0.0024145571514964104, 0.007151045370846987, 0.030238008126616478, 0.020505456253886223, -0.014423409476876259, 0.009385534562170506, -0.008883352391421795, -0.14334730803966522, 0.004709052387624979, -0.005967751611024141, -0.041507165879011154, -0.042214199900627136, -0.21303199231624603, -0.037069257348775864, 0.04495066776871681, 0.015974057838320732], [0.0023804567754268646, 0.06774087250232697, -0.00011966822057729587, 0.05986538901925087, -0.04851701855659485, -0.08486829698085785, 0.011426764540374279, -0.0019127402920275927, -0.03486396372318268, 0.10207805782556534, 0.08990606665611267, 0.024132171645760536, 0.05683942511677742, -0.059847116470336914, -0.02446458488702774, 0.005476220976561308, -0.005448635201901197, 0.00309463101439178, 0.0189605001360178, 0.03114660270512104, -0.14175227284431458, 0.0021691685542464256, -0.016825005412101746, -0.047818027436733246, 0.0024451834615319967, 0.014724033884704113, 0.1559152454137802, -0.043034158647060394, -0.12900978326797485, -0.017829515039920807, -0.003634102875366807, -0.0226992629468441], [-0.05546124652028084, 0.4013582468032837, 0.07033039629459381, 0.28779441118240356, 0.022069012746214867, -0.07595453411340714, 0.37111780047416687, -0.02288307435810566, -0.13678193092346191, 0.1439485400915146, 0.32233524322509766, 0.2957281470298767, -0.1799336075782776, -0.060815922915935516, -0.07785805314779282, -0.04121950641274452, -0.22059692442417145, 0.09018944203853607, -0.19423449039459229, 0.07943368703126907, -0.3825259208679199, 0.11927080899477005, 0.11252682656049728, 0.09387089312076569, -0.03995939716696739, 0.3771184980869293, 0.20271682739257812, -0.10275035351514816, -0.10958772152662277, -0.24356704950332642, 0.009044278413057327, -0.2706342935562134], [0.05288219824433327, -0.12133634835481644, 0.034353677183389664, -0.051524434238672256, -0.01407078467309475, -0.034128230065107346, -0.03060830757021904, -0.005328024737536907, -0.06764451414346695, -0.09256933629512787, -0.026902439072728157, 0.06003841012716293, -0.061609186232089996, 0.031800758093595505, 0.0001613566855667159, -0.010793311521410942, 0.012357492931187153, 0.010045508854091167, -0.030513864010572433, -0.00572960777208209, 0.04833853989839554, -0.0020409009885042906, 0.007849732413887978, -0.012042832560837269, 0.010882122442126274, 0.019975271075963974, -0.03829256817698479, -0.01373302936553955, 0.014217907562851906, 0.08733201026916504, -0.02357705496251583, 0.02385919913649559], [-0.022000081837177277, 0.1700095683336258, -0.03948255255818367, 0.30574968457221985, -0.05450773239135742, -0.22547611594200134, 0.18373896181583405, -0.0009765077265910804, -0.03867020085453987, 0.1694452166557312, 0.15135379135608673, 0.10045137256383896, -0.4657897353172302, 0.11075808852910995, 0.07390713691711426, 0.00226497370749712, -0.15464311838150024, 0.05263790488243103, -0.11710557341575623, 0.048594940453767776, -0.19707410037517548, 0.0185372456908226, 0.08570133149623871, -0.3819000720977783, -0.06241540610790253, 0.41297975182533264, 0.5648192763328552, -0.09839334338903427, 0.032902635633945465, -0.042337194085121155, -0.07982682436704636, -0.16263891756534576], [0.03622453287243843, -0.37663233280181885, 0.11147984117269516, -0.3623923361301422, -0.049218446016311646, -0.26395612955093384, 0.35465192794799805, 0.032599929720163345, 0.23036205768585205, -0.1541987955570221, 0.2992461323738098, 0.2466125339269638, -0.24749933183193207, 0.18492212891578674, 0.18658392131328583, -0.028589647263288498, 0.31554046273231506, -0.09565811604261398, -0.03226601332426071, -0.1039385125041008, 0.38781192898750305, 0.0027830915059894323, -0.18351763486862183, -0.5879774689674377, 0.0483267642557621, -0.1199408546090126, 0.08362554013729095, -0.25928860902786255, 0.28671059012413025, 0.08760897070169449, -0.08678274601697922, 0.16879500448703766], [-0.18749727308750153, -0.13889217376708984, -0.023631976917386055, 0.06181313097476959, -0.0009049235959537327, 0.06489614397287369, -0.17141839861869812, 0.023512108251452446, 0.004384124185889959, -0.2774091064929962, 0.15805554389953613, -0.04522845894098282, -0.08202967792749405, 0.07625994831323624, -0.13336049020290375, 0.12740395963191986, -0.1573651134967804, -0.04231901094317436, -0.2198624610900879, 0.07417217642068863, -0.3003140985965729, -0.08613501489162445, 0.09156280755996704, 0.10010041296482086, -0.07648423314094543, 0.006785506382584572, 0.09962556511163712, 0.6793749928474426, -0.056554488837718964, 0.578792929649353, -0.12360629439353943, -0.239935502409935], [0.05214916914701462, 0.031421542167663574, 0.22540508210659027, -0.26000386476516724, -0.2905069589614868, 0.06055407598614693, 0.2781842350959778, 0.007174828089773655, -0.011897941119968891, -0.08284604549407959, 0.1504083275794983, 0.04987573251128197, -0.4821782112121582, 0.08909029513597488, 0.10764971375465393, -0.02384660765528679, 0.005218856036663055, -0.03175520896911621, -0.1386832594871521, -0.47045502066612244, -0.09441962838172913, 0.03125803917646408, 0.0018286359263584018, 0.532539963722229, -0.045392923057079315, -0.07902374863624573, -0.3724346458911896, -0.4487598240375519, 0.07607131451368332, 0.05427897721529007, -0.022625911980867386, 0.13244543969631195], [-0.22817400097846985, -0.2676704525947571, -0.0002622247557155788, -0.22980138659477234, -0.03505251929163933, -0.17933693528175354, -0.09621422737836838, 0.033734213560819626, 0.15983478724956512, 0.06898903846740723, 0.01757318526506424, 0.026823950931429863, -0.05052296072244644, 0.1895117312669754, 0.14049531519412994, 0.12344135344028473, 0.13904732465744019, -0.13335487246513367, 0.1887330263853073, -0.1571531444787979, 0.1754574328660965, -0.13591307401657104, 0.014021063223481178, 0.6840478777885437, -0.01295843068510294, 0.04626147449016571, -0.044116586446762085, 0.24521490931510925, 0.8495100140571594, 0.3571304678916931, -0.06505648791790009, 0.12841901183128357], [-0.09131798893213272, -0.05588706210255623, 0.0018332289764657617, -0.052852097898721695, 0.06724677979946136, -0.09124191105365753, -0.16944333910942078, 0.02045024186372757, 0.005615832284092903, 0.04491836205124855, -0.058416783809661865, 0.07972228527069092, 0.25269848108291626, -0.16187046468257904, -0.04565628245472908, -0.002614052500575781, -0.0034331083297729492, -0.019522905349731445, 0.0527559369802475, 0.022524703294038773, 0.023421935737133026, -0.012184049934148788, -0.010930507443845272, -0.06375089287757874, -0.006457266863435507, 0.06678513437509537, 0.06259246915578842, 0.1117742508649826, -0.054701097309589386, -0.13942965865135193, 0.07701190561056137, 0.004358926322311163], [0.12000519037246704, 0.0033497470431029797, 0.08170022070407867, -0.08703147619962692, 0.02704773098230362, 0.16258221864700317, -0.12487785518169403, 0.0011783135123550892, 0.011479958891868591, -0.15961042046546936, -0.3358432650566101, 0.05795658752322197, -0.10718736052513123, -0.05727986991405487, -0.016924338415265083, -0.022773470729589462, -0.009852772578597069, 0.014580070972442627, 0.031170008704066277, -0.0818563848733902, 0.035420700907707214, 0.02804785780608654, 0.009700258262455463, 0.3800795078277588, -0.006497908849269152, 0.0967206135392189, -0.3903290331363678, 0.1093883365392685, -0.21844318509101868, 0.05579990893602371, 0.026081036776304245, 0.014753167517483234], [0.08113430440425873, 0.03261391818523407, 0.007664097473025322, 0.05121397227048874, -0.046638622879981995, 0.0845288559794426, 0.12399175018072128, -0.005812825169414282, -0.030661743134260178, 0.11976740509271622, -0.007284421008080244, -0.08688847720623016, -0.003068229416385293, 0.05809994041919708, 0.06694357097148895, -0.016650306060910225, -0.0305885411798954, 0.02451184205710888, -0.02917620912194252, -0.10030055046081543, -0.02507614530622959, 0.02001497894525528, 0.019191840663552284, -0.13663379848003387, 0.011088588275015354, -0.03212970495223999, 0.04458656907081604, -0.1362341046333313, -0.011900410056114197, -0.07220783084630966, -0.004403675906360149, 0.012732242234051228], [-0.014408458024263382, -0.12425092607736588, -0.021810419857501984, -0.11975452303886414, -0.18018613755702972, 0.05277446657419205, 0.09017673134803772, 0.018764818087220192, 0.16802878677845, 0.1338139921426773, -0.0744887962937355, 0.019045110791921616, 0.08282539993524551, 0.28608009219169617, 0.031214887276291847, -0.06945294141769409, -0.07571273297071457, -0.05126837641000748, -0.1373043805360794, -0.1318739652633667, 0.21938994526863098, 0.018449783325195312, 0.04810966178774834, 0.06963812559843063, 0.010744941420853138, 0.00700960960239172, 0.3985259234905243, -0.4722667634487152, 0.18905499577522278, -0.23657025396823883, 0.025149159133434296, -0.026668742299079895], [0.025501035153865814, -0.06982707977294922, -0.05223315209150314, 0.06561371684074402, -0.04881412535905838, -0.04592398181557655, -0.038244277238845825, -0.006703156977891922, 0.03217008709907532, 0.03513992950320244, 0.09236051142215729, 0.017277903854846954, -0.41370099782943726, -0.08376060426235199, 0.10206106305122375, 0.02094358019530773, -0.04276249185204506, 0.022767512127757072, -0.09609846770763397, -0.08456152677536011, -0.08749225735664368, 0.003714061575010419, 0.02033141627907753, 0.03117443434894085, 0.013518604449927807, 0.06969765573740005, 0.11712951958179474, 0.33528199791908264, -0.1092807799577713, 0.05086583271622658, -0.02969237044453621, -0.008027018047869205], [-0.05550438165664673, -0.012730476446449757, 0.0057126241736114025, -0.09431419521570206, -0.12400063127279282, 0.11965654790401459, 0.05111090838909149, 0.004091009497642517, 0.036956969648599625, 0.0914096087217331, -0.0668892040848732, -0.14475075900554657, 0.02055423893034458, 0.09248004108667374, 0.06587161123752594, 0.014318565838038921, 0.0038304056506603956, -0.02634587325155735, 0.056944433599710464, -0.13072502613067627, 0.012341045774519444, -0.0034615928307175636, 0.003078427631407976, -0.0880977213382721, 0.009868167340755463, -0.04063205048441887, -0.02610563300549984, -0.08544865995645523, 0.2095317244529724, 0.045326486229896545, -0.015374919399619102, 0.028055859729647636], [0.041583821177482605, 0.060067687183618546, -0.050988953560590744, 0.026463346555829048, -0.15611062943935394, 0.06872474402189255, 0.13889998197555542, -0.00877456832677126, 0.14090397953987122, 0.15898002684116364, 0.05048186331987381, -0.11867356300354004, -0.3036437928676605, -0.0766005665063858, 0.2090744525194168, -0.031557001173496246, -0.07188967615365982, 0.04008625075221062, -0.0012653832091018558, -0.2918097972869873, -0.09725527465343475, 0.04474862664937973, 0.03160518780350685, 0.03029569983482361, 0.011448036879301071, 0.0355989970266819, -0.08323641866445541, 0.022767309099435806, 0.12438726425170898, -0.0018356095533818007, 0.014851585030555725, 0.021087652072310448], [0.04468853026628494, -0.18877072632312775, 0.004645638633519411, 0.04832841828465462, -0.18122997879981995, 0.16286136209964752, 0.18542546033859253, -0.012132503092288971, -0.17002888023853302, 0.22881726920604706, 0.04893295466899872, -0.24363304674625397, 0.16922658681869507, 0.01784718595445156, 0.06977420300245285, -0.07107741385698318, -0.07520384341478348, 0.033472009003162384, 0.04238523170351982, -0.08461739867925644, -0.1383015364408493, 0.04781422019004822, 0.036263130605220795, -0.046915553510189056, 0.015218188986182213, -0.3201058506965637, -0.14076338708400726, -0.16248197853565216, 0.1867397576570511, -0.21015127003192902, 0.08379317075014114, 0.008280256763100624], [0.153009831905365, 0.07758302241563797, 0.019917799159884453, 0.09503251314163208, -0.15106020867824554, 0.23691847920417786, 0.27056071162223816, -0.006405343767255545, -0.07268594950437546, 0.09197558462619781, 0.07436991482973099, -0.28943634033203125, 0.15054312348365784, -0.005179570987820625, 0.0489879846572876, -0.04118967801332474, -0.034697722643613815, 0.022990668192505836, -0.05697016417980194, -0.17289625108242035, -0.05044493079185486, 0.03759671002626419, 0.025176364928483963, -0.007597184740006924, 0.006128319073468447, -0.1579117625951767, -0.16218672692775726, -0.2402714490890503, -0.020588329061865807, -0.19975468516349792, 0.023082945495843887, -0.0018205565866082907], [-0.0011494852369651198, 0.002174793742597103, 0.0009370285551995039, 0.001375918393023312, -0.0037779745180159807, 0.004291130229830742, 0.004677547607570887, -0.00022730923956260085, -0.0015841148560866714, 0.003870332147926092, -0.00047557696234434843, -0.005041295662522316, 0.003813090268522501, 0.0014433794422075152, 0.00198203232139349, -0.0003087654185947031, -0.000913259107619524, 0.0005756994360126555, 0.0014500718098133802, -0.003941047471016645, -0.0011365783866494894, 0.00045755584142170846, 0.0006124115898273885, -0.006464820820838213, 0.00025250049657188356, -5.1955434173578396e-05, 0.0015794853679835796, -0.0039911167696118355, 0.0016090987483039498, -0.0015505685005337, -0.000252393598202616, -0.0003722200053744018], [-0.016812639310956, -0.28878846764564514, -0.08510791510343552, -0.08194031566381454, -0.03292742744088173, 0.0405353419482708, -0.08907332271337509, -0.0015112105756998062, 0.193905308842659, 0.01794721558690071, -0.06110607087612152, 0.07857636362314224, -0.22632335126399994, 0.0006694087642244995, 0.04459404572844505, 0.031479693949222565, 0.023164771497249603, -0.016634667292237282, 0.013185116462409496, -0.014145882800221443, 0.03184223920106888, 0.010151859372854233, -0.007899430580437183, -0.14720019698143005, 0.018619084730744362, 0.05164054408669472, -0.0003786323359236121, 0.2160298079252243, 0.05576586723327637, 0.10783612728118896, 0.005978772882372141, 0.03311555087566376], [0.02737126126885414, -0.03957797586917877, 0.06603238731622696, 0.05975351855158806, -0.021561218425631523, 0.08349353820085526, 0.08262493461370468, -0.002831836696714163, -0.007644537836313248, 0.017400993034243584, -0.08114426583051682, -0.046217672526836395, -0.10540959984064102, -0.010395311750471592, 0.04971823841333389, -0.011114021763205528, -0.02429518848657608, 0.00705820182338357, 0.042785827070474625, 0.017427196726202965, -0.013598340563476086, 0.013471175916492939, -0.01514928787946701, -0.15433195233345032, 0.01236804947257042, 0.05152194947004318, 0.10074839740991592, -0.018905386328697205, -0.188987135887146, -0.008217619732022285, 0.01742764562368393, -0.01753680780529976], [0.021069340407848358, 0.143341526389122, -0.012625758536159992, 0.060113802552223206, -0.0786491259932518, 0.10506030917167664, 0.02278878353536129, -0.00021882962028030306, 0.010784056968986988, 0.020549023523926735, 0.04118385910987854, -0.1626996248960495, 0.21767492592334747, 0.09110087156295776, -0.021745886653661728, -0.02958020009100437, -0.030818132683634758, 0.025956695899367332, -0.05590498074889183, -0.09896022826433182, -0.030426284298300743, 0.010007909499108791, 0.02583903633058071, 0.0425138846039772, -0.008076288737356663, 0.12994666397571564, 0.03162641078233719, -0.12462297081947327, 0.12012191861867905, -0.09412878006696701, 0.03362094983458519, -0.04260461404919624], [-0.03765681013464928, 0.1870124489068985, 0.07867197692394257, 0.07384950667619705, -0.3582514524459839, 0.18958646059036255, 0.17331001162528992, -0.002785023069009185, -0.08994685113430023, 0.2661406099796295, 0.06865938007831573, -0.21888026595115662, 0.08604385703802109, 0.014854073524475098, 0.19428642094135284, -0.01224268414080143, 0.020434444770216942, -0.0007039848132990301, 0.06711726635694504, -0.4462044835090637, -0.10405179858207703, 0.053005266934633255, -0.022763513028621674, -0.1456456184387207, 0.015164981596171856, -0.13631698489189148, -0.11524595320224762, -0.23243597149848938, 0.2062971442937851, -0.04194564372301102, 0.048130057752132416, 0.013505706563591957], [-0.06777689605951309, 0.38225841522216797, -0.2191302627325058, -0.08007252216339111, -0.21125252544879913, 0.4055056869983673, 0.3334512412548065, 0.023572281002998352, 0.2560374140739441, 0.2403513342142105, 0.260713130235672, 0.016357945278286934, -0.13441766798496246, 0.16035084426403046, 0.09560646116733551, -0.1147405281662941, -0.13197365403175354, -0.027123844251036644, -0.25662529468536377, -0.07836179435253143, -0.14783120155334473, 0.05606095865368843, 0.04459047690033913, -0.35780662298202515, -0.05299472436308861, -0.36901915073394775, 0.01348879560828209, -0.22698259353637695, -0.09544381499290466, -0.3995390832424164, 0.026171017438173294, -0.0396483838558197], [0.12999874353408813, 0.05867767333984375, 0.040598079562187195, -0.034416742622852325, -0.07127487659454346, 0.12348833680152893, 0.14373460412025452, 0.002109132707118988, -0.04977480322122574, 0.1255374252796173, -0.0946752056479454, -0.18172438442707062, 0.1239268109202385, 0.1875639706850052, 0.016144612804055214, -0.05091822147369385, -0.028564613312482834, 0.0038026953116059303, -0.10988710820674896, -0.09603435546159744, 0.009863754734396935, 0.000854875601362437, 0.019873131066560745, -0.059800248593091965, -0.01206256914883852, -0.0643918365240097, -0.07904719561338425, -0.32646235823631287, 0.13752897083759308, -0.024296963587403297, -0.03157266229391098, -0.019622888416051865], [0.04825307056307793, 0.009205504320561886, 0.02104710042476654, 0.014082449488341808, -0.07273976504802704, 0.04005911946296692, 0.024836799129843712, 0.0002599610306788236, 0.01698293909430504, 0.045712921768426895, 0.047949861735105515, -0.009713064879179, -0.07486781477928162, 0.008692910894751549, 0.037035007029771805, -0.02495293691754341, -0.023860909044742584, 0.00590369151905179, -0.04665171727538109, -0.08461866527795792, -0.021879982203245163, 0.018103215843439102, 0.02498546615242958, 0.07371361553668976, -0.003192888805642724, -0.032920774072408676, -0.028045449405908585, 0.03763895854353905, -0.023062849417328835, -0.05515561252832413, -0.009992621839046478, 0.0013038323959335685], [0.009016735479235649, 0.019577372819185257, 0.0023483086843043566, 0.007490554358810186, -0.01683378592133522, 0.015728900209069252, 0.021365171298384666, -0.0006498146685771644, -0.0023845809046179056, 0.01903611421585083, -0.008369163610041142, -0.020181836560368538, 0.008854932151734829, 0.011753533035516739, 0.01158224605023861, -0.004495546687394381, -0.00404153298586607, 0.003691206919029355, 0.00035878445487469435, -0.01874271035194397, 0.007633629254996777, 0.002149661537259817, 0.0028320637065917253, -0.02612185850739479, 0.000657392549328506, -0.003381261369213462, 0.008554012514650822, -0.023534201085567474, 0.006014402024447918, -0.0037531640846282244, -0.002292086137458682, 0.0005246367072686553], [-0.0017723380587995052, 0.01698099635541439, -0.0032338479068130255, -0.014243985526263714, 0.0059779551811516285, -0.011966084130108356, -0.03729132190346718, -0.0010112009476870298, 0.04495549574494362, 0.000991091481409967, -0.013808400370180607, -0.015537772327661514, -0.001324347802437842, 0.009598717093467712, 0.00509392935782671, -0.00461264094337821, -0.0012586666271090508, 0.0041683088056743145, 0.009418372996151447, -0.008722467347979546, -0.007279777433723211, 0.005174046847969294, 0.001541203004308045, -0.04765753075480461, 0.0014560292474925518, -0.012547982856631279, 0.015634313225746155, 0.03400971367955208, -0.01766202040016651, 0.01101413369178772, 0.0002968597400467843, 0.0006874462706036866], [-0.0059707313776016235, 0.0028381652664393187, 0.003905356163159013, 0.006008772645145655, -0.013021359220147133, 0.017958249896764755, 0.02022796869277954, -0.0008528147591277957, -0.0029259752482175827, 0.020143557339906693, -0.009541201405227184, -0.01863887719810009, 0.013252444565296173, 0.014059784822165966, 0.010837754234671593, -0.00046559772454202175, -0.005374625790864229, 0.003098613116890192, 0.011732740327715874, -0.01659916155040264, -0.006219891365617514, 0.002377621829509735, 0.0030664594378322363, -0.03608669340610504, 0.0016416116850450635, 0.0010811585234478116, 0.01603638008236885, -0.02515457570552826, -0.0008637164137326181, -0.0028855681885033846, -0.0011263492051512003, -0.0011486111907288432], [0.18563567101955414, 0.08720514923334122, 0.04933560639619827, 0.11167386174201965, -0.022406937554478645, -0.010315134190022945, 0.05436260253190994, -0.008965956047177315, -0.02647256664931774, 0.04042137414216995, 0.1635240614414215, -0.003121059387922287, -0.0913860946893692, 0.09733527898788452, 0.053862132132053375, -0.04199657216668129, -0.06616374105215073, 0.04145917296409607, -0.19218657910823822, -0.04194978252053261, -0.14272093772888184, 0.017039142549037933, 0.030321070924401283, 0.07618013024330139, 0.003940364811569452, 0.08922252804040909, 0.2045588195323944, -0.013744458556175232, -0.23208361864089966, -0.08060440421104431, -0.04913703724741936, -0.04660310223698616], [0.03311483561992645, 0.16685478389263153, 0.09468071907758713, 0.01847214438021183, -0.2753846347332001, 0.040697131305933, -0.015402518212795258, -0.005802426021546125, 0.007032877299934626, 0.02821461111307144, 0.0547340102493763, -0.11836479604244232, -0.3304254114627838, -0.014844204299151897, 0.2139206975698471, 0.005731832701712847, -0.020661531016230583, 0.014459852129220963, -0.028531406074762344, -0.25551512837409973, -0.03132187947630882, 0.028059085831046104, 0.024157162755727768, 0.09374526888132095, 0.005323288030922413, 0.06427142769098282, -0.03739362955093384, 0.12716829776763916, 0.167039155960083, 0.20765931904315948, -0.010223551653325558, 0.031226955354213715], [-0.12480564415454865, 0.4057416319847107, -0.031124835833907127, -0.2452581524848938, -0.02421482838690281, -0.1073422059416771, -0.19452127814292908, 0.00961998663842678, 0.14104115962982178, -0.027566203847527504, 0.10196791589260101, -0.04550355300307274, -0.01645554229617119, 0.03985929116606712, 0.038886215537786484, 0.02844860777258873, 0.057645998895168304, -0.004535811487585306, 0.020699704065918922, -0.06513972580432892, 0.018798915669322014, -0.03356187418103218, 0.005460997112095356, -0.15657880902290344, 0.00807980913668871, 0.376941978931427, -0.20343610644340515, 0.2245003879070282, 0.07298910617828369, 0.12547820806503296, 0.010435246862471104, 0.06285184621810913], [0.010521587915718555, -0.001989106647670269, 0.0029639839194715023, 0.0066434163600206375, -0.00896264985203743, 0.012757239863276482, 0.012672437354922295, -0.0005541561404243112, -0.00013836317521054298, 0.011276821605861187, -0.002216016873717308, -0.012757775373756886, 0.012889042496681213, 0.001398107036948204, 0.004994846414774656, -0.0035758409649133682, -0.0031846200581640005, 0.0017984382575377822, -0.002851389581337571, -0.008420850150287151, 0.003047618316486478, 0.0031479664612561464, 0.0020981235429644585, -0.014236398972570896, 0.0005864663980901241, -0.005085109733045101, 0.0029521083924919367, -0.017253272235393524, 1.5740972230560146e-05, -0.008004222996532917, 0.0005494313081726432, -8.602641901234165e-05], [0.006833516526967287, 2.5860590540105477e-05, -0.0011480030370876193, -0.011306200176477432, 0.02288486622273922, -0.026049509644508362, -0.020129933953285217, 0.0004467508988454938, 0.017285101115703583, -0.014810217544436455, 0.002968271728605032, 0.03022950328886509, -0.0070564113557338715, -0.004094602540135384, -0.008397629484534264, -0.003927134908735752, 0.00036190662649460137, 0.0001363351766485721, -0.0024565381463617086, 0.02026752196252346, 0.0015503354370594025, 0.0024603246711194515, 0.00020661107555497438, 0.01695859059691429, -0.0004301706503611058, -0.00047359458403661847, -0.0007046026876196265, 0.012890945188701153, -0.01549909170717001, 0.0006039303843863308, 0.0021920595318078995, 0.000922699982766062], [-0.04128439724445343, -0.18617911636829376, -0.020257459953427315, -0.04342085123062134, -0.14070317149162292, 0.11776428669691086, -0.06627021729946136, 0.002647534478455782, 0.17456942796707153, 0.15802834928035736, -0.10310020297765732, -0.24089404940605164, 0.016052715480327606, 0.06565261632204056, 0.07128424942493439, 0.0035740607418119907, 0.004388616885989904, -0.005707584321498871, 0.06251400709152222, -0.15792155265808105, 0.0362769216299057, 0.012706202454864979, 0.0027367251459509134, -0.4102804958820343, 0.012335317209362984, 0.004807948600500822, 0.18770915269851685, -0.07558756321668625, 0.002890033880248666, 0.009388954378664494, 0.021967532113194466, 0.022372055798768997], [0.0035642206203192472, 0.008706184104084969, 0.0034974298905581236, -0.004730609245598316, 0.00044778399751521647, 0.00464889220893383, 0.007123608607798815, 0.00036316714249551296, -0.0024938788264989853, 0.00672092754393816, 0.003752885153517127, -0.0029866511467844248, 0.01314483117312193, 0.00241960771381855, 0.002728925319388509, -0.0016814065165817738, -0.0014158814447000623, -0.00045464004506357014, -0.005305365659296513, -0.004129576496779919, 0.00011098801769549027, 0.0005269608227536082, 0.0019368535140529275, -0.003844002028927207, 0.0005732207209803164, -0.008186432532966137, -0.001006802194751799, -0.011601543985307217, 0.0062522683292627335, -0.008094909600913525, -0.0007125715492293239, 0.001480164472013712], [-0.15315066277980804, -0.04363522678613663, 0.005038843955844641, -0.17428895831108093, -0.01374509185552597, 0.04479602351784706, -0.09977775812149048, 0.0022551489528268576, 0.18327057361602783, 0.012053731828927994, -0.3208414912223816, -0.06575971096754074, 0.23855134844779968, 0.1801118403673172, 0.0013865953078493476, 0.0230480395257473, 0.022394785657525063, -0.023982789367437363, 0.025654368102550507, -0.00482705095782876, 0.14032088220119476, -0.008650990203022957, -0.008181428536772728, -0.25384587049484253, 0.002764699049293995, -0.3256707489490509, -0.08362535387277603, -0.10470837354660034, 0.2598339319229126, 0.14642144739627838, 0.009933598339557648, 0.033479537814855576], [-0.07799247652292252, -0.021843092516064644, -0.015471535734832287, 0.0016206305008381605, -0.1793312132358551, 0.15776412189006805, 0.08940942585468292, -0.00216283299960196, 0.0767427459359169, 0.1382448822259903, -0.08163993805646896, -0.21107321977615356, -0.0039960346184670925, 0.10511256009340286, 0.08008527755737305, 0.017216751351952553, -0.0158547293394804, -0.005293233320116997, -0.0017493880586698651, -0.18235327303409576, 0.03450007736682892, -0.005096793174743652, 0.002818301087245345, -0.29791125655174255, 0.011228933930397034, -0.03534865379333496, 0.14934425055980682, -0.1212548166513443, 0.09415197372436523, 0.040484149008989334, -0.0205604936927557, -0.00991532951593399], [0.0989045649766922, 0.13963046669960022, -0.034054867923259735, 0.15582777559757233, -0.04752472788095474, 0.09530967473983765, 0.07706591486930847, -0.010132601484656334, -0.13549397885799408, 0.18931446969509125, -0.08428650349378586, -0.10214853286743164, 0.47090327739715576, 0.11383706331253052, -0.004378315061330795, -0.07651548087596893, -0.13201729953289032, 0.014974274672567844, -0.07590941339731216, 0.1374044567346573, 0.07593512535095215, 0.024309813976287842, -0.007967597804963589, -0.4240783452987671, -0.016634536907076836, -0.2141585350036621, 0.15430566668510437, -0.2127479463815689, -0.14846085011959076, -0.30149781703948975, 0.002775479108095169, -0.03816910460591316], [-0.0025919212494045496, -0.024211257696151733, 0.0019949120469391346, 0.049599386751651764, -0.17383497953414917, 0.17295733094215393, 0.1900739222764969, -0.0009993042331188917, -0.04976590722799301, 0.15674543380737305, 0.004586243070662022, -0.21836166083812714, -0.04431627690792084, 0.03856824338436127, 0.07980222254991531, 0.010129031725227833, -0.015254958532750607, -0.006273658014833927, 0.04513005539774895, -0.18149293959140778, 0.0049422308802604675, 0.003407275304198265, 0.009526394307613373, -0.17157094180583954, 0.0033832434564828873, 0.08781065046787262, -0.056451793760061264, -0.15468987822532654, 0.11716824024915695, -0.007680384907871485, -0.011561618186533451, 0.0020588033366948366], [-0.014587451703846455, 0.11490467190742493, -0.1452404111623764, -0.07632724195718765, 0.12968401610851288, -0.11758249253034592, -0.12352900207042694, 0.017615865916013718, 0.10894251614809036, -0.13140259683132172, -0.0013554347679018974, -0.04953290894627571, 0.6172074675559998, -0.1928156018257141, -0.11523165553808212, -0.018731944262981415, 0.04480452090501785, -0.029008405283093452, 0.2918146848678589, 0.1823069155216217, -0.00781859178096056, 0.010699635371565819, -0.062031619250774384, -0.14236170053482056, -0.02481817826628685, 0.1030818372964859, -0.15745891630649567, -0.1753896176815033, -0.08019620180130005, -0.20068390667438507, 0.07002299278974533, 0.022214390337467194], [0.046620868146419525, 0.028984952718019485, 0.019958173856139183, 0.00954592227935791, -0.035282641649246216, 0.0420384407043457, 0.040055952966213226, -0.0013217405648902059, -0.009607884101569653, 0.039171524345874786, 0.022921627387404442, -0.04417230188846588, 0.03733338415622711, 0.05557991564273834, 0.025566760450601578, -0.011230187490582466, -0.021250270307064056, 0.00284195551648736, -0.06966769695281982, -0.037039317190647125, -0.015076005831360817, 0.000557454361114651, 0.011894185096025467, -0.010926177725195885, 0.0020579746924340725, -0.015127362683415413, 0.03906663507223129, -0.05389923229813576, -0.0017968866741284728, -0.02985977567732334, -0.02538822591304779, -0.012206251733005047], [0.034356530755758286, 0.032914161682128906, -0.0029568944592028856, -0.008465318940579891, 0.04170101508498192, -0.04582945257425308, -0.07424735277891159, -0.0015784280840307474, 0.027200425043702126, -0.005864616949111223, -0.011461006477475166, 0.01660953275859356, 0.0007237855461426079, 0.023118043318390846, -0.005178401712328196, -0.010838411748409271, -0.0025787008926272392, 0.007647749502211809, -0.011621876619756222, 0.008442625403404236, 0.011562216095626354, 0.0037554893642663956, 0.005936440080404282, 0.00787972379475832, 0.007010235916823149, 0.0009766069706529379, 0.017397519201040268, 0.018824946135282516, -0.0066034747287631035, 0.013870388269424438, -0.0009745140559971333, 0.007170444820076227]], "rec.bias_ih_l0": [0.20450812578201294, -0.6820935606956482, -0.10286760330200195, 0.1620345562696457, -0.029241930693387985, -0.190046027302742, 0.0078109558671712875, 0.006901712156832218, -0.038068994879722595, 0.06594647467136383, -0.16501636803150177, -0.028829500079154968, -0.7436559796333313, -0.2108551263809204, -0.07402202486991882, 0.025221871212124825, -0.04150953143835068, 0.024985244497656822, -0.06668934971094131, 0.07820454239845276, -0.11906160414218903, 0.014048757962882519, -0.07106071710586548, 0.4024479389190674, -0.006638467311859131, -0.1934223473072052, 0.16624997556209564, -0.14452801644802094, 0.2465195208787918, -0.03602594882249832, 0.04675746709108353, -0.06756158173084259, 0.21248824894428253, 0.8243409395217896, 0.18214868009090424, 0.14680126309394836, 0.6745535135269165, 0.20675942301750183, 0.25650498270988464, 0.006004438269883394, 0.09114587306976318, 0.06265441328287125, 0.08221442252397537, 0.4434124827384949, 0.5020586252212524, 0.2647462785243988, 0.03985197842121124, 0.02731991931796074, 0.005311958026140928, 0.00983898900449276, 0.17013852298259735, 0.4612713158130646, 0.32599928975105286, 0.012208880856633186, -0.033951401710510254, 0.21218813955783844, 0.006870172452181578, 0.04645908996462822, 0.1975124031305313, 0.7428155541419983, 0.15909148752689362, 0.36621901392936707, 0.06965529173612595, 0.06887462735176086, 0.10584183782339096, -0.059534501284360886, -0.08480468392372131, 0.05083269625902176, 0.01215644832700491, 0.04562047868967056, 0.01705935411155224, 0.012818419374525547, 0.10192099213600159, 0.16319721937179565, -0.06178177893161774, -0.09345732629299164, -0.061489205807447433, -0.031104249879717827, 0.0240586306899786, -0.021332968026399612, 0.007967370562255383, 0.09963744878768921, 0.05600377544760704, -0.019551953300833702, 0.030048690736293793, 0.12073303759098053, 0.15749423205852509, -0.00024578982265666127, 0.16390590369701385, 0.03943729028105736, -0.22909928858280182, 0.1853579580783844, -0.12716932594776154, -0.06838992238044739, 0.05244928225874901, 0.2748345732688904, 0.23404283821582794, -0.07714029401540756, -0.09842628985643387, 0.18338565528392792, -0.16881519556045532, -0.24250289797782898, -0.03665076941251755, 0.0068933977745473385, -0.019412221387028694, 0.028908977285027504, -0.0759829729795456, -0.22108913958072662, -0.14273467659950256, 0.05194728821516037, -0.10594531148672104, 0.027010081335902214, -0.052299994975328445, 0.026432743296027184, -0.004141179844737053, -0.03248225525021553, -0.1314634084701538, 0.013408396393060684, -0.07512126863002777, 0.6681352257728577, -0.003683073678985238, -0.03441643714904785, 0.33691802620887756, -0.1233978122472763, 0.32427072525024414, 0.2205427587032318, 0.05087732523679733, -0.05995512008666992], "rec.bias_hh_l0": [0.20458707213401794, -0.6965284943580627, -0.11064580082893372, 0.16379988193511963, -0.027427492663264275, -0.16681113839149475, -0.02881351299583912, 0.006901717744767666, -0.09437676519155502, 0.0777510330080986, -0.21223865449428558, -0.016870781779289246, -0.74397873878479, -0.17834043502807617, -0.0740199089050293, 0.02526664361357689, -0.030130833387374878, 0.024669134989380836, -0.06749781221151352, 0.07829935848712921, -0.14381223917007446, 0.013677187263965607, -0.07113119959831238, 0.3225376009941101, -0.006971796043217182, -0.17228850722312927, 0.16371138393878937, -0.14138410985469818, 0.23205770552158356, -0.10083644837141037, 0.04684383049607277, -0.05851313844323158, 0.21251584589481354, 0.8175994157791138, 0.17608605325222015, 0.14538481831550598, 0.660301923751831, 0.2614622116088867, 0.08644307404756546, 0.006004439666867256, 0.19341562688350677, 0.06269270181655884, 0.1744365245103836, 0.4214880168437958, 0.5821719169616699, 0.2664697766304016, 0.03971423953771591, 0.027461398392915726, 0.009672523476183414, 0.00977835338562727, 0.1687610000371933, 0.4474027454853058, 0.3503721356391907, 0.011860605329275131, -0.034690093249082565, 0.3077772855758667, 0.0068176728673279285, 0.048878688365221024, 0.21378642320632935, 0.8264337778091431, 0.11869819462299347, 0.506972074508667, 0.0697171539068222, 0.06597591936588287, 0.08951212465763092, -0.11582913994789124, 0.07854447513818741, -0.21686330437660217, -0.001643905881792307, 0.00747342873364687, -0.10465061664581299, -0.02535889483988285, -0.017167160287499428, 0.28085094690322876, -0.20687682926654816, -0.02777867577970028, -0.1242622435092926, -0.1186303123831749, 0.16735859215259552, -0.018699705600738525, 0.04439162462949753, -0.024715183302760124, -0.007615830283612013, -0.14319105446338654, 0.30669084191322327, -0.03403492271900177, -0.049527741968631744, -0.3094317317008972, -0.008321797475218773, -0.16733889281749725, 0.017178835347294807, -0.01830877922475338, 0.05116146057844162, 0.09350641071796417, 0.08200392872095108, 0.17880389094352722, 0.2340538650751114, -0.14184992015361786, -0.10208851099014282, 0.1829776018857956, -0.17949114739894867, -0.27061888575553894, -0.018336793407797813, 0.006893408019095659, -0.11287344992160797, 0.0033135339617729187, -0.009808051399886608, -0.2397046983242035, -0.021191105246543884, -0.06702037155628204, -0.10594159364700317, 0.026379799470305443, -0.05155721306800842, 0.02648850902915001, -0.008700690232217312, -0.041380975395441055, -0.11830770969390869, 0.012500649318099022, -0.07703735679388046, 0.575251042842865, -0.004426619969308376, -0.04576355218887329, 0.33606112003326416, -0.11961611360311508, 0.3193992078304291, -0.005276304204016924, 0.051096946001052856, -0.06425613909959793], "lin.weight": [[-0.050772227346897125, 0.29945915937423706, -0.025530315935611725, -0.11268492043018341, 0.023474711924791336, -0.019425522536039352, 0.08994424343109131, 0.05693524703383446, -0.20869223773479462, -0.14188183844089508, 0.2560202479362488, -0.09687957167625427, 0.3399825990200043, -0.127180814743042, -0.10829340666532516, -0.015805434435606003, 0.14779287576675415, -0.10430886596441269, 0.129505917429924, 0.005409931298345327, 0.04821975156664848, 0.005242796614766121, -0.030841534957289696, 0.34178924560546875, -0.11374722421169281, -0.29402878880500793, -0.5303606986999512, -0.13809576630592346, 0.1979334056377411, -0.3475613296031952, 0.13519057631492615, 0.1365324854850769]], "lin.bias": [0.02827407233417034]}} \ No newline at end of file diff --git a/models/red.json b/models/red.json index fbe1bd5..bb63f13 100644 --- a/models/red.json +++ b/models/red.json @@ -1 +1 @@ -{"model_data": {"model": "SimpleRNN", "input_size": 1, "skip": 1, "output_size": 1, "unit_type": "LSTM", "num_layers": 1, "hidden_size": 20, "bias_fl": true}, "state_dict": {"rec.weight_ih_l0": [[0.038275640457868576], [0.06886839866638184], [-0.1502750664949417], [0.2730579674243927], [-0.2715951204299927], [0.039567332714796066], [-0.14087630808353424], [0.021894536912441254], [0.011585276573896408], [-0.2037317007780075], [-0.11327213793992996], [-0.11028123646974564], [0.05000689625740051], [0.11542175710201263], [0.38905417919158936], [-0.14068526029586792], [-0.06519859284162521], [-0.18857966363430023], [-0.03129665181040764], [0.0038629979826509953], [0.04731830209493637], [0.37157994508743286], [-0.002329512732103467], [0.17039941251277924], [-0.03065253049135208], [-0.053858838975429535], [0.07360727339982986], [0.09476064145565033], [0.07233888655900955], [-0.08737693727016449], [0.006310873664915562], [-0.0757015123963356], [0.18484726548194885], [0.11601312458515167], [-0.20094993710517883], [-0.14369246363639832], [0.012167819775640965], [0.11530190706253052], [0.054265107959508896], [0.07129348069429398], [-0.07400576025247574], [-0.12360679358243942], [0.26102888584136963], [0.4372687041759491], [-0.20368874073028564], [-0.1986912339925766], [0.2803972363471985], [-0.9154958128929138], [-0.056337349116802216], [0.16424034535884857], [0.3839210271835327], [-0.17870278656482697], [-3.749399185180664], [-0.21247027814388275], [-0.061799775809049606], [-0.4015566110610962], [2.2631025314331055], [0.3343213200569153], [-0.4379335045814514], [-0.7732956409454346], [0.04232536628842354], [0.2944228947162628], [-0.1601307988166809], [0.12625887989997864], [-0.32021400332450867], [-0.04739309474825859], [-0.00808756984770298], [-0.296330064535141], [0.028168953955173492], [0.044660668820142746], [0.035569414496421814], [0.04191756621003151], [0.44879594445228577], [0.09427997469902039], [0.1663900464773178], [-0.16415752470493317], [-0.03794700279831886], [-0.03482210636138916], [0.10281344503164291], [-0.0042440518736839294]], "rec.weight_hh_l0": [[0.09965022653341293, 0.07999306917190552, 0.7003983855247498, -0.2858133614063263, 0.2717991769313812, 0.022515270859003067, 0.04570654034614563, -0.029427628964185715, 0.08354140818119049, -0.006313570775091648, 0.13451851904392242, -0.6563547849655151, -0.002380170626565814, -0.10671252012252808, -0.3961053490638733, -0.5667250156402588, -0.18909256160259247, 0.20706415176391602, -0.2054150253534317, 0.10737711191177368], [0.013447639532387257, -0.21092112362384796, 0.16436409950256348, 0.06213561072945595, 0.10659196227788925, 0.07793822884559631, 0.09587674587965012, -0.0512620247900486, 0.022161666303873062, -0.05142110958695412, -0.11423033475875854, -0.08086980879306793, 0.09387766569852829, 0.016050972044467926, -0.1858626753091812, 0.047505367547273636, 0.018754975870251656, 0.08231697231531143, 0.12860575318336487, -0.09514304995536804], [-0.002286297734826803, 0.28987619280815125, -0.04701051861047745, -0.6245349645614624, -0.02161269262433052, 0.09139902889728546, 0.12309528887271881, -0.1016395092010498, -0.07834126800298691, 0.1535920649766922, -0.000851979129947722, 0.03119460679590702, 0.2748588025569916, -0.10807126760482788, 0.08919243514537811, -0.08813238143920898, -0.21558967232704163, -0.0012266229605302215, -0.0009623996447771788, 0.18741962313652039], [0.32523080706596375, -0.3673793375492096, 0.789037823677063, 0.11034310609102249, 0.6746624708175659, 0.18220509588718414, -0.03257042169570923, -0.4523238241672516, -0.020147325471043587, -0.015869511291384697, 0.24116918444633484, -0.8707239031791687, -0.5539767742156982, 0.018946079537272453, -0.11994434893131256, -0.9365959763526917, 0.3172655403614044, 0.10716407746076584, -0.10498427599668503, -0.14880020916461945], [0.27659156918525696, 0.022585758939385414, 1.195335030555725, 0.1419990360736847, 0.212821364402771, -0.02174987643957138, -0.24239039421081543, 0.5147957801818848, 0.0862518846988678, -0.09906359016895294, -0.2093590795993805, -0.6975158452987671, -0.24091894924640656, -0.6834990978240967, -0.26599621772766113, -0.7911263108253479, -0.7236875891685486, -0.08203201740980148, -0.28185150027275085, 0.043454162776470184], [-0.022501684725284576, 0.21047845482826233, -0.48695024847984314, 0.30575937032699585, -0.46220678091049194, -0.01989136077463627, -0.07793932408094406, -0.12151705473661423, -0.0262357909232378, 0.0026948382146656513, -0.11552885919809341, 0.501070499420166, -0.3450654149055481, -0.025673693045973778, 0.45624804496765137, 0.3577798902988434, 0.043541133403778076, 0.06994780153036118, 0.14302554726600647, 0.07293211668729782], [-0.11440706998109818, 0.219572976231575, 0.4333951771259308, -0.31272652745246887, 0.013330583460628986, 0.11402782052755356, -0.18925347924232483, -0.08840315043926239, 0.024641605094075203, -0.11131462454795837, 0.2905617654323578, -0.5632139444351196, 0.016839373856782913, -0.07618501037359238, -0.21063730120658875, -0.4264552891254425, -0.16296912729740143, 0.0028956024907529354, -0.2855755388736725, 0.06353477388620377], [-0.0180117879062891, 0.20733825862407684, -0.5497914552688599, 0.3440481722354889, -0.3867732286453247, -0.028140215203166008, -0.12187756597995758, 0.045818839222192764, -0.03204268589615822, -0.0074070212431252, -0.08878785371780396, 0.5571561455726624, -0.26909083127975464, -0.04146499186754227, 0.42344722151756287, 0.42445510625839233, 0.13287930190563202, 0.08479141443967819, 0.16868753731250763, 0.05810369923710823], [-0.16988256573677063, 0.09383730590343475, 0.26487061381340027, -0.26768696308135986, -0.05292579531669617, 0.004751660395413637, 0.05108063295483589, -0.062366485595703125, -0.08298877626657486, 0.008859232999384403, 0.06202598661184311, -0.22795212268829346, -0.00916813500225544, 0.05530723184347153, -0.20584224164485931, -0.24149608612060547, -0.09678538143634796, 0.0060210260562598705, -0.15517641603946686, -0.0984015092253685], [-0.01578243263065815, 0.046386249363422394, 0.3979033827781677, -0.09576131403446198, 0.12201111763715744, 0.1058608815073967, 0.03464139625430107, -0.045625895261764526, 0.12602736055850983, -0.07660830765962601, 0.21364988386631012, -0.5200377702713013, -0.009686681441962719, -0.07577832788228989, -0.19894897937774658, -0.2920059561729431, -0.07294685393571854, -0.0011260808678343892, -0.20574559271335602, -0.05806957557797432], [-0.13333767652511597, -0.034667953848838806, 0.07115308195352554, 0.08775758743286133, 0.08774267882108688, 0.21517834067344666, 0.04801388084888458, -0.21113130450248718, 0.04064667597413063, 0.05314824730157852, -0.12401401251554489, 0.05679122731089592, 0.04183230176568031, -0.23113039135932922, 0.034414142370224, -0.03368465229868889, -0.03171151876449585, -0.0762668251991272, 0.14857691526412964, 0.2515239417552948], [-0.026603708043694496, 0.026883956044912338, -0.07349614799022675, 0.09579195827245712, 0.1025008112192154, -0.12288765609264374, -0.04969031736254692, -0.1256924271583557, -0.020639685913920403, -0.03805714473128319, 0.07835231721401215, 0.15062160789966583, 0.07221152633428574, 0.05727877840399742, -0.12683536112308502, 0.13488979637622833, 0.0705045610666275, -0.018330903723835945, -0.076743483543396, -0.07924583554267883], [-0.2589549124240875, 0.4949992299079895, -0.581375777721405, -1.5286080837249756, -0.8074108362197876, -0.15590792894363403, 0.38561850786209106, -0.19263699650764465, -0.1928998827934265, 0.18232493102550507, 0.3534960448741913, 0.08957245200872421, -0.0867827758193016, -0.31165581941604614, 0.3212830722332001, 0.3946969211101532, 0.2848735451698303, 0.07152339816093445, 0.03231021389365196, -0.04555520787835121], [0.09170161932706833, 0.2329256385564804, 0.11076994240283966, 0.049028728157281876, 0.26463019847869873, 0.16350021958351135, -0.06756829470396042, -0.5166727304458618, 0.02869940549135208, -0.04264184832572937, 0.012542514130473137, -0.08576813340187073, -0.15360122919082642, -0.0509251169860363, -0.07448101043701172, -0.10153298825025558, 0.5053712129592896, 0.14107179641723633, -0.02007080428302288, -0.04297029227018356], [-0.10997077822685242, -0.318663090467453, 0.6639400720596313, -0.07614880800247192, 0.5985143780708313, 0.02622850611805916, -0.3565507233142853, -0.492214560508728, 0.23281323909759521, 0.09129256010055542, -0.0019704075530171394, -0.6328294277191162, -0.3214080333709717, -0.22869578003883362, -0.3337577283382416, -0.6106491684913635, -0.15957315266132355, -0.31020715832710266, -0.027916153892874718, 0.23076482117176056], [0.06916280835866928, 0.1133938878774643, 0.0927061066031456, -0.40107905864715576, -0.00740952929481864, 0.03350842744112015, 0.005464386660605669, -0.15017324686050415, -0.0057145063765347, 0.014822399243712425, 0.17230524122714996, -0.10405422002077103, -0.031101226806640625, -0.32862386107444763, -0.5748598575592041, 0.08305245637893677, -0.06284991651773453, 0.06478091329336166, -0.3195394277572632, -0.3529037833213806], [0.01113236416131258, 0.3740282952785492, -0.6035740971565247, 0.1211269274353981, -0.2872283160686493, -0.08436228334903717, -0.05048858001828194, 0.03850027546286583, -0.029697129502892494, 0.03047521971166134, 0.03412935882806778, 0.5161634087562561, -0.14370499551296234, 0.007687963079661131, 0.2266094982624054, 0.5305436253547668, 0.10857295989990234, 0.05704541504383087, 0.1748693734407425, 0.01919635199010372], [-0.26130571961402893, 0.20021532475948334, 0.49845650792121887, -0.18355433642864227, 0.07512018829584122, 0.05021737515926361, 0.051483720541000366, -0.04690735414624214, 0.10419309139251709, 0.0750109851360321, 0.5040172338485718, -0.5553991198539734, 0.07278256863355637, 0.0892370194196701, -0.24312268197536469, -0.5208319425582886, -0.12116429954767227, -0.06719719618558884, -0.22402383387088776, 0.14577750861644745], [0.07543042302131653, 0.20753011107444763, 0.2132686823606491, -0.1972632110118866, -0.2502855062484741, 0.6911429762840271, 0.008294587023556232, -0.01470464002341032, 0.02475922927260399, -0.07276655733585358, 0.02923441119492054, -0.173500657081604, -0.004755325149744749, -0.04800766706466675, -0.1579524725675583, 0.1272551715373993, -0.3467693328857422, -0.07388049364089966, 0.22502999007701874, 0.09691178053617477], [-0.02465241588652134, 0.052954334765672684, -0.3480522632598877, 0.24179129302501678, -0.005468260031193495, 0.06745558977127075, -0.11169186234474182, -0.05845493823289871, 0.02799542434513569, -0.02950434386730194, -0.18543589115142822, 0.37011340260505676, -0.09533337503671646, -0.1087050512433052, 0.21272124350070953, 0.2572144865989685, 0.09943847358226776, 0.07880954444408417, 0.09564849734306335, 0.059900060296058655], [-0.014653634279966354, -0.14330922067165375, -0.6622025370597839, 0.2668604850769043, 0.008666271343827248, -0.037908442318439484, -0.09785445779561996, 0.08166201412677765, 0.008840619586408138, -0.008064513094723225, -0.3214596211910248, 0.8861989378929138, 0.03827264532446861, -0.16595008969306946, 0.3956567645072937, 0.5203225612640381, 0.20083779096603394, 0.09188541024923325, 0.2958694100379944, -0.12022873759269714], [-0.09335248172283173, -0.5055047273635864, -0.0006620684289373457, 0.4065854549407959, -0.3488960862159729, 0.07881130278110504, -0.05160374566912651, 0.03860284388065338, 0.0736798644065857, -0.23115040361881256, -0.26459425687789917, 0.2931191325187683, -0.33219754695892334, -0.08862084895372391, -0.03298988565802574, 0.0478651337325573, 0.13647879660129547, 0.06673593819141388, 0.17516227066516876, -0.11934243142604828], [-0.03415960073471069, -0.016498342156410217, -0.17908607423305511, -0.2982849180698395, -0.2837280333042145, -0.09943053126335144, -0.0009025396429933608, 0.24787473678588867, -0.005996403284370899, 0.0007083023083396256, -0.16794538497924805, 0.4375986158847809, 0.29370084404945374, 0.20640350878238678, 0.02199634723365307, 0.003449328476563096, -0.2611139416694641, 0.04437103495001793, 0.1396150439977646, 0.26903146505355835], [0.18880914151668549, 0.16691991686820984, -0.8372795581817627, -0.33612343668937683, -0.2711152732372284, 0.1932382881641388, 0.3482496738433838, -0.1400715708732605, -0.26340314745903015, -0.060192499309778214, -0.5329652428627014, 0.8929904103279114, -0.29027003049850464, 0.03910067304968834, 0.74886155128479, 0.6945810914039612, 0.9687894582748413, 0.18922917544841766, 0.19828686118125916, 0.08461292088031769], [0.30235156416893005, -0.1380145251750946, -0.7477767467498779, 0.17406241595745087, 0.24583569169044495, 0.05932844802737236, 0.3200714588165283, -0.35098886489868164, 0.07135052233934402, -0.00496350834146142, -0.0765373557806015, 0.6209038496017456, -0.16189275681972504, 0.14559601247310638, 0.766060471534729, 0.7241830229759216, 0.5655394792556763, 0.1281663477420807, 0.27547359466552734, 0.1437743902206421], [0.10616006702184677, -0.3563740849494934, -0.033726904541254044, 0.10813779383897781, 0.13346107304096222, 0.09856925904750824, 0.040812183171510696, -0.1813037246465683, 0.007184740621596575, -0.07478879392147064, -0.11075761169195175, 0.17644862830638885, -0.03759917989373207, 0.0017361327772960067, 0.22334815561771393, 0.06394894421100616, -0.43129509687423706, 0.019645066931843758, 0.041652046144008636, -0.2773246765136719], [0.06366035342216492, -0.2904479503631592, -0.6330195665359497, 0.14016962051391602, -0.19253607094287872, -0.30963942408561707, -0.03552945703268051, 0.08136545866727829, -0.09086772799491882, -0.007613136433064938, -0.3513672351837158, 0.9391900897026062, -0.17666596174240112, -0.13780519366264343, 0.3526569902896881, 0.5023310780525208, 0.310360312461853, 0.02297501266002655, 0.28181493282318115, -0.22390961647033691], [-0.2552378177642822, -0.03563119098544121, -0.09017036855220795, -0.03330983594059944, -0.19409461319446564, 0.05909059941768646, -0.09606542438268661, 0.002647948218509555, 0.0520959235727787, -0.04868743196129799, -0.006640354171395302, -0.17373570799827576, -0.2071705460548401, -0.15552881360054016, 0.2546263337135315, 0.012977343052625656, -0.17991791665554047, 0.08811947703361511, -0.047020092606544495, 0.1693255752325058], [0.05180281400680542, -0.30162903666496277, -0.3714904487133026, 0.2644219696521759, 0.05284804478287697, -0.07888475805521011, -0.030813120305538177, 0.12883105874061584, 0.02041284367442131, 0.0009369985782541335, -0.46639588475227356, 0.6245133876800537, -0.1217200756072998, -0.13558527827262878, 0.20609407126903534, 0.4189692735671997, 0.15743209421634674, 0.064830482006073, 0.26495370268821716, -0.0828012079000473], [0.08782900124788284, -0.18987081944942474, -0.5323624610900879, 0.19532160460948944, 0.041170939803123474, -0.1266247034072876, -0.041226670145988464, 0.03956862911581993, 0.07412880659103394, -0.06207084655761719, -0.31604301929473877, 0.6311216354370117, 0.03352056071162224, -0.02606060355901718, 0.13645245134830475, 0.5164663195610046, 0.26980146765708923, -0.014962469227612019, 0.21611683070659637, -0.020312869921326637], [-0.22256402671337128, -0.001574007561430335, 0.16225461661815643, 0.09916593879461288, -0.1361936628818512, 0.3125247657299042, 0.08427096903324127, -0.32721662521362305, 0.07756538689136505, 0.03231925144791603, -0.19871553778648376, 0.03977443650364876, -0.0863557681441307, -0.34031426906585693, 0.0704042911529541, -0.1919368952512741, -0.00939241424202919, -0.10660600662231445, 0.09757266938686371, 0.25059953331947327], [-0.026822887361049652, -0.027960948646068573, -0.08380226045846939, 0.1646151840686798, 0.18762990832328796, -0.00971869844943285, -0.13329274952411652, -0.24952375888824463, -0.04785005748271942, -0.11787856370210648, 0.12206192314624786, 0.22947639226913452, 0.03492305800318718, 0.0383383147418499, -0.2322220504283905, 0.19667644798755646, 0.1958068609237671, 0.005638876464217901, -0.1057404950261116, -0.33767053484916687], [-0.18831849098205566, 0.07956342399120331, 0.0656636655330658, -0.7970073223114014, -0.380830854177475, 0.0015620168996974826, 0.3616083860397339, -0.12130061537027359, -0.03561416268348694, 0.09768294543027878, 0.08321364223957062, -0.06456973403692245, -0.23601453006267548, 0.12001094222068787, 0.05432671681046486, -0.07386678457260132, 0.3453949987888336, -0.06724561750888824, 0.06957191228866577, -0.09000840783119202], [0.09456991404294968, 0.09330608695745468, -0.10210464894771576, 0.31415221095085144, 0.2760484516620636, -0.1252029687166214, -0.08893665671348572, 0.05447038263082504, 0.0840763971209526, -0.07644887268543243, -0.02824811078608036, 0.17356590926647186, -0.14989134669303894, -0.14637060463428497, 0.1733052134513855, -0.009233713150024414, 0.4588673412799835, 0.17150196433067322, 0.06628961861133575, 0.04018617421388626], [-0.3236796259880066, 0.3722515404224396, -0.8580232858657837, 0.056626658886671066, -0.46313920617103577, 0.03641467168927193, -0.19012907147407532, -0.42537692189216614, -0.13672886788845062, -0.1833721101284027, -0.000872407341375947, 0.36485034227371216, -0.36746862530708313, -0.12438519299030304, 0.03766097128391266, 0.8359366059303284, 0.5753723382949829, -0.03931529447436333, -0.14595414698123932, -0.3072184920310974], [0.10022016614675522, 0.005377863068133593, -0.3038378953933716, -0.2898877263069153, -0.23090268671512604, 0.030936751514673233, -0.035003554075956345, 0.2606777250766754, 0.01695702038705349, -0.010598345659673214, -0.14208316802978516, 0.3632895052433014, 0.08281183242797852, -0.2229030877351761, -0.2468116134405136, 0.16496022045612335, -0.076625294983387, 0.1266644299030304, -0.1161520704627037, -0.23285189270973206], [-0.15158303081989288, 0.3687618374824524, -0.4302278161048889, -0.5799609422683716, -0.33692657947540283, -0.14492984116077423, 0.09145882725715637, -0.26312315464019775, -0.028439905494451523, 0.12374000996351242, 0.20992106199264526, 0.1428409367799759, -0.11050279438495636, 0.354941725730896, -0.26800036430358887, 0.2778712809085846, -0.20001812279224396, -0.034142736345529556, 0.2246854156255722, -0.16623632609844208], [-0.013841994106769562, -0.2163105309009552, -0.6437629461288452, 0.25209692120552063, -0.06069553643465042, 0.04194890707731247, -0.09018390625715256, -0.05241609737277031, 0.0705542042851448, -0.09601011872291565, -0.3386329412460327, 1.0018706321716309, -0.25944700837135315, -0.009859778918325901, 0.4324607849121094, 0.6122146844863892, 0.030293360352516174, 0.16614075005054474, 0.2440689206123352, -0.05461769551038742], [0.006662349682301283, -0.03254809230566025, -0.19248458743095398, 0.16600055992603302, 0.1636006385087967, 0.6295864582061768, -0.30770838260650635, 0.21292655169963837, -0.10201366990804672, -0.23437730967998505, 0.08197299391031265, 0.39927271008491516, 0.1215563714504242, 0.13871601223945618, 0.05230182409286499, 0.4515977203845978, 0.023977501317858696, -0.13884344696998596, 0.03615359961986542, -0.41627058386802673], [0.12001635879278183, -0.2860836684703827, 0.09165333956480026, 0.26939284801483154, 0.5416367053985596, 0.34171754121780396, -0.19290189445018768, 0.09122566878795624, 0.05524085834622383, -0.2141011357307434, -0.27889490127563477, 0.14348191022872925, 0.13661466538906097, -0.00898905098438263, -0.0014831162989139557, -0.04946102946996689, -0.06609857827425003, 0.07610596716403961, 0.35846269130706787, 0.11428157240152359], [0.4389496445655823, 0.2027691900730133, 0.12841641902923584, 0.07695445418357849, 0.09276673942804337, -0.18916544318199158, 0.027146147564053535, -0.1070452407002449, -0.11522315442562103, -0.1829274445772171, 0.03341307118535042, -0.007250936236232519, 0.008198373019695282, 0.01833188720047474, -0.15390844643115997, -0.055412519723176956, 0.0276176817715168, 0.7837405800819397, -0.3576512336730957, -0.25533971190452576], [-0.06211346760392189, -0.03655371069908142, -0.24353238940238953, -0.6791335344314575, -0.10985857993364334, 0.21182776987552643, -0.06398016214370728, -0.040690574795007706, 0.22677989304065704, -0.050760768353939056, 0.2359151840209961, 0.1523204892873764, -0.11938968300819397, -0.12717567384243011, 0.044058628380298615, 0.28905776143074036, 0.1460939347743988, -0.054161787033081055, -0.22223985195159912, 0.035950180143117905], [0.09834178537130356, -0.12687456607818604, 0.10705193132162094, 0.10901819914579391, -0.09148182719945908, 0.13598211109638214, 0.12113504111766815, -0.08703494817018509, 0.0739952102303505, -0.038763806223869324, -0.026127753779292107, -0.27185261249542236, -0.34562087059020996, 0.06154758483171463, -0.05601220205426216, -0.07090717554092407, 0.5442720055580139, 0.006026639603078365, -0.06164886802434921, -0.04664158076047897], [0.10750357061624527, -0.007512239273637533, 0.11391336470842361, 0.2246459573507309, 0.26157906651496887, 0.06809588521718979, 0.11540835350751877, -0.3865426480770111, -0.005358052905648947, -0.08769979327917099, -0.14654862880706787, 0.05283016711473465, -0.28771355748176575, -0.0868380144238472, 0.414947509765625, -0.192262202501297, 0.6722349524497986, 0.2582680284976959, 0.006005110684782267, 0.21864472329616547], [-0.25811824202537537, -0.15351754426956177, -0.2863064706325531, -0.06821350008249283, 0.08888774365186691, -0.09023472666740417, -0.032012708485126495, 0.19389937818050385, 0.0330086275935173, 0.03311144560575485, -0.03882978856563568, 0.048959266394376755, 0.5043336749076843, 0.6571623682975769, -0.29920604825019836, 0.2651934325695038, -0.5317556858062744, -0.018601994961500168, 0.20791414380073547, 0.010722949169576168], [0.06620202958583832, 0.852540910243988, -0.20486710965633392, -0.476352721452713, 0.2532937228679657, 1.6965069770812988, 0.30306342244148254, -4.510656356811523, -0.1327446550130844, 0.04408777132630348, 0.36427947878837585, -0.1345091462135315, -0.7091329097747803, -0.5542789101600647, -0.5755714178085327, 0.28960826992988586, 1.5588403940200806, 0.20825321972370148, -0.5334261059761047, -0.06681863963603973], [0.12044625729322433, 0.04027293249964714, -0.14024823904037476, -0.1641896367073059, -0.08798076212406158, -0.0004989097942598164, 0.2800237834453583, 0.06195004656910896, 0.4167505204677582, 0.0651562362909317, -0.08387475460767746, -0.19648636877536774, 0.04460363835096359, 0.05529994145035744, -0.059770096093416214, 0.05505933240056038, -0.01898486167192459, 0.6038408279418945, 0.364218145608902, 0.6030166745185852], [0.25919109582901, -0.5216435194015503, 0.16771532595157623, 0.6710269451141357, -0.9714733362197876, -0.09319761395454407, -0.37085333466529846, 0.8207549452781677, 0.19541625678539276, -0.15606048703193665, 0.1875656545162201, -0.13115432858467102, 1.9527112245559692, 0.20612113177776337, 0.28934720158576965, 0.08488252013921738, -2.4841887950897217, 0.026292797178030014, -0.011148368939757347, -0.012790985405445099], [0.20027227699756622, -0.00495218625292182, 0.045774709433317184, 0.04130581393837929, -0.10890139639377594, -0.08752372115850449, -0.7023234963417053, -0.013485821895301342, 0.2906690239906311, 0.9459323883056641, 0.014383542351424694, -0.047776274383068085, 0.013758311979472637, -0.0028885407373309135, -0.020036986097693443, -0.1288880854845047, 0.03685753792524338, -0.0437956340610981, 0.1610405445098877, -0.04748125746846199], [0.1280861496925354, -0.08084537833929062, 0.07593511790037155, 0.05997733399271965, -0.027562448754906654, 0.19036217033863068, -0.008416984230279922, 0.02276584692299366, -0.8035075068473816, 0.31335845589637756, 0.06051620468497276, -0.14874860644340515, 0.1604497879743576, 0.059170499444007874, -0.0893152728676796, 0.15008866786956787, -0.112815260887146, 0.3503735065460205, -0.1446833610534668, 0.46432387828826904], [0.034513697028160095, 0.3249775469303131, -0.10363569855690002, -0.1591334342956543, -0.19448432326316833, -0.17068636417388916, 0.007548416964709759, 0.4378848969936371, -0.186610147356987, 0.17301592230796814, 0.03901475667953491, -0.09256194531917572, 0.19878531992435455, 0.3243032991886139, -0.05402335524559021, 0.09732373803853989, 0.20916931331157684, 0.11454730480909348, 0.11679715663194656, -0.2706504762172699], [-0.0731406882405281, -0.10538901388645172, -0.09650911390781403, 0.36017850041389465, 0.26675111055374146, 0.17234672605991364, -0.09597408771514893, -0.0740194022655487, 0.014858993701636791, -0.008427365683019161, 0.10939165949821472, 0.10319964587688446, 0.09364818781614304, 0.13952653110027313, -0.1116657704114914, 0.23294490575790405, -0.13935524225234985, -0.051272206008434296, 0.15369094908237457, -0.1217772364616394], [-0.28833192586898804, 0.20189806818962097, 0.12823063135147095, 0.39483642578125, -0.05496999993920326, -0.025886159390211105, -0.12506330013275146, 0.036642059683799744, -0.026720236986875534, 0.010911226272583008, -0.04694480821490288, 0.03481149673461914, 0.2642689347267151, 0.08814365416765213, -0.38034507632255554, -0.02815011329948902, -0.0377349853515625, 0.1602364033460617, -0.022878749296069145, -0.025998733937740326], [0.06627866625785828, -0.3424205482006073, 0.008884953334927559, 0.5146681666374207, -0.024077514186501503, 0.07237323373556137, -0.17894567549228668, -0.2048967033624649, 0.26058337092399597, -0.20153655111789703, -0.04942001774907112, -0.17587824165821075, 0.14264841377735138, 0.05714395269751549, -0.35093405842781067, 0.012491131201386452, -0.689526379108429, -0.06209055334329605, -0.1594647318124771, 0.3665159046649933], [-0.32020601630210876, 0.3265535533428192, -0.09559641033411026, -0.02179887890815735, 0.3936309814453125, 0.10761445760726929, 0.1934342235326767, -0.12960752844810486, -0.17053070664405823, 0.053549956530332565, 0.14945951104164124, -0.06387303024530411, -0.4155683219432831, -0.15303528308868408, 0.308646559715271, 0.09491919726133347, 0.8346768021583557, -0.21167220175266266, -0.14659617841243744, -0.382234662771225], [0.262740820646286, 0.07880379259586334, -0.16671700775623322, 0.10523498058319092, -0.12026412039995193, -0.07090099900960922, 0.07360831648111343, 0.07698288559913635, -0.011585519649088383, 0.12543632090091705, -0.0766204297542572, 0.19095909595489502, 0.30286651849746704, 0.2653050422668457, -0.19327472150325775, 0.3353552222251892, -0.4797597825527191, -0.07486996799707413, -0.01058551762253046, 0.09112473577260971], [0.3940150737762451, 0.44076216220855713, -0.4208545982837677, -0.9340000152587891, 1.6052472591400146, -0.14191412925720215, -0.0029821840580552816, 0.29271331429481506, -0.05249861255288124, 0.17793123424053192, -0.26808962225914, 0.17083711922168732, -1.3190144300460815, 0.19213078916072845, -0.11643049120903015, 0.0805652067065239, -0.09092897921800613, -0.018818484619259834, 0.10385173559188843, -0.09354447573423386], [-0.5270746946334839, 0.2463347315788269, -0.022354749962687492, -0.2560000717639923, 0.14897605776786804, -0.29368987679481506, -0.526101291179657, 0.011434648185968399, 0.07037462294101715, -0.2702946066856384, -0.12620581686496735, 0.1742764711380005, 0.06477782875299454, 0.08181632310152054, 0.05082977935671806, -0.17495714128017426, -0.0776420533657074, 0.36434438824653625, -0.1585981249809265, 0.15706823766231537], [0.3272521197795868, -0.07642894238233566, 0.25588783621788025, 0.4335707128047943, 0.08287166804075241, 0.24800091981887817, -0.131155326962471, -0.019327247515320778, 0.2691607177257538, -0.06409463286399841, -0.026381593197584152, 0.07728824019432068, 0.021206794306635857, -0.2770446538925171, 0.1281043142080307, 0.2732875645160675, -0.08393504470586777, 0.10042726993560791, -6.586873496416956e-05, -0.6140754222869873], [0.1503782421350479, -0.07352770119905472, 0.10950987786054611, -0.2519345283508301, -0.35033002495765686, -0.3297843933105469, -0.5822616219520569, -0.012865756638348103, -0.2427660971879959, -0.42411795258522034, 0.21722473204135895, 0.2359137237071991, -0.008328499272465706, -0.23170989751815796, 0.20897485315799713, -0.0022900826297700405, 0.19794318079948425, -0.09691515564918518, 1.4800015687942505, -0.053123559802770615], [0.062309909611940384, -0.05333371087908745, -0.22427357733249664, 0.10284102708101273, 0.05236954241991043, 0.023766128346323967, -0.05108284577727318, -0.17329898476600647, -0.06136076897382736, -0.040209606289863586, -0.013055607676506042, 0.32590872049331665, 0.11021359264850616, -0.015168487094342709, 0.2169903814792633, 0.21120120584964752, 0.12471134215593338, 0.05556268244981766, 0.13212016224861145, -0.18679200112819672], [0.06026438996195793, -0.33411839604377747, -0.14489872753620148, 0.3012365400791168, -0.15863658487796783, 0.19141925871372223, -0.09453974664211273, 0.1909007728099823, 0.03778863325715065, -0.13232409954071045, -0.26465779542922974, 0.34240642189979553, -0.29744699597358704, 0.24891549348831177, 0.18616068363189697, 0.19516871869564056, 0.33712953329086304, 0.05804252624511719, 0.14419470727443695, -0.04986371472477913], [-0.027819309383630753, 0.3731705844402313, -0.5560080409049988, -0.728242814540863, -0.045502956956624985, 0.055837299674749374, 0.0679570659995079, -0.05916488915681839, 0.013873877935111523, 0.08527101576328278, -0.1151663213968277, 0.5110917687416077, 0.15736159682273865, -0.060648780316114426, 0.06477134674787521, 0.516861617565155, 0.0707092434167862, 0.07995736598968506, 0.033738281577825546, 0.047338806092739105], [0.04293515905737877, -0.28659266233444214, -0.1327318400144577, 0.42521318793296814, -0.0673893615603447, 0.037241414189338684, -0.12470594793558121, 0.48971423506736755, 0.051004558801651, -0.020177938044071198, -0.3147043287754059, 0.2815497815608978, -0.29131412506103516, 0.16269652545452118, 0.14467933773994446, 0.19332481920719147, 0.14504116773605347, 0.024072065949440002, 0.074444979429245, 0.08206605166196823], [-0.029170196503400803, 0.282611608505249, -0.30785658955574036, -0.09667480736970901, 0.05335512012243271, -0.2148585021495819, 0.09387701749801636, -0.17116837203502655, -0.1817953735589981, 0.1900949329137802, 0.05351875722408295, 0.23146343231201172, 0.41168734431266785, -0.034388426691293716, -0.2999264895915985, 0.6563878059387207, 0.042704787105321884, 0.1269884705543518, 0.24899347126483917, -0.22247034311294556], [-0.08121386170387268, 0.2834146320819855, 0.09115555882453918, -0.30478528141975403, -0.13816401362419128, 0.012322943657636642, -0.10388056188821793, 0.08293302357196808, -0.09786625951528549, 0.1323878914117813, 0.611508846282959, 0.09771447628736496, -0.3060636818408966, 0.05050503835082054, 0.09547553211450577, 0.01838451623916626, -0.27677932381629944, 0.45537814497947693, 0.169704407453537, -0.11169970035552979], [-0.01755903847515583, 0.1589510440826416, -0.30303242802619934, 0.08854644000530243, -0.09852317720651627, -0.044247325509786606, -0.22093802690505981, 0.1271483153104782, -0.03788556158542633, -0.11999203264713287, 0.03573564812541008, 0.2689027190208435, -0.09892131388187408, -0.03542293235659599, 0.1448533684015274, 0.171953946352005, 0.10974330455064774, 0.0026261773891747, 0.04094509407877922, 0.13155274093151093], [-0.2888292372226715, 0.9537795782089233, -0.949697732925415, -1.0180124044418335, -0.9365826845169067, -0.12523120641708374, 0.1215965673327446, -0.12485121190547943, -0.20563580095767975, 0.3090696632862091, 0.37061047554016113, 0.24678274989128113, -0.23143137991428375, -0.3099321126937866, -0.05371825769543648, 0.8534727096557617, -0.6947808861732483, 0.14130954444408417, -0.04400963708758354, 0.08920370787382126], [-0.030011041089892387, -0.04615401476621628, -0.2190563976764679, 0.18419809639453888, -0.04400976747274399, -0.11648445576429367, -0.05195886641740799, 0.10193280130624771, 0.009706071577966213, -0.02170495316386223, -0.06755202263593674, 0.1883579045534134, 0.00198686053045094, 0.2101525366306305, 0.1324378401041031, 0.16319124400615692, 0.05461588501930237, 0.01410603802651167, 0.0630490630865097, -0.017651431262493134], [0.031192872673273087, -0.029583647847175598, -0.12749828398227692, 0.14377754926681519, -0.09227708727121353, -0.08010903000831604, 0.0018352917395532131, 0.07134632766246796, 0.020962830632925034, -0.05655069276690483, -0.04614837467670441, 0.02909824438393116, 0.02782757207751274, -0.12902294099330902, 0.20522882044315338, 0.12459887564182281, -0.025168024003505707, 0.011124336160719395, 0.09063789248466492, 0.07734117656946182], [-0.1344928741455078, -0.21240396797657013, 0.36091193556785583, 0.33181238174438477, -0.05933443456888199, 0.4117552936077118, -0.08036263287067413, 0.23666761815547943, 0.24524147808551788, -0.12485036998987198, -0.4675847589969635, 0.1601705402135849, -0.12887023389339447, -0.25780531764030457, 0.06785080581903458, -0.42505764961242676, 0.1091151088476181, -0.11878051608800888, -0.05275977402925491, 0.5005713701248169], [-0.10817261785268784, 0.1985582560300827, -0.3397220969200134, -0.16131845116615295, -0.4998690187931061, -0.36590975522994995, -0.17864926159381866, 0.4539506733417511, 0.045970041304826736, -0.10489081591367722, -0.09462358057498932, 0.5975702404975891, -0.22781306505203247, -0.16479164361953735, 0.16688172519207, 0.17750971019268036, 0.026825102046132088, 0.016597123816609383, -0.07185773551464081, -0.01263804268091917], [-0.05030430480837822, 0.2351401448249817, -0.47975751757621765, -0.5055567026138306, -1.547865867614746, -0.09573297202587128, -0.08894477039575577, 0.6379895210266113, -0.0883098617196083, -0.08040609210729599, 0.10938205569982529, 0.37203365564346313, -0.44945165514945984, 0.1332729309797287, 0.06516975909471512, 0.11843819916248322, -0.25347375869750977, 0.17039217054843903, 0.019938454031944275, -0.2701304256916046], [0.1131543517112732, 0.22472836077213287, 0.056468818336725235, 0.13149823248386383, 0.22092436254024506, 0.25003665685653687, -0.06732344627380371, -0.5869888663291931, 0.020104993134737015, -0.024757705628871918, -0.13417860865592957, 0.03572767600417137, -0.22541917860507965, -0.16150493919849396, 0.04648444429039955, -0.10661885142326355, 0.4321904182434082, 0.13366475701332092, 0.019612597301602364, -0.14913409948349], [0.05724453553557396, 0.020691294223070145, -0.02580214850604534, 0.4063434302806854, -0.22261615097522736, -0.07006405293941498, -0.03449847176671028, 0.007426637224853039, 0.002344562904909253, 0.0710453912615776, -0.24297784268856049, 0.22159045934677124, -0.16490834951400757, 0.07533621042966843, 0.5412181615829468, -0.0038412397261708975, 0.04858009144663811, -0.02124038152396679, 0.39326339960098267, -0.011297893710434437], [-0.0826161801815033, 0.2507683038711548, -0.46434488892555237, -0.29934459924697876, -0.0832621306180954, -0.06748964637517929, -0.005608316045254469, -0.003002081997692585, -0.12680986523628235, 0.00048067010357044637, -0.05271678790450096, 0.3951025605201721, 0.14050565659999847, -0.12393151968717575, -0.07166801393032074, 0.36481380462646484, 0.16755211353302002, 0.08321012556552887, 2.2311899101623567e-06, -0.2154952734708786], [0.01942741498351097, 0.34333789348602295, -0.590043842792511, 0.19699032604694366, -0.20978397130966187, -0.10560529679059982, -0.07921525090932846, 0.07499922066926956, -0.023213988170027733, 0.018651848658919334, -0.04528164118528366, 0.573776125907898, -0.16918623447418213, -0.0376708023250103, 0.24134643375873566, 0.510162353515625, 0.13736487925052643, 0.05140222981572151, 0.20812813937664032, -0.0028565500397235155], [0.06441071629524231, 0.1340789943933487, -0.1318976879119873, -0.018061254173517227, -0.15980209410190582, -0.09299058467149734, 0.027435339987277985, -0.004509704653173685, -0.21179284155368805, 0.00639847107231617, 0.07099027931690216, 0.20819933712482452, -0.12140338867902756, 0.009150423109531403, 0.13890738785266876, 0.20962876081466675, 0.011927972547709942, -0.03210415691137314, -0.08498402684926987, -0.08469293266534805], [0.06990660727024078, 0.02852439135313034, -0.15388113260269165, -0.05138462781906128, 0.048279643058776855, -0.7279638648033142, 0.04834284260869026, -0.1894356608390808, 0.09320683777332306, 0.1420462727546692, 0.09863130748271942, 0.03646637871861458, 0.3285245895385742, 0.2942204475402832, 0.183725506067276, 0.00012542828335426748, -0.15952074527740479, 0.04959411546587944, 1.3155537843704224, -1.0919170379638672], [-0.0964503362774849, 0.13790278136730194, -0.220597505569458, 0.11158347874879837, 0.12064877897500992, 0.047208890318870544, -0.09561974555253983, 0.0042581274174153805, 0.035912007093429565, -0.014142602682113647, -0.340956449508667, 0.20233258605003357, -0.11094173043966293, -0.43092548847198486, 0.1450364738702774, 0.1197042390704155, -0.0702458992600441, 0.11189982295036316, -0.09925012290477753, 0.1046249121427536]], "rec.bias_ih_l0": [-0.814735472202301, -0.18925786018371582, 0.014805635437369347, -0.6520772576332092, -0.5521983504295349, 0.5687877535820007, -0.6035512685775757, 0.647888720035553, -0.23862558603286743, -0.598084568977356, 0.12317626923322678, 0.15225127339363098, 0.2894364893436432, -0.1408214569091797, -0.774692714214325, -0.10302641242742538, 0.6371977925300598, -1.2405058145523071, -0.3661341965198517, 0.44782930612564087, 1.1351932287216187, 0.3192897439002991, 0.43635159730911255, 1.1071349382400513, 1.003819465637207, 0.1326240599155426, 0.9563642740249634, -0.05768224224448204, 0.6690769791603088, 0.7990748286247253, 0.15126876533031464, 0.4997076094150543, -0.015517232939600945, 0.21860986948013306, 0.950932502746582, 0.4687631130218506, 0.09453681111335754, 1.315329670906067, 0.5647304654121399, 0.15182697772979736, 0.037834033370018005, 0.09433741122484207, -0.3690248727798462, 0.050926242023706436, -0.10215486586093903, 0.19401469826698303, 0.036951616406440735, 0.15903164446353912, -0.03144259750843048, 0.06767723709344864, -0.21932965517044067, 0.27785712480545044, -0.3321899473667145, 0.16409020125865936, 0.1702350676059723, 0.32776641845703125, 0.3129498362541199, 0.04236922040581703, 0.09437344968318939, -0.4525177776813507, 0.3879605531692505, 0.35870978236198425, 0.5286639332771301, 0.45848938822746277, 0.1614212691783905, -0.29841354489326477, 0.19682735204696655, 0.3125702142715454, 0.19070695340633392, 0.06130550056695938, 0.05929367616772652, 0.5976582765579224, 0.3126245141029358, 0.03453440219163895, 0.2896813452243805, 0.2601965069770813, 0.7005344033241272, -0.024083657190203667, -0.020473167300224304, 0.301883339881897], "rec.bias_hh_l0": [-0.8455203175544739, -0.24764321744441986, 0.10750165581703186, -0.7219928503036499, -0.39956292510032654, 0.5687877535820007, -0.5957738757133484, 0.6491441130638123, -0.2350970208644867, -0.503338634967804, 0.11421266943216324, 0.21654970943927765, 0.3454696238040924, -0.12168814241886139, -0.8489993214607239, 0.07529407739639282, 0.6374711394309998, -1.216927170753479, -0.2823217809200287, 0.44832509756088257, 1.0184886455535889, 0.19762808084487915, 0.47660115361213684, 0.912788450717926, 0.9674317836761475, 0.15123699605464935, 0.8815295696258545, -0.09049216657876968, 0.7606222629547119, 0.8236246705055237, 0.1438082903623581, 0.4701535999774933, 0.09588707238435745, 0.21157671511173248, 1.0579050779342651, 0.4737044870853424, 0.15218107402324677, 1.2844260931015015, 0.4580538272857666, 0.12686237692832947, 0.18661831319332123, 0.050099555402994156, -0.34550073742866516, -0.016220690682530403, -0.20663057267665863, 0.07209070026874542, -0.1292542964220047, 0.07586999982595444, -0.054432764649391174, 0.08608756214380264, -0.2114086151123047, 0.22431258857250214, 0.02323293685913086, 0.12621502578258514, 0.14715352654457092, 0.14781688153743744, 0.0929480493068695, 0.0286497101187706, -0.11403355002403259, -0.3491535484790802, 0.38925084471702576, 0.35900017619132996, 0.6702309250831604, 0.39824604988098145, 0.27365967631340027, -0.3729766011238098, 0.31778737902641296, 0.32558155059814453, 0.16444657742977142, 0.016482356935739517, 0.054836299270391464, 0.5581439733505249, 0.3823668360710144, 0.03620006889104843, 0.35171768069267273, 0.45842230319976807, 0.7007501721382141, 0.0373782217502594, 0.005690976977348328, 0.31342655420303345], "lin.weight": [[-0.991931676864624, 0.5751493573188782, -0.23430919647216797, -0.5398158431053162, 0.39942073822021484, -0.4279860258102417, -0.9778081774711609, 0.1045706495642662, 0.42371875047683716, -0.49608364701271057, -0.5223323106765747, 0.12876558303833008, -0.010193205438554287, 0.3039989769458771, -0.05870320275425911, -0.008231089450418949, -0.1091807559132576, -0.45943424105644226, -0.43838971853256226, 0.6802424788475037]], "lin.bias": [0.0419851690530777]}} \ No newline at end of file +{"model_data": {"model": "SimpleRNN", "input_size": 1, "skip": 1, "output_size": 1, "unit_type": "LSTM", "num_layers": 1, "hidden_size": 32, "bias_fl": true}, "state_dict": {"rec.weight_ih_l0": [[0.0027580501046031713], [-0.029451444745063782], [0.12632204592227936], [0.0009558324236422777], [0.021092774346470833], [-0.05392618849873543], [-0.019151892513036728], [0.000792011443991214], [0.08431218564510345], [-0.03156742453575134], [-0.01779639534652233], [0.010312681086361408], [0.005429390352219343], [-0.0037786769680678844], [-0.015916423872113228], [0.0003875295224133879], [0.008604894392192364], [-0.013139329850673676], [0.011085614562034607], [0.0034541948698461056], [0.02227655239403248], [-0.024576496332883835], [0.007301414385437965], [-0.11252185702323914], [-0.021461423486471176], [0.03781001642346382], [0.02853502705693245], [-0.24451029300689697], [-0.02451488748192787], [-0.03446486219763756], [-0.027562236413359642], [-0.011500922031700611], [-0.0018108984222635627], [-0.03596998006105423], [0.13712932169437408], [-0.04686812311410904], [0.028837798163294792], [-0.0786738395690918], [-0.04134438559412956], [0.0009957762667909265], [0.09969086199998856], [-0.07327282428741455], [-0.012297515757381916], [-0.0007960152579471469], [-0.06598874926567078], [0.07330629974603653], [-0.007910201326012611], [-0.037826865911483765], [-0.02870997227728367], [-0.03427092730998993], [-0.03452666848897934], [-0.08604079484939575], [-0.10440628230571747], [-0.006718718912452459], [0.08769706636667252], [-0.02551151253283024], [0.004368124064058065], [0.045932337641716], [0.11035539954900742], [-0.06949728727340698], [-0.06178298965096474], [-0.06470516324043274], [-0.06327254325151443], [-0.02122972533106804], [-0.5297002196311951], [0.25747227668762207], [-0.07149036973714828], [-0.14465804398059845], [-0.169514000415802], [-0.17027559876441956], [-0.2825905978679657], [0.003964847419410944], [0.27367550134658813], [-0.34647831320762634], [0.014191564172506332], [-0.13623282313346863], [-0.09792374819517136], [0.4240208566188812], [0.07639960199594498], [-0.2588673233985901], [-0.038736555725336075], [0.45058971643447876], [0.16546717286109924], [-2.691150188446045], [-0.02373918518424034], [-0.2117728441953659], [0.5566464066505432], [-0.6793791055679321], [0.068388432264328], [-0.01916031911969185], [-3.9026782512664795], [-0.03626718372106552], [-0.34452226758003235], [0.8441299796104431], [0.22208958864212036], [-0.29174408316612244], [-0.016379667446017265], [-0.04860350117087364], [0.19610081613063812], [-0.027187304571270943], [0.04102278873324394], [-0.18488255143165588], [-0.019256779924035072], [0.0007754249381832778], [0.09988415241241455], [0.1365399807691574], [-0.018272457644343376], [0.012849032878875732], [0.3570984899997711], [-0.03218691423535347], [-0.008370942436158657], [-0.011237855069339275], [0.029583755880594254], [-0.015409312210977077], [0.020509658381342888], [-0.08195659518241882], [-0.07223217189311981], [-0.06387364864349365], [0.12675926089286804], [-0.14464153349399567], [0.031890664249658585], [0.13878799974918365], [-0.01555263064801693], [0.025836963206529617], [-0.07196420431137085], [-0.06542838364839554], [-0.03574363514780998], [-0.015540402382612228]], "rec.weight_hh_l0": [[0.023275021463632584, -0.03884734958410263, -0.11349347233772278, -0.09397665411233902, -0.03530364856123924, -0.0031994320452213287, -0.07329767942428589, -0.009177600964903831, -0.04095039889216423, -0.05475862696766853, 0.0007069686544127762, -0.009251995012164116, 0.030605195090174675, -0.047745220363140106, 0.03966633230447769, 0.087320975959301, 0.0162147618830204, 0.0012713057221844792, -0.06843442469835281, 0.005334952846169472, 0.023411264643073082, -0.03329150006175041, -0.10625115036964417, 0.017495783045887947, 0.005639681126922369, -0.028817124664783478, -0.02033037506043911, 0.049011845141649246, 0.012034151703119278, 0.10842826217412949, -0.02287587895989418, -0.06393410265445709], [-0.02480015717446804, -0.051293835043907166, 0.026342252269387245, 0.06553814560174942, -0.019460251554846764, 0.23825344443321228, -0.08840510249137878, 0.001492364564910531, -0.04067624732851982, -0.008009359240531921, 0.0194975808262825, -0.019415168091654778, -0.014290617778897285, -0.09790199249982834, 0.013191244564950466, 0.0040753427892923355, 0.05989198386669159, -0.03200751915574074, 0.022238366305828094, -0.023547979071736336, 0.043337639421224594, 0.0060699377208948135, -0.033913176506757736, 0.06501412391662598, -0.17567631602287292, -0.00433976948261261, -0.024658838286995888, -0.06639479100704193, -0.05863985791802406, 0.014074795879423618, -0.07486619055271149, -0.02015499211847782], [0.1359318196773529, 0.24205254018306732, 0.056909266859292984, -0.5891676545143127, -0.024303527548909187, -0.672099769115448, 0.007731002289801836, 0.015695344656705856, 0.16940438747406006, 0.10739274322986603, -0.023989344015717506, 0.1976615935564041, -0.3564665913581848, 0.356006383895874, 0.05638754740357399, -0.11128752678632736, -0.021562574431300163, 0.05980704352259636, 0.26139336824417114, -0.462180495262146, -0.06141204014420509, 0.10268595069646835, -0.33190882205963135, 0.09555593132972717, 0.7422109246253967, 0.3292500674724579, -0.09999503195285797, 0.02016114443540573, -0.07153596729040146, -0.05355198308825493, 0.23569956421852112, -0.033344194293022156], [-0.030443914234638214, -0.10999173671007156, -0.00562974764034152, 0.006020987872034311, 0.021158963441848755, 0.16196681559085846, -0.03738027065992355, -0.002925946842879057, 0.09712604433298111, 0.048898886889219284, 1.3164475603844039e-05, -0.04786870256066322, 0.0686255618929863, 0.013695118948817253, 0.013457849621772766, 0.0812278613448143, 0.036204058676958084, -0.03440557047724724, -0.010035798884928226, -0.039852507412433624, -0.05267352610826492, -0.03259574994444847, -0.055829811841249466, -0.06213865056633949, -0.205518901348114, -0.06431851536035538, -0.09379783272743225, -0.03888290748000145, 0.07905402034521103, 0.08955170959234238, -0.13810791075229645, -0.019441431388258934], [0.02149057202041149, 0.06646136939525604, -0.01498853787779808, -0.0431654155254364, -0.06571650505065918, -0.139863058924675, -0.020269814878702164, -0.005408264230936766, 0.04752669110894203, 0.03492750599980354, -0.0058006648905575275, 0.01162627711892128, -0.02042137272655964, 0.25936388969421387, -0.09614358097314835, 0.03635919466614723, -0.00048587704077363014, -0.0734797939658165, 0.007983019575476646, 0.14119678735733032, -0.08077267557382584, 0.09601067751646042, 0.006442525424063206, 0.01939464919269085, 0.21374481916427612, 0.09664493054151535, -0.013073298148810863, -0.039387285709381104, -0.26570484042167664, -0.05000552535057068, -0.008219772949814796, -0.004864620044827461], [-0.05806649103760719, -0.05412456393241882, 0.014976203441619873, 0.02229076810181141, -0.036532722413539886, 0.15791010856628418, 0.06838946789503098, 0.005109747406095266, 0.03667167201638222, 0.08392135798931122, 0.0125668840482831, -0.01736382208764553, 0.05216752365231514, -0.13846996426582336, -0.022943509742617607, -0.03595992177724838, -0.04820283129811287, 0.021105457097291946, -0.016386348754167557, -0.08962899446487427, -0.01825118437409401, 0.03219243511557579, -0.0032694032415747643, -0.026828616857528687, -0.17448090016841888, -0.030730759724974632, -0.026689743623137474, -0.041221048682928085, 0.06700628250837326, -0.012272095307707787, -0.0032773916609585285, 0.012860155664384365], [-0.020212020725011826, -0.14201578497886658, -0.03194760903716087, 0.17062057554721832, 0.08698402345180511, 0.3536825180053711, 0.11240781843662262, -0.002695452654734254, -0.01854570209980011, 0.0503438375890255, -0.0004397382726892829, -0.0460004061460495, 0.02148122899234295, -0.0720335841178894, 0.009049622341990471, 0.05341881513595581, 0.1678200215101242, -0.00028614874463528395, -0.050655070692300797, -0.024342987686395645, -0.015590552240610123, -0.016998954117298126, -0.00023432121088262647, 0.06396200507879257, -0.4131481349468231, -0.11647213995456696, -0.04518577829003334, -0.03488534316420555, 0.010868575423955917, 0.06951282918453217, -0.03226125240325928, 0.028838245198130608], [0.0019637574441730976, -0.010674187913537025, -9.059986950887833e-06, 0.012900516390800476, 0.0013492173748090863, 0.01960880495607853, 0.012942020781338215, -0.0003100623143836856, -0.0002873167977668345, -0.00013491872232407331, 0.0009768509771674871, -0.007223337423056364, 0.0018007188336923718, -0.0037688547745347023, 0.003270550863817334, 0.0027935970574617386, 0.007218486163765192, 0.0025853055994957685, -0.0007581159588880837, 0.00134445377625525, 0.0006283887778408825, 0.00048350190627388656, 0.00774646271020174, 0.006450667977333069, -0.019810786470770836, -0.009510761126875877, -0.006583238020539284, 0.00035208507324568927, -0.0006761951954104006, 0.0003956049040425569, -0.0022861133329570293, 0.0009657001355662942], [-0.07437358051538467, -0.11698312312364578, -0.10876481235027313, 0.09993669390678406, 0.06899125128984451, 0.17619751393795013, -0.15950040519237518, -0.00909178052097559, 0.002104775048792362, -0.024287525564432144, -0.0007262307917699218, -0.046574220061302185, 0.09917689859867096, 0.04823749512434006, -0.05868929624557495, 0.15189425647258759, 0.18444868922233582, -0.03946945071220398, -0.03797786310315132, 0.11006391793489456, 0.025945577770471573, 0.006609372328966856, -0.19026759266853333, 0.05205630511045456, -0.1846466362476349, -0.016358381137251854, -0.18979263305664062, 0.02334180846810341, 0.017777569591999054, 0.1149960532784462, -0.13053329288959503, -0.018857579678297043], [-0.1156153529882431, 0.46542128920555115, 0.10297507047653198, -0.2799787223339081, -0.03446495160460472, -0.5679425597190857, -0.4118805229663849, 0.008369192481040955, -0.13532564043998718, 0.22914741933345795, -5.089711339678615e-05, -0.026476234197616577, -0.26301971077919006, 0.2995662987232208, -0.131943941116333, -0.1805458515882492, -0.48064568638801575, -0.2067001312971115, -0.04523612558841705, -0.10941467434167862, 0.020437609404325485, 0.09047892689704895, -0.347569078207016, -0.19943630695343018, 0.7422123551368713, 0.18900460004806519, 0.22005049884319305, 0.022675015032291412, 0.1467120349407196, 0.03184891492128372, 0.06598910689353943, 0.029305528849363327], [0.018061649054288864, 0.056643903255462646, 0.0007781178574077785, -0.04902828112244606, 0.0034138711635023355, -0.19058427214622498, -0.04221167042851448, 0.001872074557468295, 0.001545485109090805, 0.033446431159973145, 0.007002920377999544, -0.004869078751653433, -0.004477995447814465, 0.002786229830235243, -0.009541205130517483, -0.027074221521615982, -0.008899630047380924, -0.02196197398006916, -0.014997386373579502, -0.03250764682888985, -0.007142079062759876, 0.00973670557141304, -0.04085969552397728, -0.017775027081370354, 0.22077643871307373, 0.012763172388076782, 0.04310484975576401, 0.021359851583838463, -0.01958857849240303, -0.006925389636307955, -0.013216578401625156, -0.0035339046735316515], [-0.03637991100549698, 0.06982236355543137, -0.023018019273877144, -0.02991797961294651, 0.016890190541744232, -0.2711816430091858, -0.0867977887392044, 0.004238820634782314, 0.1596757173538208, -0.01935633085668087, 0.004899835214018822, -0.09241387248039246, 0.1567285656929016, 0.03141525760293007, -0.058361366391181946, 0.05303654074668884, 0.1441650688648224, -0.03727022185921669, -0.03936559706926346, -0.13409321010112762, -0.011738786473870277, -0.046350907534360886, -0.09443701058626175, -0.1127675399184227, -0.0729818195104599, -0.06554697453975677, 0.10208241641521454, 0.25839370489120483, 0.1288953721523285, -0.012362624518573284, -0.04839320480823517, 0.047689348459243774], [0.08507320284843445, 0.3398869037628174, 0.8194722533226013, -0.6566359996795654, -0.05559710040688515, -0.6758129000663757, -0.6138982772827148, -0.038619514554739, 0.07133686542510986, -0.07372157275676727, 0.04290202260017395, 0.11300137639045715, -0.2527541518211365, 0.23113836348056793, 0.018407121300697327, -0.9159194827079773, -0.695916473865509, -0.2797054350376129, 0.2593742609024048, -0.06960554420948029, -0.023081986233592033, -0.058435335755348206, -0.5867030620574951, 0.23369020223617554, 0.9817436933517456, 0.6285919547080994, 0.26373380422592163, 0.1036965623497963, 0.11578978598117828, -0.16217941045761108, 0.23859702050685883, -0.004957547876983881], [0.08305642008781433, 0.43150094151496887, 0.025410685688257217, -0.36309999227523804, 0.000436860864283517, -0.5697317123413086, -0.40412232279777527, 0.011212253011763096, -0.06870897859334946, 0.1434302031993866, -0.03177328035235405, 0.18430070579051971, -0.06443309783935547, 0.3203427791595459, 0.022426530718803406, 0.002674827817827463, -0.011908510699868202, -0.040782034397125244, 0.0764714926481247, -0.23056407272815704, -0.21931225061416626, 0.023200146853923798, -0.19526876509189606, 0.26753875613212585, 0.5425715446472168, 0.22703194618225098, -0.00014181886217556894, -0.1553652137517929, 0.15003788471221924, 0.09018456190824509, 0.17244203388690948, 0.1129726842045784], [0.07512771338224411, 0.013474677689373493, 0.005000693257898092, -0.07262324541807175, -0.014590139500796795, -0.03283408284187317, -0.037174042314291, -0.0033695511519908905, -0.06370054185390472, 0.0007178365485742688, -0.0025166852865368128, 0.019213903695344925, -0.022879572585225105, 0.03310283273458481, 0.04757438972592354, -0.036572348326444626, -0.09858313947916031, -0.0032222329173237085, -0.029897527769207954, 0.0048909736797213554, -0.04396188631653786, -0.009026373736560345, -0.04802251234650612, -0.019838683307170868, 0.030226534232497215, -0.052615098655223846, 0.04633209854364395, -0.017235497012734413, 0.09731142967939377, 0.015780234709382057, -0.009193846955895424, -0.0189061276614666], [0.0053067514672875404, 0.00013307378685567528, -0.0002607628412079066, 0.0023735552094876766, -0.009363390505313873, -0.05750324949622154, -0.06515888124704361, -0.001909028273075819, 0.039189983159303665, -0.021682340651750565, -0.013973998837172985, -0.02711500972509384, -0.010466299019753933, 0.021851027384400368, 0.038307592272758484, 0.035275861620903015, 0.11881344020366669, -0.039229899644851685, -0.03189840167760849, -0.08197028189897537, 0.01771518774330616, -0.03705046698451042, -0.24840094149112701, -0.0004861050401814282, -0.19366030395030975, -0.009172572754323483, -0.23077324032783508, 0.031369857490062714, 0.07151787728071213, -0.05889246240258217, -0.16483043134212494, 0.025885768234729767], [-0.12842676043510437, -0.03501935675740242, 0.025655686855316162, 0.10496543347835541, -0.08207355439662933, 0.12472565472126007, -0.2128610610961914, 0.013806669041514397, 0.10993237048387527, 0.1207277849316597, 0.012199657037854195, -0.08613359183073044, 0.3106611371040344, 0.08529884368181229, -0.09870059043169022, 0.08738961070775986, 0.07261724770069122, -0.03305255249142647, -0.1091141626238823, 0.16440600156784058, -0.018997253850102425, 0.015866635367274284, 0.03869831562042236, 0.08624540269374847, -0.06779521703720093, -0.0053774574771523476, 0.03917549550533295, 0.03215876594185829, -0.1124359518289566, -0.07908603549003601, -0.1373530477285385, 0.06924163550138474], [-0.024600686505436897, -0.09983299672603607, -0.06321726739406586, 0.14774863421916962, 0.023655284196138382, 0.2676003873348236, -0.02870449796319008, -0.0009696369525045156, -0.037362534552812576, -0.006235343404114246, 0.01200286578387022, -0.06654239445924759, 0.1328759491443634, 0.029558489099144936, -0.025999300181865692, 0.1208571195602417, 0.10184598714113235, -0.022118138149380684, -0.015958812087774277, 0.1731324940919876, 0.02919437550008297, 0.03261827304959297, 0.04102364927530289, 0.06428027153015137, -0.32002124190330505, -0.0700143501162529, 0.01795291341841221, -0.026382707059383392, -0.009931270033121109, 0.027374081313610077, -0.03822506219148636, 0.030325643718242645], [-0.048695147037506104, -0.06094866991043091, -0.03046279028058052, 0.11426804959774017, 0.005757632665336132, 0.03564225137233734, -0.07439140975475311, 0.0033631236292421818, -0.011779124848544598, 0.025231175124645233, 0.004245288670063019, -0.037783730775117874, 0.13554498553276062, -0.06005476415157318, -0.09166485071182251, 0.051673173904418945, 0.057400502264499664, -0.03446502611041069, -0.04698743298649788, 0.036924608051776886, -0.02377232536673546, 0.12691697478294373, 0.07220638543367386, 0.05659215524792671, -0.017584143206477165, 0.012954270467162132, -0.05534632131457329, 0.022518077865242958, 0.05985817313194275, -0.01135428436100483, -0.09570016711950302, -0.0013676099479198456], [0.08800875395536423, -0.019276266917586327, -0.23039644956588745, 0.26417824625968933, 0.16839998960494995, 0.3528255820274353, -0.4064352810382843, -0.0014189600478857756, 0.022086139768362045, 0.07611382007598877, 0.01446215808391571, -0.1255521923303604, 0.13470380008220673, -0.05552266165614128, 0.03594648838043213, 0.3228245675563812, 0.271197110414505, 0.10352791100740433, -0.0033859512768685818, 0.5159012675285339, -0.04735042527318001, 0.007994290441274643, 0.0659676045179367, 0.036802299320697784, -0.43589627742767334, 0.09586352109909058, -0.20595870912075043, 0.02246110327541828, -0.5649397969245911, 0.2838442921638489, -0.16633111238479614, -0.06521196663379669], [0.059193745255470276, 0.5118857026100159, -0.09837154299020767, -0.2667634189128876, 0.3449289798736572, -0.8051086068153381, -0.4774366319179535, 0.004346431232988834, 0.09742087870836258, 0.13181331753730774, 0.045239683240652084, -0.033971451222896576, 0.13415642082691193, 0.05504053831100464, 0.045245461165905, -0.2719095051288605, 0.03941955789923668, -0.09774275124073029, 0.04259724169969559, -0.23251743614673615, -0.11604737490415573, 0.14338141679763794, -0.20027461647987366, -0.05241880193352699, 0.8891928791999817, 0.23443248867988586, -0.08526551723480225, -0.1482653170824051, 0.0655592828989029, -0.07655355334281921, -0.1887294501066208, -0.04730404540896416], [0.018440892919898033, 0.07695931196212769, -0.04778720438480377, -0.14646637439727783, 0.03013155609369278, -0.3138192296028137, -0.19394156336784363, 0.0031132143922150135, 0.1149371936917305, 0.0701136440038681, -0.004663242492824793, 0.007576064206659794, -0.0631205141544342, 0.027404412627220154, -0.07591158896684647, -0.007347237318754196, -0.070992611348629, 0.006006688345223665, -0.029754292219877243, -0.17483621835708618, -0.08932411670684814, 0.11164464056491852, -0.1420040726661682, -0.04546235874295235, 0.3309214413166046, 0.01360982097685337, -0.0055995178408920765, 0.036451805382966995, 0.10254018008708954, -0.053364094346761703, -0.07302655279636383, -0.009812668897211552], [-0.01709102839231491, -0.18195359408855438, -0.03650827333331108, 0.29972130060195923, 0.09451727569103241, 0.3257644772529602, -0.012672781012952328, -0.010272075422108173, -0.010167988017201424, 0.06845009326934814, 0.016323279589414597, -0.14459912478923798, -0.030974294990301132, -0.18156960606575012, 0.0601033940911293, 0.10975606739521027, 0.08546173572540283, -0.05234513431787491, -0.11778171360492706, 0.12193839251995087, 0.01704137586057186, -0.024340281262993813, -0.008380359038710594, 0.05822116136550903, -0.26079899072647095, -0.15950563549995422, -0.07489146292209625, 0.04857829958200455, 0.019278211519122124, 0.12556754052639008, -0.10849565267562866, -0.024431070312857628], [0.0056730653159320354, 0.5382580757141113, -0.441320538520813, -0.3416482210159302, -0.16128775477409363, -0.9293163418769836, -0.29842162132263184, 0.0001442568755010143, -0.02909153327345848, 0.10260024666786194, -0.01676441729068756, 0.14982877671718597, 0.012964260764420033, 0.049066852778196335, 0.01988658867776394, -0.15272901952266693, 0.13390284776687622, -0.12290530651807785, 0.09089109301567078, -0.13367612659931183, -0.3291623294353485, 0.19005371630191803, -0.1287914365530014, -0.29272884130477905, 0.8198360800743103, 0.5180724859237671, -0.07639002799987793, 0.18784241378307343, 0.14771798253059387, 0.2898769974708557, -0.021658966317772865, -0.035376254469156265], [0.006355403922498226, 0.06881039589643478, -0.3738315999507904, -0.017253685742616653, 0.13611261546611786, -0.07203338295221329, -0.16217298805713654, -0.004669629968702793, -0.05967775359749794, -0.11134305596351624, 0.01758706197142601, -0.04106931760907173, 0.250080943107605, 0.05277028679847717, 0.0806511715054512, 0.08505573868751526, -0.061043620109558105, -0.013310476206243038, 0.0896020382642746, 0.19688597321510315, 0.04616162180900574, -0.06981701403856277, 0.046115901321172714, -0.022698694840073586, -0.06313444674015045, 0.0883585512638092, 0.23676879703998566, 0.005298669449985027, -0.1732645183801651, 0.1202194094657898, 0.07928385585546494, -0.14708921313285828], [-0.021350007504224777, 0.011723821051418781, -0.031118178740143776, -0.09584984928369522, 0.01606656238436699, -0.13758735358715057, 0.007779216859489679, -0.002980153076350689, 0.0704621896147728, -0.05887241289019585, -0.003187312977388501, 0.006377060431987047, -0.11819306015968323, 0.17316100001335144, 0.04688036069273949, -0.01819508522748947, -0.0025979820638895035, -0.04133445769548416, 0.007481249049305916, -0.33993950486183167, -0.07165763527154922, -0.047869518399238586, -0.12781596183776855, -0.03709529712796211, 0.0146324522793293, -0.08629785478115082, -0.0002196785935666412, 0.14016884565353394, 0.42670682072639465, -0.04031875357031822, 0.03386366367340088, 0.026788312941789627], [-0.00474141351878643, -0.2586706280708313, -0.15384618937969208, 0.36767351627349854, 0.06231981888413429, 0.3902866840362549, 0.22239477932453156, -0.011138266883790493, -0.0672810897231102, 0.10579156875610352, -0.0024813611526042223, -0.0962977334856987, 0.10726315528154373, -0.12497435510158539, -0.01765272207558155, 0.19452795386314392, 0.42131513357162476, -0.03990348055958748, 0.0384523943066597, -0.11377664655447006, -0.015582563355565071, 0.021356727927923203, -0.03494684398174286, -0.011176223866641521, -0.6013798713684082, -0.12120060622692108, -0.1427856832742691, 0.05445709079504013, 0.0802488625049591, 0.17717890441417694, -0.10965673625469208, 0.0025489646941423416], [-0.016318466514348984, 0.5074307322502136, -0.21098829805850983, -0.4366775453090668, 0.24656926095485687, -0.6344865560531616, -0.5610261559486389, 0.003395180683583021, 0.04430747404694557, 0.13104040920734406, -0.0430314727127552, 0.044339269399642944, -0.06861197203397751, 0.2844673991203308, 0.004306101705878973, -0.2226189821958542, 0.04792892932891846, 0.1513046771287918, 0.23961234092712402, -0.31040632724761963, -0.11773724853992462, -0.07315023243427277, -0.1533711701631546, 0.04349778965115547, 0.7515788078308105, 0.6147341132164001, -0.10254696756601334, 0.20992930233478546, 0.23016174137592316, 0.15781176090240479, 0.03020474500954151, -0.005481112748384476], [0.0014443030813708901, -0.1605672389268875, -0.0935421958565712, 0.37506893277168274, 0.08396272361278534, 0.48357054591178894, -0.034216053783893585, -0.007655086927115917, -0.07501943409442902, 0.02232927829027176, 0.028063524514436722, -0.16475224494934082, 0.125007763504982, -0.0401468388736248, 0.028575874865055084, 0.2022721916437149, 0.12254444509744644, -0.028507832437753677, -0.09261667728424072, 0.3259141445159912, 0.03560002148151398, 0.0029612493235617876, 0.2490539252758026, 0.15125015377998352, -0.48629680275917053, -0.17209620773792267, 0.016018496826291084, 0.01684926450252533, -0.02197437733411789, 0.09077286720275879, -0.14262855052947998, -0.024354184046387672], [-0.014968437142670155, -0.17257513105869293, -0.005509454291313887, 0.13250671327114105, 0.025164376944303513, 0.22027352452278137, 0.07546863704919815, 0.0002287546085426584, -0.010286388918757439, -0.044900353997945786, 0.008073014207184315, -0.08971252292394638, 0.14464865624904633, -0.11086562275886536, 0.06805645674467087, 0.017064880579710007, 0.08228524774312973, 0.02214529924094677, -0.028148196637630463, 0.13533303141593933, -0.042529650032520294, -0.01469286996871233, 0.1093808114528656, 0.021079545840620995, -0.20331065356731415, -0.1689475178718567, -0.036567721515893936, -0.018553035333752632, -0.05394686385989189, -0.0812239870429039, -0.06804860383272171, 0.022331366315484047], [-0.03667484223842621, -0.016903681680560112, 0.04694847762584686, -0.03068879246711731, -0.07493846863508224, -0.06848572194576263, 0.14716000854969025, 0.011157008819282055, 0.06039222702383995, -0.014952392317354679, -0.00915083009749651, 0.03889302909374237, 0.21307171881198883, 0.05267703905701637, 0.004946167580783367, 0.05436807870864868, 0.13522490859031677, 0.04640820249915123, -0.004111973103135824, -0.11527637392282486, 0.1042962372303009, 0.022626997902989388, -0.045347996056079865, -0.027858827263116837, 0.017983850091695786, 0.031195450574159622, 0.05278860405087471, -0.11175275593996048, 0.24630603194236755, -0.1274692267179489, -0.04094279557466507, 0.03808246925473213], [-0.004034220241010189, -0.09403233230113983, 0.02113625407218933, 0.1397469937801361, -0.003382372669875622, 0.22225011885166168, 0.13665318489074707, -6.115690484875813e-05, 0.014637615531682968, -0.010037213563919067, 0.010127656161785126, -0.06975364685058594, 0.017551563680171967, -0.01880817860364914, 0.02140306681394577, 0.02413181960582733, 0.09713464230298996, 0.016000637784600258, -0.027888253331184387, 5.860785677214153e-05, 0.026624061167240143, -0.014048325829207897, 0.06485160440206528, 0.07688285410404205, -0.24344129860401154, -0.10774464160203934, -0.03302505612373352, 0.0027970874216407537, -0.0034412366803735495, -0.03216526657342911, -0.004560369998216629, 0.04847817122936249], [-0.018286138772964478, -0.17413903772830963, -0.04392007365822792, 0.1098845824599266, -0.06458938866853714, 0.359099805355072, 0.1147785484790802, -0.007272456306964159, 0.032796718180179596, -0.09610892832279205, 0.0023320030886679888, -0.03244110196828842, 0.12456100434064865, -0.06793873757123947, 0.003600940341129899, 0.04963643103837967, -0.03022950142621994, -0.07395901530981064, -0.058768827468156815, 0.1191243827342987, 0.09180845320224762, -0.037859100848436356, -0.07945535331964493, 0.05166387930512428, -0.37925800681114197, -0.12784746289253235, -0.07819191366434097, 0.018362248316407204, -0.016394024714827538, -0.006242992356419563, -0.07174182683229446, -0.029514411464333534], [-0.03286730870604515, -0.03120134398341179, 0.00974928680807352, 0.0013832576805725694, 0.003997838124632835, 0.17188669741153717, -0.10719028860330582, -0.0008727232343517244, -0.06628395617008209, -0.027779309079051018, 0.018241481855511665, -0.0031088038813322783, -0.034866850823163986, -0.10348610579967499, 0.03127973899245262, -0.03068935126066208, 0.10406368970870972, -0.04731354862451553, 0.05881009250879288, -0.11856092512607574, 0.06846902519464493, -0.028573893010616302, -0.12311800569295883, 0.09739285707473755, -0.1111493706703186, 0.046149034053087234, -0.08256068080663681, -0.10146798938512802, -0.04982790723443031, 0.024585764855146408, -0.08838684856891632, -0.0542164146900177], [0.1161249503493309, -0.41968223452568054, -0.035640470683574677, 0.3547309339046478, -0.03508254885673523, 0.646492063999176, 0.4074968993663788, 0.003598566399887204, 0.10187060385942459, 0.02185274288058281, 0.0009204398957081139, -0.21202735602855682, -0.17287567257881165, -0.017916744574904442, -0.1148819848895073, 0.07151299715042114, 0.15401114523410797, -0.1785595864057541, 0.04115156829357147, 0.25398796796798706, 0.10905560851097107, 0.08477500826120377, 0.12423333525657654, 0.01935279555618763, -0.643234133720398, -0.28439077734947205, -0.019979558885097504, 0.024927200749516487, -0.3337722718715668, 0.03326045349240303, -0.19121912121772766, -0.034274764358997345], [-0.06389772891998291, -0.13812461495399475, -0.024589767679572105, -0.18118725717067719, 0.02499198727309704, 0.12585678696632385, -0.08051688224077225, -0.007030304986983538, 0.09869933873414993, 0.1338491141796112, -0.008632311597466469, -0.023359928280115128, 0.01031459216028452, 0.09106573462486267, 0.04973343014717102, 0.10893400758504868, 0.13743813335895538, -0.23958151042461395, 0.024748122319579124, -0.11780574917793274, -0.09691298753023148, -0.03520708531141281, -0.258574903011322, -0.15248697996139526, -0.1550150066614151, 0.010819688439369202, -0.09933120757341385, -0.03516623005270958, 0.09896156191825867, 0.20924489200115204, -0.2463943511247635, -0.029389191418886185], [0.05039137229323387, -0.07104597240686417, 0.05472591891884804, 0.08168980479240417, -0.16823607683181763, 0.21836905181407928, 0.21931560337543488, -0.007757104001939297, 0.024781251326203346, -0.01839456520974636, -0.01123206876218319, -0.01446476113051176, 0.07308860868215561, 0.28735828399658203, -0.08544444292783737, 0.039256513118743896, -0.016187572851777077, -0.07990647852420807, 0.009631706401705742, 0.31548672914505005, -0.03906220197677612, 0.12866583466529846, 0.18028013408184052, 0.07233824580907822, -0.17303945124149323, -0.016297368332743645, -0.04366770014166832, -0.14620375633239746, -0.3755757510662079, -0.16211706399917603, -0.0025988942943513393, 0.023590559139847755], [-0.07954106479883194, -0.24796640872955322, 0.050936803221702576, 0.1633765548467636, -0.035933420062065125, 0.427440881729126, 0.13547685742378235, 0.007762668188661337, 0.040113627910614014, 0.23021300137043, 0.01871250942349434, -0.07846975326538086, 0.17366868257522583, -0.32180407643318176, -0.018020251765847206, -0.024660658091306686, -0.049626823514699936, -0.01055220142006874, -0.07276149094104767, 0.06662687659263611, -0.05184846371412277, 0.04186070337891579, 0.13308924436569214, -0.060152046382427216, -0.403385192155838, -0.12467788904905319, 0.01924498751759529, -0.2407497614622116, -0.01514060702174902, -0.00508637772873044, -0.019754044711589813, 0.006037961225956678], [-0.02618843875825405, -0.10284878313541412, -0.04058047756552696, -0.045773014426231384, 0.023454129695892334, 0.1383066028356552, 0.3104322850704193, 0.021953515708446503, 0.0749540627002716, 0.05627106502652168, -0.013165812939405441, 0.019013315439224243, 0.0946168303489685, 0.005515802651643753, -0.1041286513209343, -0.0098967794328928, 0.19153358042240143, 0.07636494934558868, 0.05543570965528488, -0.37788498401641846, -0.05199439078569412, 0.10372886061668396, -0.1312389075756073, 0.019809164106845856, -0.12304024398326874, -0.00042900399421341717, -0.034908320754766464, -0.14670003950595856, -0.08199985325336456, -0.037718694657087326, 0.07774091511964798, 0.06120213866233826], [0.0019747084006667137, -0.011890639550983906, 0.00020483965636231005, 0.014425049535930157, 0.0013203442795202136, 0.02140052802860737, 0.013371746055781841, -0.0003415919200051576, -0.0005019506788812578, 0.00026230470393784344, 0.0010694916127249599, -0.008179177530109882, 0.002031876239925623, -0.00445559062063694, 0.0033403204288333654, 0.00291138025932014, 0.008167974650859833, 0.002261038636788726, -0.0014976552920415998, 0.0016148698050528765, 0.0006587914540432394, 0.0005230249953456223, 0.008295584470033646, 0.006884293630719185, -0.021590985357761383, -0.010792172513902187, -0.006927946582436562, 0.00034553708974272013, 0.0005349512211978436, 0.00048105145106092095, -0.0028546529356390238, 0.0012371394550427794], [-0.02560351975262165, -0.07758235186338425, 0.09406403452157974, 0.18878106772899628, -0.006331348326057196, 0.06770219653844833, 0.04517844319343567, -0.006453779060393572, -0.016653096303343773, -0.017303409054875374, -3.190333882230334e-05, -0.013094264082610607, 0.05471472442150116, 0.13334344327449799, -0.06125284731388092, -0.1156708225607872, -0.10162357240915298, -0.1586901694536209, -0.05442218482494354, 0.008800284005701542, 0.0019210121827200055, 0.08471626043319702, -0.13933168351650238, 0.024337302893400192, -0.01958654634654522, 0.06134331226348877, 0.04776415228843689, -0.06675175577402115, 0.05107635632157326, -0.022117003798484802, -0.12335286289453506, -0.008656373247504234], [0.10266824811697006, -0.5027672052383423, 0.14020217955112457, 0.8873880505561829, 0.0067434366792440414, 0.799119770526886, 0.45836588740348816, -0.004469116218388081, -0.22020769119262695, -0.22554966807365417, 0.015733184292912483, -0.34319397807121277, 0.20374475419521332, -0.5482110381126404, -0.008017284795641899, 0.22167405486106873, 0.12633617222309113, -0.07958337664604187, -0.2846679389476776, 0.4432699680328369, -0.02848944440484047, 0.0015952253015711904, 0.3973664343357086, -0.06617911905050278, -0.7378054261207581, -0.7373921871185303, 0.2282605767250061, -0.024306589737534523, -0.16584624350070953, 0.16265147924423218, -0.1658036857843399, 0.06789717078208923], [0.009736578911542892, 0.025249775499105453, 0.001888224040158093, -0.015349688939750195, 0.0004045651585329324, -0.05961287021636963, -0.01436846237629652, 0.0016476857708767056, -0.0026222262531518936, 0.01964445412158966, 0.006976061034947634, -0.009974179789423943, 0.004786955192685127, 0.001335028326138854, -0.004124233964830637, -0.017522381618618965, -0.012825015932321548, -0.014009307138621807, -0.012766656465828419, -0.002517921384423971, -4.9783269787440076e-05, 0.008934615179896355, -0.006043237634003162, -0.001064301235601306, 0.07947704941034317, -0.004739954601973295, 0.028442246839404106, 0.005686923861503601, -0.009810123592615128, -0.014102243818342686, -0.006270487327128649, -0.0017299969913437963], [-0.015968509018421173, 0.058690145611763, -0.030823584645986557, 0.04950597137212753, 0.003918761853128672, -0.1287805587053299, -0.04705996438860893, 0.0025494922883808613, 0.10566636919975281, -0.0356067530810833, 0.012346282601356506, -0.09893444925546646, 0.12498804181814194, -0.0021937566343694925, -0.01920071616768837, 0.05104755237698555, 0.11309558153152466, -0.0354798324406147, -0.04510034620761871, -0.011188947595655918, 0.006061185151338577, -0.05389345809817314, 0.0006187243270687759, -0.0627511739730835, -0.1204804927110672, -0.07226677983999252, 0.10839278995990753, 0.20277072489261627, 0.05503426864743233, 0.0021131967660039663, -0.05863296985626221, 0.03724496066570282], [-0.1788182407617569, -0.5357239246368408, 0.3039609491825104, 0.7977851033210754, -0.09023929387331009, 0.8067197203636169, 0.4274894595146179, -0.02008093148469925, 0.130827859044075, -0.17565001547336578, -0.018637878820300102, -0.5871966481208801, 0.33163508772850037, -0.43469566106796265, 0.009732364676892757, 0.2748048007488251, 0.05794070288538933, -0.04349604994058609, -0.38447490334510803, 0.7732197642326355, 0.11624231189489365, 0.023651322349905968, 0.503913402557373, -0.43500128388404846, -0.6991151571273804, -0.7287343144416809, 0.08626672625541687, -0.36606577038764954, -0.27750012278556824, 0.027290022000670433, -0.6033452749252319, 0.04410654306411743], [-0.11005476862192154, -0.25568509101867676, 0.0987214744091034, 0.2754475474357605, 0.05190239101648331, 0.5920920372009277, 0.26935774087905884, -0.0019268228206783533, 0.24805738031864166, -0.08201322704553604, 0.021681977435946465, -0.22576527297496796, 0.21358154714107513, 0.07304280251264572, 0.01641627587378025, -0.008698694407939911, -0.06547610461711884, -0.22680383920669556, 0.033901140093803406, 0.22716912627220154, -0.24849069118499756, -0.23769676685333252, 0.15822070837020874, 0.0034610747825354338, -0.8128077387809753, -0.5803638696670532, 0.16510109603405, -0.20252776145935059, 0.16359490156173706, 0.3072645366191864, -0.2001672387123108, -0.19569730758666992], [0.020973006263375282, -0.08785641938447952, -0.004549670033156872, 0.03713545575737953, 0.04092198982834816, 0.27813640236854553, 0.11854074150323868, -0.00013581343227997422, 0.027292093262076378, -0.04722629860043526, -0.001151170232333243, -0.021523211151361465, 0.08923089504241943, 0.00020341732306405902, 0.04738311097025871, -0.04966248199343681, 0.010932328179478645, 0.073410265147686, 0.020462073385715485, 0.006926962174475193, -0.05289972946047783, -0.010782222263514996, 0.05417301878333092, -0.01986921764910221, -0.3163635730743408, -0.10687196999788284, -0.04378613084554672, 0.01116111595183611, -0.05809319391846657, -0.03359632194042206, -0.03768065944314003, 0.006792525760829449], [-0.018182212486863136, -0.018758384510874748, -0.07967764139175415, 0.06509526073932648, -0.01519032847136259, 0.01909543387591839, -0.0763128399848938, -0.007673355285078287, 0.07350116223096848, -0.013722963631153107, 0.0002500340633559972, -0.08695124834775925, -0.011926932260394096, -0.00605953810736537, 0.06981801241636276, 0.0825309306383133, 0.16153950989246368, -0.03279571607708931, -0.0800946056842804, -0.013658572919666767, 0.039477843791246414, -0.07575960457324982, -0.2723750174045563, -0.007992377504706383, -0.32040324807167053, -0.00028825984918512404, -0.2766565978527069, 0.13226933777332306, 0.01865030638873577, -0.003806139575317502, -0.22950758039951324, 0.03313898667693138], [-0.15540678799152374, 0.004564917180687189, -0.025900309905409813, 0.05888202413916588, -0.022951913997530937, 0.008670561015605927, -0.3284448981285095, 0.014947559684515, 0.10152563452720642, 0.09171752631664276, 0.012680361978709698, -0.08076060563325882, 0.36161717772483826, 0.09962175786495209, -0.11037252098321915, 0.1244523823261261, 0.07785927504301071, -0.03393225371837616, -0.18712006509304047, 0.20038717985153198, 0.0009611712885089219, -0.057322029024362564, -0.05009201169013977, 0.12276062369346619, 0.05445239320397377, 0.016805607825517654, 0.1701810359954834, -0.005931310821324587, -0.06525734812021255, -0.10505110025405884, -0.15239161252975464, 0.050502751022577286], [0.08381455391645432, -0.031221656128764153, -0.12130311131477356, 0.06689134985208511, 0.11558640748262405, 0.010813380591571331, -0.1354825347661972, -0.014507417567074299, -0.1454407125711441, -0.0430484265089035, 0.00319001660682261, 0.003382602008059621, 0.03833453357219696, 0.012555647641420364, 0.08703569322824478, 0.07050682604312897, -0.028546029701828957, -0.06886566430330276, 0.07642296701669693, 0.21102634072303772, -0.0005852283211424947, 0.03152979165315628, -0.10289964079856873, 4.5981796574778855e-05, -0.053394343703985214, 0.045225825160741806, 0.11745011806488037, -0.03893611952662468, -0.12508538365364075, 0.13195118308067322, -0.010314403101801872, -0.03477799519896507], [-0.05313422530889511, -0.1129223182797432, -0.08584645390510559, 0.14918938279151917, 0.08632269501686096, 0.15181201696395874, -0.15708421170711517, 0.003946032840758562, 0.0654558315873146, 0.012594858184456825, 0.005227585323154926, -0.06939861923456192, 0.2163408249616623, -0.1404528170824051, -0.12460066378116608, 0.041859883815050125, -0.09499730169773102, -0.032398756593465805, -0.12112867832183838, 0.11415110528469086, -0.02156011015176773, 0.10956332832574844, 0.04170471429824829, 0.06273443251848221, -0.13637679815292358, -0.031971275806427, 0.006981650833040476, -0.0044501665979623795, 0.05434867739677429, -0.015736235305666924, -0.13258488476276398, 0.02701745554804802], [-0.039198946207761765, 0.016813674941658974, -0.05110999569296837, -0.05804247409105301, 0.21615280210971832, 0.190117746591568, 0.011549723334610462, 0.015842607244849205, -0.1762998402118683, 0.28790760040283203, -0.03467242792248726, 0.03788270056247711, -0.2740977108478546, 0.15541420876979828, -0.01592853292822838, -0.010441217571496964, 0.3187256157398224, -0.002153708366677165, 0.02708747424185276, 0.029238399118185043, -0.2487451285123825, -0.048196181654930115, 0.005369335412979126, -0.17695999145507812, -0.46531563997268677, -0.12234380841255188, 0.016651907935738564, 0.01621791161596775, 0.007607083301991224, 0.16997350752353668, -0.22814981639385223, -0.021054264158010483], [0.10913266986608505, -0.1654137820005417, 0.12341873347759247, 0.3834173083305359, -0.02981937676668167, 0.9051785469055176, 0.514915406703949, -0.006085808388888836, 0.08005174249410629, -0.20375829935073853, 0.03609255701303482, -0.23496277630329132, 0.22590182721614838, -0.42410171031951904, -0.012325535528361797, -0.10821468383073807, -0.04070260748267174, -0.068628691136837, 0.020543960854411125, 0.2091064155101776, 0.06331174075603485, 0.16790664196014404, 0.09995368123054504, -0.07200686633586884, -0.9185279011726379, -0.4368998110294342, 0.13111534714698792, -0.0032494678162038326, -0.15335017442703247, -0.2042330950498581, -0.05865773931145668, 0.025168200954794884], [0.07045256346464157, -0.17490631341934204, 0.07836973667144775, 0.08943140506744385, 0.017377067357301712, 0.4208720624446869, 0.24183428287506104, 0.006276278290897608, 0.08328482508659363, -0.02600538544356823, 0.0033703420776873827, -0.035940106958150864, 0.042045604437589645, -0.1498441845178604, 0.07000066339969635, -0.12657329440116882, -0.17312240600585938, 0.033042557537555695, -0.02379130758345127, 0.07426062226295471, -0.08656838536262512, 0.07993631064891815, 0.07133955508470535, 0.19671842455863953, -0.457807719707489, -0.20837774872779846, 0.02565201371908188, -0.07060114294290543, -0.05268010124564171, -0.10824955254793167, -0.059187207370996475, -0.040226444602012634], [0.06746397167444229, -0.06099158897995949, 0.061538323760032654, 0.03987136110663414, 0.07557971030473709, 0.08948028087615967, 4.3737931264331564e-05, -0.013283987529575825, 0.07191163301467896, 0.0029604786541312933, 0.020833276212215424, -0.06509922444820404, -0.23744139075279236, -0.3005179166793823, 0.058500539511442184, -0.026992395520210266, -0.07466479390859604, 0.1650191694498062, -0.22670462727546692, 0.1570574939250946, 0.04897784814238548, -0.06983671337366104, 0.0041547780856490135, 0.024343449622392654, -0.01798420585691929, -0.1452915519475937, -0.3364676237106323, 0.009823823347687721, 0.06093962490558624, 0.08181644976139069, 0.12047380954027176, -0.0898481160402298], [0.01609477400779724, -0.4982704222202301, 0.27944642305374146, 0.5565451383590698, 0.09122507274150848, 0.9721212387084961, 0.31139296293258667, -0.007823512889444828, 0.3153325319290161, -0.36829811334609985, 0.01988866738975048, -0.2927529513835907, -0.03586865961551666, -0.32300758361816406, -0.02064056321978569, -0.09863973408937454, 0.21577952802181244, -0.15136723220348358, -0.09599179029464722, 0.4070793390274048, 0.08344796299934387, -0.02317660115659237, 0.13626053929328918, -0.12247159332036972, -1.1513919830322266, -0.5868651270866394, -0.07384664565324783, -0.03090479038655758, -0.2592208683490753, -0.14763903617858887, -0.2081473171710968, 0.07000365108251572], [0.017024798318743706, -0.07484474033117294, -0.35263320803642273, 0.1710391342639923, 0.17749013006687164, 0.4311799108982086, 0.08687540143728256, -0.008838683366775513, -0.078719861805439, -0.10669688135385513, 0.0266681220382452, -0.10409518331289291, 0.2885439693927765, -0.024533474817872047, 0.13158687949180603, 0.09311885386705399, -0.02452288195490837, -0.034986093640327454, 0.08337152004241943, 0.17040178179740906, 0.0849616751074791, -0.12100698798894882, 0.13997355103492737, 0.03224574401974678, -0.60797119140625, -0.05070037022233009, 0.2774096131324768, -0.030382398515939713, -0.10772398859262466, 0.1521351933479309, 0.08285635709762573, -0.15428009629249573], [-0.02554054744541645, -0.04748037829995155, 0.01740647852420807, -0.0035114819183945656, 0.026100579649209976, 0.09944412112236023, 0.04209502413868904, -0.0031374043319374323, 0.06801393628120422, -0.08846239745616913, -0.002361660823225975, -0.025782179087400436, -0.19813162088394165, 0.053005896508693695, 0.04392528161406517, -0.061418190598487854, 0.00522097572684288, -0.05226561427116394, -0.0421658456325531, -0.19953489303588867, -0.06570783257484436, -0.05052006617188454, -0.03202090784907341, 0.017319822683930397, -0.09024649113416672, -0.12103819847106934, 0.019944772124290466, 0.1358831375837326, 0.3419589698314667, -0.06615744531154633, 0.008457314223051071, 0.01606372557580471], [0.03449859470129013, -0.11351799964904785, -0.38275280594825745, 0.06708618253469467, 0.05148174986243248, -0.0006484669866040349, -0.16125339269638062, -0.012393517419695854, -0.21074198186397552, 0.4300648868083954, -0.025363260880112648, -0.04040906950831413, -0.022662794217467308, -0.11178676784038544, 0.08936655521392822, 0.18478015065193176, 0.4417538344860077, -0.0331193283200264, -0.016517462208867073, 0.1266970932483673, -0.017178578302264214, -0.1991952806711197, -0.05903131514787674, -0.15559540688991547, -0.3208259046077728, -0.05814463272690773, -0.2589268088340759, 0.1800396889448166, -0.050821445882320404, 0.5019997954368591, -0.08758945018053055, -0.1529509723186493], [-0.07526474446058273, -0.6734815239906311, 0.1320258229970932, 0.35621365904808044, -0.017551705241203308, 1.0549547672271729, 0.6180650591850281, -0.002726298291236162, 0.1111045554280281, -0.23237477242946625, 0.02490217611193657, -0.38499119877815247, 0.17263928055763245, -0.21288731694221497, -0.10346017777919769, 0.1268186718225479, 0.00568045862019062, -0.19474628567695618, -0.08960616588592529, 0.3521583378314972, 0.26690924167633057, 0.0373065359890461, 0.18255242705345154, 0.0782373696565628, -0.8249064683914185, -0.3433127999305725, 0.038222432136535645, -0.006225015502423048, -0.35743072628974915, -0.058254580944776535, -0.22236323356628418, 0.09312677383422852], [-0.04699588939547539, -0.004805694799870253, -0.11789283156394958, 0.02973572537302971, 0.05348857492208481, 0.28073015809059143, -0.24557483196258545, -0.0066526830196380615, 0.08297865092754364, -0.2841879725456238, 0.010034569539129734, -0.08688300848007202, -0.1750812977552414, -0.22355641424655914, 0.041671525686979294, -0.026134328916668892, -0.1409599930047989, 0.11522193253040314, -0.20446763932704926, 0.17773300409317017, 0.004784111864864826, -0.14919893443584442, 0.015648245811462402, -0.05119812861084938, -0.23368163406848907, 0.06953190267086029, -0.3883919417858124, 0.017822284251451492, -0.48429641127586365, -0.290914922952652, -0.18448586761951447, -0.09885211288928986], [-0.05210914462804794, -0.11639688163995743, -0.030763281509280205, -0.021806737408041954, -0.05078085511922836, 0.04656293988227844, 0.1315494179725647, 0.006951452698558569, 0.09461220353841782, -0.13215325772762299, -0.028911111876368523, -0.03813105449080467, 0.32198676466941833, -0.05526009202003479, 0.061752062290906906, 0.01995907351374626, 0.1738971620798111, 0.04725182056427002, 0.10083609819412231, 0.05700984597206116, -0.13590750098228455, 0.025501657277345657, -0.0013013870920985937, -0.11768314987421036, -0.06242933124303818, -0.07142762839794159, -0.08514457195997238, 0.01576552726328373, -0.0860380083322525, -0.21954695880413055, -0.10607404261827469, 0.04030845686793327], [-0.10041894018650055, -0.06603540480136871, -0.03175392746925354, 0.0968218594789505, -0.034618448466062546, 0.0938299223780632, 0.052221182733774185, 0.008937113918364048, -0.021632932126522064, 0.03525640442967415, -0.011927887797355652, 0.008396673947572708, 0.31487783789634705, -0.03799884766340256, 0.009344296529889107, 0.13162069022655487, 0.2442755550146103, -0.016335424035787582, -0.09991008788347244, -0.06506503373384476, 0.17930248379707336, -0.05658871680498123, -0.06669219583272934, -0.03027581050992012, -0.1416769027709961, -0.02854042686522007, 0.18640530109405518, -0.12583264708518982, 0.4397512972354889, -0.06005174666643143, -0.1723196804523468, 0.05083094537258148], [-0.0033116873819381, -0.007935665547847748, -0.0038496635388582945, 0.004754920490086079, -0.039354659616947174, 0.04303174465894699, 0.1261502206325531, 0.0016529830172657967, 0.03883516415953636, -0.03712821006774902, 0.0013925511157140136, -0.013064526952803135, 0.012042921967804432, 0.039868760854005814, 0.003248685970902443, 0.039661575108766556, 0.07227984070777893, 0.04600447043776512, 0.008216328918933868, -0.05004512146115303, 0.025965163484215736, -0.0219010878354311, 0.0073378318920731544, 0.016029370948672295, -0.05831730365753174, -0.0034752313513308764, -0.05952858179807663, 0.022589445114135742, -0.08646686375141144, -0.06901269406080246, 0.010933374054729939, 0.05185966566205025], [0.38042762875556946, -0.016237664967775345, -0.1361202597618103, 0.019535239785909653, -0.1658562421798706, 0.03535640612244606, 0.08540952205657959, 0.018354613333940506, 0.4098416566848755, -0.2713980972766876, 0.05198915675282478, -0.25075408816337585, -0.3696257770061493, -0.09840580075979233, -0.614718496799469, -0.15441761910915375, 0.08243197202682495, -0.1905345320701599, 0.12483742833137512, 0.06688342988491058, -0.059289559721946716, -0.2672244608402252, 0.13217248022556305, 0.07002577930688858, 0.05487724393606186, 0.1945585012435913, -0.11122050136327744, -0.5969514846801758, 0.09549108147621155, 0.40223008394241333, 0.00922401063144207, -0.1239619106054306], [-0.11969263851642609, 0.22632290422916412, -0.1048695296049118, 0.187204048037529, 0.0043901000171899796, -0.3594120442867279, 0.23713770508766174, -0.001829436863772571, -0.033997394144535065, -0.13342612981796265, -0.01931488886475563, 0.03645128011703491, -0.23079684376716614, 0.010863089002668858, -0.06939605623483658, 0.021298304200172424, -0.0019340335857123137, 0.06657599657773972, -0.2539157569408417, 0.18222609162330627, 0.37702032923698425, -0.22633925080299377, 0.25917941331863403, 0.5696467161178589, -0.010879608802497387, -0.2797219753265381, 0.30718177556991577, 0.7920632362365723, -0.08909071981906891, -0.21296852827072144, -0.13892577588558197, 0.05266926437616348], [-0.10762829333543777, -0.04054183512926102, 0.06785855442285538, -0.3900025486946106, -0.0058029466308653355, 0.06970478594303131, 0.04974156618118286, -0.009841473773121834, 0.2272075116634369, -0.0350736603140831, 0.002894499571993947, 0.0725400373339653, -0.1851644366979599, 0.2708592116832733, -0.10181640088558197, -0.14278653264045715, -0.41994261741638184, -0.024680063128471375, -0.13335704803466797, -0.09264536201953888, -0.18012917041778564, -0.00659500015899539, -0.20618446171283722, 0.08174198120832443, 0.19869455695152283, -0.08574381470680237, -0.5785359740257263, -0.3138847053050995, 0.12484799325466156, 0.04679406061768532, 0.08508782833814621, 0.03540178760886192], [0.17538964748382568, -0.05432523414492607, 0.23432035744190216, 0.1319660097360611, 0.1263139545917511, 0.08872151374816895, -0.24649597704410553, -0.02380186878144741, -0.3469288945198059, 0.016794776543974876, -0.016235429793596268, -0.10430310666561127, -0.6666800379753113, 0.17490291595458984, 0.17911343276500702, -0.11628322303295135, 0.2110113799571991, -0.3774881362915039, 0.036963626742362976, 0.2841201722621918, 0.010111693292856216, -0.05410159379243851, 0.06226435676217079, 0.11094285547733307, -0.17140783369541168, -0.006494303699582815, 0.3391507863998413, 0.008517279289662838, -0.04561107978224754, 0.1533847451210022, -0.026073258370161057, -0.039175067096948624], [0.01906619407236576, -0.12824082374572754, -0.5238990783691406, 0.281166672706604, 0.4175148904323578, -0.016588712111115456, 0.10602197796106339, -0.02240440435707569, -0.13593102991580963, 0.009458445012569427, 0.004387654364109039, -0.017921673133969307, -0.1690717190504074, 0.11693860590457916, 0.3193971514701843, 0.07945708185434341, 0.20023484528064728, 0.05749537795782089, 0.1928880363702774, 0.043950486928224564, -0.11240685731172562, -0.001665277872234583, 0.06872877478599548, 0.12981243431568146, 0.04002892225980759, 0.1430540233850479, 0.2625449299812317, -0.3758755922317505, 0.153596431016922, 0.1417447179555893, -0.05610929802060127, -0.030476348474621773], [-0.09355266392230988, -0.02432963252067566, 0.057196248322725296, 0.06060327589511871, -0.10667536407709122, 0.13411521911621094, 0.1327638328075409, 0.0020968099124729633, 0.06061204895377159, 0.10445135831832886, 0.01614641398191452, -0.02708994224667549, 0.09431084990501404, -0.31406062841415405, -0.058974739164114, -0.09486233443021774, -0.025666989386081696, 0.04518486186861992, 0.016361182555556297, -0.14994192123413086, -0.07212172448635101, 0.13533474504947662, 0.005567311309278011, -0.10170581191778183, -0.3241910934448242, -0.02800300531089306, -0.04765906557440758, -0.07067850977182388, 0.10154161602258682, -0.0606236532330513, 0.02895781211555004, 0.051124073565006256], [0.055277518928050995, 0.06824123114347458, 0.18250958621501923, -0.24892102181911469, -0.5055456757545471, 0.12020427733659744, -0.12091678380966187, 0.02038440853357315, 0.5546965599060059, -0.3608866333961487, 0.049787119030952454, -0.006063766311854124, -0.08079405128955841, 0.16371215879917145, 0.08019023388624191, -0.09104769676923752, -0.4099709391593933, 0.44935357570648193, 0.3160437345504761, -0.44728508591651917, 0.09739131480455399, 0.03826357424259186, -0.8042593002319336, 0.2693549394607544, 0.022960225120186806, 0.14990445971488953, -0.6802487373352051, -0.31098073720932007, 0.186355859041214, -0.2510804831981659, 0.243448406457901, -0.07555190473794937], [-0.03532269597053528, 0.009113877080380917, 0.014702798798680305, -0.024383099749684334, -0.008779698051512241, -0.0005926840822212398, 0.0038361819460988045, 0.027411071583628654, 0.04389354959130287, 0.05490369349718094, 0.0005778781487606466, 0.0026306959334760904, 0.03859150782227516, 0.020854175090789795, -0.012674437835812569, -0.023728668689727783, 0.00563794793561101, -0.006844817660748959, -0.009189917705953121, -0.0024109582882374525, 0.014037017710506916, 0.017877548933029175, 0.06030460447072983, 0.00393259571865201, 0.009218784049153328, 0.004831006750464439, -0.007368437014520168, -0.02652790956199169, -0.0027142022736370564, -0.004973233677446842, 0.025378506630659103, -0.0064596799202263355], [-0.42891862988471985, 0.2312336415052414, -0.02809753082692623, 0.023179760202765465, -0.24417132139205933, 0.2776457667350769, -0.5405105948448181, -0.0089541245251894, 0.022004928439855576, -0.46151411533355713, 0.06398998200893402, -0.12731890380382538, 0.13578172028064728, 0.22268670797348022, -0.283234179019928, -0.3221990764141083, -0.14884322881698608, 0.8253074288368225, -0.309998482465744, -0.7264230847358704, -0.39270931482315063, -0.26270419359207153, -0.1949850618839264, -0.16143688559532166, 0.01166210975497961, -0.218816339969635, 0.032392702996730804, -0.0922379344701767, -0.4459918439388275, -0.017822377383708954, -0.20260559022426605, 0.2290700078010559], [-0.31876352429389954, -0.07559099793434143, 0.3075225055217743, -0.21731211245059967, -0.21689912676811218, 0.05792927369475365, 0.09367109835147858, 0.0076902336440980434, 0.1935085654258728, -0.011758770793676376, -0.2163989096879959, 0.09388730674982071, -0.25150275230407715, 0.002408119384199381, -0.34451159834861755, -0.09513270854949951, 0.5141358375549316, 0.12154291570186615, -0.022103359922766685, -0.05231423303484917, -0.21951593458652496, 0.03332747146487236, -0.07380736619234085, 0.356038361787796, 0.08055633306503296, 0.2513647973537445, -0.505911111831665, -0.5147342085838318, 0.05654977634549141, -0.0007627274608239532, -0.12181010842323303, 0.10147496312856674], [0.040643319487571716, 0.05589759722352028, 0.039849597960710526, 0.07301285862922668, 0.039266761392354965, 0.10382690280675888, -0.02949690632522106, 0.010174429975450039, -0.042314235121011734, -0.003591646207496524, 0.016104549169540405, -0.059832263737916946, -0.012184071354568005, -0.06475483626127243, -0.024957066401839256, 0.01437500398606062, -0.05567114055156708, 0.013189338147640228, -0.04073629528284073, 0.1901383101940155, 0.049587082117795944, -0.023546231910586357, 0.06405024975538254, -0.005075585562735796, -0.13292282819747925, -0.08720003068447113, 0.21578499674797058, 0.1757870316505432, -0.12957103550434113, -0.07314563542604446, 0.025089535862207413, 0.003507679095491767], [-0.08519948273897171, -0.03269216790795326, -0.1387128233909607, -0.20264585316181183, -0.11811718344688416, -0.09966231882572174, 0.1949477642774582, -0.0012108439113944769, -0.022581133991479874, 0.053870536386966705, -0.012700669467449188, 0.13658589124679565, 0.1467752605676651, 0.08433379977941513, 0.013817301951348782, 0.05078383907675743, -0.10307393223047256, 0.0008938868413679302, 0.10916846990585327, -0.29150518774986267, -0.0048138899728655815, 0.09252487123012543, -0.24068942666053772, 0.15978772938251495, 0.07678940892219543, 0.20290760695934296, -0.1696261316537857, -0.35235875844955444, 0.0028503481298685074, -0.05239139124751091, 0.07749374210834503, -0.000483326701214537], [-0.08324933797121048, 0.17213107645511627, -0.17913061380386353, 0.07060090452432632, -0.04569423943758011, 0.21493659913539886, -0.2905474007129669, 0.01053339708596468, -0.28429538011550903, 0.3878612816333771, 0.06579273194074631, 0.04394086077809334, 0.1795150190591812, 0.1253018081188202, -0.1184120774269104, 0.10631238669157028, -0.2203478068113327, 0.010808471590280533, -0.18171650171279907, 0.2953009307384491, -0.16776445508003235, -0.10752543807029724, 0.3176106810569763, 0.06232200190424919, -0.04479514807462692, -0.10018737614154816, 0.39909374713897705, -0.15320880711078644, -0.25843101739883423, 0.1859675943851471, -0.29005616903305054, -0.025856565684080124], [0.15176594257354736, -0.03563547506928444, -0.038805585354566574, 0.03121091239154339, -0.07050780206918716, -0.04488378390669823, 0.011884366162121296, -0.006508450023829937, -0.22461937367916107, -0.11976590007543564, 0.10972143709659576, 0.05501558259129524, -0.1784317046403885, 0.2345026284456253, -0.08821024745702744, 0.1611863225698471, -0.08492742478847504, 0.10798929631710052, -0.0871972069144249, -0.12448174506425858, 0.6315840482711792, 0.4018988311290741, -0.13800983130931854, -0.49740907549858093, -0.21179413795471191, 0.22917212545871735, -0.09250625967979431, 0.4736385643482208, -0.31235289573669434, -0.183955579996109, -0.2069188803434372, 0.12351062893867493], [0.7137858867645264, -0.007367601152509451, 0.1388891339302063, -0.06477158516645432, -0.17195665836334229, 0.06198510900139809, -0.02980218641459942, -0.0026630691718310118, 0.059472065418958664, 0.3004361391067505, 0.0052181147038936615, 0.026917755603790283, 0.3337632417678833, 0.07349756360054016, 0.4263218939304352, 0.0017079041572287679, 0.02512449026107788, 0.281544953584671, -0.07258588820695877, -0.037170812487602234, 0.11569952219724655, -0.3673965632915497, -0.08100205659866333, 0.09197893738746643, 0.031216071918606758, 0.1756853610277176, 0.14844921231269836, 0.1522529125213623, 0.04027730971574783, 0.08928623050451279, -0.03175310045480728, 0.08561263233423233], [-0.07945604622364044, -0.10432177037000656, -0.4923788607120514, 0.007247120141983032, 0.07428259402513504, 0.1313859224319458, -0.28942814469337463, -0.013614279218018055, -0.006270078010857105, 0.1685900092124939, 0.03731793537735939, 0.04009722173213959, 0.18716689944267273, 0.2902816832065582, 0.11771643906831741, 0.35420072078704834, 0.14718806743621826, -0.06174921244382858, 0.13459572196006775, 0.13273480534553528, -0.19791099429130554, -0.08699943125247955, 0.13506507873535156, 0.03490521013736725, -0.1508869081735611, 0.42990532517433167, 0.06338460743427277, -0.06819695979356766, -0.0335141085088253, 0.1312221884727478, 0.03852945566177368, -0.12474634498357773], [-0.06417488306760788, -0.06479255855083466, -0.11391490697860718, 0.0384489968419075, 0.017997832968831062, -0.1157354786992073, 0.5948795080184937, -0.0026202131994068623, 0.22533844411373138, 0.17896859347820282, -0.024370543658733368, 0.044668059796094894, 0.36090824007987976, 0.3581356108188629, -0.14074847102165222, 0.24217742681503296, 0.14543841779232025, 0.30396050214767456, 0.11828626692295074, -0.48916324973106384, 0.17875410616397858, -0.04629141464829445, -0.5573187470436096, 0.231862410902977, -0.07154139131307602, -0.10410212725400925, 0.03888045996427536, -0.05778791010379791, 0.30128365755081177, 0.017513927072286606, -0.19475671648979187, -0.03567300736904144], [0.045775946229696274, 0.052026860415935516, 0.0743444487452507, 0.17350326478481293, 0.11123564094305038, -0.03584098443388939, -0.007311660796403885, 0.029824497178196907, -0.6507861018180847, -0.3027690649032593, -0.06156273931264877, 0.12845183908939362, 0.443608820438385, 0.014229797758162022, -0.014895371161401272, -0.03670775517821312, -0.18095645308494568, -0.05205819755792618, -0.43057915568351746, -0.34887343645095825, -0.09741593152284622, -0.09026926010847092, 0.33828121423721313, -0.06442970782518387, -0.05040625482797623, -0.2899138629436493, -0.3314923942089081, 0.16474580764770508, -0.4016557037830353, -0.24203485250473022, -0.035833992063999176, -0.20264554023742676], [-0.1408465951681137, -0.16315463185310364, -0.13537614047527313, 0.11742257326841354, -0.15778881311416626, -0.05484100803732872, 0.2245461493730545, 0.012356950901448727, 0.27611902356147766, -0.20804078876972198, 0.04001573473215103, 0.034074701368808746, 0.04849651828408241, 0.08153411000967026, 0.15737469494342804, 0.07213254272937775, -0.2870870530605316, 0.18171516060829163, 0.20284472405910492, -0.17691069841384888, -0.06445414572954178, -0.06912452727556229, -0.10072652250528336, -0.22237825393676758, -0.06373780965805054, -0.0048118531703948975, -0.011971650645136833, -0.06446745991706848, -0.2783759534358978, 0.03581145405769348, 0.1451500505208969, 0.00808771699666977], [-0.01384115032851696, 0.07167929410934448, 0.2719603478908539, 0.250139445066452, 0.0077905054204165936, 0.10663240402936935, -0.15112049877643585, -0.002827314892783761, -0.1342279314994812, 0.20701630413532257, 0.15787239372730255, -0.2759562134742737, -0.4510275423526764, -0.008684780448675156, -0.03424406424164772, -0.07769212126731873, -0.10877972096204758, -0.24511948227882385, 0.029766865074634552, 0.3660087585449219, -0.05315689370036125, -0.027587635442614555, 0.31284376978874207, -0.08196063339710236, 0.1677255779504776, -0.01080062985420227, 1.0008624792099, 0.04203261435031891, -0.07393568009138107, 0.12087361514568329, -0.16565558314323425, 0.013071557506918907], [-0.1037372499704361, 0.049103882163763046, -0.2201329618692398, 0.033263444900512695, -0.2265608310699463, 0.028959425166249275, -0.045168183743953705, 0.007366588804870844, -0.0017097863601520658, 0.04126431420445442, 0.12131969630718231, -0.2626924216747284, -0.31170180439949036, -0.7069451212882996, -0.152706578373909, -0.22346171736717224, -0.21160145103931427, -0.06188591569662094, -0.08344728499650955, -0.09406603127717972, 0.5473008155822754, 0.14776907861232758, 0.055139876902103424, 0.05389542877674103, -0.03232903406023979, 0.25970444083213806, 0.05117054656147957, 0.5448213219642639, -0.2351885586977005, 0.11371885985136032, -0.2633482813835144, 0.03661177679896355], [-0.3032491207122803, 0.03358541801571846, 0.12499520182609558, 0.010687197558581829, -0.21438592672348022, 0.09322638809680939, 0.1750699281692505, 0.005297496914863586, 0.2538391947746277, 0.10843684524297714, 0.06433586031198502, -0.045478109270334244, 0.118192158639431, -0.6039905548095703, 0.2661917805671692, 0.06277100741863251, 0.09084335714578629, -0.04390569403767586, 0.01357876043766737, 0.032938402146101, -0.12707024812698364, 0.1287526786327362, 0.07655254751443863, 0.08539284020662308, 0.1920325607061386, 0.19780953228473663, 0.04952409863471985, -0.5019127130508423, -0.267076700925827, -0.017112141475081444, -0.08606113493442535, -0.08796436339616776], [-0.03666361793875694, -0.08351894468069077, 0.34009066224098206, -0.1090356782078743, 0.04633339121937752, 0.056683965027332306, 0.13916735351085663, -0.005982114002108574, 0.2894791066646576, -0.14172393083572388, -0.0013641632394865155, 0.1245611384510994, -0.28633013367652893, -0.0860004797577858, -0.005313183646649122, -0.018278349190950394, -0.09561966359615326, -0.2178538590669632, -0.0781458169221878, 0.6510785222053528, -0.1549048274755478, 0.07388125360012054, 0.0056498791091144085, -0.04802298918366432, 0.16023188829421997, -0.29901155829429626, 1.4241834878921509, 0.20874781906604767, 0.09776109457015991, 0.02160513773560524, 0.04259352758526802, 0.2715910077095032], [-0.2888321578502655, 0.2329830825328827, 0.04341040924191475, 0.012150559574365616, -0.24311834573745728, 0.020747561007738113, -0.07481200248003006, 0.011425822973251343, 0.3650709092617035, -0.4375256299972534, 0.18192970752716064, -0.4145076274871826, -0.12340101599693298, 0.37740838527679443, -0.10602232813835144, -0.08690417557954788, 0.1658264398574829, -0.013032765127718449, 0.20216961205005646, -0.08512202650308609, -0.12432857602834702, -0.38742944598197937, 0.13616575300693512, 0.31810009479522705, 0.15481142699718475, -0.009612507186830044, -0.25458428263664246, 0.4115202724933624, -0.23092423379421234, 0.2999110519886017, 0.10914091765880585, -0.1273927241563797], [-0.14767533540725708, -0.05781899765133858, -0.0159378033131361, 0.06669636070728302, 0.11571194976568222, -0.35567912459373474, -0.2194153517484665, 0.005003022495657206, -0.13310593366622925, 0.016344858333468437, -0.013985092751681805, -0.07340384274721146, -0.07585956156253815, 0.04832788184285164, -0.14446277916431427, 0.05866832658648491, 0.07967552542686462, -0.15542687475681305, -0.16291747987270355, 0.02733023837208748, -0.057565078139305115, -0.002962694503366947, 0.03558136150240898, -0.06337229907512665, 0.5947939157485962, -0.030786793678998947, 0.1799003779888153, 0.0678800567984581, 0.18118949234485626, 0.1035449206829071, -0.2335263341665268, -0.004371987655758858], [0.04118278622627258, 0.061949994415044785, 0.0449930764734745, -0.1925027221441269, -0.056404389441013336, -0.18096217513084412, -0.139605313539505, 0.0013101070653647184, 0.038213811814785004, -0.011774574406445026, 0.006197190843522549, 0.02038593962788582, -0.00647551566362381, -0.029359225183725357, 0.0034451475366950035, -0.02488965168595314, -0.05482329800724983, 0.032643988728523254, 0.06398902088403702, 0.019209489226341248, -0.007866831496357918, 0.07439848780632019, -0.10936389863491058, -0.022951889783143997, 0.3560636043548584, 0.13982485234737396, -0.10921657830476761, -0.03671299293637276, -0.20950783789157867, 0.0014932650374248624, 0.013832720927894115, -0.03973895311355591], [0.03764137625694275, -0.0636916235089302, 0.35319820046424866, -0.045614782720804214, 0.04069584235548973, -0.09847955405712128, 0.1526404321193695, -0.0014065094292163849, 0.13046599924564362, 0.2569105327129364, -0.161357119679451, 0.2007031887769699, -0.608095645904541, 0.007285657804459333, 0.023322178050875664, 0.15800808370113373, 0.08218720555305481, 0.08407251536846161, -0.0314737968146801, 0.12385240197181702, -0.10488738119602203, 0.015338216908276081, -0.19001299142837524, 0.046918585896492004, 0.11205518990755081, -0.05841957777738571, 0.1619366556406021, 0.11106880009174347, 0.05337534844875336, -0.1289999783039093, 0.11086902022361755, -0.00017722397751640528], [0.08096152544021606, -0.18001101911067963, 0.19382451474666595, 0.02155996859073639, 0.013609146699309349, -0.1648508757352829, 0.048996008932590485, -0.006756529677659273, 0.0190275926142931, 0.057282619178295135, 0.01199343428015709, -0.10245832800865173, 0.09273796528577805, -0.37544113397598267, -0.14189879596233368, 0.007803823333233595, 0.08643452078104019, 0.02944512851536274, -0.019177405163645744, 0.0694958046078682, -0.3871414363384247, 0.21841168403625488, 0.07381878048181534, -0.5910316109657288, -0.09847623854875565, 0.05248026177287102, 0.00010872260463656858, 0.43883082270622253, 0.15086126327514648, 0.017049182206392288, 0.03237643465399742, 0.023905692622065544], [-0.07324511557817459, -0.16488082706928253, 0.010740772821009159, -0.2328670471906662, -0.03471517562866211, -0.1549314260482788, 0.8454058766365051, -0.009655402041971684, 0.6930254101753235, 0.004340897314250469, -0.11914830654859543, 0.006424099672585726, 0.37645959854125977, 0.3984870910644531, -0.2014758437871933, -0.1539350152015686, 1.1517935991287231, -0.07232283055782318, 0.5224280953407288, -1.261441946029663, -0.16635984182357788, 0.2170107513666153, -0.8128175735473633, 0.16852036118507385, -0.09978245943784714, 0.21536603569984436, 0.6485747694969177, -0.44930821657180786, 1.2795274257659912, -0.3981657028198242, 0.008554252795875072, 0.33778107166290283], [0.008390771225094795, 0.0057318382896482944, -0.3916585445404053, -0.1256793737411499, 0.11905376613140106, -0.005915879271924496, 0.1394222527742386, -0.05750175938010216, -0.06175993010401726, 0.3520243465900421, -0.04468024894595146, 0.25010401010513306, -0.3989093601703644, -0.1916588842868805, -0.11741060763597488, 0.23751011490821838, 0.10007213801145554, 0.26717960834503174, -0.10330133140087128, 0.2161855548620224, -0.16463781893253326, -0.21681886911392212, -0.16069303452968597, -0.21212638914585114, -0.2004733383655548, -0.08722533285617828, 0.42842841148376465, 0.2670940160751343, -0.07695431262254715, 0.08088014274835587, 0.05757462978363037, 0.2656838893890381], [-0.07352174073457718, -0.08857055753469467, -0.2265641987323761, 0.1858942210674286, -0.04620720446109772, -0.10095421224832535, 0.23975302278995514, 0.006456636358052492, 0.018512872979044914, -0.6709834933280945, 0.024650579318404198, -0.013232234865427017, -0.054158639162778854, 0.18319456279277802, 0.029384063556790352, -0.04061891511082649, -0.26961594820022583, -0.04379139468073845, 0.0802399218082428, -0.14866504073143005, -0.1231604740023613, 0.07865393906831741, 0.35149142146110535, 0.13070456683635712, -0.010211233980953693, -0.0048715462908148766, -0.08100893348455429, -0.3322618007659912, 0.13432389497756958, -0.07679881900548935, 0.23081253468990326, 0.11052724719047546], [0.01791182905435562, -0.006088537629693747, 0.10086013376712799, 0.006686253938823938, -0.13793551921844482, 0.016684886068105698, 0.023810407146811485, 0.05421658977866173, -0.1916055977344513, 0.16368675231933594, 0.010136120021343231, -0.045493919402360916, 0.02310527116060257, -0.07352947443723679, -0.08255104720592499, 0.1538611799478531, 0.10968136787414551, 0.14133533835411072, -0.1373792439699173, -0.12598323822021484, -0.061398182064294815, -0.13821369409561157, -0.1569703221321106, -0.034504882991313934, -0.06289462745189667, -0.041396576911211014, 0.11626897007226944, 0.1539037525653839, -0.17613282799720764, -0.4846947491168976, 0.09937167912721634, 0.06012938916683197], [0.018742717802524567, -0.08439110219478607, -0.00975220836699009, -0.06677702069282532, -0.021772699430584908, 0.09465628117322922, 0.0890873372554779, -0.0063523524440824986, -0.029344454407691956, -0.04912150278687477, 0.004434401635080576, -0.007893731817603111, 0.055547717958688736, -0.07084972411394119, 0.013158717192709446, 0.007317050825804472, -0.004009619355201721, 0.022157784551382065, -0.059947602450847626, 0.07519853115081787, 0.019317930564284325, -0.024849817156791687, 0.11770495027303696, 0.03722308576107025, -0.09144745767116547, -0.08723152428865433, -0.0431012324988842, 0.016858963295817375, -0.0233931727707386, 0.04804360494017601, -0.057671137154102325, -0.04073113948106766], [-0.048529449850320816, 0.0051544709131121635, 0.09499459713697433, 0.008446904830634594, -0.05450500175356865, 0.1632079780101776, -0.09831786900758743, -0.006387514062225819, -0.04141518846154213, -0.036655183881521225, 0.017657317221164703, -0.02144860289990902, -0.1041545495390892, -0.06170320138335228, 0.014359213411808014, -0.03551466390490532, 0.1799481362104416, -0.03919936716556549, 0.054858844727277756, -0.15642915666103363, 0.059040617197752, 0.004295913502573967, -0.21124356985092163, 0.2153559774160385, -0.02679634653031826, 0.031244715675711632, -0.0983927920460701, -0.0774926245212555, 0.0026238143909722567, -0.07051803916692734, -0.1318262368440628, 0.02266586385667324], [-0.1353905200958252, -0.2676052451133728, 0.7074733376502991, 0.10113555192947388, 0.029347535222768784, 0.05957360565662384, 0.1553378850221634, 0.00967854168266058, -0.02206016331911087, 0.2624393701553345, -0.006293158046901226, 0.0426749549806118, -0.6016019582748413, 0.021986378356814384, 0.20340484380722046, -0.13272777199745178, 0.08026187866926193, 0.014369496144354343, -0.07324333488941193, -0.007798571605235338, -0.09039145708084106, -0.08703502267599106, 0.05744510143995285, 0.09123434126377106, 0.32665520906448364, -0.19237002730369568, -0.2390022873878479, -0.2624274492263794, -0.08170772343873978, -0.05799432098865509, -0.11111629009246826, 0.05411762744188309], [-0.03090846724808216, -0.1316482573747635, -0.011079568415880203, -0.035451602190732956, 0.047474879771471024, 0.15208865702152252, 0.06908602267503738, 0.0005637603462673724, 0.10152143239974976, -0.005370557773858309, 0.009014197625219822, -0.10242421180009842, 0.09642216563224792, 0.02056196890771389, 0.06257621943950653, 0.07382310926914215, 0.16388747096061707, -0.16331042349338531, 0.027612876147031784, -0.2096129059791565, -0.033272355794906616, -0.08385789394378662, -0.029171478003263474, -0.08252529799938202, -0.23882713913917542, -0.13756515085697174, -0.07315684109926224, 0.01233975775539875, 0.25152644515037537, 0.07849279791116714, -0.1375012993812561, -0.01602276600897312], [0.013370975852012634, 0.01223623938858509, -0.022281678393483162, 0.07994743436574936, -0.07561130076646805, -0.029356813058257103, 0.11694859713315964, -0.0009418748086318374, 0.03901396319270134, 0.009555757977068424, 0.007687905337661505, -0.04008730873465538, 0.045239925384521484, 0.20409603416919708, -0.06612075120210648, 0.0446631945669651, 0.03095034323632717, 0.04569642245769501, -0.050436798483133316, 0.20627421140670776, -0.04147626832127571, 0.05884939804673195, 0.21435314416885376, 0.05668225139379501, 0.07469463348388672, 0.004715950693935156, -0.07545878738164902, -0.036282092332839966, -0.17145609855651855, -0.05401730537414551, -0.005107928533107042, 0.005459573119878769], [-0.006942201405763626, -0.07214704900979996, 0.11850536614656448, 0.21071767807006836, 0.05551304668188095, 0.41867348551750183, -0.144778311252594, 0.00025859588640742004, -0.1890658140182495, 0.08941704779863358, 0.018022406846284866, -0.2823309600353241, -0.016970319673419, -0.07961933314800262, -0.04026021063327789, 0.14103588461875916, 0.21335913240909576, -0.041862037032842636, -0.0846586748957634, 0.15469317138195038, 0.18860004842281342, -0.09615253657102585, 0.16309720277786255, 0.4148310422897339, -0.34775128960609436, -0.24901176989078522, 0.0142193753272295, -0.20958320796489716, -0.12936291098594666, 0.08489489555358887, -0.19465723633766174, 0.001493874122388661], [-0.018354207277297974, -0.15462350845336914, -0.02172630839049816, 0.19722537696361542, 0.017883935943245888, 0.41566288471221924, 0.14105986058712006, 0.0026381919160485268, -0.008079220540821552, 0.011790688149631023, 0.013628825545310974, -0.06513063609600067, 0.07190869003534317, -0.07860537618398666, -0.02300122007727623, 0.10899797827005386, 0.14790251851081848, 0.045726459473371506, -0.06328199058771133, 0.04742392152547836, 0.0061886245384812355, 0.056794650852680206, 0.02675679326057434, 0.0597710907459259, -0.4262891411781311, -0.10574629157781601, -0.01358458586037159, -0.09852782636880875, -0.022156625986099243, -0.016547812148928642, 0.004564765375107527, 0.036739517003297806], [0.0018267183331772685, -0.010774875991046429, 2.8347174520604312e-05, 0.012867969460785389, 0.0013254531659185886, 0.019871650263667107, 0.012058818712830544, -0.00031760544516146183, -0.00046225570258684456, -2.4697553726582555e-06, 0.0009505102061666548, -0.007258128374814987, 0.001702856388874352, -0.003749932860955596, 0.0033802096731960773, 0.002718085190281272, 0.007752589415758848, 0.0025239542592316866, -0.0008845887496136129, 0.00150978728197515, 0.0006023046444170177, 0.00043675870983861387, 0.007841161452233791, 0.006455917842686176, -0.020435817539691925, -0.009763110429048538, -0.006385447923094034, 0.00038512147148139775, 0.00011434689076850191, 0.0006240866496227682, -0.002208190504461527, 0.0012682460946962237], [-0.07527416944503784, -0.15391090512275696, -0.0374426431953907, 0.13493424654006958, -0.024709338322281837, 0.19600674510002136, 0.18654584884643555, -0.006446662824600935, 0.017520150169730186, -0.016470808535814285, 0.0017192251980304718, -0.04578367620706558, 0.08703096956014633, 0.014093413949012756, -0.06378821283578873, 0.10688883811235428, 0.192227303981781, 0.021032175049185753, -0.0018239897908642888, -0.043990179896354675, 0.008273188956081867, 0.046171899884939194, -0.09677881747484207, 0.05746728181838989, -0.22463691234588623, -0.025161271914839745, -0.2754440903663635, 0.026911018416285515, 0.11471788585186005, 0.019381185993552208, -0.10443604737520218, -0.020508937537670135], [0.11811891943216324, 0.0832337886095047, 0.23921968042850494, -0.032378681004047394, 0.11250961571931839, -0.17518125474452972, 0.16586804389953613, 0.009039954282343388, 0.3589726984500885, -0.5787726640701294, -0.010399862192571163, -0.09242217242717743, 0.5122919082641602, -0.16683539748191833, -0.01782907545566559, -0.03229890018701553, 0.15260295569896698, 0.2583796977996826, -0.062225546687841415, 0.14694257080554962, 0.18147745728492737, 0.20477339625358582, -0.02976224571466446, -0.22429613769054413, 0.26259589195251465, 0.02337021194398403, 0.1694924533367157, 0.04081159830093384, 0.16555571556091309, -0.41618597507476807, 0.09329856187105179, 0.06842519342899323], [0.01622834801673889, 0.05617506429553032, 0.0016727913171052933, -0.04633679240942001, 0.0009190202108584344, -0.17045773565769196, -0.05193176865577698, 0.0012323514092713594, -0.001160394516773522, 0.030176039785146713, 0.007036637514829636, -0.005678369663655758, -0.0006352118216454983, 0.0003359246184118092, -0.005945495795458555, -0.02339979261159897, -0.005770780611783266, -0.01941416785120964, -0.017389679327607155, -0.009166456758975983, -0.00716667203232646, 0.010806268081068993, -0.03130892291665077, -0.01772906444966793, 0.20780281722545624, 0.011783333495259285, 0.04413823038339615, 0.02055106684565544, -0.03249245509505272, -0.005131872836500406, -0.013020031154155731, 0.0034444713965058327], [-0.04863174259662628, 0.09107373654842377, -0.02775144949555397, -0.02503610961139202, 0.009905205108225346, -0.2786934971809387, -0.1398548185825348, 0.0038281844463199377, 0.14475437998771667, -0.029539642855525017, 0.010501043871045113, -0.1122218668460846, 0.17586183547973633, 0.025123082101345062, -0.0323525033891201, 0.06880473345518112, 0.16486316919326782, -0.08980827033519745, -0.029787577688694, -0.06487976759672165, -0.0023305199574679136, -0.054389409720897675, -0.07119684666395187, -0.12842941284179688, -0.09533299505710602, -0.06617259979248047, 0.15793269872665405, 0.31385350227355957, 0.15226244926452637, 0.030817626044154167, -0.055779606103897095, 0.051811788231134415], [0.09510975331068039, -0.16488124430179596, 0.5799446105957031, 0.2175445407629013, 0.05442212149500847, 0.1334579885005951, 0.31194502115249634, -0.019201453775167465, 0.07461444288492203, -0.5546867251396179, 0.04204382002353668, 0.08622678369283676, 0.4857931137084961, -0.150560200214386, 0.07714889943599701, 0.2598852515220642, 0.3426544666290283, 0.06276220083236694, -0.06852798908948898, 0.3104369342327118, -0.0367693230509758, -0.044759586453437805, 0.22249983251094818, 0.0694526955485344, 0.20603159070014954, -0.19307410717010498, 0.07307279109954834, -0.17051172256469727, 0.049837272614240646, -0.35032254457473755, -0.1470034420490265, -0.08476559072732925], [0.005754525773227215, -0.1263207495212555, 0.011953514069318771, 0.21236585080623627, 0.0074639692902565, 0.32450589537620544, 0.22646518051624298, 0.00446562934666872, 0.05763611942529678, -0.014854044653475285, 0.016324879601597786, -0.058962129056453705, 0.13867945969104767, -0.29133903980255127, 0.0048888251185417175, 0.0037179780192673206, 0.008283596485853195, 0.07924006879329681, -0.018633706495165825, -0.02056127041578293, 0.04643942788243294, 0.009900758042931557, 0.10388633608818054, 0.149873286485672, -0.3119262158870697, -0.12210206687450409, -0.037034887820482254, -0.1542588174343109, -0.17417629063129425, -0.1003880724310875, -0.037846639752388, 0.01553434506058693], [-0.0033611629623919725, -0.030284028500318527, 0.01916434057056904, 0.03939138352870941, -0.009413438849151134, 0.08035159111022949, 0.10905507206916809, -0.005227674264460802, 0.07024738192558289, -0.0027988720685243607, 0.009077738970518112, -0.025234276428818703, -0.00626650545746088, -0.00020244839834049344, 0.06360995769500732, 0.0015206951647996902, -0.06188902631402016, 0.04325534775853157, -0.0876663327217102, -0.08498035371303558, -0.03046111762523651, -0.0221000574529171, 0.05109349265694618, 0.008243479765951633, -0.07244423776865005, -0.061941757798194885, 0.02769601345062256, -0.017817653715610504, -0.029595253989100456, 0.016391603276133537, -0.03605029731988907, -0.016220025718212128], [-0.01152710523456335, 0.03508850559592247, -0.03539571538567543, -0.0814574807882309, 0.00617594551295042, -0.1846609264612198, -0.024650942534208298, 1.3575147022493184e-05, 0.09433937072753906, -0.008048037067055702, -0.012634566985070705, -0.009605429135262966, -0.08703870326280594, 0.08336362987756729, 0.08664913475513458, -0.014063994400203228, 0.12801943719387054, -0.07446026802062988, -0.010380865074694157, -0.22756528854370117, 0.04904017597436905, -0.08132049441337585, -0.4349765479564667, 0.04446164146065712, -0.17526043951511383, -0.003021400421857834, -0.23175491392612457, 0.06871062517166138, 0.19798853993415833, -0.1006738543510437, -0.15849602222442627, 0.05951715633273125], [-0.14050951600074768, 0.002750303130596876, -0.010485179722309113, 0.13428238034248352, -0.07251852750778198, 0.10046160966157913, -0.42688098549842834, 0.01149722095578909, 0.20698341727256775, 0.10124335438013077, 0.02712661400437355, -0.1363513469696045, 0.4009188115596771, 0.08491237461566925, -0.04417342692613602, 0.1475846767425537, -0.015790844336152077, 0.05448508262634277, -0.17751456797122955, 0.34591159224510193, -0.006383872125297785, -0.03047381527721882, 0.0702473595738411, 0.10354981571435928, -0.010789066553115845, 0.07188638299703598, 0.045609042048454285, 0.06751391291618347, -0.3363959491252899, -0.06590508669614792, -0.1632256805896759, 0.08183316141366959], [-0.021700799465179443, -0.0972551554441452, -0.07454477250576019, 0.1649748533964157, 0.03435814008116722, 0.2616957128047943, -0.10149239003658295, -0.0017367576947435737, -0.0619792714715004, -0.008892882615327835, 0.012761518359184265, -0.06933075934648514, 0.13959865272045135, 0.04184304177761078, -0.033722054213285446, 0.12524956464767456, 0.07371505349874496, -0.04363312944769859, -0.028273509815335274, 0.22366440296173096, 0.030737945809960365, 0.03235812857747078, 0.04604838415980339, 0.05883549526333809, -0.3109968900680542, -0.07028139382600784, 0.039623744785785675, -0.02925192378461361, -0.0041243815794587135, 0.03059430606663227, -0.04069886729121208, 0.020006980746984482], [-0.08858603239059448, -0.05855391547083855, -0.011368242092430592, 0.14313752949237823, -0.006230429280549288, 0.01150559913367033, -0.041915297508239746, 0.005390027537941933, 0.027653725817799568, 0.049929600208997726, 0.01200349722057581, -0.0601225420832634, 0.15702606737613678, -0.07704045623540878, -0.13666373491287231, 0.04688546061515808, -0.13787774741649628, -0.0010115854674950242, -0.09428443759679794, 0.04182420298457146, -0.022033194079995155, 0.13867682218551636, 0.11142713576555252, 0.04998117312788963, 0.029290305450558662, 0.04517195001244545, -0.17112736403942108, 0.036232754588127136, 0.031439632177352905, -0.04571496695280075, -0.1667259931564331, -0.027310829609632492], [0.02453468181192875, -0.06003275141119957, -0.3925030827522278, 0.49067422747612, 0.46102967858314514, 0.1492045372724533, -0.7355265021324158, -0.03396603837609291, -0.20632785558700562, 0.6002383232116699, 0.008352654054760933, -0.1825655847787857, -0.25844553112983704, -0.2593403458595276, 0.13251091539859772, 0.33357784152030945, 0.34558364748954773, -0.4175865948200226, -0.16786794364452362, 0.34019210934638977, -0.08662143349647522, -0.21411505341529846, 0.026857761666178703, -0.11732148379087448, -0.28926020860671997, -0.045265860855579376, 0.30455437302589417, 0.061856482177972794, -0.1724839210510254, 0.7930940985679626, -0.7043747901916504, -0.0013917542528361082], [0.0228124912828207, -0.038652900606393814, 0.07525473833084106, 0.13293300569057465, 0.06500108540058136, 0.050345998257398605, 0.09185371547937393, 0.007518709171563387, 0.10507023334503174, -0.10164602100849152, 0.009176238439977169, -0.12329196184873581, 0.07591194659471512, -0.17325784265995026, 0.047065529972314835, -0.12254894524812698, 0.05715855956077576, -0.00012854889791924506, -0.10820604115724564, 0.10429974645376205, 0.14404171705245972, 0.0952567607164383, 0.01680060103535652, -0.031738460063934326, 0.09244853258132935, -0.17100702226161957, -0.07795623689889908, -0.15889236330986023, -0.13313108682632446, -0.23581382632255554, -0.14878101646900177, 0.05951293930411339], [-0.0991746261715889, -0.023416997864842415, -0.010926999151706696, -0.06844111531972885, -0.09609311074018478, 0.004617523401975632, -0.040459539741277695, 0.006064996123313904, -0.13796362280845642, 0.05592062696814537, 0.0018099072622135282, -0.009235460311174393, 0.03741370514035225, -0.05906474590301514, -0.01293699350208044, 0.06395857781171799, 0.12498988956212997, -0.044486578553915024, 0.05868496000766754, 0.15195955336093903, 0.011017818003892899, 0.07633641362190247, -0.015870485454797745, -0.013018017634749413, -0.024409420788288116, -0.027480144053697586, -0.04864896461367607, 0.014158407226204872, -0.07297910004854202, -0.03934914618730545, -0.06551163643598557, 0.013709633611142635], [0.03064650669693947, -0.19916416704654694, -0.005677500274032354, 0.16844552755355835, 0.07021240890026093, 0.15500034391880035, 0.5309409499168396, -0.0007336038979701698, 0.18474264442920685, 0.10599660873413086, -0.022797798737883568, -0.1158570870757103, -0.03498975932598114, -0.09761762619018555, 0.005681129638105631, 0.03198317065834999, 0.517313539981842, -0.11151735484600067, -0.07329723984003067, -0.2640281915664673, -0.0038903814274817705, -0.03419985994696617, -0.20560280978679657, 0.016319572925567627, -0.13759104907512665, -0.23346665501594543, -0.2860866189002991, 0.05218660086393356, 0.2585518956184387, 0.09919201582670212, -0.11248534917831421, 0.03559580817818642], [0.05705655738711357, -0.2483890801668167, -0.0021815598011016846, 0.35348519682884216, 0.17854873836040497, 0.14191603660583496, 0.24077923595905304, 0.0035596115048974752, 0.0006187966791912913, -0.13659869134426117, 0.005453979130834341, -0.2175619900226593, 0.06719636917114258, -0.19311589002609253, 0.0634353756904602, 0.1374359130859375, 0.23247358202934265, 0.002715165028348565, -0.1080843135714531, 0.19273602962493896, -0.09188519418239594, 0.031140316277742386, 0.2731987237930298, -0.23661018908023834, -0.026751995086669922, -0.1253843605518341, -0.08639606833457947, -0.07307426631450653, -0.14097370207309723, 0.09393224120140076, -0.15682578086853027, -0.04613921046257019], [-0.07347406446933746, -0.25782665610313416, -0.12055208534002304, 0.30522915720939636, 0.018234139308333397, 0.21223875880241394, 0.2574859857559204, 0.00401117792353034, 0.05830204859375954, 0.17620855569839478, 0.023234954103827477, -0.26792025566101074, 0.351806640625, -0.11308480054140091, -0.12017396837472916, 0.2916668653488159, 0.3965757191181183, -0.033090945333242416, -0.09422619640827179, -0.0318460687994957, 0.08041761815547943, -0.010518943890929222, 0.14852434396743774, 0.00443381117656827, -0.5467383861541748, -0.21397149562835693, 0.022960377857089043, 0.15777342021465302, 0.14944413304328918, -0.06523735076189041, -0.24485483765602112, 0.079355388879776], [0.09244010597467422, 0.024576595053076744, 0.210948646068573, -0.12720751762390137, -0.014248194172978401, -0.13211818039417267, -0.07929893583059311, -0.0012031826190650463, -0.05492235720157623, -0.02896830253303051, -0.004316655453294516, 0.03986151143908501, -0.392967164516449, 0.3118599057197571, 0.012459692545235157, -0.07059025764465332, -0.006880289409309626, -0.172661691904068, -0.04773830622434616, -0.18378227949142456, -0.07417384535074234, -0.0038719105068594217, 0.03217153251171112, 0.028312616050243378, 0.023682579398155212, -0.1718265861272812, 0.24728845059871674, 0.18883506953716278, 0.4076579213142395, -0.12137027829885483, 0.02514280565083027, 0.01742217317223549], [0.02526654675602913, -0.21627767384052277, -0.17728200554847717, 0.4077836573123932, 0.11455544829368591, 0.4422646760940552, -0.009306245483458042, -0.012832781299948692, -0.08287524431943893, 0.06644392013549805, -0.0037069893442094326, -0.12047995626926422, 0.08983603119850159, -0.17160505056381226, 0.018315771594643593, 0.24642165005207062, 0.35041186213493347, 0.03540355712175369, -0.01762409135699272, 0.10294057428836823, -0.03592367470264435, -0.01061957236379385, 0.07311446964740753, -0.007195380516350269, -0.5796290040016174, -0.10876618325710297, -0.14700758457183838, 0.041394345462322235, -0.024104323238134384, 0.166178897023201, -0.05929329991340637, 0.00043314549839124084], [-0.0018101752502843738, -0.2468862384557724, 0.023127039894461632, 0.14659728109836578, -0.004071955103427172, 0.41599413752555847, 0.3043797016143799, -0.0010175829520449042, 0.08056369423866272, -0.1356867402791977, -0.0015916175907477736, -0.14235952496528625, 0.14179089665412903, -0.11356694996356964, 0.022744331508874893, 0.007566456682980061, 0.18982061743736267, -0.05216299742460251, 0.05416944622993469, 0.03687254339456558, -0.045749299228191376, -0.05222008749842644, -0.05298956111073494, 0.102535679936409, -0.3291316330432892, -0.22089773416519165, -0.14190082252025604, 0.016301294788718224, -0.14361925423145294, -0.0036842699628323317, -0.0838913843035698, 0.026939788833260536], [-0.009495613165199757, 0.30081015825271606, -0.16619440913200378, 0.004544428549706936, 0.27546465396881104, -0.07491299510002136, -0.16400650143623352, -0.013631027191877365, -0.11213170737028122, -0.10489217936992645, 0.009285791777074337, -0.061283063143491745, -0.33924150466918945, 0.01633550226688385, 0.02464374341070652, -0.043741337954998016, -0.2754230797290802, 0.07139018177986145, -0.216428741812706, 0.21306942403316498, -0.044877804815769196, 0.11669494211673737, 0.3057546615600586, -0.11307881772518158, 0.26387953758239746, 0.22964604198932648, -0.1379561424255371, 0.0801805704832077, -0.2830149531364441, -0.18277551233768463, -0.0745791643857956, -0.08342953026294708], [-0.02356727421283722, -0.19155676662921906, 0.011983469128608704, 0.09476691484451294, 0.0032127369195222855, 0.2641606330871582, 0.09754494577646255, 0.0005573604139499366, -0.014752447605133057, -0.06514710187911987, 0.0078069064766168594, -0.08146895468235016, 0.1673530638217926, -0.11249756067991257, 0.055403076112270355, 0.021707598119974136, 0.0806344673037529, -0.016922296956181526, -0.02853664942085743, 0.17912952601909637, -0.037433721125125885, 0.009014529176056385, 0.14873436093330383, 0.027979182079434395, -0.25751444697380066, -0.18289814889431, 0.00013358805153984576, -0.02611890248954296, -0.11309517174959183, -0.10145105421543121, -0.043770864605903625, 0.05570638179779053], [-0.1338011771440506, -0.044428110122680664, 0.004366948734968901, 0.0565410777926445, -0.06027676910161972, -0.041763339191675186, 0.187330961227417, 0.011142854578793049, -0.023054437711834908, 0.0029957436490803957, -0.004398797173053026, -0.020419644191861153, 0.2683093547821045, 0.014060432091355324, -0.015713540837168694, 0.11377397179603577, 0.26746389269828796, -0.03838746249675751, -0.07636357098817825, -0.15327982604503632, 0.2066039890050888, -0.03023119457066059, -0.012688113376498222, -0.0005210624658502638, -0.017311539500951767, -0.05165423825383186, 0.11887969076633453, -0.061493828892707825, 0.5245066285133362, -0.08036798238754272, -0.15302743017673492, 0.05696449428796768], [-0.005699727218598127, -0.09862052649259567, 0.02223173715174198, 0.1299125701189041, -0.0028738388791680336, 0.22114917635917664, 0.16939955949783325, -0.0013976598856970668, 0.024710800498723984, -0.011540576815605164, 0.008250031620264053, -0.0647171214222908, 0.01912875473499298, -0.019010627642273903, 0.02234060876071453, 0.016877373680472374, 0.10215365886688232, 0.009908616542816162, -0.02230040356516838, -0.018903465941548347, 0.026445774361491203, -0.01284418348222971, 0.05410232022404671, 0.07711594551801682, -0.24346938729286194, -0.10942289978265762, -0.01775594800710678, 0.0014835516922175884, -0.02361162006855011, -0.028972415253520012, -0.0027210444677621126, 0.06802989542484283]], "rec.bias_ih_l0": [0.008520561270415783, 0.13989441096782684, -0.6693457365036011, 0.2475629299879074, -0.19540920853614807, -0.006228059995919466, 0.3857647180557251, 0.023819047957658768, 0.21001765131950378, -0.6039230823516846, -0.16843855381011963, -0.04510441794991493, -0.8890694379806519, -0.7720852494239807, -0.039292845875024796, -0.013430320657789707, 0.1474285125732422, 0.2809534966945648, 0.006708716508001089, 0.3925890326499939, -0.7825576066970825, -0.37044402956962585, 0.4174679219722748, -0.9292253255844116, -0.030522843822836876, -0.061556603759527206, 0.46979451179504395, -0.8112593293190002, 0.567915678024292, 0.27510759234428406, -0.05537232756614685, 0.24291273951530457, 0.4402289092540741, 0.029710546135902405, 0.8113483786582947, 0.15536491572856903, 0.27661585807800293, 0.3270936608314514, 0.2235129028558731, 0.025836793705821037, 0.015524141490459442, 0.7618296146392822, -0.04076239839196205, 0.1272803544998169, 1.0183908939361572, 0.9329686164855957, 0.4116511344909668, 0.16286374628543854, -0.013540656305849552, -0.010242830961942673, 0.184701070189476, 0.2480992078781128, 1.140884518623352, 0.6409063935279846, 0.20319297909736633, 1.1373050212860107, 0.6116354465484619, 0.2591572403907776, 0.1532745063304901, 1.2279558181762695, 0.44095486402511597, 0.12497036159038544, 0.09528590738773346, 0.03836491331458092, -0.040538202971220016, -0.31062719225883484, 0.06339207291603088, 0.2771613299846649, -0.02562582679092884, 0.2333144098520279, 0.3207743763923645, 0.0015928123611956835, 0.03216031938791275, 0.026886489242315292, -0.03951115161180496, -0.22699785232543945, 0.04030926153063774, 0.04181930795311928, -0.020054245367646217, -0.0026879298966377974, 0.15135619044303894, -0.010390236973762512, -0.01027450617402792, 0.06896648555994034, -0.03047594055533409, -0.09056892991065979, 0.1661652773618698, 0.09181895852088928, 0.0491323359310627, -0.23360209167003632, 0.11938660591840744, -0.07908577471971512, -0.07297831773757935, -0.0794302448630333, -0.13772781193256378, 0.012077701278030872, 0.12286892533302307, 0.1289355307817459, -0.011003797873854637, 0.19631022214889526, -0.08035975694656372, 0.33968642354011536, 0.45614874362945557, 0.023798828944563866, 0.27583518624305725, -0.13278310000896454, -0.17951804399490356, 0.0454716682434082, 0.019953086972236633, 0.344865083694458, 0.08903826028108597, -0.004090667236596346, 0.0537445954978466, 0.27296939492225647, -0.009317668154835701, 0.17565879225730896, 0.050564151257276535, -0.06287596374750137, 0.24333959817886353, -0.10791093856096268, 0.5034289360046387, 0.0731046199798584, 0.491144597530365, 0.3562661409378052, 0.055856604129076004, 0.32141730189323425, -0.05347070470452309, 0.24528983235359192], "rec.bias_hh_l0": [-0.002634919947013259, 0.17305725812911987, -0.7180920243263245, 0.24980129301548004, -0.1866283416748047, 0.04737238213419914, 0.3752984404563904, 0.023819047957658768, 0.21069826185703278, -0.5292948484420776, -0.1856992095708847, -0.029874490574002266, -0.7900670170783997, -0.7496817708015442, -0.039404887706041336, 0.0003535933210514486, 0.14793476462364197, 0.28094640374183655, 0.028594644740223885, 0.40228116512298584, -0.8814586997032166, -0.4171246886253357, 0.41465216875076294, -0.8509087562561035, 0.012003674171864986, -0.019304603338241577, 0.48403316736221313, -0.788292646408081, 0.579075276851654, 0.28428182005882263, -0.07943972200155258, 0.24291273951530457, 0.4429040253162384, 0.03910619765520096, 0.8383102416992188, 0.1705796867609024, 0.23656801879405975, 0.25893864035606384, 0.1164827048778534, 0.025836793705821037, 0.046005960553884506, 0.7548001408576965, -0.012340818531811237, 0.1103755459189415, 1.0610322952270508, 0.870017945766449, 0.4116511642932892, 0.23020786046981812, 0.0012924699112772942, -0.011260269209742546, 0.1747559756040573, 0.2229018360376358, 1.1738134622573853, 0.6205715537071228, 0.20257796347141266, 1.2745988368988037, 0.6466450095176697, 0.2307525873184204, 0.13142310082912445, 1.189239263534546, 0.29044681787490845, 0.11839219927787781, 0.11820180714130402, 0.03836490958929062, 0.02951997146010399, -0.2836747169494629, 0.3232767879962921, 0.08924250304698944, -0.07026278972625732, 0.10147595405578613, 0.29804614186286926, -0.0016559454379603267, 0.13649414479732513, 0.023335682228207588, -0.032017678022384644, -0.20170670747756958, -0.18333026766777039, -0.09325642883777618, 0.09089154750108719, 0.04441314563155174, 0.14163808524608612, -0.19954338669776917, -0.09654095768928528, 0.019190672785043716, -0.006414038594812155, 0.020483283326029778, 0.1804056465625763, 0.10051816701889038, 0.06044413521885872, -0.21557925641536713, 0.06689700484275818, 0.11749635636806488, 0.17014414072036743, 0.059327270835638046, -0.13006526231765747, -0.035688817501068115, 0.0989905595779419, 0.1387471705675125, 0.006964729633182287, 0.272524356842041, -0.06450440734624863, 0.2875325679779053, 0.47300076484680176, 0.023798828944563866, 0.27858880162239075, -0.0725240632891655, -0.13781172037124634, -0.01064569503068924, -0.007122906390577555, 0.3378078043460846, 0.08905187249183655, -0.1045483648777008, 0.07959883660078049, 0.2729949355125427, 0.0005779169732704759, 0.16256819665431976, 0.01896883174777031, -0.0387033112347126, 0.2847253978252411, -0.13756205141544342, 0.3194119334220886, -0.002696248237043619, 0.4407688081264496, 0.4197956323623657, -0.14013336598873138, 0.34070438146591187, -0.05680288374423981, 0.2452898472547531], "lin.weight": [[0.3733104169368744, -0.23507241904735565, 0.04397142305970192, -0.02181997336447239, 0.21806062757968903, 0.17259562015533447, 0.06421668827533722, -0.017238551750779152, -0.4698309004306793, 0.4139985740184784, -0.014108585193753242, 0.3543378412723541, 0.25888845324516296, -0.7111507058143616, 0.04555848240852356, 0.12844842672348022, -0.25437450408935547, 0.10641471296548843, -0.32929274439811707, -0.04683401808142662, 0.05077587813138962, 0.6085496544837952, -0.11726997047662735, 0.6173604130744934, 0.0337136909365654, 0.21428194642066956, 0.21435920894145966, -0.5649118423461914, 0.2728269696235657, -0.4013655483722687, -0.14794494211673737, 0.25920090079307556]], "lin.bias": [-0.2775766849517822]}} \ No newline at end of file From 4858be32fb05d7c17d2c2c200e21ccd8e4d1707d Mon Sep 17 00:00:00 2001 From: Keith Date: Wed, 17 Aug 2022 16:41:53 -0500 Subject: [PATCH 4/8] added version, updated volume, updated win scripts --- Source/PluginEditor.cpp | 11 +++++++++++ Source/PluginEditor.h | 1 + Source/PluginProcessor.cpp | 4 ++-- installers/windows/Chameleon_Install_Script.iss | 13 +++++++++++++ win_builds.sh | 3 +-- 5 files changed, 28 insertions(+), 4 deletions(-) diff --git a/Source/PluginEditor.cpp b/Source/PluginEditor.cpp index dd77b8a..15bec17 100644 --- a/Source/PluginEditor.cpp +++ b/Source/PluginEditor.cpp @@ -90,6 +90,16 @@ ChameleonAudioProcessorEditor::ChameleonAudioProcessorEditor (ChameleonAudioProc ampMasterKnob.setTextBoxStyle(juce::Slider::TextEntryBoxPosition::NoTextBox, false, 50, 20 ); ampMasterKnob.setDoubleClickReturnValue(true, 0.5); + + addAndMakeVisible(versionLabel); + versionLabel.setText("v1.2", juce::NotificationType::dontSendNotification); + versionLabel.setJustificationType(juce::Justification::left); + versionLabel.setColour(juce::Label::textColourId, juce::Colours::black); + auto font = versionLabel.getFont(); + float height = font.getHeight(); + font.setHeight(height); // 0.75 + versionLabel.setFont(font); + // Size of plugin GUI setSize(774, 293); @@ -135,6 +145,7 @@ void ChameleonAudioProcessorEditor::resized() colorSelectButton.setBounds(58, 41, 70, 70); ampLED.setBounds(694, 89, 34, 34); + versionLabel.setBounds(730, 279, 60, 10); } diff --git a/Source/PluginEditor.h b/Source/PluginEditor.h index 01c631c..4ca9489 100644 --- a/Source/PluginEditor.h +++ b/Source/PluginEditor.h @@ -46,6 +46,7 @@ class ChameleonAudioProcessorEditor : public AudioProcessorEditor, Slider ampGainKnob; Slider ampMasterKnob; Slider ampPresenceKnob; + Label versionLabel; ImageButton colorSelectButton; ImageButton ampLED; diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index f20ed1e..a845b11 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -232,10 +232,10 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff // Apply ramped changes for gain smoothing if (ampMaster == previousAmpMaster) { - buffer.applyGain(ampMaster *2.0); + buffer.applyGain(ampMaster); } else { - buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousAmpMaster *2.0, ampMaster * 2.0); + buffer.applyGainRamp(0, (int) buffer.getNumSamples(), previousAmpMaster, ampMaster); previousAmpMaster = ampMaster; } diff --git a/installers/windows/Chameleon_Install_Script.iss b/installers/windows/Chameleon_Install_Script.iss index 1cf1478..7173fc6 100644 --- a/installers/windows/Chameleon_Install_Script.iss +++ b/installers/windows/Chameleon_Install_Script.iss @@ -1,6 +1,15 @@ +#define MyAppPublisher "GuitarML" +#define MyAppURL "https://guitarml.com" +#define MyAppName "Chameleon" + [Setup] AppName=Chameleon AppVersion=##APPVERSION## +AppPublisher={#MyAppPublisher} +AppPublisherURL={#MyAppURL} +AppSupportURL={#MyAppURL} +AppUpdatesURL={#MyAppURL} +DisableProgramGroupPage=yes DisableWelcomePage=no DisableDirPage=yes DefaultDirName={commoncf64} @@ -9,6 +18,10 @@ OutputBaseFilename="Chameleon-Win-##APPVERSION##" OutputDir=. LicenseFile=../../LICENSE.txt SetupIconFile=../../resources/guitarml.ico +UninstallDisplayIcon=../../resources/TS-M1N3.ico +UninstallFilesDir={commoncf64}\GuitarML\{#MyAppName} +Compression=lzma +SolidCompression=yes [Types] Name: "full"; Description: "Full installation" diff --git a/win_builds.sh b/win_builds.sh index a7ab542..88a7ee0 100644 --- a/win_builds.sh +++ b/win_builds.sh @@ -2,8 +2,7 @@ build64(){ #cmake -Bbuild -G"Visual Studio 15 2017 Win64" - cmake -Bbuild -G"Visual Studio 16 2019 Win64" - #cmake -Bbuild -G"Visual Studio 16 2019" -A x64 + cmake -Bbuild -G"Visual Studio 16 2019" -A x64 cmake --build build --config Release -j4 } From 0b71b51e73851ced84f8471641cbb2b0d0b06b54 Mon Sep 17 00:00:00 2001 From: Keith Date: Wed, 17 Aug 2022 17:29:00 -0500 Subject: [PATCH 5/8] Updated cmakelists --- CMakeLists.txt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c9e08f2..560283e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,8 +7,7 @@ set(CMAKE_CXX_STANDARD 17) add_subdirectory(modules) include_directories(modules) -# Commented out for CI; change path as appropriate -#juce_set_aax_sdk_path(C:/SDKs/AAX_SDK/) +juce_set_aax_sdk_path(C:/SDKs/AAX_SDK/) set(JUCE_FORMATS AU VST3 Standalone) @@ -19,10 +18,10 @@ if(UNIX AND NOT APPLE) endif() # Build AAX if SDK target exists -#if(TARGET juce_aax_sdk) -# message(STATUS "Building AAX plugin format") -# list(APPEND JUCE_FORMATS AAX) -#endif() +if(TARGET juce_aax_sdk) + message(STATUS "Building AAX plugin format") + list(APPEND JUCE_FORMATS AAX) +endif() juce_add_plugin(Chameleon COMPANY_NAME GuitarML From 75c273a8f0b17da29267ac155247b9fab16b1266 Mon Sep 17 00:00:00 2001 From: Keith Date: Thu, 18 Aug 2022 16:10:20 -0500 Subject: [PATCH 6/8] removed standalone --- CMakeLists.txt | 23 ++- Chameleon.jucer | 170 ------------------ installers/linux/build_deb.sh | 10 +- .../windows/Chameleon_Install_Script.iss | 38 +--- mac_builds.sh | 1 - win_builds.sh | 1 - 6 files changed, 18 insertions(+), 225 deletions(-) delete mode 100644 Chameleon.jucer diff --git a/CMakeLists.txt b/CMakeLists.txt index 560283e..e807704 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ include_directories(modules) juce_set_aax_sdk_path(C:/SDKs/AAX_SDK/) -set(JUCE_FORMATS AU VST3 Standalone) +set(JUCE_FORMATS AU VST3) # Build LV2 only on Linux if(UNIX AND NOT APPLE) @@ -23,6 +23,14 @@ if(TARGET juce_aax_sdk) list(APPEND JUCE_FORMATS AAX) endif() +option(BUILD_RELEASE "Set build flags for release builds" OFF) +if(BUILD_RELEASE) + set(HARDENED_RUNTIME_ENABLED YES) +else() + set(HARDENED_RUNTIME_ENABLED NO) +endif() + + juce_add_plugin(Chameleon COMPANY_NAME GuitarML PLUGIN_MANUFACTURER_CODE GtML @@ -32,7 +40,12 @@ juce_add_plugin(Chameleon LV2_URI https://github.com/GuitarML/Chameleon LV2_SHARED_LIBRARY_NAME Chameleon ICON_BIG resources/logo.png + + AU_MAIN_TYPE kAudioUnitType_Effect + AAX_CATEGORY AAX_ePlugInCategory_Harmonic + MICROPHONE_PERMISSION_ENABLED TRUE + HARDENED_RUNTIME_ENABLED ${HARDENED_RUNTIME_ENABLED} ) # create JUCE header @@ -55,11 +68,3 @@ target_compile_definitions(Chameleon target_link_libraries(Chameleon PUBLIC juce_plugin_modules ) - -# we need these flags for notarization on MacOS -option(MACOS_RELEASE "Set build flags for MacOS Release" OFF) -if(MACOS_RELEASE) - message(STATUS "Setting MacOS release flags...") - set_target_properties(Chameleon_Standalone PROPERTIES - XCODE_ATTRIBUTE_ENABLE_HARDENED_RUNTIME YES) -endif() diff --git a/Chameleon.jucer b/Chameleon.jucer deleted file mode 100644 index 6e5eecd..0000000 --- a/Chameleon.jucer +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/installers/linux/build_deb.sh b/installers/linux/build_deb.sh index 5215966..17a9e05 100644 --- a/installers/linux/build_deb.sh +++ b/installers/linux/build_deb.sh @@ -1,5 +1,5 @@ #!/bin/bash -# This script builds a .deb package for installing the Standalone, VST3, and LV2 plugins on Linux +# This script builds a .deb package for installing the VST3, and LV2 plugins on Linux # Set the app name and version here app_name=Chameleon @@ -18,14 +18,10 @@ Architecture: all\n\ Essential: no\n\ Installed-Size: 16480128\n\ Maintainer: GuitarML\n\ -Description: GuitarML Plugin Debian Package (VST3, LV2, Standalone)\n" > $app_name"/DEBIAN/control" +Description: GuitarML Plugin Debian Package (VST3, LV2)\n" > $app_name"/DEBIAN/control" -# 2. Copy Standalone, VST3, and LV2 plugins to the package directory (assumes project is already built) - -mkdir -p $app_name/opt/GuitarML/ -echo "Copying ../../build/"$app_name"_artefacts/Release/Standalone/"$app_name -cp "../../build/"$app_name"_artefacts/Release/Standalone/"$app_name $app_name"/opt/GuitarML/" +# 2. Copy VST3, and LV2 plugins to the package directory (assumes project is already built) mkdir -p $app_name/usr/local/lib/vst3/ echo "Copying ../../build/"$app_name"_artefacts/Release/VST3/"$app_name".vst3" diff --git a/installers/windows/Chameleon_Install_Script.iss b/installers/windows/Chameleon_Install_Script.iss index 7173fc6..b06570d 100644 --- a/installers/windows/Chameleon_Install_Script.iss +++ b/installers/windows/Chameleon_Install_Script.iss @@ -27,30 +27,19 @@ SolidCompression=yes Name: "full"; Description: "Full installation" Name: "custom"; Description: "Custom installation"; Flags: iscustom -[Tasks] -Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; \ - GroupDescription: "{cm:AdditionalIcons}" - [Components] Name: "VST3_64"; Description: "VST3 Plugin 64-bit"; Types: full -Name: "STANDALONE_64"; Description: "Standalone 64-bit"; Types: full Name: "AAX"; Description: "AAX Plugin"; Types: full [Files] Source: "../../bin/Win64/Chameleon.vst3"; DestDir: "{code:GetDir|VST3_64}"; Components: VST3_64; Flags: ignoreversion recursesubdirs createallsubdirs -Source: "../../bin/Win64/Chameleon.exe"; DestDir: "{code:GetDir|STANDALONE_64}"; Components: STANDALONE_64; Flags: ignoreversion recursesubdirs createallsubdirs Source: "../../build-aax/Chameleon_artefacts/Release/AAX/Chameleon.aaxplugin"; DestDir: "{code:GetDir|AAX}"; Components: AAX; Flags: ignoreversion recursesubdirs createallsubdirs -Source: "../../resources/guitarml.ico"; Components: STANDALONE_64; DestDir: "{pf64}\GuitarML" -[Icons] -Name: "{userdesktop}\Chameleon"; Filename: "{pf64}\GuitarML\Chameleon.exe"; Components: VST3_64; \ - IconFilename: "{pf64}\GuitarML\guitarml.ico"; Tasks: desktopicon; [Code] var AAXDirPage: TInputDirWizardPage; Vst3_64DirPage: TinputDirWizardPage; - Standalone_64DirPage: TinputDirWizardPage; procedure InitializeWizard; begin @@ -76,15 +65,6 @@ begin Vst3_64DirPage.values[0] := ExpandConstant('{commoncf64}\VST3'); - //Standalone 64-bit Dir Page - Standalone_64DirPage := CreateInputDirPage(Vst3_64DirPage.ID, - 'Select Install Location for Standalone 64-bit', 'Where would you like to install the plugin?', - 'Standalone 64-bit plugin will be installed in the following folder.'#13#10#13#10 + - 'To continue, click Next. If you would like to select a different folder, click Browse.', - False, 'New Folder'); - - Standalone_64DirPage.add(''); - Standalone_64DirPage.values[0] := ExpandConstant('{pf64}\GuitarML'); end; @@ -122,18 +102,7 @@ begin Result := False; end end - - else if (PageID = Standalone_64DirPage.ID) then - begin - Result := True; - Log('Selected 4: ' + WizardSelectedComponents(False)); - - if IsSelected ('standalone_64') then - begin - Log('Not Skipping'); - Result := False; - end - end + end; @@ -143,8 +112,6 @@ begin Result := AAXDirPage.values[0] else if (Param = 'VST3_64') then Result := Vst3_64DirPage.values[0] - else if (Param = 'STANDALONE_64') then - Result := Standalone_64DirPage.values[0] end; function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo, @@ -163,9 +130,6 @@ begin if IsSelected('vst3_64') then S := S + Space + GetDir('VST3_64') + ' (VST3 64-bit)' + NewLine; - - if IsSelected('standalone_64') then - S := S + Space + GetDir('STANDALONE_64') + ' (Standalone 64-bit)' + NewLine; Result := S; end; diff --git a/mac_builds.sh b/mac_builds.sh index 48b8bd1..ae403ad 100644 --- a/mac_builds.sh +++ b/mac_builds.sh @@ -23,7 +23,6 @@ cmake --build build --config Release -j8 | xcpretty mkdir -p bin/Mac declare -a plugins=("Chameleon") for plugin in "${plugins[@]}"; do - cp -R build/${plugin}_artefacts/Release/Standalone/${plugin}.app bin/Mac/${plugin}.app cp -R build/${plugin}_artefacts/Release/VST3/${plugin}.vst3 bin/Mac/${plugin}.vst3 cp -R build/${plugin}_artefacts/Release/AU/${plugin}.component bin/Mac/${plugin}.component done diff --git a/win_builds.sh b/win_builds.sh index 88a7ee0..ac0a3c3 100644 --- a/win_builds.sh +++ b/win_builds.sh @@ -27,7 +27,6 @@ wait mkdir -p bin/Win64 declare -a plugins=("Chameleon") for plugin in "${plugins[@]}"; do - cp -R build/${plugin}_artefacts/Release/Standalone/${plugin}.exe bin/Win64/${plugin}.exe cp -R build/${plugin}_artefacts/Release/VST3/${plugin}.vst3 bin/Win64/${plugin}.vst3 done From e45cc9d2553b0c27bcb51c1abe28d849bc928214 Mon Sep 17 00:00:00 2001 From: Keith Date: Fri, 26 Aug 2022 16:38:26 -0500 Subject: [PATCH 7/8] Fixed eq processing --- Source/PluginProcessor.cpp | 4 +++- Source/PluginProcessor.h | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/PluginProcessor.cpp b/Source/PluginProcessor.cpp index a845b11..4a79852 100644 --- a/Source/PluginProcessor.cpp +++ b/Source/PluginProcessor.cpp @@ -48,6 +48,7 @@ ChameleonAudioProcessor::ChameleonAudioProcessor() auto presenceValue = static_cast (presenceParam->load()); eq4band.setParameters(bassValue, midValue, trebleValue, presenceValue); + eq4band2.setParameters(bassValue, midValue, trebleValue, presenceValue); } ChameleonAudioProcessor::~ChameleonAudioProcessor() @@ -224,7 +225,7 @@ void ChameleonAudioProcessor::processBlock (AudioBuffer& buffer, MidiBuff } else if (ch == 1) { - eq4band.process(buffer.getReadPointer(1), buffer.getWritePointer(1), midiMessages, numSamples, numInputChannels, sampleRate); + eq4band2.process(buffer.getReadPointer(1), buffer.getWritePointer(1), midiMessages, numSamples, numInputChannels, sampleRate); } } @@ -298,6 +299,7 @@ void ChameleonAudioProcessor::setStateInformation (const void* data, int sizeInB void ChameleonAudioProcessor::set_ampEQ(float bass_slider, float mid_slider, float treble_slider, float presence_slider) { eq4band.setParameters(bass_slider, mid_slider, treble_slider, presence_slider); + eq4band2.setParameters(bass_slider, mid_slider, treble_slider, presence_slider); } void ChameleonAudioProcessor::setMode() diff --git a/Source/PluginProcessor.h b/Source/PluginProcessor.h index 60b367b..35b3353 100644 --- a/Source/PluginProcessor.h +++ b/Source/PluginProcessor.h @@ -89,6 +89,7 @@ class ChameleonAudioProcessor : public AudioProcessor private: Eq4Band eq4band; // Amp EQ + Eq4Band eq4band2; // Amp EQ std::atomic* bassParam = nullptr; std::atomic* midParam = nullptr; From a087f34e1c39a73e19d12ed7f80093873cecdcb5 Mon Sep 17 00:00:00 2001 From: Keith Date: Sat, 27 Aug 2022 13:23:26 -0500 Subject: [PATCH 8/8] Updated mac building --- aax_builds.sh | 2 +- installers/linux/build_deb.sh | 2 +- installers/mac/Chameleon.pkgproj | 144 ++++++++++++++++++++++--------- 3 files changed, 107 insertions(+), 41 deletions(-) diff --git a/aax_builds.sh b/aax_builds.sh index e8cd368..5d21802 100644 --- a/aax_builds.sh +++ b/aax_builds.sh @@ -78,7 +78,7 @@ fi # sign with PACE aax_location=build-aax/Chameleon_artefacts/$build_config/AAX/Chameleon.aaxplugin -wcguid="" # Update +wcguid="E9587400-8ED1-11EC-AA74-00505692AD3E" # Update if [[ "$OSTYPE" == "darwin"* ]]; then /Applications/PACEAntiPiracy/Eden/Fusion/Current/bin/wraptool sign --verbose \ --account keyth72 \ diff --git a/installers/linux/build_deb.sh b/installers/linux/build_deb.sh index 17a9e05..2e2123f 100644 --- a/installers/linux/build_deb.sh +++ b/installers/linux/build_deb.sh @@ -3,7 +3,7 @@ # Set the app name and version here app_name=Chameleon -version=1.0 +version=1.2 # 1. Create the package directory structure and control file diff --git a/installers/mac/Chameleon.pkgproj b/installers/mac/Chameleon.pkgproj index bf361a4..fb82367 100644 --- a/installers/mac/Chameleon.pkgproj +++ b/installers/mac/Chameleon.pkgproj @@ -79,7 +79,7 @@ GID 0 PATH - ../../bin/Mac/Chameleon.component + ../../build/Chameleon_artefacts/Release/AU/Chameleon.component PATH_TYPE 1 PERMISSIONS @@ -631,7 +631,7 @@ GID 0 PATH - ../../bin/Mac/Chameleon.vst3 + ../../build/Chameleon_artefacts/Release/VST3/Chameleon.vst3 PATH_TYPE 1 PERMISSIONS @@ -1101,43 +1101,14 @@ PACKAGE_FILES DEFAULT_INSTALL_LOCATION - / + /Library/Application Support/Avid/Audio/Plug-Ins HIERARCHY CHILDREN CHILDREN - - - BUNDLE_CAN_DOWNGRADE - - BUNDLE_POSTINSTALL_PATH - - PATH_TYPE - 0 - - BUNDLE_PREINSTALL_PATH - - PATH_TYPE - 0 - - CHILDREN - - GID - 80 - PATH - ../../bin/Mac/Chameleon.app - PATH_TYPE - 1 - PERMISSIONS - 493 - TYPE - 3 - UID - 0 - - + GID 80 PATH @@ -1156,7 +1127,87 @@ CHILDREN - + + + CHILDREN + + + CHILDREN + + + CHILDREN + + + BUNDLE_CAN_DOWNGRADE + + BUNDLE_POSTINSTALL_PATH + + PATH_TYPE + 0 + + BUNDLE_PREINSTALL_PATH + + PATH_TYPE + 0 + + CHILDREN + + GID + 80 + PATH + ../../build-aax/Chameleon_artefacts/Release/AAX/Chameleon.aaxplugin + PATH_TYPE + 1 + PERMISSIONS + 493 + TYPE + 3 + UID + 0 + + + GID + 80 + PATH + Plug-Ins + PATH_TYPE + 2 + PERMISSIONS + 509 + TYPE + 2 + UID + 0 + + + GID + 80 + PATH + Audio + PATH_TYPE + 2 + PERMISSIONS + 509 + TYPE + 2 + UID + 0 + + + GID + 80 + PATH + Avid + PATH_TYPE + 2 + PERMISSIONS + 509 + TYPE + 2 + UID + 0 + + GID 80 PATH @@ -1548,6 +1599,21 @@ VERSION 5 + PACKAGE_SCRIPTS + + POSTINSTALL_PATH + + PATH_TYPE + 0 + + PREINSTALL_PATH + + PATH_TYPE + 0 + + RESOURCES + + PACKAGE_SETTINGS AUTHENTICATION @@ -1557,11 +1623,11 @@ FOLLOW_SYMBOLIC_LINKS IDENTIFIER - com.GuitarML.Chameleon + com.GuitarML.Chameleon.ChameleonAAX LOCATION 0 NAME - Standalone + AAX OVERWRITE_PERMISSIONS PAYLOAD_SIZE @@ -1578,7 +1644,7 @@ TYPE 0 UUID - 54266BE4-CE88-4033-9C8D-248D3D38D1E1 + 67DBD464-3B62-45EF-964B-549829FB1466 PROJECT @@ -1666,13 +1732,13 @@ 1 PACKAGE_UUID - 54266BE4-CE88-4033-9C8D-248D3D38D1E1 + 67DBD464-3B62-45EF-964B-549829FB1466 TITLE TYPE 0 UUID - 7BA12230-EFE4-49DA-B02C-EAB67D03EF2D + 2BBC047A-58AB-4D9C-AFC1-F8BF00186CE3 REMOVED