From d9ccee02d2aee6081bdeef9648458c337008dcdb Mon Sep 17 00:00:00 2001 From: Prajjwal Bajpai Date: Mon, 27 Jul 2026 23:44:30 +0530 Subject: [PATCH] feat: add `lapack/base/dorglq` --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown_pkg_readmes status: passed - task: lint_markdown_docs status: na - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../@stdlib/lapack/base/dorglq/README.md | 294 +++++++++ .../lapack/base/dorglq/benchmark/benchmark.js | 121 ++++ .../dorglq/benchmark/benchmark.ndarray.js | 132 ++++ .../@stdlib/lapack/base/dorglq/docs/repl.txt | 153 +++++ .../lapack/base/dorglq/docs/types/index.d.ts | 157 +++++ .../lapack/base/dorglq/docs/types/test.ts | 422 +++++++++++++ .../lapack/base/dorglq/examples/index.js | 46 ++ .../@stdlib/lapack/base/dorglq/lib/base.js | 176 ++++++ .../@stdlib/lapack/base/dorglq/lib/dlarfb.js | 118 ++++ .../@stdlib/lapack/base/dorglq/lib/dlarft.js | 571 ++++++++++++++++++ .../@stdlib/lapack/base/dorglq/lib/dorgl2.js | 143 +++++ .../@stdlib/lapack/base/dorglq/lib/dorglq.js | 107 ++++ .../@stdlib/lapack/base/dorglq/lib/dtrmm.js | 362 +++++++++++ .../@stdlib/lapack/base/dorglq/lib/index.js | 63 ++ .../base/dorglq/lib/left_backward_columns.js | 162 +++++ .../base/dorglq/lib/left_backward_rows.js | 165 +++++ .../base/dorglq/lib/left_forward_columns.js | 168 ++++++ .../base/dorglq/lib/left_forward_rows.js | 167 +++++ .../@stdlib/lapack/base/dorglq/lib/main.js | 35 ++ .../@stdlib/lapack/base/dorglq/lib/ndarray.js | 92 +++ .../base/dorglq/lib/right_backward_columns.js | 158 +++++ .../base/dorglq/lib/right_backward_rows.js | 157 +++++ .../base/dorglq/lib/right_forward_columns.js | 160 +++++ .../base/dorglq/lib/right_forward_rows.js | 123 ++++ .../@stdlib/lapack/base/dorglq/package.json | 69 +++ .../base/dorglq/test/fixtures/blocked.json | 319 ++++++++++ .../test/fixtures/blocked_reduced_nb.json | 319 ++++++++++ .../base/dorglq/test/fixtures/unblocked.json | 119 ++++ .../lapack/base/dorglq/test/test.dorglq.js | 432 +++++++++++++ 29 files changed, 5510 insertions(+) create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/README.md create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.ndarray.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/examples/index.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/base.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarfb.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarft.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorgl2.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorglq.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/dtrmm.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/index.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_columns.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_rows.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_columns.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_rows.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/main.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/ndarray.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_columns.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_rows.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_columns.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_rows.js create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/package.json create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked.json create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked_reduced_nb.json create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/unblocked.json create mode 100644 lib/node_modules/@stdlib/lapack/base/dorglq/test/test.dorglq.js diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/README.md b/lib/node_modules/@stdlib/lapack/base/dorglq/README.md new file mode 100644 index 000000000000..2e4d4942814e --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/README.md @@ -0,0 +1,294 @@ + + +# dorglq + +> LAPACK routine to generate an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`. + +
+ +The `dorglq` routine generates an `M-by-N` real orthogonal matrix `Q` with orthonormal rows, where `Q` is defined as the product of `K` elementary reflectors of order `M` returned by the LQ factorization routine `DGELQF`. + +
+ + + +
+ +## Usage + +```javascript +var dorglq = require( '@stdlib/lapack/base/dorglq' ); +``` + +#### dorglq( order, M, N, K, A, LDA, TAU, WORK, LWORK ) + +Generates an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`. + +```javascript +var Float64Array = require( '@stdlib/array/float64' ); + +var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +var TAU = new Float64Array( [ 1, 1 ] ); +var WORK = new Float64Array( 10 ); + +var info = dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ); +// A => [ 0, 0, 0, 0, 2, 0 ] +// info => 0 +// WORK[ 0 ] => 2 +``` + +The function has the following parameters: + +- **order**: storage layout. Must be either `'row-major'` or `'column-major'`. +- **M**: number of rows of `Q`. +- **N**: number of columns of `Q`. +- **K**: number of elementary reflectors. +- **A**: input/output matrix as a [`Float64Array`][mdn-float64array]. On entry, the i-th row must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. On exit, the `M-by-N` orthogonal matrix `Q`. +- **LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`). +- **TAU**: scalar factors of the elementary reflectors as a [`Float64Array`][mdn-float64array]. +- **WORK**: workspace [`Float64Array`][mdn-float64array]. +- **LWORK**: dimension of the array `WORK`. If `LWORK = -1`, a workspace query is performed and the optimal workspace size is returned in `WORK[0]`. + +By default, the function accesses elements of `A` starting from the first index. To use an offset view of `A`, use [`typed array`][mdn-typed-array] views. + + + +```javascript +var Float64Array = require( '@stdlib/array/float64' ); + +// Initial arrays... +var A0 = new Float64Array( [ 0, 1, 0, 0, -1, -2, 0 ] ); +var TAU0 = new Float64Array( [ 0, 1, 1 ] ); +var WORK0 = new Float64Array( 11 ); + +// Create offset views... +var A1 = new Float64Array( A0.buffer, A0.BYTES_PER_ELEMENT*1 ); // start at 2nd element +var TAU1 = new Float64Array( TAU0.buffer, TAU0.BYTES_PER_ELEMENT*1 ); // start at 2nd element +var WORK1 = new Float64Array( WORK0.buffer, WORK0.BYTES_PER_ELEMENT*1 ); // start at 2nd element + +var info = dorglq( 'column-major', 2, 3, 2, A1, 2, TAU1, WORK1, 10 ); +// A0 => [ 0, 0, 0, 0, 0, 2, 0 ] +// info => 0 +// WORK0[ 0 ] => 0 +// WORK0[ 1 ] => 2 +``` + + + +#### dorglq.ndarray( M, N, K, A, strideA1, strideA2, offsetA, TAU, strideTAU, offsetTAU, WORK, strideWORK, offsetWORK, LWORK ) + +Generates an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF` using alternative indexing semantics. + + + +```javascript +var Float64Array = require( '@stdlib/array/float64' ); + +var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +var TAU = new Float64Array( [ 1, 1 ] ); +var WORK = new Float64Array( 10 ); + +var info = dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); +// A => [ 0, 0, 0, 0, 2, 0 ] +// info => 0 +// WORK[ 0 ] => 2 +``` + +The function has the following additional parameters: + +- **strideA1**: stride length for the first dimension of `A`. +- **strideA2**: stride length for the second dimension of `A`. +- **offsetA**: starting index for `A`. +- **strideTAU**: stride length for `TAU`. +- **offsetTAU**: starting index for `TAU`. +- **strideWORK**: stride length for `WORK`. +- **offsetWORK**: starting index for `WORK`. + +While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, + +```javascript +var Float64Array = require( '@stdlib/array/float64' ); + +var A = new Float64Array( [ 0, 1, 0, 0, -1, -2, 0 ] ); +var TAU = new Float64Array( [ 0, 1, 1 ] ); +var WORK = new Float64Array( [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ] ); + +var info = dorglq.ndarray( 2, 3, 2, A, 1, 2, 1, TAU, 1, 1, WORK, 1, 1, 10 ); +// A => [ 0, 0, 0, 0, 0, 2, 0 ] +// info => 0 +// WORK[ 1 ] => 2 +``` + +
+ + + +
+ +## Notes + +- On entry, the i-th row of `A` must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. + +- The function mutates the input array `A`. On exit, `A` contains the `M-by-N` orthogonal matrix `Q`. + +- Both functions return a status code indicating success or failure. A status code of `0` indicates success. + +- `WORK` must have length `LWORK >= max(1,M)`. For optimum performance `LWORK >= M*NB`, where `NB` is the optimal block size (derived internally as `32`). + +- `dorglq()` corresponds to the [LAPACK][LAPACK] routine [`dorglq`][lapack-dorglq]. + +
+ + + +
+ +## Examples + + + + + +```javascript +var Float64Array = require( '@stdlib/array/float64' ); +var ndarray2array = require( '@stdlib/ndarray/base/to-array' ); +var shape2strides = require( '@stdlib/ndarray/base/shape2strides' ); +var dorglq = require( '@stdlib/lapack/base/dorglq' ); + +// Specify matrix meta data: +var shape = [ 3, 4 ]; +var order = 'row-major'; +var strides = shape2strides( shape, order ); + +// Create a matrix stored in linear memory: +var A = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, -2.0, 1.0, 0.0, 0.0, -3.0, -4.0, 1.0, 0.0 ] ); // eslint-disable-line max-len +console.log( 'Matrix A (before):' ); +console.log( ndarray2array( A, shape, strides, 0, order ) ); + +// Define the scalar factors of reflectors and a workspace array: +var TAU = new Float64Array( [ 1.0, 1.0, 1.0 ] ); +var WORK = new Float64Array( 20 ); + +// Generate the orthogonal matrix Q: +var info = dorglq( order, shape[ 0 ], shape[ 1 ], shape[ 0 ], A, strides[ 0 ], TAU, WORK, 20 ); +console.log( 'Matrix Q (after):' ); +console.log( ndarray2array( A, shape, strides, 0, order ) ); +console.log( 'Status code:', info ); +console.log( 'Optimal workspace size:', WORK[ 0 ] ); +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +TODO +``` + +#### TODO + +TODO. + +```c +TODO +``` + +TODO + +```c +TODO +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +TODO +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.js b/lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.js new file mode 100644 index 000000000000..9c7866a95668 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.js @@ -0,0 +1,121 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var Float64Array = require( '@stdlib/array/float64' ); +var pow = require( '@stdlib/math/base/special/pow' ); +var floor = require( '@stdlib/math/base/special/floor' ); +var format = require( '@stdlib/string/format' ); +var pkg = require( './../package.json' ).name; +var dorglq = require( './../lib/dorglq.js' ); + + +// VARIABLES // + +var LAYOUTS = [ + 'row-major', + 'column-major' +]; +var opts = { + 'dtype': 'float64' +}; + + +// FUNCTIONS // + +/** +* Creates a benchmark function. +* +* @private +* @param {string} order - storage layout +* @param {PositiveInteger} N - number of elements along each dimension +* @returns {Function} benchmark function +*/ +function createBenchmark( order, N ) { + var LWORK = N * 32; // workspace large enough for blocked code + var WORK = new Float64Array( LWORK ); + var LDA = N; + var TAU = new Float64Array( N ); + var A = discreteUniform( N*N, 1.0, 10.0, opts ); + + // Set the diagonal of A to 1.0 to ensure the matrix is well-formed + A[ 0 ] = 1.0; + return benchmark; + + /** + * Benchmark function. + * + * @private + * @param {Benchmark} b - benchmark instance + */ + function benchmark( b ) { + var d; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + d = dorglq( order, N, N, N, A, LDA, TAU, WORK, LWORK ); + if ( d < 0 ) { + b.fail( 'should return a success status code' ); + } + } + b.toc(); + if ( d < 0 ) { + b.fail( 'should return a success status code' ); + } + b.pass( 'benchmark finished' ); + b.end(); + } +} + + +// MAIN // + +/** +* Main execution sequence. +* +* @private +*/ +function main() { + var min; + var max; + var ord; + var N; + var f; + var i; + var j; + + min = 1; // 10^min + max = 6; // 10^max + + for ( j = 0; j < LAYOUTS.length; j++ ) { + ord = LAYOUTS[ j ]; + for ( i = min; i <= max; i++ ) { + N = floor( pow( pow( 10, i ), 1.0/2.0 ) ); + f = createBenchmark( ord, N ); + bench( format( '%s::square_matrix:order=%s,size=%d', pkg, ord, N*N ), f ); + } + } +} + +main(); diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.ndarray.js b/lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.ndarray.js new file mode 100644 index 000000000000..2f3064a5bec4 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/benchmark/benchmark.ndarray.js @@ -0,0 +1,132 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var discreteUniform = require( '@stdlib/random/array/discrete-uniform' ); +var isColumnMajor = require( '@stdlib/ndarray/base/assert/is-column-major-string' ); +var Float64Array = require( '@stdlib/array/float64' ); +var pow = require( '@stdlib/math/base/special/pow' ); +var floor = require( '@stdlib/math/base/special/floor' ); +var format = require( '@stdlib/string/format' ); +var pkg = require( './../package.json' ).name; +var dorglq = require( './../lib/ndarray.js' ); + + +// VARIABLES // + +var LAYOUTS = [ + 'row-major', + 'column-major' +]; +var opts = { + 'dtype': 'float64' +}; + + +// FUNCTIONS // + +/** +* Creates a benchmark function. +* +* @private +* @param {string} order - storage layout +* @param {PositiveInteger} N - number of elements along each dimension +* @returns {Function} benchmark function +*/ +function createBenchmark( order, N ) { + var LWORK = N * 32; // workspace large enough for blocked code + var WORK = new Float64Array( LWORK ); + var TAU = new Float64Array( N ); + var sc1; + var sc2; + var A; + + A = discreteUniform( N*N, 1.0, 10.0, opts ); + if ( isColumnMajor( order ) ) { + sc1 = 1; + sc2 = N; + } else { // order === 'row-major' + sc1 = N; + sc2 = 1; + } + + // Set the diagonal of A to 1.0 to ensure the matrix is well-formed + A[ 0 ] = 1.0; + return benchmark; + + /** + * Benchmark function. + * + * @private + * @param {Benchmark} b - benchmark instance + */ + function benchmark( b ) { + var d; + var i; + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + d = dorglq( N, N, N, A, sc1, sc2, 0, TAU, 1, 0, WORK, 1, 0, LWORK ); + if ( d < 0 ) { + b.fail( 'should return a success status code' ); + } + } + b.toc(); + if ( d < 0 ) { + b.fail( 'should return a success status code' ); + } + b.pass( 'benchmark finished' ); + b.end(); + } +} + + +// MAIN // + +/** +* Main execution sequence. +* +* @private +*/ +function main() { + var min; + var max; + var ord; + var N; + var f; + var i; + var j; + + min = 1; // 10^min + max = 6; // 10^max + + for ( j = 0; j < LAYOUTS.length; j++ ) { + ord = LAYOUTS[ j ]; + for ( i = min; i <= max; i++ ) { + N = floor( pow( pow( 10, i ), 1.0/2.0 ) ); + f = createBenchmark( ord, N ); + bench( format( '%s::square_matrix:ndarray:order=%s,size=%d', pkg, ord, N*N ), f ); + } + } +} + +main(); diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/docs/repl.txt b/lib/node_modules/@stdlib/lapack/base/dorglq/docs/repl.txt new file mode 100644 index 000000000000..ed3813930b9c --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/docs/repl.txt @@ -0,0 +1,153 @@ + +{{alias}}( order, M, N, K, A, LDA, TAU, WORK, LWORK ) + Generates an M-by-N real orthogonal matrix `Q` from the elementary + reflectors returned by `DGELQF`. + + Indexing is relative to the first index. To introduce an offset, use typed + array views. + + The function mutates `A`. + + Parameters + ---------- + order: string + Storage layout. Must be either 'row-major' or 'column-major'. + + M: integer + Number of rows of `Q`. + + N: integer + Number of columns of `Q`. + + K: integer + Number of elementary reflectors. + + A: Float64Array + Input/output matrix. On entry, the i-th row must contain the vector + which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as + returned by `DGELQF` in the first `K` rows of `A`. On exit, the M-by-N + orthogonal matrix `Q`. + + LDA: integer + Stride of the first dimension of `A` (a.k.a., leading dimension of the + matrix `A`). + + TAU: Float64Array + Scalar factors of the elementary reflectors. + + WORK: Float64Array + Workspace array. + + LWORK: integer + Dimension of `WORK`. If equal to -1, a workspace query is performed and + the optimal workspace size is returned in the first element of `WORK`. + + Returns + ------- + info: integer + Status code. A status code of `0` indicates success. + + Examples + -------- + > var A = new {{alias:@stdlib/array/float64}}( [ 1, 0, 0, -1, -2, 0 ] ); + > var TAU = new {{alias:@stdlib/array/float64}}( [ 1, 1 ] ); + > var WORK = new {{alias:@stdlib/array/float64}}( 10 ); + > {{alias}}( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ) + 0 + > A + [ 0, 0, 0, 0, 2, 0 ] + > WORK[ 0 ] + 2 + + // Using typed array views: + > var A0 = new {{alias:@stdlib/array/float64}}( [ 0, 1, 0, 0, -1, -2, 0 ] ); + > var TAU0 = new {{alias:@stdlib/array/float64}}( [ 0, 1, 1 ] ); + > var WORK0 = new {{alias:@stdlib/array/float64}}( 11 ); + > A = new Float64Array( A0.buffer, A0.BYTES_PER_ELEMENT*1 ); + > TAU = new Float64Array( TAU0.buffer, TAU0.BYTES_PER_ELEMENT*1 ); + > WORK = new Float64Array( WORK0.buffer, WORK0.BYTES_PER_ELEMENT*1 ); + > {{alias}}( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ) + 0 + > A0 + [ 0, 0, 0, 0, 0, 2, 0 ] + > WORK0[ 1 ] + 2 + + +{{alias}}.ndarray( M, N, K, A, sa1, sa2, oa, TAU, st, ot, WORK, sw, ow, LWORK ) + Generates an M-by-N real orthogonal matrix `Q` from the elementary + reflectors returned by `DGELQF` using alternative indexing semantics. + + While typed array views mandate a view offset based on the underlying + buffer, the offset parameters support indexing semantics based on starting + indices. + + The function mutates `A`. + + Parameters + ---------- + M: integer + Number of rows of `Q`. + + N: integer + Number of columns of `Q`. + + K: integer + Number of elementary reflectors. + + A: Float64Array + Input/output matrix. On entry, the i-th row must contain the vector + which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as + returned by `DGELQF` in the first `K` rows of `A`. On exit, the M-by-N + orthogonal matrix `Q`. + + sa1: integer + Stride length for the first dimension of `A`. + + sa2: integer + Stride length for the second dimension of `A`. + + oa: integer + Starting index for `A`. + + TAU: Float64Array + Scalar factors of the elementary reflectors. + + st: integer + Stride length for `TAU`. + + ot: integer + Starting index for `TAU`. + + WORK: Float64Array + Workspace array. + + sw: integer + Stride length for `WORK`. + + ow: integer + Starting index for `WORK`. + + LWORK: integer + Dimension of `WORK`. If equal to -1, a workspace query is performed and + the optimal workspace size is returned at the offset `WORK[ow]`. + + Returns + ------- + info: integer + Status code. A status code of `0` indicates success. + + Examples + -------- + > var A = new {{alias:@stdlib/array/float64}}( [ 1, 0, 0, -1, -2, 0 ] ); + > var TAU = new {{alias:@stdlib/array/float64}}( [ 1, 1 ] ); + > var WORK = new {{alias:@stdlib/array/float64}}( 10 ); + > {{alias}}.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ) + 0 + > A + [ 0, 0, 0, 0, 2, 0 ] + > WORK[ 0 ] + 2 + + See Also + -------- diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/index.d.ts b/lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/index.d.ts new file mode 100644 index 000000000000..3023945c6667 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/index.d.ts @@ -0,0 +1,157 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/// + +import { Layout } from '@stdlib/types/blas'; + +/** +* Status code. +* +* ## Notes +* +* The status code indicates the following conditions: +* +* - if equal to zero, then the factorization was successful. +* - if greater than zero, then `U(k, k)` is exactly zero the factorization has been completed, but the factor `U` is exactly singular, and division by zero will occur if it is used to solve a system of equations where `k = StatusCode`. +*/ +type StatusCode = number; + + +/** +* Interface describing `dorglq`. +*/ +interface Routine { + /** + * Generates an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`. + * + * ## Notes + * + * - On entry, the i-th row must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. + * - On exit, the `M-by-N` orthogonal matrix `Q`. + * - `WORK` must have length, `LWORK >= max(1,M)`. For optimum performance `LWORK >= M*NB`. + * + * @param order - storage layout + * @param M - number of rows of `Q` + * @param N - number of columns of `Q` + * @param K - number of elementary reflectors + * @param A - input/output matrix + * @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`) + * @param TAU - scalar factors of the elementary reflectors + * @param WORK - workspace array + * @param LWORK - dimension of the array `WORK` + * @returns status code + * + * @example + * var Float64Array = require( '@stdlib/array/float64' ); + * + * var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); + * var TAU = new Float64Array( [ 1, 1 ] ); + * var WORK = new Float64Array( 10 ); + * + * dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ); + * // A => [ 0, 0, 0, 0, 2, 0 ] + */ + ( order: Layout, M: number, N: number, K: number, A: Float64Array, LDA: number, TAU: Float64Array, WORK: Float64Array, LWORK: number ): number; + + /** + * Generates an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF` using alternative indexing semantics. + * + * ## Notes + * + * - On entry, the i-th row must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. + * - On exit, the `M-by-N` orthogonal matrix `Q`. + * - `WORK` must have length, `LWORK >= max(1,M)`. For optimum performance `LWORK >= M*NB`. + * + * @param M - number of rows of `Q` + * @param N - number of columns of `Q` + * @param K - number of elementary reflectors + * @param A - input/output matrix + * @param strideA1 - stride length for the first dimension of `A` + * @param strideA2 - stride length for the second dimension of `A` + * @param offsetA - starting index of `A` + * @param TAU - scalar factors of the elementary reflectors + * @param strideTAU - stride length for `TAU` + * @param offsetTAU - starting index of `TAU` + * @param WORK - workspace array + * @param strideWORK - stride length for `WORK` + * @param offsetWORK - starting index of `WORK` + * @param LWORK - dimension of the array `WORK` + * @returns status code + * + * @example + * var Float64Array = require( '@stdlib/array/float64' ); + * + * var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); + * var TAU = new Float64Array( [ 1, 1 ] ); + * var WORK = new Float64Array( 10 ); + * + * dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); + * // A => [ 0, 0, 0, 0, 2, 0 ] + */ + ndarray( M: number, N: number, K: number, A: Float64Array, strideA1: number, strideA2: number, offsetA: number, TAU: Float64Array, strideTAU: number, offsetTAU: number, WORK: Float64Array, strideWORK: number, offsetWORK: number, LWORK: number ): number; +} + +/** +* LAPACK routine to generate an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`. +* +* ## Notes +* +* - On entry, the i-th row must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. +* - On exit, the `M-by-N` orthogonal matrix `Q`. +* - `WORK` must have length, `LWORK >= max(1,M)`. For optimum performance `LWORK >= M*NB`. +* +* @param order - storage layout +* @param M - number of rows of `Q` +* @param N - number of columns of `Q` +* @param K - number of elementary reflectors +* @param A - input/output matrix +* @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`) +* @param TAU - scalar factors of the elementary reflectors +* @param WORK - workspace array +* @param LWORK - dimension of the array `WORK` +* @returns status code +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +* var TAU = new Float64Array( [ 1, 1 ] ); +* var WORK = new Float64Array( 10 ); +* +* dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ); +* // A => [ 0, 0, 0, 0, 2, 0 ] +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +* var TAU = new Float64Array( [ 1, 1 ] ); +* var WORK = new Float64Array( 10 ); +* +* dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); +* // A => [ 0, 0, 0, 0, 2, 0 ] +*/ +declare var dorglq: Routine; + + +// EXPORTS // + +export = dorglq; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/test.ts b/lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/test.ts new file mode 100644 index 000000000000..727912f8561d --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/docs/types/test.ts @@ -0,0 +1,422 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import dorglq = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a first argument which is not a valid layout... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 5, 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( true, 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( false, 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( null, 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( void 0, 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( [], 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( {}, 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( ( x: number ): number => x, 2, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided a second argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', '5', 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', true, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', false, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', null, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', void 0, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', [], 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', {}, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', ( x: number ): number => x, 3, 2, A, 2, TAU, WORK, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided a third argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', 2, '5', 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, true, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, false, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, null, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, void 0, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, [], 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, {}, 2, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, ( x: number ): number => x, 2, A, 2, TAU, WORK, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided a fourth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', 2, 3, '5', A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, true, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, false, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, null, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, void 0, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, [], A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, {}, A, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, ( x: number ): number => x, A, 2, TAU, WORK, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided a fifth argument which is not a Float64Array... +{ + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', 2, 3, 2, '5', 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, 5, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, true, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, false, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, null, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, void 0, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, [], 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, {}, 2, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, ( x: number ): number => x, 2, TAU, WORK, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided a sixth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', 2, 3, 2, A, '5', TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, true, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, false, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, null, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, void 0, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, [], TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, {}, TAU, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, ( x: number ): number => x, TAU, WORK, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided a seventh argument which is not a Float64Array... +{ + const A = new Float64Array( 6 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', 2, 3, 2, A, 2, '5', WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, 5, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, true, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, false, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, null, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, void 0, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, [], WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, {}, WORK, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, ( x: number ): number => x, WORK, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided an eighth argument which is not a Float64Array... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, '5', 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, 5, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, true, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, false, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, null, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, void 0, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, [], 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, {}, 10 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, ( x: number ): number => x, 10 ); // $ExpectError +} + +// The compiler throws an error if the function is provided a ninth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, '5' ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, true ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, false ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, null ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, void 0 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, [] ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, {} ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided an unsupported number of arguments... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq(); // $ExpectError + dorglq( 'column-major' ); // $ExpectError + dorglq( 'column-major', 2 ); // $ExpectError + dorglq( 'column-major', 2, 3 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2 ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK ); // $ExpectError + dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10, 10 ); // $ExpectError +} + +// Attached to main export is an `ndarray` method which returns a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectType number +} + +// The compiler throws an error if the `ndarray` method is provided a first argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( '5', 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( true, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( false, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( null, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( void 0, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( [], 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( {}, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( ( x: number ): number => x, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a second argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, '5', 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, true, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, false, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, null, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, void 0, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, [], 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, {}, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, ( x: number ): number => x, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a third argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, '5', A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, true, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, false, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, null, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, void 0, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, [], A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, {}, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, ( x: number ): number => x, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a fourth argument which is not a Float64Array... +{ + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, '5', 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, 5, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, true, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, false, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, null, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, void 0, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, [], 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, {}, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, ( x: number ): number => x, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a fifth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, '5', 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, true, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, false, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, null, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, void 0, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, [], 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, {}, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, ( x: number ): number => x, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a sixth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, '5', 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, true, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, false, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, null, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, void 0, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, [], 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, {}, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, ( x: number ): number => x, 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a seventh argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, '5', TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, true, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, false, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, null, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, void 0, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, [], TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, {}, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, ( x: number ): number => x, TAU, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided an eighth argument which is not a Float64Array... +{ + const A = new Float64Array( 6 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, '5', 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, 5, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, true, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, false, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, null, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, void 0, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, [], 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, {}, 1, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, ( x: number ): number => x, 1, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a ninth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, '5', 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, true, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, false, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, null, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, void 0, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, [], 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, {}, 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, ( x: number ): number => x, 0, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a tenth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, '5', WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, true, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, false, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, null, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, void 0, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, [], WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, {}, WORK, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, ( x: number ): number => x, WORK, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided an eleventh argument which is not a Float64Array... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, '5', 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, 5, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, true, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, false, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, null, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, void 0, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, [], 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, {}, 1, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, ( x: number ): number => x, 1, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a twelfth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, '5', 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, true, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, false, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, null, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, void 0, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, [], 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, {}, 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, ( x: number ): number => x, 0, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a thirteenth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, '5', 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, true, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, false, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, null, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, void 0, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, [], 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, {}, 10 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, ( x: number ): number => x, 10 ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided a fourteenth argument which is not a number... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, '5' ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, true ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, false ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, null ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, void 0 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, [] ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, {} ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the `ndarray` method is provided an unsupported number of arguments... +{ + const A = new Float64Array( 6 ); + const TAU = new Float64Array( 2 ); + const WORK = new Float64Array( 10 ); + dorglq.ndarray(); // $ExpectError + dorglq.ndarray( 2 ); // $ExpectError + dorglq.ndarray( 2, 3 ); // $ExpectError + dorglq.ndarray( 2, 3, 2 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0 ); // $ExpectError + dorglq.ndarray( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10, 10 ); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/examples/index.js b/lib/node_modules/@stdlib/lapack/base/dorglq/examples/index.js new file mode 100644 index 000000000000..8ea92d1abf9d --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/examples/index.js @@ -0,0 +1,46 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var Float64Array = require( '@stdlib/array/float64' ); +var ndarray2array = require( '@stdlib/ndarray/base/to-array' ); +var shape2strides = require( '@stdlib/ndarray/base/shape2strides' ); +var dorglq = require( './../lib' ); + +// Specify matrix meta data: +var shape = [ 3, 4 ]; +var order = 'row-major'; +var strides = shape2strides( shape, order ); + +// Create a matrix stored in linear memory: +var A = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, -2.0, 1.0, 0.0, 0.0, -3.0, -4.0, 1.0, 0.0 ] ); // eslint-disable-line max-len +console.log( 'A (before):' ); +console.log( ndarray2array( A, shape, strides, 0, order ) ); + +// Define the scalar factors of the elementary reflectors: +var TAU = new Float64Array( [ 1.0, 1.0, 1.0 ] ); + +// Allocate a workspace array: +var WORK = new Float64Array( 20 ); + +// Generate the orthogonal matrix Q: +var info = dorglq( order, shape[ 0 ], shape[ 1 ], shape[ 0 ], A, strides[ 0 ], TAU, WORK, 20 ); // eslint-disable-line max-len +console.log( 'Q (after):' ); +console.log( ndarray2array( A, shape, strides, 0, order ) ); +console.log( info ); diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/base.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/base.js new file mode 100644 index 000000000000..5338e0c8b11f --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/base.js @@ -0,0 +1,176 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* eslint-disable max-len, max-params */ + +'use strict'; + +// MODULES // + +var max = require( '@stdlib/math/base/special/max' ); +var min = require( '@stdlib/math/base/special/min' ); +var floor = require( '@stdlib/math/base/special/floor' ); +var dorgl2 = require( './dorgl2.js' ); +var dlarft = require( './dlarft.js' ); +var dlarfb = require( './dlarfb.js' ); + + +// MAIN // + +/** +* Generates an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`. +* +* ## Notes +* +* - On entry, the i-th row must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. +* - On exit, the `M-by-N` orthogonal matrix `Q`. +* - `WORK` must have length, `LWORK >= max(1,M)`. For optimum performance `LWORK >= M*NB`. +* +* @private +* @param {NonNegativeInteger} M - number of rows of `Q` +* @param {NonNegativeInteger} N - number of columns of `Q` +* @param {NonNegativeInteger} K - number of elementary reflectors +* @param {Float64Array} A - input/output matrix +* @param {integer} strideA1 - stride length of the first dimension of `A` +* @param {integer} strideA2 - stride length of the second dimension of `A` +* @param {NonNegativeInteger} offsetA - starting index for `A` +* @param {Float64Array} TAU - scalar factors of reflectors +* @param {integer} strideTAU - stride length of `TAU` +* @param {NonNegativeInteger} offsetTAU - starting index for `TAU` +* @param {Float64Array} WORK - workspace array +* @param {integer} strideWORK - stride length of `WORK` +* @param {NonNegativeInteger} offsetWORK - starting index for `WORK` +* @param {NonNegativeInteger} LWORK - dimension of the array `WORK` +* @returns {integer} status code +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +* var TAU = new Float64Array( [ 1, 1 ] ); +* var WORK = new Float64Array( 10 ); +* +* var info = dorglq( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); +* // A => [ 0, 0, 0, 0, 2, 0 ] +* // info => 0 +* // WORK[ 0 ] => 2 +*/ +function dorglq( M, N, K, A, strideA1, strideA2, offsetA, TAU, strideTAU, offsetTAU, WORK, strideWORK, offsetWORK, LWORK ) { + var ldwork; + var lquery; + var lwkopt; + var nbmin; + var iws; + var nb; + var nx; + var kk; + var ki; + var ib; + var i; + var j; + var l; + + nb = 32; // Optimal block size derived from the Fortran LAPACK call `ilaenv( 1, 'DORGLQ', ' ', m, n, k, -1 )` + lwkopt = max( 1, M ) * nb; + WORK[ offsetWORK ] = lwkopt; + lquery = ( LWORK === -1 ); + + if ( lquery ) { + return 0; + } + + // Quick return if possible + if ( M === 0 ) { + WORK[ offsetWORK ] = 1; + return 0; + } + + nbmin = 2; + nx = 0; + iws = M; + + if ( ( nb > 1 ) && ( nb < K ) ) { + // Determine when to cross over from blocked to unblocked code. + nx = 128; // The crossover point derived from the Fortran LAPACK call `ilaenv( 3, 'DORGLQ', ' ', m, n, k, -1 )` + + if ( nx < K ) { + // Determine if workspace is large enough for blocked code. + ldwork = M; + iws = ldwork * nb; + if ( LWORK < iws ) { + // Not enough workspace to use optimal NB: reduce NB and determine the minimum value of NB. + nb = floor( LWORK / ldwork ); + nbmin = 2; // The minimum block size derived from the Fortran LAPACK call `ilaenv( 2, 'DORGLQ', ' ', m, n, k, -1 )` + } + } + } + + if ( ( nb >= nbmin ) && ( nb < K ) && ( nx < K ) ) { + // Use blocked code after the last block. + // The first kk rows are handled by the block method. + ki = floor( ( K - nx - 1 ) / nb ) * nb; // Fortran integer division + kk = min( K, ki + nb ); + + // Set A(kk+1:m,1:kk) to zero. + for ( j = 0; j < kk; j++ ) { + for ( i = kk; i < M; i++ ) { + A[ offsetA + ( i * strideA1 ) + ( j * strideA2 ) ] = 0; + } + } + } else { + kk = 0; + } + + // Use unblocked code for the last or only block. + if ( kk < M ) { + dorgl2( M - kk, N - kk, K - kk, A, strideA1, strideA2, offsetA + ( kk * ( strideA1 + strideA2 ) ), TAU, strideTAU, offsetTAU + ( kk * strideTAU ), WORK, strideWORK, offsetWORK); + } + + if ( kk > 0 ) { + // Use blocked code + for ( i = ki; i >= 0; i -= nb ) { + ib = min( nb, K - i ); + + if ( i + ib < M ) { + // Form the triangular factor of the block reflector, H = H(i) H(i+1) . . . H(i+ib-1) + dlarft( 'forward', 'rows', N - i, ib, A, strideA1, strideA2, offsetA + ( i * ( strideA1 + strideA2 ) ), TAU, strideTAU, offsetTAU + ( i * strideTAU ), WORK, 1, ldwork, offsetWORK ); + + // Apply H**T to A(i+ib:m,i:n) from the right + dlarfb( 'right', 'transpose', 'forward', 'rows', M - i - ib, N - i, ib, A, strideA1, strideA2, offsetA + ( i * ( strideA1 + strideA2 ) ), WORK, 1, ldwork, offsetWORK, A, strideA1, strideA2, offsetA + ( ( i + ib ) * strideA1 ) + ( i * strideA2 ), WORK, 1, ldwork, offsetWORK + ( ib * strideWORK ) ); + } + + // Apply H**T to columns i:n of current block + dorgl2( ib, N - i, ib, A, strideA1, strideA2, offsetA + ( i * ( strideA1 + strideA2 ) ), TAU, strideTAU, offsetTAU + ( i * strideTAU ), WORK, strideWORK, offsetWORK ); + + // Set columns 1:i-1 of current block to zero + for ( j = 0; j < i; j++ ) { + for ( l = i; l < i + ib; l++ ) { + A[ offsetA + ( l * strideA1 ) + ( j * strideA2 ) ] = 0.0; + } + } + } + } + + WORK[ offsetWORK ] = iws; + return 0; +} + + +// EXPORTS // + +module.exports = dorglq; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarfb.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarfb.js new file mode 100644 index 000000000000..9829013b213b --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarfb.js @@ -0,0 +1,118 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* eslint-disable max-len, max-params */ + +'use strict'; + +// MODULES // + +var leftForwardColumns = require( './left_forward_columns.js' ); +var leftBackwardColumns = require( './left_backward_columns.js' ); +var leftForwardRows = require( './left_forward_rows.js' ); +var leftBackwardRows = require( './left_backward_rows.js' ); +var rightForwardColumns = require( './right_forward_columns.js' ); +var rightBackwardColumns = require( './right_backward_columns.js' ); +var rightForwardRows = require( './right_forward_rows.js' ); +var rightBackwardRows = require( './right_backward_rows.js' ); + + +// MAIN // + +/** +* Applies a real block reflector `H` or its transpose `H^T` to a real `M` by `N` matrix `C`, from either the left or the right. +* +* ## Notes +* +* - `V` is a double-precision array with dimension `(LDV,K)` if `storev = 'C'`, `(LDV,M)` if `storev = 'R'` and `side = 'L'`, or `(LDV,N)` if `storev = 'R'` and `side = 'R'`. +* - `T` is a double-precision array with dimension `(LDT,K)`. The triangular `K` by `K` matrix `T` in the representation of the block reflector. +* - `C` is a double-precision array with dimension `(LDC,N)`. On entry, the `M` by `N` matrix `C`. On exit, `C` is overwritten by the desired matrix product. +* - `work` is a double-precision array with dimension `(LDWORK,K)`. +* +* @private +* @param {string} side - specifies whether `H` or `H^T` is applied from the left or right +* @param {string} trans - specifies whether to apply `H` or `H^T` +* @param {string} direct - indicates how `H` is formed from a product of elementary reflectors +* @param {string} storev - indicates how the vectors which define the elementary reflectors are stored +* @param {NonNegativeInteger} M - number of rows of the matrix `C` +* @param {NonNegativeInteger} N - number of columns of the matrix `C` +* @param {NonNegativeInteger} K - order of the matrix `T` +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of `V` +* @param {integer} strideV2 - stride of the second dimension of `V` +* @param {integer} offsetV - index offset for `V` +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of `T` +* @param {integer} strideT2 - stride of the second dimension of `T` +* @param {integer} offsetT - index offset for `T` +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of `C` +* @param {integer} strideC2 - stride of the second dimension of `C` +* @param {integer} offsetC - index offset for `C` +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of `work` +* @param {integer} strideWork2 - stride of the second dimension of `work` +* @param {integer} offsetWork - index offset for `work` +* @returns {Float64Array} updated matrix `C` +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* dlarfb( 'left', 'transpose', 'forward', 'columns', 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0 ); +* +* // C => [ -1350.00, -1400.00, -1450.00, -30961.00, -32102.00, -33243.00, -266612.00, -275464.00, -284316.00 ] +*/ +function dlarfb( side, trans, direct, storev, M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork ) { + // Quick return if possible + if ( M <= 0 || N <= 0 ) { + return C; + } + + if ( side === 'left' ) { + if ( storev === 'columns') { + if ( direct === 'forward' ) { + return leftForwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); + } + return leftBackwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); + } + if ( direct === 'forward' ) { + return leftForwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); + } + return leftBackwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); + } + if ( storev === 'columns') { + if ( direct === 'forward' ) { + return rightForwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); + } + return rightBackwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); + } + if ( direct === 'forward' ) { + return rightForwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); + } + return rightBackwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ); +} + + +// EXPORTS // + +module.exports = dlarfb; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarft.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarft.js new file mode 100644 index 000000000000..e6567023f56f --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dlarft.js @@ -0,0 +1,571 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* eslint-disable max-len, max-params */ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dlacpy = require( '@stdlib/lapack/base/dlacpy' ).ndarray; +var floor = require( '@stdlib/math/base/special/floor' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Forms the triangular factor T of a real block reflector H of order N, which is defined as a product of K elementary reflectors. +* +* ## Notes +* +* - If `direct` = 'forward', `H = H(1) H(2) . . . H(k)` and `T` is upper triangular. +* - If `direct` = 'backward', `H = H(k) . . . H(2) H(1)` and `T` is lower triangular. +* - If `storev` = 'columns', the vector which defines the elementary reflector `H(i)` is stored in the i-th column of the array `V`, and `H = I - V * T * V**T`. +* - If `storev` = 'rows', the vector which defines the elementary reflector `H(i)` is stored in the i-th row of the array `V`, and `H = I - V**T * T * V`. +* +* ## Method +* +* ### QR Case +* +* - Break \\(V\\) apart into six components +* +* ```tex +* V = \left[ +* \begin{array}{cc} +* V_{1,1} & 0 \\ +* V_{2,1} & V_{2,2} \\ +* V_{3,1} & V_{3,2} +* \end{array} +* \right] +* ``` +* +* where +* +* - \\(V_{1,1} \in \mathbb{R}^{l,l}\\) is unit lower triangular +* - \\(V_{2,1} \in \mathbb{R}^{k-l,l}\\) is rectangular +* - \\(V_{3,1} \in \mathbb{R}^{n-k,l}\\) is rectangular +* - \\(V_{2,2} \in \mathbb{R}^{k-l,k-l}\\) is unit lower triangular +* - \\(V_{3,2} \in \mathbb{R}^{n-k,k-l}\\) is rectangular +* +* - We construct the \\(T\\) matrix +* +* ```tex +* T = \left[ +* \begin{array}{cc} +* T_{1,1} & T_{1,2} \\ +* 0 & T_{2,2} +* \end{array} +* \right] +* ``` +* +* where \\(T\\) is the triangular factor obtained from block reflectors. +* +* - Assume we have already computed \\(T_{1,1}\\) and \\(T_{2,2}\\), and collect the associated reflectors in \\(V_1\\) and \\(V_2\\) +* +* ```tex +* \begin{aligned} +* T_{1,1} &\in \mathbb{R}^{l,l} && \text{upper triangular} \\ +* T_{2,2} &\in \mathbb{R}^{k-l,k-l} && \text{upper triangular} \\ +* T_{1,2} &\in \mathbb{R}^{l,k-l} && \text{rectangular} +* \end{aligned} +* ``` +* +* with \\(l = \lfloor k/2 \rfloor\\). +* +* - Consider the product +* +* ```tex +* \begin{aligned} +* (I - V_1 T_{1,1} V_1^T)(I - V_2 T_{2,2} V_2^T) +* = I - V_1 T_{1,1} V_1^T - V_2 T_{2,2} V_2^T + V_1 T_{1,1} V_1^T V_2 T_{2,2} V_2^T +* \end{aligned} +* ``` +* +* - Define +* +* ```tex +* T_{1,2} = -T_{1,1} V_1^T V_2 T_{2,2} +* ``` +* +* - Define the matrix \\(V\\) as +* +* ```tex +* V = \left[ +* \begin{array}{cc} +* V_1 & V_2 +* \end{array} +* \right] +* ``` +* +* so the product is equivalent to \\(I - V T V^T\\). +* +* This means we can compute \\(T_{1,1}\\) and \\(T_{2,2}\\) recursively, then use this information to compute \\(T_{1,2}\\). +* +* ### LQ Case +* +* - Break \\(V\\) apart into six components +* +* ```tex +* V = \left[ +* \begin{array}{ccc} +* V_{1,1} & V_{1,2} & V_{1,3} \\ +* 0 & V_{2,2} & V_{2,3} +* \end{array} +* \right] +* ``` +* +* where +* +* - \\(V_{1,1} \in \mathbb{R}^{l,l}\\) is unit upper triangular +* - \\(V_{1,2} \in \mathbb{R}^{l,k-l}\\) is rectangular +* - \\(V_{1,3} \in \mathbb{R}^{l,n-k}\\) is rectangular +* - \\(V_{2,2} \in \mathbb{R}^{k-l,k-l}\\) is unit upper triangular +* - \\(V_{2,3} \in \mathbb{R}^{k-l,n-k}\\) is rectangular +* +* with \\(l = \lfloor k/2 \rfloor\\). +* +* - We construct the \\(T\\) matrix +* +* ```tex +* T = \left[ +* \begin{array}{cc} +* T_{1,1} & T_{1,2} \\ +* 0 & T_{2,2} +* \end{array} +* \right] +* ``` +* +* where \\(T\\) is the triangular factor obtained from block reflectors. +* +* - Assume we have already computed \\(T_{1,1}\\) and \\(T_{2,2}\\), and collect the associated reflectors in \\(V_1\\) and \\(V_2\\) +* +* ```tex +* \begin{aligned} +* T_{1,1} &\in \mathbb{R}^{l,l} && \text{upper triangular} \\ +* T_{2,2} &\in \mathbb{R}^{k-l,k-l} && \text{upper triangular} \\ +* T_{1,2} &\in \mathbb{R}^{l,k-l} && \text{rectangular} +* \end{aligned} +* ``` +* +* - Consider the product +* +* ```tex +* \begin{aligned} +* (I - V_1^T T_{1,1} V_1)(I - V_2^T T_{2,2} V_2) +* = I - V_1^T T_{1,1} V_1 - V_2^T T_{2,2} V_2 + V_1^T T_{1,1} V_1 V_2^T T_{2,2} V_2 +* \end{aligned} +* ``` +* +* - Define +* +* ```tex +* T_{1,2} = -T_{1,1} V_1 V_2^T T_{2,2} +* ``` +* +* - Define the matrix \\(V\\) as +* +* ```tex +* V = \left[ +* \begin{array}{c} +* V_1 \\ +* V_2 +* \end{array} +* \right] +* ``` +* +* so the product is equivalent to \\(I - V^T T V\\). +* +* This means we can compute \\(T_{1,1}\\) and \\(T_{2,2}\\) recursively, then use this information to compute \\(T_{1,2}\\). +* +* ### QL Case +* +* - Break \\(V\\) apart into six components +* +* ```tex +* V = \left[ +* \begin{array}{cc} +* V_{1,1} & V_{1,2} \\ +* V_{2,1} & V_{2,2} \\ +* 0 & V_{3,2} +* \end{array} +* \right] +* ``` +* +* where +* +* - \\(V_{1,1} \in \mathbb{R}^{n-k,k-l}\\) is rectangular +* - \\(V_{2,1} \in \mathbb{R}^{k-l,k-l}\\) is unit upper triangular +* - \\(V_{1,2} \in \mathbb{R}^{n-k,l}\\) is rectangular +* - \\(V_{2,2} \in \mathbb{R}^{k-l,l}\\) is rectangular +* - \\(V_{3,2} \in \mathbb{R}^{l,l}\\) is unit upper triangular +* +* - We construct the \\(T\\) matrix +* +* ```tex +* T = \left[ +* \begin{array}{cc} +* T_{1,1} & 0 \\ +* T_{2,1} & T_{2,2} +* \end{array} +* \right] +* ``` +* +* where \\(T\\) is the triangular factor obtained from block reflectors. +* +* - Assume we have already computed \\(T_{1,1}\\) and \\(T_{2,2}\\), and collect the associated reflectors in \\(V_1\\) and \\(V_2\\) +* +* ```tex +* \begin{aligned} +* T_{1,1} &\in \mathbb{R}^{k-l,k-l} && \text{non-unit lower triangular} \\ +* T_{2,2} &\in \mathbb{R}^{l,l} && \text{non-unit lower triangular} \\ +* T_{2,1} &\in \mathbb{R}^{l,k-l} && \text{rectangular} +* \end{aligned} +* ``` +* +* with \\(l = \lfloor k/2 \rfloor\\). +* +* - Consider the product +* +* ```tex +* \begin{aligned} +* (I - V_2 T_{2,2} V_2^T)(I - V_1 T_{1,1} V_1^T) +* = I - V_2 T_{2,2} V_2^T - V_1 T_{1,1} V_1^T + V_2 T_{2,2} V_2^T V_1 T_{1,1} V_1^T +* \end{aligned} +* ``` +* +* - Define +* +* ```tex +* T_{2,1} = -T_{2,2} V_2^T V_1 T_{1,1} +* ``` +* +* - Define the matrix \\(V\\) as +* +* ```tex +* V = \left[ +* \begin{array}{cc} +* V_1 & V_2 +* \end{array} +* \right] +* ``` +* +* so the product is equivalent to \\(I - V T V^T\\). +* +* This means we can compute \\(T_{1,1}\\) and \\(T_{2,2}\\) recursively, then use this information to compute \\(T_{2,1}\\). +* +* ### RQ Case +* +* - Break \\(V\\) apart into six components +* +* ```tex +* V = \left[ +* \begin{array}{ccc} +* V_{1,1} & V_{1,2} & 0 \\ +* V_{2,1} & V_{2,2} & V_{2,3} +* \end{array} +* \right] +* ``` +* +* where +* +* - \\(V_{1,1} \in \mathbb{R}^{k-l,n-k}\\) is rectangular +* - \\(V_{1,2} \in \mathbb{R}^{k-l,k-l}\\) is unit lower triangular +* - \\(V_{2,1} \in \mathbb{R}^{l,n-k}\\) is rectangular +* - \\(V_{2,2} \in \mathbb{R}^{l,k-l}\\) is rectangular +* - \\(V_{2,3} \in \mathbb{R}^{l,l}\\) is unit lower triangular +* +* - We construct the \\(T\\) matrix +* +* ```tex +* T = \left[ +* \begin{array}{cc} +* T_{1,1} & 0 \\ +* T_{2,1} & T_{2,2} +* \end{array} +* \right] +* ``` +* +* where \\(T\\) is the triangular factor obtained from block reflectors. +* +* - Assume we have already computed \\(T_{1,1}\\) and \\(T_{2,2}\\), and collect the associated reflectors in \\(V_1\\) and \\(V_2\\) +* +* ```tex +* \begin{aligned} +* T_{1,1} &\in \mathbb{R}^{k-l,k-l} && \text{non-unit lower triangular} \\ +* T_{2,2} &\in \mathbb{R}^{l,l} && \text{non-unit lower triangular} \\ +* T_{2,1} &\in \mathbb{R}^{l,k-l} && \text{rectangular} +* \end{aligned} +* ``` +* +* with \\(l = \lfloor k/2 \rfloor\\). +* +* - Consider the product +* +* ```tex +* \begin{aligned} +* (I - V_2^T T_{2,2} V_2)(I - V_1^T T_{1,1} V_1) +* = I - V_2^T T_{2,2} V_2 - V_1^T T_{1,1} V_1 + V_2^T T_{2,2} V_2 V_1^T T_{1,1} V_1 +* \end{aligned} +* ``` +* +* - Define +* +* ```tex +* T_{2,1} = -T_{2,2} V_2 V_1^T T_{1,1} +* ``` +* +* - Define the matrix \\(V\\) as +* +* ```tex +* V = \left[ +* \begin{array}{c} +* V_1 \\ +* V_2 +* \end{array} +* \right] +* ``` +* +* so the product is equivalent to \\(I - V^T T V\\). +* +* This means we can compute \\(T_{1,1}\\) and \\(T_{2,2}\\) recursively, then use this information to compute \\(T_{2,1}\\). +* +* @private +* @param {string} direct - specifies the order in which the elementary reflectors are multiplied to form the block reflector `H` +* @param {string} storev - specifies how the vectors which define the elementary reflectors are stored +* @param {NonNegativeInteger} N - order of the block reflector `H` +* @param {NonNegativeInteger} K - order of the triangular factor `T` (the number of elementary reflectors) +* @param {Float64Array} V - matrix of reflector vectors +* @param {integer} strideV1 - stride of first dimension of `V` +* @param {integer} strideV2 - stride of second dimension of `V` +* @param {NonNegativeInteger} offsetV - starting index for `V` +* @param {Float64Array} TAU - array of scalar factors of the elementary reflector `H(i)` +* @param {integer} strideTAU - stride length for `TAU` +* @param {NonNegativeInteger} offsetTAU - starting index for `TAU` +* @param {Float64Array} T - output triangular matrix +* @param {integer} strideT1 - stride of first dimension of `T` +* @param {integer} strideT2 - stride of second dimension of `T` +* @param {NonNegativeInteger} offsetT - starting index for `T` +* @returns {Float64Array} `T` +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 1.0, 0.2, 0.3, -0.4, 0.5, 0.0, 1.0, -0.6, 0.7, -0.8, 0.0, 0.0, 1.0, 0.9, 1.1 ] ); +* var TAU = new Float64Array( [ 1.2, 0.7, 1.5 ] ); +* var T = new Float64Array( 9 ); +* +* dlarft( 'forward', 'rows', 5, 3, V, 5, 1, 0, TAU, 1, 0, T, 3, 1, 0 ); +* // T => [ ~1.2, ~0.5544, ~-0.17514, 0.0, 0.7, 0.8925, 0.0, 0.0, 1.5 ] +*/ +function dlarft( direct, storev, N, K, V, strideV1, strideV2, offsetV, TAU, strideTAU, offsetTAU, T, strideT1, strideT2, offsetT ) { + var colv; + var dirf; + var i0; + var i1; + var i2; + var i3; + var lq; + var ql; + var qr; + var i; + var j; + var l; + + if ( N === 0 || K === 0 ) { + return T; + } + + if ( N === 1 || K === 1 ) { + T[ offsetT ] = TAU[ offsetTAU ]; + return T; + } + + l = floor( K / 2 ); + + if ( direct === 'forward' ) { + dirf = true; + } + else { + dirf = false; + } + + if ( storev === 'columns' ) { + colv = true; + } + else { + colv = false; + } + + // QR happens when we have forward direction in column storage + qr = dirf & colv; + + // LQ happens when we have forward direction in row storage + lq = dirf & ( !colv ); + + // QL happens when we have backward direction in column storage + ql = ( !dirf ) & colv; + + // The last case is RQ. Due to how we structured this, if the above 3 are false, then RQ must be true, so we never store this RQ happens when we have backward direction in row storage `RQ = ( !dirf ) & ( !colv )` + if ( qr ) { + // Compute T_{1,1} recursively + dlarft( direct, storev, N, l, V, strideV1, strideV2, offsetV, TAU, strideTAU, offsetTAU, T, strideT1, strideT2, offsetT ); + + // Compute T_{2,2} recursively + dlarft( direct, storev, N - l, K - l, V, strideV1, strideV2, offsetV + ( ( strideV1 + strideV2 ) * l ), TAU, strideTAU, offsetTAU + ( strideTAU * l ), T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * l ) ); + + // Compute T_{1,2} = V_{2,1} + i0 = offsetT + ( strideT2 * l ); + i1 = offsetV + ( strideV1 * l ); + for ( j = 0; j < l; j++ ) { + i2 = i0; + i3 = i1; + for ( i = 0; i < K - l; i++ ) { + T[ i2 ] = V[ i3 ]; + i2 += strideT2; + i3 += strideV1; + } + i0 += strideT1; + i1 += strideV2; + } + + // T_{1,2} = T_{1,2}*V_{2,2} + dtrmm( 'right', 'lower', 'no-transpose', 'unit', l, K - l, 1, V, strideV1, strideV2, offsetV + ( ( strideV1 + strideV2 ) * l ), T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + + // T_{1,2} = V_{3,1}'*V_{3,2} + T_{1,2} + + // Note: We assume K <= N, and GEMM will do nothing if N=K + dgemm( 'transpose', 'no-transpose', l, K - l, N - K, 1, V, strideV1, strideV2, offsetV + ( strideV1 * K ), V, strideV1, strideV2, offsetV + ( strideV1 * K ) + ( strideV2 * l ), 1, T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + + /* + At this point, we have that T_{1,2} = V_1'*V_2 + All that is left is to pre and post multiply by -T_{1,1} and T_{2,2} respectively. + + T_{1,2} = -T_{1,1}*T_{1,2} + */ + dtrmm( 'left', 'upper', 'no-transpose', 'non-unit', l, K - l, -1, T, strideT1, strideT2, offsetT, T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + + // T_{1,2} = T_{1,2}*T_{2,2} + dtrmm( 'right', 'upper', 'no-transpose', 'non-unit', l, K - l, 1, T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * l ), T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + } else if ( lq ) { + // Compute T_{1,1} recursively + dlarft( direct, storev, N, l, V, strideV1, strideV2, offsetV, TAU, strideTAU, offsetTAU, T, strideT1, strideT2, offsetT ); + + // Compute T_{2,2} recursively + dlarft( direct, storev, N - l, K - l, V, strideV1, strideV2, offsetV + ( ( strideV1 + strideV2 ) * l ), TAU, strideTAU, offsetTAU + ( strideTAU * l ), T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * l ) ); + + // Compute T_{1,2} = V_{1,2} + dlacpy( 'all', l, K - l, V, strideV1, strideV2, offsetV + ( strideV2 * l ), T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + + // T_{1,2} = T_{1,2}*V_{2,2} + dtrmm( 'right', 'upper', 'transpose', 'unit', l, K - l, 1, V, strideV1, strideV2, offsetV + ( ( strideV1 + strideV2 ) * l ), T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + + // T_{1,2} = V_{1,3}*V_{2,3}' + T_{1,2} + + // Note: We assume K <= N, and GEMM will do nothing if N=K + dgemm( 'no-transpose', 'transpose', l, K - l, N - K, 1, V, strideV1, strideV2, offsetV + ( strideV2 * K ), V, strideV1, strideV2, offsetV + ( strideV1 * l ) + ( strideV2 * K ), 1, T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + + /* + At this point, we have that T_{1,2} = V_1*V_2' + All that is left is to pre and post multiply by -T_{1,1} and T_{2,2} respectively. + + T_{1,2} = -T_{1,1}*T_{1,2} + */ + dtrmm( 'left', 'upper', 'no-transpose', 'non-unit', l, K - l, -1, T, strideT1, strideT2, offsetT, T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + + // T_{1,2} = T_{1,2}*T_{2,2} + dtrmm( 'right', 'upper', 'no-transpose', 'non-unit', l, K - l, 1, T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * l ), T, strideT1, strideT2, offsetT + ( strideT2 * l ) ); + } else if ( ql ) { + // Compute T_{1,1} recursively + dlarft( direct, storev, N - l, K - l, V, strideV1, strideV2, offsetV, TAU, strideTAU, offsetTAU, T, strideT1, strideT2, offsetT ); + + // Compute T_{2,2} recursively + dlarft( direct, storev, N - l, K - l, V, strideV1, strideV2, offsetV + ( ( strideV1 + strideV2 ) * l ), TAU, strideTAU, offsetTAU + ( strideTAU * l ), T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * l ) ); + + // Compute T_{2,1} = V_{2,2} + i0 = offsetT + ( strideT1 * ( K - l ) ); + i1 = offsetV + ( strideV1 * ( N - K ) ) + ( strideV2 * ( K - l ) ); + for ( j = 0; j < K - l; j++ ) { + i2 = i0; + i3 = i1; + for ( i = 0; i < l; i++ ) { + T[ i2 ] = V[ i3 ]; + i2 += strideT1; + i3 += strideV2; + } + i0 += strideT2; + i1 += strideV1; + } + + // T_{2,1} = T_{2,1}*V_{2,1} + dtrmm( 'right', 'upper', 'no-transpose', 'unit', l, K - l, 1, V, strideV1, strideV2, offsetV + ( strideV1 * ( N - K ) ), T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + + // T_{2,1} = V_{2,2}'*V_{2,1} + T_{2,1} + + // Note: We assume K <= N, and GEMM will do nothing if N=K + dgemm( 'transpose', 'no-transpose', l, K - l, N - K, 1, V, strideV1, strideV2, offsetV + ( strideV2 * ( K - l ) ), V, strideV1, strideV2, offsetV, 1, T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + + /* + At this point, we have that T_{2,1} = V_2'*V_1 + All that is left is to pre and post multiply by -T_{2,2} and T_{1,1} respectively. + + T_{2,1} = -T_{2,2}*T_{2,1} + */ + dtrmm( 'left', 'lower', 'no-transpose', 'non-unit', l, K - l, -1, T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * ( K - l ) ), T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + + // T_{2,1} = T_{2,1}*T_{1,1} + dtrmm( 'right', 'lower', 'no-transpose', 'non-unit', l, K - l, 1, T, strideT1, strideT2, offsetT, T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + } else { + // Else means RQ case + + // Compute T_{1,1} recursively + dlarft( direct, storev, N - l, K - l, V, strideV1, strideV2, offsetV, TAU, strideTAU, offsetTAU, T, strideT1, strideT2, offsetT ); + + // Compute T_{2,2} recursively + dlarft( direct, storev, N, l, V, strideV1, strideV2, offsetV + ( strideV1 * ( K - l ) ), TAU, strideTAU, offsetTAU + ( strideTAU * ( K - l ) ), T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * ( K - l ) ) ); + + // Compute T_{2,1} = V_{2,2} + dlacpy( 'all', l, K - l, V, strideV1, strideV2, offsetV + ( strideV1 * ( K - l ) ) + ( strideV2 * ( N - K ) ), T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + + // T_{2,1} = T_{2,1}*V_{1,2} + dtrmm( 'right', 'lower', 'transpose', 'unit', l, K - l, 1, V, strideV1, strideV2, offsetV + ( strideV2 * ( N - K ) ), T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + + // T_{2,1} = V_{2,1}*V_{1,1}' + T_{2,1} + + // Note: We assume K <= N, and GEMM will do nothing if N=K + dgemm('no-transpose', 'transpose', l, K - l, N - K, 1, V, strideV1, strideV2, offsetV + ( strideV1 * ( K - l ) ), V, strideV1, strideV2, offsetV, 1, T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + + /* + At this point, we have that T_{2,1} = V_2*V_1' + All that is left is to pre and post multiply by -T_{2,2} and T_{1,1} respectively. + + T_{2,1} = -T_{2,2}*T_{2,1} + */ + dtrmm( 'left', 'lower', 'no-transpose', 'non-unit', l, K - l, -1, T, strideT1, strideT2, offsetT + ( ( strideT1 + strideT2 ) * ( K - l ) ), T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + + // T_{2,1} = T_{2,1}*T_{1,1} + dtrmm( 'right', 'lower', 'no-transpose', 'non-unit', l, K - l, 1, T, strideT1, strideT2, offsetT, T, strideT1, strideT2, offsetT + ( strideT1 * ( K - l ) ) ); + } + return T; +} + + +// EXPORTS // + +module.exports = dlarft; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorgl2.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorgl2.js new file mode 100644 index 000000000000..46d8bcedef9c --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorgl2.js @@ -0,0 +1,143 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* eslint-disable max-len, max-params */ + +'use strict'; + +// MODULES // + +var dlarf1f = require( '@stdlib/lapack/base/dlarf1f' ).ndarray; +var dscal = require( '@stdlib/blas/base/dscal' ).ndarray; +var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' ); + + +// MAIN // + +/** +* Generate an M-by-N real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`/`DGELQ2` (LQ factorization, unblocked). +* +* ## Notes +* +* - On entry, the i-th row of A must contain the vector which defines the elementary reflector H(i), for i = 1, 2, ..., K, as returned by `DGELQF` in the first K rows of its array argument A. +* +* - Q is defined as the product of K elementary reflectors: +* +* - Q = H(K) ... H(2) H(1), where each H(i) has the form `H(i) = I - tau(i)*v*v^T`, and v is stored as row i of the input matrix A. +* +* - On exit, A contains the M-by-N matrix Q. +* +* @private +* @param {NonNegativeInteger} M - number of rows of Q (0 <= M <= N) +* @param {NonNegativeInteger} N - number of columns of Q (N >= 0) +* @param {NonNegativeInteger} K - number of elementary reflectors (0 <= K <= M) +* @param {Float64Array} A - input/output matrix +* @param {integer} strideA1 - stride of the first dimension of A +* @param {integer} strideA2 - stride of the second dimension of A +* @param {NonNegativeInteger} offsetA - starting index for A +* @param {Float64Array} TAU - scalar factors of reflectors (length K) +* @param {integer} strideTAU - stride for TAU +* @param {NonNegativeInteger} offsetTAU - starting index for TAU +* @param {Float64Array} WORK - workspace (length >= M) +* @param {integer} strideWORK - stride for WORK +* @param {NonNegativeInteger} offsetWORK - starting index for WORK +* @returns {integer} status code (0 = success) +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var A = new Float64Array( 12 ); +* var TAU = new Float64Array( 2 ); +* var WORK = new Float64Array( 3 ); +* +* var info = dorgl2( 3, 4, 2, A, 4, 1, 0, TAU, 1, 0, WORK, 1, 0 ); +* // returns 0 +* // A => [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0 ] +* // WORK => [ 0, 0, 0 ] +*/ +function dorgl2( M, N, K, A, strideA1, strideA2, offsetA, TAU, strideTAU, offsetTAU, WORK, strideWORK, offsetWORK ) { + var idx0; + var idx1; + var idx2; + var idx3; + var i; + var j; + var l; + + // Initialize rows K+1..M to rows of the unit matrix + if ( K < M ) { + if ( isRowMajor( [ strideA1, strideA2 ] ) ) { + idx1 = offsetA + ( strideA1*K ); + for ( l = K; l < M; l++ ) { + idx2 = idx1; + for ( j = 0; j < N; j++ ) { + A[ idx2 ] = 0; + idx2 += strideA2; + if ( j >= K && j < M ) { + A[ offsetA + ( j*( strideA1 + strideA2 ) ) ] = 1; + } + } + idx1 += strideA1; + } + } else { // column-major + idx1 = offsetA; + for ( j = 0; j < N; j++ ) { + idx2 = idx1 + ( K*strideA1 ); + for ( l = K; l < M; l++ ) { + A[ idx2 ] = 0; + idx2 += strideA1; + } + if ( j >= K && j < M ) { + A[ idx1 + ( j*strideA1 ) ] = 1; + } + idx1 += strideA2; + } + } + } + + idx0 = offsetTAU + ( strideTAU*( K - 1 ) ); // TAU( i ) + idx1 = offsetA + ( ( K - 1 )*( strideA1 + strideA2 ) ); // A( i,i ) + idx2 = offsetA + ( ( K - 1 )*strideA1 ); // A( i,0 ) + for ( i = K - 1; i >= 0; i-- ) { + // Apply H(i) to A(i:m,i:n) from the right + if ( i < N - 1 ) { + if ( i < M - 1 ) { + dlarf1f( 'right', M - i - 1, N - i, A, strideA2, idx1, TAU[ idx0 ], A, strideA1, strideA2, idx1 + strideA1, WORK, strideWORK, offsetWORK ); + } + dscal( N - i - 1, -TAU[ idx0 ], A, strideA2, idx1 + strideA2 ); + } + + A[ idx1 ] = 1 - TAU[ idx0 ]; + + // Set A(i,1:i-1) to zero + idx3 = idx2; // A( i,l ) + for ( l = 0; l < i; l++ ) { + A[ idx3 ] = 0; + idx3 += strideA2; + } + idx0 -= strideTAU; + idx1 -= strideA1 + strideA2; + idx2 -= strideA1; + } + return 0; +} + + +// EXPORTS // + +module.exports = dorgl2; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorglq.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorglq.js new file mode 100644 index 000000000000..fe3bdedf5735 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dorglq.js @@ -0,0 +1,107 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var isLayout = require( '@stdlib/blas/base/assert/is-layout' ); +var format = require( '@stdlib/string/format' ); +var max = require( '@stdlib/math/base/special/fast/max' ); +var base = require( './base.js' ); + + +// MAIN // + +/** +* Generates an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`. +* +* ## Notes +* +* - On entry, the i-th row must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. +* - On exit, the `M-by-N` orthogonal matrix `Q`. +* - `WORK` must have length, `LWORK >= max(1,M)`. For optimum performance `LWORK >= M*NB`. +* +* @param {string} order - storage layout +* @param {NonNegativeInteger} M - number of rows of `Q` +* @param {NonNegativeInteger} N - number of columns of `Q` +* @param {NonNegativeInteger} K - number of elementary reflectors +* @param {Float64Array} A - input/output matrix +* @param {integer} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`) +* @param {Float64Array} TAU - scalar factors of reflectors +* @param {Float64Array} WORK - workspace array +* @param {NonNegativeInteger} LWORK - dimension of the array `WORK` +* @throws {TypeError} first argument must be a valid order +* @throws {RangeError} second argument must be a non-negative integer +* @throws {RangeError} third argument must be greater than or equal to `M` +* @throws {RangeError} fourth argument must be a non-negative integer and smaller than or equal to `M` +* @throws {RangeError} sixth argument must be a valid `LDA` value +* @throws {RangeError} ninth argument must be a valid `LWORK` value +* @returns {integer} status code +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +* var TAU = new Float64Array( [ 1, 1 ] ); +* var WORK = new Float64Array( 10 ); +* +* var info = dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ); +* // A => [ 0, 0, 0, 0, 2, 0 ] +* // info => 0 +* // WORK[ 0 ] => 2 +*/ +function dorglq( order, M, N, K, A, LDA, TAU, WORK, LWORK ) { + var sa1; + var sa2; + + if ( !isLayout( order ) ) { + throw new TypeError( format( 'invalid argument. First argument must be a valid order. Value: `%s`.', order ) ); + } + if ( M < 0 ) { + throw new RangeError( format( 'invalid argument. Second argument must be a nonnegative integer. Value: `%d`.', M ) ); + } + if ( N < M ) { + throw new RangeError( format( 'invalid argument. Third argument must be greater than or equal to `M`. Value: `%d`.', N ) ); + } + if ( K < 0 || K > M ) { + throw new RangeError( format( 'invalid argument. Fourth argument must be a nonnegative integer and smaller than or equal to `M`. Value: `%d`.', K ) ); + } + if ( order === 'column-major' ) { + if ( LDA < max( 1, M ) ) { + throw new RangeError( format( 'invalid argument. Sixth argument must be greater than or equal to `max(1,M)`. Value: `%d`.', LDA ) ); + } + sa1 = 1; + sa2 = LDA; + } else { // row-major + if ( LDA < max( 1, N ) ) { + throw new RangeError( format( 'invalid argument. Sixth argument must be greater than or equal to `max(1,N)`. Value: `%d`.', LDA ) ); + } + sa1 = LDA; + sa2 = 1; + } + if ( LWORK < max( 1, N ) && LWORK !== -1 ) { + throw new RangeError( format( 'invalid argument. Ninth argument must be greater than or equal to `max(1,N)` except when equal to -1. Value: `%d`.', LWORK ) ); + } + return base( M, N, K, A, sa1, sa2, 0, TAU, 1, 0, WORK, 1, 0, LWORK ); +} + + +// EXPORTS // + +module.exports = dorglq; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dtrmm.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dtrmm.js new file mode 100644 index 000000000000..f360237c6ef3 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/dtrmm.js @@ -0,0 +1,362 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* eslint-disable max-len, max-statements, max-lines-per-function */ + +'use strict'; + +// MODULES // + +var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' ); + + +// FUNCTIONS // + +/** +* Fills a matrix with zeros. +* +* @private +* @param {NonNegativeInteger} M - number of rows +* @param {NonNegativeInteger} N - number of columns +* @param {Float64Array} X - matrix to fill +* @param {integer} strideX1 - stride of the first dimension of `X` +* @param {integer} strideX2 - stride of the second dimension of `X` +* @param {NonNegativeInteger} offsetX - starting index for `X` +* @returns {Float64Array} input matrix +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var X = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] ); +* +* zeros( 2, 3, X, 3, 1, 0 ); +* // X => [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var X = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] ); +* +* zeros( 2, 3, X, 1, 2, 0 ); +* // X => [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] +*/ +function zeros( M, N, X, strideX1, strideX2, offsetX ) { // TODO: consider moving to a separate package + var dx0; + var dx1; + var S0; + var S1; + var i0; + var i1; + var ix; + + if ( isRowMajor( [ strideX1, strideX2 ] ) ) { + // For row-major matrices, the last dimension has the fastest changing index... + S0 = N; + S1 = M; + dx0 = strideX2; // offset increment for innermost loop + dx1 = strideX1 - ( S0*strideX2 ); // offset increment for outermost loop + } else { // column-major + // For column-major matrices, the first dimension has the fastest changing index... + S0 = M; + S1 = N; + dx0 = strideX1; // offset increment for innermost loop + dx1 = strideX2 - ( S0*strideX1 ); // offset increment for outermost loop + } + ix = offsetX; + for ( i1 = 0; i1 < S1; i1++ ) { + for ( i0 = 0; i0 < S0; i0++ ) { + X[ ix ] = 0.0; + ix += dx0; + } + ix += dx1; + } + return X; +} + + +// MAIN // + +/** +* Performs one of the matrix-matrix operations `B = α * op(A) * B` or `B = α * B * op(A)` where `α` is a scalar, `B` is an `M` by `N` matrix, `A` is a unit, or non-unit, upper or lower triangular matrix and `op( A )` is one of `op( A ) = A` or `op( A ) = A^T`. +* +* @private +* @param {string} side - specifies whether `op( A )` appears on the left or right side of `B` +* @param {string} uplo - specifies whether the upper or lower triangular part of the matrix `A` should be referenced +* @param {string} transa - specifies whether `A` should be transposed, conjugate-transposed, or not transposed +* @param {string} diag - specifies whether or not `A` is unit triangular +* @param {NonNegativeInteger} M - number of rows in `B` +* @param {NonNegativeInteger} N - number of columns in `B` +* @param {number} alpha - scalar constant +* @param {Float64Array} A - first input matrix +* @param {integer} strideA1 - stride of the first dimension of `A` +* @param {integer} strideA2 - stride of the second dimension of `A` +* @param {NonNegativeInteger} offsetA - starting index for `A` +* @param {Float64Array} B - second input matrix +* @param {integer} strideB1 - stride of the first dimension of `B` +* @param {integer} strideB2 - stride of the second dimension of `B` +* @param {NonNegativeInteger} offsetB - starting index for `B` +* @returns {Float64Array} `B` +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var A = new Float64Array( [ 1.0, 0.0, 0.0, 2.0, 3.0, 0.0, 4.0, 5.0, 6.0 ] ); +* var B = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0 ] ); +* +* dtrmm( 'left', 'lower', 'no-transpose', 'unit', 3, 3, 1.0, A, 3, 1, 0, B, 3, 1, 0 ); +* // B => [ 1.0, 2.0, 3.0, 6.0, 9.0, 12.0, 31.0, 41.0, 51.0 ] +*/ +function dtrmm( side, uplo, transa, diag, M, N, alpha, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, offsetB ) { // eslint-disable-line max-params + var nonunit; + var isrma; + var tmp; + var oa2; + var ob2; + var sa0; + var sa1; + var sb0; + var sb1; + var oa; + var ob; + var ia; + var ib; + var i; + var j; + var k; + var t; + + // Note on variable naming convention: sa#, sb# where # corresponds to the loop number, with `0` being the innermost loop... + + nonunit = ( diag === 'non-unit' ); + + if ( M === 0 || N === 0 ) { + return B; + } + + // Handle alpha = 0 before any layout conversion (zeroing uses original layout)... + if ( alpha === 0.0 ) { + if ( isRowMajor( [ strideB1, strideB2 ] ) ) { + sb0 = strideB2; + sb1 = strideB1; + } else { + sb0 = strideB1; + sb1 = strideB2; + } + zeros( M, N, B, sb0, sb1, offsetB ); + return B; + } + + // Detect layout and convert column-major to an equivalent row-major problem... + isrma = isRowMajor( [ strideA1, strideA2 ] ); + if ( !isrma ) { + // Swap strides: effectively view A and B as transposed (row-major)... + t = strideA1; + strideA1 = strideA2; + strideA2 = t; + + t = strideB1; + strideB1 = strideB2; + strideB2 = t; + + side = ( side === 'left' ) ? 'right' : 'left'; + uplo = ( uplo === 'upper' ) ? 'lower' : 'upper'; + t = M; + M = N; + N = t; + } + + // For row-major matrices, the last dimension has the fastest changing index... + sa0 = strideA2; // stride for innermost loop + sa1 = strideA1; // stride for outermost loop + sb0 = strideB2; // stride for innermost loop + sb1 = strideB1; // stride for outermost loop + + if ( side === 'left' && uplo === 'upper' && transa === 'no-transpose' ) { + for ( j = 0; j < N; j++ ) { + ib = offsetB + ( j*sb0 ); + for ( k = 0; k < M; k++ ) { + ob2 = ib + ( k * sb1 ); + tmp = alpha * B[ ob2 ]; + ia = offsetA + ( k*sa0 ); + for ( i = 0; i < k; i++ ) { + B[ ib + ( i*sb1 ) ] += ( tmp * A[ ia + ( i*sa1 ) ] ); + } + if ( nonunit ) { + tmp *= A[ ia + ( k*sa1 ) ]; + } + B[ ob2 ] = tmp; + } + } + return B; + } + if ( side === 'left' && uplo === 'lower' && transa === 'no-transpose' ) { + for ( j = 0; j < N; j++ ) { + ib = offsetB + ( j*sb0 ); + for ( k = M - 1; k >= 0; k-- ) { + ob2 = ib + ( k*sb1 ); + tmp = alpha * B[ ob2 ]; + ia = offsetA + ( k*sa0 ); + for ( i = k + 1; i < M; i++ ) { + oa2 = ia + ( i*sa1 ); + B[ ib + ( i*sb1 ) ] += ( tmp * A[ oa2 ] ); + } + if ( nonunit ) { + tmp *= A[ ia + ( k*sa1 ) ]; + } + B[ ob2 ] = tmp; + } + } + return B; + } + if ( side === 'left' && uplo === 'upper' && transa !== 'no-transpose' ) { + for ( j = 0; j < N; j++ ) { + ib = offsetB + ( j*sb0 ); + for ( i = M - 1; i >= 0; i-- ) { + ob2 = ib + ( i*sb1 ); + tmp = 0.0; + ia = offsetA + ( i*sa0 ); + if ( nonunit ) { + tmp += ( A[ ia + ( i*sa1 ) ] * B[ ob2 ] ); + } else { + tmp += B[ ob2 ]; + } + for ( k = 0; k < i; k++ ) { + oa2 = ia + ( k*sa1 ); + tmp += A[ oa2 ] * B[ ib + ( k*sb1 ) ]; + } + B[ ob2 ] = alpha * tmp; + } + } + return B; + } + if ( side === 'left' && uplo === 'lower' && transa !== 'no-transpose' ) { + for ( j = 0; j < N; j++ ) { + ib = offsetB + ( j * sb0 ); + for ( i = 0; i < M; i++ ) { + ia = offsetA + ( i * sa0 ); + ob2 = ib + ( i * sb1 ); + tmp = 0.0; + for ( k = i + 1; k < M; k++ ) { + tmp += A[ ia + ( k * sa1 ) ] * B[ ib + ( k * sb1 ) ]; + } + if ( nonunit ) { + tmp += ( A[ ia + ( i * sa1 ) ] * B[ ob2 ] ); + } else { + tmp += B[ ob2 ]; + } + B[ ob2 ] = alpha * tmp; + } + } + return B; + } + if ( side === 'right' && uplo === 'upper' && transa === 'no-transpose' ) { + for ( j = N - 1; j >= 0; j-- ) { + ia = offsetA + ( j*sa0 ); + ib = offsetB + ( j*sb0 ); + for ( i = 0; i < M; i++ ) { + ob = ib + ( i*sb1 ); + B[ ob ] *= alpha; + if ( nonunit ) { + oa2 = ia + ( j*sa1 ); + tmp = A[ oa2 ]; + B[ ob ] *= tmp; + } + for ( k = 0; k < j; k++ ) { + oa2 = ia + ( k*sa1 ); + ob2 = offsetB + ( k*sb0 ); + if ( A[ oa2 ] !== 0.0 ) { + tmp = alpha * A[ oa2 ]; + B[ ob ] += ( tmp * B[ ob2 + ( i*sb1 ) ] ); + } + } + } + } + return B; + } + if ( side === 'right' && uplo === 'lower' && transa === 'no-transpose' ) { + for ( j = 0; j < N; j++ ) { + ia = offsetA + ( j*sa0 ); + for ( i = 0; i < M; i++ ) { + ib = offsetB + ( i*sb1 ); + ob = ib + ( j*sb0 ); + B[ ob ] *= alpha; + if ( nonunit ) { + oa = ia + ( j*sa1 ); + B[ ob ] *= A[ oa ]; + } + for ( k = j + 1; k < N; k++ ) { + oa2 = ia + ( k*sa1 ); + ob2 = ib + ( k*sb0 ); + if ( A[ oa2 ] !== 0.0 ) { + tmp = alpha * A[ oa2 ]; + B[ ob ] += ( tmp * B[ ob2 ] ); + } + } + } + } + return B; + } + if ( side === 'right' && uplo === 'upper' && transa !== 'no-transpose' ) { + for ( j = 0; j < N; j++ ) { + ia = offsetA + ( j*sa1 ); + for ( i = 0; i < M; i++ ) { + ib = offsetB + ( i*sb1 ); + oa = ia + ( j*sa0 ); + ob = ib + ( j*sb0 ); + if ( nonunit ) { + tmp = B[ ob ] * A[ oa ]; + } else { + tmp = B[ ob ]; + } + for ( k = j + 1; k < N; k++ ) { + oa2 = ia + ( k*sa0 ); + ob2 = ib + ( k*sb0 ); + tmp += ( B[ ob2 ] * A[ oa2 ] ); + } + B[ ob ] = alpha * tmp; + } + } + return B; + } + // side === 'right', uplo === 'lower', transa !== 'no-transpose' + for ( i = 0; i < M; i++ ) { + ib = offsetB + ( i*sb1 ); + for ( j = N - 1; j >= 0; j-- ) { + ia = offsetA + ( j*sa1 ); + oa = ia + ( j*sa0 ); + ob = ib + ( j*sb0 ); + if ( nonunit ) { + tmp = B[ ob ] * A[ oa ]; + } else { + tmp = B[ ob ]; + } + for ( k = 0; k < j; k++ ) { + oa2 = ia + ( k*sa0 ); + ob2 = ib + ( k*sb0 ); + tmp += ( B[ ob2 ] * A[ oa2 ] ); + } + B[ ob ] = alpha * tmp; + } + } + return B; +} + + +// EXPORTS // + +module.exports = dtrmm; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/index.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/index.js new file mode 100644 index 000000000000..88b8811212c2 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/index.js @@ -0,0 +1,63 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +/** +* LAPACK routine to an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`. +* +* @module @stdlib/lapack/base/dorglq +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* var dorglq = require( '@stdlib/lapack/base/dorglq' ); +* +* var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +* var TAU = new Float64Array( [ 1, 1 ] ); +* var WORK = new Float64Array( 10 ); +* +* var info = dorglq( 'column-major', 2, 3, 2, A, 2, TAU, WORK, 10 ); +* // A => [ 0, 0, 0, 0, 2, 0 ] +* // info => 0 +* // WORK[ 0 ] => 2 +*/ + +// MODULES // + +var join = require( 'path' ).join; +var tryRequire = require( '@stdlib/utils/try-require' ); +var isError = require( '@stdlib/assert/is-error' ); +var main = require( './main.js' ); + + +// MAIN // + +var dorglq; +var tmp = tryRequire( join( __dirname, './native.js' ) ); +if ( isError( tmp ) ) { + dorglq = main; +} else { + dorglq = tmp; +} + + +// EXPORTS // + +module.exports = dorglq; + +// exports: { "ndarray": "dorglq.ndarray" } diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_columns.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_columns.js new file mode 100644 index 000000000000..5a71b0c9aec0 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_columns.js @@ -0,0 +1,162 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var loopOrder = require( '@stdlib/ndarray/base/unary-loop-interchange-order' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the left, with backward direction and column storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = leftBackwardColumns( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -557890.0, -592880.0, -627870.0, -596341.0, -632662.0, -668983.0, -7412.0, -7864.0, -8316.0 ] +*/ +function leftBackwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var transt; + var da0; + var da1; + var db0; + var db1; + var sh; + var sa; + var sb; + var S0; + var S1; + var ia; + var ib; + var ic; + var iv; + var iw; + var i; + var j; + var o; + + if ( trans === 'no-transpose' ) { + transt = 'transpose'; + } else { + transt = 'no-transpose'; + } + + /* Let V = ( V1 ) + * ( V2 ) (last K rows) + * Where V2 is unit upper triangular. + */ + + /* Form H * C or H^T * C where C = ( C1 ) + * ( C2 ) + * W := C**T * V = (C1**T * V1 + C2**T * V2) (stored in WORK) + * W := C2**T + */ + ic = offsetC + ( (M-K) * strideC1 ); + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + iw = offsetWork + ( j * strideWork2 ); + dcopy( N, C, strideC2, ic, work, strideWork1, iw ); + ic += strideC1; + iw += strideWork2; + } + // W := W * V2 + iv = offsetV + ( (M-K) * strideV1 ); + dtrmm( 'right', 'upper', 'no-transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + if ( M > K ) { + // W := W + C1**T * V1 + dgemm( 'transpose', 'no-transpose', N, K, M-K, 1.0, C, strideC1, strideC2, offsetC, V, strideV1, strideV2, offsetV, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T**T or W * T + dtrmm( 'right', 'lower', transt, 'non-unit', N, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - V * W**T + if ( M > K ) { + // C1 := C1 - V1 * W**T + dgemm( 'no-transpose', 'transpose', M-K, N, K, -1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork, 1.0, C, strideC1, strideC2, offsetC ); + } + // W := W * V2**T + iv = offsetV + ( (M-K) * strideV1 ); + dtrmm( 'right', 'upper', 'transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + + // C2 := C2 - W**T + o = loopOrder( [ K, N ], [ strideC2, strideC1 ], [ strideWork1, strideWork2 ] ); // eslint-disable-line max-len + sh = o.sh; + sa = o.sx; + sb = o.sy; + S0 = sh[ 0 ]; + S1 = sh[ 1 ]; + da0 = sa[ 0 ]; + da1 = sa[ 1 ] - ( S0 * sa[ 0 ] ); + db0 = sb[ 0 ]; + db1 = sb[ 1 ] - ( S0 * sb[ 0 ] ); + + ia = offsetC + ( (M-K) * strideC1 ); + ib = offsetWork; + + for ( j = 0; j < S1; j++ ) { + for ( i = 0; i < S0; i++ ) { + C[ ia ] -= work[ ib ]; + ia += da0; + ib += db0; + } + ia += da1; + ib += db1; + } + + return C; +} + + +// EXPORTS // + +module.exports = leftBackwardColumns; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_rows.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_rows.js new file mode 100644 index 000000000000..89bedab3ecee --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_backward_rows.js @@ -0,0 +1,165 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var loopOrder = require( '@stdlib/ndarray/base/unary-loop-interchange-order' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the left, with backward direction and row storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = leftBackwardRows( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -155530.0, -164560.0, -173590.0, -292241.0, -308662.0, -325083.0, -4832.0, -5104.0, -5376.0 ] +*/ +function leftBackwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var transt; + var da0; + var da1; + var db0; + var db1; + var i0; + var i1; + var sh; + var sa; + var sb; + var S0; + var S1; + var ia; + var ib; + var ic; + var iv; + var iw; + var j; + var o; + + if ( trans === 'no-transpose' ) { + transt = 'transpose'; + } else { + transt = 'no-transpose'; + } + + /* Let V = ( V1 V2 ) (V2: last K columns) + * Where V2 is unit lower triangular. + */ + + /* Form H * C or H^T * C where C = ( C1 ) + * ( C2 ) + * W := C**T * V**T = (C1**T * V1**T + C2**T * V2**T) (stored in WORK) + * W := C2**T + */ + ic = offsetC; + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + dcopy( N, C, strideC2, ic, work, strideWork1, iw ); + ic += strideC1; + iw += strideWork2; + } + // W := W * V2**T + iv = offsetV + ( (M-K) * strideV2 ); + dtrmm( 'right', 'lower', 'transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + if ( M > K ) { + // W := W + C1**T * V1**T + dgemm( 'transpose', 'transpose', N, K, M-K, 1.0, C, strideC1, strideC2, offsetC, V, strideV1, strideV2, offsetV, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T**T or W * T + dtrmm( 'right', 'lower', transt, 'non-unit', N, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - V**T * W**T + if ( M > K ) { + // C1 := C1 - V1**T * W**T + dgemm( 'transpose', 'transpose', M-K, N, K, -1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork, 1.0, C, strideC1, strideC2, offsetC ); + } + // W := W * V2 + iv = offsetV + ( (M-K) * strideV2 ); + dtrmm( 'right', 'lower', 'no-transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + + // C2 := C2 - W**T + o = loopOrder( [ K, N ], [ strideC1, strideC2 ], [ strideWork2, strideWork1 ] ); // eslint-disable-line max-len + sh = o.sh; + sa = o.sx; + sb = o.sy; + + // Extract loop variables for loop interchange + S0 = sh[ 0 ]; + S1 = sh[ 1 ]; + da0 = sa[ 0 ]; + da1 = sa[ 1 ] - ( S0 * sa[ 0 ] ); + db0 = sb[ 0 ]; + db1 = sb[ 1 ] - ( S0 * sb[ 0 ] ); + + // Set pointers to first indexed elements + ia = offsetC + ( (M-K) * strideC1 ); + ib = offsetWork; + + // Iterate over matrix dimensions with optimized loop order + for ( i1 = 0; i1 < S1; i1++ ) { + for ( i0 = 0; i0 < S0; i0++ ) { + C[ ia ] -= work[ ib ]; + ia += da0; + ib += db0; + } + ia += da1; + ib += db1; + } + + return C; +} + + +// EXPORTS // + +module.exports = leftBackwardRows; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_columns.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_columns.js new file mode 100644 index 000000000000..e7b134abf652 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_columns.js @@ -0,0 +1,168 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var loopOrder = require( '@stdlib/ndarray/base/unary-loop-interchange-order' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the left, with forward direction and column storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = leftForwardColumns( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -1350.0, -1400.0, -1450.0, -30961.0, -32102.0, -33243.0, -266612.0, -275464.0, -284316.0 ] +*/ +function leftForwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var transt; + var da0; + var da1; + var db0; + var db1; + var i0; + var i1; + var sh; + var sa; + var sb; + var S0; + var S1; + var ia; + var ib; + var ic; + var iv; + var iw; + var j; + var o; + + if ( trans === 'no-transpose' ) { + transt = 'transpose'; + } else { + transt = 'no-transpose'; + } + + /* Let V = ( V1 ) (first K rows) + * ( V2 ) + * Where V1 is unit lower triangular. + */ + + /* Form H * C or H^T * C where C = ( C1 ) + * ( C2 ) + * W := C**T * V = (C1**T * V1 + C2**T * V2) (stored in WORK) + * W := C1**T + */ + ic = offsetC; + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + dcopy( N, C, strideC2, ic, work, strideWork1, iw ); + ic += strideC1; + iw += strideWork2; + } + // W := W * V1 + dtrmm( 'right', 'lower', 'no-transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + if ( M > K ) { + // W := W + C2**T * V2 + ic = offsetC + ( K * strideC1 ); // C( k+1, 1 ) - 0 based index + iv = offsetV + ( K * strideV1 ); // V( k+1, 1 ) - 0 based index + dgemm( 'transpose', 'no-transpose', N, K, M-K, 1.0, C, strideC1, strideC2, ic, V, strideV1, strideV2, iv, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T**T or W * T + dtrmm( 'right', 'upper', transt, 'non-unit', N, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - V * W**T + if ( M > K ) { + // C2 := C2 - V2 * W**T + ic = offsetC + ( K * strideC1 ); // C( k+1, 1 ) - 0 based index + iv = offsetV + ( K * strideV1 ); // V( k+1, 1 ) - 0 based index + dgemm( 'no-transpose', 'transpose', M-K, N, K, -1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork, 1.0, C, strideC1, strideC2, ic ); + } + // W := W * V1**T + dtrmm( 'right', 'lower', 'transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + + // C1 := C1 - W**T + o = loopOrder( [ K, N ], [ strideC1, strideC2 ], [ strideWork2, strideWork1 ] ); // eslint-disable-line max-len + sh = o.sh; + sa = o.sx; + sb = o.sy; + + // Extract loop variables for loop interchange + S0 = sh[ 0 ]; + S1 = sh[ 1 ]; + da0 = sa[ 0 ]; + da1 = sa[ 1 ] - ( S0 * sa[ 0 ] ); + db0 = sb[ 0 ]; + db1 = sb[ 1 ] - ( S0 * sb[ 0 ] ); + + // Set pointers to first indexed elements + ia = offsetC; + ib = offsetWork; + + // Iterate over matrix dimensions with optimized loop order + for ( i1 = 0; i1 < S1; i1++ ) { + for ( i0 = 0; i0 < S0; i0++ ) { + C[ ia ] -= work[ ib ]; + ia += da0; + ib += db0; + } + ia += da1; + ib += db1; + } + + return C; +} + + +// EXPORTS // + +module.exports = leftForwardColumns; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_rows.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_rows.js new file mode 100644 index 000000000000..d62c3646d67f --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/left_forward_rows.js @@ -0,0 +1,167 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var loopOrder = require( '@stdlib/ndarray/base/unary-loop-interchange-order' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the left, with forward direction and row storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = leftForwardRows( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -3010.0, -3120.0, -3230.0, -125821.0, -130422.0, -135023.0, -611692.0, -632424.0, -653156.0 ] +*/ +function leftForwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var transt; + var da0; + var da1; + var db0; + var db1; + var i0; + var i1; + var sh; + var sa; + var sb; + var S0; + var S1; + var ia; + var ib; + var ic; + var iv; + var iw; + var j; + var o; + + if ( trans === 'no-transpose' ) { + transt = 'transpose'; + } else { + transt = 'no-transpose'; + } + + /* Let V = ( V1 V2 ) (V1: first K columns) + * Where V1 is unit upper triangular. + */ + + /* Form H * C or H^T * C where C = ( C1 ) + * ( C2 ) + * W := C**T * V**T = (C1**T * V1**T + C2**T * V2**T) (stored in work) + * W := C1**T + */ + ic = offsetC; + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + dcopy( N, C, strideC2, ic, work, strideWork1, iw ); + ic += strideC1; + iw += strideWork2; + } + // W := W * V1**T + dtrmm( 'right', 'upper', 'transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + if ( M > K ) { + // W := W + C2**T * V2**T + ic = offsetC + ( K * strideC1 ); + iv = offsetV + ( K * strideV2 ); + dgemm( 'transpose', 'transpose', N, K, M-K, 1.0, C, strideC1, strideC2, ic, V, strideV1, strideV2, iv, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T**T or W * T + dtrmm( 'right', 'upper', transt, 'non-unit', N, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - V**T * W**T + if ( M > K ) { + // C2 := C2 - V2**T * W**T + ic = offsetC + ( K * strideC1 ); + iv = offsetV + ( K * strideV2 ); + dgemm( 'transpose', 'transpose', M-K, N, K, -1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork, 1.0, C, strideC1, strideC2, ic ); + } + // W := W * V1 + dtrmm( 'right', 'upper', 'no-transpose', 'unit', N, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + + // C1 := C1 - W**T + o = loopOrder( [ K, N ], [ strideC1, strideC2 ], [ strideWork2, strideWork1 ] ); // eslint-disable-line max-len + sh = o.sh; + sa = o.sx; + sb = o.sy; + + // Extract loop variables for loop interchange + S0 = sh[ 0 ]; + S1 = sh[ 1 ]; + da0 = sa[ 0 ]; + da1 = sa[ 1 ] - ( S0 * sa[ 0 ] ); + db0 = sb[ 0 ]; + db1 = sb[ 1 ] - ( S0 * sb[ 0 ] ); + + // Set pointers to first indexed elements + ia = offsetC; + ib = offsetWork; + + // Iterate over matrix dimensions with optimized loop order + for ( i1 = 0; i1 < S1; i1++ ) { + for ( i0 = 0; i0 < S0; i0++ ) { + C[ ia ] -= work[ ib ]; + ia += da0; + ib += db0; + } + ia += da1; + ib += db1; + } + + return C; +} + + +// EXPORTS // + +module.exports = leftForwardRows; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/main.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/main.js new file mode 100644 index 000000000000..dad3cae6e484 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/main.js @@ -0,0 +1,35 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' ); +var dorglq = require( './dorglq.js' ); +var ndarray = require( './ndarray.js' ); + + +// MAIN // + +setReadOnly( dorglq, 'ndarray', ndarray ); + + +// EXPORTS // + +module.exports = dorglq; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/ndarray.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/ndarray.js new file mode 100644 index 000000000000..13f6070555ab --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/ndarray.js @@ -0,0 +1,92 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +/* eslint-disable max-len, max-params */ + +'use strict'; + +// MODULES // + +var format = require( '@stdlib/string/format' ); +var max = require( '@stdlib/math/base/special/fast/max' ); +var base = require( './base.js' ); + + +// MAIN // + +/** +* Generates an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF` using alternative indexing semantics. +* +* ## Notes +* +* - On entry, the i-th row must contain the vector which defines the elementary reflector `H(i)`, for `i = 1,2,...,K`, as returned by `DGELQF` in the first `K` rows of its array argument `A`. +* - On exit, the `M-by-N` orthogonal matrix `Q`. +* - `WORK` must have length, `LWORK >= max(1,M)`. For optimum performance `LWORK >= M*NB`. +* +* @param {NonNegativeInteger} M - number of rows of `Q` +* @param {NonNegativeInteger} N - number of columns of `Q` +* @param {NonNegativeInteger} K - number of elementary reflectors +* @param {Float64Array} A - input/output matrix +* @param {integer} strideA1 - stride length for the first dimension of `A` +* @param {integer} strideA2 - stride length for the second dimension of `A` +* @param {NonNegativeInteger} offsetA - starting index of `A` +* @param {Float64Array} TAU - scalar factors of reflectors +* @param {integer} strideTAU - stride length for `TAU` +* @param {NonNegativeInteger} offsetTAU - starting index of `TAU` +* @param {Float64Array} WORK - workspace array +* @param {integer} strideWORK - stride length for `WORK` +* @param {NonNegativeInteger} offsetWORK - starting index of `WORK` +* @param {NonNegativeInteger} LWORK - dimension of the array `WORK` +* @throws {RangeError} first argument must be a non-negative integer +* @throws {RangeError} second argument must be greater than or equal to `M` +* @throws {RangeError} third argument must be a non-negative integer and smaller than or equal to `M` +* @throws {RangeError} fourteenth argument must be a valid `LWORK` value +* @returns {integer} status code +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var A = new Float64Array( [ 1, 0, 0, -1, -2, 0 ] ); +* var TAU = new Float64Array( [ 1, 1 ] ); +* var WORK = new Float64Array( 10 ); +* +* var info = dorglq( 2, 3, 2, A, 1, 2, 0, TAU, 1, 0, WORK, 1, 0, 10 ); +* // A => [ 0, 0, 0, 0, 2, 0 ] +* // info => 0 +* // WORK[ 0 ] => 2 +*/ +function dorglq( M, N, K, A, strideA1, strideA2, offsetA, TAU, strideTAU, offsetTAU, WORK, strideWORK, offsetWORK, LWORK ) { + if ( M < 0 ) { + throw new RangeError( format( 'invalid argument. First argument must be a nonnegative integer. Value: `%d`.', M ) ); + } + if ( N < M ) { + throw new RangeError( format( 'invalid argument. Second argument must be greater than or equal to `M`. Value: `%d`.', N ) ); + } + if ( K < 0 || K > M ) { + throw new RangeError( format( 'invalid argument. Third argument must be a nonnegative integer and smaller than or equal to `M`. Value: `%d`.', K ) ); + } + if ( LWORK < max( 1, N ) && LWORK !== -1 ) { + throw new RangeError( format( 'invalid argument. Fourteenth argument must be greater than or equal to `max(1,N)` except when equal to -1. Value: `%d`.', LWORK ) ); + } + return base( M, N, K, A, strideA1, strideA2, offsetA, TAU, strideTAU, offsetTAU, WORK, strideWORK, offsetWORK, LWORK ); +} + + +// EXPORTS // + +module.exports = dorglq; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_columns.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_columns.js new file mode 100644 index 000000000000..20f98fd01d52 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_columns.js @@ -0,0 +1,158 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var loopOrder = require( '@stdlib/ndarray/base/unary-loop-interchange-order' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the right, with backward direction and column storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = rightBackwardColumns( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -402190.0, -419212.0, -5216.0, -752090.0, -782422.0, -9736.0, -1101990.0, -1145632.0, -14256.0 ] +*/ +function rightBackwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var da0; + var da1; + var db0; + var db1; + var i0; + var i1; + var sh; + var sa; + var sb; + var S0; + var S1; + var ia; + var ib; + var ic; + var iv; + var iw; + var j; + var o; + + /* Let V = ( V1 ) + * ( V2 ) (last K rows) + * Where V2 is unit upper triangular. + */ + + /* Form C * H or C * H^T where C = ( C1 C2 ) + * W := C * V = (C1*V1 + C2*V2) (stored in WORK) + * W := C2 + */ + ic = offsetC + ( (N-K) * strideC2 ); + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + dcopy( M, C, strideC1, ic, work, strideWork1, iw ); + ic += strideC2; + iw += strideWork2; + } + // W := W * V2 + iv = offsetV + ( (N-K) * strideV1 ); + dtrmm( 'right', 'upper', 'no-transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + if ( N > K ) { + // W := W + C1 * V1 + dgemm( 'no-transpose', 'no-transpose', M, K, N-K, 1.0, C, strideC1, strideC2, offsetC, V, strideV1, strideV2, offsetV, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T or W * T**T + dtrmm( 'right', 'upper', trans, 'non-unit', M, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - W * V**T + if ( N > K ) { + // C1 := C1 - W * V1**T + dgemm( 'no-transpose', 'transpose', M, N-K, K, -1.0, work, strideWork1, strideWork2, offsetWork, V, strideV1, strideV2, offsetV, 1.0, C, strideC1, strideC2, offsetC ); + } + // W := W * V2**T + iv = offsetV + ( (N-K) * strideV1 ); + dtrmm( 'right', 'upper', 'transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + + // C2 := C2 - W + o = loopOrder( [ K, M ], [ strideC1, strideC2 ], [ strideWork1, strideWork2 ] ); // eslint-disable-line max-len + sh = o.sh; + sa = o.sx; + sb = o.sy; + + // Extract loop variables for loop interchange + S0 = sh[ 0 ]; + S1 = sh[ 1 ]; + da0 = sa[ 0 ]; + da1 = sa[ 1 ] - ( S0 * sa[ 0 ] ); + db0 = sb[ 0 ]; + db1 = sb[ 1 ] - ( S0 * sb[ 0 ] ); + + // Set pointers to first indexed elements + ia = offsetC + ( (N-K) * strideC2 ); + ib = offsetWork; + + // Iterate over matrix dimensions with optimized loop order + for ( i1 = 0; i1 < S1; i1++ ) { + for ( i0 = 0; i0 < S0; i0++ ) { + C[ ia ] -= work[ ib ]; + ia += da0; + ib += db0; + } + ia += da1; + ib += db1; + } + + return C; +} + + +// EXPORTS // + +module.exports = rightBackwardColumns; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_rows.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_rows.js new file mode 100644 index 000000000000..e10b8b011af6 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_backward_rows.js @@ -0,0 +1,157 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var loopOrder = require( '@stdlib/ndarray/base/unary-loop-interchange-order' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the right, with backward direction and row storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = rightBackwardRows( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -104950.0, -191792.0, -3176.0, -195250.0, -356002.0, -5896.0, -285550.0, -520212.0, -8616.0 ] +*/ +function rightBackwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var da0; + var da1; + var db0; + var db1; + var i0; + var i1; + var sh; + var sa; + var sb; + var S0; + var S1; + var ia; + var ib; + var ic; + var iv; + var iw; + var j; + var o; + + /* Let V = ( V1 V2 ) (V2: last K columns) + * Where V2 is unit lower triangular. + */ + + /* Form C * H or C * H^T where C = ( C1 C2 ) + * W := C * V**T = (C1*V1**T + C2*V2**T) (stored in WORK) + * W := C2 + */ + ic = offsetC + ( (N-K) * strideC2 ); + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + dcopy( M, C, strideC1, ic, work, strideWork1, iw ); + iw += strideWork2; + ic += strideC2; + } + // W := W * V2**T + iv = offsetV + ( (N-K) * strideV2 ); + dtrmm( 'right', 'lower', 'transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + if ( N > K ) { + // W := W + C1 * V1**T + dgemm( 'no-transpose', 'transpose', M, K, N-K, 1.0, C, strideC1, strideC2, offsetC, V, strideV1, strideV2, offsetV, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T or W * T**T + dtrmm( 'right', 'lower', trans, 'non-unit', M, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - W * V + if ( N > K ) { + // C1 := C1 - W * V1 + dgemm( 'no-transpose', 'no-transpose', M, N-K, K, -1.0, work, strideWork1, strideWork2, offsetWork, V, strideV1, strideV2, offsetV, 1.0, C, strideC1, strideC2, offsetC ); + } + // W := W * V2 + iv = offsetV + ( (N-K) * strideV2 ); + dtrmm( 'right', 'lower', 'no-transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, iv, work, strideWork1, strideWork2, offsetWork ); + + // C1 := C1 - W + o = loopOrder( [ K, M ], [ strideC1, strideC2 ], [ strideWork1, strideWork2 ] ); // eslint-disable-line max-len + sh = o.sh; + sa = o.sx; + sb = o.sy; + + // Extract loop variables for loop interchange + S0 = sh[ 0 ]; + S1 = sh[ 1 ]; + da0 = sa[ 0 ]; + da1 = sa[ 1 ] - ( S0 * sa[ 0 ] ); + db0 = sb[ 0 ]; + db1 = sb[ 1 ] - ( S0 * sb[ 0 ] ); + + // Set pointers to first indexed elements + ia = offsetC; + ib = offsetWork; + + // Iterate over matrix dimensions with optimized loop order + for ( i1 = 0; i1 < S1; i1++ ) { + for ( i0 = 0; i0 < S0; i0++ ) { + C[ ia ] -= work[ ib ]; + ia += da0; + ib += db0; + } + ia += da1; + ib += db1; + } + + return C; +} + + +// EXPORTS // + +module.exports = rightBackwardRows; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_columns.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_columns.js new file mode 100644 index 000000000000..0c7574a3b7b9 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_columns.js @@ -0,0 +1,160 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var loopOrder = require( '@stdlib/ndarray/base/unary-loop-interchange-order' ); +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the right, with forward direction and column storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = rightForwardColumns( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -630.0, -14392.0, -114296.0, -1130.0, -25802.0, -202816.0, -1630.0, -37212.0, -291336.0 ] +*/ +function rightForwardColumns( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var da0; + var da1; + var db0; + var db1; + var i0; + var i1; + var sh; + var sa; + var sb; + var S0; + var S1; + var ia; + var ib; + var ic; + var iv; + var iw; + var j; + var o; + + /* Let V = ( V1 ) (first K rows) + * ( V2 ) + * Where V1 is unit lower triangular. + */ + + /* Form C * H or C * H^T where C = ( C1 C2 ) + * W := C * V = (C1*V1 + C2*V2) (stored in WORK) + * W := C1 + */ + ic = offsetC; + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + dcopy( M, C, strideC1, ic, work, strideWork1, iw ); + ic += strideC2; + iw += strideWork2; + } + // W := W * V1 + dtrmm( 'right', 'lower', 'no-transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + if ( N > K ) { + // W := W + C2 * V2 + ic = offsetC + ( K * strideC2 ); + iv = offsetV + ( K * strideV1 ); + dgemm( 'no-transpose', 'no-transpose', M, K, N-K, 1.0, C, strideC1, strideC2, ic, V, strideV1, strideV2, iv, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T or W * T**T + dtrmm( 'right', 'upper', trans, 'non-unit', M, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - W * V**T + if ( N > K ) { + // C2 := C2 - W * V2**T + ic = offsetC + ( K * strideC2 ); + iv = offsetV + ( K * strideV1 ); + dgemm( 'no-transpose', 'transpose', M, N-K, K, -1.0, work, strideWork1, strideWork2, offsetWork, V, strideV1, strideV2, iv, 1.0, C, strideC1, strideC2, ic ); + } + // W := W * V1**T + dtrmm( 'right', 'lower', 'transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + + // C1 := C1 - W + o = loopOrder( [ K, M ], [ strideC2, strideC1 ], [ strideWork2, strideWork1 ] ); // eslint-disable-line max-len + sh = o.sh; + sa = o.sx; + sb = o.sy; + + // Extract loop variables for loop interchange + S0 = sh[ 0 ]; + S1 = sh[ 1 ]; + da0 = sa[ 0 ]; + da1 = sa[ 1 ] - ( S0 * sa[ 0 ] ); + db0 = sb[ 0 ]; + db1 = sb[ 1 ] - ( S0 * sb[ 0 ] ); + + // Set pointers to first indexed elements + ia = offsetC; + ib = offsetWork; + + // Iterate over matrix dimensions with optimized loop order + for ( i1 = 0; i1 < S1; i1++ ) { + for ( i0 = 0; i0 < S0; i0++ ) { + C[ ia ] -= work[ ib ]; + ia += da0; + ib += db0; + } + ia += da1; + ib += db1; + } + + return C; +} + + +// EXPORTS // + +module.exports = rightForwardColumns; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_rows.js b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_rows.js new file mode 100644 index 000000000000..5dd01c15fbf5 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/lib/right_forward_rows.js @@ -0,0 +1,123 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dcopy = require( '@stdlib/blas/base/dcopy' ).ndarray; +var dtrmm = require( './dtrmm.js' ); + + +// MAIN // + +/** +* Applies a real block reflector H or its transpose H^T to a real M by N matrix C from the right, with forward direction and row storage. +* +* @private +* @param {NonNegativeInteger} M - number of rows of the matrix C +* @param {NonNegativeInteger} N - number of columns of the matrix C +* @param {NonNegativeInteger} K - order of the matrix T +* @param {Float64Array} V - input matrix +* @param {integer} strideV1 - stride of the first dimension of V +* @param {integer} strideV2 - stride of the second dimension of V +* @param {integer} offsetV - index offset for V +* @param {Float64Array} T - input matrix +* @param {integer} strideT1 - stride of the first dimension of T +* @param {integer} strideT2 - stride of the second dimension of T +* @param {integer} offsetT - index offset for T +* @param {Float64Array} C - input matrix +* @param {integer} strideC1 - stride of the first dimension of C +* @param {integer} strideC2 - stride of the second dimension of C +* @param {integer} offsetC - index offset for C +* @param {Float64Array} work - work array +* @param {integer} strideWork1 - stride of the first dimension of work +* @param {integer} strideWork2 - stride of the second dimension of work +* @param {integer} offsetWork - index offset for work +* @param {string} trans - specifies whether to apply H or H^T +* @returns {Float64Array} updated matrix C +* +* @example +* var Float64Array = require( '@stdlib/array/float64' ); +* +* var V = new Float64Array( [ 10.0, 40.0, 70.0, 20.0, 50.0, 80.0, 30.0, 60.0, 90.0 ] ); +* var T = new Float64Array( [ 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0 ] ); +* var C = new Float64Array( [ 11.0, 12.0, 13.0, 21.0, 22.0, 23.0, 31.0, 32.0, 33.0 ] ); +* var work = new Float64Array( 9 ); +* +* var result = rightForwardRows( 3, 3, 3, V, 3, 1, 0, T, 3, 1, 0, C, 3, 1, 0, work, 3, 1, 0, 'no-transpose' ); +* // returns [ -1390.0, -58132.0, -266416.0, -2490.0, -104142.0, -473736.0, -3590.0, -150152.0, -681056.0 ] +*/ +function rightForwardRows( M, N, K, V, strideV1, strideV2, offsetV, T, strideT1, strideT2, offsetT, C, strideC1, strideC2, offsetC, work, strideWork1, strideWork2, offsetWork, trans ) { // eslint-disable-line max-params, max-len + var ic; + var iv; + var iw; + var j; + var i; + + /* Let V = ( V1 V2 ) (V1: first K columns) + * Where V1 is unit upper triangular. + */ + + /* Form C * H or C * H^T where C = ( C1 C2 ) + * W := C * V**T = (C1*V1**T + C2*V2**T) (stored in WORK) + * W := C1 + */ + ic = offsetC; + iw = offsetWork; + for ( j = 0; j < K; j++ ) { + dcopy( M, C, strideC1, ic, work, strideWork1, iw ); + ic += strideC2; + iw += strideWork2; + } + // W := W * V1**T + dtrmm( 'right', 'upper', 'transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + if ( N > K ) { + // W := W + C2 * V2**T + ic = offsetC + ( K * strideC2 ); + iv = offsetV + ( K * strideV2 ); + dgemm( 'no-transpose', 'transpose', M, K, N-K, 1.0, C, strideC1, strideC2, ic, V, strideV1, strideV2, iv, 1.0, work, strideWork1, strideWork2, offsetWork ); + } + // W := W * T or W * T**T + dtrmm( 'right', 'upper', trans, 'non-unit', M, K, 1.0, T, strideT1, strideT2, offsetT, work, strideWork1, strideWork2, offsetWork ); + + // C := C - W * V + if ( N > K ) { + // C2 := C2 - W * V2 + ic = offsetC + ( K * strideC2 ); + iv = offsetV + ( K * strideV2 ); + dgemm( 'no-transpose', 'no-transpose', M, N-K, K, -1.0, work, strideWork1, strideWork2, offsetWork, V, strideV1, strideV2, iv, 1.0, C, strideC1, strideC2, ic ); + } + // W := W * V1 + dtrmm( 'right', 'upper', 'no-transpose', 'unit', M, K, 1.0, V, strideV1, strideV2, offsetV, work, strideWork1, strideWork2, offsetWork ); + + // C1 := C1 - W + for ( j = 0; j < K; j++ ) { + for ( i = 0; i < M; i++ ) { + C[ offsetC + ( i * strideC1 ) + ( j * strideC2 ) ] -= work[ offsetWork + ( i * strideWork1 ) + ( j * strideWork2 ) ]; + } + } + + return C; +} + + +// EXPORTS // + +module.exports = rightForwardRows; diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/package.json b/lib/node_modules/@stdlib/lapack/base/dorglq/package.json new file mode 100644 index 000000000000..a06286b9f404 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/package.json @@ -0,0 +1,69 @@ +{ + "name": "@stdlib/lapack/base/dorglq", + "version": "0.0.0", + "description": "LAPACK routine to generate an `M-by-N` real orthogonal matrix `Q` from the elementary reflectors returned by `DGELQF`.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "benchmark": "./benchmark", + "doc": "./docs", + "example": "./examples", + "lib": "./lib", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "lapack", + "dorglq", + "reflector", + "linear", + "algebra", + "subroutines", + "array", + "ndarray", + "matrix", + "float64", + "double", + "float64array" + ] +} diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked.json b/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked.json new file mode 100644 index 000000000000..4307b6cd9234 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked.json @@ -0,0 +1,319 @@ +{ + "order": "column-major", + + "M": 130, + "N": 131, + "K": 129, + + "A": [ + -8.115579575588253, 0.026039422541380086, 0.0362748011966193, 0.045116585528862885, 0.08024384477264812, 0.008182236585568048, -0.024508111308305935, 0.03194691953176698, 0.01030656851983025, -0.0038780243860476737, -0.009741556259423856, -0.05380807707176816, -0.05805169966546797, -0.02913378016052387, -0.041645403768728606, -0.04429781758318396, -0.0633350020061243, 0.36475151286331264, 0.11209126090820594, -0.3001981230893006, 0.006321832478375977, 0.03887253105857402, 0.07234984583978699, 0.5351067172892279, -0.11277763287680653, -0.5480807677020367, 0.06862509842272857, 0.016303461110709516, -0.012786892523021232, -0.07310510985094876, 0.03767157127847004, 0.04663993231941599, -0.07935750094262589, -0.053561919366990396, -0.05080792189848965, -0.0800112857695292, 0.2123476595561642, 0.13183099093251321, -0.13701743970014502, 0.015205000529947749, 0.05100466009155247, 0.10777965065303241, -6.381223272583739, -0.19766336451371203, 6.318521666998428, 0.07647069089631364, 0.010366419429449825, -0.039586365516463995, -0.3037408773652259, 0.15988402309129424, 0.3428808594786441, -0.12350517078330914, -0.06189027477399456, -0.043144859464955665, -0.03627926813871252, 0.016067590091119466, 0.02927816009655393, 0.00871192513643615, 0.037151359882745844, 0.06010954666559598, 0.11994177864327493, -0.6137784602116547, -0.1781824906196764, 0.562544252397482, 0.05260944395716882, -0.004077725132546436, -0.06652900328319844, -0.9609430817011229, 0.20649379729109463, 1.0283404792095787, -0.12192842924541453, -0.05640063071124857, -0.023152848932208987, 0.07212939323943679, -0.12096210182318795, -0.1407397775203323, 0.0805197368293119, 0.050436378473610044, 0.05622722655410428, 0.08967467326506029, -0.12753978457068815, -0.06882174023091459, 0.1370975635073658, 0.021042439907110633, -0.013973731057204564, -0.06878903200156772, 2.460492980163777, 0.14310982429064645, -2.428809543747543, -0.08659767196475032, -0.04335052012976637, -0.008976337313715527, 0.18889144975595584, -0.13362075362680456, -0.26520743430134874, 0.07632284340030782, 0.04728352413631709, 0.04429104819847862, 0.03963894724606436, 0.04771885126573827, 0.03920193351909956, 0.015510969660834872, 0.005142005137147576, -0.011616142913852046, -0.04025784676960398, 0.13465483236158085, 0.021646605734053526, -0.17277184796600886, -0.05157037051372404, -0.03646112291138193, -0.0191529753958653, 0.14857913791725763, -0.036563939584540545, -0.17069575145611227, 0.036202106735003015, 0.03751843016727385, 0.041570153895260864, 0.04542528420673228, 0.033650108016488045, 0.024694755988058342, 0.02251314660402648, 0.00856843137897123, -0.004054204512218718, -0.010921235689297037, -0.05821064178381495, -0.05595848743829346, -0.023207797219824744, -0.040183780970840965, -0.04147069415465632, -0.0513006784587513, + 0.07956913244703721, 8.097379993583054, -0.0714325894436989, -0.1169256171734441, -0.05367666280692984, -0.055887316787425534, -0.04014053718151267, 0.01413072763659877, -0.02816512617996625, -0.0005538112881722235, 0.05784708284126866, 0.06811866243632525, 0.08331495814537493, 0.10001486947993021, 0.0737305644035885, 0.10535881077697407, -0.3209702718062716, -0.05003880489919643, -0.06505894051005368, -0.11771386512084264, 0.26189261490479276, -0.07897350556654459, -0.5755019792330831, 0.0387978646298911, 0.013365879218333099, 0.046014280399119256, 0.5327518399307661, -0.05601613564007801, 0.056970435380224727, -0.02470551906491425, 0.026403516748149128, 0.04162963856629087, 0.007192741386783608, 0.13063022475732766, 0.13403681008642715, -0.1616455136031305, -0.05261903870198348, -0.07592347117857667, -0.1469258494876362, 0.08615720499122304, -0.12342509008336022, 6.344099746015589, 0.11060636924800604, 0.06347817564671177, 0.10114606599241216, -6.343358738720368, -0.03700056234549304, 0.2941611443218817, -0.11959127230335764, -0.039742105140008865, -0.037563247692046664, -0.2812249701306425, 0.1672236167554101, 0.09852893223067216, 0.02725479422476179, 0.006965173761267374, -0.024929361622815005, -0.06660684190285557, -0.06909562492088911, -0.1576395186322217, 0.5545276268762909, 0.06034539192219712, 0.05192235760228525, 0.12404626262417362, -0.5598909110674938, 0.013963957856153071, 0.9674037198445387, -0.13718919224354909, -0.06821291854180844, -0.08806235677876977, -0.973732274331948, 0.1455887334876147, -0.015689659767905706, 0.14420690940340675, 0.06915358017836282, 0.04098585148920697, 0.09024742991393586, -0.1372165068341783, -0.14060677839212554, 0.07118446498421926, -0.020489661496782163, -0.009357945065049056, 0.04744581244386692, -0.12346823215341796, 0.04789884330482991, -2.4517968081530164, -0.08240024808563984, -0.0322148579988375, -0.04882864229182349, 2.4779949429633685, 0.09592822626397046, -0.14583917985620765, 0.1423101565463346, 0.07691720695145232, 0.05827954212048381, 0.21816827578772835, -0.12103703563769455, -0.08726026780140483, -0.0923441701799782, -0.07917153616365213, -0.06349800051345139, -0.04449348552731047, -0.003920116292860376, 0.03523212261406494, -0.12318576932293879, 0.01822005064174459, 0.03813307618639916, 0.030546617994970715, 0.20986907975222055, 0.07099955400682978, -0.11230841839418815, 0.05536434533512535, 0.0222839043166084, 0.0009115667149096618, 0.13336023102390626, -0.07806771186186301, -0.08326381837482472, -0.0755354040311349, -0.07038585269264941, -0.05636889952573443, -0.03341034674984977, -0.01852798442808623, 0.0023711298921692547, 0.062439912410011705, 0.06721723408854696, 0.08178138458142536, 0.09643298796749822, 0.06495308438709377, 0.09182343967405782, -0.7396394188338771, + -0.020970299463942486, -0.04196792275449775, 8.056711303519904, -0.08115777120916279, -0.09352003317256108, -0.08640095919362534, -0.06677040450981253, -0.03653456191618709, 0.02382192209199374, 0.025939801694225273, 0.05846347329122059, 0.08830047409689068, 0.11123836199291415, 0.12918730858278277, 0.1650645553570358, -0.29231493064371517, -0.009723444315748425, -0.0224894986500781, -0.056562042884986674, -0.10387368221732385, -0.18986325950064276, -0.27665678956255857, 0.028926879288738272, -0.028153005596839642, -0.027777063166665394, -0.000478068187434344, 0.06176998449213855, 0.6087320765658936, -0.09363034390344716, 0.010346071644303678, 0.05493532650058869, 0.08077093831150642, 0.09359075408252926, 0.08896782688381727, -0.08136556137776574, 0.000682004564770522, -0.026124089078665147, -0.06878115211513192, -0.12794374106913164, -0.2559820836464133, 6.513166487057219, 0.13098729593596192, 0.04149410154048683, 0.014963805998006618, 0.025165649889633435, 0.10536787959872146, -6.0695461055177695, -0.1954197501770929, -0.04956088166661665, 0.0021587202762424207, 0.021039680957513296, 0.004878115361816704, -0.2447380593621692, 0.15275054266957533, 0.06979974606224959, 0.0184889465117819, -0.030723404004616484, -0.08613909985003998, -0.18851295335780383, 0.5472705397689485, 0.025619981586587515, -0.005641656721957156, 0.00693502404327806, 0.054283086691406635, 0.1883047016469679, 0.40555951207343177, -0.18510456898809513, -0.06067210074242796, -0.019702667050381928, -0.01648793156819639, -0.06994559601580419, -1.0501532192369618, 0.26795242520113827, 0.1268782503225948, 0.0652176421553563, 0.01930385953110947, -0.015462578367919644, -0.0008103586739692803, -0.010774263442437704, -0.071582820704847, -0.06587310581106141, -0.04197459577666863, 0.004251610853226201, 0.11623062759012798, -2.6020070240946933, -0.11748848260179656, -0.029647888685921275, 0.011436617166046936, 0.022254958197706065, -0.0255227937227126, 2.300997561540253, 0.2296168016410507, 0.12095215872957754, 0.06804207953013419, 0.030955390964014895, 0.014692589601516981, 0.17830161219240656, -0.17053579233318697, -0.12804317837222418, -0.10922329917883089, -0.08533601820563219, -0.052455131803084254, -0.004173856039641155, -0.1391973283388669, 0.01265671796077783, 0.04965181431357424, 0.07093504406424056, 0.07617178809823189, 0.051528268956877454, 0.06189067612707677, 0.1071616891287781, 0.05882765355810282, 0.020019598539366856, -0.01473772535226267, -0.040490015581992916, 0.08753212829490797, -0.11316190491718026, -0.10929919431144142, -0.09922308477757091, -0.07987439320019407, -0.052887384716601926, -0.022708050452894146, 0.04008143166152167, 0.0593401352751024, 0.08695522206811634, 0.10882283020933814, 0.12474653956568882, 0.14927708695682484, -0.719160560917699, -0.0003879224196992881, + -0.10222973475726425, -0.08012970056538148, -0.04689057730888974, 8.06806168430825, -0.11410795110865835, -0.10464452909579225, -0.0829632794710472, -0.0569737014384669, 0.017434162588263025, 0.08275230964386326, 0.05667705392730754, 0.10189226726491563, 0.13454095531463778, 0.17670311989815246, -0.23594887281748345, 0.05007504593354198, 0.004535225874587989, -0.016502898588888704, -0.061614986051364284, -0.12925057021574748, -0.6404431177288403, -0.08258943171985589, 0.2674611572369956, -0.03743568525204888, -0.04190555289965481, -0.011774265278511664, 0.078145109125348, 0.02460168065246593, 0.561485627384595, -0.014080794051650414, 0.06482353767595139, 0.10705579806144883, 0.16247039911107652, -0.11747209827920735, -0.04375398315709522, 0.05326981308924694, -0.015754887168151974, -0.07850117547955937, -0.1784840009768756, 6.290316004505707, 0.005954033290573535, 0.24224643649589156, 0.03590160402162079, 0.0035141699898905143, 0.019697368703153195, 0.26687498224926853, -0.060748329707265514, -6.403014677822993, -0.07422785728032422, 0.011008494690424614, 0.04437524117048319, 0.05604130719941913, -0.009048657818492123, -0.272397446645116, 0.1440060663515102, 0.03212403500598837, -0.04282412117643364, -0.15285651263942657, 0.5288989702203284, -0.005352673655724449, -0.010067406706754767, -0.027455685902117666, -0.0030072335190388655, 0.07178329205712053, 1.0157262056502454, -0.010171755064123739, -0.6170199876458043, -0.06828680501126283, -0.009301266321561474, -0.0020459493984774646, -0.09774923381329909, 0.05176199131954662, -0.90605227871442, 0.1895791523559212, 0.07734850846924757, 0.008986562457421132, -0.07121968404532164, 0.11013432923407274, 0.06739897074896416, -0.14735631119968706, -0.09312192029805033, -0.052289420098221684, 0.02701577490682161, -2.4712802515181544, -0.05209945690111362, -0.19204862358768515, -0.024068668237169577, 0.024639731574268242, 0.03447651019305242, -0.14212852900084882, 0.11137065294098503, 2.5637320102690278, 0.15599508904670378, 0.07535565664301924, 0.024751707071666837, -0.00778617447091412, -0.03514139601095678, 0.13667444666444062, -0.18777443824412898, -0.13455244278455533, -0.09846743240870515, -0.04524177189528977, -0.1874931142253313, -0.026708903601112444, 0.03299092431833428, 0.06543318296915468, 0.08784707160619265, 0.09203579110201626, -0.07058861860891608, 0.08800048346867517, 0.23226958655045266, 0.07206710802745309, 0.02191213060052294, -0.02136575120601214, -0.059862376320692356, -0.07576001129975982, 0.060851200326289545, -0.13717250955401095, -0.11909764793127292, -0.09598942151597367, -0.06930845118719081, 0.005592674598260738, 0.0342747439462342, 0.06489319182211063, 0.10124952019702371, 0.1302837797597025, 0.16207905578200466, -0.6579271489793859, 0.05654712295011938, 0.005594707505437224, + -0.08949962337133394, 0.09942345505907851, 0.050975310793904986, -0.051437061962463504, -8.062331075751784, 0.11105331619274994, 0.09515899754894513, 0.02919569662193866, -0.0019954974236198186, -0.048506113558730246, -0.12641920049636945, -0.10328118217125615, -0.1678671067891533, 0.2302215929330027, -0.06056380544068174, -0.06156062376128779, -0.04335854471096984, 0.03465035405511574, 0.08942602259107735, 0.5989895665532817, 0.02433305525618168, 0.09633996959490332, 0.1480093490884119, -0.2537761673095832, 0.021579631929304344, -0.03669644323074417, 0.04874617562980266, -0.030162620988386735, -0.10664405068874305, -0.6163289790762322, -0.03825327711628823, -0.14694928473437852, 0.103551225624885, -0.02916587182837249, -0.017111986832530235, 0.06001766480997528, -0.0008660255952690488, 0.12576965691052666, -6.343718250945507, -0.10949119221153714, -0.010251649178892541, 0.08839307108080086, -0.20449941444314515, -0.04065726589318941, -0.2454425478697101, 0.14558454767858842, 0.05833141752544957, -0.034684164688362995, 6.347185875614305, 0.031992298224788496, -0.0461938915623199, -0.03069147530179739, -0.02871027520103253, 0.01913053703248646, 0.309805458076751, -0.08285654302335113, 0.09020414863825221, -0.5721195655889943, -0.03274514674915374, 0.02925253902126218, 0.058546992681092536, 0.007542133198258583, -0.037397135527196756, -0.9593329565317145, 0.12291189385006318, 0.007471354983986572, -0.10446980725621602, 0.56624378858404, 0.0506761792784538, 0.09061202711021576, -0.11944719413004523, -0.04807598514269418, 0.030698081799524907, 0.9556680031868635, -0.13366593125237247, 0.013175014572204116, -0.1344108698739409, 0.0025628025073551886, 0.02617682852630021, -0.04539324098224917, 0.13415410290172491, 0.02430248738046581, 2.5295139931464417, 0.1516435195134952, 0.05790928501552883, -0.04073319847935834, 0.13791514987582887, 0.0009452785104249184, 0.13973404498026354, -0.1709488932117481, -0.1179012555537311, -0.047893490112809856, -2.5203901777023505, -0.1129958038224923, -0.03669728225311275, 0.02515253164179143, 0.04984295622349899, 0.05162020901851927, -0.1296734609250329, 0.17753840805000098, 0.09480606153917326, 0.23378169415597222, 0.06858272229173601, 0.015228276651545358, -0.02620261005084168, -0.07143327304781746, -0.08685321120981104, 0.058687759300454, -0.12823921272911476, -0.10013237114820595, -0.053738404940902096, -0.19570349417293303, -0.030764585227750274, 0.023295259450949568, 0.05686272400724812, 0.0870367735285528, 0.09943416306968034, -0.05068445662328169, 0.13437921725019264, 0.10888718181612933, 0.03774373800255182, 0.012279626080112238, -0.0305091309832769, -0.07641891482672414, -0.10858844551770352, -0.15499275989501432, 0.652369381735076, -0.06650836006980987, -0.06811980347026023, -0.05155622403807847, + 0.005516028993540706, -0.010705624971106671, -0.0189565302991932, -0.024352957446220756, 0.025289118400790626, -8.06705577311086, 0.05727599883516493, 0.03619828509377038, -0.0018867958500912718, -0.04567650819818664, -0.09504817180251912, -0.19231561870523406, 0.2612945932299665, -0.0519077939009257, -0.0670586778975546, -0.053828621892963446, -0.022349176336481036, 0.029546206415033027, 0.571700687376633, -0.015611461295189866, 0.055299932832397314, 0.08972352206871959, 0.10971610090504924, 0.13219601492006927, -0.33216170391144983, 0.05853913471683758, 0.011205994010169529, -0.033283039281816196, -0.08531545686078568, -0.1586478322207111, -0.698077572160908, 0.1722309741352419, -0.013790268292473096, -0.030920543844135895, -0.012857266504000764, 0.03521119351050195, 0.1699443533923497, -6.419314226331067, -0.15964548715898064, -0.06804154447512634, -0.015135666007748627, 0.027274724196869937, 0.08363831948356404, -0.44615383734875613, 0.12462815028114205, 0.0794740264626107, 0.050144302112166916, 0.007059224497596883, -0.07916160879069856, 6.308284071510552, 0.04563483956313252, -0.018880280745613764, -0.020580519301038436, 0.00887895648727538, 0.08001661996207937, 0.4318882883739824, -0.6973943941070802, -0.09502224252156818, -0.014323253446700435, 0.02043021259576544, 0.026697177538253535, -0.006285425767229472, -0.9542229329633024, 0.15750858612053675, 0.06306086292213102, 0.008269954367906118, -0.042802970671970225, -0.1221691809166498, 0.6471632138867229, -0.07080743632809594, -0.05506743645796369, -0.03698448138558852, 0.002170698745918742, 0.08607373312206457, 1.0455731580736294, -0.2589497308962901, -0.055349270938423234, 0.0018200495122094873, 0.02449664970329224, 0.013088357026660336, -0.11412912820275711, 2.6098774092602666, 0.2018913333755603, 0.11777338788614355, 0.058792057737624304, 0.003924943516939727, -0.06385293995443864, 0.30209404307137955, -0.13552371017092535, -0.1200613793945633, -0.10744438551022151, -0.0763180104548048, -0.0040730368164770825, -2.4802901487951265, -0.06305865725707238, 0.005352616269176491, 0.041613535268121504, 0.05669460135766469, 0.041541034682580635, -0.16929054450610537, 0.3127043913332912, 0.11802375753773398, 0.061588642540323146, 0.01567537685783571, -0.02321423677379786, -0.04761486471101972, 0.07502722761103542, -0.12307152727007098, -0.11187023643647542, -0.09394765286301976, -0.06367412151921603, -0.012407618806803855, -0.15041217647257765, 0.004736195931349219, 0.050461631938753304, 0.08051140414298807, 0.09706673871111599, 0.0967003273199446, -0.060824247738709813, 0.07611694698996274, 0.051863271538195505, 0.012811272528800016, -0.029860138381374968, -0.07417882168080701, -0.13011776848982964, 0.6736345785588342, -0.05974278553896377, -0.07314286293566499, -0.0614964631353776, -0.03443882675316237, + 0.09546026974022506, -0.09001488737191221, -0.016088379036919575, 0.08274484474219371, -0.10811949489229175, -0.00182974912271975, -8.096700682394221, 0.025839840304030415, -0.00744161659270276, -0.04791947220570869, -0.110458542472055, 0.26987995339266924, -0.07771631229656406, -0.03564315939249085, -0.04452592086382301, -0.027351372150885567, 0.019180220910394064, 0.5125999411040283, -0.07906885343825976, 0.027662574731947887, 0.04921479931634176, 0.06777171193610876, 0.07282355419570807, 0.03048493296752848, 0.17073242734792093, -0.283586346396979, -0.023507055279007618, -0.043546996091778034, -0.08434494767334, -0.16503751430033248, 0.05631112129567961, -0.5639097091592519, 0.03765219786882869, 0.0027317648294570285, 0.02141976485438657, 0.09644482189302081, -6.360995310039501, -0.07243353046664258, -0.13834603981207594, -0.06453451117870723, -0.03029680754489905, -0.02005057693437154, -0.21403156392027245, 0.2510029623655464, -0.12147882923203898, 0.028467538343820542, 0.02773106266482861, 0.0056194175942374525, -0.03490554143184599, -0.10724743114892787, 6.312124302849853, 0.055685162647931996, 0.0187940727987298, 0.04008777639496834, 0.12976929714014063, -0.5353878020908359, 0.25034372767201635, -0.1381210267892371, -0.04157929925433512, -0.01696975538612744, -0.044451351746277123, -0.931606877646303, 0.1942970293896293, 0.0674340004755869, 0.04221858171814741, 0.012680364330569821, -0.00904926119903382, 0.03845869580723271, -0.2470938677229218, 0.5000655969329495, 0.012048538542970388, -0.004529087904273088, 0.018291474473026592, 0.09060835655956845, -0.04594143614275073, 0.9751858500780687, -0.12182294681560202, -0.03330667749513905, -0.011405349003059784, -0.044137794385239126, 2.480379856182274, 0.045857708301929034, 0.19459187208942574, 0.10776891338961755, 0.0631307177426288, 0.03553938975668647, 0.16783244013566567, -0.20159793119098446, 0.04296338264605204, -0.07085730324111317, -0.07740746181320057, -0.06285550993789402, -0.03458669486004079, 0.062255886898648694, -2.428872221442577, -0.04647732340963717, 0.011853748558046107, 0.03101174814736063, 0.01681445958365735, 0.17708213846048104, -0.14767283726579805, 0.13907552982115826, 0.06442839447969095, 0.022948251487359905, -0.005546201206189205, 0.12315335845173969, -0.08397445104436185, -0.09439684667476128, -0.08763610860804372, -0.07445266757064939, -0.051969413369396644, -0.01811872166721995, 0.024026801403704168, -0.12283965398370078, 0.027912182429826626, 0.05968390290776959, 0.07678925391931485, 0.08599522118811476, 0.0386233371432152, -0.11798642191364911, 0.0506301527117855, 0.009595542160925064, -0.030529053478082935, -0.08271515053398115, 0.7063804746692783, -0.039129249030163626, -0.051671341412577565, -0.054005272635653245, -0.03886868223711826, -0.0027500570339311636, + 0.09763877872533565, 0.09424877171094094, 0.015087907537782835, -0.10847304625696494, -0.06960559907025367, -0.03765630505599001, 0.10301524196727248, 8.118608005341423, 0.02010242491734776, 0.07167457042069825, -0.3169321471881037, -0.0037824049483454747, 0.02763946248132121, 0.06981547319435022, -0.004472506364378459, -0.028709956309193485, -0.5062351812633621, 0.09129992464780262, 0.033140348352620363, 0.01425477586638646, -0.03963154535232727, -0.031634628837500456, 0.01211450066548135, -0.11045615594722946, -0.07939877001179252, -0.08933781599285412, 0.33737579608659574, 0.07407601945378095, 0.12229497126222069, -0.131486305959289, 0.02844747396532299, 0.07648952424732536, 0.5460068301208371, -0.08985234203550074, -0.1116951655891476, 6.358089949182233, 0.12136670604315086, 0.0560027141581787, -0.023740614526536308, 0.09982891637167393, 0.06908845045791268, 0.27089200060263574, -0.14744432971830637, -0.11100157116584919, -0.15444130235549003, 0.17315660134357058, 0.01630588722758486, 0.014243070933616764, 0.02197959910516288, 0.05368262966631254, 0.12170697357890892, -6.33251643549726, -0.11604165460514115, -0.13911868371188696, 0.5745633042849582, 0.05113141648151054, -0.02540114048698694, -0.3038535778181685, 0.1401731095108083, 0.10618231452093224, 0.9725666925112989, -0.1593642716824143, -0.0925468140519567, -0.07795371900319215, -0.01661180349399949, -0.024752440432723732, -0.09388067957715374, 0.13331460769933678, 0.1097543732646197, 0.16548448440099717, -0.5492730417177452, -0.06729602420380759, -0.08360289405534105, 0.114085467757849, -0.01651364913598702, -0.08808700541943826, -0.995215233234852, 0.13456076931204142, 0.10171136194975594, -2.4493832487671865, -0.10628609210191164, -0.05517498528742848, 0.04963291075296161, -0.13871984740500776, -0.08382663339871799, -0.22627265408037034, 0.10235001176275527, 0.09137316716612753, 0.13623281969046977, -0.08610248655867869, 0.025502035109237098, 0.035055166747437874, -0.003613788568284426, -0.025633143015203808, -0.08832342365522686, 2.415672988226321, 0.057123803364778514, 0.028279431283911693, -0.1658856373152583, -0.03825862047238726, -0.0028735639577504024, 0.2016997627760072, -0.09968726349375079, -0.04294332500728998, -0.16896566039678418, 0.04209826148718743, 0.04609348992258622, 0.04758904753253457, 0.056073922894752104, 0.04490013792728065, 0.02838335337348319, 0.015376973319403409, -0.009885878119776148, -0.04753689137960271, 0.11360453620225844, -0.023597041659171536, -0.047826142480917766, -0.017972161244449482, -0.028827602960068366, -0.013282049934099316, 0.1602091517738877, -0.00718580001826985, 0.04291430058671142, -0.7486006390608783, -0.005974414543593043, 0.02119064967541129, 0.03288126369940819, 0.01687164055586965, -0.005105229625768204, -0.2021584669780742, + 0.010048644834670726, 0.020393373126775385, -0.030606811364651224, 0.036406934545988937, 0.045283693676299704, -0.06880150242160672, 0.07231218814324884, 0.06806376381538001, -8.150594438085447, 0.343930019146225, 0.04090786149009762, 0.01858784361220367, 0.012002878357881386, 0.01291742898980719, 0.0035017338386622576, 0.5358591244046575, -0.08435880682169472, -0.04021616561393293, -0.025981721740681696, -0.021082373485992956, -0.03206638089373803, -0.04045792714544594, 0.06886751952818682, 0.03594920717915451, 0.02803912882934767, 0.025768774791831928, 0.04058463210743046, -0.41395518175465446, 0.14211662935955438, 0.013941486618323728, -0.0013003519434507116, -0.008551622308102191, -0.02121318669909189, -0.4358428849603624, -6.265662331327944, -0.07006680757938147, -0.03506036613016858, -0.024582330052355827, -0.017178136326772675, 0.01984886455123902, -0.3386164644755314, 0.09960355943962518, 0.053673135297654384, 0.0493798761860228, 0.05854652308665731, 0.11013828341091836, -0.21426915642012945, -0.04366734131321959, -0.032672419823457366, -0.035704044945808255, -0.04948453653537688, -0.0970084598112102, 6.426811590628165, -0.4975460691730058, -0.0387242433041064, -0.011988736219215479, 0.0015510045127153926, 0.02191434404874759, 0.23921501350151042, -1.0908246131712254, 0.10286034088221141, 0.05299566354749541, 0.04180602997334454, 0.040939062366855905, 0.060042637687300116, 0.09725435341364314, -0.09962796643599628, -0.053470220674593616, -0.05021677891464941, -0.06072283683481357, -0.11293763946849841, 0.6345358757579975, -0.06534676937196615, 0.00987071611836371, 0.01989530163206088, 0.03327413307542304, 0.06976356103703463, 0.9240227405183676, 2.317703636477656, 0.03481291913820439, 0.016798628816617422, 0.01031803941819498, -0.0009385564005104374, -0.07436000603175585, 0.30003378272817227, -0.05522375123935597, -0.032678242084133946, -0.03578060597199029, -0.04739149337827042, -0.09081601255807104, 0.128303255570409, 0.041173786952904634, 0.025138727702704422, 0.029252352129097603, 0.0447274059839361, 0.09113445558171973, -2.445877998574949, 0.0775210261669394, -0.0077902290145288045, -0.008983506625892479, -0.015324653628200319, -0.03560757777179329, -0.22304535951938453, 0.24443614811594908, 0.005427276015523064, -0.00037433864261565697, -0.0052039099541955625, -0.007217010677659508, -0.004281292394125336, -0.009511216857273408, -0.007974801324078573, -0.00024162865329713235, 0.007980636087286275, 0.019108663156976347, 0.04361823053800773, -0.12526399358573503, -0.03555877722482104, -0.009638038199488164, -0.007607038934412613, -0.013099555019118414, -0.029275964382167063, -0.21195062037099965, 0.7835541936331571, 0.04159250643125256, 0.01900949876162561, 0.012399517446658015, 0.013880525516373421, 0.02636709762321643, 0.2233517605168257, -0.07563430319261688, + -0.08678016677529052, -0.11031420574870478, 0.0449135850878602, 0.06062561869001348, 0.10190167077438685, -0.08394091939447608, 0.0030650139421965687, -0.09557271996490631, -0.0919280079230741, -8.08622565719822, 0.04653199835395938, 0.0503413753775368, 0.060265781376631966, 0.08685816793162465, 0.5487767872650446, -0.08642422916084258, -0.016485489531271325, -0.020640476395149543, -0.029420650926540892, -0.04503463579404804, -0.10357849627650814, 0.003260242675504843, 0.010815444657512385, -0.01247727171182977, -0.016874281600555485, -0.02007339573362965, -0.048047803308330694, 0.240475645953163, -0.27304446699114515, 0.009509841323501633, 0.034161112714881245, 0.05432434214435644, 0.10363431851862581, -6.447470759408736, -0.9050989249027889, 0.07991849005502161, 0.025833506104417592, 0.0029096683660594994, -0.029568530159508888, -0.25671303491438424, 0.17506864938096267, -0.008602388823179097, 0.003382646403123024, 0.0030104761924697465, 0.007140214508111503, 0.023219772235214986, 0.0738522664332465, -0.23646057279385527, -0.05923255064970773, -0.030095507665314547, -0.012838029980881904, 0.01565113563954769, -0.42732306610471926, 6.2757560355405495, 0.06608418251202272, 0.013732508470003402, -0.0156297573130465, -0.0638096625851079, -0.9248019990582927, 0.403129275795613, -0.05728779489563551, -0.013061454513696391, 0.002913901316954237, 0.025619015398416933, 0.12518710627009577, -0.06056898526170251, -0.0553542650137967, -0.018539987002626046, -0.00629934765790649, 0.00027152894010906703, 0.017468613257670462, -0.21923029675683203, 0.5619933797309038, 0.0700778744078221, 0.0276734706329963, 0.0027328423877495678, -0.039031096183989034, 2.5842459167262835, 1.1737562299537243, -0.12395501554025712, -0.061307616607466864, -0.039382378089705794, -0.014368913278334778, 0.15775279424652466, -0.20193198869183093, 0.03802468274120696, 0.01037097085509009, 0.010145124874361033, 0.008119949421818928, -0.00966329935907101, -0.018453759051771268, 0.19199085595372656, 0.06846180799824886, 0.045800496095626864, 0.03398187717579537, 0.028334908702964734, 0.11766887900983763, -2.441092648142086, -0.09913259530164387, -0.062418504277886394, -0.04854394096533987, -0.03776451594090435, 0.09957079446029204, -0.2517994699674738, 0.07526731418114252, 0.0428088473269953, 0.038757353217096224, 0.03827117932408142, 0.03968880196048952, 0.03265393339693545, 0.018532435436369843, 0.015555445507188348, 0.009372746840949131, 0.004765965598582125, 0.009923725220148172, -0.021395447798107203, -0.18597383802754103, -0.062130013687482, -0.052432686859993916, -0.05120698349759367, -0.06603920288003585, 0.7434671267502343, -0.09300551058778217, 0.0532925856457831, 0.04923208962964848, 0.055153659042012415, 0.07297381823392024, 0.25738094583271237, -0.044768306953422266, -0.017386113565772354, + -0.10382369325929312, 0.06358031781486255, -0.04618015560624862, -0.0994642063622858, 0.021475575399959854, -0.08437249087068677, -0.08580940133836398, -0.056085059907100665, 0.10756834188892095, 0.05686158209122751, 8.0821942317052, -0.08656532698904018, -0.12315662460873394, -0.5933576511679342, 0.023050401650672514, -0.0038154980400741945, 0.022782703667395765, 0.005258011276877417, 0.0388457855914337, 0.11049718689297483, 0.0061896863045902695, 0.05276975811153828, 0.07797368730302778, 0.0412900206439748, 0.05978322418719162, 0.08980059933665524, -0.18197983902148218, -0.08087052497494199, -0.1190009518119961, 0.2531875286437655, -0.06391121463573635, -0.1443717828934531, 6.379057757524487, 0.13416903597929586, 0.11844762449325319, 0.8130697443116963, -0.11672839691633208, -0.020557382211628034, 0.23580090344138405, -0.13523068102017743, -0.06427895605067904, -0.07998771922781289, 0.05899385146408964, 0.03859599229947608, 0.03213013288412714, 0.029136704232311794, 0.0033568515763415796, -0.06659259928006656, 0.23209882372891116, 0.03556948538642046, -0.035134729473090626, 0.3446609521918541, 0.0691108566921097, 0.0963741109439386, -6.328653875682515, -0.06187888495011376, 0.05107178513410915, 0.9603264282565577, -0.1357635185545611, -0.08547169866428994, -0.2902522272179834, 0.1065281461057368, 0.029038975943243783, -0.08659481137584607, 0.09912997107865018, 0.02445836407830948, -0.021760282493513805, 0.007933982546959872, -0.03179715342662248, -0.07143826854625823, 0.10760329104026428, 0.04209437533518823, 0.10485441481609192, -0.5776082475801144, -0.052090017706124536, 0.04449075089666793, -2.520445119536298, -0.12388531852348261, -0.11817554285458515, -1.0829677697463314, 0.17785782861892419, 0.08452003086830573, -0.1198849679513887, 0.14835100822361214, 0.09457506365796753, 0.13822801926122685, -0.080252041908554, -0.053645983549811205, -0.047226681956467204, -0.08015710645246832, -0.05573785602382786, -0.0021638913318924313, -0.21046116632031264, -0.0717890601460961, -0.028537075054968053, -0.060233465188009094, -0.009520703910551986, -0.03060212289334263, 2.493412914426885, 0.13655737452418226, 0.08325183758806454, -0.08777321391942303, 0.07194458415932736, 0.05852060783791113, 0.21722626143387713, -0.11289227351245568, -0.08487273994999975, -0.08425347950158635, -0.07376301169202837, -0.06650050492182225, -0.05547348901781746, -0.027591780184298087, -0.012068252410971536, -0.00016511717606992882, 0.06029494580871697, 0.05102111765936679, 0.04149085093131441, 0.22669345175545652, 0.10393107420693082, 0.10366136062371417, -0.7240725225767266, -0.024150319203558313, -0.02279429888811313, 0.08702295128657234, -0.08783652564060054, -0.1079481985250843, -0.2962520531739346, 0.007336603306000389, -0.0200484394482775, -0.015562584253692918, + -0.02541219496819449, 0.048016793358183756, 0.08174354070018061, 0.09903493137669858, -0.09222362683845366, -0.13824034560173012, -0.09036417350119184, 0.11585144952920329, -0.10168297734264334, -0.1048211794703612, 0.013765726485859456, 8.04547613625061, -0.6231285506458235, -0.016306205667841384, -0.04877731552371223, -0.040752086997776604, -0.014989943579573728, 0.0412115904953243, 0.08693670122013031, 0.0005735340353540952, 0.06004354819728053, 0.08808369717644049, 0.10573665082463068, 0.1260632156191085, 0.11504369876893744, -0.14246215576631943, -0.040178226075313406, -0.06130435207399487, -0.10164289402353444, -0.17293790376733237, 0.14329407117644488, 6.397793995868296, 0.12556589665462348, 0.05416005415014147, 0.04337519750016716, 0.08601835422515569, 0.8214865491429539, 0.12243507183256219, -0.1850137214337484, -0.08612459628370414, -0.04074069643885275, -0.014344805060563015, -0.037890524746096665, 0.09475472576635258, 0.07537100975807176, 0.0591081193148425, 0.03654220337362479, -0.001222605955755851, -0.08948234432709856, 0.16782230939488618, 0.3689006221256699, 0.05156189969660141, 0.014332678950306627, 0.013623747046106187, 0.06949646334173429, -6.292751614742526, 0.8871089086443518, -0.14436593298000933, -0.05038798571852876, -0.023618362325206976, -0.03781310667025006, -0.2749895257816698, 0.02309462553340247, 0.1540458569137756, 0.06376925803839606, 0.017029485876972117, -0.023147328661103583, -0.07237767569035272, -0.07027736041717669, 0.07606906096701144, -0.011402493987434537, -0.00648412471144777, 0.026840937422508482, 0.1204920291095587, -0.5080239846230248, -2.581310266685049, -0.13149529070157517, -0.05653396573947278, -0.03442412682787488, -0.06989581948595575, -1.063675670071708, 0.019115855338770527, 0.2189096473423272, 0.13370693264659272, 0.08560535306221995, 0.05325577072256504, 0.09498160481091777, -0.11814125995585534, -0.12649593288414196, -0.11353609403391274, -0.10150293800693366, -0.07465376729686807, -0.006598328278910215, -0.19445982383976368, -0.0986471864203052, -0.010081322863808528, 0.026849419766960536, 0.044065103442800235, 0.019317556860553364, 2.5264319600995524, 0.0006801194752417139, 0.11754975522831135, 0.07094743492156486, 0.037959400834034596, 0.02203483463547873, 0.17537827418043447, -0.15955322794868262, -0.1213525399678422, -0.1119591898063535, -0.09737079704399698, -0.07619016214648455, -0.05236871555411826, -0.0185328315856349, 0.05323129887336986, 0.06135233756961844, 0.08102197351813101, 0.09245913389423155, 0.08483181042612298, 0.2797342199055849, -0.6738705930300237, 0.009961409735174093, -0.003907799665939238, -0.03033730699208048, -0.057193343999535795, 0.027974055447716917, -0.3310011903675417, -0.029275427340832216, -0.05928082180162675, -0.05331353936957539, -0.03365896272621771, + 0.07636315818232069, -0.10584024721218588, -0.10361545849668469, -0.027280755389776073, -0.08773011601425988, -0.09381877058140659, -0.1108918638124188, -0.005204884230354484, 0.06807257657038154, 0.11173674277819826, -0.07047872205362103, -0.07809107726875153, 8.07776295135453, -0.08200308665405076, -0.0829265933181782, -0.0624383291802566, -0.023127317049226326, 0.0691854587865175, 0.008882344228516192, 0.03687535613256421, 0.08615722979891632, 0.1186527417404134, 0.14301044273658348, 0.1873395930595419, -0.06795980192181894, -0.023939036003819636, -0.025193816809910063, -0.06514801848646223, -0.1220757055038017, -0.22104095910154375, 6.27286715934065, 0.836210013906239, 0.10981648634907679, 0.038840383085186114, 0.025063190268443503, 0.06098200423721267, 0.3779609011200649, 0.662449717277619, -0.20992457710388301, -0.09649881849915609, -0.03904482290174687, 3.558939156567131E-05, 0.019078699436760882, 0.00536226572224352, 0.1264017015697788, 0.0865066112738554, 0.05675498533833645, 0.013215292058196715, -0.07013528736402061, 0.2541908003841436, 0.2778647289432964, 0.04340523623938808, -0.002644057223071844, -0.0111531236628718, 0.025311027505035777, 0.5958326823071712, -6.403055787218646, -0.12836254459069607, -0.03605577177322772, -0.004675230701022937, -0.01214919962379285, -0.13855946566726263, -0.1477165863661175, 0.18261349981296826, 0.07634532232453167, 0.01734163992978688, -0.03509080215131655, -0.10572883171918179, 0.030531235036560078, -0.0054673328070434235, -0.03813746120148831, -0.02678993612510361, 0.011375570387000322, 0.10143567092338947, -2.4331063273692513, -0.8526632323388648, -0.13707563825882219, -0.046184666490671475, -0.011044275093663791, -0.02461810767897954, -0.2976252893812134, -0.9239185545182821, 0.2856269445691794, 0.16509903870953235, 0.0981367917961603, 0.04635519455541668, 0.021255749727985274, 0.013947198013329665, -0.1923357368035472, -0.15516067798135652, -0.13892205141541403, -0.11048622569173183, -0.05980892578687591, -0.04657397809678354, -0.18198712707408315, -0.012460770916989272, 0.04507228925050599, 0.07925293906542236, 0.08934265747331649, 0.05246466569935593, 2.550916559797357, 0.16618040997285957, 0.08827222664347256, 0.037112010953475605, -0.0014253801879913208, -0.013380525444769087, 0.12735320602498476, -0.19495842301774147, -0.15215700095535734, -0.12793609602604, -0.09920487611948017, -0.07046886830361321, 0.01159260260808992, 0.046350532772536646, 0.07801384482869081, 0.10799617495454639, 0.13019967193843784, 0.15158317038649555, -0.6711348869545988, 0.14096526985521673, 0.043494886394840004, 0.0033902923764225212, -0.040273499286461234, -0.092436990724037, -0.29769540067129796, 0.08372932183369775, -0.0969406776574313, -0.09347353869183395, -0.07623464919772904, -0.045402030289223294, + 0.10793057586675722, 0.046972378223934214, 0.09125628855456541, -0.07872593288655008, 0.07129932886921847, -0.13283797597128058, -0.011908762480970763, -0.13072944951306323, 0.0065335703585380454, -0.10791672135405188, -0.05659753812595938, -0.06664013273367413, 0.04177226683102746, 8.047186974701429, -0.09022900580987292, -0.06116777330204343, 0.023442410131196523, -0.06050709722506298, 0.0182465263895637, 0.09233155415334882, 0.08978514433156976, 0.13324964735944578, 0.19092959317031002, -0.0643699090114932, 0.05266817601244056, 0.05168696436102138, -0.04723084900510066, -0.0816437893773593, -0.17659103559480482, 6.363385930630638, 0.0493283993386362, -0.09742991729769407, 0.7444077846630566, 0.07818429702123991, 0.05479379919216809, 0.31374409388786784, -0.12726965235717325, 0.0005296564594925446, 0.7687446758722001, -0.1565976535220701, -0.053132474778735284, -0.005587296319685353, 0.04231663398248198, 0.05017446571927053, 0.007717894574488793, 0.11843785946451063, 0.05943848247743888, -0.01309172167675264, 0.36334290087568855, 0.022210917642583594, -0.09183264726817131, 0.2213686445012416, 0.018108402653401412, 0.00977615040086377, 0.5151507444983123, -0.10021842797398783, 0.007750396468695492, -6.309409998081736, -0.08032510679814547, -0.024269052171494443, -0.10484908924966896, 0.1260292561400128, 0.030924978281322457, -0.23923057202840278, 0.13128895777213512, 0.02307696871342657, -0.06302395137540184, 0.0755098374255716, -0.042853712659186916, -0.08393030203919749, -0.018311713374933536, -0.0185189045275167, 0.04710983840784935, -2.5592200224351145, -0.07771317251281418, 0.07917033789433958, -0.7604784120115963, -0.08858620530830191, -0.03563210705660502, -0.23773635450569128, 0.13996729668511865, 0.031105707434040397, -1.0016214309320919, 0.2393150735228674, 0.11935259952363964, 0.06304201769128526, -0.03662952001461167, -0.05360616554750386, -0.0012707035097204167, -0.20760974187537806, -0.15497391036167396, -0.1167840502176325, -0.14696660834102737, -0.0435864512282928, 0.05245443139721839, -0.12643303442071763, 0.03694150762453685, 0.08516171192737482, 0.1067137795222507, 0.10053831911365674, 0.04646373596227593, 2.5195204063295207, 0.12659883286820878, 0.046413191814859145, 0.0017106260658057426, -0.04944089496879622, -0.056931680067784374, 0.11057481040175854, -0.20100685657591533, -0.14554124743397379, -0.11567048638727462, -0.030406002352027787, -0.0063152069173457726, 0.033167727124000235, 0.08783035572300735, 0.12005277865043662, 0.15858713428460414, -0.6387265785242675, 0.05707444198794498, 0.03959791355176412, 0.13192637883962527, 0.006942985949308533, -0.056089587148758, -0.27536743312597234, -0.016823034093612743, -0.06819962374590677, 0.026272158885951913, -0.10777387061246957, -0.08052235115717776, -0.030473384701887485, + 0.04026711984664956, 0.07649638505388588, -0.10171946067836789, 0.09957907722227868, 0.09625601564224098, -0.11137203611094945, 0.06628230503622876, -0.013390274367800985, -0.03783763429052774, 0.10065650264722695, 0.10631912041992468, -0.12680809458329098, 0.10879411473405065, -0.10814059390885894, 8.057854510439787, -0.004643338686410536, -0.09847968084898623, -0.02726268607017618, 0.022964647318142295, 0.07129932302152286, 0.13966020013253888, 0.162437139070022, -0.0732896914338863, 0.056823685334177365, 0.05500257241365253, 0.029301734479180497, -0.004901975431289396, -0.1587965665758726, 6.394691490836114, 0.09955982937871667, 0.016862905626313915, -0.03935978057943669, -0.12768750841084034, 0.7595842337889211, 0.36653231059334446, -0.1327182793706535, -0.062308899195633205, -0.01844217754491939, 0.05380611730120288, 0.8105052115193235, -0.12318099000859956, -0.010842848853193914, 0.02559165060101737, 0.044686546799933446, 0.04264074124276318, -0.018872134914252436, 0.048804336789940006, 0.4090599671111601, 0.07926935361932136, 0.01828094445230459, -0.03328668115718064, -0.11657582356408164, 0.233488535151689, 0.5436597365204737, -0.11495864282398127, -0.070688796674233, -0.03076050973307376, 0.048544690350773134, -6.289507448983768, -0.18030339192525568, 0.1136016013989588, 0.06415951726204372, 0.03394394095500064, -0.019935678981543137, -0.2916840109699245, 0.0509459526308596, 0.13330122058177624, -0.0004683171113998852, -0.03883011709925277, -0.05573393782804548, -0.0643901710791952, 0.05539358026101937, -2.585593942524876, -0.134191939036918, -0.05616114806556555, 0.011313129545576811, 0.1261669594222955, -0.7492014829818607, -0.31494039525958917, 0.12843766620614538, 0.08989737489777228, 0.05872235321946129, -0.01516740402674338, -1.0451036619440592, 0.20444735422620008, 0.036561755584497035, -0.011762703301126165, -0.05178284852075021, -0.06951739461144246, -0.0018889754064458364, -0.18591552868087313, -0.19174221049662182, -0.10081022791337085, -0.04809696814515374, 0.011319420588010609, 0.10154082055464164, -0.08601978723614034, 0.06470689771431037, 0.09668059183860733, 0.10088435392679626, 0.07874280861317381, 0.010170367365969823, 2.4748490769704086, 0.09126617427492012, -0.0016037777129402908, -0.04188809480013278, -0.06571051756706048, -0.0635165760444894, 0.11624729401283763, -0.18912918476034857, -0.07713832923426889, -0.05174722086917327, -0.008782054845396292, 0.035328413830395866, 0.07549505018419234, 0.1387734911506422, -0.6473542653807108, 0.06388993490212702, 0.06943433968908974, 0.04854678326179285, 0.003346159590329467, 0.07237076092001127, -0.22806056782725526, 0.01885737385612618, -0.04695409603276368, -0.0739375961324633, -0.07926680993754542, 0.038703898609053544, -0.06230399489788063, -0.08935491349085511, + -0.06441774045913008, -0.10700191631661887, 0.1071913818660106, -0.05377873785617371, 0.002584405433907655, -0.055029836860780605, 0.1074961662226672, 0.13717293698885852, 0.10218715207879228, -0.01552823798818151, 0.037630013790470714, -0.12995162253621656, 0.14910180228941064, -0.09681540566214078, -0.04227175131899349, 8.03924229774863, -0.05445784508531304, -0.014671643118837063, 0.025580752034263687, 0.06957324156866536, 0.1426763941936004, -0.06894274338564688, 0.02892446773491031, 0.045669217629800696, 0.03287834822612026, -0.001971097979778458, -0.0823394236492091, 6.488217161313367, 0.04968768600366741, 0.038763610186778374, 0.010651503768040776, -0.012876632803206306, -0.023867149352049255, 0.15283075372971522, 0.5694162439645285, -0.008544702096038304, -0.02311274690259202, -0.008857444169670603, 0.02177729941833151, 0.07899209979533452, 0.8561530150775658, -0.09209202551542739, -0.00882160722796943, 0.01755666964038849, 0.017673571935180876, -0.027011448463067356, 0.3309158188143988, 0.13714869579810163, 0.06281832628317707, 0.0236023883242647, -0.006000310892108396, -0.020267126854528472, 0.40740910790063456, 0.10319665278423296, -0.041736376169853845, -0.04471930335565899, -0.02964607789698437, -0.0030173645083396705, 0.015605644805582797, -6.163924444236691, -0.012392713951933698, 0.02071465005969375, 0.012926687578207474, -0.018021955294214465, -0.09757568505138758, -0.1824536594008213, 0.11242699546892498, 0.01890982796098928, -0.012908544404364397, -0.018628956229839122, 0.018723748099567394, -2.638123435977942, -0.09869762258904557, -0.07789513357319044, -0.044568219819552085, -0.009411544715289988, 0.0223077510575429, -0.09231434135813221, -0.583081507977849, 0.0116693431419152, 0.04615762471377377, 0.04305790003963683, 0.016767949702697904, -0.039327230120900114, -1.1328439419048715, 0.1294692346065628, 0.02163206116834293, -0.02711472618355637, -0.051779633988003004, -0.04763791269899578, -0.03655884076235022, -0.168135842467396, -0.0918175885054614, -0.04543996423310459, 0.0008013410923951025, 0.05093791527491498, 0.1304735379595544, -0.07547637477729585, 0.0578412949958913, 0.07384935409628163, 0.06383932199723868, 0.03069426902007777, -0.051772788946952364, 2.431415991167693, 0.0477926364303054, -0.01740252522697089, -0.04780903836778805, -0.05964681043544828, -0.05273067757782579, 0.18728736904065352, -0.12451974046934111, -0.05505083661235077, -0.010024976407584263, 0.033202230070248695, 0.08554974053450615, -0.6951528463640314, 0.05086897884634367, 0.061114979490584864, 0.05467438478251907, 0.032689244922177174, -0.011245284460994875, -0.23297448043972102, 0.15016463620542542, 0.0005184285732990901, -0.03782283616836318, -0.05727675633319171, -0.06083810777129994, -0.03414459863062114, 0.030711697378856928, -0.06258575396457655, + -0.10987722726441643, 0.006740834124801482, -0.1041630751343584, -0.022036753743931797, -0.10799347169949239, -0.004623543374331746, 0.08825525263428709, -0.025693531390143232, -0.12566312993398362, -0.04286232101596544, -0.12239281132263183, -0.06643846195308487, 0.08666482594500613, 0.0901184043014958, -0.10313580356926229, -0.10314314400859306, 8.08075663400026, -0.0017592255789740108, 0.031983377625557585, 0.09705253415762971, -0.1371147833194646, 0.009064823360637853, 0.04976914027700974, 0.005365721363694842, -0.010917258435349964, -0.07830299086114634, 6.457281246153268, 0.16513763493332775, 0.14661074195502716, -0.03855134915838804, 0.009082137647566935, 0.025839978066750535, 0.26582605572613355, -0.2102477162975499, -0.21675123863080556, 0.6751756817308813, 0.04439035329464852, 0.01692185187355455, 0.01650257255758103, 0.06942827458993328, 0.11451142972518158, 0.8531726972869935, -0.0996081955756134, -0.03543954378554093, -0.051620922659756596, 0.3653637995918544, 0.06317036482023697, -0.013461438168482054, 0.08163261339263461, 0.03852662840893761, 0.03632031118376111, 0.5149306584939378, -0.14673692766219826, -0.1751870011827506, 0.1720234639750422, -0.0011282687819839377, -0.017142425666424987, -0.06217064788663741, 0.1075791803617433, 0.1441529772477883, -6.224482814546882, -0.06302351130429232, -0.030932988552238805, -0.06453779132427473, 0.08946789932999166, -0.03691713005021097, -0.29432049556636075, 0.09958861312880585, 0.03874123595351242, 0.06098999837934149, -2.5790766537588734, -0.15081115777933207, -0.1363047208848417, -0.009815948473476332, -0.03138938172937322, -0.033433149916891836, -0.2262945878178812, 0.18516885747846723, 0.22877277222099113, -0.6615762036517241, -0.03449826352882379, 0.004582060016987355, 0.018869522051500248, -0.07325180502675421, -0.12023331850055081, -1.1409947143568278, 0.11363729353539645, 0.021237944242019746, -0.005687365112269749, -0.08630344287915226, -0.030357476138113904, 0.06156291796461355, -0.11298404990624267, -0.04308948791121203, -0.0057606096163588805, 0.030128716805230882, 0.061772290244848094, 0.12265622083283045, -0.09722375181714749, 0.021376600066527196, 0.026242839694650688, 0.0020990534690543683, -0.00730550457170831, -0.07955538339399332, 2.4034981745276016, 0.041453020470399615, -0.01172635186513138, -0.037346671295151956, 0.011276730918835076, 0.012537927222804224, 0.20735417439176962, -0.08283048094116784, -0.013081417071567847, 0.040275749439870646, -0.7329561132147511, -0.0063100299907436, 0.012074048541456994, 0.0419630828906703, 0.024741360575495808, -0.004778273832623581, -0.20264690080317516, 0.0649365067190566, -0.003971073766372513, 0.09305068631201108, -0.010094973860780065, -0.025119402043880856, -0.012649375905873783, -0.06859829071268908, -0.03420330084613821, 0.0967548517924578, + -0.05431609804759356, 0.09146474211922814, 0.1299172556821729, 0.1156744877305256, -0.042493737500480085, -0.03873163582864775, 0.0814188188390429, -0.06524607316155073, 0.09800897168690537, 0.15053396893162382, -0.0739246456101132, -0.020459719152790122, 0.040248752210694495, 0.09343893616880991, 0.10987665707427666, 0.10391277751533524, 0.10017566112393107, -8.104094093643265, -0.06917099816865446, 0.1751942598899786, 0.03629203441183526, 0.01805417269335252, 0.0149264809809041, 0.007067936716206091, 0.10560882211418454, -6.430287784296631, -0.126896931846175, -0.08085372512273467, -0.07546285205870834, -0.11664497563950904, 0.023409815774504072, -0.28685346491843544, 0.16169319967086082, 0.1028696119110829, 0.10570236506990538, 0.16771434689410736, -0.7129794920510677, -0.06948449161201764, -0.06416685840302605, -0.05101147535393635, -0.06109958746192945, -0.10158378908817378, -0.8248711243047235, 0.16815845118951095, -0.31159795637216925, -0.03620039544799192, -0.018809220893600487, -0.007014052250546299, 0.038501541510940485, -0.09370543840153278, -0.5576399760014455, 0.09315184389182196, 0.0686090995641585, 0.07707185628656221, 0.1351010299298955, -0.19926318980771107, 0.03329121076127217, -0.09360697032160747, -0.06540189402111041, -0.07768162099112169, -0.13400871022066868, 6.257751653611741, 0.1399477640683945, -0.07685111141765966, 0.003950528109499363, 0.021153621267106404, 0.04826703197579704, 0.27444705861522267, -0.17280076248430676, 2.5147474672323957, 0.09146824162925227, 0.062465606118269346, 0.060351860847266875, 0.08907511380081634, -0.0017500139995660913, 0.24729044435092717, -0.13041975854311372, -0.09378435953600384, -0.1078737275390114, -0.186344227829304, 0.7011390338125314, 0.05876930473475572, 0.08540135634514034, 0.061176541840608056, 0.07454903011628056, 0.12888092201603885, 1.1389562395480122, -0.13467648215243244, 0.012943806480223086, -0.012369180209629405, -0.012170986743427065, -0.025186200179379226, -0.11118481301668437, 0.07257793043727712, 0.013688947948583774, -0.004599906460844516, -0.021171498015274376, -0.03949643286949861, -0.08628108118624744, 0.1449332014666388, 0.04074770753181223, 0.011894847268290154, 0.025295237862337616, 0.04712138272223218, 0.10160640348676342, -2.4020552303482, -0.05208871927655723, -0.059577996185513626, -0.028039320719642102, -0.030206950620322748, -0.053356630895247004, -0.2494305727969064, 0.03229894057460925, 0.7774300346490567, 0.04708433798644668, 0.022034469282524838, 0.015512970520826896, 0.024818611314201156, 0.017882478715236627, 0.21012541506931126, -0.0725805859215003, -0.027055696436867088, -0.007052779359387973, 0.015153457623847899, -0.10571032725064655, -0.034892102367804156, 0.03238894607260173, 0.01204721328969878, 0.0024823143335118703, -0.012778364454063773, + 0.0511830012226669, -0.08777352964573379, -0.12848566343669526, -0.12107888239355336, 0.057307650084990024, 0.06132581413781059, -0.05775612419497915, 0.047930299409897015, -0.09136302061556652, -0.15762750356654714, 0.10342411085830344, 0.06647341126452419, 0.015783384737670866, -0.04435166695634622, -0.08271570293352191, -0.11703855360563599, -0.13767395102318314, -0.00598058547099756, -7.999481156790514, 0.06374322103712748, 0.056144745888305925, 0.060938118692600796, 0.07588389141563767, 0.12750051489816205, -6.519247737101121, -0.04410209762411155, -0.0345466670945435, -0.03650879166496077, -0.050455325086932165, -0.09086770663056765, -0.3997552821779804, 0.21632086541686635, 0.08225643185485887, 0.05636786021757245, 0.05296523108205664, 0.06927471781759276, 0.15093753377010644, -0.7695006452318573, -0.10473608237376669, -0.05591291632017614, -0.03770503766283628, -0.029829926109700478, -0.02644242680360731, -1.1888290507660337, 0.08399979799006885, 0.03680375326919133, 0.0205685041492929, 0.006335178185886803, -0.019439056732137305, -0.48595333731078805, 0.04128558641484131, 0.026919045319740053, 0.022756207109774773, 0.02770014313469016, 0.04978910738009512, 0.17121502358034424, -0.3144121292906934, -0.09486613197964, -0.06364786318238036, -0.05486965347123951, -0.06201684175750688, -0.11350591016818878, 6.229062051829894, 0.08089098688256802, 0.03443877419256055, 0.015204929358411556, 7.796491130473981E-06, -0.02741361625119043, 2.8665636511695762, -0.042729600135717916, -0.010244899904019306, 2.6983263174962246E-05, 0.014501277911299182, 0.04860530227418336, 0.3088881710377426, -0.17005925262459376, -0.07324598850952307, -0.052445965881180424, -0.05040150731313886, -0.06948746328052302, -0.17051097009025185, 0.8009605965906402, 0.13992863466315159, 0.08707557694033427, 0.06972442725225386, 0.06897764047986865, 0.09948482861722197, 1.189736041599463, -0.15486180746089018, -0.0867919696993138, -0.06878187828386953, -0.062197517120138324, -0.06579473932377744, -0.14319350808708242, 0.06289281947539416, 0.023071261325616654, 0.01827557874512381, 0.016111568094360817, 0.008801061714823866, -0.02569533280841596, 0.18518044302267744, 0.06893378747255252, 0.05214129098703174, 0.04731481578354267, 0.055330579646465705, 0.11358185035169988, -2.5052772651664736, -0.11859194435368836, -0.07925327258069259, -0.06945396960514913, -0.07214881647204574, -0.10327728774266132, 0.5213271835719557, 0.11444785182586648, 0.06481615119436612, 0.05680952118228044, 0.0595955117557265, 0.07624672743656102, 0.2629952291161164, -0.06213144623531541, -0.0197824983220779, -0.01445914910698709, -0.01602997339174836, -0.01983233446547311, -0.029315917485231324, -0.0994922281129319, -0.036282658104638155, -0.034475627575204726, -0.035513389904518966, -0.04195624014425202, + 0.10962468521131104, -0.01378727794957735, 0.10114740333025736, 0.03528129980342134, 0.10056046841950439, 0.02557591592026703, -0.07654168929501348, 0.05303759983498886, 0.1046203048288083, 0.0669267121024162, 0.09313447450913019, 0.09731459740832507, -0.040698818233531595, -0.12566525554613694, 0.03883482184902275, 0.1366119316088912, 0.03242357725110662, 0.1629317586009898, -0.031763099636024965, 8.05714134519021, -0.08914185091897253, -0.11438871338206635, -0.17370513592166612, 6.402090102177027, 0.12751991000036267, 0.20575772177025736, -0.043762386207643056, 0.005753043251336076, 0.05333602569792739, 0.33416237821583294, -0.09506286479416015, 0.030557913842537143, -0.1136213241811298, -0.034362554356420855, -0.02202009159521745, -0.039214021480212656, -0.00599776113242545, -0.10135876426238238, 0.7583374577712954, 0.09234528207941858, 0.025867787486906102, -0.03537770737483936, 0.4019747955902164, 0.12713411862233215, 0.8370300355869089, -0.13990039781952912, -0.06160078984223982, -0.008099133322334584, 0.5142368996814489, -0.10556142634224408, -0.09142964547801347, 0.027266782054563343, 0.012637605910012575, 0.0030524898308463833, -0.06590477427021953, 0.0646404364217662, -0.038024371818724645, 0.28517149393550156, 0.08561148242322275, 0.049534360004366396, 0.036854587299313346, 0.011716121909338462, 0.06746706071206787, -6.2953182987043075, -0.09210089013041411, -0.013718072545398474, 0.0594241987485985, -2.5766422892828373, -0.14667866854593248, -0.3706563999593858, 0.13220626427253146, 0.05699164073058623, 0.010624606779055523, -0.2345755255953558, 0.11380838840242968, 0.011182087739397828, 0.09429813559036748, 0.031710749530578286, 0.016167484141778043, 0.03784769929351439, -0.03630907653104121, 0.07483475814974416, -0.8002781807603531, -0.14962480478342166, -0.08301882932278859, -0.04282174286810647, -0.13512770510673636, -0.09650052444895241, -1.079828162630228, 0.21134320669304918, 0.137122392018766, 0.10994951355622096, 0.09603509714109648, 0.07635582256647278, 0.13164760765050942, -0.08547359515533604, -0.0599505243797927, -0.06585445034919679, -0.07518684821292276, -0.05013376297662109, -0.006029453796668749, -0.22509561099095443, -0.09148102446680051, -0.06129779866470142, -0.06107479903696289, 0.07647301062544623, -0.005023588748381158, 2.509589723009654, 0.1605194950004073, 0.12185300399932775, 0.12038636972868089, -0.6887203759904033, 0.012020948261635578, 0.17807871870296438, -0.12494990119023053, -0.1028578001469016, -0.11787741878707136, -0.29720858335391775, -0.0007982906139515356, -0.034525491412914944, 0.005235673421398523, 0.00927778364794607, 0.02739682445642988, 0.06019714488473893, 0.015351978441015351, 0.03256415446184768, 0.16534569319254172, 0.08365374914331891, 0.078899535143312, 0.10084772075027115, + 0.06727793917681373, 0.10915259863068655, -0.10332837951670519, 0.04193744415357591, -0.019250739079705734, 0.07393353584641567, -0.11498042279428318, -0.12264946647046127, -0.07404079041222668, -0.023686895028856673, -0.06573692239445864, 0.13971852803387594, -0.1262577000546314, 0.04055563742318345, 0.09855812400098399, -0.07245262299792317, 0.13189179781074536, 0.08557337414964512, 0.015885323070095353, 0.09952215020153186, -8.028031159956498, 0.20255551908804215, -6.3866694086428355, -0.10242066382053283, -0.0421564282242729, -0.04011936790929105, -0.17721991839582282, 0.027279058229487063, -0.29031038701398115, 0.1326946119357013, 0.038349223986747255, -0.009324188814663577, -0.07897835046164087, 0.07925998220940145, 0.020371331305990337, -0.04178578863441795, -0.011475600586595025, 0.023104713425795093, 0.11256391852000008, -0.7308155567796104, -0.019139979823373787, -0.39913018310300297, -0.06660826872218792, -0.04215252360932242, -0.0746997248691732, -0.8150098518197549, 0.12793566889822172, -0.46065621846947447, 0.13212538652056272, 0.06721843134124772, 0.03712861724634198, 0.05178164886485548, -0.053471814453373734, 0.02544986402576077, -0.1180634782870339, -0.06896925823240652, -0.03313554251442419, 0.04725084356295234, -0.2718463816739938, -0.06759847040746692, 0.0011032872776375324, 0.010002284897013998, 0.00946647369078557, -0.037489848182859054, 6.2973866912830845, 0.017467736763342567, 2.599560701004787, 0.12328656222644574, 0.06074636024424784, 0.05886998242426078, 0.3247475901788151, -0.14355310695410836, 0.16353604598485982, -0.17328865150094042, -0.0883928263938254, -0.036989740286692774, 0.030700146436057674, -0.05794914603611512, -0.01891201941183107, 0.09033916357956473, 0.05938449544012518, 0.02972911913716325, -0.06390097338455913, 0.7989434813390703, 0.12292062264710768, 0.14934382363944423, 0.03968198173934412, 0.017004352459662808, 0.044639025730319415, 1.0332020930468309, -0.25335485876376884, -0.17147149911037096, -0.12076994295931964, -0.08399688036219144, -0.0548339783166783, -0.0950133568018191, 0.13358895313381758, 0.11954542458612927, 0.10774572027677898, 0.10764092807265566, 0.08905456606909129, 0.028880898041879655, 0.23500852280830464, 0.1054707596325496, -0.07097198931406948, -0.04871487069952418, -0.06293930058254271, -0.043975937668404685, -2.561369193737232, -0.21209473287704245, 0.6414812566185872, -0.026349019011248753, -0.014532963355789241, -0.002905540449131494, -0.140625583696181, 0.18660087352993537, 0.3416405081965027, 0.04295453558230411, 0.06708803619414194, 0.05845998665742991, 0.045320333107419564, -0.018163468773520153, -0.05360789584099612, -0.02304309856937016, -0.06351105512039645, -0.08088132139468662, -0.0804762709984046, -0.2105407097770805, -0.14951651476576874, 0.21886277209574867, + -0.03692383386873323, -0.07098153683477737, 0.09652911025250706, -0.09821601329371359, -0.10024584630996042, 0.12369714348581314, -0.08737647792393592, -0.01676956819509459, 0.0018273460118372448, -0.06863465609586054, -0.07661254764440051, 0.10798583289332872, -0.11423237373317968, 0.13677119333424798, -0.0613561123116454, 0.12317136455509836, -0.024919616810321926, -0.0238371934997725, -0.0009545817340737655, -0.05462861159125542, -0.1306731818131984, -10.79877890480415, -0.12149324802081413, -0.03815032224624182, -0.011952778656787899, -0.011099565654260735, -0.043828577251557976, -0.34302272002940803, 0.1553778647306041, 0.06161008188793425, 0.021703651773173238, -0.007667425702118369, -0.033003349590007836, -0.06818838138944738, 0.011762594150496297, -0.022874004493037142, -0.0184515017511747, 0.0003145348296569872, 0.0367855472516424, 0.13015941757012628, -0.8210649998627035, -0.09415621814324404, -0.0310035201257447, -0.011322584317318585, -0.018001771019861446, -0.072636255832429, -0.9926383832757941, 0.18248359569832984, 0.08981487436227964, 0.04834184946682685, 0.0211330447217416, 0.008592955825358128, 0.06621340082541682, -0.12499368512794026, -0.08241460537054908, -0.06524943094117047, -0.04466085968687272, -0.014995773663459833, 0.045425363420998566, -0.16529607047684058, -0.015507094158249024, 0.016641655017792578, 0.029640059067297497, 0.02508932814718172, -0.01678131039120745, 6.604193585899299, 0.17603643716684225, 0.07041731560206554, 0.027408741839320183, 0.012646136416567755, 0.03839489741713176, 0.4037036771315599, -0.22595416864918, -0.11972027377115635, -0.07295441797132007, -0.03499653792316282, -0.00040628497377082073, 0.031642436619391257, 0.03585601941773919, 0.0590746261006021, 0.06299127036269392, 0.05238814775335782, 0.022585473945743686, -0.058541129915498424, 0.6447757450241272, 0.09073546851071002, 0.02399081934882108, -0.008616209419710641, -0.018650866882613415, 0.012267555979919686, 0.7395308514357588, -0.1984945694123949, -0.12005586253569744, -0.07487281520605693, -0.03614146489394632, -0.005765887545752246, -0.024762778475193592, 0.1318915228294012, 0.11433626921150375, 0.11030322785789387, 0.09796481725442739, 0.07448320724405882, 0.03459178650387684, 0.07765354857381379, -0.0037942179739742787, -0.04341926268047336, -0.07329226481536177, -0.09248806674100507, -0.09844287959877523, -1.339256752574703, -0.08133334484725491, -0.04435026330774716, -0.012997168841404005, 0.01653040726079269, 0.04252704689640563, 0.07521359953088647, 0.0869385478248037, 0.08415689719116992, 0.0755088803461652, 0.05860816096831428, 0.034312817630637704, 0.0005199279217250607, -0.010904642632475148, -0.04272120760455933, -0.06655669938422293, -0.08377357497141391, -0.09501941472740494, -0.11123356971565124, 0.06305563394649277, -0.01231233568710105, + -0.10717800433835108, -0.05341098578799133, -0.08517636979910732, 0.0883875538676624, -0.056390295441731304, 0.13745225655259202, -0.01170063106134877, 0.12367224591805646, 0.025297895697013635, 0.08858500615592389, 0.0886595451033116, 0.031132935272003986, -0.0641401214980921, 0.01789887698616397, 0.13983134663331384, -0.016599517491946627, -0.09237622196633727, -0.12043038112640744, -0.07512220555914947, -0.147784474635944, -0.05455878183851727, -0.1328623825685961, -4.919981364105803, 0.01254439673331359, 0.017322494338792738, -0.0030958659890570894, -0.25052116338597585, 0.19176539741484644, 0.22700641004350902, -0.008029267962873288, 0.003437228207742671, 0.003341285638314817, 0.06932466376779173, -0.2751689370499424, -0.2609576039409207, 0.11051904189867423, -0.01415722114881024, -0.027998724368384798, -0.048905522846177996, 0.4258446091002061, 0.2012769866059677, -0.6842542710618313, -0.032376013549287985, 0.017797365802108334, 0.03770597998324832, 0.1938241671045341, -0.05713318032374243, -0.6361567282062208, 0.10935446304756477, 0.04119029707045141, 0.0136540654327868, 0.03814638240672963, -0.10291701409771847, -0.1006895704660906, -0.062390128336094586, -0.07006535781973314, -0.07472289780023667, -0.13662515099577532, 0.4032455236216018, 0.27848127975457404, -0.3282945698440579, 0.00015678995809043084, 0.06127229933071382, 0.13689989387033696, -4.0406347861926575, -0.23084320750705356, 6.960916859442426, 0.07690706877498588, 0.0007715694449309529, -0.030389760094884144, -0.04802395806534132, -0.020168491371212793, 0.15857731092567123, -0.13486344534276895, -0.07277153950681699, -0.049006904310783805, -0.0979687696133435, 0.246363969461031, 0.25207820752180543, -0.05449046331755025, 0.06427631701556391, 0.0958634130217062, 0.17334837015591353, -0.8893426576469003, -0.34387852117870527, 1.0196739602664706, 0.06116356007950419, -0.03779334303090187, -0.12228503790815765, -1.4691728066442495, 0.2800448557181363, 1.8818229150181174, -0.23383345188928506, -0.08884612389360702, -0.012206056053057357, 0.14730252467297641, -0.11559574814501317, -0.16690490659311305, 0.20432403763499218, 0.13934329718356409, 0.1348144321984756, 0.1997137441959992, -0.3626893403923111, -0.2500139347414774, 0.28498250564918126, -0.021892716818612712, -0.10660915723377629, -0.23969755927701802, 4.4275857573646995, 0.3388414627809183, -4.9242578520629126, -0.12569996618727086, -0.01711330265527833, 0.07206931008885564, 0.6131465065678001, -0.2727833066923444, -0.6658251235151759, 0.222994817588399, 0.10923480008629627, 0.06375484739788895, -0.006772590209643825, 0.10496257369152018, 0.06651886795394835, -0.09856500238047951, -0.08480100941699309, -0.10913762604069949, -0.182810183016622, 0.5603527490450054, 0.16521643344318684, -0.4954196961149304, + -0.0788932118959799, 0.10575220215011397, 0.09587975900431871, 0.012605988269004704, 0.10032357977585435, 0.09666871116104277, 0.09146949332881474, 0.030836262750174093, -0.08924091074946558, -0.12097552544171897, 0.0446874647519036, 0.03677993612153955, -0.09717137473174883, -0.07759206796690664, -0.08000631475378453, 0.011532458457511285, 0.1135341116214338, -0.12169782293977043, -0.06344909859788822, -0.004164308308852134, 0.12987732032344443, 0.11843071987552706, -0.08848760888026866, 4.902511798276385, -0.01518726270460502, 0.2289974817158531, -0.20591192985310358, -0.135897191828676, -0.11649153861375999, -0.20298369117219128, 0.014580619104963777, -0.07657321437547837, 0.2567460838582727, 0.16494906255558262, 0.17422893846140036, 0.26410587794360046, -0.09105485793999968, 0.06381904411665629, -0.3817668345698305, -0.09929952072231574, -0.11887171000468255, -0.20307718783333362, 0.6551044399060746, -0.010772456046793222, -0.22112876129633707, -0.016399333227512414, -0.0091628678941153, 0.03983985252289135, 0.6366379747879579, -0.10191403335708538, -0.07014585156681623, 0.092981666113229, 0.09446608038218907, 0.11013997927960051, 0.1345451327036087, 0.10873806228691307, 0.18804166997075134, -0.33465758965271203, -0.12717658280138153, -0.15465299265318344, -0.28217453896350975, 0.275580648436702, -0.1248413715772625, 4.003118079337852, 0.1425659695035304, 0.09213667478425192, 0.13856834562351156, -6.955363943185495, -0.03416168657955643, 0.05362382885401784, 0.06895877291406549, 0.07391699106016192, 0.05007539555837648, -0.13898330096153677, 0.1521765374030138, 0.1560260184946386, -0.19688927160056102, -0.14360277482728628, -0.17965397899004343, -0.2897165304096354, -0.013609147328455307, -0.21584572562221982, 0.8042326620407536, 0.156688080558674, 0.1687768915381468, 0.31108727699901945, -0.9752572322370561, 0.057923117239113364, 1.5055019322717338, -0.13236557876114455, -0.07986418977513288, -0.16319583430332796, -1.851020393410205, 0.2139127072188759, -0.07502057609613438, 0.12358081460021131, 0.009950920405756625, -0.026428304117371015, 0.07710787513021022, -0.29184297146599647, -0.29734000750556455, 0.259976849385865, 0.0713188607175731, 0.11695174635859418, 0.2671938682485826, -0.19855829827604346, 0.230487571311493, -4.375342447520179, -0.20582799418042041, -0.11859767058238396, -0.18289041243848525, 4.94044185457357, 0.04811609342058909, -0.5915970486026682, 0.21238203485702267, 0.09103407273023667, 0.09893806601730926, 0.5939642648122109, -0.2547594762434361, -0.07691295435211065, -0.1535360202825709, -0.06117513090349133, -0.012327538991841913, 0.00017899622256933867, 0.17918556358343374, 0.23177260326118657, -0.49373676504385194, -0.04096336247758425, -0.038621746336339136, -0.12338251357024432, + 0.02192563572886768, -0.041733483285450595, -0.07182187730507328, -0.08845280943497423, 0.08501279052455732, 0.1294985690175242, 0.09145707690654635, -0.11870533304957906, 0.11267640571942722, 0.12985752122916183, -0.042193877235754906, -0.09981211591052118, -0.030831655803245053, -0.0328215035188015, -0.02425859647554573, -0.018848609936739803, 0.04779829404812926, -0.028516293077191238, -0.07176162805651373, 0.09146092442394822, -0.10390408709160343, -0.08213749564318104, -0.08011230626196243, 0.09361424251244681, 5.024128398507997, -0.21863486190777748, -0.15285240381615206, -0.12821289739758934, -0.11001522299606592, -0.10735967586674966, -0.26943989447024097, 0.2679667000790995, 0.15378027172028083, 0.15307619727249105, 0.16502564486147597, 0.18876283380811576, 0.3061728272889549, -0.4885661574042627, -0.08237806911575651, -0.07451201184975198, -0.09941341725273689, -0.14217628724159892, -0.23980280271405607, 0.4407697706853549, 0.010030269704382255, -0.03626504371191297, -0.032684026293308244, -0.006246011518437011, 0.0460974396236265, 0.5927753219485609, 0.004522572898253752, 0.060872079571059, 0.09818614265974912, 0.1256232057024954, 0.1529880241866417, 0.24670970826387195, -0.29300543964755976, -0.07363180866476393, -0.0854469109612217, -0.12874954255687265, -0.20136074977438706, -0.3968636174221135, 4.234636414039306, 0.15254851302104466, 0.06737400772009627, 0.049922842097467, 0.07128089158132445, 0.1729378627985111, -6.733941146568004, 0.004434617720864509, 0.0777953152254609, 0.09658190213012774, 0.09072477500559428, 0.06615017864194028, -0.0540462846649129, -0.09119775654199958, -0.08324064274612442, -0.12795850733133315, -0.17782337810513263, -0.24172251218557905, -0.43083393105804374, 0.8645805732626413, 0.11125613556354708, 0.08480680821012054, 0.12217947144206609, 0.20466639403432796, 0.4190273612779678, 0.48069275867455763, -0.1907364287096207, -0.03746166349657942, -0.016153970912531346, -0.0544814660726336, -0.17886389440950187, -1.9656914595859545, 0.3174155552429489, 0.07979802995566565, -0.017590953872869686, -0.0773491621127701, -0.11185566760529508, -0.0795697007947207, 0.09983014052205086, -0.02622349619718456, 0.015189362594905775, 0.08728535014251748, 0.19760845057743304, 0.46424118431123984, -4.566718440461957, -0.21134253467207487, -0.0801988935273921, -0.0499070487462117, -0.08297091323638944, -0.2510909450252952, 4.226960444779161, 0.32395099200536215, 0.10784745767293025, 0.03859778327054586, 0.021068961879145753, 0.06509245586452439, 0.6106111650399068, -0.3364625611705897, -0.14141276536315073, -0.05982318101933859, 0.005151979460942369, 0.06698148918568186, 0.14397825211874704, -0.4129306869574049, 0.008174726958161904, 0.025353180578943146, 0.00025638566690977527, -0.06422184615574023, + 0.10258615497984407, -0.06903682397717895, 0.03589287494214661, 0.10074499479914546, -0.03999848273469103, 0.07508481102142582, 0.09964230312593998, 0.030395038907695248, -0.10903141946752339, -0.08636463021895141, -0.09163237254795079, -0.07570892358645559, -0.03693474527987188, 0.09929761186280299, 0.12989144273009193, -0.0006237212302258253, -0.16655521395771014, 0.023033856988373135, -0.06484365612674718, 0.08301262871189685, -0.018851452671720913, 0.046644812126135506, 0.13663808761206686, -0.08152266880730945, 0.08220822352816931, 4.821873513101303, -0.14796241237020874, -0.13418326296136274, -0.12569814156157055, -0.18314834387007273, 0.14042732242999267, -0.027461383569662802, 0.17102841881781838, 0.16249362716011978, 0.17708713257841524, 0.21690232197640225, -0.20225661795618022, 0.14446065171744693, -0.18251807194782665, -0.0865235043028727, -0.10303374121521092, -0.14258806364996393, -0.39849692481206067, -0.20934485369146638, 0.6580139199445766, -0.007620169241817076, -0.035886621006638614, -0.028827713558563728, -0.06672463782885252, 0.1865308005352171, 0.7561565346533232, 0.010295304429015883, 0.09758274279677637, 0.14939362057661498, 0.250727214789746, -0.25161015045998947, -0.03279162469447339, -0.04008263893648867, -0.07867060808005877, -0.13912275955975092, -0.2548364181765068, 3.891475827129714, 0.057081393516288936, 0.21438324121345154, 0.061570579014780746, 0.04819041518090883, 0.0872483365961827, 0.49204343402219824, -0.06230661908303492, -6.992412179998654, 0.034896315888372, 0.10072818131246819, 0.11990860668495362, 0.1894082343458553, -0.19086735353192275, -0.31348967955756746, -0.02161752447977694, -0.12406532447072882, -0.2008431122427099, -0.33501040988922515, 0.6453714126234493, -0.06609267306933253, 0.13514134249596854, 0.07948832046279847, 0.12654201475065852, 0.24035057341291383, 1.773126549567156, 0.19626091389854783, -1.1537743809970116, -0.07580714190072169, -0.011201618614210651, -0.031233065707461538, -0.13593613607929234, -0.16683533960028446, -1.871523543406815, 0.18380277928720234, -0.00881476953148086, -0.10991386630271494, -0.2505468528649025, 0.2957468506159186, 0.21147110092206878, -0.158861774649882, -0.011890964039431573, 0.10051942351499643, 0.29767496313032027, -4.320803160656197, -0.1749315354787883, -0.1787749458754937, -0.055803654921662615, -0.04547808096814426, -0.12182865136442256, -0.9681325619823404, 0.202554538877313, 5.161978801104864, 0.1555179189817898, 0.038743853308395027, 0.0032815083473733964, 0.02668668994953688, 0.014993128774981601, 0.5568362072012343, -0.25491893147699063, -0.07917334235378837, 0.020838796270134175, 0.15801530430187682, -0.545729622768614, -0.10634041713454667, 0.12371829241777355, 0.05359287946694277, 0.0007517981461520051, -0.1167088316544641, + 0.08892943644264449, 0.10846050625849428, -0.034704405240337764, -0.0721206779978591, -0.1023859582782726, 0.06697391214966604, 0.022105812657340723, 0.11119554228260782, 0.08146071447952728, 1.0447291067162907E-05, 0.10369738478751181, -0.14584511791237387, 0.03594010743986088, 0.10100230646303586, -0.09822559388795449, 0.06224002859611017, 0.027872981245519932, 0.16330920429164836, -0.11770192352235725, 0.045087632858372674, 0.13118454326248902, -0.11453161647787465, -0.10997830289681712, -0.1333201132470081, 0.10774216275737745, 0.053836192312668715, -4.829075313218134, 0.1486652978883824, 0.209818984606167, -0.11993780614491412, -0.04611266481762055, -0.05454739429019888, 0.014729857885581399, -0.19881974212767506, -0.21841521683045073, 0.20880462405690914, -0.07000631453077999, -0.08214708985513564, -0.13913308658124268, 0.21261165024545758, 0.13218072955059046, 0.36270661029257933, 0.1164965556165789, 0.16058282509246036, 0.2346841672167257, -0.6560503516026964, 0.00461224702742305, 0.09610325718490043, -0.11414705634308608, -0.11795015949797874, -0.18251052891229713, -0.7939997121662349, -0.0641075705304231, -0.22549022870802798, 0.2518867065706004, 0.015590624501401917, 0.010047019830620951, 0.04022021433837519, 0.0960454021651439, 0.20784495953650203, -3.9429884548237446, -0.13300081019246113, -0.04090167075976181, 0.030460760557129707, -0.19682789774923148, -0.10013789419537888, -0.4700010030142542, 0.1471280491430924, 0.03665969362536248, -0.057968794247594546, 6.956405425144981, -0.060727914848102915, -0.20122479473297208, 0.1366721623722656, 0.0696577703352661, 0.12075560474571412, 0.3568549872448887, 0.09791515502429138, 0.285407585526701, -0.6798031471217069, -0.004099810314260877, 0.048342389868144764, 0.0949738718125156, -0.17900329958571898, -0.20065457552170163, -1.6976218395821439, -0.011683811555286472, -0.15526034377041242, -0.31784149207694923, 1.1263674076474213, 0.09125651316639782, 0.09430791690378804, 0.02462396742460765, 0.11858266659375744, 0.2632627191076584, 1.956360407173373, -0.09074927761001525, 0.1834419616272378, -0.29595851924886796, -0.03344596254473928, -0.03830311007078446, -0.2264481493279693, 0.07265914193189593, -0.20042332866122253, 4.40717426138989, 0.2669686547422587, 0.11428543791336593, 0.02556850692870305, 0.1463480623849166, 0.12895820010941372, 0.9310260936506113, -0.33363283734454774, -0.13424976943379813, 0.019043813112888497, -5.087622568224756, -0.1210774921032921, -0.04510028207916464, 0.04447341150473194, 0.002695426233308318, -0.07573383352199003, -0.6157341185921212, 0.17538738826775668, -0.07352018782495273, 0.5903217176345529, 0.07938628201027853, 0.024303090107003156, 0.06208791156057185, -0.09930156535060486, 0.06327715437477288, 2.2503370858292047, + -0.006488595840814062, -0.01319986957223409, 0.019894068811811928, -0.023812411330460446, -0.029836348810540366, 0.045658826762748315, -0.04852770810741528, -0.046608118487773714, -0.05862171930501575, 0.05225596882462495, 0.06700508984398826, -0.079325886557864, 0.06499310976485424, -0.0652232577724633, 0.07028244114289738, -0.084522907500885, 0.08720401154454889, 0.10425952677084968, -0.0968854771274912, -0.07120432651047177, -0.1388148590676965, 0.10276323665330589, -0.053265926888585564, -0.032109568266967814, 0.07780936241489639, -0.08174545392812754, -0.02056346149853871, -4.7912017227488155, -0.09790530493976432, -0.019883479984220187, -0.03412034156553162, -0.05935616927609788, -0.08273064693684606, -0.04129272821018348, 0.1887953998771168, -0.0717370351978458, -0.07650819421609267, -0.06498081807863398, -0.052753737263966705, -0.09432363736655058, 0.4758760338984921, 0.10674966985406997, 0.1251908026696441, 0.14265806492463035, 0.16484545565646308, 0.2334301481840174, -0.600597233038083, -0.13948998438004867, -0.08938360868015033, -0.1107283816440642, -0.155904912765339, -0.2382552455974235, -0.9290542583822637, 0.3400402607126169, 0.04155311853820421, 0.01002798235116037, 0.02315282372264088, 0.06647528444697098, 0.17062483080971996, -4.017763474847408, -0.18219528104705252, -0.08730006257502693, -0.04573618356946951, -0.023205084893123562, -0.008097745378248034, -0.6234662389713428, 0.13538369208368206, 0.05992166237885266, 0.026974793430321053, -0.009873934546576368, -0.08371062111480243, 6.910249067260892, 0.1975613043962664, 0.05859731113521571, 0.06680624082661868, 0.11345673103977316, 0.1986142553508078, 0.5221165879493026, -0.7891920916528322, -0.054699834559610916, 0.014991730404487758, 0.024882648806845542, 0.004728840589237393, -0.026297773531446134, -1.7637469060814814, 0.02842469063133579, -0.07771804208764699, -0.1340379904188933, -0.18588010103135366, -0.3047833057807212, 1.2190266945367023, 0.08527900541511413, 0.07736060028110436, 0.12176901323731337, 0.20223665870204854, 0.3596062972136238, 2.1478102771246936, -0.5006943795920485, -0.10175262444461003, -0.03837738508900995, -0.048491295289230296, -0.1257518608335819, -0.44224137284646164, 4.616690855701916, 0.3679907662428859, 0.19576511385159975, 0.11828343467000466, 0.08223907988843997, 0.099434154216548, 1.039997537390955, -0.3291739948690324, -0.17420173729812183, -0.11262867996603043, -0.05259435367844961, 0.05362942901518547, -5.134199841322133, -0.07390177026917977, -0.015797768612990426, -0.01637304189084865, -0.055816125499724034, -0.15693840016052152, -0.7746034768736471, 0.7927893979311352, 0.1654740977520347, 0.06862624576765597, 0.03525386478345216, 0.049297425778071835, 0.18044326563005986, 2.168804307606545, -0.20735902535455553, + -0.09594104303192103, -0.09806054830499732, -0.004301754499534248, 0.10340560930288427, 0.08114762307950878, 0.01379916288045418, -0.09331869187405012, -0.1006027774139705, 0.006815037519779392, -0.1050959692575615, -0.09366926444695357, 0.029825792418798205, 0.09563672696859082, -0.14985469698496606, -0.025538345439634232, 0.09003893746067292, -0.04986000556456887, -0.03515063048033417, -0.06988700771938394, -0.08894663573670704, -0.007715791430769388, -0.07236374018692374, 0.1514194749516852, 0.099656793465349, 0.034502597638630804, -0.13763333285945728, -0.09499143008303035, -0.006462933695067085, -4.901454284272616, -0.011739910106160878, -0.031027021940653265, -0.05834850122143742, -0.1085283832392363, 0.29856966925219375, 0.09188791328064005, -0.0891538787896583, -0.06191704573140455, -0.043431379320300834, -0.01814302895427411, 0.2121279896804671, -0.13987363031948596, 0.2304345324749477, 0.12454658752496894, 0.12063005697037454, 0.1317690734995765, 0.1986263457607912, 0.11742448254560389, -0.7606813310885362, -0.12941040693770345, -0.11983436879414794, -0.1563218746586451, -0.2785728910208045, 0.20818517803823514, -0.6658734805307159, 0.09582365268123028, 0.04762797121147605, 0.06387920577354556, 0.14708342127705132, -3.964099964098723, -0.01172622681455382, -0.17953585120510185, -0.08944402227440007, -0.06606148922625521, -0.08100322729737397, -0.4408282445871826, 0.2527560396773406, -0.10182099177659587, 0.013015648017683956, 0.012017367593047057, 0.0012551853034464822, 0.002751895439897456, -0.1757943354368432, 6.997354575015515, 0.12293697336819748, 0.09728217452352506, 0.13665606343384595, 0.2652405175049631, -0.6983966656399571, 0.21961618257490767, -0.09474681073256987, -0.02592092533978796, -0.02885320904652844, -0.09372949092203738, -1.5445297988573206, 0.2849886452102035, -0.1550453470342967, -0.08801506033006268, -0.10038017808545052, -0.11138861281871912, -0.06722892029869543, -0.36410488641492234, 1.171493266218665, 0.17463614101464864, 0.15220516106212278, 0.20509915122778105, 0.3818245959041666, -0.15743817883113964, 1.8471932669428928, -0.23481911044017556, -0.11250566405631857, -0.12086162069556956, -0.25377967841450233, 4.341594795536712, -0.10934910608578116, 0.41152810600694245, 0.20661769863508972, 0.15499006812384178, 0.18390540526303545, 0.9500805899173389, -0.4017112024986006, -0.04014439443122242, -0.09957256358902533, -0.0858547510880786, -0.0735082982342935, -0.1386297755037197, 0.35466711228573555, -4.986714213669145, -0.13058530812152702, -0.07179739274353703, -0.09316873310539187, -0.20671930308392827, 0.49023323411893394, -0.5638180746892051, 0.26123671771657064, 0.11578488734133796, 0.08993593118624166, 0.1481617381906677, 2.2554803145050064, -0.19626610953674917, -0.12312188291263332, + -0.09718573771426862, 0.08614728271175823, 0.00457540075235867, -0.08983440621176973, 0.09699978456352613, -0.01754644688252381, -0.10482371125815489, 0.06678825658136688, 0.041845431572242825, 0.11334575270248146, -0.04022672583315727, 0.03395520860716243, 0.1371045629140285, 0.034531729969801736, -0.12235562858411576, -0.12083888943635392, -0.010826647689845497, -0.10951810926975832, -0.1402807080413884, 0.021955495731552154, 0.1263409716199736, 0.09400082682531388, -0.11227772522599408, 0.12124186771775512, 0.03805978266491086, -0.07869808389837417, 0.09597831244453225, -0.01763124367248656, -0.12038269460531939, 4.906900145224389, 0.03570294510783806, 0.07979726380670249, -0.3225394383954383, -0.0309540317343856, -0.017913613840856657, -0.10163748537324901, 0.05537191060234392, 0.014351474971223022, -0.22209024457600546, 0.05763184365708229, 0.04673539831075735, 0.1202427248033997, -0.2249897052700296, -0.11242598246074015, -0.15282482216023008, -0.01395939015026143, -0.05442064791260948, -0.11686200014858383, 0.7905313684326003, 0.17442379751926756, 0.24146638310596857, -0.2902534252457723, -0.009731467372286473, 0.055806077701824996, 0.6582948314597064, -0.15013647609951075, -0.17198702880937833, 3.9611713279640672, 0.11058031313035444, 0.03359193341974864, -0.08188794462232821, 0.15772662935834714, 0.12471174272606067, 0.48407405942085086, -0.1718937215749219, -0.09961271424325469, -0.12529663563804405, 0.15070193926942232, 0.01309335817019952, -0.024865426564258553, 0.08875397123163586, 0.0722484550009529, 0.12859524838130165, -7.029098889849241, -0.19279017626547046, -0.24864406130340144, 0.7592969017223531, 0.061804406100959774, -0.018150614705304213, -0.24766947962890296, 0.13924960859969976, 0.14546451885244638, 1.5781580268152826, -0.1900887862023076, -0.10977715546200906, -0.16491467389555248, 0.17730979523054385, 0.06402091933273124, -0.02051621873087084, 0.16472641729603044, 0.14921630928016116, 0.2552936889214199, -1.2463231907175625, -0.25762361798600353, -0.33047198486355284, 0.31298483145425865, -0.02891114691958019, -0.15311058211587747, -1.83250970663569, 0.31809631160839646, 0.31850455809723177, -4.339978764207446, -0.16742211060548207, -0.0281913411732575, 0.2714649230619458, -0.3695648250828558, -0.27201146806637794, -1.0231198856699155, 0.3020537751730058, 0.1610608077064024, 0.16507575816073417, -0.05035906625667519, 0.0593432480824371, 0.17181503255124975, -0.2235461469415444, -0.13325116356555528, -0.209495038050867, 5.039107160193865, 0.20806822113186896, 0.22284924829115016, -0.5532705089605536, -0.0307001662179342, 0.06965612707915803, 0.6119226942429973, -0.2827417341635006, -0.2292491784651398, -2.2951071083440686, 0.19179972551321967, 0.089793953454392, 0.04499262123157277, + -0.009078313337110122, 0.017580497638503514, 0.031030134424296786, 0.03967667932520905, -0.04085918200392177, -0.06452171766924711, -0.05282781640577866, 0.07074729020375725, -0.0767989297060641, -0.1036428723559547, 0.05991826185760729, 0.11344508751837754, 0.09272493733853107, 0.11040538342288167, 0.1322380670470567, 0.1416150056706095, 0.12356931354904384, -0.12236669533356082, -0.17173554383222836, 0.11234645153043628, -0.10710998541774507, -0.13466315024442435, -0.1091410838252957, 0.027661298680066258, 0.0051806732708347646, 0.0034916974811523655, -0.003900525313902536, 0.0091755147284184, 0.05928334226619815, -0.11810380888046615, -4.931121120018817, 0.3439415729290275, 0.05794543278204051, 0.04119721435491208, 0.04031507622902669, 0.051046586574319985, 0.14880758411374073, 0.2092352094612612, -0.054634445972890494, -0.03654713792276437, -0.037432647330155056, -0.05159468739366263, -0.1329436339194382, 0.25524180386478734, -0.0062451982844276, 0.008289385066348243, 0.012936962022282783, 0.02472335462267361, 0.07547831355899703, -0.9067033138381323, 0.2721603433991311, 0.045506173974541264, 0.025855736352136227, 0.018232334833345187, 0.0016054125282384257, -0.5320950131230442, -3.856786974174291, -0.06617945469890374, -0.025592844790721547, -0.01670668885901183, -0.01192406141322433, 0.047256186041054415, -0.5722324977794584, 0.12999623877135857, 0.05574254692963532, 0.04345280246083072, 0.04998660008042388, 0.0994179886005967, -0.13712645473756901, -0.10271824641060745, -0.049460641014529294, -0.04080550796747251, -0.04741698078490875, -0.09272910520850505, 7.144147440987159, -0.7010676814948898, -0.07462118805745611, -0.041467306612067475, -0.03391629467314136, -0.027320898980454977, 0.1282015305023863, -1.6795220760798535, 0.14544277756703228, 0.07655930356345175, 0.06882264747821065, 0.08645330223642389, 0.18893940889205296, -0.05571437850836258, -0.11675876687511577, -0.060294842617141575, -0.054513283421201986, -0.07407629008418337, -0.17770622243884504, 1.41617309465651, -0.26101285155927234, -0.021233247175324155, -0.0023904578903143348, 0.011371778102388541, 0.06084966108820644, 1.6201909713561025, 4.124076068735417, 0.08139451030054168, 0.020831498509476742, 0.005264204964368857, -0.012840805166088654, -0.207082341835511, 1.2301227671376966, -0.21806935642922143, -0.08717253735189612, -0.06387061085999601, -0.06936463764883799, -0.12436771497436769, -0.03504320033366748, 0.23745935423107095, 0.09864192512051219, 0.07694979732830483, 0.08495693127997686, 0.15598254599579087, -5.163575735269238, 0.43740317039762777, 0.012040022896914637, -0.007277457425256095, -0.016357287250558517, -0.04523137492220142, -0.49751130867672266, 2.47447975629545, -0.12147941077632074, -0.05148288074148799, -0.03967406287389463, -0.043626683944567146, + 0.08737567045540069, -0.10159959678679367, -0.06166273889371319, 0.03884412133792913, -0.12525719652132178, -0.07287756521864514, 0.0020854229881625704, -0.10160827534150356, 0.09667111028200585, 0.051270832367993534, 0.07190784022460331, 0.07240657715037142, 0.0764499710195241, -0.029409725175414212, -0.07555452310651724, -0.12899979191850247, -0.050850408121714395, -0.0965994218435435, -0.11514209535411829, 0.07936329667188957, 0.020919536149472062, 0.12293267796839678, 0.14584743504839068, -0.091528693174304, -0.014352861271174836, 0.11705086984532537, -0.16113472718554342, -0.1112337114698681, 0.07325934787687688, -0.17889669547802278, 0.1515208438870037, -4.8481079944080765, 0.06659155861582433, 0.07153110271629576, 0.07867143873551818, 0.09247208125341644, 0.3329947788848069, 0.12684725866424335, -0.055643395362374615, -0.03759878259008165, -0.044813407362655586, -0.05443042942932996, -0.03325297428425622, -0.2364909161456904, 0.1113454177458057, -0.006812728728709638, -0.021034162065305617, -0.027583602632777836, -0.08313220208026728, 0.46084246303594745, -0.6078078005613176, 0.010003460324637725, 0.05690857940657612, 0.08640157125846182, 0.1503360604174986, -4.1163405437371265, -1.0864705825135874, 0.09484342390202402, 0.026718504362022832, -0.005132397587981452, -0.053562813545180665, -0.4292374686036263, 0.26292971574208246, -0.02035614670467656, 0.005086037906234568, 0.009125316611748646, 0.021162162708744936, 0.07319587740332112, -0.0007165289582728995, -0.2232453895802715, -0.0591369444945925, -0.02788502599177383, -0.008093153579513457, 0.026234361880304702, -0.44474606954626095, 6.881501832953662, 0.015014938031462255, -0.050471700070755965, -0.09117572495917034, -0.15939449704227582, -1.5836919793410158, 0.2954347832845463, -0.005911546169730664, 0.02963421701706337, 0.0589876894530833, 0.10038232162711397, 0.22730359066980932, 0.1344902429212832, -0.14811350303848378, -0.010554429270573817, 0.011577731334970753, 0.018947569563236566, 0.07723396630212914, -0.5986106178720159, 1.0605865223065365, 0.05033837530653319, -0.039768941622652876, -0.09614987328856639, -0.2088208602176415, 4.708655810589558, 2.379375813175832, -0.2138239842585823, -0.08135482806422653, -0.02027565789029573, 0.07119625534816898, 0.8441532876435305, -0.6140933260986836, 0.09966102075502792, 0.01514525540633005, 0.00040582906022856857, -0.028164703389927714, -0.1674132582333132, 0.17293996488923452, 0.2589108600489629, 0.09902450597749846, 0.0565693456972417, 0.029442697231084614, -0.002668410834001378, 0.41168590205398703, -4.977692509041694, -0.12708787697219115, -0.036341306627584946, 0.016509124250939033, 0.09926167998227009, 2.142864199994049, -0.6700541665985164, 0.10903952705934716, 0.02810057467454652, -0.008064037069551833, -0.059121590922007486, + 0.10349686578476511, 0.07487412908828286, 0.05633051144349465, -0.11080462649750533, -0.005706080025300145, -0.11700236286279483, 0.08587737695761334, -0.04211482715014875, -0.091261760195441, 0.033975809960513755, -0.09107773078178065, 0.08910269967631258, 0.007151014998432585, -0.09950212839039545, 0.0016165504679939806, 0.08239262692207681, -0.0762229283124371, 0.03757574359750538, -0.08959319352589373, -0.015398852232308923, 0.07291364885989414, -0.08075685378011029, -0.05486471785987714, -0.10506272340529618, 0.02328460029371768, 0.12817602941212428, 0.0758129206598714, 0.16364357344524416, -0.10479841359401751, -0.01984019921176402, 0.15800109792515368, -0.0676655306004546, 4.842689405192059, -0.10086533951695037, -0.12009434975047129, -0.3566979545058707, -0.0544254599035392, -0.06460558913234318, -0.1462434147825895, 0.062488717981138975, 0.05277555187205829, 0.024318603375409364, 0.15853032212996715, 0.15978436546850494, 0.24367278379926333, -0.08263538308301455, 0.04598870703375468, 0.12707047907143462, -0.36411468227754085, -0.17488140405611827, -0.23757830187017603, 0.5968667501915119, -0.06787277026517463, -0.18468599409374953, 4.044458594282083, 0.1826302023777818, 0.1689690941789316, 1.0011181647264367, -0.1135032875484617, 0.010142721870935734, 0.42011584674107855, -0.18715856393227204, -0.09838794396555478, -0.14150631925056684, 0.06639407117440238, 0.01700323991139871, -0.03202652151976727, 0.08148974170156792, 0.015208379995030247, -0.053700353499952946, 0.19941282693037649, 0.025578179474643803, -0.04547222344524382, 0.36354697576374967, 0.0913331117067967, 0.12606409647754907, -6.911278602450032, 0.032600899214481616, 0.1716055866324907, 1.640912482541212, -0.09881568040296451, -0.04514667649142956, -0.18260990878752814, 0.02388092989915158, -0.05911444678742184, -0.195889545084724, -0.03642248146660801, -0.12657472853369822, -0.2473017716685561, 0.07675055507887052, -0.06140884261301993, -0.160759302566236, 0.4097325248935362, 0.22122892538549888, 0.351453485323602, -1.0400361612323274, 0.04127981852180973, 0.2546690782973957, -4.569484637286041, -0.31424165893768824, -0.3072486850728294, -2.2324689273189495, 0.2503032330017688, 0.014214331864216612, -0.8334458264620994, 0.3870174752860096, 0.23146104273715778, 0.3905687087565043, -0.18513045297352795, -0.049808868895127256, 0.09734170279599302, -0.2767360208398281, -0.11639396861268153, -0.024026962470594687, -0.21319043042998098, -0.049699715818425194, 0.031309971400861336, -0.28824357546363416, -0.07331035750219439, -0.13352598299850377, 5.024368092554526, 0.1015016464005814, -0.07816492069071987, -2.2007429536712415, 0.20191172978445715, 0.14354761766031637, 0.5292184174488126, -0.15018552444078626, -0.008446288081708775, 0.25822167417600705, + 0.02446352001186722, 0.04863272189139485, -0.07035018073600867, 0.07911807380328875, 0.09198169916550879, -0.13061223202090774, 0.12279590748536072, 0.09165988410322948, 0.10174265716633733, -0.055180874674906226, -0.06500130067263007, 0.04922934213160155, 0.00033706581433830084, -0.04804623323179625, 0.022698315560635434, -0.09235033658405706, 0.07809515687944314, 0.11217280474256376, -0.13050250037171557, -0.09244935238469659, -0.13808126638712978, 0.10765598039230007, -0.011923590985153984, 0.0058336700206462165, -0.0033504447038509894, 0.060897048129353204, 0.16439637820242792, -0.13398585398960408, 0.19226361482866378, 0.1373447601390718, 0.14334555154369355, -0.18952789783503654, -0.038923610026517695, 4.8179468910639525, -0.3817822098105025, -0.08511594630863129, -0.08952437448559791, -0.07480381522338064, -0.05903698498196752, -0.13125200208292043, 0.042636165720273234, 0.1579155971458136, 0.15279223752906357, 0.16796801742364564, 0.19107452158868954, 0.28371985644210157, 0.023872602826238543, -0.3465480644258971, -0.1341180465269199, -0.14333834097156473, -0.18778767408051972, -0.2927209228246241, 0.47095052702327855, 4.082439091359079, 0.17770671058840287, 0.10351208673749747, 0.10020252428372348, 0.15811178652784622, 1.0424707170117347, 0.3031064852090626, -0.2287075180262339, -0.10891376485333583, -0.06706955713443917, -0.053604823970340235, -0.11956268205733597, 0.043827191788083614, 0.12001753406950785, 0.05716599248157461, 0.02732112047789012, -0.008800517484851928, -0.08621914358206073, 0.1269166133791249, 0.38267369778485466, 0.0750278293052245, 0.046246172859651574, 0.05504045026254464, 0.12528296437184483, -6.8247263111419025, 1.5917895766566346, -0.07517185447407831, 0.01321048938047975, 0.013427382929791731, -0.028612086764542632, -0.21304236413830974, -0.11408905083221887, 0.0033609663989915273, -0.096164398810203, -0.1510538668521716, -0.2005508599912802, -0.3203455970979492, -0.07325378861180076, 0.36798999487920847, 0.14124507268793857, 0.1656599719869576, 0.24433505671948297, 0.43787587061369637, -0.8290345318784352, -4.646179407592582, -0.30211404690455423, -0.17647072450756013, -0.17305757899983182, -0.2878355221405322, -2.309543180872583, -0.6063929842468498, 0.4688324095452575, 0.24522295995506854, 0.16667248968667212, 0.14941383925550072, 0.35639599177104364, -0.08818722951179436, -0.35580558935786133, -0.18920795415048813, -0.1295035330833547, -0.07149863894171743, 0.023796617518137497, -0.12637251806562583, -0.30989475604798394, -0.046950147500580575, -0.011120579001308584, -0.022131499877737104, -0.12396673002090425, 4.935840861608901, -2.0940038331336925, 0.20835265215639334, 0.08514097231855564, 0.06316576437944078, 0.106577921598913, 0.5505891595891981, 0.10043436213980161, -0.24469248592808035, + -0.07706147324063863, -0.11314068745602768, 0.08139479047657742, 0.006498018875406185, 0.07251461519686955, -0.11162195078674553, 0.09366484064720067, 0.02223408773584024, -0.04303095984309059, 0.11008056608828393, 0.0634208797734102, -0.02651822668703805, -0.041069463217945835, 0.12237119524602792, -0.12133361648875839, 0.017589117976926548, 0.004463475415816097, 0.10848645881316656, -0.12521156373434164, -0.02821798805567933, 0.08580631441856705, -0.09742479181295968, 0.09049845168322959, 0.11769159931790665, -0.07348618155526151, -0.051835227365946014, -0.16494487816408784, 0.1977044256419388, -0.1252213857992455, 0.04429184506281243, 0.118536155543897, -0.1503349355479705, -0.07237199151683685, 0.11863515659355008, -4.823974944724547, 0.1212512875131273, 0.11086308165215597, 0.08854461074864906, 0.06392815762078063, 0.0861293681879508, 0.023322613325498676, -0.1802329207698703, -0.17686707350138536, -0.19446702896672907, -0.220145931109477, -0.31334127592362565, 0.10705352769347332, 0.25658867158577137, 0.13529707592689355, 0.1560953948446966, 0.21040086180072004, 0.32734359154994064, -3.879899537825781, -1.0695302370979876, -0.1723215705097228, -0.10213083672456302, -0.09924707086967638, -0.1557110522965916, -0.634242263149063, -0.820351355239487, 0.2368398858198381, 0.11579188962979267, 0.06846542659177399, 0.0489189405631225, 0.08271304341117992, 0.013884051562955912, -0.13969191762333696, -0.06951754108379395, -0.03478719089094698, 0.005978625256351872, 0.08520761740585878, -0.2780727639880819, -0.2692007588211754, -0.07152348344314374, -0.0418508412021493, -0.0492625929036084, -0.11345752483959315, -1.2843763979460148, 6.9689259945528335, 0.03187973314099801, -0.03729134548267954, -0.03026088986554712, 0.019584894898629468, 0.17868100343090831, 0.15733644627806886, 0.015149473669376717, 0.1169274954762477, 0.17938634617976423, 0.23677980726079023, 0.36841456399364103, -0.10432995694781444, -0.24911305814036644, -0.1340936865887109, -0.17493938676078122, -0.26781535860564054, -0.47500634677091663, 4.292428553437614, 1.6538459619358843, 0.2937920354784086, 0.17262775912742875, 0.1685253845127173, 0.27800367212186095, 1.27656374126731, 1.8879118069077614, -0.4947845127470156, -0.26445819634864787, -0.173876691781499, -0.14304407083510817, -0.2658967726010343, -0.04493725350957928, 0.3945297025048943, 0.22076306649267435, 0.15228151071053803, 0.08587174505136247, -0.015600550338321528, 0.24372924200333318, 0.22229651441923598, 0.036940762660008786, -0.0032005548943516704, 0.0035318988725878686, 0.09211403155992531, 2.028097331366386, -5.093268851750996, -0.19256558150911063, -0.07551718567796428, -0.05252869613818287, -0.09334918968030315, -0.38810662095790915, -0.3197664298477336, 0.25737629568429776, + -0.1077365033828932, 0.03857146394345564, -0.08163527239386745, -0.07594394654321217, -0.053326590522618955, -0.08106592888114605, 0.002979857709782525, -0.10656946174664185, 0.013888113422886221, -0.06847291838826197, 0.060060121876628916, -0.08836683132085114, -0.11180084519887933, 0.06697829066333288, 0.13535592243811964, -0.02198011090348944, -0.13159749152241104, 0.052319397807695386, -0.032487869638760145, 0.0527132302285068, 0.05042552492657498, 0.08419189907286866, -0.12006707431032669, 0.0869567244618487, -0.10867227757569256, -0.058571318364636644, -0.002305389459795123, -0.20266533632365882, -0.0374838500455793, -0.09563611008882279, 0.08080641203827874, -0.06906583179002082, 0.19036041641600135, -0.04112793340903213, 0.05640380286394074, -4.814425415895822, 0.11438753735468343, 0.095291628532768, 0.11232655878961151, -0.04892245816244378, -0.05278043185287251, 0.014348900534746134, -0.2125676766624038, -0.21874592195209797, -0.30518753102055984, 0.18830902228940827, -0.03871907712479583, -0.11874925118560542, 0.2716154484573443, 0.19411875183490818, 0.2845956808375778, -3.9881922862807917, -0.060839377265623024, 0.09337922828616514, -0.9863608961130765, -0.16272322403232817, -0.15244586049176667, -0.5678789086541324, 0.10223164606408097, -0.04962852617978086, -0.9482448648561508, 0.19036702984804027, 0.09403909005360614, 0.09504789942364486, -0.06150635721131038, -0.013875533279394392, 0.07223544997181677, -0.11370532899860786, -0.03436943517749136, 0.041367306004864046, -0.36375152783493, -0.04195523345011512, 0.048217211270549135, -0.2325203067854328, -0.07236088301834508, -0.09772708282863483, -1.204444798408332, 0.09187833539788384, -0.03585094092723455, 6.86824019125974, 0.01689701616081507, -0.0026301623642658797, 0.11894802662706283, -0.04614673732977459, 0.07122675137902401, 0.27735848584247935, 0.092106895686311, 0.19314080882244644, 0.33485066099007843, -0.20864321956179266, 0.05170334941285892, 0.14379006028956798, -0.2759215191915765, -0.22702585982827714, -0.3915896002503165, 4.497641390903373, 0.11675048294429485, -0.1555637997400819, 1.5110769326876414, 0.27683362956460444, 0.2687710614020276, 1.144116546831939, -0.21601539608537107, 0.07262293335810244, 2.1238480500751975, -0.40963342103521994, -0.23167199351330792, -0.2829932765244565, 0.18361080812364397, 0.04285159171521971, -0.2021718045061197, 0.34610695510048317, 0.1690645019323942, 0.060566539054242474, 0.35497417590936176, 0.06711083931899942, -0.041722770954725485, 0.17042570701069895, 0.029569876242184268, 0.06669521745465185, 1.9062971266862019, -0.16920669135032876, 0.01451586194774318, -4.959571599624584, -0.15606976144972706, -0.10298329955436823, -0.3295255750775441, 0.15947722606250547, -0.012894373428588013, -0.4867153254201116, + -0.03935908916725705, 0.07130448441856459, 0.11389015501317999, 0.12480736661600336, -0.09349622623786004, -0.12599647025866287, -0.032953684965012574, 0.042214249991423196, 0.006579155658297095, 0.07080917822714422, -0.11450535052844515, -0.114476364585214, -0.15568699639993808, -0.13333342287530298, -0.11650778233996459, -0.04673290701508649, -0.017678453801301272, 0.031043348870612518, -0.015762559252437233, 0.05950622659055763, -0.11455582955329457, -0.1479536320768815, -0.023188893320837064, -0.07349630135890087, 0.029454809922295544, -0.14966917898495785, 0.07258481993574582, 0.1597237416504273, 0.1606057702275282, -0.07455526894172564, -0.011651536119578379, -0.07802629661861217, 0.02405470066028366, 0.05654675757658534, -0.12516162802364664, -0.1328494043722806, 4.822173862652746, -0.13799157836012543, 0.017558715523004587, 0.026303099083573395, 0.05768454703050238, 0.08535434646548073, 0.027543292577008494, 0.32285258657550364, -0.1893883044432616, 0.031394172251465347, 0.037168743475911065, 0.02298399091204749, 0.05993696809409954, -0.3995146824207139, 3.9980149390270046, 0.09729570559747358, 0.022474285777770886, -0.020051980378630794, -0.10382638931251112, 1.0349884878137359, 0.6303273316771708, -0.10579960826040519, -0.015313986183924752, 0.027173815611187438, 0.09417636273836115, 0.9684716709020003, -0.21660704465748049, 0.01639375101795887, 0.0012902412948010977, 0.0031033892436607147, -0.01171628306108996, -0.10722979764502233, 0.03751203828604485, 0.40349527188614304, 0.0849896318087443, 0.0378933160425447, 0.005864589553113711, -0.04748170895746885, 0.287916462243543, 1.2255337528548589, -0.10886604954621981, -0.04134516154640172, -0.005029430211512767, 0.060123159950027004, -6.8917126250196326, -0.16578283217281498, 0.06837662702847935, -0.011891841060315461, -0.07396972222358628, -0.1475950286135691, -0.35310824671761454, -0.24726264855491364, 0.2518688157972333, -0.01912503155607226, -0.03913614589703482, -0.024165025615167438, -0.05089014657822033, 0.4918141614330778, -4.531146942994588, -0.1927288382130793, -0.05789251892596625, 0.022494368184762054, 0.17373994521951147, -1.6045986208825935, -1.2503762429188923, 0.2259081734712397, 0.05690839343977533, -0.023520383206897366, -0.1536252972439123, -2.153208884956809, 0.5179418880745679, -0.09493626735265082, -0.024935973590463595, -0.026186199250878367, 0.004504746192334486, 0.2535015323233245, -0.2540519623175974, -0.43754939436323426, -0.14252927996064174, -0.06979997948482275, -0.015712204447936223, 0.04917585770040578, -0.23988837923668405, -1.929145524947544, 0.1967492014819749, 0.10287116727541828, 0.04553874153625215, -0.05736157520715732, 4.9789592339679825, 0.4323331340274823, -0.1498704810489333, -0.04462714367327145, 0.00807394377861212, 0.08747360151381328, + 0.0652048901150158, -0.101473618668642, -0.1255182242717917, -0.0823477605985227, -0.020498307063761666, -0.04159782916496207, -0.1358531059120817, 0.07498495127373316, -0.049735552612070334, -0.0306884026921643, -0.05533685249260075, -0.13035585504114683, -0.12010621667767948, -0.09635963383337014, 0.006132640004443123, 0.11035022604684024, 0.11213684490111914, -0.04692191057456927, 0.015235188343014452, -0.022692527423016393, 0.09633858717898448, 0.10427515295242819, 0.08173652360320989, 0.013577717556948744, -0.09779609601487403, 0.04771631604741255, -0.02699388564989665, -0.08066156560592176, -0.11552033906750082, 0.052197419720045095, -0.03192771324082839, 0.02508688924811261, -0.1099410955093179, -0.05427456699392848, 0.015482744002744861, -0.003900139598669262, 0.03279498170858924, -4.878017275152364, -0.0008937876503898323, -0.026067933288699847, -0.05839596801948416, -0.09886941373996166, -0.1931936271743191, 0.37503190949046544, -0.04710277036670707, -0.03612663663065298, -0.015596670823186488, 0.021474345923342353, 0.10299427187049792, -4.201783791670942, -0.002226193132449983, -0.026049125097372006, -0.016227657793643768, -0.011941732790358825, -0.026180697067376996, -0.3643234115222631, -0.7706346211976729, -0.04518339212099398, -0.023424740332140634, -0.028950687860109042, -0.04580147656650191, -0.07211123611123638, -1.0656629014744612, 0.11866213931056603, 0.04161995845589589, 0.024030547466417168, 0.03146719637665557, 0.0875989153450582, -0.25902327820698756, -0.1639960526713783, -0.07657759038228479, -0.048454373220458924, -0.03829146676295936, -0.059961528857236074, -1.0943004330205999, -0.08612079272061637, 0.022463263125876043, 0.02181741745225746, 0.016958677611128986, 0.01695955832352755, 0.12080755516865677, 6.748622808383, 0.057536815054963775, 0.051278029822661796, 0.08749153462162707, 0.14827284288471454, 0.30083367147468953, -0.08996944258096651, -0.06942121756907882, -0.0036188618486005454, -0.00821133973014826, -0.053261032197178926, -0.1888494036122832, 4.7520088634716675, 0.11382288613090075, 0.08412132258033278, 0.05296390288722774, 0.03940120505348327, 0.06697593406290345, 0.7979099760161603, 1.1027886495469135, 0.04588143063904826, 0.013542053494247086, 0.02381552451250469, 0.049634370013534435, 0.05578758323638078, 2.4493101537897117, -0.2067023766694175, -0.06194538054396034, -0.022106150323208618, -0.024555658940236147, -0.09722207233486979, 0.015762583449087875, 0.33417238140338645, 0.15075034747542293, 0.09031572867832072, 0.06177496419003359, 0.08369255076740528, 1.830321150347738, -0.014130424872416114, -0.08308420239518133, -0.0724693086245729, -0.05958001585358752, -0.05601703059968799, -0.24005208613530377, -4.673912960087463, -0.05627054672299714, -0.017517748491238994, -0.029627442784402824, -0.06696650652564828, + 0.10981979413330047, 0.01904227993298955, 0.10600112318216426, -0.02841996603539454, 0.11086568565759862, -0.0746135165966317, -0.08627984164147742, -0.08055324900316926, 0.12413395562426767, -0.07327714056876887, 0.10859071153071895, -0.07513907098999292, -0.11589519726146975, 0.09014370633734478, 0.11853972423119132, -0.1268877433466174, -0.08960061689421771, -0.09969892626820358, -0.03271358248907387, -0.1617964905415675, -0.009331782747603655, -0.015682616264196998, -0.0770364507990074, -0.01979394558126508, 0.03568947241381435, 0.04638278884755151, 0.03424249119977386, 0.08172770968999386, -0.004653772874151936, 0.11455339277231455, 0.022045095627747084, 0.09754824121110439, 0.021321641382765318, 0.0939599208916369, 0.0395662199883516, 0.12180768668248648, -0.03044865916535587, -0.14077815965482396, 4.882155588657811, 0.03190424832059707, 0.06484800511789424, 0.16226177442148082, -0.3093261721663635, -0.07543035773739537, -0.14855424661550926, 0.029875940582491933, -0.023376228594910287, -0.10993604813999049, 4.119150014536901, 0.18221027573522336, 0.18329916025024956, -0.08065036770641759, 0.014776426998635378, 0.062295785606865266, 0.48013258965647343, -0.2604302160124356, -0.25010160939576387, 0.8990202454200293, 0.08887539654810853, 0.04086928281810975, 0.004472103921671355, 0.12959058405095703, 0.14175398721552135, 1.0100198673339686, -0.1426782025024322, -0.07547039451884674, -0.09878745888625962, 0.3382634757686582, 0.030964736026270423, -0.07722455336933565, 0.124165850875786, 0.07507777175618674, 0.10129469636264156, 1.1778973433803388, -0.17653367108773133, -0.17022473953297954, 0.1749286766013835, 0.0030277776715887383, -0.03317276187377734, -0.19792931350094572, 0.20924172065712038, 0.18355807061722007, -6.861591187398222, -0.1314105408505945, -0.12210126164236146, -0.2345518108798741, 0.30729712770854234, 0.016108910151748368, -0.163058239118082, 0.09679273151602263, 0.09615120644857789, 0.2197852768328364, -4.648763252128492, -0.28538657811076007, -0.24902080520520764, 0.030570653209499615, -0.06338048994318601, -0.14143998391468998, -1.0102771927779617, 0.4759915879902298, 0.45244056391964077, -1.3423948309045155, -0.12676683366761188, -0.038664989617744755, 0.07716522475117105, -0.31892309777547284, -0.3022303768363507, -2.2953347019545323, 0.25203547371179924, 0.11225861235937096, 0.11396743836156627, -0.25023178240177146, 0.020480290411169222, 0.28548525458514673, -0.27573284098413575, -0.1391978923942016, -0.15620252865955797, -1.9377872297167715, 0.2256248118507641, 0.20366940700931402, -0.11472336991473642, 0.036483731335307246, 0.08063596428888446, 0.3557429075341131, -0.31333582186476727, -0.27538885340668073, 4.8373124394450935, 0.13042679254909928, 0.07539959555647585, 0.0986768695290492, + 0.05346688588535748, 0.09554648138643212, -0.11248543808883557, 0.0869259875153365, 0.0551431156594449, -0.02879694896926393, -0.03937900307117908, -0.12318173089870861, -0.13764056553678497, 0.1310314426434498, 0.0935714341309693, -0.022376426784586262, -0.06625696540612375, 0.11952398676026207, -0.1083799370287481, 0.13149091406814084, -0.13028607159636038, -0.04453688190977547, -0.022520724796693224, -0.06469307162949657, -0.03701460663246093, 0.013606426632841754, 0.04361428934527426, 0.06535790379130668, -0.03379240346068286, 0.04802874167357379, 0.05241235337065487, -0.03217252142795747, 0.01486037593223677, 0.07035731133071398, -0.006966298207989697, 0.12169877566997789, 0.10645060520953288, -0.01744347111862583, 0.0212392694416984, 0.025167317081875428, -0.02574816099548334, -0.07812567931846463, -0.030904967628932863, -4.901395334618919, -0.13477748746190862, 0.3431099482218388, 0.1041509380541509, 0.0817291599810476, 0.09139341834795, 0.20745995703699915, 0.0951465760471516, -4.101800126585396, -0.14860687670968595, -0.09556681194186395, -0.09778223254570553, -0.17183943532243093, 0.03455369112526635, -0.4806672445057411, 0.22649439230969415, 0.13242548285531539, 0.1305951580648906, 0.2113253936245142, -0.9122852494157127, -0.06386099962236064, -0.12410206381686092, -0.07294310940900935, -0.07185992611806577, -0.11098593131945006, -0.973275467461166, 0.21608381685607636, -0.2937567900439725, -0.017632492863329574, -0.0015929448393922907, 0.008480669855445266, 0.07926562196842232, -0.17579542028839673, -1.2092423570875979, 0.14217267590001775, 0.08609562277989777, 0.08637724404053776, 0.14525330744852558, -0.16293052830138202, 0.1770201632682715, -0.19353738301515738, -0.10479678580606172, -0.10043690174322878, -0.15271370582507243, 6.9043274624873, 0.27653128653022113, -0.3337689599142847, -0.08037739106539782, -0.053878475610226184, -0.04428270679662616, 0.07086449242467019, -0.30654095859523145, 4.58922888811019, 0.22420010464096068, 0.13938182745603728, 0.1387679242948453, 0.22750621789200093, 0.057232382122506587, 1.029268502835704, -0.40639972415785625, -0.23679376987480802, -0.2335269378376067, -0.37862838551010786, 1.3613363058390133, 0.02542011774942554, 0.30719114729131203, 0.16654821746363357, 0.16031830356434784, 0.24154161994713097, 2.2378558512803295, -0.3418179348875654, 0.16263263374834414, -0.03858052045943955, -0.050699546208907154, -0.07708624541512354, -0.297743599414982, 0.339321676521044, 2.0062592809812285, -0.16484434173051282, -0.09594490790659038, -0.09509065817315665, -0.15710799645266915, 0.10643050135140941, -0.3307803577772082, 0.28988158810780995, 0.15729162611847222, 0.15155507801466706, 0.2310945158166855, -4.875138906512503, -0.1981911357536053, 0.008101091339143829, + -0.05204323067040578, -0.09373456431646113, 0.11215656069087804, -0.08973049947746473, -0.06135906365981936, 0.03956620512357981, 0.027773872364945495, 0.11448515380952429, 0.13308712094490038, -0.1373713517283056, -0.10566864101913243, 0.04471224186049566, 0.04273634458163674, -0.09908265620360002, 0.10727376320915886, -0.13041951596364415, 0.14965521313956165, 0.074235440691716, -0.007309648809973933, 0.046310285041406433, 0.008879941370819964, -0.026375854794257553, -0.0024867402611111374, 0.01757345558872675, -0.08465067644238052, 0.04116894464478484, -0.019346884114348938, -0.006582607562081212, -0.06880263672371656, -0.10187410102034715, -0.06982390020295033, 0.0007454521660312186, -0.04574623009570134, -0.02802293954362539, -0.0029435168635046785, -0.11474226817714724, -0.04815284133618973, -0.018924065361843354, -0.09638958639568455, -0.03865859355087195, -4.691376385435321, 0.1306816406694676, 0.11712948628124109, 0.12339059954907794, 0.14431739993975073, 0.221683583945602, -4.095280978675872, -0.08132876116410565, -0.06150420258871003, -0.06420868073427416, -0.08497605886053339, -0.14688848022162104, -0.666975471494143, 0.3486027633893032, 0.1348114786076482, 0.09701393094936583, 0.09395172396973303, 0.12165585326432915, 0.2672662263952208, -1.038517496248383, -0.13551969848041956, -0.06721154621608785, -0.041905638629477215, -0.030098297574817884, -0.01853406392351542, -1.4076457568802931, 0.11015245931494289, 0.04661375187286437, 0.022951789366646706, -3.550599880081627E-05, -0.046305350212890964, -1.0979643761103963, 0.09760252804225777, 0.05893755334234299, 0.05173241726684233, 0.06126790209768285, 0.10031834609658152, 0.34344488229776526, -0.41109728808145873, -0.12790960941469054, -0.08536909646711388, -0.07430759184890817, -0.08518995653787813, -0.1596880662204698, 6.73057633535162, -0.03377259082348075, -0.080921758941228, -0.11216436496352356, -0.1523129407286831, -0.26655665099100145, 4.9762770338820035, 0.043991970064888086, 0.05937159236794176, 0.076826882428565, 0.11907931882567362, 0.2318570387912211, 1.2453045162723433, -0.5356950756429366, -0.22281168492559367, -0.1641280780404899, -0.16330042442148884, -0.22142631378860195, -0.5317992006385868, 1.7021106235580117, 0.2747716733579433, 0.15027740366878584, 0.10584292709695076, 0.09270271424415326, 0.11057857691554995, 2.633183775004461, -0.28145098318271633, -0.14467521645137638, -0.0982529791570127, -0.0629126209394213, -0.008715920669918414, 1.6315667552655322, -0.025490011111561572, -0.03307077308514039, -0.0328158756756366, -0.04867307724485259, -0.1050431657150515, -0.47379342331938873, 0.505876134834697, 0.18552903461426085, 0.12910055574672186, 0.11360273412983135, 0.1336750402873167, 0.27795113617992306, -5.001494498728398, -0.13950434707234793, + -0.10970504095745295, -0.022233624471866133, -0.10522002395258795, 0.03460190988492061, -0.10854209432872869, 0.08353044385433137, 0.08112385789436996, 0.09149618916219451, -0.11535632385353106, 0.08526463644193535, -0.0940267111287881, 0.08676780747763468, 0.10257175049993261, -0.10241071490887797, -0.09362904699322126, 0.14357806038036172, 0.0664942047284396, 0.1104121497616323, -0.0019030324961124407, 0.16667032114284713, 0.035485026943550046, 0.011212197994269126, -0.027620250224246197, 0.022735731717598812, -0.12039050225188058, -0.014555540340195693, -0.12758916789243824, -0.07774250658352326, 0.06075225976246043, -0.08191311015433975, -0.09677460836648309, -0.06771109703601072, -0.11462115299606342, -0.009400198914305309, -0.10675633800100845, -0.0334543223533216, -0.06498801161295827, 0.0168660240700216, 0.08062099784890744, 0.08881197085298558, -0.011337560611917683, 4.79231300402857, -0.1574793482760663, -0.18604695816640737, -0.2599915270462625, 4.0501233301623305, 0.17366645092143723, 0.2302893759387413, 0.006561492431397586, 0.057329092660379014, 0.11963452330215124, 0.5830612324409293, -0.12894740501468063, 0.05168437847848956, -0.23131282608067955, -0.10512035239301476, -0.09678858856775854, -0.1621920552286918, 0.02826448949416391, -0.13253407076702023, 0.9735008780190659, 0.10898333206581057, 0.030198913105438166, -0.04319520780259106, 0.4965154999226457, 0.1890569705709212, 1.0511491744296153, -0.1493481657667719, -0.04833348467400686, 0.030809923116702997, 1.1516539875680207, -0.15543947447507717, -0.12119600642501108, -0.016168722858196566, -0.039806056186134975, -0.07123346068545436, -0.26552354621353097, 0.13295827432106103, -0.02285285426989453, 0.3115979516277262, 0.10439031610032096, 0.07688473541707722, 0.0905919955237603, -0.027470784337108298, 0.08377944801521275, -6.820506890432882, 0.07193523035371197, 0.18391651331673264, 0.3375052786048926, -4.641517334356606, -0.33900193626200603, -0.6319022367061538, 0.08858224158251993, -0.04825582421302754, -0.17861062285799234, -1.1350393132746923, 0.28358469897152805, -0.00751301804218274, 0.3163638977051136, 0.1649997059646654, 0.16746988042937663, 0.3376862949293495, -0.14512038238600472, 0.18319906107052764, -1.5404264087985424, -0.22468693623240732, -0.09338091506753537, 0.009435909328441405, -0.5776134477706003, -0.29569301940002046, -2.268458557674398, 0.34339655189107693, 0.16103463498284398, 0.0358958300826111, -1.8141257626429292, 0.2630162707573165, 0.3164009622404234, -0.09558788150632147, -0.008099202049143939, 0.048493768926509695, 0.369945395019165, -0.26699233236940856, -0.05515769903103196, -0.3600394867135951, -0.15244613575662858, -0.12139101031211688, -0.17401682618174052, 0.1822673320073818, -0.05021508123048457, 4.961987471385863, + -0.06650454251893531, 0.10232820480355687, 0.12393131793815391, 0.07692345626609638, 0.02867193600766468, 0.050128858772900256, 0.13787381514497124, -0.06998394847655053, 0.03745182529811494, 0.01061096857410981, 0.06698114103173937, 0.13807897039096484, 0.1102714503385672, 0.07802872597445701, -0.032373677137606686, -0.13162815111131954, -0.11800186513586462, 0.023175313873680485, -0.03848051966688781, 0.0598763588313482, -0.1114577757849226, -0.10652108772276694, -0.03259701358924571, -0.11154588146771162, 0.016157061072111973, -0.08847317198272205, 0.009662385690679154, 0.016007860817073335, 0.030353647942121018, 0.03839054329420119, -0.06492389175370604, -0.018167608514842254, 0.05535120214190795, -0.07485850579251141, 0.11594659114298356, 0.06526916329316869, -0.03603869371824366, -0.11582374270360227, 0.05702195738958794, -0.08235463494572044, -0.09058148923413835, -0.019135130104532667, 4.758601637858521, -0.2944278112970179, 4.038606972154785, 0.16153573232231666, 0.09858301019010987, 0.09899838934758845, 0.22641654198824493, 0.0613241838235144, 0.5581107717302307, -0.15755172713892648, -0.04756002840264728, -0.003926088245350207, 0.08370711034673711, -0.23115236711960274, -0.17304096745018316, 0.05532662730950294, -0.02172090053514139, -0.06018290117744399, -0.1582267547515931, 0.9422156225677087, 0.02329589405322216, 0.49926440206505873, 0.13033085385874346, 0.11146325743103574, 0.15860807189766005, 1.0571211325828083, -0.09600993042156258, 1.1112555299816538, -0.16734420170786624, -0.09255857765446518, -0.07302601467020126, -0.1015920188915029, -0.03500218035925601, -0.2448222247415108, 0.16402640853161954, 0.0635704746225626, 0.024673216539027765, -0.047901548298148355, 0.30393736646395986, 0.1203070782803105, -0.037418695247110945, 0.011188845525662627, 0.02802585794566803, 0.08769496946569418, -6.766491813871746, 0.29787882887862205, -4.644170843018203, -0.29912384309266915, -0.19313149911762426, -0.2101220576490612, -0.6234513518326245, -0.011873591371352465, -1.070075158671571, 0.3385199131901492, 0.1318925167789699, 0.05306352253783275, -0.06902095907874362, 0.31924599328673153, 0.33909567232198784, -0.20358282109845588, -0.023245555448580646, 0.05448555109056963, 0.23312552029416223, -1.4919160651464738, -0.10836049174665996, -0.580332216878104, -0.17743859987747035, -0.1588316236041934, -0.25293611957216083, -2.2694575641497177, 0.28171315288492615, -1.7293426767687177, 0.2829189418705347, 0.17146830240860406, 0.1439864404818531, 0.2759824191782757, -0.08122796620778294, 0.31458152713230797, -0.3262451135243093, -0.17174401314210486, -0.11133080376810467, -0.020025986304108567, -0.3527970457579798, -0.21251855474830514, 0.19794891965579664, 0.061041104925595446, 0.035147295977804305, -0.048423431109801754, + 0.03783992561007999, -0.06894182316584513, -0.11108209842712896, -0.12346852939192579, 0.09566672695295093, 0.13102365071116034, 0.04281241859724915, -0.053766380474325984, 0.007629931630976559, -0.05087180830378312, 0.10465809729870074, 0.10367082036602243, 0.15558194765837188, 0.14014701100889887, 0.13183537496505504, 0.06991712139194502, 0.05186845258532336, -0.05018116699380797, -0.02063961540156132, -0.041050291626544125, 0.10105121277152922, 0.1444566309048378, 0.05277956735961797, 0.015969659226875172, -0.1184773291818641, 0.0671440363747185, 0.011345258927886473, -0.032854428195238934, -0.05531838515793556, 0.07484662834191294, 0.003248123689406143, -0.03198994406911667, 0.08070310633789403, 0.07558290298026211, -0.035374833358196446, -0.00756086285589851, 0.13728161728710522, 0.04467714710500944, 0.0451999797219993, 0.01756068247603809, 0.1259395003091481, -0.04547907004924969, 0.03549851782737754, 6.534589450298599, 0.17654782360852814, 0.08756346106108104, 0.06623093825908838, 0.07224082058966341, 0.11678860549677833, 0.5311476575120524, -0.14479046310480972, -0.053145191788183, -0.025354559567497544, -0.011132716415804537, -0.002158644833164136, 0.0060739534183019694, -0.061707874656255046, -0.02337986683110488, -0.024433224782969026, -0.036477802232783296, -0.06496468184729692, -0.15715808933991618, 1.0283663095885685, 0.15365585422184153, 0.08846824025714825, 0.07605912716403296, 0.09425391642199676, 0.17591172557429852, 1.611970869922424, -0.19058006003017502, -0.09445761793380104, -0.06459978494704868, -0.055290462331391926, -0.06912282499148459, -0.22422081457566895, 0.14029387017395414, 0.06347339576281569, 0.04261596866024714, 0.028456434749850157, 0.012973076283930032, -0.016335841695497365, 0.14103030726499408, 0.029460475487928905, 0.013260339588244852, 0.012020535160206514, 0.02665749467576778, 0.08580990796160676, -8.436138697505406, -0.3430723201947443, -0.17267036840510525, -0.12979148138465946, -0.14216387738996006, -0.23888610023254797, -1.1986127654753242, 0.34441446243310514, 0.14469198310715137, 0.08288574721373862, 0.052337858145446725, 0.04090297848406345, 0.08410738679285068, -0.029704587888209844, -0.0184727390680528, -0.004130544171181305, 0.02151907333500358, 0.07203762248696638, 0.22180630479026717, -1.443813304834392, -0.22720760012104513, -0.1243514437907855, -0.10294791369431822, -0.1333556771039286, -0.2752991337995436, -3.0224874009233136, 0.3486830043487724, 0.18329086453207316, 0.12431684300391997, 0.100095516149453, 0.12065158807012308, 0.434199319984374, -0.32514840800703554, -0.17038139634628985, -0.12921806765694588, -0.10211808953789459, -0.078066390063176, -0.06656351679973027, -0.02947577217226035, 0.019704209529387673, 0.0392377783273431, 0.04624122849798773, 0.03337451596432406, + 0.10739454064094549, -0.04152972640386487, 0.07832920846340234, 0.07988703307441801, 0.045689415302473245, 0.08481856370085243, 0.007961786957090222, 0.10666846584265614, -0.029222699097588296, 0.05878081951453398, -0.07646261771456069, 0.07444437692796481, 0.11738757078787324, -0.04359051308673663, -0.1322863499501477, -0.00326968595877584, 0.10991844003621905, -0.0850595864402296, 0.011323218777350813, -0.07209040448025804, -0.014244959826354837, -0.0797873822113225, 0.021828608250985915, -0.042826428507525306, 0.04130410234799346, -0.0028776252037668697, -0.05484967166990512, 0.06175548423596507, 0.019981568976987985, -0.03377679400091473, -0.05578885065590103, 0.0007120455638918615, -0.12083277242909986, -0.03631926472772497, -0.01554820662295428, -0.09924902780191872, -0.015157582095701392, -0.01990934297671808, -0.010711369457173147, -0.036139864633625986, -0.05206687536218171, -0.007922652132100175, -0.022945554115650166, 0.006512805942006902, 2.632573874894852, 0.032694927609768915, 0.046023074375695194, 0.1009062201757761, 0.7002009545621017, -0.39573069224984747, -0.6839317847547529, 0.1264228663238704, 0.008156703170634744, -0.05245457965396624, -0.2974050867372563, 0.6280371443441065, 0.5604869564304177, -0.3972479207704127, -0.06915002619401367, -0.008715633021984304, 0.07302250035258945, -0.785604236094188, -0.31500234318887943, 1.0365144850582098, 0.10643341539872678, 0.05683774522347845, 0.0640146179369343, 0.5930782428007135, -0.06482113018605185, 0.020998752637966987, -0.04215703359188522, -0.04195633120318802, -0.07081065868347797, -0.3322658416302755, 0.3454426904788215, 0.40453920473477656, -0.11908645477171463, 0.0020991402708189777, 0.047603448163412804, 0.1905008402733851, -0.6501300246770412, -0.40861874171785395, 0.5040263868955035, 0.06190022699672047, 0.000902929492418103, -0.06196406704135827, 2.171304715949769, 0.20745154988626957, -5.462992060347034, -0.11605143745271795, -0.09453660733511604, -0.16754283659694857, -1.1502749913074533, 0.5668818527240935, 0.9554228210510034, -0.1251591556619639, 0.021210829316352098, 0.11484844357153284, 0.5649253546945119, -1.078944601296936, -0.986370443084556, 0.6140235971827533, 0.08770792678641759, -0.02190845346284709, -0.20654390068024167, 1.631383440995585, 0.6745193493069005, -1.8642519004434794, -0.18725835120164158, -0.07557293909301399, -0.04730345930126112, -0.03702336410347584, -0.11120218561955819, -1.2297577015778922, 0.16928189521847403, 0.09152577118349386, 0.09518362415293391, 0.3588934860240191, -0.32653242815244854, -0.34569195189645063, 0.021803382512361736, -0.062481047145893864, -0.11250816065117586, -0.33321687806096956, 0.9502909037651441, 0.6145810554068105, -0.654846014281894, -0.053032463542211326, 0.05023254758817497, 0.19444411738993617, + 0.07821111028182498, 0.11320927482522537, -0.07787610494983747, -0.012788776352234237, -0.07772265613358235, 0.1122640437098111, -0.08612803542470145, -0.007133340498108083, 0.05501975371771662, -0.11081549220961812, -0.05146099819874918, 0.0024627798529707726, 0.058946080643732496, -0.12291021422702912, 0.10085810736950589, 0.006027417869735495, -0.02564134878843449, -0.10818361420088034, 0.10174954213548612, -0.002235131453841336, -0.10652540743904852, 0.09474280527752836, -0.013647854184091878, -0.025181672170202975, -0.015337328872611748, 0.06027612462872409, 0.06073977877597907, -0.10350337299879063, 0.014455661254907813, -0.016241988378409733, -0.04324467689326547, 0.04285584194269926, -0.008821256577188942, -0.008571438777126699, -0.052891784761243434, -0.005804764517171367, 0.030264294358254045, 0.07534572160796688, 0.052701593732588294, -0.006380689779660995, 0.022846689405744032, 0.08779458633992462, -0.02187351015572128, 0.013021398743281207, 0.09716776723362298, -2.638179846998582, -0.10736207728824015, -0.717066615128422, 0.33094849371537766, 0.20305746667652413, 0.2204909962901807, 0.651132518377997, -0.08412275091791482, 0.2849223764483868, -0.5708949764349242, -0.2692296766204615, -0.2632707158439491, -0.49390511916834023, 0.3962857804400677, -0.01840177882267533, 0.7654517200045605, 0.18973022219786484, 0.16762660688092315, 0.2547982027208409, -1.0570140963531278, -0.14033715860091928, -0.6115763050235408, 0.06288393600937248, 0.036202887986363175, 0.02982958481858844, -0.016445896510195568, 0.08736896854747495, 0.3522310755057857, -0.29699649486412283, -0.16729119819735916, -0.17536843609234223, -0.3785224944838775, 0.08843263889096803, -0.1814443455981328, 0.6036865370480886, 0.22055768518663796, 0.20844133882582339, 0.35048303773969136, -0.49942726655773345, 0.004882944217209084, -2.1559725850530986, -0.14231123564155432, -0.10975364084751117, -0.14954530129016158, 5.477994315666712, 0.2321911091256471, 1.1874555445655668, -0.4777692982077103, -0.2956757285983821, -0.3162431811009944, -0.9145673306619864, 0.04330084343584217, -0.5655232629073204, 0.9702616906255296, 0.47007869942354974, 0.46635998292293657, 0.8803821572937888, -0.5937951054410636, 0.12755350984802932, -1.5740862692399658, -0.4015767727728333, -0.35788160653207024, -0.5504090341666538, 1.8884399234305929, 0.19377801389245675, 0.0594356041779934, 0.048034745227433895, 0.05063455998730959, 0.10013219124939021, 1.2070323485920527, -0.21526001027892439, -0.4106091426354416, 0.27413250852305276, 0.1661362280465557, 0.17840383680748995, 0.3384927724459864, 0.03947505612357982, 0.3554433595956547, -0.8625321069197457, -0.32136851224850993, -0.31561930856738485, -0.5428948527019006, 0.6198752618617553, -0.1232533983544375, 3.8511080826397643, + -0.022879254181390658, -0.04562768069822624, 0.06638105989617968, -0.07531834945413415, -0.08852271616109424, 0.12710268186394416, -0.12180855815780196, -0.09506799576947254, -0.10794072036408735, 0.06587180633842869, 0.07879732109123569, -0.06831249737198039, 0.01914618042663669, 0.02464989552895437, -0.003675293363529267, 0.06417333826789601, -0.05625060536197213, -0.08796856527054897, 0.11135721973242253, 0.0859805337127094, 0.1285732062556013, -0.09887389681309253, 0.03446304067789867, 0.03685883400708924, -0.06843188661655, 0.015199924138957575, -0.08606708527294772, -0.01307667245265207, -0.09644844639866569, -0.0112745325503903, -0.03516824139131051, 0.06212823894413882, 0.05603781963069014, 0.04533496414926371, -0.016813870633249788, -0.01532627102023224, 0.0841145292184082, 0.11507562812636149, 0.04089385635715693, 0.025543611611867398, -0.04613829634903566, 0.007925296761129243, 0.03627215443566516, 0.00229422969882417, -0.022903335083283415, -0.05331980351053406, -2.953313216009427, 0.3081719228689, 0.15929675004702332, 0.133212097488756, 0.14522042577548122, 0.21854355575739498, 0.8455998396679689, -0.6392780698604459, -0.23779779927447914, -0.17613846513888498, -0.17330817928454537, -0.22431802865250922, -0.5295538409616627, 1.030436866920351, 0.19908188560049633, 0.12545107411856093, 0.1108717191307112, 0.12696357493402657, 0.22422541528759193, -1.4361176588087687, 0.003564895266452095, 0.015355428017770734, 0.023878380835409274, 0.03569338262044541, 0.06736942525197476, 0.26018917488161225, -0.25954569901427343, -0.12473577929678918, -0.10849628805692325, -0.12100064044740111, -0.17470410024731853, -0.500570131981943, 0.665464143787791, 0.19022709567267032, 0.13790411201653088, 0.13904844351289747, 0.1824139241181073, 0.38547455312844886, -2.371370374427911, -0.1237765047034502, -0.076621288634179, -0.07223166861130915, -0.09125550294523149, -0.16843010470374586, 5.863719041261618, -0.3993514963179408, -0.22103259879077242, -0.1943478494953973, -0.21782423045170907, -0.3327591544099573, -1.304263343177162, 1.0225068336900511, 0.395951683223174, 0.3055850347711262, 0.3115840694201426, 0.4135975481610791, 0.993898383251836, -1.9593917836140067, -0.3899213947079526, -0.2552638829027478, -0.23753658814767864, -0.2877303121292637, -0.5339098199873759, 1.6674801058135653, 0.17216291737148004, 0.06396860572045204, 0.03152991814386297, 0.020062628448431763, 0.018209235090387188, 0.798811697931576, 0.14817016856306553, 0.0959697292315951, 0.1077410996320948, 0.13681378768499436, 0.20559848212922044, 0.5629597009193678, -0.8449278353491574, -0.24606929367358732, -0.19362154409618537, -0.21389866571841665, -0.300713070684681, -0.6581987817103405, 4.0419882274495675, 0.24329419064655855, + -0.10293453786332228, -0.07730066327408508, -0.052107161203399754, 0.11203455081305155, 0.01361977292751878, 0.11058709545707239, -0.0920714602769011, 0.027954737871852826, 0.09167345760531043, -0.04959464104808499, 0.07856938424744621, -0.09412000047679643, 0.01027847804049518, 0.08827417046322064, -0.02559008738610038, -0.06540560000392873, 0.08786967590003787, -0.007707628814995865, 0.08084405096615506, 0.04488695466944948, -0.0371176423611464, 0.08635024129940347, -0.041410627961688776, 0.05069944484033974, -0.061946319565461316, -0.03202346033217052, -0.05457907342047018, -0.08734763788228414, 0.002804517324107784, 0.05013807665346994, -0.04703733579201849, -9.023851665634046E-05, 0.03294224940352914, 0.04804782295662627, -0.027970297793886052, 0.02460160191033125, 0.07681580717295515, 0.05150200668406666, -0.08254930279842229, -0.09864118844274859, 0.029411817484244936, -0.06586855605225105, 0.06228277006437924, 0.035723488802582755, -0.10973704302182531, -0.0649339494055032, -0.05976747174457209, -2.397688722483627, 0.11579318213280132, 0.11889406441217798, 0.1551861308483603, 0.3616462482300034, -0.2511683660052253, 0.24157042743386764, -0.2596722384344818, -0.16660949083434673, -0.16120312478454432, -0.2247854979889234, 0.3518914768784556, -0.19758730752951742, 0.40385792123945163, 0.14258022547495175, 0.09958080882319359, 0.0841005899906068, -0.11498985659932526, 0.21751369321774994, -0.9060820691624707, -0.05016235315193848, 0.017225606910037827, 0.07763878360364096, 0.3991609639490458, -0.3106959264813992, -0.365205788978369, -0.06609610057214615, -0.09139311220693544, -0.12863527222931814, -0.2748896791813467, 0.39311959399845314, -0.013184236575181474, 0.19111809543859132, 0.12609757483513062, 0.13197556831394686, 0.19539272361776766, -1.9387009549778629, -0.10804731765739892, -0.06459066627219345, -0.05889055269965504, -0.06834849973226875, -0.10653155257002232, -0.47337072205398856, 0.028065551462348376, 5.241597997348876, -0.11198835356955195, -0.16757879160404, -0.2521138991461671, -0.6731899806268982, 0.556866347653473, -0.15634170574922174, 0.368733626663321, 0.27791444959496336, 0.29845960412844036, 0.46796913546058705, -0.9076782437549689, 0.21800483657155714, -0.6270737904884651, -0.2647447991097843, -0.21779061243593745, -0.24268080049282031, -0.9998058057895189, -0.41486623159339553, 2.0814871982493535, 0.19609011962967282, 0.03931881161363382, -0.0732191372645945, -0.652446928224363, 0.6444611220131278, 1.6947781190213052, -0.04563188416841646, 0.07689621969181981, 0.16439840823053486, 0.4319295946850439, -0.741338649713224, -0.25073438117503277, -0.13386185387154176, -0.15802543131976213, -0.21190596906825132, -0.3793365197343245, 3.635938675374165, 0.38101844788773687, -0.09736386960041987, + -0.08835228214065807, 0.10066494796819556, 0.05685857803856651, -0.044686771235760224, 0.12576033462269082, 0.06663205941322912, -0.01435119700814077, 0.1056499152620069, -0.089382319676112, -0.034490057979629646, -0.08192468637468901, -0.0744706601958601, -0.05616890195312867, 0.046713242117128, 0.07958868905731066, 0.11417963041058198, 0.02211004051710228, 0.10862173225283829, 0.10488448272319714, -0.05405504226860086, -0.04937133891556292, -0.1364983472548151, -0.07067285115527332, -0.01974889540276944, -0.022274978808450346, -0.054388678076017355, 0.04792246955447463, 0.019615540002625376, -0.06332697792932658, 0.05929249996535355, -0.06262597248316452, -0.032532709557298284, -0.0017274855848885115, -0.0045895439620740166, -0.0035449416688914637, -0.03676474160344738, 0.03199047534186659, 0.057097241043711146, -0.07228414137608796, 0.05719973666852669, -0.07077880529289265, 0.10348711644808177, 0.025933928077656005, -0.004393567079038516, -0.07890256959723416, 0.10053594812755429, 0.07252555807100945, -0.11079563474284632, 2.406135806984063, -0.15561645513253752, -0.3526996761855772, 0.29265066147157137, 0.06897336986898439, 0.005355911517654296, -0.28158410686940655, 0.2675929877898694, 0.24080783452594243, -0.38405124063831314, 0.012129360244041765, 0.06950474938417724, 0.23843243152034566, -0.3922155179243221, -0.13062593774578585, 0.12276788363414878, -0.1255769922148718, -0.13220201718924618, -0.2144911764142025, 0.8953568191296983, -0.0070998519412317496, -0.381711643978213, 0.30903785769892755, 0.15930600593741162, 0.14509373048844737, 0.35039101545254525, 0.10116775833413355, 0.2599204762585613, -0.4202484735462666, -0.09594693625203138, -0.0445533681669813, 0.05205477672872094, -0.20334957684630123, -0.20049773087492415, 1.9588721405227454, 0.11652467215286866, 0.07175206133305789, 0.06260703726532951, 0.06719530667151472, 0.1025871768992182, 0.4600398966274618, -0.08451301444851719, -0.006090149252558824, 0.05332937173703249, -5.241279947144571, 0.19623340066630657, 0.6475118846579544, -0.6104919839006715, -0.19744249964260896, -0.10386117628530506, 0.21978095506577044, -0.402104847015998, -0.4745180463011258, 0.9678255782098151, 0.06981123957627378, -0.04363383621319339, -0.30390265047596415, 0.6205984103645742, 0.30130860049109753, 0.9669885434397406, 0.1674516184903846, 0.2479571510320887, 0.473556733585203, -2.050656042518047, -0.09473523878767609, 0.6231167554673619, -0.5909490295519415, -0.35642428273650867, -0.38218932881771206, -1.690362660877494, -0.02689031183157875, -0.3871723903072517, 0.7653732976002545, 0.23347383655135723, 0.1745642935602032, 0.20077415983015934, 0.1790845536138404, 0.35059196363514433, -3.67648194288786, -0.3310738392335947, -0.234844974394251, -0.27932732371112673, + 0.007460654324702252, -0.014464292803872942, -0.025572213663787417, -0.032777269525708704, 0.033900139594270365, 0.05365540232190041, 0.04430368282066643, -0.05945817049819868, 0.06501113381145124, 0.08840547580173598, -0.05215739707598158, -0.09829587052295384, -0.08218890804271614, -0.09828792138753853, -0.11869607668738313, -0.1280481573305896, -0.11512198542130696, 0.11370147841663841, 0.1618907228201953, -0.11016013438588666, 0.10793029055172074, 0.13423949300998037, 0.11439517492143735, -0.04397701175215197, -0.03361801082063634, -0.031021623687082046, 0.0469120373574698, 0.05898538013832211, 0.012611447086866921, 0.05371742842420461, -0.03197422575481167, -0.04412483673251956, 0.052397684267435775, 0.013198330570973308, 0.052645504352643056, 0.045883158243720724, -0.09035124933374829, -0.004593610116724533, -0.07188753650262548, 0.07713028119908437, 0.054850670486442286, 0.007137102335115555, -0.0817248819152844, 0.008893416982688102, -0.014739502910006499, -0.026927974173382312, -0.01182710584594026, -0.025233092080287504, 0.03502123335839483, 2.285124862978691, 0.30218722033692114, 0.08843565066154427, 0.04957653829525324, 0.0314817842380051, 0.008159517805059524, -0.21437050318300546, -0.2888095817002468, 0.022184269959623637, 0.0408372078204029, 0.05624569647455946, 0.09105515724881125, 0.2574099059601143, -0.18074600284101447, -0.1787866233496784, -0.13360557789562416, -0.13051788691755392, -0.15755698007713054, -0.2708867177491612, 0.5589249821953117, 0.3933816306868825, 0.19292677649054985, 0.15262669696665926, 0.15329081530484734, 0.19550480198520304, 0.5478041702632617, -0.46741911358804644, -0.1250582533794971, -0.07567489758884655, -0.06091632416513765, -0.05818510290939982, -0.026568438329084232, 1.9844836341530403, 0.15183273390075364, 0.09160926518779575, 0.0756855497288634, 0.07913461432967944, 0.11287364195103128, 0.48470342906338165, -0.0856018517168636, -0.023663171154532744, -0.0032841483149458617, 0.014286198567442177, 0.054039338801713716, -5.010725354722263, -0.6914273921074667, -0.24796357267128633, -0.16716655518883033, -0.1434709460081114, -0.1393408963761404, 0.0184999138220579, 0.902866180690823, 0.08504210231169107, 0.01522503501198269, -0.016882373634263814, -0.06033088711008838, -0.2717736326653952, 1.4467244571389126, 0.253830677270713, 0.2257122845659612, 0.2408556397910333, 0.3094414561503896, 0.5707129524415901, -1.463223200450916, -0.7886155372341082, -0.418795824493419, -0.3498398121036209, -0.370955128614316, -0.5081169615161418, -2.1067631185622693, 0.9446259754626838, 0.3077689644480519, 0.21039299385426435, 0.19531263316697856, 0.2343925346885053, 0.416673180294037, -3.9004718599406, -0.4436944673495009, -0.2821944751272969, -0.24416723660342865, -0.2720555929952817, + 0.09641429961050155, -0.08795237831257308, -0.009804126613803352, 0.08681776048818089, -0.10235198963441246, 0.008800645478790765, 0.10018126515311306, -0.07646303278025511, -0.028000390676744636, -0.10591437255139081, 0.05510615856365323, -0.019482754811102926, -0.13100925390192525, -0.05214037849360646, 0.09760654625260376, 0.11268550794911969, 0.03683092771806027, 0.08505927924196506, 0.13790141367733097, -0.04468800658436933, -0.096376350196691, -0.0819603854829572, 0.027660520291618085, -0.026840727312794778, -0.048011054421142105, -0.0264593982297014, -0.016152472647429385, -0.00700357367642726, 0.016970609195205388, -0.006831721619404789, -0.02532688133112043, -0.04728328519527438, 0.06467616751470952, 0.10155424953697147, -0.008553703029177274, 0.10634305171797051, -0.08398196432596096, 0.07163873250953778, 0.024627560114982842, -0.13679329622833128, 0.004763152283628984, -0.0696165962813382, -0.03914321661787249, -0.004161320763693334, 0.08658886903085784, -0.0798624847014894, -0.031297769133913036, 0.1363093312959084, -0.126021525012504, 0.004801931775853262, 2.4603523213903444, 0.05239885478868772, 0.04147048155425212, 0.043142036687695895, 0.07702093580787805, -0.4574909195971821, -0.33808691017110565, 0.10439061879204065, 0.05467644287957407, 0.050904106499777335, 0.06434990022797114, 0.21557996656141518, 0.22130164368568744, -0.3675544868802542, -0.15207284387474013, -0.12994395473389314, -0.1548045974129793, -0.36744102689512725, 0.017810745098836955, 0.9630543080073348, 0.19924407034868416, 0.15312685016161015, 0.16731919034578385, 0.3063375563738392, -0.44197404145848573, 0.24885696648819972, -0.1108544747898598, -0.07425729759417454, -0.07388622177607479, -0.11652839206567148, 1.9733340817743397, -0.06974932068282248, 0.1726037888410297, 0.09177700459880479, 0.08145093182571601, 0.10543316460086102, 0.4437667311789798, -0.15380755664586404, 0.03807378238377411, -0.0036814177444920437, -0.0027365673334570906, -0.002512613175387271, -0.027304506739303902, 0.1513343153897509, -5.3288564714337445, -0.21359817438266826, -0.15882518180038394, -0.16682554437331876, -0.28444819347657924, 1.0604472933562783, 0.3495987701670345, -0.016537837430863123, -0.0010574800172649113, -0.0003177077019467234, 0.010999241403799098, 0.789948566637924, -0.5470334278409746, 0.6539511839805715, 0.27046984585988665, 0.23427415688465536, 0.2794645145812391, 0.6328322384009378, 0.14879049174285652, -2.153381541712615, -0.45952219204836087, -0.355131099372035, -0.39189091714146557, -0.7173076826092745, 0.8144486215323623, -1.502120253196997, 0.34135780754004985, 0.22283284236488554, 0.22340898197946624, 0.3484349011669486, -3.6391502518619996, 0.3790197775636226, -0.5607171416822947, -0.2952310359122061, -0.2629706133501535, -0.3424843172182209, + 0.09672508247172909, 0.09637701780600724, 0.009217314830052573, -0.10591673500164275, -0.0761692381830112, -0.024699109026243952, 0.09837524624864541, 0.09209894688039745, -0.0197321479514817, 0.11030156816882732, 0.08037137073163775, -0.00859035154283054, -0.10167157352475599, 0.13218870837255015, 0.04551722040963017, -0.09334739043311177, 0.03120856104816888, 0.003369125081735744, 0.07783841524621174, 0.05988388240753561, -0.02988444452416058, 0.07639310755425587, -0.05488276204728586, -0.022057843920278285, -0.0495602397352967, 0.051847966277198954, -0.007981163985848045, 0.011013570618258596, -0.005236298276554946, 0.043601024896256384, 0.05224419795660082, -0.0663661050589974, 0.1249868751967788, -0.04579878270426021, -0.0571290583659245, 0.03488657251597018, -0.10605808934005959, -0.04735940162755627, 0.036825100904742655, -0.017261673547780652, -0.03164140643644097, -0.06432297526908354, -0.0839168143615789, 0.023618301358735865, 0.08968174202113977, 0.12085940495196083, 0.003222073886997671, -0.16721877267612917, -0.11852047880568733, -0.00575646262395453, 0.10695736391857287, -2.43626781452054, -0.047225921635484336, -0.09026550473378009, 0.4186876520353124, 0.08181377813067572, 0.08044033563927955, 0.2986377632610926, -0.11855257178661117, -0.0647489472347002, -0.17732167082296846, -0.032740728816982145, -0.06784759846906024, -0.22313148630140062, 0.3741821622966912, 0.1825547111775907, 0.3483306732203054, -0.11502566299713768, 0.0042365492074105116, 0.10063229539902385, -0.9397646902301353, -0.22138851998012038, -0.316076073621266, 0.45562522194902016, 0.08447744514320688, 0.02217482423639513, -0.2998845902510214, 0.11260357468604604, 0.13471412772578686, -1.9684357197699913, -0.061862627032121885, -0.0015574824328064146, 0.12350757171419026, -0.16723989430076516, -0.12599071419700744, -0.45617755573964175, 0.12186318228701033, 0.05765925127918453, 0.06170298640813167, -0.06100365803916914, 0.002990931555918841, 0.046153319571748, -0.08847535648568705, -0.0561348493695315, -0.09187971352254629, 5.296246374966586, 0.22021488278480333, 0.31034706836238424, -1.0220951540798509, -0.1644922389271372, -0.11168899747181937, -0.25766553867365793, 0.033695228001648814, -0.028361085961256638, -0.8642686906325768, 0.1573206583702746, 0.17617664465407679, 0.4820252450360075, -0.6818869882993448, -0.31973058255572795, -0.5705261540166858, 0.11715935563196433, -0.07208952460451967, -0.3024124723080307, 2.129428984928598, 0.5192292781167356, 0.7235993331314023, -0.8988561509548998, -0.1406200341752062, 0.02818182581120123, 1.5883334189154228, -0.3665505688807634, -0.3895776044131507, 3.6653308811586416, 0.12614543023709393, -0.04216220873100052, -0.5042344271024632, 0.5580711154332917, 0.4079937430099424, 1.5058296709047476, + 0.008107270579020874, 0.016476990731472334, -0.024791406202108745, 0.02960028404762492, 0.03697998574068837, -0.05642873591305009, 0.05970855637811134, 0.056891333534731754, 0.07127406348023047, -0.06281483480641231, -0.08031408401426193, 0.09431844844080474, -0.07611241488901493, 0.0748809790870485, -0.0808983214093195, 0.09517970475899738, -0.09758125859232425, -0.11520342540356643, 0.10484954610752459, 0.07527548966660431, 0.1480396041223459, -0.1090508173187891, 0.05025869897978004, 0.020735050475683674, -0.059507798511255254, 0.0634353154470161, -0.0013348583556964447, 0.018223521192189295, 0.02067607068764116, 0.022020842825784127, 0.03721729798952059, -0.06837212178913099, -0.059090160665607426, 0.10374553174633085, 0.14991501130434126, -0.08494367210211262, -0.034871364371507785, -0.022656737155636215, -0.003233565359500795, 0.021801680574643083, -0.0345332778591071, 0.03287821027942143, -0.09541780640563108, 0.010974207738885697, -0.00022987042127699142, 0.013582400984720966, -0.025992484224870067, 0.046412847379709216, 0.0499525076661044, -0.04932298887919362, 0.08668559813434112, 0.07440794021863856, 2.460790056080703, -0.4098831148254639, -0.06793232454027967, -0.045810849958516586, -0.045371358162107245, -0.0651717347887748, -0.2849352514840613, 0.2431449141906119, 0.03376897264732481, 0.03144573367648634, 0.036499296593661856, 0.05747024530697187, 0.1885474263792814, -0.588268874506248, 0.08424590946809207, 0.01138235421508299, -0.0032187326317890674, -0.01810899174763031, -0.07399509344088406, 1.0936284315803033, -0.39533418445911017, -0.0718880878649843, -0.03991235734992449, -0.03074668315522472, -0.02419197215538549, 0.23610891502689363, 1.9095171794887782, 0.04583993494593788, 0.015934125955381837, 0.007350588337228368, -0.0023295774662974444, -0.08719787290051337, 0.5375936888287689, -0.09841043397996121, -0.04072752535334795, -0.031061876803198024, -0.03413114573469195, -0.06032465485860353, 0.01737946357043693, 0.08700837933196906, 0.03681739828998179, 0.03030451608899555, 0.03638997510130927, 0.07231375468523044, -5.395436488196873, 0.9568479840008508, 0.13639106725366118, 0.08319486446541235, 0.07543558442988685, 0.09391724625603715, 0.2841491996546067, 0.8226618099070876, -0.13682083278751067, -0.09348363403320759, -0.09702776338498098, -0.14133863661689594, -0.42453938014024495, 1.0108689779367193, -0.07233819614735149, 0.015597174216616216, 0.037677786655012424, 0.0747881888674653, 0.23180082255770162, -2.477430214117076, 0.7586611780457562, 0.12774015352752888, 0.0638249233070528, 0.03925352994897602, -0.0026588363593912367, -1.40456853423167, -3.4841870962660884, -0.08771983967055946, -0.01968537988758684, 0.0028316067884375795, 0.03988239195750831, 0.38365257939799297, -1.786304757838915, 0.2637979035704893, + -0.08796432849544528, -0.10935826434941659, 0.03938808567754572, 0.06702256301847191, 0.10251273977259552, -0.07508856050896197, -0.010766518071993223, -0.10501339841917273, -0.08725861732796156, 0.01663957039877984, -0.09275466574723154, 0.14631196302354724, -0.05325865666966434, -0.07444193877137416, 0.0952324461081582, -0.07937489815443644, -0.008330476277694737, -0.14465486411716563, 0.1260463298934497, -0.013612735491065625, -0.10121921687866248, 0.11861798406470395, 0.01843627639031901, 0.04614127601201474, -0.06273143459746058, 0.00416760563580719, -0.01175290465486719, 0.02461039240607321, 0.044542617734398694, 0.023097569350560725, 0.02259905847129896, -0.03694343242134727, 0.0031631525527296934, -0.1225487775025251, -0.06419853009201064, 0.07357194633572381, 0.0103592628130183, -0.031685892965073605, -0.06046392413535159, -0.04465455446621896, 0.03174585265640944, -0.03970995687559142, 0.04070619609713243, 0.0026675097503958824, -0.10063090294898075, -0.13640460859140618, 0.04406669478149535, 0.11613927869894405, 0.14649650577981774, -0.07752433037325343, -0.034546781253930806, -0.11727417943503776, -0.14655274259571124, -2.340171820137333, 0.0477653105967788, 0.04120463368579336, 0.040136734819599146, 0.042883590920128056, -0.005513817574317348, 0.2853403734757287, -0.10700863549591821, -0.045263991648237745, -0.028573050531503885, -0.010889680317458683, 0.1238608801437217, -0.36572314728533567, 0.22017636118064668, 0.03474267448090115, 0.003202966100422644, -0.022149703904831564, -0.11833654197990981, 0.5148202232845096, -0.6613890244747348, -0.012194916415546875, 0.026003308955084542, 0.0498679887778416, 0.1072987071412575, -2.148266240828004, -0.812941208387375, 0.057071152566910754, 0.006658185947890194, -0.01408881055333679, -0.04676237400177548, -0.3681727829965181, 0.223874999851022, -0.018714843422391107, 0.014675123226802922, 0.02354930720786788, 0.03723424327410216, 0.0942042760628772, -0.034634103182219766, -0.12302412027834685, -0.03658652014582605, -0.02328391545021312, -0.017435063528894568, -0.00415986007367572, -0.2611092790615378, 5.013384866635127, -0.034723768502095353, -0.06430057927303623, -0.08236329403311216, -0.12280927113865103, -1.055171387447328, -0.2856577537605268, 0.17795428553255738, 0.09708652652306937, 0.07877593851969689, 0.0641146713609813, -0.10708555487414417, 0.664422496437322, -0.45925703950054897, -0.09104098091566298, -0.025843142528140683, 0.0232085056200122, 0.21943154557451935, -1.1085770285282892, 1.5539002166970386, 0.06484249927447305, -0.03872462449241998, -0.10192683003940761, -0.2508048305287276, 4.33053139805394, 2.6642642776710557, -0.19142305783517888, -0.040869684288307506, 0.0229899175352882, 0.12135796072977634, 1.1686776941360382, -0.7648784997395531, 0.12036006870538016, + -0.10316192961948405, 0.06659409354515174, -0.04062901823105995, -0.1003926523436292, 0.03166044580626952, -0.07974826738027858, -0.09393267246348344, -0.042439013021642824, 0.10957400519448168, 0.07372026293417824, 0.1030067397891197, 0.06825087001605336, 0.012809409716498275, -0.10300014044085117, -0.10455574824167865, 0.023168905184152665, 0.16165514415135532, 0.01308143620373679, 0.08862025861720521, -0.06574796716308094, -0.01996849671287018, -0.058687252564919516, -0.04508660065188342, 0.00518779596898287, -0.0519419574727225, -0.08775752619025584, -0.02898092970559836, -0.03569886691679401, 0.009846085747761144, -0.03685145347290995, 0.01710609872356751, -0.053315361279469675, 0.014730027473133445, -0.007046774396025905, 0.039812480801052264, -0.047426308382988794, -0.05555550849207609, -0.0170802287071456, 0.0022075850965065187, 0.05508054405239577, 0.009167825132014843, 0.05529290513857833, 0.016801268357849578, -0.02140074652593484, -0.11535671505688751, 0.060563769373525145, -0.04083111650014681, -0.1601160508592189, 0.09262453865081174, -0.12168712520149073, -0.14477205834007065, -0.08230348898148257, 0.16091931692138348, -0.11451393714249411, -2.355312360298403, 0.03806812016451333, 0.03484915356110601, -0.03340586058920708, 0.05768775598005199, 0.07650565872472952, 0.2859796968219282, -0.09842496248677635, -0.017156344649205513, 0.15055859684651496, -0.21402538435971472, -0.16090385606491453, -0.2812242842961168, 0.2276530812687334, 0.00900561431710567, -0.12828765363055117, 0.4367719623139948, 0.18386457275242266, 0.22189826910072352, -0.6974553634879392, -0.004057193062998114, 0.09615188929594692, -2.12334890164478, -0.16605331733720208, -0.15545403456467907, -0.7660748113698106, 0.056794861430365634, -0.030855123945945258, -0.3752148661807083, 0.14704763156195025, 0.09104591668984066, 0.1467491979681512, -0.03580991146845712, 0.018806505148239727, 0.0793401366958264, -0.06809546215208526, -0.0071838406221617634, 0.0293138369678132, -0.10526693160541323, -0.021659291357507854, 0.009648298644065162, -0.2078225615359502, -0.08304879383578052, -0.11785290755855804, 5.05118467832019, -0.028388585570647606, -0.1026697871487241, -1.0236488991607453, 0.015869809622135356, -0.052787205237218845, -0.3424787017860099, 0.15265151304899416, 0.057046801326370966, -0.1709848013138371, 0.3382695354341042, 0.2959543654675031, 0.5680364899647877, -0.454023995730084, -0.02804297677372225, 0.2596389163328601, -0.8912344547490918, -0.41793692899300905, -0.5458381601678812, 1.6167174895156724, 0.02908376206877772, -0.23577745756472424, 4.235330429254933, 0.44195076117110094, 0.43350311362919974, 2.5514443611251036, -0.18001565408106618, 0.07930789660834092, 1.2040679693105292, -0.44659137950733724, -0.2960037397528634, -0.5428867558748132, + -0.02351292840698268, 0.04461229229667659, 0.0764151970320865, 0.09344396469846193, -0.08859969692800178, -0.13402940506724975, -0.09164409960595953, 0.11829993481365982, -0.10876270164930953, -0.12003347351711936, 0.030195231579952297, 0.08224199170710823, 0.008244352015977488, 0.007134462196831965, -0.006415849135558402, -0.011268168416579315, -0.0788202096953574, 0.05499720378158709, 0.10830663625153455, -0.11078962606147878, 0.11563399606358069, 0.08943686071337616, 0.07375972051729082, -0.0650559445173549, -0.05105499400401422, -0.0349803627580859, 0.083567895576971, 0.05079117034898961, -0.019073749889450622, -0.03121524397665621, -0.030655713634708485, 0.030171276726613978, 0.013094297997466819, 0.04947957612955907, -0.017194404277224528, 0.03886335121731984, 0.0465872471348736, 0.006719333337328444, -0.028207385969839523, 0.02294587641241129, -0.02946986649958786, 0.0432806558309816, -0.04883648178845948, 0.036076410980788814, -0.03962435514866786, 0.04456273375679737, 0.07177829252817214, 0.09510683168245955, -0.1500684377039028, -0.166552073577247, -0.14911018793261538, 0.17048100879576158, -0.15069155446352275, 0.19257612478608324, 0.11881421381835199, -2.3587018188651343, -0.035830642646324073, 0.04944663170627156, 0.048334653711900696, 0.05607525232319034, 0.08444519223392255, 0.3143459739808224, 0.08084808835878368, -0.22054384396730548, -0.13390554243617675, -0.12629502516809976, -0.1534360937062067, -0.307710460430874, 0.09596537886208642, 0.4679421968430816, 0.17257516574422005, 0.1395372755106677, 0.150917430398537, 0.23274300253998842, -0.6265561260806617, -2.1748754124624816, -0.16863090997177735, -0.11576570399297999, -0.11310412970486963, -0.15262536376242092, -0.8027173177764924, -0.30367195293379906, 0.16461458425630776, 0.08563790218143932, 0.06798875721205147, 0.0733429410878094, 0.1507208698815813, 0.0197202820000731, -0.08697600118202756, -0.02233602928308251, -0.003887331142336437, 0.011228599988812454, 0.044860429699808774, -0.0719884613083075, -0.21167036835117653, -0.0682326240807779, -0.06243418579492661, -0.07707319058998952, -0.13256157352467532, 5.006147894468828, -0.9673131036854781, 0.04109354682810107, -0.014484502110600136, -0.03882285003517055, -0.07767456038174708, -0.38324356640949475, -0.0977206233976517, 0.3310368742179062, 0.23097845933256844, 0.2359878959752415, 0.30131189475156506, 0.6326419581812963, -0.16801381547977756, -0.9423829783782272, -0.374823559848497, -0.3190885301483327, -0.3623328025149768, -0.5880385940448826, 1.4177513971785471, 4.361725313672372, 0.43997442210243476, 0.30796354544877474, 0.3096062536948749, 0.4346839890820249, 2.668810530150621, 0.9991388972824741, -0.4938312718668438, -0.26589469995902604, -0.2180796297449134, -0.24803506703115535, + 0.07775375074747361, -0.10584888965955143, -0.09949806151635925, -0.01928685275634139, -0.09486214933497006, -0.09589870370194478, -0.10081863816052469, -0.01922801456856953, 0.08044259802696566, 0.11842059730241233, -0.05746830785498842, -0.05594948966102892, 0.08078720170632935, 0.07648163443844812, 0.09802635929738325, 0.021807284306846107, -0.09092878505871095, 0.13587453245450795, 0.09211843071151862, -0.03227280502865495, -0.1084543932642854, -0.12006052370734538, 0.01769038684309249, -0.05705411946656283, -0.06598132509929548, -0.03608250918481469, 0.016763488923354424, 0.01984738651903887, -0.027428192766097922, 0.13925182560008006, 0.010759413151201009, -0.04523789514989248, 0.029979245431283427, 0.019947991153787294, 0.021059173781491358, 0.017276427200169635, -0.030204046281564305, 0.0037717734422877875, -0.05149820743998201, -0.023739825342230784, 0.01466732318066734, -0.046004764230489395, -0.027662853874518768, -0.02890846081584924, 0.09048653193225974, -0.12985310006233716, -0.11130147875915243, 0.004150990393473875, -0.106200048359606, -0.13532328393635817, -0.0650087985763025, -0.06111425121470706, 0.1416008810838635, -0.20167374720122874, -0.09852614349672194, 0.045962241319602956, -2.3508533894622774, 0.04455587712892864, 0.046390010823203875, 0.05458757176260681, 0.0816540314360703, 0.25485204242637705, 0.10881035319962673, -0.19757531416044136, -0.12873543953218852, -0.12265456300148936, -0.14805839702656481, -0.27672438910001995, 0.14869909910924417, 0.38361765301551237, 0.16521788210954025, 0.1354391131873588, 0.14581608669540116, 0.21624258146887884, -1.9248294006487825, -0.8260359311419433, -0.1594800591355267, -0.11218639368354799, -0.10953157355381819, -0.14433914178565319, -0.48963514617011317, -0.5996774181158124, 0.15306886006729517, 0.08293501153487158, 0.06589146965899252, 0.06968155017656476, 0.12461368555231629, 0.044440874084221205, -0.07960794870788593, -0.02204290985064561, -0.003804026863848703, 0.01130262986134209, 0.0433964243043319, -0.14333934069463683, -0.14372489819325623, -0.0640567349215298, -0.0603808914613361, -0.07480565034360168, -0.12564077409343632, -1.2325065577685979, 5.1976825801562265, 0.04217630809785125, -0.013211772153655432, -0.038205788074028635, -0.07691542617440938, -0.3173061637377673, -0.10662649762078402, 0.29509143119534154, 0.2217643661224995, 0.2292739387342, 0.2912980146588231, 0.5700366712955197, -0.2773126072752887, -0.7758846367175456, -0.35839501321030853, -0.30964377224846396, -0.3503086949772704, -0.5470085347782099, 3.712462624650606, 1.9636210680632153, 0.415852481052859, 0.2983308600864166, 0.29981094335430236, 0.41103956215410387, 1.5355304374145982, 2.071122262582372, -0.4585991326763995, -0.25719592084747367, -0.21136580486555412, -0.23610303432926483, + 0.10753399004449583, 0.05050970495049243, 0.08804970865318563, -0.08416137928903424, 0.06335320711110023, -0.13589708969324532, 0.0009355704571908334, -0.12785495466285102, -0.011201239973989302, -0.09861421175441276, -0.07540681797805482, -0.04819073799723289, 0.055952048438236084, 0.005531297836170752, -0.13623292563221753, -0.01218259008075946, 0.10118408233624396, 0.09739228741394398, 0.10206662076988425, 0.12797658794954536, 0.018762886244420914, 0.1432684433163094, -0.013300733581139791, -0.005057088756366234, -0.06664236618325482, -0.025529963088336192, -0.05281742282471583, -0.0010646189165539088, 0.04670631624514776, 0.011852329871085709, -0.11827891288794229, 0.023045645949380064, -0.0455173504523121, -0.024619491165105797, 0.011734910594647749, 0.009923190887197082, -0.04488816999369856, 0.07101394666501262, -0.05977177360093823, 0.06023142762285239, 0.07910766685700424, -0.050682551137347584, -0.07492259903678995, 0.004018393118974037, 0.11969350519051865, 0.08444058739065173, 0.1440711553220214, -0.08733375981706412, 0.042038551288862594, -0.15233667925240646, 0.04085849047437162, -0.1380512435269055, -0.053977927380844976, 0.10244430681917353, -0.12671413014649924, -0.03522827160492077, 0.10015353105277233, 2.3515386791316724, -0.0525382461367655, -0.07399763835701989, -0.2279969321069058, 0.11410072025054463, 0.019581425658503737, -0.19308263606382997, 0.19110971664158033, 0.15506175320239224, 0.25143540269326725, -0.29779201826045154, -0.016319613133822575, 0.13932935088390191, -0.35259423199902057, -0.17653395291762622, -0.20618505743360355, 2.003014622332679, 0.05102835038758885, -0.055109043607763496, 0.7753717679863851, 0.1574157245729363, 0.14749459159629258, 0.4518457917556405, -0.03930025914846712, 0.05436425851415254, 0.6753859993821671, -0.13639934533135423, -0.08707844032710979, -0.11975054963258128, 0.03183285525257781, -0.02686062738651382, -0.10633543524965065, 0.061884858982180685, 0.006993729274004518, -0.028778686545925053, 0.17521507091063812, 0.033463958270242455, 0.0013369652363244833, 0.13824705186288225, 0.07867464996508643, 0.11172651844755127, 1.179137863706677, -0.040457178145307214, 0.048752468980492236, -5.143454708985391, -0.017950491805602597, 0.0527226543187308, 0.28064023241018776, -0.1875376867424794, -0.07151923925507192, 0.20466226987332892, -0.30163944634145917, -0.28560476942087076, -0.5087990423283066, 0.5969141973315167, 0.04784779026322017, -0.27696717602337495, 0.7239780084016785, 0.4011324369041095, 0.5073381551678456, -3.9284137007617193, -0.1302985711213584, 0.1518069181193498, -1.8371047885222922, -0.41878870631996223, -0.4109112940442351, -1.4157255736708076, 0.12530288963756167, -0.15178891558617708, -2.2897885713017616, 0.41361608428705343, 0.2830793041507072, 0.44326410508396474, + 0.03844797481301176, 0.07352510343628398, -0.09900470049017489, 0.09905335794778704, 0.09876285788444815, -0.11860068852915318, 0.07825669312030087, 0.003285588168809553, -0.018253835594736784, 0.08391393315299728, 0.09136251948693044, -0.11871700135407148, 0.11428034459529028, -0.12671769186633625, 0.04722407262292065, -0.09853824850445225, -0.006705183073700556, -0.010998927878923983, 0.03293868032917822, 0.07265430761756408, 0.16253940796695382, -0.014615729245748114, 0.07946259719032198, 0.03337844316338547, -0.040334097296234335, 0.02091032510477785, -0.01252586427909183, -0.05268079994961575, -0.03177399860416067, -0.03633348203111341, -0.0700496199699108, 0.07415599401304024, -0.008329353843696702, -0.05002107126650954, -0.008024232436311347, -4.3560588580360316E-05, -0.009422018203156354, -0.01091449711239794, -0.05122382514226424, 0.08409530253872877, 0.12379732514757963, -0.062104507519984524, -0.04811835564863931, 0.03351143349660824, 0.034353822134443296, 0.12328741460963706, -0.09627921102323145, 0.14167490846741754, 0.10017756456845833, -0.13315187329089412, 0.13474004419881505, 0.05153261947192677, 0.045244266103199815, -0.08187858631249517, 0.06511467656155415, -0.07808722766190082, 0.13786626297950694, 0.23176728824553988, -2.33761135735897, 0.22753005137853533, -0.12172919129196692, -0.0471769272455405, -0.0301048179852951, -0.01247777662880073, 0.16713606458681818, -0.3222891100643551, 0.29170738421965015, 0.04295288029259356, 0.009833770658107394, -0.015378906907114492, -0.12762235948997921, 0.4264245294344794, -1.983387393420072, -0.06834190549483474, -0.022823186272151977, 6.37503259796092E-05, 0.05491738346376061, -0.8160137028121079, -0.503178017023791, 0.03486205215024486, -0.016396091474135704, -0.036634727313200596, -0.07380439866203853, -0.6748010936991423, 0.19166951685867537, -0.014134153847012138, 0.021983484277674718, 0.03031935261880666, 0.04523520682188864, 0.12190330289623857, -0.02949945316969607, -0.1945695595202389, -0.04897823198814122, -0.03348262625627957, -0.028115262780438702, -0.016502465709305882, -0.19097276968558105, -1.190414095443134, 0.050712303460263675, 0.005143079355323214, -0.015543131524722288, -0.05589039556643757, 5.134417831237403, -0.2259899502958349, 0.2120577303202808, 0.10956213126138922, 0.0903102513127503, 0.07774810561662338, -0.14069755549601792, 0.5855335370752206, -0.604548559172472, -0.11193750082039816, -0.04297022930475941, 0.005254779505358076, 0.23326218891794628, -0.9284403886905616, 3.899065472686623, 0.18453476165522548, 0.06388188228426986, 0.00271146711908175, -0.14361654535437834, 1.9626415581522245, 1.545159950142885, -0.12147251311760277, 0.031297143758891394, 0.09382980695615403, 0.20588514184687878, 2.276058695457052, -0.6502634050027325, 0.11998084071254761, + -0.06598693114963501, -0.10823061418918531, 0.10520757255136343, -0.047432689966272534, 0.011712699666801238, -0.06570370210610589, 0.11228812892536168, 0.1301716030044054, 0.08749750096060023, 0.006124085800781076, 0.054160958198100156, -0.1376946410808027, 0.13897761392358493, -0.06748683922586307, -0.07426922103336901, 0.05496857067385446, -0.12514841097097118, -0.10548478701762648, 0.017688063525356477, -0.0748531184354751, -0.057442862220533616, 0.13102259858042298, 0.02001274718969528, -0.01060041531749887, -0.007980228223174738, 0.06061481356734978, 0.015983461164603016, -0.05317864320612016, -0.06699308161462382, -0.05786439586971219, -0.01912255197798135, 0.0702211216841946, 0.011990430181450113, -0.016473501328984116, 0.013507374654470591, -0.005346325630296569, 0.009311006469823555, -0.06344666556508713, -0.021952098804158108, 0.11951804943140062, 0.05025516869521633, -0.027269014786004804, -0.026925931088445095, 0.0067588789186675885, -0.10047205390459864, -0.15340788591697194, 0.138495238965025, -0.00905385337934036, 0.015513459937291555, -0.07210527471174641, 0.1561932141783984, 0.14112572664197226, 0.07603000014203755, -0.07868019680827883, 0.10317525636948387, -0.1642065021716262, 0.1483491792742113, 0.0070900283535186345, -0.1051694059309798, -2.425087408525981, -0.05342307045884631, -0.04043389355381938, -0.04091576887723783, -0.05382921793650869, -0.12748450432543085, 0.5675781932436542, -0.007243120787412988, 0.008418943248893335, 0.011652426138053375, 0.01885662755419598, 0.049130461962973104, -2.173196132430756, 0.004221857357118122, -0.019456145171917728, -0.018568729054170674, -0.021865444904952853, -0.039571249486164486, -0.34023985295885045, -0.6480156433928976, -0.06534477524917832, -0.04055224372853061, -0.03750216278709023, -0.043940358726746134, -0.06586650403825615, -0.7336694676140274, 0.09017720508698299, 0.047693372823711284, 0.041247346913057245, 0.04810900817258462, 0.08327949350603014, -0.06547599646877013, -0.1172881015405313, -0.05547201831662126, -0.04466717631895839, -0.048933334230974845, -0.07990711288666427, -1.101798816576854, -0.11419433447164123, -0.008977770694844053, -0.004494511530288716, -0.0033247892595959297, 0.0016304656708429066, 0.08224002438481373, 5.187804934279985, 0.17201595840159567, 0.11967881896498289, 0.11855085202928706, 0.15316184856192272, 0.3401487103540968, -0.9497096092129957, -0.07472962231349248, -0.06027866112866914, -0.06009204292364277, -0.08158766822730945, -0.17929322883719534, 4.30052781075347, 0.05092226234064068, 0.06905482828826101, 0.06025520431265903, 0.06880185342570874, 0.12372854678456136, 1.0915703454919536, 1.4927078002255854, 0.15423519201065955, 0.09568448446326183, 0.08996238537206233, 0.10516591287986016, 0.1325162070032124, 2.533857672282611, -0.22529278273471975, + -0.1097537569276317, 0.010592985210404374, -0.10264931271064955, -0.029337384269327128, -0.10427595125107272, -0.016242786741874946, 0.08246256166332003, -0.04104586188298655, -0.11517322917531377, -0.05698599920027484, -0.1078828463568092, -0.08468397681332629, 0.06277358331698557, 0.11189924380409356, -0.06966553397816852, -0.12517955880468562, 0.0010623381153088652, -0.15696313764699185, 0.05877555828357197, -0.12453319879587992, 0.04423291077116291, -0.07298083694507355, -0.009876258517663265, -0.07501311853810956, 0.00016667743334475817, 0.06001442303215389, -0.0663690921239976, -0.003963218756674775, 0.01713375317628162, -0.018335366223901965, -0.00902862921388362, 0.014331185804106483, -0.004453252738379973, 0.03487936218781709, 0.029870566400154643, 0.003911002331463356, -0.008422713774838922, -0.028363589717911065, 0.03676130953094364, 0.034440188551367296, 0.013581805457943425, -0.026571478843176566, 0.03400404818231912, -0.05362032132438363, -0.12393197531537752, 0.0034824087107572293, -0.15272156446341392, -0.06664120961964042, -0.09741789904549501, -0.04237956588296472, 0.07443427778443987, -0.13298808378273314, -0.1140306830057457, 0.12372900581152824, -0.06408337093226775, -0.19759527591403037, 0.05884401416684667, -0.25938212279279144, -0.1274289110268313, -0.194145489857164, -2.378526776583151, -0.041364334090766064, -0.059286145670904095, -0.1519476352705921, 0.3625360565620862, 0.13445511935312804, 0.2796066259583858, -0.04196147914583925, 0.01598993175318586, 0.07594459654574433, -2.067500894736187, -0.1321661671247329, -0.1382016415712522, 0.060027322255509996, -0.015729908585217403, -0.05668449050669778, -0.42246553454369984, 0.20348203790660924, 0.19756563629733975, -0.7309690080190978, -0.08258236378719365, -0.0428329370966206, -0.02197953553948801, -0.07105914664360594, -0.08865999205306586, -0.6954288491552174, 0.10494037047130564, 0.060588274322552566, 0.07326302757215475, -0.15678276512479297, 0.0044965407209657665, 0.09676026103901733, -0.10656895447373324, -0.0655975716208319, -0.09131934687991516, -1.1460783404080477, 0.13818569440443426, 0.1405125913877634, -0.17355950820757712, -0.017436388472180285, 0.013924939338352708, 0.1393785008414934, -0.14981091585782225, -0.13308841443542174, 5.166145884071847, 0.16580276848550835, 0.168230176126193, 0.3668025107751074, -0.7047168324302159, -0.233141071401206, -0.38121599675725726, -0.011725371396552942, -0.09187933705659956, -0.2397002209665257, 4.07661946862453, 0.327778746415657, 0.324766853377173, -0.0902379677656751, 0.06565247889780071, 0.17634410051149216, 1.3199365447773765, -0.5607087778493521, -0.5458309748242235, 1.7292002421895627, 0.20422911014454787, 0.09458715726083952, -0.003735726668005812, 0.26710283489095055, 0.2848384128049084, 2.3676849951675365, + -0.05261348474174644, 0.0894984739008892, 0.1292776111026137, 0.11884613547297618, -0.050782145379343994, -0.051180972021882744, 0.06879070358994853, -0.05645050436648821, 0.09549086284211165, 0.15616245312880728, -0.0910736752635694, -0.04649436853460442, 0.010227872260103646, 0.06840316603152202, 0.09836306236009003, 0.1152541445259895, 0.12485418270815565, 0.02156261256686478, -0.05920949833460929, -0.0930267518883606, 0.06165698871645092, 0.0786940075269048, 0.0740787114895125, -0.0074096436221322975, -0.04237169342906836, 0.009607134240628918, -0.052992778592554524, -0.0394166564285034, -0.021455178698985774, 0.02294690384213967, -0.052284789696753056, 0.030088493377334352, 0.013637826927076251, -0.034374801988153354, 0.07965116115675651, 0.024903105523918823, -0.021390977275803275, 0.039370054663896335, 0.02228086495177864, -0.0024556405397938024, -0.056679563127564, 0.04989958006511904, -0.08364028875896655, 0.09134242682435029, -0.10655417354271512, 0.09808862843245036, 0.15204804916521247, 0.1622772567348425, -0.0986627257663954, -0.10844844442251039, 0.026290009807584558, -0.025953708297952953, 0.07173848877385376, -0.18167476408707517, -0.23970535828295844, -0.06297757439583922, -0.08423209572990346, 0.0008001893108661128, 0.12231212328252776, 0.11242033662997872, 0.19501409792018193, -2.388416435547129, -0.1528213555737506, 0.35386945542766485, 0.1087737315121882, 0.08572897746126595, 0.10047690755570476, 0.2859556391398067, 0.02253488609130333, -2.0610835108035954, -0.11352702720656445, -0.07453399375517492, -0.07660220291119121, -0.13401329887771896, 0.021393134094045946, -0.4152860273480745, 0.1828889642801781, 0.10929692342495831, 0.10855213254058554, 0.17495533725533496, -0.7313703940239307, -0.0676969700523456, -0.07060375241418877, -0.046175255281807256, -0.04712000382578572, -0.07507910925380065, -0.6783111341100792, 0.1374574937184842, -0.1424477065580863, -0.0046290006575596815, 0.004199776937353503, 0.01335710168230868, 0.08472306864466746, -0.15374374651252112, -1.159285486124805, 0.11942651566023096, 0.0754064619632917, 0.0769598298400871, 0.13053378552884012, -0.1546641535229799, 0.1247489665365537, -0.13627201231618555, -0.07475505455197745, -0.0721835621412737, -0.11157138135542183, 5.196159044382531, 0.4153837839131169, -0.6821700232809642, -0.20238397181147333, -0.15489464779126505, -0.17262216144545872, -0.4123140288277114, -0.1921146900577957, 4.046823221640726, 0.2816680668364311, 0.18418141798459603, 0.18831965270015644, 0.3209373260330277, 0.027199246459987114, 1.3134648801075797, -0.4975263693274643, -0.2978694907467374, -0.2968545926798295, -0.48284711128866764, 1.7237203091642312, 0.11223034742803217, 0.2574554188895479, 0.15173880293512576, 0.1502755539524926, 0.23543042176355677, + 0.05289938267618414, -0.08983534611547057, -0.1294082748779377, -0.11835263002554491, 0.04942899997872645, 0.04911608245186418, -0.07095442327660033, 0.05803499670999149, -0.09609934923489033, -0.15551186576443757, 0.0883685343667395, 0.04227070354077284, -0.015375988614409147, -0.0729161064980374, -0.10086386769556241, -0.11404749787932125, -0.12138704630376443, -0.02488937330942037, 0.05472911675888236, 0.09799846892018794, -0.06445284334197039, -0.0799819557011462, -0.06541046641619387, -0.009024059397741927, 0.0232515848144194, -0.025726093181378716, 0.0633817357657765, 0.04873827452808316, 0.020950533690652955, -0.0031000257555702146, 0.024945147099038566, -0.06140825947941942, 0.009026028032597852, 0.047820599131543594, -0.07916380813341238, -0.00802164160227103, -0.005894797752546668, -0.013624388702334483, -0.056249403448031934, 0.002453389125713468, 0.05821873619780053, -0.04996080356337074, 0.0783561380173059, -0.07954067350103994, 0.1096973170177394, -0.09832797019179552, -0.14846502708627535, -0.16347491203380396, 0.09477916497870076, 0.09807742115648038, -0.039922273543630454, 0.030188488247138427, -0.06732445150886791, 0.17820333691769946, 0.23555884759464354, 0.049592949561021, 0.07017283631936812, 0.012361993162732723, -0.11788162769580676, -0.11252126206143298, -0.20354558170268533, -0.08539244082556754, -2.167982922965315, 0.1014024336662114, 0.07765369855967774, 0.07738402855377058, 0.09500180855122277, 0.16726100549900258, -1.9744628716202468, -0.07846043830619226, -0.05974450970429714, -0.05942523807519026, -0.0729330378183372, -0.12034916480856321, -0.5888471161193422, 0.30907758697512777, 0.12086664795475446, 0.09036003604392732, 0.08902355642535764, 0.11351482486310754, 0.2470634810000239, -0.8326570740893986, -0.09751119049063559, -0.04871359082334739, -0.033083618973999605, -0.026013409789785252, -0.012551763806941674, -0.978293031230171, 0.07259830042151391, 0.021375177246465343, 0.004425635279862519, -0.009763159084713827, -0.04111694020332039, -1.1033608164062905, 0.1227236542463444, 0.06764303110636549, 0.05961462521265603, 0.067486053934036, 0.09969599869255626, 0.3084673005585613, -0.34232569115819356, -0.09211637264662084, -0.060083964338337244, -0.05433619540495013, -0.06439539171624338, -0.11544223922642535, 4.765528863712851, -0.13610449204045394, -0.13218787648538982, -0.14727058664046672, -0.1942967051161586, -0.3676862904196994, 4.115558032530314, 0.15610097977177104, 0.1369506323742073, 0.14571263999788525, 0.1875351825104087, 0.3207845095456313, 1.7265582412336737, -0.7806520878233308, -0.31579315970522126, -0.239572825292653, -0.24102989326196947, -0.316210700678234, -0.7227103786147326, 2.072216630459319, 0.28172587781518577, 0.145914322335162, 0.10371691735492505, 0.09053671929392598, + 0.10977680161963321, -0.009949907031657029, 0.10292457911596634, 0.028128001572773006, 0.10495484611300457, 0.014327985628576836, -0.08353369538513537, 0.03854408893418942, 0.11709960637248068, 0.0547799843919873, 0.11056583396899082, 0.08184964714402551, -0.06699654192951769, -0.10862931764477016, 0.07558749960772182, 0.12209988421011715, -0.007731580399885478, 0.15463949462553184, -0.06402362501541581, 0.12168237773982042, -0.03809577360821019, 0.07431307613750125, -0.012352865273606515, 0.08050564846684767, -0.017722249057690643, -0.06415853906440702, 0.04737371676378478, -0.015049805140550961, -0.005695597296843656, 0.0011342556794412672, -0.0073693505508426824, -0.029953206982844763, -0.013678040226198363, -0.05869513481477762, -0.0520247161240469, -0.022195846990686167, 0.0007117467784962753, 0.05159833349000544, -0.03282918860723991, -0.05670344859090996, -0.014344515692669514, 7.5174875271593E-05, -0.027872139440334915, 0.04673048509407278, 0.12604064078234387, 0.009067058978563684, 0.155215123588849, 0.06596200374385326, 0.10223233291148758, 0.03400877080752989, -0.07489091806279653, 0.1192777841178995, 0.12014711486275005, -0.1232245492049966, 0.06858109450097674, 0.1935921171694066, -0.06773292087524758, 0.24862116432417983, 0.13544286011889806, 0.1951434850941145, -0.03200992084541944, -0.11228753231497708, 0.10192041835425532, -2.2811897943069637, 0.08425296708360425, 0.0982776967519477, 0.15582664647074668, -2.0152673005158075, -0.14287945783285777, -0.16349943022098287, -0.03939631729190184, -0.06805081685727446, -0.1124481082683058, -0.5259984556605801, 0.0989250930404356, -0.053971529843522645, 0.23456633063882454, 0.11469928729607443, 0.10948428617186481, 0.1804297706772012, -0.026523035252160317, 0.11288410667071985, -0.7869885282822177, -0.08940790457425601, -0.033852386356396105, 0.018658972793080014, -0.37063502858034314, -0.16448833342737346, -0.7789037728685028, 0.07944475120304206, 0.007878618119230019, -0.04742078253598653, -1.1352991139264752, 0.0940451774508537, 0.02866952090368069, 0.07738504868921135, 0.06964798436416972, 0.09211800584553481, 0.2551838410785783, -0.06469667178666688, 0.06196473758354535, -0.2745792337457252, -0.0810208722989354, -0.06175142099222486, -0.07188297238460595, -0.026842194794510763, -0.09577627311021135, 4.977560832669011, -0.10863762791172138, -0.19216257911100754, -0.36093886495411015, 4.043648277408354, 0.39785100570000703, 0.5668667412947811, 0.05826715519685802, 0.16483445419081857, 0.30063067337348154, 1.5760099814322182, -0.27877119596592165, 0.1255070493217169, -0.5736389028458592, -0.2974471672864878, -0.29748811314622775, -0.5326645582824823, 0.10580245099719701, -0.29779402087104484, 1.9156113102215482, 0.2507745817757633, 0.10599729110533324, -0.019208292914096647, + 0.06572593541565086, 0.10803433846912483, -0.1055602020305125, 0.04851391991463464, -0.01019024998057034, 0.06397612216440425, -0.11160392337753625, -0.13150011587108396, -0.09007488274659484, -0.0025310495112695905, -0.05158261443006536, 0.13679758583758753, -0.14107748455597327, 0.07266334734702225, 0.06908646625573059, -0.05091401807880408, 0.12291784586548879, 0.10863938904752445, -0.024143384633920368, 0.06933025197245732, 0.054119385945916205, -0.13344943524519323, -0.006611080014695553, 0.03071880412900963, -0.015276481439838606, -0.04961298755114339, -0.025216669677321564, 0.06547305597083414, 0.039576884642427895, 0.04829989181948449, 0.013029316552983368, -0.06786947928825908, -0.03417293492146624, 0.051728870195510035, 0.017459484647398427, -0.019970372191078868, 0.0038220769106239593, 0.09435522403893978, 0.0432593455334475, -0.09099448249061598, -0.052181785557105134, 0.05211503747863441, 0.005741782809961312, 0.010964209451353513, 0.09100877480089865, 0.1558357081833678, -0.1290019706590118, 0.025478095505050737, -0.011547950341717074, 0.0594417138023177, -0.14246931099534985, -0.14601995053261693, -0.08591758831620619, 0.0674626692944125, -0.10404624812835403, 0.17269108183258444, -0.1537460555762107, -0.014511540125621829, 0.08987544767625524, -0.11814599778808363, 0.20100889342470066, -0.15034830307991312, 0.0012721569470667015, 0.07225586539274821, 2.2733060967149608, -0.15823468201529461, 2.025485339512043, 0.1437163968103789, 0.10014244865115798, 0.09844990072654547, 0.16888205421840072, 0.08895401842889952, 0.517991635298895, -0.11869596293199555, -0.038786041728619394, -0.008836105132292382, 0.06899658735369041, -0.2487031863628972, -0.20107460250366255, 0.03838895186276953, -0.03372685040154727, -0.06172753638136129, -0.1342864037107805, 0.7713697610723792, 0.03572816946614828, 0.37860768400495826, 0.12942280287920283, 0.11895436596115103, 0.15430247792042226, 0.79705272483214, -0.027384359390815544, 1.1205535450789406, -0.10140895279714852, -0.05360603700224009, -0.04216186922006826, -0.026472419008791957, -0.10645815006468654, -0.2537925658719859, 0.08026869102239875, 0.006813145053744231, -0.02038599930123044, -0.08085131779259841, 0.27325645441191426, 0.095452656147341, 0.02019820395811345, 0.046084055473442326, 0.06292986691305973, 0.11055829848550815, -4.942639098039309, 0.31380962883291386, -4.0735574084917285, -0.3853447052569178, -0.27709561536602056, -0.2872814347385169, -0.5890618163976516, -0.20466193290622675, -1.5459013033191582, 0.33233039666376907, 0.11284512186607489, 0.03234085355162514, -0.1665626280738775, 0.6182543727887992, 0.5755579699353326, -0.14678493339504445, 0.07129738031487164, 0.1566203543478392, 0.3635603753243782, -1.8720774524445027, -0.12181159900105426, -0.8252474803210176, + -0.038753052698800035, -0.07402840214557051, 0.09947848999731335, -0.09917784286579716, -0.09839840213982655, 0.11747423002648152, -0.07632785566154136, -0.0005261442365568529, 0.02155065850184582, -0.08684869399870887, -0.09408672478065302, 0.1204459018545542, -0.1137839210177998, 0.12408825764429185, -0.04397027205808498, 0.09305107323185581, 0.013274034508514184, 0.017935839982796912, -0.03894413596534573, -0.07553105564431375, -0.16766373661324394, 0.015617102391497668, -0.0734765566798756, -0.020832182353871128, 0.019247079566100757, -0.00020494778253352588, 0.02991157231285935, 0.025693658370644395, 0.042974665718148966, 0.049004984503889015, 0.07294071939220385, -0.069300584808806, 0.033126936880452824, 0.020267626510960247, -0.03096003631436738, 0.036625473945889934, 0.026703767874022854, 0.02215837953455867, 0.055743886511542884, -0.09030496166780934, -0.10433445222295692, 0.05758422741249628, 0.04577198017938859, -0.004269001780511462, -0.04175169300387927, -0.11901937806476222, 0.10660750176601962, -0.13663224267906549, -0.10384342497753168, 0.124550125392404, -0.13057093020864474, -0.03425204296489584, -0.03446054753570096, 0.08979250877702472, -0.07517669000004222, 0.07291286300110432, -0.13648531244971435, -0.21995592520257287, -0.19085441642379924, 0.12873327237923932, 0.03979347461308237, -0.0632689064565115, -0.007742286855395941, -0.07954579907459726, -0.17561634843561402, 3.1596454558379987, 0.1488937826805234, 0.08779157532091718, 0.07414432281188608, 0.07864410058095281, 0.11055653617305809, 0.44749176416487363, -0.0898472119991895, -0.03514885161822001, -0.021739895605563338, -0.017169093615628947, -0.015489983234477755, -0.01863506604285317, -0.07754410723916108, -0.03866565341725003, -0.036601365413813175, -0.04139609328509271, -0.05684901289939484, -0.11688345557524779, 0.8039552317588087, 0.14110126233616693, 0.09528551781630447, 0.08899399078860187, 0.10420717262035767, 0.16701279701411606, 1.3846872323983974, -0.10032431528778896, -0.04873858082536122, -0.03712672451998513, -0.03805014577026324, -0.05206693289542075, -0.15421067288421866, 0.04123948122803778, 0.007155266938992801, -0.0031425462486449757, -0.009319894973728713, -0.016836870478538032, -0.041162798228924866, 0.16910349002641822, 0.050768099267531494, 0.041646668103583875, 0.04550943434299356, 0.0606245739558513, 0.11124698552489143, -6.617388526136194, -0.4060154364823102, -0.23999691270561962, -0.20519845863519107, -0.22349663744979698, -0.32601375330682875, -1.422691696458057, 0.27106667637962056, 0.10674584921207386, 0.06514927249944266, 0.05209939434623925, 0.05287965388524643, 0.09552956739793922, 0.13944550757123708, 0.08003218696396042, 0.08461218628878958, 0.10303690054212443, 0.1477901773624424, 0.30973144482508985, -1.8675389599630343, -0.347374315420406, + -0.10760266288083324, -0.04992209905650645, -0.08860471383068136, 0.0832791716510385, -0.06471512080518374, 0.1354752600124438, 0.0012235200708696778, 0.12850043945516265, 0.008286819307975231, 0.10038539544715258, 0.07246681937791317, 0.05145244951238079, -0.05389687639870505, -0.010253238613450179, 0.13475426978608807, 0.01811962245871227, -0.10218216859000616, -0.0920331450168091, -0.1068426635539786, -0.1227719211644992, -0.011533819373698741, -0.14422243455446324, -0.006881935485074371, -0.0016071909648524357, 0.05201199555782229, 0.04195165293600562, 0.042017565737743, 0.016979529494953783, -0.050782479201132484, 0.005906457392025078, 0.12748074372502116, -0.015114345954248074, 0.06382118714585824, 0.04789546237688453, 0.018500773530505672, -0.010861072417451071, 0.06747975972600874, -0.06466049873171163, 0.04694313268210758, -0.07441864532536299, -0.08920964765721551, 0.032847711973014386, 0.07008877098610955, 0.021877643620392528, -0.12428615793448808, -0.07823455311316131, -0.14642551376052013, 0.08806744198637063, -0.050695263289883184, 0.14466136206916003, -0.03398151547789746, 0.142185121907311, 0.0380382680959867, -0.11005615686371277, 0.11165514316544396, 0.04736739893016565, -0.10387611804291318, 0.014277876882003007, 0.19615810216869942, -0.04407531887046748, -0.19316170444404426, 0.1938053589006294, 0.07247786781702936, -0.15577570791724704, -0.03314959837034472, -0.11060616122786464, 1.1448993441614366, 0.03598804239830236, 0.05131462957645786, 0.10676475154606727, 0.7686015631177998, -0.42821042061512166, -0.8199813341998597, 0.15865883711794676, 0.011392463377986273, -0.06332136117779877, -0.3584752041266005, 0.7032174339329678, 0.6381182610243439, -0.44980882694952284, -0.07979203391873223, -0.007792902256024147, 0.09659076156701843, -0.8593037651319775, -0.3291988563998061, 0.9839837707038119, 0.1078767376497034, 0.06560225687476112, 0.08107977679594225, 0.9978831252171588, -0.15698491102756576, -0.5789607770772924, 0.025349656424629927, -0.021935832286520233, -0.07217247210752128, -0.41227847266718104, 0.4281448788528856, 0.5543650685059096, -0.20505816975143748, -0.031095090081373247, 0.026059799351891705, 0.17623015919677104, -0.6146668964592211, -0.39410091371226685, 0.4877893784505486, 0.07551909252994775, 0.026199413511913183, -0.010995175356541834, 0.8278586051854762, 0.11456452594330024, -3.168740208014158, -0.13139901950956448, -0.15015427378983223, -0.2920763977158775, -2.1785584384915984, 1.0917052678305519, 2.2106921664976054, -0.3812526050537927, -0.015459838679875021, 0.18489602591493656, 1.0292797317572286, -1.8714790339847525, -1.7681160717104563, 1.1555950298858573, 0.2044894383557347, 0.007423448983816321, -0.3029994017785597, 2.334971630734797, 0.964971584967834, -2.528114419439476, + -0.07752288104533255, 0.10585692347703476, 0.10020420395783845, 0.020626809185961156, 0.09371177236025471, 0.09563851866311611, 0.10259438124825342, 0.016882265978032166, -0.07850388510342647, -0.1175750672976785, 0.05983515485895405, 0.05974332864381406, -0.07710640491039977, -0.07573303360436723, -0.10117532853925573, -0.028481346944469493, 0.0857531065085437, -0.1378099133010723, -0.09723124699038468, 0.03952737992815536, 0.10307306770380834, 0.11895438326567867, -0.003931828672520561, 0.033619571458938194, 0.053329889972486444, 0.03843413494394865, -0.03510895144688996, -0.04508236160162329, 0.013469455965686153, -0.14402835693214897, -0.0017747978557497086, 0.07347165243613223, -0.0432972806260236, -0.023329417898009686, -0.035291538498485146, -0.042393499643650204, 0.06216680778717035, 0.002560138424224628, 0.03740408716494263, 0.05243589310232156, 0.010653040508705662, 0.05265899434828845, 0.05991320808088653, 0.04422310545260762, -0.07972393324815458, 0.1294404854929226, 0.12179367013941451, 0.0071356159087784385, 0.09813656083338765, 0.12267033227739428, 0.07211393510777132, 0.05759269227659863, -0.13047598394524215, 0.19513266568484885, 0.09823178154796683, -0.0408209806195133, -0.13480191782566722, 0.05529812926838736, -0.10693334898171024, 0.028442090765368674, 0.15097247913612158, 0.11194914556256916, 0.18593220346094144, 0.02500876927628372, 0.13120144032976666, 0.031156898584880827, 0.023945080111946803, -1.1548897368903877, -0.11568224965440188, -0.786233940449642, 0.3464234857950059, 0.21834212425692906, 0.24769964243910633, 0.7865002725157682, -0.10249928085394881, 0.33889781232896665, -0.6343489977592277, -0.29485619392040474, -0.2889971753374996, -0.5603891995174657, 0.44173656314156806, -0.0314023367547219, 0.8376723365293057, 0.20197552111885253, 0.17031268287961604, 0.25478805443762764, -1.0079564447608071, -0.15637428153370883, -1.01811394834655, 0.11972064400811508, 0.0845452486449624, 0.10346386874328142, 0.5777965620000893, 0.03342245903990954, 0.4179125087311308, -0.3651835639694402, -0.20291199226535547, -0.21496586851421162, -0.5129835636137773, 0.17680475682426824, -0.1476327782381558, 0.5747260996614458, 0.2107605437556765, 0.19265468377047418, 0.32647533178766636, -0.49575703159062834, -0.048025550687233576, -0.8247216312685566, -0.07558862619239601, -0.05822241915810459, -0.079870301650492, 3.206017429253837, 0.34843712660123105, 2.2328276597342596, -0.8759347055694742, -0.5598903561505927, -0.6413215375824726, -2.131967426910912, 0.21830112761237774, -0.9892108493735202, 1.6749785072075045, 0.7958706548063602, 0.7872844225016962, 1.5608746261057505, -1.1257444387726132, 0.1345548423524038, -2.2643305509967266, -0.5813045356213908, -0.4943876003237121, -0.7506880502586811, + 0.023831080108163892, -0.04518572684166418, -0.0773208514128417, -0.0944101694979283, 0.08925846880611656, 0.1348280386249581, 0.09154454345027566, -0.11803838352132903, 0.10775578021895765, 0.11773966269847239, -0.02758846571783909, -0.07841802180039661, -0.0035249887413145204, -0.0018508277210610646, 0.012594217086377972, 0.017157846544898752, 0.08460657775282697, -0.05988708456143563, -0.1147892380692132, 0.11367137680222203, -0.11673875664243995, -0.08947130974383312, -0.0711549557157192, 0.05822470904261257, 0.03709377379079301, 0.023157445327448987, -0.06645458717999571, -0.023278428767917535, 0.047207717675301464, 0.01299325300034526, 0.05661470126244887, -0.019375866409378578, -0.03108167780694854, -0.06867859628910143, 0.02364993199391531, -0.04698535478391859, -0.048181265843634205, -0.02301875476255877, 0.043324691370485974, -0.034252350887762094, 0.003437710609827422, -0.01936718641821804, 0.06747162642472772, -0.013727189166258279, 0.048454160474663055, -0.0556449462942737, -0.07769321286759025, -0.10097385298820404, 0.14612919723657428, 0.16738410595579903, 0.13673369287795933, -0.16995772618983782, 0.14652298814433656, -0.1739835803158641, -0.1079009652456337, -0.04544753077426456, -0.023595852357745105, 0.0599530353674655, 0.04377030792659066, -0.02850996166751733, 0.08474456491339329, 0.16635282800485307, 0.08941118958012252, 0.18952616000917608, -0.212387648651132, -0.06888342369758783, -0.08789233338633352, 0.11029103800799014, -1.474049208793332, 0.3074995841273883, 0.14385144243757791, 0.1153038352171763, 0.1258901557084342, 0.19679820318122182, 0.8962515962822782, -0.6456009692967062, -0.21464272898887982, -0.15178052519105234, -0.1501894022566631, -0.2056455313763187, -0.5505068646907171, 0.9979249304589018, 0.16486812020213054, 0.09973745009735574, 0.08852228903809345, 0.10766100418880717, 0.21664248815789094, -1.527120253126114, 0.09018860598572934, 0.05076415341384488, 0.04623997440001662, 0.05579759633394293, 0.09616676475053393, 0.7609831285934162, -0.339473086037586, -0.13771637677692355, -0.10523844721982974, -0.1111897896791114, -0.16433455070490466, -0.5516766905257107, 0.6173560541790661, 0.15778721781336766, 0.10409635096447398, 0.09907441067908627, 0.1304523736263958, 0.3045416297639895, -1.0112779884180738, -0.06112632848664119, -0.03342803924853763, -0.02812137277618694, -0.03377259933908369, -0.06607969242465364, 4.123798932542815, -0.7643593166589228, -0.36386802986395933, -0.29579645068312, -0.3273341287086133, -0.5179289788330652, -2.4693583667493924, 1.682746247938558, 0.571779107905708, 0.40721432031198096, 0.40669520511514123, 0.5640543901796378, 1.5505719757272594, -2.6574389113039842, -0.4675475361863497, -0.284729717007719, -0.2543331951140145, -0.3132374612994767, + 0.10327485611287117, -0.06609611811202747, 0.041568062263459354, 0.10027567725836539, -0.029968535875826374, 0.08059734498734052, 0.09266747954985231, 0.0447898721745949, -0.10944060498009532, -0.07101537687004525, -0.10500694212146258, -0.06641809226922021, -0.00792661985919066, 0.10319019108736206, 0.09897431296039501, -0.02737389003394044, -0.15966661977775445, -0.020326934085402707, -0.09257081713490277, 0.06153242119374278, 0.02736352400342903, 0.060131302401138675, 0.02631367441691777, 0.009419862595550076, 0.04467812603689369, 0.06744353414522401, 0.03255764110080123, 0.013921698624283947, -0.030334598884377947, 0.03029111256300548, 0.0023754363928671293, 0.06983732542550881, -0.0004906202532641503, 0.026858595564378696, -0.04709387279170271, 0.06358006373010504, 0.05205935908094646, 0.004416990843286784, 0.02074841994381769, -0.058167407787578305, 0.012605433455228169, -0.07535429942827927, -0.00115420787546913, 0.038498389583546185, 0.11526181032400659, -0.05312283707117445, 0.03715464456487745, 0.16121955591017198, -0.08985570376391536, 0.1185942578666251, 0.14251646851528305, 0.08981249953098704, -0.16388427359891822, 0.0991087944607135, -0.1184967822096119, -0.11553683322686545, 0.017389435640528264, -0.15685834005036656, 0.0408308889464039, 0.03103564063280792, -0.14501821316383043, -0.10088954458954326, 0.16179438597088674, 0.1189231875664387, 0.12352358477666442, 0.12260128387986241, -0.02040648481771205, -0.0038199664787331843, -0.005183986238177092, 0.5844568287965332, -0.06320843261157971, -0.06724537261383587, -0.08782212308184015, -0.19938293956875097, 0.10400119569211963, -0.12536979939507226, 0.1362015465163628, 0.08917376768064819, 0.08811653985769619, 0.12342871894282283, -0.14750001142638638, 0.09438352079925527, -0.20025978066966094, -0.06656914567279759, -0.04376469130300026, -0.033311521227513276, 0.166596371718488, -0.08797511774707178, 0.37587438628946057, 0.0017722570579220553, -0.032610053385775536, -0.06955676987175975, -0.2749102696126413, 0.12860566441414836, 0.037728159032433733, 0.05329471035737039, 0.056528891223064384, 0.07448471564241176, 0.14844977458463676, -0.14378726951292137, 0.03740967344154436, -0.0923557884981888, -0.05043874592213268, -0.04853695465474336, -0.06859619250592787, 0.3884728163026806, 0.01903049250499625, 0.02759880831042216, 0.007797188656194433, 0.003963140296660832, 0.0067752863496190335, 0.05647866072452603, 0.004635146005026063, -1.6999713895401838, 0.13746857346603433, 0.17129546137073431, 0.24273667548824468, 0.5938737553637895, -0.31200362061914433, 0.2910567124277029, -0.32445406810887395, -0.22294954302916475, -0.23201186248609446, -0.35108337930058076, 0.4483142005644569, -0.22883127785767637, 0.4954550283390823, 0.17111724114169768, 0.11471735433405034, 0.097099454094901, + 0.08776820568380538, 0.10952743939756976, -0.0403200164687407, -0.06597293524929769, -0.1024684529035965, 0.07663914657120305, 0.008464874893223213, 0.10358417293026552, 0.08821806239264116, -0.0199478865696685, 0.09029642396552344, -0.14593003877594699, 0.05649493252746476, 0.06883242874874886, -0.09396817601655318, 0.08231092647588732, 0.004355706321250462, 0.13999327420510815, -0.12667939651019536, 0.0073690673855154815, 0.09427744918636255, -0.11820426860115774, -0.00031977706175968947, -0.028191583498662312, 0.05203969464355678, -0.014284866601158549, -0.013793826735523622, -0.011728287135825242, -0.04183158842320335, 0.0006840917417323505, -0.005693846671734646, 0.02996503673488083, 0.017092953705443326, 0.11208650518463811, 0.05714537566115784, -0.08151905238940599, -0.02638126827300612, 0.01110921290534368, 0.05595851414346635, 0.06072061646998013, -0.05216501634814388, 0.028136395346903882, -0.056857059754040075, 0.007496042311467081, 0.09021852655861563, 0.13316594195002635, -0.04493551546891013, -0.11204145043046553, -0.14862465055794463, 0.086479942063491, 0.025787626427756255, 0.11953861959445884, 0.14755807195444162, -0.045426899460963996, 0.10921144876526784, -0.2128630270315858, 0.08040044965759201, -0.11861879356564294, -0.1474133367698399, 0.09994991404639354, 0.1151445553760064, -0.2466004358005981, 0.1785775347396128, -0.06841740912042925, 0.1692273341705875, -0.05560206000270412, 0.10626902464586595, -0.06155056822527734, 0.019575992567711593, 0.12748414223962948, -0.5825242676987584, 0.09888439053601836, 0.2085802819937531, -0.11461802309935082, -0.02022773116334478, 0.0031923669841979717, 0.13543192856081687, -0.15569392982794295, -0.1446789932678187, 0.15382968091789168, -0.01440308192441904, -0.03856070990890284, -0.11367810679513521, 0.19844748789468303, 0.06058554244795449, -0.1694256884241865, 0.052297589612676595, 0.05437043025097753, 0.08849616977589833, -0.3644191383390445, 0.04632766757684066, 0.2793326997085342, -0.12521021150994627, -0.051797379362525875, -0.04365433009750379, -0.034412666564892544, -0.08064041161089602, -0.15391842203507103, 0.14986957701628192, 0.018495305511877506, -0.004895094999714392, -0.059006314095790116, 0.0948654178348521, 0.07512457842441098, -0.399873276275622, -0.03226510269528442, -0.013234390907229748, 0.0001819261924819321, -0.017582649640159567, -0.0030343181441735735, -0.046524242967172266, 0.020531722553120323, 0.008911867702859268, -0.009848417866498038, 1.6923546797317708, -0.24652956981032464, -0.6130238082849044, 0.33539390896986, 0.06302856113545588, -0.0015125127211169237, -0.32849693617809994, 0.3738451695115085, 0.39076353296791655, -0.4767948081685649, 0.010187960388921502, 0.08719865914972674, 0.2938403634574634, -0.48168008689165825, -0.15636678390430198, 0.28353817175117235, + -0.008432128287132742, -0.017133488135314782, 0.025769296859536762, -0.030750330396369388, -0.038391076034503695, 0.058543566711925336, -0.06188329584602355, -0.058855259982508665, -0.07366764541790953, 0.0647526154271992, 0.08273745823994037, -0.09698195347640069, 0.07798197804844799, -0.07635562704215017, 0.0825498736579564, -0.09660302668556474, 0.09889662045481606, 0.11639636329419477, -0.10538662520109504, -0.07521978538075533, -0.14827800938216482, 0.10909653591534897, -0.04873504295644639, -0.01743647903352066, 0.05383776844650857, -0.05777021313589729, 0.006919926452122143, -0.03126207516651473, -0.011775884222346602, -0.008212627808800266, -0.02306488863301333, 0.04884675543807529, 0.05278224262873997, -0.08272336865098183, -0.1371629513475801, 0.06617968311200181, 0.012940879791757306, -0.000290872596576206, -0.0144737382992327, -0.04453473999169788, 0.05869305410523976, -0.008026646060278095, 0.053420707676942805, 0.0035895114208217963, -0.004223322849630181, -0.013386864681988173, 0.03323879137808018, -0.047242024880869926, -0.04506122984664308, 0.05651730415942349, -0.09849957380435774, -0.08213555459629372, -0.06924107070994324, -0.10471451097174742, 0.08489684442350055, -0.13091569503160883, 0.0846608449989982, 0.10927985994535795, 0.15859105359188408, -0.07634062617119254, 0.11123684918507404, -0.0868606520456947, 0.13760961861559112, -0.2316983759340933, -0.23941069116233493, 0.17966673304025743, 0.056045355115345384, -0.02596941067350055, 0.03381957033049558, 0.02907857469484465, 0.025168012195776742, 0.5033145330145572, 0.10464566637764615, 0.020175230995643667, 0.010433086030423352, 0.011058032034027249, 0.009730561171094984, -0.08106344381251361, -0.08917390997556593, 0.030769065264483687, 0.037765861689572584, 0.0421113565371462, 0.0540653052424509, 0.12409009016958249, 0.01257600100711162, -0.08014217927344916, -0.06274357545715223, -0.06534418211649803, -0.08105615026118346, -0.1321041907551356, 0.13279128514723715, 0.15161827422500893, 0.06270571410413589, 0.05077984994499627, 0.05936860269384826, 0.08483123462377219, 0.15851050531846522, -0.15507200984449634, -0.02519392572949105, -0.003242986616950126, 0.00408158432479324, 0.006614428465712051, 0.03276503402411135, 0.4036424280850005, 0.05803442919860397, 0.032298879606793784, 0.0161232713487473, 0.0038173544739158183, -0.004439555171853314, 0.06984045371995114, -0.024749653583680732, -0.023083103906240084, -0.01834686388123006, -0.007302563280045901, 0.01748871249864198, -1.4292127343824987, -0.3391512430657477, -0.07242388004772915, -0.03100861202162468, -0.028393628882922295, -0.03323427491243247, 0.1584632501960536, 0.3589281891946705, -0.025065577427046997, -0.06696956390323511, -0.09412403140678419, -0.1359183723535089, -0.32215832902667785, 0.10814115037317858, 0.18202167761992216, + -0.09688000239763296, -0.09602914337732811, -0.010201915557876544, 0.1063794543788603, 0.07511494832888284, 0.02687932000045942, -0.09926176302555269, -0.09022760851403491, 0.022284699324021887, -0.11105993041757165, -0.07745154833890427, 0.00437377633972411, 0.10244786903098489, -0.1281298226022966, -0.04922569778103334, 0.09331579754046096, -0.027105468112141658, 0.0026727801304132883, -0.07848231232097186, -0.05358756957039503, 0.036882639488067956, -0.07604875906180762, 0.034906410035139945, 0.0069737133368201545, 0.05079195144348675, -0.03368791398608416, 0.027179573875661205, -0.010048555305485244, -0.017848014980306113, -0.06090057775407831, -0.04448763178545865, 0.04473113672374592, -0.1399609494424518, 0.041424398934236384, 0.02999698088878851, -0.022666523241655426, 0.0889656741644368, 0.021083494500012522, -0.04295458362720293, 0.01869527772361064, 0.012920406544866168, 0.053142087937954136, 0.06797159519654838, -0.022203083991109446, -0.09230301071655912, -0.11917512650088088, -0.008305312170387656, 0.16288678670610213, 0.11099337906109512, 0.01879297688507919, -0.11457777129975612, -0.1156706339779644, 0.04715882882245883, 0.13252421892918567, -0.05197446872483254, -0.05145299721925672, 0.15790756030566697, 0.11837064303635092, -0.048543662970451436, 0.15429393504937597, -0.03787608563893139, -0.026261594323767692, 0.1966456000246595, -0.18276052348684438, 0.13216461222202852, -0.13276985797253496, 0.04823693807053638, -0.03228301792038333, 0.09661633565655381, -0.07409729092176458, -0.13030166724447645, -0.0173613504634873, -0.5781824801677955, -0.007335488117385609, -0.008544789108096725, -0.01631834799737003, -0.03772452371926919, 0.15960980644960326, 0.12328408335982001, -0.06083482258426811, -0.04019412548414255, -0.037092364301676686, -0.04140358696651304, -0.16647673765465495, -0.07969160762467925, 0.14475601860805037, 0.06668466638717858, 0.0628023804055625, 0.07867124841308078, 0.18562824256827068, -0.008175582831800676, -0.33043408971699834, -0.06139879690906845, -0.05061365135641842, -0.06569864527860805, -0.13589382587469387, 0.1739106042285209, -0.05126676515733058, 0.016809001830860995, 0.00340126753833208, 0.002088796096599621, 0.014480304007277317, -0.4177137476706817, -0.0028443022203270803, -0.059650877780050376, -0.029668563411820646, -0.016184745304003424, -0.009052645570724167, -0.052354874083660775, 0.05065262802702474, -0.013846695076484844, 0.014484406857088558, 0.013716341550843184, 0.0057536410358737106, -0.016638687449109513, -0.00443372251347547, 1.6567733072630384, 0.04615432387732396, 0.030161927817096177, 0.04772707125602044, 0.12292317233388399, -0.5126084681709101, -0.2920322487147504, 0.09622357197349603, 0.074076129113701, 0.08008614887851478, 0.09668413734424389, 0.28055911844566767, 0.2751532775803276, -0.3720286971063626, + -0.09625684908877123, 0.08830534584255194, 0.010855059913580573, -0.08617043242882468, 0.10336766347781495, -0.007029509151896963, -0.09911342800770412, 0.07828332604062166, 0.025154627994789836, 0.1041450985412398, -0.05789226424901305, 0.016486363127536537, 0.12924890040835266, 0.05537976614534686, -0.0923101890903648, -0.11028240180913176, -0.04148710296704115, -0.07948035180266441, -0.13629315019103683, 0.04868579082912178, 0.08961846232182653, 0.07837142943914323, -0.010987121832044072, 0.007140643849364351, 0.048586784377001174, 0.046616920430363126, -0.001263283896290133, 0.00914977067717974, 0.0026399699186708983, -0.014644313780600668, 0.021829582159516425, 0.023456156947156036, -0.04488751075555369, -0.09893436129089624, 0.02895593932313609, -0.0845865519137742, 0.08237820849747471, -0.09373556887617307, -0.003995674343564483, 0.13847064682983742, 0.011483557605669202, 0.03918440650878286, 0.04516673810909921, 0.025537928291176758, -0.0880877239311927, 0.08167384316324194, 0.027208460478477997, -0.12769637723492622, 0.12251281138881123, -0.0009018346628651288, -0.14096352649078658, 0.09671949542254515, 0.02751463754450235, -0.11874860956106775, -0.12129309532922739, 0.0870712541069023, 0.11757362598709956, -0.06716906745124876, -0.0742108198992858, -0.15962590370842747, -0.029003302801301815, 0.13542776940283113, 0.13018129930771494, 0.10152328066926028, 0.0586314900840603, 0.10075638178722361, -0.02413729975299766, -0.004122621514854919, 0.06226321938000086, -0.10136345380487348, 0.0974924694778049, -0.11004349714898819, 0.02312288986250152, 0.5715446642214723, 0.013491888084229561, 0.037178997850620725, -0.14881308079435393, -0.023871975042253867, -0.020641695071199215, -0.10779694366191567, 0.0631151878744963, 0.040933627755723234, 0.15128142960035154, 0.011175600007225853, 0.02309707259595356, 0.07770218842607389, -0.15022495829886826, -0.08351119843254234, -0.17265825174900215, 0.04554240587286318, -0.006213364845376428, -0.040553361267572516, 0.32472924897748234, 0.07955856590999881, 0.13265684856764917, -0.1812122329341249, -0.029215589359676192, -0.0026019327904495126, 0.07437937395917545, -0.016020354648431694, -0.023244941160201503, 0.40990561319089835, 0.03264854003140133, 0.014401070860425663, -0.02277019036161671, 0.04504146113432517, 0.023630576069227867, 0.0666873482864324, -0.026584215879147208, -0.024194105251007507, -0.03439754155072162, 0.02409596688932867, -0.001861244569270136, 0.010306224813241139, -0.018372698454153777, 0.002568317345685356, 0.02471802228857018, -1.6314790079190624, -0.06489365823406201, -0.13129279013704975, 0.48462520875794135, 0.0881610336042391, 0.06178781932474764, 0.2306124050445158, -0.11516214356334206, -0.07917920948285777, -0.22597865506841358, -0.05718703681843404, -0.08747889864643518, -0.25328235393546983, + -0.007135592638896333, 0.013836870546843775, 0.02447012568710008, 0.031378113433082146, -0.032477775253302386, -0.051424984662297404, -0.04252500517689787, 0.057092631010374456, -0.0625034166599165, -0.08510799606231963, 0.05038732157233161, 0.0948873563014379, 0.07964572806035344, 0.09531920049764556, 0.11527305720779242, 0.12451363159963393, 0.11249722205074349, -0.11106928673451752, -0.15851712752830846, 0.10855101673641486, -0.10681382985282142, -0.13265316938321056, -0.11394016550627789, 0.04605223897343231, 0.0377338585796422, 0.035065935932948974, -0.05324203915821529, -0.06927893021152762, -0.024108053357089577, -0.04265130508600832, 0.0172233659932823, 0.0319655628400614, -0.03448097686009075, 0.009393131876822699, -0.0722886585998785, -0.05967085709846438, 0.12117783441900913, -0.010554761052165906, 0.093545107110269, -0.1043297169277695, -0.07470688199487001, 0.014968632752201522, 0.1170786334910723, 0.009523293520099183, 0.028857074969133763, 0.01851389304414118, 0.000261391943560896, 0.01320102227341653, -0.03191682491214059, -0.10901513733418948, -0.02116841943382763, 0.060562350610774314, -0.06832784295748734, 0.09490723638765015, 0.08545851060431663, 0.05385767632203627, 0.11600505170948708, -0.12985331590802776, 0.03194875211578184, 0.17636195019020118, 0.2092805922581625, 0.03523962046943112, 0.18290321757728897, 0.18203687354029238, -0.08855585011794362, -0.10551195949047346, -0.04930181612799319, 0.12744525856189354, 0.025754225248257535, -0.042099299420957775, 0.023982130646281605, -0.09847066587402448, 0.104901609248228, -0.044595615077192105, -0.5856627889165307, 0.1481974221070343, 0.021820531937730422, 0.011141498924037391, 0.009344000135181083, 0.01608848403908112, 0.10469889830391689, -0.1730095140164891, -0.00929944166400097, -0.009457360750290467, -0.00961146600571161, -0.01475340998582176, -0.06026180006408313, 0.25362501561199235, -0.04067964617582698, -0.004028735830610662, 0.002951918313880343, 0.007496684364527134, 0.024626070924804254, -0.39668600817029037, 0.16399555229390642, 0.02821680580805381, 0.011301961257204958, 0.0053537561603275614, 0.002750457945227207, -0.053353650256856414, -0.38665289863957397, -0.01877810960622226, -0.010766068316796093, -0.006742897154939621, -0.000707620335515231, 0.0282612681251402, -0.09317038703202987, 0.012326032334442204, 0.008754062151554477, 0.010389827794176451, 0.013087013307084963, 0.021668518493717, -0.04682473510305629, 0.014305518172734438, 0.0032912175197354777, -0.0018878269831689339, -0.008365518608405537, -0.022701925071480195, 1.6904896123515696, -0.4570542424439728, -0.07132675224776995, -0.03779337590986814, -0.02871002332779736, -0.038280926336609455, -0.2204703415948348, 0.2548151634853635, 0.03740079777055211, 0.034639323064302785, 0.03661537490844416, 0.053604459190080916, + 0.0885460947757084, -0.10046634833620677, -0.055882998919501256, 0.04583662244073043, -0.12578773343328817, -0.06530747418110147, 0.016784529484184116, -0.10629608677908017, 0.08772127791893457, 0.03102080535445634, 0.0836764773161886, 0.07450535039056627, 0.05179637397657323, -0.04997605835723915, -0.07970364465293335, -0.11047527244889749, -0.016343361866832856, -0.11005357735796717, -0.10175662266095695, 0.04852023306315213, 0.05422491174031229, 0.13783957463085758, 0.05501082657608111, 0.04157792973785057, 0.028282235699889104, 0.0400516339601636, -0.02483811040049574, -0.002929143437113691, 0.0583408082912538, -0.03310338799410641, 0.045413931650200405, 0.027318181240561023, -0.018077150774964773, -0.024906160889358566, 0.01962831412871059, 0.0255025166309144, -0.013892424643300724, -0.07430754302746057, 0.07778105017915159, -0.02306939203200404, 0.09728392295029414, -0.10698632591008192, -0.008136633982222344, 0.027131644071480505, 0.07911687763714581, -0.09936310757599527, -0.06417886114740633, 0.11919603747312461, -0.16878417235961327, -0.04760996223141744, 0.038836950625850894, -0.1507009810931163, 0.09464142283957956, -0.04664260834244447, 0.09097807440061292, 0.14808799657838415, 0.017356950981069198, 0.09250764371091817, -0.042627871929703715, -0.11889970231197614, -0.02406067197285919, 0.18414373926049582, 0.1604786459989721, 0.08266462969055344, 0.025164015796421472, 0.12622881158155416, -0.028567248396069486, 0.06630559471593928, 0.0702657579786774, 0.02173323621059302, -0.03315582428429196, -0.04776935311766362, 0.07639449776392522, -0.12635285573947072, -0.01572242646000972, -0.5328206832304465, 0.014164526965501467, 0.01075559044019403, 0.009522591016101985, 0.008830807810147955, -0.06955797206391989, 0.09835569282220136, -0.03299854279668528, -0.011074855287961323, -0.00351972793300899, 0.006228793648889543, 0.07503459807995186, -0.12788958408221704, 0.06751032009029583, 0.008601159786409542, -0.0022887599930389024, -0.013083652126285934, -0.054547568900601966, 0.17631077772954568, -0.2057285169078784, -0.002841189358187694, 0.007430380339448886, 0.01414342879287063, 0.031851527248266204, -0.4562438506382674, -0.22304195611350558, 0.019144406914150706, 0.005447061226472816, 0.0015583020887484367, -0.002209388354158381, -0.04386311596385954, 0.04289655981286923, -0.013928418247342474, -0.002311821961356861, -8.390842558572004E-05, 0.0004744324801879557, -0.0033546644487298626, 0.023206685573820458, -0.031892668034129684, -0.006043627948697103, -0.0032588384458673222, -0.0017317036141983877, 0.004467410807914487, -0.08637512044868038, 1.4928805425202127, -0.01976729080906081, -0.02215219306861807, -0.022755981171544863, -0.025788598876357045, 0.04125713252689703, -0.2129215399331591, 0.07500835571109415, 0.02747872684101907, 0.009599732332731842, -0.01607802996622061, + 0.10281891100476452, 0.0777803022503103, 0.051245445530765495, -0.11223703739591917, -0.015197153778211958, -0.10920804111437228, 0.09320047337450302, -0.025067957092919688, -0.09152692488386602, 0.052609930634696475, -0.07578863173335525, 0.09471935916521074, -0.013835852869821695, -0.08542833698346358, 0.030123272128993937, 0.061511434549809986, -0.0895198336608316, 0.0018946517304302695, -0.07821485978845226, -0.05003616769706748, 0.029623801767571307, -0.08628862413552878, 0.060303353672113605, -0.0389650791033439, 0.06796029688332593, 0.012413253342455, 0.04773921957531529, 0.07252280410765169, 0.01926714199590826, -0.052895317066241225, 0.024390573830641592, 0.01638427626370788, -0.05058396905828672, -0.03766535613077466, 0.02506685845853568, -1.3361244517605483E-05, -0.062311008391177175, -0.05830305014999115, 0.05571559065890607, 0.09238128636537045, -0.047841831568608155, 0.04225619074453859, -0.07043529833906574, -0.015308735460534764, 0.10159435174130967, 0.06662449283495367, 0.05558860027015216, -0.12913927640440634, -0.06148292865626043, -0.08815885566619226, 0.13421084017740245, 0.005093022121307628, -0.1449244648973909, -0.047121710543958605, -0.10633855875351123, 0.16161122601253203, -0.031994361320476734, 0.12260387859065852, 0.11335597478308636, 0.04510490146025454, -0.16091810891563316, 0.10911191343498422, 0.09337165803039214, -0.09590205812164752, 0.027155339705825024, -0.12300623595515432, 0.08234151926631293, -0.024817431991556536, 0.05529677493880608, 0.0789575663197121, 0.04070275080886921, -0.07778597911016571, -0.09990275075855459, 0.005680636257499344, 0.05598078381956633, 0.022330800970406153, 0.5389374885650595, -0.010989027610694597, -0.008827660666102516, 0.07580186293319804, -0.02737192402023027, -0.03219990562702342, -0.10204256352165482, 0.025117865376208682, -0.004641979778350826, -0.08257856952149827, 0.08287694989506059, 0.05856254064545905, 0.09646004608654066, -0.06617925461939685, 0.006574288805451793, 0.060004857492161265, -0.15143720862698884, -0.06000261303269448, -0.07005539500369751, 0.22079094768778923, 0.0006551387374145092, -0.030854098499419516, 0.4466877603947253, 0.03888412304030468, 0.034427840082142565, 0.2025215138276407, -0.028931727113907624, -0.008916927291743076, 0.04069354162261707, -0.0246262606120511, -0.017062292964174407, -0.03215588951951449, 0.021209526054260467, 0.011142860698410159, 0.015276855337277375, -0.004673703749112967, -0.002073439167209458, -0.011241573738416182, 0.036359729666731684, 0.005259466378683773, -0.00910691303884922, 0.06768782903904105, 0.02081594742046472, 0.02807910354069608, -1.522616323941333, 0.003087852966573018, 0.01647870907930244, -0.05849663223020235, 0.046936176353987766, 0.06657655148504016, 0.2337716285329528, -0.046339377127360665, 0.023811593189540903, 0.24948746579936698, + 0.022560494629742224, 0.045019434311874565, -0.06556796484322434, 0.0745218321598124, 0.08776814757432656, -0.12628432904357467, 0.12145926116594274, 0.095565551985684, 0.10894719735350927, -0.06778877587902007, -0.08130911063268491, 0.07188958951144966, -0.022930596279924317, -0.019958376606994753, -0.000234548130227368, -0.05825945023636292, 0.05140104366607644, 0.08240305147783096, -0.10662054221262952, -0.08381100163989802, -0.12509599135214697, 0.09609532243715888, -0.03808307824078857, -0.04446525517887697, 0.08114702146294751, -0.02917687027848127, 0.0704710371623695, 0.04152940924857168, 0.07667828991328052, -0.014318388766585685, 0.012130232609257472, -0.03389383853798542, -0.05635863934446823, -0.05916755405636273, 0.022322243480152562, 0.011115627945881761, -0.07879825322357195, -0.11661269600816761, -0.05795521341903172, -0.03827192738987646, 0.06585765368083436, 0.023030374569613248, -0.07143028700258199, 0.016967818383192827, 0.019535765637072395, 0.05225960629989167, -0.05367197021645094, 0.06862185354244749, 0.08437813743254721, -0.11304664251712426, 0.13711068525706602, 0.1564717599883316, 0.1685245772890601, 0.11581900600810054, -0.09170571636578317, 0.04881993679508649, -0.028472318039883444, -0.025788713471236523, -0.035407160560980325, -0.013352286144786054, 0.08521969659017871, -0.08640450503503562, 0.20498505552879484, -0.21513106757332584, -0.1733807896180475, 0.1214713588051805, 0.04056844750786611, -0.16106061231298432, 0.07521415923391679, 0.038775643631932415, 0.005798529092987032, 0.029894432472219557, 0.0027531317967668762, 0.026167534956384308, 0.06258055583373091, -0.07465888911344487, 0.02125748626496897, 0.5399961832297988, 0.07435336293988787, -0.027682525838928107, -0.026532883766758598, -0.029671937051820585, -0.039749285492449375, -0.1178106866215331, -0.060872508275719925, 0.08488001230370706, 0.05126593334011795, 0.049519228864400466, 0.05995339352960584, 0.11192427681294254, -0.008513428606141349, -0.15815774834775265, -0.05412722248400134, -0.04270223714372544, -0.046776153252934834, -0.07349723427327594, 0.19706136329581075, 0.4609343369726241, 0.037407000098927765, 0.019355185239832984, 0.015559342588917854, 0.023559625811478108, 0.1989026530933944, 0.013366978027166791, -0.0359593517006656, -0.020542532010999433, -0.013261403417594991, -0.009722815019084504, -0.02343672030102968, 0.03626126024765507, 0.006840974594339189, 0.009819898022732927, 0.007555821750468343, 0.0020930105215441128, -0.012296169139940097, 0.023877085713362847, 0.07111242478403994, 0.015777488180989244, 0.008255074245491389, 0.00802881136531599, 0.020563229300549424, -1.5255664026159614, -0.078374108152539, 0.03761865433012128, 0.04942288208135171, 0.06480225137878765, 0.09447309429453402, 0.28510436354323027, 0.21229350876936454, -0.21108357229194238, + -0.07843993646481351, -0.11321147240533143, 0.07715101459799588, 0.014050444021505064, 0.07871742334294239, -0.11227715870431786, 0.08450688758008094, 0.004102132436971535, -0.057271485282626135, 0.11065608108692608, 0.0488197110335339, 0.002408363764320167, -0.062191276339146534, 0.12231595303414541, -0.09631181386055622, -0.0108007702925127, 0.029451173334368943, 0.10704490294802915, -0.09619544626762484, 0.00813642462652473, 0.10969278591181586, -0.09293426463696486, -0.0021115582941438698, 0.006601451143705274, 0.032108944078362005, -0.059988058853157694, -0.03821347037735728, 0.0837282012703416, 0.005693157780371121, 0.007670249878081241, 0.02582850236575919, -0.02017643721328286, 0.020976071243921424, -0.00922109084051159, 0.06314424499534282, -0.009338881244904574, -0.04616700951936533, -0.07779827426956638, -0.03267209460348897, 0.04309941246092491, -0.05771744040402683, -0.08846185986456939, -0.0030167998083542222, -0.0013481701136161203, -0.10754490800543529, -0.12438056623370874, 0.06918668206051454, 0.05936160633385476, 0.10454027915751045, -0.12293136756704504, 0.09407503029980589, -0.030632174510458892, -0.13190356676848103, -0.15597140826335013, 0.0024443565209744627, 0.1107617974398237, -0.13860764500517778, -0.11674891057859497, -0.07205604856435097, -0.08416499589751207, 0.09607678139932356, -0.09302484492228315, 0.05549306978159388, 0.06275312609365208, 0.11008262003101901, -0.03543062342909809, -0.016677751722769744, -0.12865903074789928, -0.014533407035518071, -0.06761035173098576, -0.05192575134643071, -0.06892211926370301, -0.049852371638553106, -0.03305769970917293, -0.030293329947598466, -0.06774086476839557, -0.024017471885549504, 0.026722683789075927, 0.5244774428209813, -0.024457026263396242, -0.02649583659818064, -0.030196190688813906, -0.04010860349880097, -0.11033609241841627, -0.019208726128511093, 0.061483102408877575, 0.044535114392742166, 0.04603664834656698, 0.05695314084209964, 0.10301649799345591, -0.052997937506450626, -0.10065405936636543, -0.04176910839078792, -0.035039397704561076, -0.039754452673660456, -0.06107607255221323, 0.3661513953944969, 0.19821378217831512, 0.027604195532853544, 0.011270002291709422, 0.006136020591427031, 0.008049615256570612, 0.03549211893165856, 0.17478781829131826, -0.04351505028612333, -0.021928908807715152, -0.011400782813486922, -0.0030291118264490074, 0.009258261199072942, -0.03448378438518437, 0.030571434735444984, 0.018045941886622625, 0.013174596789692593, 0.006375668831733156, -0.008769265533383693, 0.0512446055428175, 0.03864844534233231, 0.009320413340785443, 0.0016931361887809054, -0.0006024886092826261, 0.004961680699505297, 0.18559436475799954, -1.5362180214649463, 0.024415121185296013, 0.04898746350665366, 0.0689253545535311, 0.10372204197626955, 0.31724413890657455, 0.017093772865548557, -0.13361964061685175, + -0.10732305171792046, 0.04211912859881487, -0.07764407056434264, -0.08064246197691682, -0.04412239299504364, -0.08547311523934668, -0.010163571719317262, -0.10649917139178065, 0.03222019744189375, -0.05661486392804089, 0.07951712660108108, -0.07141755784437416, -0.11797629484044156, 0.038741466636563436, 0.13083850731241886, 0.00811046669891968, -0.1047438716558156, 0.09095032287283214, -0.006583495262247157, 0.07503042717636857, 0.006860116043370894, 0.07794445722526737, -0.0022483998112280694, 0.032853869808123784, -0.02828177671442976, 0.01616945159092043, 0.06411888567090496, -0.03289813797284567, -0.013829875569283305, 0.058527466052082644, 0.047401535436360095, 0.010105343253003735, 0.10286668817823037, 0.04683328835819961, 0.0058288316307990315, 0.09945776854627428, -0.020592667342809536, 0.023664895435970484, 0.029140357878898692, 0.01037270810814278, 0.07402752997557521, -0.024591391210827103, 0.019371446286093375, 0.01416103243026479, -0.12095096382025525, 0.06724398764461918, -0.0746224002335096, -0.11955221651790762, 0.00098940486521438, -0.1400217507851969, -0.03311543341978234, -0.1427372855619453, 0.09371263816014812, 0.027255042655853448, 0.13064087163705246, -0.1110836491097758, -0.15006612817547973, -9.39119292337531E-05, 0.11578643836189885, 0.052092427198503176, -0.11806538615712285, -0.20925506317235182, 0.00955058130157863, 0.10793175278076418, 0.02563251426036249, 0.16692468969493293, 0.06296887759272972, -0.07554486648058095, 0.029262161531462712, -0.07803065047373514, 0.01571608448549728, 0.1488313049468817, -0.013118239461398196, -0.08909591638330476, 0.116013970037137, -0.06208611106681963, -0.011765787569786813, -0.09766528350899059, -0.06850027503434243, 0.5224149497061537, -0.03389997043108419, -0.04352225432265801, -0.10974988797525495, 0.034907366609127424, 0.006756073197032565, -0.04596224810664717, 0.06619631750026478, 0.0621220749109037, 0.10172055200470043, -0.08610274885082535, 0.0008658367133735356, 0.04045162348579269, -0.09117936909485733, -0.046690725264681154, -0.058240311432082185, 0.3880502029790115, 0.013282195950147683, -0.01746533492445252, 0.17894360544724291, 0.017085788957636613, 0.005359518497071277, 0.020309184107876556, -0.003822027963192665, 0.011256025056960259, 0.18047369594227086, -0.03915967496065411, -0.014235144318429638, 0.0067691558877648085, -0.013094693077409125, -0.001752533543925551, -0.017516061129581564, 0.037682823596085005, 0.0195883527206475, 0.0035616634040972366, 0.0682149393630837, 0.01619757570373407, -0.00138536040417871, 0.026841040357814636, 0.001016170898464292, -0.001259262480110102, 0.16658926812347266, -0.015383670126544501, 0.0029817015986811912, -1.5252658872200429, 0.05458212759770921, 0.10287871887711636, 0.3147676613182656, -0.09800486099252506, -0.01949386296815428, 0.09725649842450657, + -0.037533848167182554, 0.06845992367054303, 0.11049338110412027, 0.12315168514206626, -0.09603378018660963, -0.13193149262579912, -0.04471209465164748, 0.05603079179670903, -0.010493826284412248, 0.046748052584688254, -0.10243577812686572, -0.10108722929168922, -0.15499048848136968, -0.14087873091309885, -0.13424660330812044, -0.07408360309713577, -0.05844254405258243, 0.0540430997271454, 0.028121105647215823, 0.03653177327784422, -0.09719925542734291, -0.14234274471364788, -0.05756759590085516, -0.0051069657351229866, 0.134990376951462, -0.050433340345201326, -0.02848784925737684, 0.005865860176169293, 0.03151834288348237, -0.07147589654531765, -0.006057186053159218, 0.05032546210019676, -0.09719345612120509, -0.09807526367107494, 0.06659368315226752, 0.03841071390715245, -0.17016615827806278, -0.023722297746411897, -0.04482065544361666, -0.008789894454079095, -0.13583071425788704, 0.06582957402068801, 0.003760507833621372, -0.07982761323507925, -0.01334656799419652, 0.018234173256456668, 0.06965451190083775, 0.08413059227100961, -0.11239238016267326, -0.11355132625350278, -0.12713720978053292, 0.06991716981488585, -0.022765417182841946, 0.025324036570462543, -0.058635921964908, -0.13029425287755161, -0.14110751942705188, 0.13347104182987254, -0.033128108344376996, -0.08501976799926955, -0.12864555060271993, -0.007058488121411128, -0.010426842654398716, -0.016467531495336665, -0.09310737735741817, -0.1701268013660096, 0.010469927830532725, 0.02652915719074795, 0.025520170242782792, -0.0565052190261101, -0.0052011426876770505, -0.017235772939555125, 0.029713658402295225, -0.05012109285358112, 0.14347907040018096, -0.007746111079783551, 0.0419542039360671, 0.08722633140973335, 0.11302460532227562, 0.10250868300073414, 0.5134634514979112, -0.11636094156691512, 0.029843355081826686, 0.007677330587190896, 0.008344654812206897, 0.01106134821815278, -0.027461988922295205, 0.12534332535869727, -0.08022714469580167, -0.0016250518890428972, 0.007278932461199046, 0.010869589373766059, 0.03428837209743037, -0.1173819525231708, 0.3865170578066049, 0.023363777560019602, 0.006222502981464279, -0.005623784322208676, -0.025036739493093808, 0.17641221702921528, 0.03192802693816912, -0.006216143627420345, -0.003924370396390188, 0.0028047888115806897, 0.019062296919494452, 0.19063264358804213, -0.021665737468500076, -0.02461073606709231, -0.0045218162876543705, 0.003770021704172212, 0.005249183207069789, -0.015479854353150852, 0.02897587269482021, 0.08293887477407105, 0.0302580687881465, 0.016362624692627746, 0.004595603396780043, -0.009322583234848525, 0.024330758569002284, 0.17111458624942733, -0.01886651252631802, -0.015845969121826033, -0.010599852939881648, 0.0054879137764052635, -1.4958159097084944, 0.3078489556841857, -0.09430871371782434, -0.022904792435684607, -0.018446951627530475, -0.02617427947360651, + 0.06676380229225368, -0.10248887263536344, -0.12358579962556683, -0.07580685616393742, -0.030305370135411076, -0.05177573563407319, -0.13813397702961583, 0.06882668999603965, -0.034884472660125905, -0.00658807965745681, -0.06906430427514776, -0.1391986280910023, -0.10779263116141807, -0.07405500732174529, 0.03752015705205349, 0.13520891361898657, 0.11821190818768056, -0.017947000260117595, 0.04341687420671681, -0.06692229983832583, 0.11337390427000858, 0.10563823893211878, 0.022024732775931585, 0.130763954495101, -0.00016521019432675052, 0.0947028694708432, -0.00392947131215867, -0.00031488552213807555, -0.012147840909990456, -0.053966283280819594, 0.0810356491235049, 0.011332314843954907, -0.04049677931521965, 0.1019304496381133, -0.13939379386054862, -0.07126837098331586, 0.027865291574719012, 0.129321447716968, -0.09609572062610672, 0.09124695293882651, 0.0904539477983086, 0.04907676213899735, -0.023437903095418187, 0.037952550465323316, 0.0633562794135198, -0.08052614831010547, -0.048107659811011914, -0.02391929982380478, -0.023050364948770233, -0.07747980314388771, -0.06144228000178163, 0.01709507467040533, 0.03657221481702054, -0.04742335899872838, -0.05958844304206965, -0.07732529310511893, -0.026173775409775505, 0.005814913113933337, 0.057818170299130826, 0.05426697960528538, 0.021022357729379753, 0.014509933956687383, -0.07466848928991264, -0.10665403702194132, 0.033296312536689514, 0.041850541646974805, -0.21033648057467924, 0.3476306944874571, 0.2263121523628011, 0.0027957154196151064, 0.04227317852105085, 0.18397246634056796, 0.037178676843369104, -0.03846466947256534, 0.022265778898253166, 0.14490980344718116, -0.167359935272792, -0.17930107004569826, -0.0574136425812972, 0.034287020888011804, 0.06579850302214701, 0.5396939265164233, 0.0038172547903846596, 0.004871555926195259, 0.012794337517554426, 0.02649289726359759, 0.06364965745812384, -0.14125886486714467, 0.0102424078596631, 0.010861498042395286, 0.009105587566308908, 0.003393386787171781, -0.010798285527209513, 0.42595214466087733, 0.024484355721858087, 0.014382402995182475, 0.005415110755637189, -0.0024333850083526534, -0.008694026981160556, 0.017723775950630127, 0.16182517154751105, 0.006695115011710703, -0.00027543007398049546, 0.004308295962179853, 0.018208842241592235, 0.06347346726269498, 0.16793037377500292, -0.035031394630117056, -0.008278780216895699, 0.0029108884261602186, 0.006046167029576881, -0.005057264822237862, 0.05032183494849486, 0.0657862005803929, 0.03534347932978072, 0.020531108064669366, 0.00870044019053753, 0.0009870826783960236, 0.15672202504249766, 0.03270532850181737, -0.010957653108147392, -0.016087220366654657, -0.014273785972777425, -0.006086578117237, 0.01690961139333608, -1.561673783927821, -0.03775377531464072, -0.019155881996207103, -0.03130348659970665, -0.06706707909525028, + 0.10967912082124107, 0.022872669522804197, 0.10503646789974232, -0.035831909190856784, 0.10800658570188543, -0.08526678753277903, -0.07996988665646854, -0.09356804818951343, 0.11339925749140635, -0.08748524948358008, 0.0908459680004582, -0.088764805946034, -0.0995522241766241, 0.10431749884554926, 0.08814892926434766, -0.146154116217628, -0.061378702654636665, -0.1114826648034721, 0.008991775316641339, -0.1662121372487084, -0.04064397017493912, -0.009413729384563651, 0.04836427426675424, -0.0222076717077136, 0.1361929610930459, 0.006420988262415585, 0.14490253693322439, 0.07399638558808386, -0.0702597553870317, 0.07212596560208527, 0.10849897647619312, 0.05905071534471897, 0.12866810610034465, -0.012374410580890742, 0.11369523375303324, 0.01302623179313834, 0.07802874756817164, 0.010693456251605395, -0.0923125835324599, -0.10674020378350833, 0.0023986227851031396, -0.0393263284884172, -0.07606507260072642, 0.11662762987117788, 0.08010831811005562, 0.056351736246812736, 0.09438542843268956, -0.06111320365663518, 0.06377091858644757, -0.0671989630735595, -0.04019861870861897, -0.05427916692600447, 0.02767549464884463, 0.06830141354311582, 0.02834752726454544, -0.09564645977637534, -0.025452383340638172, -0.07451872354714098, -0.08426738428983364, -0.09531481322762628, 0.04782387971482605, 0.006490101307095094, -0.00523234808958961, -0.01781925517461478, -0.06372857144272927, -0.0488383713665375, 0.32612635028316755, 0.013088007849610709, 0.20357486785427678, 0.05280768745914123, -0.14560291277932705, 0.013783964984087443, -0.11449834618409128, -0.10549782052279938, 0.12420763446553335, -0.010134035158691448, -0.03474684910195559, 0.07025091495222731, 0.01651414225206965, 0.07730692695442848, 0.023207445535877783, 0.023242253970454117, 0.5258214229424526, 0.0075989414044886, 0.0201207568439723, 0.06017308908744026, -0.10343424818631963, -0.025498733017718878, -0.04974400344357445, 0.019006357577971464, 0.00459428926793026, -0.014277570450012055, 0.4062719792375175, 0.03851255264868314, 0.02909825685440073, 0.0020333445590691585, 0.004252471330492329, 0.003285271502948238, 0.04478915035634132, -0.03739632449794993, -0.04819641456035744, 0.17091202912995473, 0.015593445333077438, 0.014347311166962987, 0.04463777465756622, -0.029832070533721583, 0.012286319836730331, 0.1988166202341929, -0.026103987687794403, -0.007056873945051431, -0.009316126668192416, 0.07576806854753597, 0.01900139259199768, -0.01732973035565972, 0.04747427869944791, 0.022629100800071203, 0.015041214979413214, 0.17960731883932307, -0.029258151972344316, -0.04283573119898363, 0.04003830761996204, -0.004943578073475112, -0.007899828516504392, -0.0017551670436622008, 0.0005318891991475741, 0.021073775471450788, -1.5117386957109828, -0.04157442465329436, -0.06108848546462517, -0.17898568315803898, + 0.05175596147836001, 0.09336101724968834, -0.11206389991198601, 0.09025361188519396, 0.06256686420436211, -0.041705505897987764, -0.02540033759614896, -0.11258439321112858, -0.13193196379045738, 0.1383512834289265, 0.10783293396297793, -0.04903573809537109, -0.03789568471377209, 0.09451076679294328, -0.10641937669561231, 0.12937612794617284, -0.15270449725796575, -0.0796626016609192, 0.01330161683648494, -0.04199210878479924, -0.0023603641864854475, 0.028145806400471488, -0.0051428280473392145, -0.03352493693588714, 0.10764565772898858, -0.059558076706389955, 0.01072381714838344, 0.017042068054230464, 0.07643256380228448, 0.10567778515496928, 0.08370629132128268, -0.02550330753635443, 0.028958529163954118, 0.043004392748134425, 0.0065289873643830645, 0.12474216611368875, 0.06091634800212694, 0.040075762610628375, 0.12497420585739148, 0.04778153402884136, -0.04727009283651687, -0.010946202218060502, -0.04556296997828403, 0.12593677361330616, -0.005737675294135118, 0.08563162504460628, -0.10466125414720567, 0.09307619859210621, 0.05266770517662177, -0.04820315646057509, 0.006992769021709661, -0.04169015594636812, -0.08540979390273554, -0.10093941651847409, 0.03206534780088831, -0.010128257165957012, 0.027343579216011146, 0.06593227748171232, -0.025976307635303297, 0.02235774848406257, -0.1154088529330671, 0.10753575565171528, -0.09144214864508485, 0.10612916794152466, 0.0011103734979565232, -0.03613613470094445, -0.14199247284646396, -0.22500598362796195, 0.34682063103153904, 0.025092993315431834, 0.11470950616183012, 0.09622433470681022, 0.0907335736448899, -0.010825810657791745, -0.023080283400258108, -0.013282604359180649, 0.05603547954705892, -0.12473156450474866, 0.11505774130001693, 0.013272264672986138, -0.10383042917091999, 0.06109869669936914, -0.10917209146464524, 0.5334256147586004, 0.05437180092424345, -0.10800744098221164, -0.026197177793164467, -0.015143221374473076, -0.015874893613148058, -0.05507578256604305, -0.004117106380844362, 0.40185402332030773, 0.03130527794435267, 0.019796476780925047, 0.016241318977375626, 0.019047555788966344, 1.1158924345153198E-05, 0.05065565819113019, -0.02560075374297491, -0.020108726811827345, -0.02345503307179764, -0.039811342027591, 0.18276950340549847, 0.055130530778501614, -0.033076578540235, -0.0046307404565952975, 0.005204799027527872, 0.018577623839145754, 0.19716699544267563, -0.037659495961126395, 0.06199267026032726, 0.013853139477710025, 0.009137647834653213, 0.0024725761566379637, -0.02906558491174683, 0.04174150814847704, 0.19088809897564174, -0.016268621883656652, -0.015482213320032412, -0.02047237392379459, -0.036865607405446046, 0.04716656226625712, 0.007162845437008928, -0.0014045503967874268, 0.0027992423379216546, 0.010024638263370078, 0.027046021149099007, -1.5317060885854334, -0.1869075405904433, 0.31147122796505733, + -0.05375139016288002, -0.09590057881422315, 0.11252483243495337, -0.08632323781580747, -0.053856304133958054, 0.026615683493398396, 0.04165974595371268, 0.12476682724038747, 0.13831040713280895, -0.12947177874681348, -0.09089580786352587, 0.017766950174895293, 0.07081843119791677, -0.12311618841626468, 0.10795767811419724, -0.1308841967862834, 0.12561645652600503, 0.03815499089131312, 0.028367420531511336, 0.06765567929231701, 0.041671088429852045, -0.0102803163462627, -0.0522201618854349, -0.08220227251960369, 0.05760552149215255, -0.06484362759207137, -0.05682125431480675, 0.03697070275866491, -0.0012653853260548636, -0.06191757988447908, 0.023116170907098832, -0.144837918044721, -0.11342897341433687, 0.02013572261299351, -0.031870940560626886, -0.0003278664898046658, 0.041387764681811226, 0.09413905197849097, 0.05149785937891661, -0.04040449686803494, 0.03209462083126262, 0.14843204130967544, -0.05684638243241759, 0.047269352623980056, -0.04860866522929675, -0.09913295480230254, 0.125926486737127, -0.05417227379115681, -0.026483887612136017, -0.01538647409485096, 0.04259636035058501, 0.07368257588963781, 0.12131505387381962, 0.05261791341665351, 0.0014530341193185292, -0.09170783114502709, 0.08592528878170919, 0.03215885375578306, 0.05079032669891191, -0.03657737121363282, -0.0009649686666858661, 0.007716452019794876, -0.06637254445828467, 0.03505354483724053, 0.03221275806986341, -0.04635180062839059, -0.12847688222006995, -0.2661213325525717, 0.37167472754447806, 0.01796000553498371, -0.02811308700983419, -0.04680322938439364, 0.0004465046771778132, -0.008157241798119129, -0.04215714497137183, -0.012627590102349026, 0.07032093359942052, 0.04565604263841791, -0.0678017476057364, 0.02261152304791274, -0.09856814062991759, 0.0702144864064044, 0.0044002062603623136, -0.029902462459295672, 0.46206456203789814, -0.02703743067199893, -0.018388975571256252, -0.01717793338656082, -0.021203502026862282, -0.039776565942697316, 0.3953697708238072, 0.007525630879767712, 0.007809412263013793, 0.007787085552424784, 0.009124936212737175, 0.014457609345341023, 0.07548680541022769, -0.038504748471659495, -0.014604166862760781, -0.010805073943326408, -0.01036093564751879, -0.012221587250874091, -0.019034468041139885, 0.1504412831140194, 0.00936245281470667, 0.003228732576963194, 0.0011862782178917956, -0.001091123076269969, -0.0113690830032632, 0.3112518786614108, -0.022833076698282148, -0.00801794987202097, -0.004328927896205797, -0.0029598535660989387, -0.001621004985550234, 0.15609720120427045, -0.0074857823611430355, -0.006205906667169664, -0.006586509204540396, -0.008198527027390629, -0.012350434966469523, -0.03326370455841995, 0.06135787820085971, 0.013698007818187686, 0.009045766887003889, 0.00876195855371812, 0.011028820032790342, 0.018822686249770293, -1.3182691576800587, 0.05666262628619023, + -0.10983996157560423, -0.018399723259279077, -0.10613117943904188, 0.027168298582958914, -0.1112626194473992, 0.07277253272638574, 0.08719344429305988, 0.07823864255646022, -0.12569343443210743, 0.07069901733836033, -0.11123862552104753, 0.07248562940980473, 0.11819569565528286, -0.08715112173623464, -0.1230000205219931, 0.12280472527603149, 0.09367836451872921, 0.09650358931377112, 0.039392106906592284, 0.15940874111619796, 0.004157956664686864, 0.01567956414392691, 0.09769455668497434, 0.018070316468207077, -0.01803595267041246, -0.05081402027368636, -0.014770201307318608, -0.07951491699770656, -0.00784157614473517, -0.11755766707971012, -0.004526753805049525, -0.1004475012865206, 0.001091840056144266, -0.10522814107826053, -0.02032650671058751, -0.13562229141987947, 0.05443192757589326, 0.16115542653328463, -0.029975879290916028, -0.008630386468306009, -0.11578046213316129, -0.09016392430667038, 0.13190825363577882, 0.01190184675504141, -0.08155194247108953, -0.009221731479800691, -0.09715689237301416, 0.022665188841840676, -0.12462660867282609, 0.011055652345694599, 0.05750496679070059, 0.006079769780381359, -0.07639169225824391, -0.012164849070978057, -0.10806971033403527, 0.01840918658510816, 0.04875548196658826, -0.017957585334701123, -0.04867131500267334, 0.013340955385328783, 0.07635132445734726, -0.01780851064054435, -0.13090784491204446, 0.0083029020336774, -0.06678565956308866, -0.04316091900740769, 0.24386634752792666, 0.10257667884842604, 0.20500969321956802, 0.05332234889700436, -0.06768101831714114, -0.07138526711373192, 0.021701343096152213, 0.11790816032823544, -0.04509926031301581, 0.17097293717979972, -0.12245730091351979, -0.06809760941108861, -0.052392382049699655, -0.084230227247853, 0.011345831778203593, 0.1396832445718052, 0.1371122299106818, 0.05165647366660181, -0.1857946466488086, -0.4962180203012219, 0.022788782078844, 0.0272192823912965, 0.043397575062609016, -0.3868948729953199, -0.03235829357526864, -0.05241771077250235, 0.009825364778499577, -0.0009643328540431262, -0.008976652368553328, -0.06558432166664828, 0.011123235597607549, -0.010080671354475474, 0.02744822394094657, 0.008641378963867505, 0.004070866063148104, -0.002913773434240055, 0.02155951264395302, 0.03099860465866126, -0.17117165973673704, -0.014040224983675041, 0.0020304835317686157, 0.024629698139572012, -0.1280794491624851, -0.045029410724810155, -0.22894843565231715, 0.03766436074864396, 0.018239413018754726, 0.007977001792437044, -0.16579944231630506, 0.018827677321722743, 0.015514326638995754, 0.0009086070303979399, 0.0019090691941734336, 0.0023453850613686517, 0.010717807948419755, -0.0026201425623345737, 0.014829674463240801, -0.06873734379896992, -0.020007675949140317, -0.011916061183612252, -0.0055184217904303695, -0.021022050160756, -0.02409906923268626, 1.429805246725013, + -0.06494217886865365, 0.1012910982216061, 0.1258098731145334, 0.08340867654407558, 0.01885139190862055, 0.0398218959761696, 0.13530308355613022, -0.07583203497192217, 0.05208918911996516, 0.03470576052526163, 0.052759548145077675, 0.1283835441148281, 0.12155541809734652, 0.0997000842962378, -0.0008131571906558045, -0.10545130395946864, -0.11001048324968253, 0.05115419616356108, -0.010950705833493607, 0.014968100628892778, -0.09228435413115733, -0.10251740301723758, -0.09057311887343333, 0.005933293726092175, 0.11402999105815256, -0.03786060031033623, 0.028103188318504453, 0.09044089387453975, 0.13078695640591986, -0.07213959641621884, 0.053899657488985606, -0.020936314545569355, 0.1163598496773439, 0.0775602731471955, -0.043161563386896515, -0.013937926666530268, -0.023440750815928724, -0.05504832432739558, -0.16214141217647743, 0.017421387022510816, -0.027427941034675118, 0.11450985796004318, 0.05937828102725133, 0.13515757626023012, 0.003517573532918382, 0.05849328046105069, 0.12224970333300222, 0.059679300741298257, -0.03441765400836552, -0.02168740091835184, 0.023028410403598498, -0.051416555055951274, 0.07888666925311644, -0.042758779247772584, -0.03001685241022145, 0.014904410326783251, 0.015521172280813272, -0.03312437357544327, 0.05880899060018941, 0.00509450409992245, 0.011846950144083586, -0.07764110530797277, -0.07448862593806811, -0.08004795781580017, -0.02373970910436929, 0.000564212799948351, -0.20508313859150337, 0.2607880184933677, 0.18392846828090106, -0.03792163036625639, -0.020948870004258713, 0.14426616761491462, -0.0765628479086347, 0.07553448693541558, 0.020995260221713163, -0.05903854090987208, -0.13820110064520902, -0.061660556714056784, -0.03526540307509919, -0.021639852692969325, 0.0008897886213775078, -0.16657143574566377, 0.18046329215913526, -0.04262419097121982, -0.07097581115960097, -0.0275559252420226, 0.4926128293670867, -0.04774291064256167, 0.3857956347139249, 0.02700275148159383, 0.014416460793112698, 0.01389206136845984, 0.045449299910147824, -0.009291022490058483, 0.05705073105597967, -0.01863387809323691, -0.005299882329656773, 0.002671865541701332, 0.017596326457111428, -0.019951524275269708, 0.005490296557677847, -0.012633906415269604, -0.007425961739109397, -0.01164332613015996, -0.029381281237665455, 0.16670822465235796, -0.011924507885058193, 0.1284641488842566, 0.031223538487982448, 0.02236544955339584, 0.029215756132568757, 0.22140235516105336, -0.04106116111569101, 0.15194300338098285, -0.027349889565212695, -0.017238206393322103, -0.01158605063644598, -0.010825995794312631, 0.0038715203675446556, -0.003820587487191676, 0.013773071125120918, 0.010216143247220335, 0.0056924012427849, -0.010473956249453867, 0.07120445959045979, 0.016083333890298437, 0.021178492037912652, 0.0092057543146614, 0.006670771928009609, 0.014827773129486403, + 0.03966314359393475, -0.07177139592108875, -0.11442897116161793, -0.12502804446386206, 0.09299209072345195, 0.12488765410585526, 0.030899342774270398, -0.0398483988515067, -0.009407848544694487, -0.074670202765054, 0.11622272182458712, 0.11621456118481402, 0.15513556947973683, 0.1313437476216316, 0.11280754603526118, 0.04166624641906023, 0.010635401416134855, -0.02730983531140177, 0.02275784070889534, -0.06230238916509051, 0.11606767359618449, 0.14722864959680804, 0.016277423359652314, 0.0853520738237414, -0.010783926083936695, 0.16552642813656981, -0.08849633510282756, -0.182734639527901, -0.1783227426097073, 0.07102518311037516, 0.01776209327334386, 0.10295348442871839, -0.0485838440585483, -0.08557678686659853, 0.15652234829636755, 0.15674411043633105, -0.03901886016606949, 0.12249960290149275, 0.11087703968081083, 0.026189347802976968, 0.003683815887357303, 0.12102153819435225, 0.3173782594517613, 0.25734236862692134, 0.06199710228633362, 0.010280429878365171, 0.06662782371082403, 0.08699552594079273, -0.10635686570987114, -0.23045460445671695, -0.08891394895629753, 0.08848870649376155, -0.03165485829930477, -0.010480589701639018, -0.1372777359235061, -0.14282497383198228, -0.17086636286846957, 0.1618317961628517, -0.06747399520690943, -0.1266061335365595, -0.18293820729337457, -0.03325744063782696, -0.06657806176464941, -0.0944074750035404, -0.07949109120419477, -0.1823378385481824, 0.030456116795262507, 0.06385627847447634, 0.05098256027011482, 0.08834658337944004, -0.22542262597311255, 0.33424637703238647, -0.25767292511826945, 0.06938900652305507, -0.0605260752825234, 0.02556525474071714, -0.15234047579569757, -0.1904301191340783, -0.24964096329451582, -0.21244834514744224, -0.16491185882842582, -0.0714590219061892, -0.2682523065943177, 0.18608046474070977, 0.11490938756987262, -0.1272712412887523, 0.12282656382106627, -0.6669536275878664, -0.031032267325160196, -0.012929282052886994, -0.007021697027232579, -0.00630564409128823, -0.012314408158894043, -0.07464964451504684, 0.025058644607807014, 0.01056729758073337, 0.0038332276413554564, -0.0017912988253978995, -0.008025959678843338, -0.02263653196134646, 0.020875957218585706, 0.004042000933988363, 0.0024026903574127633, 0.0048951387128862225, 0.012084532904294775, 0.034524509151692806, -0.21905440971517232, -0.037152037492046035, -0.01866657110648655, -0.012465754204773027, -0.013274548463705314, -0.027206551470426638, -0.287580652662932, 0.03895679436492782, 0.023106923235040645, 0.015602270648298694, 0.009788976706054432, 0.005439482726949357, 0.009272374772009762, -0.014608141224628425, -0.013101179020244581, -0.012840817005046051, -0.010897612099011862, -0.006001003396161482, 0.007845439905077509, -0.06010264723748972, -0.01542990578807497, -0.00550211677369996, -0.0003321543715220088, 0.0007840742957737606, + 0.1078023547522178, -0.03797286631354782, 0.08227761748654334, 0.07511649557078919, 0.05482472233682854, 0.0802147133863599, -0.005165823993547337, 0.10635999287405369, -0.010740961828071823, 0.07018740984206387, -0.05654865165352017, 0.090905773199311, 0.11015789151255373, -0.07146763625519904, -0.1351336987555069, 0.027197197695766433, 0.13506481448542362, -0.045179480849895884, 0.03614359257349108, -0.04795690272995717, -0.0573859386980329, -0.08408982107763822, 0.1393370281838017, -0.09441184253698391, 0.12224342108163685, 0.06949221495939502, 0.015595436886802348, 0.22937963806902537, 0.038279808012191906, 0.12178334417754706, -0.08223275758574856, 0.08492633488812422, -0.19954260815383407, 0.06089104513203299, -0.062267122553592284, -0.055980362022072926, -0.22840839265059196, -0.04112375464444427, 0.13042964383989816, -0.1528907714630222, 0.13351835700392803, -0.18351575416201904, 0.014735930757286306, 0.15569555111189165, -0.09916924554701638, 0.0750804319739903, -0.0947470331574262, -0.041258272402770045, -0.008384160881458422, -0.05394846829824758, -0.08709151991192265, -0.12793422473686505, -0.017419973311061984, -0.02092432430122579, 0.12094211518848993, -0.10561834491220995, -0.11252098236616069, -0.031189387568321476, 0.0698876336843073, 0.05283599647773851, -0.12749252236695185, -0.12327447441308005, -0.03126512839175642, 0.10410434682094764, -0.003028547198969504, 0.12133813393908133, -0.056931108842846245, -0.03088246544866024, -0.09911864046202024, 0.17124760163089187, -0.03718764365159877, 0.16889607351778366, 0.05940793724896561, 0.3330055377994752, -0.0071705710296685165, 0.18814242855341382, -0.15776280216081312, -0.005112633881070637, 0.13223477185644292, -0.18021174440668558, -0.017367609370081086, -0.046322963429184606, 0.2257022065485591, -0.05174937757682351, -0.17883083216994897, 0.112059668702547, 0.11432171563211287, -0.12201293735072345, 0.31954617222312626, -0.0007513808924828821, -0.0026943639770260486, -0.000786914562200286, 0.03684841473466588, -0.022694486591320395, -0.019963276736745708, -0.004482102259997879, -0.0021927424804244824, 0.00066437498138254, -0.0011423420343572126, 0.022782633356483183, 0.02954571276491158, -0.01167503462384929, 0.0030506447389740746, 0.004130518987365918, 0.0043694346109345635, -0.028773408089940417, -0.026403488033483868, 0.12202281514998083, 0.009739396830291416, -0.00026686529743791265, -0.003730627330077202, -0.005857534666923417, 0.005407011315150631, 0.13429966334744284, -0.02966975798341975, -0.015275786841951702, -0.008246673292498723, -0.007563248243110089, 0.010972468802119089, 0.014414253406362078, 0.014447825100380389, 0.01737603270168271, 0.019977748064789955, 0.0341717902432237, -0.06089462730583002, -0.04761385176613493, 0.0724622832354458, 0.0052368365407146, -0.00910271883368196, -0.025675137538650195, + 0.07682857810734224, 0.11311533925794157, -0.08208253264157567, -0.005234330560900851, -0.07141931439983525, 0.1113774352340295, -0.09506607829497436, -0.02525670085007993, 0.040478698543592116, -0.10962600671531805, -0.06556467854887774, 0.031269314354786484, 0.03716816216965384, -0.1215632203583579, 0.12495683410932419, -0.022221087009726904, 0.0001590801793480261, -0.10747749490113481, 0.1289863534821777, 0.034398106520365276, -0.08078830540791347, 0.09667550720731641, -0.10514694835623412, -0.13567584757958578, 0.09179689915537739, 0.048198832048106315, 0.18356143987988915, -0.21501942485788034, 0.14876571769232474, -0.04679954821475061, -0.13068201896033657, 0.16969229075016865, 0.09197473745922281, -0.14423965734426653, -0.018278523885450624, -0.0863053521260197, -0.0982454835974322, 0.0013386158628025235, 0.13391776328185484, 0.20242466701638492, -0.2280751151671913, 0.002650246032667696, -0.12599882885861305, 0.06332334388788269, -0.11667674152985313, -0.12744657924804303, 0.05930833114032541, 0.04262540152071871, 0.0392107449449798, -0.058652934790723275, 0.09298338029007777, 0.013722066403948371, 0.0015841775612025746, -0.02985930505104147, -0.01499367328480398, 0.04769804968121487, -0.023023628030637597, -0.06610957965827934, -0.08268517360991683, -0.12469796682582628, 0.04659615638477744, -0.08039533369560785, 0.07395273462391959, 0.0036350492480643126, 0.11519737052422317, -0.06935088464830019, 0.1223281197153006, 0.006521312339559695, -0.048120603140098625, 0.149387863185619, -0.03522992345835908, 0.0013982057422548147, -0.17620165391755785, -0.04253160477170885, -0.12321565777125376, 0.19866213047979767, 0.12193213485114701, 0.17463944554950178, -0.29612244621222783, 0.09745521493761572, -0.02818993197015331, -0.025834921078810698, 0.02369315642263914, -0.04290401628173431, -0.08280161597660526, 0.07182792375171605, -0.023209637037647703, -0.16018094954114018, -0.051793738470648824, -0.31505172542269033, 0.005105998224372486, -0.0315380560240802, 0.0279737051585605, 0.020274949668735096, 0.01637680752074032, 0.017559144425213856, 0.002118150718587744, 0.004220202159022565, -0.01982466483701447, -0.0189378864520708, -0.02287547525536772, -0.03444675661946114, 0.0063333192884260005, -0.010109493891466788, 0.018905360640243354, 0.006997773294990685, 0.013178365993816443, 0.028906237785755306, -0.11490475811988185, -2.3551187884288116E-05, 0.012847462048028738, 0.01181106802119445, 0.009206708412238293, -0.0009802859664297323, -0.1304796620770834, 0.03163277507630481, 0.018816763877802747, -0.0050330226255640535, -0.011998614136960906, -0.019398753849769967, -0.026593588275874318, -0.029538164023721426, -0.04797795726396249, 0.042722626527108586, 0.01284032500350395, 0.019834635680918113, 0.04688721722928755, -0.06184932043290735, 0.021342564483785173, -0.2636362302932757, + -0.024781038936282834, -0.04923126320775843, 0.07113078646593302, -0.07984687503160257, -0.09261529366130257, 0.1312020815226269, -0.12284267220067342, -0.09079054692014264, -0.10026530020685852, 0.05281584484468038, 0.06199169620512143, -0.04517532559914516, -0.004336281408928953, 0.052693463792574106, -0.026370948261972654, 0.09766722546937412, -0.08193390810806775, -0.11623233399676272, 0.13337346023594832, 0.09284126693765617, 0.13836601808972573, -0.10839041206348815, 0.006621978576139286, -0.015110320265782394, 0.01899553284250169, -0.07695218023553566, -0.1796955837388384, 0.16357153719324494, -0.210180676212092, -0.16134397318105387, -0.1627593307022051, 0.21121375565763467, 0.03230251918128594, -0.004620968500714476, 0.05367530693357353, -0.08652994016522352, 0.0707397060634601, 0.05577220905335379, -0.1022545598277025, -0.08922416005230895, 0.1030540550070759, 0.23014406737285972, -0.22351341647894785, 0.10306895600422283, 0.012974663584453398, 0.04057968521286862, 0.009217896587261238, 0.04668364648776421, 0.09280361012582558, -0.1320945169783344, 0.1330176852720862, 0.019940398991149626, 0.11499860511413315, 0.028547395694558025, -0.03546790784054493, 0.09069948665214106, -0.04611309317528232, 0.057365603567980636, -0.07127082637290637, -0.16339400454301098, -0.041020977809843547, -0.023339692913679003, 0.1509045267028799, -0.15959535731061322, -0.169717707974814, 0.13817579023368004, 0.07787497562453999, -0.02180063369658729, -0.0018221028327945828, 0.0873447400225142, -0.03939627369039471, -0.06861438337706628, -0.1082804810307616, -0.1942173053346498, -0.13526434533053364, 0.025746013600849178, 0.16086151875359522, -0.024870678316933875, 0.20357121029307051, -0.05485436644401135, -0.0900794707000872, 0.051797006261493236, -0.08695143345812684, 0.14082024488363176, -0.10715119845340218, -0.03490919027427678, -0.1107989392892031, -0.13077381544475558, -0.16657436514276364, -0.048425479418421936, -0.33167505890359916, 0.030269735697010254, 0.024178851786580306, 0.021140681667283234, 0.017457392111424108, 0.013601518993174994, 0.01866210896049939, -0.016141332397742653, -0.015310783496210234, -0.019472876275377915, -0.02333993925488096, -0.027100338235485508, -0.03938277649472706, 0.027708998432785608, 0.001385115905238099, 0.003620922833840315, 0.009550558858578296, 0.018029371288475714, 0.03504398534643781, -0.09719248701098548, 0.007872011176852885, 0.01561857460591563, 0.015472897192109744, 0.010566653037660828, -0.0003873767947996237, -0.11995619564691708, 0.017791059912969212, -0.0006729482162252166, -0.013089244188806701, -0.0234140506031415, -0.0333035466562929, -0.054949811016153, 0.03060179734090851, -0.0008117014643889697, 0.0025618586434328385, 0.012403733295040714, 0.028570561458632036, 0.06890055441196939, -0.3174164239773783, -0.020324622416029545, + -0.10360708306550577, -0.07437930487838158, -0.05716456035247046, 0.11051336392704776, 0.004107456850556974, 0.11819727002693439, -0.08452265043378918, 0.04490452921408803, 0.09094916552132469, -0.030737031325849203, 0.0933018977313693, -0.08769884854781373, -0.010553309910095409, 0.10114451880840537, 0.003412462979733619, -0.0852587766830559, 0.07323320716930865, -0.04363121568585091, 0.0904228523634504, 0.00884356968335524, -0.07960897840207895, 0.07846177002049007, 0.07404262751739858, 0.11482367764069126, -0.014017674319336116, -0.14651417663667377, -0.07735154950165034, -0.1788571101903526, 0.12290961192537239, 0.01075908983967833, -0.17884759202372, 0.07797762719829188, -0.09802771819956803, 0.09010000440368994, -0.08739104834973256, 0.1805965713473836, 0.1213932244867457, -0.03417457799467515, -0.22421515373581158, -0.08722714854286939, -0.1061649195781521, -0.161987968217467, -0.05532346620606499, 0.13185034783691316, 0.04028837802751297, 0.0861495064162924, 0.024688770401409793, -0.12276933965683454, -0.05749165787465724, -0.09167208044819584, 0.07467117114309511, 0.026134433891310777, -0.04672813159874374, -0.07299326848663325, -0.06524253211190924, 0.0959458327740869, -0.10425401871280895, 0.13225909075837536, 0.026863006805778123, -0.04420300221715917, -0.18052716778646116, 0.05584733551353899, 0.07811276253289981, -0.0747391146469374, 0.060131695462263456, -0.06370462621659967, -0.12209142928148128, -0.029336496305327767, -0.17355014012106387, -0.172632180284567, -0.09780539154518983, 0.08758675863038914, 0.21946923088244497, -0.06112811289094103, -0.20679000908774442, -0.03000225109851748, -0.0842612811748011, 0.1627455227513833, -0.009245413857246042, -0.11792906443690701, 0.010172986155735373, 0.016796000197683087, -0.07766534093185228, -0.07572146170118375, 0.14248545110215888, -0.10277515011931067, -0.13893376543247227, 0.010269497508792235, 0.11573722176059052, 0.14442492263535228, 0.02884066253933344, -0.30037137243580675, 0.026253290319343543, 0.02415833056980969, 0.020772057594990324, 0.020598884474941924, -0.003720123124754046, -0.0025430776459898358, -0.01754897288749576, -0.02227775164946856, -0.026769029507569014, -0.03146185815118816, -0.00995424488418424, -0.02790909068875453, 0.012732725380079801, 0.004240683732921321, 0.009378572603329052, 0.017133380431000364, 0.04906556807335773, 0.03936076754023506, -0.10435775741201146, 0.013342157370743159, 0.019493925708188767, 0.01867299259035649, 0.030858051120680588, -0.027496798503111625, -0.15360030677204412, 0.010986834714963516, -0.013733940412355695, -0.03061756160525131, -0.05837632942069348, 0.026800030479535584, -0.003263175396260018, -0.013111581787194364, -0.0019141749561707062, 0.012347584672308922, 0.037640010491927174, -0.24133947079065204, 0.0025210679622918453, -0.04564045192858518, + -0.08717725283284648, 0.10177634150134333, 0.06261614998228174, -0.037648477918815364, 0.12508273146326088, 0.07405816577012171, 0.0004007441596039472, 0.10063493103494721, -0.09793047950726427, -0.05452032707397053, -0.06965327018719214, -0.07161198940770207, -0.08018223799307854, 0.025770527155212674, 0.07406728531972599, 0.13119822352992258, 0.05651784576990805, 0.09325054749646748, 0.11609317374212179, -0.0838549954031452, -0.014504706435084886, -0.11888893787627126, -0.15991982422979958, 0.1137230827164339, 0.022820705961904733, -0.12747610602847537, 0.1827227402030315, 0.13063423065386348, -0.07219621609726166, 0.19970926010600698, -0.16918371528984308, -0.09124731828819685, -0.09861730435052916, -0.1798283190341772, 0.12171317638095049, -0.06354615490313714, 0.11269538655288372, -0.08275697097796263, 0.02164091760575997, 0.22245499143132355, 0.09625150715347414, -0.0037409466873680264, 0.07328483879338345, 0.12444581632990397, 0.06747942748054399, -0.08078106728857587, -0.0064447906885233205, 0.07341428711153192, -0.12049425348289172, -0.08157511325176962, 0.048104887165476035, -0.048610497256081873, 0.06473526583927476, 0.0010957639313810173, 0.0721534604252828, -0.060065062893873034, 0.040519739488744495, 0.11340099650889093, -0.04418011261239653, -0.13479598872288842, -0.060479787956430046, 0.11870434608038861, 0.12992762006275724, 0.05359130762729795, 0.10269062365726675, 0.10957323335073957, 0.051156095337004846, -0.07097949044535053, 0.1074964149114523, -0.17905394493066046, 0.0834532172971688, -0.06639187904335768, -0.08989284031328801, 0.12940779051064027, -0.12138549730534466, -0.04741065769911427, -0.0007235244982928224, -0.052649773798391725, -0.035205544776772235, 0.02529949539238457, 0.095169752119892, 0.11106238089217652, -0.15307993175939844, 0.08967451955253398, -0.12661658259816858, 0.23810067286830422, 0.04530554683211115, -0.12002956426210781, 0.24123105417469448, -0.20418061941640264, 0.07887820306019186, 0.18385406248723601, 0.2992893518867917, -0.02788713118090625, -0.02897163607788425, -0.004671441579066862, -0.0011736277453224322, 0.006665385148148548, 0.01092670049905062, 0.02669314141191592, 0.03261666128758083, 0.012102822601353395, 0.023752276218295745, 0.022287871716084276, 0.02506222998211572, -0.018883773564713685, -0.012734560496640384, -0.04220227361400561, -0.02465704057778334, -0.03269303265810478, -0.046142966821682285, 0.09941795376700907, -0.017992151156674324, -0.0408577051870012, 0.008623179136459738, 0.0140520653415879, 0.03214472021218706, 0.16737013980544202, 0.0077517579597578545, 0.0509714666348528, -0.026664218304214768, 0.01202265839987248, 0.014063195247183594, 0.004407518181685763, 0.0030877995586811313, -0.02453348294575173, 0.25593319073792753, 0.02138194489423778, -0.0004705155716256265, -0.023579696801634034, + 0.009402941615832232, -0.018204499383672704, -0.032119573374554136, -0.04104730574712944, 0.04222955182898972, 0.0666512925288684, 0.054466960330464234, -0.07290762989998974, 0.07901433330892077, 0.10644694902503696, -0.061250233191555606, -0.11609597755228561, -0.09438708038250454, -0.1122729385864407, -0.13421772763739115, -0.14349313111100412, -0.12430388289313535, 0.1231867306518699, 0.17227974950835176, -0.11160315930424017, 0.10566595118736694, 0.13325898526168029, 0.10662619157746413, -0.02328543541935148, 0.0019445024347530132, 0.003324303738699041, -0.006743028371820418, -0.02573407256887006, -0.07607566220355386, 0.1323715256992167, -0.1394548323534277, -0.129576549665652, 0.17885440964300622, 0.17537286117643278, -0.0909240090015868, -0.052188401154977755, 0.13105426670296288, -0.10293384650561237, 0.07578207275259675, -0.10934969862733292, -0.06906231410021581, 0.13868529775696717, 0.14574238345736004, 0.11080340271270886, 0.056656757488071335, -0.04062662233893729, -0.0339935626190346, -0.021642474714476438, -0.03488784055812022, -0.04274083355409835, -0.08291026572565104, 0.04992606655354619, -0.06123225169227503, 0.07573316807435426, 0.00585221334014975, 0.04432726375220287, -0.02848333794754945, -0.08058387579797507, 0.04047709861799838, 0.12647121325094357, 0.11583943352991571, 0.07009926808865383, 0.12305764778314619, 0.12977112738960028, -0.17034320269988926, -0.16872617064810008, 0.06058669136099485, 0.06553123796075393, 0.040622669842538164, 0.01084249749626528, 0.039932335920512145, 0.10486527166726183, -0.05752818807271781, 0.046667584723006764, 0.024969453904694267, -0.05592912058013042, -0.00623691009277673, -0.02000354594721935, 0.16717710291037163, 0.25583169060116207, 0.08494478925350622, 0.2154847605995908, 0.2959849715586284, 0.09903476856916447, 0.14636964546562833, -0.13397559633833522, 0.16055476181301195, -0.2338722604911706, -0.026828342668677743, -0.0264487193620352, -0.06230702775709202, -0.004402629798714239, -0.16391733151829724, 0.2967478710214797, -0.012131673391176767, -0.009730186043634688, -0.0017342834580040822, 0.007319806677387162, 0.016072354113274887, 0.021684150805329483, 0.01241717005596149, 0.025305192680073838, 0.024820244595377218, 0.02131567212209355, 0.016374742195647496, 0.01658485620210706, -0.05225856659841806, -0.0207397765953575, -0.026372832340447502, -0.03204192324813469, -0.037844756045640804, -0.05069738651551897, 0.07854704551370065, 0.009077886661481252, 0.004025232535791068, 0.01356650629737573, 0.028805454384405037, 0.05225403356547889, 0.20645506454882567, -0.04954609752656679, 0.004714126968925494, 0.014293272274318737, 0.013373536069039606, 0.0041473160526686315, -0.022203961911415306, 0.2735049402599419, 0.036137782852858784, 0.015245518284578097, 0.0003141851915490247, -0.013121949930483129, + 0.09733811490680178, -0.0857753462907349, -0.003526863384572541, 0.09039811300897012, -0.09586735963900198, 0.01928360087619738, 0.10561815337017573, -0.06473019907589667, -0.044546253340062576, -0.11455330949517385, 0.03705802569758237, -0.03674115216092781, -0.13778047650522407, -0.03074256198798933, 0.1269287589930081, 0.1216941427868241, 0.005129596567897645, 0.11366276232995386, 0.13962022060104134, -0.016947902041586655, -0.13145579557331422, -0.09520752198215755, 0.1290643779222988, -0.13889065054902353, -0.03470575164483235, 0.10009113448995843, -0.11004439733438572, 0.025211872700913036, 0.14146846089847467, -0.11698410839571768, -0.06533365635828504, -0.19670962064734637, 0.15536197705505844, 0.07523079525861384, 0.1275523622086417, 0.20354983006289226, -0.054068745629649216, -0.066660329428489, 0.11186532597095984, -0.06312441830694726, 0.10565209341978356, -0.18528718149163334, 0.0462435804334656, 0.1311335678379071, -0.09120885998652704, 0.07864719728327188, -0.03564457313885984, -0.05422411595193162, 0.1016760095726895, -0.026835997897454132, -0.10456368552496464, 0.1050304446245816, -0.03474750525114988, -0.14549475954081825, -0.0964631659565893, 0.0541699158939407, 0.07726159440966739, 0.02127597910262497, -0.08756939444373758, -0.10100944548341542, -0.07873131418746006, 0.1428482393859222, 0.10170060848548472, 0.038784353120580393, 0.07091009365943732, 0.0635123780961761, -0.07233070232066842, 0.069176582987219, 0.006349916216022587, 0.14319265690430402, -0.131493209980499, 0.025386713132276174, 0.06700744746713075, -0.019803251376446868, 0.07348057187978829, -0.13713281325970333, 0.10830599684775344, -0.09898880795344331, -0.17773524393443668, -0.0657228078067942, 0.1504062682490543, 0.16981003047250015, -0.12805149585844303, -0.1807577223397865, -0.09330959634747049, -0.1845842861163482, 0.20757705677897018, -0.11692089014220793, 0.14906637409394868, 0.2684675318267334, 0.15919887019448786, -0.18014901817842308, 0.08324114452403972, 0.1033648173516344, -0.3064056459223963, 0.008450317723589305, 0.0011195847856978148, -0.0071149331408886345, -0.016783308561407057, -0.0008610418422774491, -0.013559005547630176, -0.02316025271680134, -0.021086039908899477, -0.0174148844652907, -0.011810415972922435, 0.017459497631213697, -0.010851244013031107, 0.03457755334709388, 0.0261052478035948, 0.029176944795674557, 0.03390558618064693, 0.05347966154641151, 0.027008796686014334, -0.11874373529746884, -0.013446321183201888, -0.017615184309489003, -0.031419811164932365, -0.06448043524728654, 0.015277503305443488, -0.15807693449671995, 0.008775944198012064, -0.005248796362937444, -0.0036777413467445064, 0.012994492742538067, -0.26706026962870943, -0.02320075295793403, -0.03205740763225703, -0.013998723124735355, -0.002492537297690632, 0.005802482077290588, + 0.09578107425017365, 0.09838875618561939, 0.00331264834445951, -0.10286027576288079, -0.08209135195107363, -0.011606244735634083, 0.0921771450340923, 0.10214025462580818, -0.004193900621714899, 0.1037700222381075, 0.09607169101115033, -0.03410122462027947, -0.0940002241712339, 0.15284898877278275, 0.02128578558469812, -0.08869059288528945, 0.0531795680017759, 0.04174821477805605, 0.06736550787349939, 0.09418087698726506, 0.015626449412625705, 0.07041391137927842, -0.16965595173779946, -0.11525229282526865, -0.029792855928312476, 0.15334484193218081, 0.11641181059869969, 0.003663262538334198, -0.1332184081588884, -0.07709201599238352, 0.07317668657868921, -0.17680723925851446, 0.0035748148644158245, -0.04690605364777236, -0.20658741564787622, 0.13136043107952738, -0.1680139300967916, -0.18480515094488037, -0.03338794487978426, -0.055070854604741176, -0.1277514457520721, -0.17137070315367425, -0.11171372095872113, 0.03579202071126132, -0.09818729294132067, -0.05764330128521873, -0.042091231675238545, 0.07515305141333298, 0.04370833932861945, 0.08071454505676616, -0.13530812113546611, -0.061213577421647465, 0.009502524194128692, 0.1376928204322943, -0.0648622834726405, -0.013646598431522576, 0.0980473573226209, 0.1266238285238784, -0.014070332162392934, 0.1415655686123674, 0.0018644027256481564, -0.004953292899175454, 0.1392469153067966, -0.0918955235701284, 0.0244427065009682, -0.12748389546130698, 0.1093276268935966, -0.0051459545821973965, -0.13042823488563796, 0.18018098938661414, 0.2066625026228863, -0.03860579346097904, -0.15267009976948465, -0.011308336296715963, -0.03918652609127066, 0.016631032646753776, -0.12965355080288193, -0.012930280801971103, -0.044273805331212716, -0.09902926525495077, 0.13326312644481553, 0.01647974117446421, -0.29207489160849504, -0.21315117299776093, 0.14780610590734217, -0.03873583151542355, 0.0168872428275069, -0.1678940329264474, 0.03025929349140591, -0.13100401043439303, -0.12010599870641811, 0.21900113100100574, 0.2699178952613736, -0.043893968699860675, 0.1042731388489474, 0.3108926375078, 0.0004634491718005177, 0.007895419335294907, -0.008715108720303268, 0.00782638035137205, 0.010860582344828068, 0.008089713764434892, 0.014454918344151767, 0.010501597691603453, -0.01686246124476034, 0.005686044747924571, 0.0017522741408882714, 0.006525195459800848, -0.035653952516468516, -0.026154934409379646, -0.04250665833165345, -0.007742201310470074, -0.015256594658961814, -0.024161658765033053, 0.13011835693862794, 0.030181779199840972, 0.05118514228225496, -0.03811204066561108, 0.009448028453595478, 0.024641365614991334, 0.15628627942021367, -0.01963889009996751, -0.02129161175267299, 0.26278044176665427, 0.02915317581755167, 0.016166032591441157, -0.0005330856507272438, 0.018353262630666136, 0.007725539294311126, 0.030176126759599804, + 0.006163355644990877, 0.012540315483708297, -0.018905557200569603, 0.02263902306416079, 0.028380532723264934, -0.04345257251149123, 0.0462183069863241, 0.04445098779824592, 0.05594653094624795, -0.049968251836848124, -0.06410338179932555, 0.07599484949282702, -0.06242318606157833, 0.06285038301046814, -0.06770043428755092, 0.081708466752914, -0.08439183245117676, -0.1011048199859882, 0.09426730121150052, 0.06953966259878071, 0.13539412492543748, -0.10031344042273276, 0.05293015386095053, 0.03332187662945017, -0.07938748497514282, 0.08330498338112673, 0.023599465604614806, -0.040253124123151386, 0.0590644636246862, 0.08178705998737551, 0.09811608127960267, -0.15189412559456927, -0.08536645966363188, 0.1933879133309209, 0.2011378596883174, -0.16955420823246772, -0.13821378515376206, -0.13445265291748956, -0.09477484102700115, -0.09609511511857007, 0.09558055556972551, 0.16428642025259999, -0.31130389379635565, 0.09540065158129232, -0.03724177808699317, -0.010603678283446235, 0.050701325995656715, 0.002219511168363175, 0.017610717098530505, 0.07635820697382371, -0.09101820966462161, -0.07271353049126297, -0.14099247736342765, -0.0035250970569070815, 0.09974855199124973, -0.05617388907174101, 0.048184204675614836, 0.053227174114329284, 0.04375418641140401, -0.07700005796347276, 0.030212338375011274, -0.05769052621608565, 0.1639984943564824, -0.07650004990433427, -0.1738817642548676, 0.07284822242683191, 0.10774442009806458, -0.15970604015944623, -0.03482755772066899, 0.014131804045540774, -0.0006949254545877805, 0.05954155270022677, 0.06262402286849754, 0.16291004098530082, 0.1391356080205269, -0.0726568796536136, -0.1262296304866248, 0.03238442731822131, 0.03291809713955748, 0.014695312954384277, -0.0645771911515887, 0.02710586971446005, -0.14094567976969816, 0.13719593046431644, -0.2081995740237639, -0.06932719737910256, 0.11048711393549981, -0.160319984313372, -0.0852090265322059, -0.1781050146370467, 0.07922634912919453, -0.29699758568623014, -0.233568714388139, -0.08059469296067788, 0.1022146527294842, 0.1950541360095162, -0.31536936942366045, 0.015477430934069059, 0.001038977680653194, -0.0010294890292539306, -0.0018166594907623804, -0.00155848418892994, 0.003177948491060026, 0.02009339013882676, -0.004627820795248261, -0.002405063875304557, -0.0011338265265488472, -0.000978453308731031, -0.007782177526498624, 0.04711761245702706, -0.001715904080986111, 0.003228880478953526, 0.003998468775726793, 0.004848663651981645, 0.011243687165201563, -0.16024551525977887, 0.040711877688159925, 0.003631323350074822, -0.0017309759517069104, -0.004560517910068326, -0.009230840016040583, -0.12839112037152683, -0.2366216328633323, -0.013217113860635782, -0.007026732938554537, -0.004544211978700503, -0.001979433736819358, 0.007437687736050386, -0.045125977079207555, 0.007260090235248554, + -0.08912092371642567, -0.10826915515868324, 0.033755732038147856, 0.07311762493475159, 0.10229072251082912, -0.06526889670591217, -0.02435167326838479, -0.11224481744913307, -0.08009863403363592, -0.0033685824150859797, -0.10561656498198947, 0.14527929450054197, -0.03225937808275682, -0.10600096821274711, 0.09816210285894744, -0.05835104653107691, -0.03166370377070516, -0.1660741690432436, 0.11503535989565697, -0.051330055475587597, -0.13612928332098528, 0.11250809872347163, 0.12809085641957052, 0.14984476835340613, -0.11483751375535237, -0.06661097085535052, -0.162390397361291, 0.09125979904503796, 0.07970939761993434, 0.1674337283931227, 0.10734008461401015, -0.04860555692656708, 0.13906020706265743, -0.1816024279979336, -0.06718489469420633, -0.00883197661918641, -0.08234072796885596, -0.11972195793755847, -0.04190619319205423, 0.09504963956801671, -0.08397184171416398, -0.04591697501043922, -0.10330855725694618, 0.06798496384038598, 0.002238913112383878, 0.056444400227235174, -0.007813542164878307, -0.07020280438491915, -0.11271411429232658, 0.10825594393540885, -0.0393201506704939, 0.1578416380699934, 0.06468733073957422, 0.08706497794301077, 0.10964407917648013, -0.1939739992111673, 0.08218371463072927, -0.07182904590589374, -0.07520768600940429, 0.10830489372780464, 0.05639294546455734, -0.18984865294030667, 0.2055826212123502, -0.04529303920504973, 0.1568051308508027, -0.1116918215113165, 0.06522364648757376, -0.17390493137242824, -0.009915488456866177, -0.17774653429621884, -0.221701102946951, -0.10710621129069411, -0.17374398696327578, 0.046284369769166174, 0.13678963570836858, 0.006250018678410367, 0.13910350644312933, -0.016099220648302482, -0.01073731010348156, 0.1163633827417581, -0.19797300777117838, 0.0573450454388498, 0.19059688483825035, -0.14362574864344946, 0.10946802064142976, -0.007912253651300558, -0.218548677939944, -0.1254973523113179, 0.21115962081596976, 0.21337901250259156, -0.3467644113755158, -0.05568931667314496, -0.16646726127737885, 0.047277232350492325, -0.24777333730098774, -0.12009395214206744, -0.1638448563131488, 0.3104150805274568, -0.005750210738694611, -0.007222802767466285, -0.008470195030253501, -0.009640123590845026, -0.03389108278920015, -0.01038212171197996, -0.0003546038508743868, 0.00011718561666740346, 0.0016898935113672116, 0.002383774487663963, -0.009731146926535449, 0.03418401313219839, -0.007254957431622924, 0.005494154009415584, 0.007311403852899703, 0.009166231419370341, 0.023200743865698578, -0.0756572128036851, 0.10427133976966411, -0.000511729905689276, -0.00870408672616109, -0.014024070878522435, -0.025519211945946512, 0.27661205083315216, 0.1779676655814123, -0.02260272710707812, -0.011639162623818203, -0.007277180086976284, -0.002288570410976923, 0.02856042998271678, -0.020575874273659932, 0.008959189752300032, + -0.10246783681515763, 0.06951981790358357, -0.03493022748588006, -0.10076942803709771, 0.04165299705314926, -0.07406332878870937, -0.10066646476259301, -0.0279182789325293, 0.10868141547453548, 0.08872115410435887, 0.08908241168488452, 0.07685997439188226, 0.041692881808836686, -0.0980147185223781, -0.13442422898725484, -0.004147493773611806, 0.16652882456292262, -0.030156625208871163, 0.05933333636301454, -0.08564348821554006, 0.02685329531883029, -0.04331987972862576, -0.15408270540856217, 0.09709086341813673, -0.08687446605143856, -0.2062718014404496, 0.007809845939611123, -0.15133322488198103, -0.1201803460610571, -0.04826573265722419, 0.13041573148223107, 0.07007285768139687, 0.07484072269829156, 0.11636934597809262, -0.03423292697878063, 0.03277108500772748, -0.10382075873802171, -0.055398262605886935, 0.13352102042597339, -0.016867380935630262, 0.1134445422077055, -0.09297992290781815, 0.05019098885653742, 0.05924425706866821, 0.06807091910033987, -0.015074661506267151, -0.0007252777796749923, 0.10994219752000764, -0.04064041065704857, 0.04055181943469801, 0.08901052012258397, 0.04530233898341686, -0.13383711205885088, 0.06808431003705406, -0.09983784005908297, -0.051853065230932596, -0.004348423647811245, -0.10682322170136518, 0.009510505150947125, 0.025726092552231395, -0.13359924745893784, 0.015617525191637806, 0.06292028628434486, 0.10678789457102886, 0.0695883876540452, 0.058170125128344165, 0.04851678298172201, -0.06178359915956776, 0.08270411630596183, -0.05932299029718199, 0.11101912031982797, 0.13584084443709732, -0.03099342120045677, 0.035478826349582604, 0.20532616866065334, 0.07236694270652874, 0.11999522562513924, 0.07574288631252055, 0.01962183926777363, -0.26951231974441064, -0.1000976023617268, 0.0845488374909962, 0.14326317527811624, 0.22252094147509477, 0.013864307511417963, 0.1415453283133069, -0.0036420582836893815, -0.2111298001811248, 0.186535459052569, -0.14328692533760126, 0.25995192182065796, 0.24364713462214815, 0.10630989282030764, 0.26846523041685, -0.0027459974161789832, -0.040384901321417206, 0.14706606923319626, 0.10806247693544649, 0.30738809112935206, -0.015160884794814783, -0.01857337501058278, -0.044030101630185975, -0.016014918486445918, -0.014290098217006941, -0.014955055160249097, -0.0010457700179183974, 0.001346444020443099, -0.009166553893703026, 0.029492775308747346, 0.02862603918033843, 0.038587158724623594, 0.0030969401627654915, 0.018553579662607744, 0.035349292502245, -0.056685541286212573, -0.028219693587720897, -0.03966924995232044, 0.10013361041671204, -0.0161309487371245, -0.03866069418500129, 0.2567858654356079, 0.01779653506114105, 0.015821751867835847, 0.155526203836906, -0.03679949123696811, -0.018357228055661312, 0.01959592264484201, -0.016577860597987448, -0.006330530971803104, -0.006834178668227185, + -0.021606293300674168, 0.04115082881076507, 0.07088316582536397, 0.08741528922169034, -0.08423215612419449, -0.1284790573044895, -0.09128306214041261, 0.11860569922726348, -0.11323711485912502, -0.13149819132674104, 0.044389862284989375, 0.10301444028109112, 0.03513946998985164, 0.03779535867223371, 0.030319296813483762, 0.024961079807806996, -0.04123388699690234, 0.022860357797015684, 0.06370294491004308, -0.08666496348296575, 0.10036171038751687, 0.07928502105466693, 0.0799976538571603, -0.09805653361358785, -0.12240384708862681, -0.09845606093998055, 0.1744679798654762, 0.20285043185462678, 0.14365786598923858, -0.1443161383919366, 0.13188933319805937, 0.11190884890646842, -0.11956637431788217, -0.10199922411482704, 0.06262781846493297, 0.028308632852406226, -0.031321097902703696, -0.04730557230209853, 0.017223540391763482, 0.005348676000509172, -0.1478329172530969, 0.154832663283663, 0.03230975084434718, 0.15790171044722529, 0.042565506498020655, -0.09133965801774817, -0.06655241158286648, -0.1002955263067591, 0.018521654747817803, 0.14412737393131236, -0.007803451790277707, -0.0969605524090321, 0.11163645419568763, -0.0540936987727105, -0.002122112052416046, -0.11772598254674349, -0.02882684992369216, 0.011456480925241505, 0.02610411298168931, -0.025831231365398843, 0.10609814093814966, 0.03896422056028164, 0.09386732846923265, 0.1292244287443769, -0.1936912101843514, -0.11119188493593357, 0.01108915981269795, 0.11609947817039183, 0.00288229258963265, -0.0811956434882085, -0.015640217630229197, -0.05647308352317562, 0.14772444692702974, -0.2649504867028545, 0.10040919420977563, 0.1675827225189259, -0.18608291919054706, -0.13602921132591594, -0.07953350485169443, -0.0008869385520345705, -0.017194590302327794, -0.04833664579692884, 0.006866563358986324, 0.12658894356900252, -0.008646569723268282, -0.05839857564881788, 0.3037170367176916, -0.05268526371548039, 0.18757387457532557, -0.2050963289755445, -0.14935632762268383, -0.08558085201842792, 0.31188855819392625, 0.10368039686192543, -0.41625738582866034, -0.07989645215219746, -0.021490209282275276, 0.1637535064534919, 0.3004901962189695, 0.3013855229238888, -0.05239862122577419, -0.026923948004913968, -0.025755770662116876, -0.02155001110654091, -0.015752916237066046, -0.01403085059357137, -0.012080168964869572, 0.028757959706020957, 0.030601617562843374, 0.035810159038596086, 0.040894140475936216, 0.0528271277007312, 0.03241042658696669, -0.04703869917904763, -0.0179410165588894, -0.022748664650119092, -0.03321086794537236, -0.0532494430548335, 0.07098143570401293, 0.25839748149058395, 0.012559798540600055, -0.0007741016418379917, -0.0024704622037732063, 0.0063177488210243524, 0.15050022854547784, -0.01077307880114441, -0.032703963735438976, -0.01583633449039344, -0.0032961386878986865, 0.00741224895072143, + 0.07911997663192244, -0.10572140556093139, -0.09513306990919568, -0.011263972958008812, -0.10136501826152226, -0.09671783752423335, -0.08949550471639016, -0.03314308092504683, 0.09082671399419272, 0.12115461185670265, -0.04194150638955893, -0.032908944077478776, 0.10003682369606494, 0.07729137011334435, 0.07597366569704622, -0.018152111228689528, -0.11736188882232364, 0.11798508647303672, 0.05715751298061881, 0.011379157249775396, -0.13299491376509723, -0.11666916925782939, 0.10274126111295323, -0.1912224329513722, -0.13321551136564067, -0.00793704053717689, -0.10209468698907802, -0.131780130648648, -0.0959880556439385, 0.07936333862080631, 0.0850795060397908, 0.12387124638004345, -0.027971560097707855, 0.04232429543674315, -0.09861594465646006, -0.12839506691993474, 0.13051336856695805, 0.08473931771776085, -0.18497912735971136, 0.12342394090628053, 0.11589539447346724, 0.07175918095106938, 0.18392956731446386, 0.05954967299094233, 0.007888276565739948, 0.07910556023957485, 0.13469984111939917, 0.03881436526878576, 0.08194350292597834, -0.019528501278471073, 0.08018983337699649, 0.07063239970338722, -0.04433585644642137, 0.08565021393166966, 0.029556102724512336, -0.02064018232321875, -0.08239394096015723, 0.11018663265287358, -0.04984999530355828, -0.005954556483164064, 0.04731709671479898, 0.1450471629301175, 0.1536094976197879, -0.017907707457648542, 0.13179018988215835, 0.05915252543894952, -0.10805422688484034, 0.12092558647053027, 0.1822228145365073, 0.012907179757268574, -0.03301611819479438, 0.14195125241128975, 0.060260124664135585, -0.27086210543585826, 0.13923774216426657, 0.15803581747465442, -0.12454019288239412, 0.06904401112088172, 0.26863947633390944, 0.2313974065103673, -0.0018179644907172934, -0.045795490768463044, -0.023941148015197686, -0.1298911951375761, 0.005905510588847449, 0.04025082414075166, 0.03969778829318917, -0.24475563934888614, -0.12996120672246955, 0.25304001620141964, 0.08669311247183932, -0.03593099829869791, -0.04008521713066102, 0.2871116741538535, -0.017416431067219528, 0.25784003231269453, 0.09933391453811648, -0.21528938794156, -0.0014008724685093468, -0.0025314876933052195, 0.29366726369980795, -0.03934472456799171, -0.03692495374996784, -0.030974662899948498, -0.023481003176950867, -0.02930559794778298, 0.012215350248073575, 0.03190757423370907, 0.04049947794195053, 0.04914704441046698, 0.057365587873983104, 0.07886677973750417, -0.008586422369034757, -0.026732268212748954, -0.016875249724245516, -0.027007970699401397, -0.04232337299075228, -0.06880116625825661, 0.23584361629226103, 0.15766482544255075, 0.007611018025785829, -0.007652041921808933, -0.010546906566090173, -0.0037691030641555626, 0.051692273135588045, 0.13798711465324418, -0.05120691370447713, -0.022288990177830384, -0.0026967290083062014, 0.01581678827580813, + 0.10710370492959623, 0.05398849543903742, 0.08457767538450425, -0.08920190139737315, 0.05495782434712339, -0.13765416650283044, 0.013858421027893995, -0.12264070777337002, -0.028031763891863782, -0.086339764361813, -0.09102407323398479, -0.027575788925703143, 0.0653582323095331, -0.022526813429252633, -0.13979742112882848, 0.022137861041281688, 0.08987542237607653, 0.1242382030312507, 0.06919541552622978, 0.1504646025304774, 0.06152202629401603, 0.12967025608331095, -0.12993281106514845, -0.050701169533304925, -0.14169026402550797, 0.07924465758380353, -0.0986297429868179, 0.10225951733609957, 0.0023963414211531048, 0.11373416207667751, -0.03441713424041688, 0.05449487972722689, 0.08927259507894046, 0.08807161460795741, 0.20106551473226933, -0.036419659556743304, 0.08894647407340842, 0.14615558050095137, -0.10860604478652174, -0.055142803723082744, 0.05583564226488737, -0.166399834080319, -0.02206973133070494, 0.14954259466116415, -0.11898107937416652, 0.008710776299165569, -0.04104668517427736, 0.13136805061408524, -0.07103445513794056, 0.0762418470067191, -0.03645213638703669, 0.10369141802938651, -0.03047692733302957, -0.09721720953796423, 0.04792442842109983, 0.07638893780921065, -0.10767978194370167, 0.01813253252832343, 0.1374072536331675, -0.015795295870155834, -0.19659290670534063, 0.11982132706223697, 0.05390758816462085, -0.12032394964494701, -0.05723016370689213, -0.13978374956033848, -0.027250176404411148, 0.02655557750133376, 0.04272887992978494, 0.0827424656546767, 0.01675250463147699, -0.15305447539835218, -0.1656676799858675, 0.1726821316103691, 0.3391382914839503, 0.17347624884294974, 0.1837465288707615, 0.03503985127329071, -0.18507788817827547, -0.06006833509140286, 0.2726362307871686, 0.046037180889188845, -0.10250424006146851, 0.17571171918241776, 0.11765215823332865, -0.011814261986767629, 0.14939194857709442, -0.03292762610685405, -0.03666666409918389, -0.08077630048540077, -0.30292338691835324, -0.07376461868608176, -0.09161310132666475, 0.19235006780529712, -0.12122950266316365, -0.3041595196198468, -0.15664665711571293, -0.034319445555067475, -0.09183649097423441, -0.05175818912437945, 0.24234365860445936, -0.289070605923577, 0.04444626568351599, 0.038779497509417546, 0.04469387375525187, -0.003631482953440776, -0.014106411888228948, -0.023793229975075852, -0.050410546227027966, -0.06198208214860434, -0.08724471089951051, 0.005933327363584335, -0.021228821021487737, -0.021779439441748448, 0.0361515271063751, 0.03652715048163108, 0.0627429286456011, -0.25209588597787724, -0.0104578069208634, 0.014845827593002753, -0.1396570875353716, 0.0019062712471752674, 0.008729965569955658, -0.03569850416467636, 0.01472001028033569, -0.005566490173008514, -0.15198576595592017, 0.038181579005309364, 0.0032030604537079677, -0.03548225868406907, + 0.036616780849040916, 0.0704633700621474, -0.09600888769097188, 0.09800438749040274, 0.1004765603120951, -0.1246152571584314, 0.08910506039051462, 0.019415553069367906, 0.0014578550133406412, 0.06545150743822982, 0.07343344688312134, -0.10542441932198886, 0.11372150942664383, -0.13816301094729816, 0.0637394697451018, -0.12750852716725405, 0.030950892751531168, 0.030758009475803195, -0.005750159725695391, 0.05035478415300212, 0.1231378763287595, -0.0036870016875681514, 0.10879363494925962, 0.10131060291117457, -0.15538618208091193, 0.1392699007978531, 0.09648063621130144, -0.21806531375601565, 0.05388658495454716, 0.05975815589112964, -0.025242043760707978, 0.06529472755193132, 0.1254204213519793, -0.2017594327464164, -0.23542743884994433, 0.2282496657947065, 0.1068147796874229, 0.08849796493489435, 0.03556176769223176, 0.0943131602917384, 0.16756443814704555, -0.13161420209340116, -0.0011732588278840486, 0.1938476118029772, -0.09292324709582658, -0.01387207988800243, 0.14067319547899382, 0.003521637689489003, -0.12463419266669017, 0.085572410507668, -0.10064592881646002, 0.05348395153984509, -0.002401712059280069, 0.06736652562763046, -0.07450541752492151, 0.055161349260985953, -0.12781270823585633, -0.1123446575424381, -0.08742693190194141, 0.11512047625174497, -0.01791961681367032, -0.03511532962011426, -0.03787511699162414, -0.04286897420186065, -0.18470282595005186, -0.05967234230560647, -0.11795874192690514, -0.1393188194733987, 0.11944690764214377, 0.040607166699409385, 0.1723524728027084, 0.06902290584333749, 0.12479450090326695, 0.06845779752413393, 0.0484999082281832, 0.07799044606958755, 0.028168206279609635, -0.1661236244657132, -0.007743730233964764, -0.16083163157355437, 0.175301970617165, -0.03486185768352451, 0.14687895215895755, -0.056987492070067716, 0.1319493321010625, -0.3747438443378491, -0.19959458795169474, 0.014050709164279354, -0.14294100601144108, -0.3017401037380427, 0.04755532043768491, -0.26104736274390844, -0.08089732873473522, 0.13634777555179528, -0.13530034631935992, 0.14141720449335893, 0.23352569926431857, 0.1434305175266622, 0.018369970960617387, -0.23919991223077813, -0.013235758406144528, 0.23627474364831136, 0.2874100379484185, -0.059760606946203804, -0.012993168238959041, -0.0016783890368569283, 0.01577016046703751, 0.03377342707705642, 0.047177815756851496, 0.09102630702740463, 0.0013142084942249985, 0.030901383527927904, 0.024860822368949133, 0.011890200887319662, 0.0011550083357858738, -0.07345363800909831, 0.2574677000885929, 0.020543221046607996, 0.005335498878771855, -0.00540675331836199, -0.021605889374849523, 0.13922144476879494, 0.044255613790298104, -0.01914377706845339, -0.009966552982072639, 0.001557543121767764, 0.020916511706297124, 0.17094966126105515, -0.00010877881935459494, -0.016287083830333192, + -0.06753544267718592, -0.10932658195555382, 0.10292647113990638, -0.040812658039921956, 0.0207534673377617, -0.07550776545254548, 0.11537615604968253, 0.12096213128897533, 0.07122682973031469, 0.027127367212781296, 0.06779062507200594, -0.13963023789596393, 0.12327485697709367, -0.03497874684502772, -0.10306854079600372, 0.0753682246247725, -0.13236427432602757, -0.08081457615040928, -0.022772136212320084, -0.10378814416442703, -0.0709807411536861, 0.10895574907099197, 0.10067451649569728, 0.10885123686724073, -0.14115409029780218, 0.11262111891366557, -0.05459806263173375, 0.03724339637058144, -0.2298277419325389, -0.10340103506471315, -0.033157498202663276, 0.04786733226273128, -0.1353921283071507, 0.20445630376648408, 0.17609898923198644, -0.11611465085144686, 0.12140220026631927, 0.1481827484564384, 0.10275313322749052, 0.2257047868663061, 0.10970936541029332, 0.17837904793232695, -0.16723515499815989, 0.123646342024149, -0.0009808995508287695, 0.10946201941215714, -0.000925686003213314, 0.09849737042248795, -0.040818054273464736, 0.025662570618981372, -0.02869426380148435, -0.1012341237055542, -0.07986056288523938, 0.025202834799852115, -0.07007767105769756, 0.1651076099494215, -0.13825679166326665, -0.03852088044203789, 0.03826287551801459, -0.1462128251568642, 0.08661342570877478, -0.08285887068293575, -0.07510183490180665, 0.123862091236158, -0.012439110770134945, -0.14188103387356704, -0.03787607961217319, -0.1701715062202268, 0.2101248167026959, -0.01057957513617906, -0.06716264019319064, -0.2000700767015794, 0.00624538802846266, -0.09145885653856087, -0.018393163851935197, -0.24407942424590254, -0.2059178686357887, 0.12271030449994155, -0.04346572900266148, -0.08364428172937283, 0.07127911806928225, -0.20091573307970045, 0.1869339263216986, 0.12216147207976571, 0.11007031894765075, -0.04306231660766859, -0.018383721205309216, -0.013373612038819888, 0.08865173230142533, 0.15692401425692834, -0.4437072986727993, 0.009332978666353565, 0.031582373948969004, 0.16799227720727541, 0.1541255135692599, -0.14731348836954697, -0.006179973100291731, -0.3094556938987547, 0.3998106563199415, -0.2278460243371321, -0.04966432612019221, -0.015560804408944173, 0.054318618722614405, -0.2983643765627532, 0.017055676689406607, 0.0008906072619083716, -0.018229179925364984, -0.039611268046782416, -0.07439886601100204, 0.00790173055558015, -0.03396096387995514, -0.032509217773191774, -0.02218588809514721, -0.0048218433293084825, 0.02461869687735356, -0.2802783540544077, -0.02255985652586875, -0.0127812102904578, -0.004843179195498576, 0.0017365541463808185, 0.005982556771621739, -0.030908928997396456, -0.12633960787722637, 0.0021591420446522777, 0.0033625344211881993, -0.0052978970767829855, -0.021700524015162828, -0.06553299138483315, -0.1520462580139428, 0.02173751937495617, + -0.10959589166165917, 0.014426985876844723, -0.10081959777356625, -0.036458017647178494, -0.09974811330560614, -0.027405580721737828, 0.07523838968939654, -0.055343108140829815, -0.10231799437138252, -0.06870024436705452, -0.08991452696200672, -0.09953202572475807, 0.036098454938981485, 0.12789315610497887, -0.032454585196731306, -0.13809973983752322, -0.039091230427339106, -0.1629774418847807, 0.026293688706494574, -0.1326755556552789, 0.07986756698978294, -0.0590539448388311, -0.13930837941908214, -0.03392299364458467, -0.10350856318396245, 0.02335754543926517, -0.17040571745819033, -0.1327611392377314, 0.0740256425213312, -0.13666594650847208, -0.08954967652961439, -0.092054198692772, -0.08217968342314322, -0.12484102351986137, -0.07570888464500408, -0.11966368910448852, 0.0016984984491377796, 0.1315378249620117, 0.00392861775291906, -0.09155142187313567, -0.06533620110000485, -0.15931356516058587, 0.013695547122499853, -0.10657714500257694, 0.11326766981700685, 0.04062364925602949, 0.06931747353592727, 0.046865843299339086, 0.06780722136572243, 0.01966794015008665, -0.003907928300468795, 0.004475816026431135, 0.07990786221194167, -0.07591140444192003, 0.03078263253931918, 0.18046303231982347, -0.031917935661691585, 0.136496655403909, 0.10595242099669505, 0.13047586288310078, 0.0027125466459484073, -0.16132323751339733, 0.013318697007982098, 0.09997065392568508, -0.06629804281685646, 0.10070137331626641, 0.04226841406644658, 0.029370928932908522, 0.053753368741809714, -0.14792813681792136, 0.017304130591315085, -0.05477581508895913, 0.1241692401233105, -0.08464911573280966, -0.12653658667809378, -0.12449567133042462, -0.05213591003252907, -0.22950935853986681, -0.022743514304872682, 0.2573707699471027, 0.04428886097199816, -0.2966843041599733, -0.006238799177866542, 0.13957543873976241, -0.023728933345195376, 0.1465079004719868, -0.09184450235117128, -0.2877227300421585, 0.18655018293448233, -0.17438027770567027, 0.15093270199305292, -0.1089896925488023, 0.13788397230318156, 0.195980049299797, 0.22123535635213806, -0.24554650560386362, -0.06560385913061695, 0.2682012148620192, -0.3932881909790901, 0.28340399327096444, 0.22949201218068213, -0.13731682960029173, -0.07084166547930502, -0.08053861384537696, 0.3058549330752868, 0.0029754345065223925, 0.019121087931220936, 0.05033182073546806, -0.027785525612278622, 0.01468672989542811, 0.017679249380410086, 0.01869707266992074, 0.007977577711470299, -0.015123472661084353, 0.28056898722679235, 0.031156295396611786, 0.021829491976722796, 0.004048249963711314, 0.004658664885269524, 0.004619289559319707, 0.05121786067404285, -0.02812455563337231, -0.035352525457656825, 0.13966955723509955, 0.01364944769479072, 0.015532402344845136, 0.04472272306595494, -0.013265440128412787, 0.02047133461582254, 0.1760401875826762, + -0.05089438327975263, 0.08741768945352628, 0.12829831749055895, 0.12148165060001086, -0.05857345567492967, -0.06333095976397095, 0.05549451296616314, -0.04609957763639015, 0.09031762376466605, 0.1575627400840212, -0.10566219687114689, -0.07024050553906162, -0.02103189557616889, 0.03925625041580754, 0.07897253094989248, 0.11654934937303034, 0.1393068715096035, 0.0031319451074421764, -0.08409034098755906, -0.05926456395749621, 0.03817033611320299, 0.061955034242068455, 0.11723876412551165, -0.1013609186751003, -0.14881203628583306, -0.09200980178654147, 0.020208627704542164, 0.03831083271088509, 0.00039015550534874803, 0.12310056826605431, -0.19764464357323674, -0.16434517522002826, 0.16440993378217203, 0.08140527863824551, 0.032352140387158536, 0.08333389008244943, -0.14344890258096216, 0.17990680738318818, -0.21869374291981603, 0.03396562431904654, 0.016865432162989472, -0.0001260706359801588, -0.1744963315007591, 0.13664118743154308, -0.000940111827815599, -0.0652324126573304, -0.049130067807918475, -0.08282242885551594, 0.04267128438938549, 0.04598428356905216, -0.06833711022733947, 0.006680401974005531, -0.04163770537080262, 0.15770916898751486, 0.1563479518540762, 0.01581767917633141, 0.029837157713903054, 0.01788935754569836, -0.07345101572423343, -0.12782325008045847, -0.24132929509876763, -0.0368297056161467, -0.029082315264398927, 0.06110462480375146, 0.0002885648817412537, -0.11462202351034137, -0.125730096167709, 0.09776391548900312, -0.00455695972719429, -0.13256095704676985, 0.1246600422159879, -0.06297637629785698, 0.0026130144318590575, 0.07644605267426217, 0.09631009691889683, -0.1996204123865427, 0.17025253544189478, 0.13688794315706185, 0.23150022772010853, 0.09360676040077687, -0.16670715189202667, -0.015440626601732418, -0.0757875737211208, -0.20113330187004852, -0.00381115327281412, -0.0698391826685281, 0.3216345056397065, -0.0716539635014352, 0.265722461442584, -0.15823138049466273, -0.1737784475127267, -0.009506973966447478, 0.19466354540808592, 0.021214818770760886, 0.07048865572530862, -0.3004312876588053, 0.31471191650848, -0.15018174348237726, 0.03938422247388251, 0.0007601267936903804, 0.11454697828733432, 0.13558323073719358, 0.20950660837590665, 0.1097945818727286, -0.006364585496259357, 0.31561666479835454, 0.032310155531243764, -0.05100895445203246, -0.009099086008691734, -0.0028961623061793534, -0.0025315700951451664, -0.008643371637215552, -0.019093518313802182, 0.2758124207974334, 0.021805755705485107, 0.012597450240397153, 0.010289684731859778, 0.01270962969434513, 0.0032862572786552056, 0.05557397147347681, -0.020155307644420847, -0.013507164580594547, -0.015119062016278051, -0.02794076613368567, 0.1528572458836081, 0.0502969824488302, -0.02225952247703269, -0.0010628880896157607, 0.005370528597890195, 0.014479193285902896, + 0.05459918637808469, -0.09178221141632067, -0.12999098252511568, -0.11509291727743029, 0.04106348857388697, 0.036630334597513935, -0.08345173327742121, 0.06655207876056074, -0.09816569483683654, -0.14919194544590272, 0.07084887896377284, 0.015959672578275685, -0.04504229845339425, -0.09712592097972142, -0.11097378850104911, -0.1010746384449738, -0.09520110684017268, -0.04510302522184026, 0.027696599949755044, 0.12196979707783087, -0.07337541965637966, -0.07833945077180204, -0.008234566767291092, -0.10496496483189283, -0.09102515200434157, -0.11015272333859043, 0.10966417786293876, 0.07859232775880075, -0.005796764231715983, 0.12314847236442177, -0.1416414460085997, -0.22381673018170814, 0.11462014805277912, 0.08391753095497863, -0.028221728636284398, 0.12019917320967692, -0.18571759638825036, 0.13031818902493764, -0.1912431850902919, -0.038447255953807054, 0.003959096393762938, -0.014292516953109097, 0.0914968270836279, -0.01134337892838777, 0.027089453136105855, 0.06998559910351353, 0.08730561995418694, 0.04499279524702264, -0.04290049121731027, -0.09956613425636913, -0.039406977270063974, 0.0072943591144884815, 0.10564833047773599, -0.17951960789329974, -0.12103418190256504, -0.06668219407895117, -0.07796257991993367, 0.008035685346059475, 0.14413271966071436, 0.1418591243368833, 0.1358219941759622, -0.040452202285667066, -0.017726000505310043, -0.166865072202644, 0.016821271837845857, 0.1374680281295023, -0.01871417563517153, -0.046055683447641826, 0.03876100787388934, -0.0521994648381798, 0.15027603229014266, -0.015306266790381466, -0.002763565642926016, 0.03781882085399478, -0.022808657751039386, -0.09615064257895645, 0.08997665781589283, 0.11170089981844453, -0.022370338202578995, -0.0682719818642195, 0.021442284965082006, -0.25748722637214555, -0.0057533066511052415, -0.22076606470708957, 0.019458278912969973, -0.23236892793149586, 0.12704482017520594, -0.2506252959493261, 0.059417443954488586, -0.08569395271746555, -0.09905036932560995, 0.1759838211245263, -0.22082679518896942, -0.23304434272928803, -0.0001659169946771585, 0.1630965208163795, 0.005548329477871585, 0.037580395549877216, 0.18984269635079512, 0.0022369146754532177, 0.06737886394613982, -0.016003513008067058, 0.02638354062960572, 0.13180539664969415, -0.3325662252032538, -0.24616839620643918, 0.27630113226840736, -0.027416748413483932, -0.02786029678869479, -0.030291103493946925, -0.03375303085027502, -0.04582665598463405, 0.2978021713664415, -0.008263077124395824, -0.003579912763753121, -0.0013962408446139864, 0.0020876572090272848, 0.009390814641765069, 0.07216066247039163, -0.030595527925243293, -0.010187512046110129, -0.005712417672517785, -0.004073879695378318, -0.004341365754632826, -0.006728174376296525, 0.12554924652625857, 0.005878448770164756, -0.0035430500670181747, -0.009373582572269418, -0.015340371530579353, + 0.1098945158769596, -0.0060951907266017956, 0.1043851138185201, 0.020800889519565127, 0.10853418099299929, 0.0026449310621148286, -0.08907761015180307, 0.023043801381433582, 0.12716834717763986, 0.04029730474553844, 0.1244434958492197, 0.06310931487583564, -0.0903040398509305, -0.08599607416864656, 0.10820651752898675, 0.09865654401290773, -0.04591518716292264, 0.1334964573397519, -0.09264512031979046, 0.09629260974773322, -0.0025871151216759736, 0.07609686771388219, -0.1406097443345725, 0.10318390232115067, -0.11670566577210931, -0.07519128975081814, -0.06660188209088584, -0.10549962947115085, 0.06736686002674917, -0.07711919528092971, -0.11251440273385668, -0.10074642132629719, -0.13932110319194277, -0.16703154186278862, -0.19592269756378372, -0.10087188471766828, -0.09218758805614281, 0.14784998465968022, 0.041761641890355854, -0.1711150827550328, 0.052866810904970356, -0.148977368469648, 0.05651303148497326, 0.0074687906842178416, -0.07931959036902576, 0.09009506551823707, -0.03699045871604939, -0.013728978449898226, -0.02226385932037404, -0.06352127419798162, 0.021149844629995373, -0.0940929902420139, -0.0536769118978533, 0.03396289661587104, -0.05447422530110775, -0.11512156396333004, 0.022676801604452484, -0.1675275536626695, -0.10132919296564456, -0.08255510920585062, 0.0803003041270744, 0.08067174943267033, -0.10163389110852968, -0.10922630660903833, 0.05518671336558035, -0.03900366981592635, -0.042521661255891026, 0.04553122085860591, -0.06177722414783906, -0.08084742553973494, -0.013906158707849798, 0.0953333567846854, 0.04572535222532973, -0.10459716942247999, -0.15732190723085926, -0.06777885488630003, 0.023751813386408357, -0.15716716975391293, -0.10222258908604072, 0.1694894186692656, -0.05035249049361458, -0.17581016348243142, 0.04220951469119705, 0.07689001774617671, -0.0926615604524201, 0.23073087991252672, -0.004256631333263003, -0.18210163679750416, -0.007464253995673274, -0.11098310109972764, -0.23019436061240522, -0.264967086285704, -0.1812830703375839, -0.24206258922125387, -0.08887964031903181, 0.11266156259658405, 0.07458790708896042, -0.32386287682924203, -0.0200816138669921, -0.0034945818519255757, -0.09326558587464472, 0.1750521493102504, -0.022981399897205157, -0.18094507358959908, 0.019334818179704685, -0.04414120449248771, -0.2585482262704739, 0.28187854450822647, -0.05426346922471503, -0.06389481747887614, -0.07910922936998002, 0.2571856611896446, 0.022213659146201735, 0.05009011193455286, -0.028887375972833577, -0.012548649013006025, -0.0005807587326026546, 0.06372865053880415, -0.009345424867958587, 0.007012294512762116, -0.02030720544864812, -0.0035173961466294923, 0.0023139366731498552, 0.01253005688741713, -0.013688423403692753, -0.019183469190838118, 0.13985489066488654, -0.003214044586782122, -0.024970608807562442, -0.05539702210759778, + 0.06415333428308362, 0.10678358263211557, -0.10749370706257894, 0.05481102258750641, -0.0010544622555875914, 0.05316817254837782, -0.10653277737958765, -0.13811893793331198, -0.10446237185163232, 0.01916752224142004, -0.034625393047899126, 0.1281113304943091, -0.15020787470469749, 0.10128266017202511, 0.0367528242666593, -0.023614272174573715, 0.10372032192953906, 0.1208363385294471, -0.05914439895819725, 0.03391426769376215, 0.02946301283249266, -0.1399005672443217, 0.06814344790078732, 0.1443756959927201, -0.15076713066866804, 0.024988389600517455, -0.06168093422136667, 0.11689220327698074, -0.11244027452649275, -0.013440821603244491, -0.04087580027427451, -0.018797533188709453, -0.1375325476749824, 0.2310209580491713, 0.20393012709135436, -0.19405180261309424, 0.04073963898251626, 0.22758595473921647, 0.148736719764928, 0.1142100436312543, -0.12308352995574023, 0.12204700457308079, -0.07969788249039293, 0.08030204923160417, -0.09700504305155959, -0.06497114513263981, 0.11663649260775623, 0.06873867410064348, 0.0450232352307638, -0.1265558257116207, 0.15862024078195233, 0.06749411634288642, 0.02353908297649771, -0.06746872569290248, 0.014809588661233629, -0.07258428775949138, 0.1332114150286487, 0.06702358112417812, -0.09472482673244507, -0.004408477426214663, -0.15094975308116604, 0.1327100763868782, 0.011728647648727827, -0.11800311902840278, -0.0012126957994213104, 0.10834283539386068, -0.0023162159164328874, 0.032321862565046086, 0.09819623069478202, -0.000985652267540079, -0.1463122856758443, -0.1371141295667932, -0.1012427790293286, 0.017179469058846226, 0.08031536846115583, -0.1969651997805015, -0.1354327511693263, 0.22022361082649888, 0.022033042433354796, -0.22805035325672907, 0.09979479401928233, -0.05619674936878378, 0.12232993121965544, -0.12420139774801436, 0.0035529286291312353, 0.060114129480533234, -0.04560667442026214, -0.11538456665648486, -0.07711504637262365, -0.16229336505030126, -0.019110572369120303, -0.18029064520116642, 0.13059173916592673, -0.12693028177731008, -0.0801535157454809, -0.12221192168851289, 0.16125396263338165, 0.14885971521204377, -0.19262321278764247, 0.35295957728162153, -0.06912369205847683, 0.1954594804958998, 0.14056871340511057, 0.31651191217294583, 0.28647578952284497, -0.2937029083211979, 0.16132807188345621, -0.17183494746523745, -0.2608254506234954, 0.11718234686496057, -0.23813170757370516, -0.014963725433779312, -0.005980940380555591, -0.006947393827427345, -0.04160659606433795, 0.03157232233589211, -0.052950851651613284, 0.014656719209064945, 0.004050616318111867, -0.0023933529526617425, -0.012961931718238772, 0.013502089946677343, -0.014464985410289557, 0.006242976526008474, 0.0011523281804088105, 0.004005706149640666, 0.016588069912039465, -0.12773974328478366, 0.05552454346103393, -0.10617692259246009, + -0.04057012699240027, -0.07698419839360235, 0.10214547781664397, -0.09961563245672757, -0.0957606696769129, 0.11005041270279314, -0.06418243651152145, 0.016209541752917597, 0.041066949595031654, -0.10325030667121275, -0.10849080425521802, 0.12762231165200594, -0.10729185081217493, 0.10439560282883222, -0.022155473126293918, 0.05739280423349746, 0.05281186333637542, 0.057432890757123545, -0.07045331410748924, -0.08672579432513389, -0.18818716143658745, 0.01666936350920274, -0.03380924106345208, 0.05613243051625592, -0.10925961810190633, 0.1203084735807355, 0.12141668672666413, -0.119670971467554, 0.08609015018139045, 0.09865794134489811, 0.06221086607985243, -0.007438831502991671, 0.18049118860672944, -0.16394433104424627, -0.2442442312445954, 0.21884878110030662, 0.1013139188260055, 0.04596782253358951, 0.01886224075191165, -0.1668323717793098, 0.06447483582015855, 0.06061734586434951, -0.008156077135653816, 0.1481766515585468, 0.011982687551013822, 0.07410502727707755, -0.02402681457997515, 0.048663012844754217, 0.05897114804795557, -0.1468805187192944, 0.08537904451613437, 0.0815128359845495, 0.03349269310684831, -0.029523915318150917, 0.008297635963049648, -0.1402751013927794, 0.11762636341079657, 0.18484790053406394, 0.06348399363589546, -0.09679787448155008, -0.08809854992824824, 0.06607975608507463, 0.039153574736794886, -0.01945667398742092, 0.19467994966652252, -0.03153713774393068, 0.11734937315976755, 0.05810660857340299, 0.016978089030946324, 0.0015055900937203117, 0.06426729551384497, 0.1679529234875081, 0.10614757352150418, 0.00912759597271576, 0.09505412760774322, -0.037344789134444084, 0.04344735208810301, -0.08243177343669165, 0.04868170680472986, -0.07295255915822493, 0.17094368144158031, -0.16345880190053586, -0.004725883008801412, -0.09306169468753749, -0.07652540952369821, -0.16156753964439502, -0.2532334563278123, -0.07959411682956329, -0.01251468491458256, -0.03609489400494006, -0.19101678843470102, 0.17334766769929638, 0.2585087240081323, -0.06101064666263858, -0.2505611768245347, -0.21810171047347565, -0.06915860186865935, 0.06304280421582475, 0.0144370490531194, 0.14073502917212002, -0.32270451375702525, -0.2149998040427211, -0.17090213708096622, -0.08175126215218441, -0.3966072870814984, 0.24839207497419225, 0.06434919467875296, -0.04048472335891144, -0.24828427761214206, 0.3710976975734895, 0.022580241422869053, 0.00701303438490906, 0.002032836130974565, 0.0021243261748338884, 0.008988132686409009, 0.06892278443681374, -0.02255831033769871, -0.009721799065302288, -0.0032724679366574333, 0.002134759059649618, 0.007738339036816079, 0.01912780613205896, -0.012772181674810607, 8.114575529930956E-05, 0.0014910867426293343, -0.0007156774281999803, -0.006982511280233302, -0.02554087412787338, 0.1706272263015231, 0.029746219102805626, + -0.10799360060979786, -0.04637541566032189, -0.09176593896785175, 0.07778029008088344, -0.07257980927685591, 0.13220192046813667, 0.014034552428426543, 0.1309778184378439, -0.009557314214481409, 0.10916186874600392, 0.053185937542330565, 0.06944972597455101, -0.038981932186009184, -0.03788477112544143, 0.12077324435055832, 0.05367034451642387, -0.10248692386947887, -0.056089746700500334, -0.12972123818499437, -0.0842938383611191, 0.029806674215497993, -0.14201641147584648, -0.12370963763851713, -0.03325203405761907, -0.042066248245886076, 0.12685153863890902, -0.03646883599023477, 0.09632805893665942, -0.05397489371479409, 0.10544357976855921, 0.14906250294162185, 0.040859478076793514, 0.13574214044508498, 0.1981340115241793, 0.16911947580344436, 0.02193659253643492, 0.18154499226482923, -0.07008368735816828, -0.03758893697382258, -0.11239937839192972, -0.17003414013635063, -0.03956073397280962, -0.03247992333574306, 0.15435496038347643, 0.05939312670028582, 0.04424890564370079, 0.020281746531935617, -0.0824799559421927, 0.002135930733136865, -0.1439864035259861, 0.06384743213400185, -0.05879763772186164, -0.0802963880051266, 0.03721430601980816, -0.13734725898350192, -0.03255595244615298, 0.035315425499060485, 0.059504066696890526, -0.19543954373161745, -0.09841817912993936, 0.08699974499137707, -0.10891337162248245, -0.060269350048420926, 0.10849496258701823, 0.05638450711824857, 0.11553737190403433, 0.07432099446006359, 0.0975290689228614, -0.1156260308244284, 0.14816681721507122, 0.04851877218173777, -0.11667114028060165, -0.08345242062740915, 0.05378137469539566, 0.22868557814035584, 0.07177087116962613, 0.17906991217371931, -0.07049963785237814, -0.15895497913136666, 0.09448585268659968, 0.25242743607088414, -0.25063871961695, -0.19725255946954964, 0.1600935833757371, 0.08940928507047086, 0.2389159975424853, 0.01784132669045152, 0.015023332525088534, 0.3619681350877988, -0.028996869656239082, 0.10398339931333106, -0.1481578126216128, -0.11606335852741999, 0.09724234349150877, 0.08783383513001912, 0.2378337442544055, 0.12504827060283522, -0.1407069319135891, 0.08567447398886355, 0.009918626614920207, -0.22863445227677914, 0.062263997323125146, 0.10282560114283877, 0.26396638479019313, -0.06454761805640254, -0.060336474421660034, 0.32839378870483316, 0.31059025219807646, -0.017775577482491815, 0.14736234623312805, 0.10153845557580424, -0.0009302886615756324, -0.0014955498010416207, 0.00019252382590019546, 0.02655160938478074, -0.013919813068962193, -0.016917941106644067, -6.637184941742525E-05, -0.0005648000176378919, -0.00010355992717931122, -0.004118658821634388, 0.016150953994409523, 0.0187993293667343, -0.008917941337192141, 0.0008930145138966901, 0.002093821273685575, 0.003313343754482962, -0.018537253262709025, -0.014019881829965976, 0.05913985505705434, + -0.0761282558645532, 0.1058255184382295, 0.10427901170826495, 0.028611962202195473, 0.08647988969674106, 0.09334851143169745, 0.11244407953884626, 0.0028703346263861747, -0.06583253644488432, -0.1102429035381464, 0.07236953599633414, 0.08163285363150158, -0.052830396565470845, -0.06765213355820712, -0.11614876303929032, -0.06709324962992125, 0.051413734731173236, -0.1427043129216635, -0.12219577747456747, 0.08050988403793145, 0.06496948305452248, 0.10285754299152669, 0.07042566389860147, -0.10373941804947813, -0.025184485510821645, 0.037619983195554894, -0.12809050963868, -0.18335407083721228, -0.07668708259983487, -0.1400826169967911, 0.026068439250077582, 0.22524938469756675, -0.1336635618213913, -0.08269233332846367, -0.07490461611796112, -0.17564815444381388, 0.257296733080677, -0.005822298944955604, 0.01785695681864515, 0.2156069446509743, 0.18338104975778347, 0.009061238977132867, 0.2039135492994746, 0.11197593937175639, 0.10923693154813566, -0.07594341311229313, -0.019884690241945502, 0.05483923163445594, -0.131177852637444, -0.11084022459582231, -0.03107150906312938, -0.051780804173588726, 0.11632625855765952, -0.12200082573943222, -0.0752731668145522, -0.010850829562518746, 0.027267313478657556, -0.06590777643005782, 0.09701560608695847, -0.020320264636924115, -0.12613745562653705, -0.1217628015626044, -0.23806157984249243, -0.043586583894735006, -0.11524378731539754, -0.08102561232977495, -0.20350398081972781, 0.009399796703397656, 0.11937332827086683, 0.1492040410006056, -0.12248805656040702, 0.024143474152804753, 0.10206275873398603, -0.10937804087737177, 0.15654966737109152, 0.24854139004209017, -0.11685432338572675, 0.10895574732824295, 0.20345570626699555, 0.23894277890992216, -0.051448969896610214, 0.15345900252832048, -0.15666280673938857, -0.03943468420333745, -0.09156674105528993, 0.13540781214323225, -0.10615672290362467, -0.09124946342908742, 0.07913102371188163, -0.11165269742586167, 0.07674199699528726, 0.19185327406055763, 0.12784634052046298, -0.18371354154241415, 0.025357040360138347, 0.1374906446250708, -0.12193003864398867, 0.20826060626037146, -0.05468133834028377, -0.06385986318870968, -0.1956636484769716, 0.07142422937470479, -0.1379765317669921, 0.0221025002606716, -0.06560483173215079, 0.12489360563440255, 0.05533774823980335, -0.06524983438691113, 0.03589883221207545, 0.15739760628287763, -0.08565953902797911, 0.0997835094977914, -0.0014232838583594035, 0.024918975935400496, -0.014579726135040334, -0.010378636532950744, -0.009156525979361195, -0.0150881194889361, 0.0006979921215837237, -0.005367585278376372, 0.01388163732179288, 0.010763736430247806, 0.012255637490615163, 0.019380772821774514, -0.007295682239076961, 0.004628767543575454, -0.014552455703794105, -0.005104127150785127, -0.007189605002162576, -0.01418052735072371, + 0.025729056239122233, -0.04858027508667646, -0.08261373936427724, -0.09992536508138765, 0.0927547372786923, 0.13881109232963654, 0.08998983755952915, -0.11523694205103918, 0.10025722656233843, 0.10194129974993807, -0.010840139733246915, -0.05388460189575044, 0.02541534905793603, 0.029890674789468347, 0.04870339540741444, 0.05019248903810353, 0.11491499699425825, -0.08519873319481734, -0.14619630603767483, 0.12323102542283801, -0.11428208421597234, -0.07969128843757468, -0.047657070230654484, 0.012697435843611868, -0.053114594520061814, -0.04895536951687302, 0.03920729473606667, 0.14012842338964263, 0.20678493565989275, -0.08184253145603772, 0.1905441726056948, 0.02061854787414812, -0.10220014395219917, -0.1345162700340322, 0.015704927564223665, -0.12945237475146973, 0.011022718668133123, -0.15059750167822158, 0.16167287106728043, -0.13601058118504444, -0.15917336611764238, 0.12313389364712561, 0.17391571375709866, 0.10120383150532153, 0.05241733054065009, -0.03070569912839721, 0.008046757182073722, 0.04365447351899986, -0.07093277105153585, -0.13494868191633008, -0.12721574733545923, 0.08560399988158614, -0.1251088478052123, 0.19650435108088865, 0.03724439999302968, -0.03179605402186217, 0.017979356544112732, 0.010063713926926756, -0.03427395626329049, 0.056214020262784416, -0.058185039480532046, -0.12472551319982396, -0.05797084077484863, -0.18907612806953666, 0.18841390757645987, 0.049009828172076796, 0.13243655054950582, 0.05842589545786631, -0.015712757260290196, -0.07741518454466002, 0.010489277276209928, -0.3168060511442261, 0.08396460686424996, -0.24040908316231324, 0.045391739269327304, 0.33230404170321737, -0.16008194588353666, -0.02751307125643496, -0.03194047867001849, -0.1845182988629488, 0.14270979103532708, -0.054933991084204804, 0.0670885600473729, -0.014893733006488549, 0.09122024876078232, -0.1280793909110217, 0.14502396191603778, -0.09370450622162863, 0.04714219353609236, -0.004094365887407702, -0.16688383209091173, 0.015704251354153057, -0.17497963653146867, -0.19178668091346646, 0.11596627801353308, -0.14653721126227828, 0.10205658237187866, -0.22406850894785327, -0.21228499227138012, -0.22304086047368654, -0.10955874331824007, 0.08607047727431369, 0.18465891245084964, -0.09460861016854719, 0.04337452682014324, 0.20649925174990857, 0.09426071332270286, 0.014336683108653964, -0.0153361669184933, 0.27820346722070416, -0.28197638149771115, -0.1753584330508016, 0.11220151087932292, -0.014287058708502783, -0.010339945823538258, -0.008991042395159242, -0.007904252092536895, -0.0075328291464194855, -0.01769497576559268, 0.013032169138421451, 0.008461426275978338, 0.009178163772013477, 0.010434106227838207, 0.01229280649776602, 0.020538708642609975, -0.021238976883137386, -0.0033844834178845306, -0.0031582010073067934, -0.0049302047663305395, -0.00800476583505419, + 0.10393119269217076, -0.06306798003997766, 0.04709299448425744, 0.09925546059553746, -0.01975888378266466, 0.08503760398346072, 0.08432465485260372, 0.058261618961202154, -0.10695081067389552, -0.05390059647659231, -0.11479386694052274, -0.053299597939204704, 0.02095196695259833, 0.10038132821448528, 0.06297429801461699, -0.04940259425975738, -0.14105414125429122, -0.061967720573074925, -0.1096332047448738, 0.03240025188895428, 0.06661741846300133, 0.06156373694137389, -0.08188889833248172, 0.08651843420317576, -0.003579541576599959, -0.04832452808483979, 0.03712693947925862, -0.12012160221414593, -0.13572042408818066, -0.032657168618103784, 0.11058466202112417, 0.1360654385551049, 0.09747673673449365, 0.12424494055040919, -0.05830154452641569, 0.1589375368390731, 0.0666061935182879, -0.09485267057688467, 0.13855072082564832, -0.01914782501966871, 0.14037182800168665, -0.13823495975305036, 0.13394642753753588, 0.13507836225781458, -0.05704957093248821, 0.08169709410256262, -0.05748161622043864, -0.07705944120953051, 0.025859504449523084, -0.08824925657383, -0.06861341288564125, -0.015276035816524694, 0.08757666503936215, -0.16189586304245124, 0.056656989669701216, 0.10175513811972742, -0.06279949790366514, 0.1894027656853254, -0.05018693138650421, -0.020364259085053377, 0.101138109994812, 0.04525108852015013, -0.1336446170745852, -0.040712461935370266, -0.1489808000658452, -0.071936473578459, 0.07540054590736804, -0.004814829709283321, 0.08125695751379586, -0.18393289526443357, 0.2929805324651075, 0.17883817289271167, -0.016591901610162118, -0.07737440569400351, 0.18248006002663283, 0.04238449651984232, 0.10553203594760054, 0.07198494099023922, -0.15687611127340825, -0.0647869570694732, -0.17716572016186932, 0.12648100166201745, 0.09201782909396557, 0.09569223696764319, -0.03513430869159196, 0.009505453076589421, 0.019045471007718563, -0.11642463289977385, -0.20847651781393237, 0.25102519473532603, 0.15206245852435557, -0.24544284889765985, -0.07493918322833072, -0.09931253567747673, 0.19810554332625616, 0.052494912400112274, -0.2195607048188485, 0.045783730984160234, -0.050434189490053016, -0.12901075222544986, -0.21872713101870453, -0.31469264871512825, -0.05736597367770605, 0.09342678636957627, -0.05037569627303844, -0.20856238170936572, 0.0994960558762969, 0.39533494867571656, -0.12192533732772659, -0.3439827362528289, 0.09887584909684988, -0.04124662755035909, -0.05421171596229762, -0.09002147451143697, 0.010037241779422897, 0.009460774334046112, 0.008876208730935498, 0.011822144979861473, -0.0033823285503880376, 0.002149294548908727, -0.009420022411159565, -0.009759242762069274, -0.01105533486506062, -0.013174382892433958, -0.0019690050655609935, -0.011900387754970175, 0.010490035686609257, 0.003654969449802206, 0.004531957964076438, 0.006564666165443995, + 0.0865794698872894, 0.11046098398825502, -0.04582607651008584, -0.059528631777324884, -0.1017185606848187, 0.08531980292413743, -0.005387286192882167, 0.093790113863201, 0.09245360814774507, -0.03923827922658325, 0.07401133410943322, -0.14033533691561115, 0.0737282860602177, 0.034114670411401836, -0.08191612265747471, 0.09577246499159145, -0.018753642092195228, 0.10673731601788648, -0.12285894477987103, -0.02761734907436908, 0.048369996315803396, -0.10719133914732064, 0.09997820474951358, 0.07558595042630296, -0.018952730518094797, -0.0603994620153567, -0.15711992228409227, 0.06858964236708145, -0.045213172264043415, 0.12856901157535106, 0.10087711794484958, -0.03572886277817862, 0.11004222481518279, 0.05662590066401884, -0.015508381796916495, -0.08984646133957819, -0.10696162115787534, -0.12406430739689989, -0.01303906922802124, 0.09480016740891087, -0.15155551792882357, -0.08690861859240744, -0.08555062039750184, 0.04842156318962919, -0.10759843044414402, -0.08394405946223928, 0.013090898070099503, 0.08046677886763179, 0.07049408886858048, -0.02945395438539121, -0.004036108761597535, -0.08081643199044067, -0.06853652655002805, -0.058029150289411274, -0.15516904797658973, 0.20847845553994568, -0.07556081119319975, 0.15297782653717273, 0.12218649641319693, -0.12426892815376907, -0.04923352035526713, 0.26339141049837056, -0.13661827152747005, 0.07743556413196302, -0.17381370895977494, 0.02964803849446066, -0.0948968937577474, -0.060851797625349945, -0.059407940833646346, -0.23384307971124316, -0.11174433646031116, -0.16260375224555518, 0.18910943521995022, 0.2317232879026876, 0.11121881463654087, 0.056757965275524305, 0.08135854112659861, -0.3436160973829331, 0.11113547670076196, -0.06103878053266894, -0.052839646581362, 0.06938895518658615, 0.017927675598103668, -0.13229769431905947, 0.14815482972834537, 0.01358675619002794, -0.003577213580007725, -0.1596915127536205, -0.0795456815363783, -0.03713415519358938, -0.04261483967026046, 0.17188623033122116, 0.19589439309605094, -0.11012469659667098, 0.23379640540960606, 0.17001603594211268, 0.28205930039045307, -0.2790256125268204, -0.029115556137061592, 0.023026871627205115, 0.11402576652127355, 0.11817144767341241, 0.01773652124661144, 0.04104202780926768, 0.14197117026789718, 0.15316245305125195, 0.29478642912019637, -0.18308166258834063, 0.13696505210719093, -0.07380230782033838, -0.24139190493953522, 0.051358421460271725, -0.07107682577065119, 0.4103438441799022, 0.0895171182006789, -0.011615018050278238, -0.014884011939637086, 0.0007412202734498028, 0.00017299480760527355, 0.0023938330185608453, 0.0006757941553433601, 0.01302999481120359, 0.014468128803635879, 0.0029695929694432376, 0.008613237862728221, 0.008377905635309555, 0.011189663454466816, -0.01250026253677955, -0.00622715760831536, -0.0056097576613248126, + -0.010373018250283507, -0.02104600539364878, 0.031571302633595553, -0.037527626758081176, -0.046638769431676635, 0.07080235125022159, -0.07432001971638474, -0.069790110013986, -0.08680842309364917, 0.07489723235121107, 0.09526989593554756, -0.1102023120496382, 0.08636068681140792, -0.08163274972531331, 0.08880426321385045, -0.09975365551413516, 0.10109890842476398, 0.11620586261848008, -0.10097136984519209, -0.0687693829859843, -0.13843459664822935, 0.10094343486015989, -0.03391828473722571, 0.00803182331538506, 0.008458892237155536, -0.012855931924613977, 0.045464428946315166, -0.12226661764323575, 0.05054765531957659, 0.08909761213182786, 0.0761599044596076, -0.08766089829591632, 0.01027319974522313, 0.06266608494887958, -0.04957414652521214, -0.055287043603323344, -0.12525814280898107, -0.1390376290983198, -0.11289921374612459, -0.17243331984998508, 0.18685190421118394, 0.12387527573151826, -0.17832328252270194, 0.06936099384169718, -0.007494015572901612, 0.0257588279345259, 0.014277352113002253, 0.0063469675542872, 0.067182745655398, -0.032614198772342964, 0.0036771649072679987, 0.026526617353238198, 0.09077005806295027, 0.020971686649414973, -0.06731423375300466, 0.06588695409270508, -0.0833891538429594, -0.07101945638437494, -0.13585170522129641, 0.03711902827537839, -0.07595401494137245, 0.16197207913143785, -0.07917917471799359, 0.14164655470451662, 0.10523026978966632, -0.1534599021291558, 0.02521715999628798, -0.07774148893608998, -0.055449513559171874, 0.004333303279359832, 0.027959654975376537, -0.057931049470463646, 0.028279328452030815, 0.04718579227961199, 0.13672179996069833, -0.1523774554507938, -0.16950154888974212, 0.14699600184840556, -0.2944735836616976, 0.22874755427703658, -0.1518253114308896, 0.02558765405114884, -0.1127046498840812, 0.16953553293617032, -0.07950418517616019, -0.17997848566098776, -0.09394270066796567, -0.15913239161277848, -0.07307303816775274, -0.07070761085814972, 0.13800309846383466, -0.01864310981195233, -0.056340970987745743, -0.11362370559544847, -0.10714324970158391, -0.13963705852900155, 0.011359355534621262, -0.2022918494232637, 0.0075115531070575736, -0.10260253018211939, -0.05012592491976611, -0.04686046234330802, 0.1647165785225484, 0.010679298890848645, 0.19957788097146914, 0.032058222662477286, 0.21786674565922157, -0.3452364097923625, -0.04831877148192298, -0.09083830372616211, -0.02339749790771223, 0.16041345704521995, -0.19500245167585403, 0.045557092596185705, -0.04483199487755514, 0.08662631189647668, -0.002396393680448014, -0.0030397405752006527, -0.00023268163785765059, 0.003130843307084836, 0.006271443766911414, 0.005866655957569428, 0.005446162200497628, 0.010369878638650578, 0.00986533236554606, 0.008393157049961991, 0.006730509507051667, 0.008648098839582407, -0.014174875226500338, -0.009666462468461208, + -0.09778860124617035, -0.09388167364946327, -0.016065140920803786, 0.1088507652973678, 0.0684487825467104, 0.03979990167773588, -0.10363422699307197, -0.07798276763731622, 0.03709102100737434, -0.11353727642816892, -0.058498732999362923, -0.020074022581215448, 0.10398020364747089, -0.10086579738260694, -0.0685854603770164, 0.08827394045976084, -0.000982933648134826, 0.035034668442237786, -0.07563667475770193, -0.014569430010835764, 0.07277977478042726, -0.06622778499919633, -0.08177305195682924, -0.07432660966702936, 0.045515674877202816, 0.07391698791672635, 0.12404879957162494, 0.007120978631604732, -0.15456443888457488, -0.1387407464011516, 0.02189094081697051, -0.09004019094383002, -0.1885074066836862, -0.0042725432721540816, -0.12447272601839664, 0.016612154843121698, -0.03860586364841918, -0.13001919433866377, -0.037862111965248725, 0.06544884289509832, -0.0894693020503496, 0.03975706979786024, -0.07044950273045324, -0.029185196251876436, 0.06125960670926265, 0.05556764415276373, -0.0005680143130167981, -0.1162192250783664, -0.09156651994240114, 0.026044896686713153, 0.05926382147425922, 0.10673078360626319, 0.010346708518015958, -0.09368233331566853, 0.10502741549745576, -0.04021700753541829, -0.10785949691069696, -0.1892629183424764, 0.039768633536948254, -0.08371444239365483, 0.05841355194152953, -0.043036704931528794, -0.12660226241897188, 0.12548060010289738, -0.09894409759693108, 0.10054515814356094, 0.059545629980316775, 0.029190743782614846, -0.09265914438489281, 0.2772923160069415, 0.26127825962722595, 0.07816720580642443, -0.03780270013237298, -0.11906414572492795, 0.027972448068796448, -0.1541836874787816, 0.057631239017998465, -0.10278585998262507, 0.1716919178867842, -0.15281291560692475, -0.13078956387567353, 0.15839789257170148, -0.07330771627977979, 0.020681009133818457, 0.28459596735080755, 0.05678293269128435, -0.19447992030188058, -0.23705861123820232, 0.12261784839196768, 0.29760213318100165, 0.02091109212275321, 0.004100534513155202, -0.21415257607658822, 0.011161829040109868, -0.20521274251560914, 0.024156074193657732, -0.010075662436509817, 0.1700580065920516, -0.09872476399560759, -0.07777534001066631, -0.09237792924245021, -0.10720820193226975, 0.05802780576132484, -0.3499577708361839, 0.0023442973975112344, -0.23901530455834144, 0.16036086803717212, 0.08689516095037383, 0.05209159407836188, 0.1213948456938214, -0.06249745687792106, -0.11285027600448938, -0.047484527713261414, 0.07652647072124964, 0.16901836480550944, -0.271109936730723, -0.09224802836349244, 0.0028510169343868626, 4.934886071572553E-05, -0.0031952517326614693, -0.007233838959598046, 0.0013996895377451695, -0.0015772807607467697, -0.010685695151229802, -0.008846695827173325, -0.007166560849224445, -0.005189085603191363, -0.0035396423045155334, -0.0060614245421800605, 0.017421252166038872, + -0.09529779523156826, 0.09034845058029141, 0.017138759954128814, -0.08201697321491759, 0.10901096804356028, 0.003612415858468638, -0.0918146642876516, 0.08823084379668356, 0.00785316472834071, 0.09174948260735737, -0.07290927906210778, -0.0016863674471444391, 0.11519033532689639, 0.07221050297118964, -0.059252468049281914, -0.09092234166410115, -0.0644343932689303, -0.04280988570951521, -0.11918590013132996, 0.06733705988716694, 0.04620396906313895, 0.049664015471703786, 0.08046658515473176, -0.10869358241194226, 0.04221854730069803, 0.1529164278085275, -0.10717798457879076, 0.0027335933754996933, 0.10295253140503956, -0.14890875017799232, 0.020547299277193527, -0.09833413013415211, 0.08781725431082892, -0.04289550581936201, 0.12150430977137011, 0.06125122864515993, 0.034622924748681234, -0.19753805767749014, 0.1318409526354738, 0.08070976443024573, 0.07973364093893873, -0.17469760131253015, 0.02180640156066408, 0.11754727187565457, 0.05536258546376553, -0.05490806419932173, -0.035383147730776845, 0.1204772420397081, -0.1438473259709001, 0.02840651534827351, 0.08595568477693946, -0.04369151750326592, -0.08115974189394391, 0.10564659229960989, 0.006665553131304935, -0.056100254922569655, -0.14519882993238262, 0.04721876080630932, 0.09687238279944879, 0.14450696217017486, 0.0016249707504287563, -0.13955828326285272, -0.16371790618725804, -0.003019595791116554, -0.07005820571834226, -0.14272271920591056, -0.10943209866275896, -0.08587171059283442, -0.01680312941679025, 0.17245617507416508, -0.2613684184618929, -0.1132991943637531, 0.15378209363869344, -0.09551000363706963, -0.0968501175452514, -0.09545781215479565, 0.10428296119874884, 0.0035819096646671736, -0.1752826410965815, -0.24036477716486568, 0.040211027444726606, 0.05536511920428996, 0.05275009468146608, 0.04546693529499187, -0.20867390311050174, 0.09585427755336859, 0.0277693201050784, -0.007600639226492141, 0.10203310325359209, -0.16359274986513128, 0.14834583498134316, 0.17657377845621205, 0.1279804181899883, 0.09260666806816585, -0.1759060458170127, -0.012834586933802837, 0.019840019212594606, -0.20803540230341755, -0.29025727465229356, 0.33097842348983114, -0.11110843875294586, -0.021998913476699522, 0.18539383557689476, -0.24597547670420272, -0.04211618355460792, 0.08493506154636626, 0.08687354575885914, 0.2683742759897248, -0.18009428693001228, -0.011682826392977975, -0.2002374856188609, -0.44352130030692843, 0.028248413743806756, 0.005890516380466255, -0.020637948278531392, -0.13058347424791353, 0.30956419763494697, 0.09382377769022478, 0.0005819164745679908, 0.003795985635180063, -0.004777806338374397, 0.0025162206204481785, 0.003432883165280334, -0.0005744082188234717, 0.007251517995534581, 0.005035168515614988, 0.003496016724003178, 0.002018185786538595, 0.00121210939862966, 0.004916806540202028, + -0.005190635769361927, 0.010075583065761718, 0.017844736458432934, 0.022931850974928406, -0.023826598134368243, -0.03780383890745954, -0.031494010453333755, 0.04236352766316444, -0.04667107082927221, -0.06396917002081136, 0.0385264698234639, 0.07228829326702732, 0.06182733431278718, 0.07427628506244048, 0.09044711062027852, 0.09831508775144102, 0.09093019946529907, -0.08965175987870053, -0.12938943777992074, 0.09127011464561112, -0.09161683378858157, -0.11309477189958786, -0.10074033205803806, 0.04956790838167783, 0.05013196463145478, 0.04760264518165337, -0.07301425893414944, -0.10347092947499965, -0.06788509782611721, 0.006189996862441019, -0.04440749374009591, -0.021210750226948308, 0.04288794692786844, 0.1026828252600959, -0.1485726203537772, -0.11387747987741521, 0.2421638041474341, -0.07741070039873446, 0.181653033728504, -0.21533689267418724, -0.1613340680705424, 0.11828228952672615, 0.2695914612998482, 0.09953608601857299, 0.10051105271358282, -0.040543159237394634, -0.07837876779733025, -0.08312274470604587, 0.0305513489772815, -0.016786887949692478, 0.041880511006695355, -0.055533430713483135, 0.0710851164144175, -0.1125492752216178, -0.10671841014166877, -0.10879550110851278, -0.10647765891380075, 0.12769759436207848, -0.08912797085812947, -0.20308336121648157, -0.17557498801909052, -0.019077933507521568, -0.17870132952241805, -0.18371093965653554, 0.09904359658855216, 0.17764716662331206, 0.10639860259504316, 0.16758518366516253, -0.08308168490036337, 0.11316704265341787, 0.015245191184165452, -0.02696994667757135, 0.012424514158314632, 0.20104397776163516, -0.051650792995042286, -0.12471985783235862, 0.12309935312060515, 0.13415835555225544, 0.016079874318946665, 0.08319410537532018, 0.010309986912813556, 0.20728188312146675, 0.12084258549957556, 0.06684137942658036, 0.06751397949073104, -0.11386274973844833, -0.005636350594933295, -0.1358114743360114, -0.131942313321411, 0.04487443699186656, 0.05939864326503414, -0.025389639314315385, -0.05870293184341611, 0.38203242791367, -0.060991994216152666, 0.21566601843724728, -0.10141278651588063, 0.11017625155717936, 0.21323375518609322, -0.14643052640334991, 0.12463814273895792, -0.09240546294823596, -0.03586241908726403, -0.09837001087708362, 0.15617347473720936, 0.14823459490864277, 0.07968675367974076, 0.2149410952558963, -0.2929541169946069, 0.04658804476887054, -0.18890695467818258, 0.3577699609614102, 0.13530894660553525, 0.05298071430033571, -0.1720637391416464, -0.3570108616759742, 0.22453853410984678, 0.09166607345193449, 0.09571696892292808, -0.007436528592227095, -0.0008507364805266267, -1.4406379411149861E-05, 0.00020604330606111606, -0.00015929386536907286, -0.004711081740683933, 0.0032069996211066334, 0.001613345208479118, 0.0010126952404836825, 0.0007107085781786204, 0.0009682754112323583, + 0.08968877028135247, -0.09920324083604994, -0.049980330038825745, 0.052535474172548925, -0.1254364429813, -0.05693641478298368, 0.031045668022888728, -0.1089688301517694, 0.07650849938377799, 0.00983956442883266, 0.0921634186146744, 0.07211089345507701, 0.02408377483669436, -0.06747454048414415, -0.0754509373038701, -0.0839679250292392, 0.016810875943139462, -0.11142978924339252, -0.07637563280877807, 0.014025832876463576, 0.07565667935084776, 0.1359437527809557, -0.03686972375210557, 0.16084984070815, 0.05287496523645548, -0.051993500493105374, 0.10610272813312709, 0.07804672653145169, 0.010761915873946114, 0.12501953437404334, -0.04420255387869424, 0.025344565845042497, -0.1445999794036059, -0.1816886596859417, 0.07605610461929141, -0.07115766982058669, 0.10180807619445055, -0.12593503806391712, 0.049104642272211604, 0.18490294863978188, 0.21802483530479452, -0.03966331089812817, 0.12954186090736686, 0.13993986840751538, -0.05817019510403825, 0.07263451584109143, 0.07576604942096046, 0.007140011430818672, 0.10744169414728635, 0.04074878897385214, -0.056455200033930106, 0.1493606071736419, -0.11988660574871728, 0.0641193155812612, -0.07192488551966734, -0.09759812615223537, -0.02096633685425946, -0.03409625983250508, 0.014813404445991319, 0.13519562511247493, 0.02706265168698767, -0.12117849401822454, -0.08682627740917195, -0.03656460347149143, -0.041097803177822564, -0.19303880073068336, 0.038857885194948545, -0.19124786899801166, 0.08435372278403915, -0.15850455549781323, 0.19283657553220626, -0.1342821838748586, -0.23098216699145094, 0.14138827008677732, -0.31947089431719994, 0.006380353753895761, -0.016272294121173363, -0.13530131866330136, -0.04140388169676501, 0.04160403840164951, 0.11687501734604953, 0.05124309496668622, -0.18811288427289746, -0.21289186232639398, 0.004313360993099729, 0.04138787908381645, -0.01569696444631115, -0.011400281684702038, 0.07449186096494284, 0.21110907428997414, -0.029663989855959513, -0.17843242242248983, 0.12272375435437284, 0.1089141738555011, -0.21045681954503132, -0.08524295427153865, 0.0734795426510774, 0.00842542452580605, 0.11216121152049746, 0.1601467683710995, -0.033588961209789596, 0.13175240647110345, -0.2341193907999409, 0.10866092384858374, 0.38934273371615363, -0.03181855958083854, 0.413056924998551, 0.2584965991926143, -0.19544130132903587, 0.05477482336071488, -0.0171693875016559, 0.22952700149026206, 0.11153211506303762, -0.10979854876475158, 0.06563007125819596, -0.012918290964997053, 0.043510707055669215, 0.16664693644820233, 0.13735564295051153, -0.09300494465223848, 0.0027253123679043152, 0.0033065831482249576, 0.0037652504552841137, 0.004047072588749916, 0.004883746357083205, 0.008197726493999372, -0.0008114790250731731, -0.00036031397827214137, -0.0008274735597724112, -0.0008638766397870354, + 0.10210873455634717, 0.08059354797921761, 0.04600372036543737, -0.11313499869660455, -0.024518107376600443, -0.10036252023052465, 0.09910619319424349, -0.00763498250894642, -0.0890744447240875, 0.06957637373308787, -0.05753391760628789, 0.09535889680709941, -0.03501514702412115, -0.06463261591130928, 0.05453662573550809, 0.03568888507604152, -0.09429734921084315, -0.030106213156311804, -0.05731329979106019, -0.074043494432679, -0.014975492462997265, -0.07792980374600657, 0.16331966205798124, 0.03237456732938664, 0.08985884575131195, -0.09887849544474067, -0.007537418520148376, -0.0062136304627538625, 0.15191077445860005, -0.04496071931674879, -0.10095597469994688, 0.12287428711327848, -0.11863086705440593, 0.033737332026762976, 0.048660100610346375, 0.11999029702412012, 0.05246612230635437, -0.04877748823116456, -0.09792433251151712, 0.015636904030567896, -0.11379189652758832, -0.11534922102330906, -0.044558392159288016, 0.10697439491333155, -0.11623320296601981, -0.065286475189228, -0.046724075592640406, 0.1430895907135112, -0.018720994975538238, 0.10374279400733333, -0.11158870472263892, 0.05051339057971584, 0.07812678120136585, 0.08025322187105455, 0.10824838066413989, -0.1259350832351761, 0.04003599933184551, -0.0416606648849469, -0.025339643197545468, 0.013339650103073973, 0.12578174209232731, -0.08810670924888482, -0.015272420861686009, 0.06662607675575787, -0.01747616016412573, 0.030763447871662422, -0.058619024458351605, -0.07417559009150151, -0.08904436213374244, -0.2870141265122669, -0.21362180428750913, 0.3494553980765414, 0.2350788348580915, 0.03632335382054518, -0.13328426152934428, -0.1702039246232602, -0.04670109045379116, 0.2295320796204589, 0.11778000820122926, -0.08738185680698611, 0.040203659916790556, 0.06539190487119388, -0.30628198047727817, 0.18373637189910738, 0.10802718138794297, 0.03801196794115886, -0.017513148242374786, -0.06786870379434583, -0.2237748957463221, -0.0259013018050186, -0.009679328107346868, -0.030285561442077027, 0.17156066377797238, 0.09702409014183289, 0.27792816996469355, 0.019304299513378934, -0.20241460017545754, -0.0512776961954431, -0.03542406300176143, 0.09248595913489346, 0.2779043350965459, 0.3056354442221634, -0.004981328065692112, -0.006741410397641511, -0.17581346733696235, 0.21888078200582817, 0.20804512427474087, 0.06526497255034176, 0.07542813949707099, 0.05234554406450062, -0.26104357366058695, -0.0656743014005118, -0.03743780119779605, 0.4677339607302852, -0.14057647173589763, -0.15902756749724523, 0.04001818213721325, 0.3191428043724632, 0.03957063694520651, 0.28214161801150334, 0.09182340278153149, -0.00639783762027362, -0.007466515690184888, -0.008405158182009306, -0.007526492675302216, -0.006879105020212627, -0.00956583816113483, 0.0006457184939398491, 0.0004999287774791472, -0.006765772579652669, + 0.020650399178791884, 0.04135071954178897, -0.06059948632171591, 0.06953521388309089, 0.08285193427686291, -0.12061758203752443, 0.11832813888672052, 0.09722329262190711, 0.11325190450496536, -0.07752422911376917, -0.09431391167222788, 0.09113008881071041, -0.04419154176692613, 0.007364928891779346, -0.023536982738687928, -0.02218152140675983, 0.020282140602007073, 0.04552124471114924, -0.07328827350994258, -0.06547367266760676, -0.0945465070089494, 0.07294821975599906, -0.052316504384185177, -0.08068445366450994, 0.14080537452923494, -0.09828144998061164, -0.015578653956203305, 0.19287820595955152, -0.03576637576872773, -0.156882572359901, -0.12214048295163717, 0.13664048135002851, -0.040149915421206, -0.16133123692717016, 0.02127796202090224, 0.028734084669064384, -0.006901001885792748, -0.07489028083292004, -0.1063902322568288, -0.06283766088715756, 0.12890963486592288, 0.14367010684178366, -0.19493065826262024, 0.11728292021478938, -0.03767161054240291, -0.03121631326250997, 0.10975291614481696, -0.04586795889247799, -0.07964989119006281, 0.11787945043571209, -0.15471505108851735, -0.09596199522878894, -0.15229238309278492, -0.007570402164517292, 0.14163841735627303, -0.12973225144492723, -0.009351520654672865, -0.05704175526404016, 0.003539869590030596, 0.07136980652456926, 0.001058176725352092, 0.025437238364321844, -0.13658224301870658, 0.18260181172277226, 0.07858757843355155, -0.143644937351277, 0.045888874842661985, -0.03106420757867358, -0.10784573597995807, -0.08917474435409191, -0.288956144031285, 0.03560914721406713, -0.34288326773094735, -0.2779147980912724, -0.14903805153806396, 0.0009943055350979944, 0.27807444154275285, 0.06851452922770719, 0.28841645694923307, 0.022459061686378314, -0.0021435271686183637, -0.12295420157871877, 0.03423477756001172, 0.03563295666376925, -0.06157127137608756, 0.018337123850093503, -0.08527114667457031, -0.03261653752763558, -0.21127892775184115, -0.2101547780863566, 0.056137674616549615, -0.12285037296896738, 0.0200612574565679, 0.0326045977836192, 0.1838265382825802, 0.216766220844027, 0.2384699459073548, 0.20553436773620032, 0.017040294066774972, -0.32789189918820166, 0.18365368621728503, -0.1533233093369194, -0.2559255714401111, 0.18874977158435993, 0.10619389856220264, -0.2848313081808103, 0.11043197419241685, -0.11246542432171773, -0.2678878570913786, -0.21560670402326773, -0.054134336398256135, -0.07188182833183193, -0.16093211764135185, -0.2506108118196286, -0.09840874827083705, -0.2903160698724093, 0.4552579204601197, -0.0851928367169449, -0.14703962091006642, 0.2887258925846628, 0.5748446662251201, -0.08956552448198536, 0.011674079992927827, 0.011622477252743468, 0.011037837587917885, 0.00951032897419199, 0.007607825572520349, 0.00963243187855857, 0.00709119998545071, -0.013454270766672593, + -0.07979381796954958, -0.11314383696444567, 0.07269117539165061, 0.021568606693195023, 0.08429017688913029, -0.11154732363654134, 0.07412163006256425, -0.013880824845462327, -0.06952597716765117, 0.10758371777093736, 0.03159735803874256, 0.031346084020881466, -0.07883955964506821, 0.11393050504584182, -0.06681176778095872, -0.038605809987948415, 0.048389316993381386, 0.09288750035564743, -0.05844727061580472, 0.04021529610456964, 0.12040774837931464, -0.07391172069775999, -0.0929641313750297, -0.09756822874486223, 0.11868589126704596, -0.045265135181784336, 0.0981883419785183, -0.03139962667932226, 0.10400674155272337, -0.059427769161933666, -0.0844800647021423, 0.10913598688857291, 0.05868443365844696, -0.08061653283940226, 0.13838547863758174, -0.09288383774364786, -0.09744510602556096, -0.0358559319415685, 0.10463797165208404, 0.23586445152258997, -0.1954831649446572, -0.019293357082135632, -0.16268076917159388, 0.06747749988962704, -0.013605869295086885, 0.07934745765098243, -0.041559745078108765, -0.0258808931944146, -0.12206271418748892, 0.12290238743089324, -0.07137159758479504, 0.019953739074915832, 0.07163161636019426, 0.1637758241231419, -0.041439361074710516, -0.07367909228460146, 0.0963511511459593, 0.10161788534770465, 0.0816858163175821, 0.07395866799258488, 0.039595368165347866, 0.03311614938563751, -0.05390009389820983, -0.000937214880319741, -0.07299192043278287, -0.047589152107842744, 0.03619006985850085, 0.057740280601321595, -0.06707909424491217, 0.2355269244911331, 0.059651021128353646, 0.1852587496185418, 0.047143338282644526, 0.1328279575146132, -0.044760548128648055, 0.22242014413708963, 0.03098766852866659, 0.11168042969928445, -0.09365364344792354, 0.1465817638273863, -0.003344749274223524, -0.053607642886141116, 0.21327501555620776, -0.13224285896290555, -0.24223376112147335, 0.043812870780306025, -0.11803711054474143, -0.19998220247905207, 0.05637925320730326, 0.08632328426271764, -0.1784795011384935, 0.0905273083518112, -0.13049067669759168, 0.3036709367422176, 0.15891738745120557, -0.09774850175980265, -0.16242334773382971, -0.13194008255914697, 0.23248158793541682, -0.2262477343599645, -0.02437559427231526, -0.18725166558133835, -0.09329167815414964, 0.1171321694736222, 0.32102075500645266, -0.39126244802653665, 0.05234060804743318, 0.22008226421442098, 0.3128002718474076, 0.24460198693801677, -0.4484028339427974, -0.0655695820534035, -0.34881481507145107, -0.10422451556466761, -0.11065751968612114, -0.0578876625560112, 0.2695021370362534, -0.26679894963200296, -0.2725587200784778, 0.34056241508101576, 0.18605459497866683, 0.08783262973279359, -0.08700503736368911, 0.015666391992365976, 0.014886579548176355, 0.012880899705176583, 0.010576020904432276, 0.016381538306957284, -0.0029894726032782867, -0.014310976668064839, + -0.10687596686473237, 0.045609234856812154, -0.07340342679446973, -0.08489633210576697, -0.03454652152585866, -0.08868172237140955, -0.023279267770390882, -0.10418088184972829, 0.049407003108324014, -0.0422950964003796, 0.09587326594006139, -0.052041596187471145, -0.11769901073809672, 0.009356629736011327, 0.11660295109941315, 0.03451658410201403, -0.06902222461552701, 0.12015333980917003, 0.02377144132067651, 0.08526954270354796, -0.03585708478641616, 0.060947092845719884, 0.1067531704811681, -0.03036491352117237, 0.04102245044694662, 0.09600400919250508, 0.10099931691025794, 0.13121447471380573, 0.03825499603466032, 0.18615614864384336, -0.020656973637084446, 0.048011406113897696, -0.020072835394591707, 0.06980837884205451, -0.05173166982579679, 0.059955346474489066, -0.20872169260729465, 0.08235149467402808, 0.09126253789332091, -0.1538734624971643, 0.13392002575914524, -0.19864819140397016, -0.05940435908952209, 0.09106163599961088, 0.05182348813710408, 0.04358438127256838, 0.043617430523740876, 0.12834508872978728, 0.020482875040913135, 0.08625381514322124, 0.015875970673955526, 0.12455449557135864, -0.0967714635071191, -0.08830927427528745, -0.1100570734622192, 0.1419987097685118, 0.12664601079854537, 0.09685117749986642, -0.079364202740311, 0.026912537690057393, 0.07578025071129288, 0.17803584794918142, 0.10490286931264327, -0.07661862632268697, -0.04491476123098967, -0.10753559581900118, -0.08374934883993974, 0.0828874907809326, -0.04235306043236449, 0.17074992292712834, -0.0368875726539776, -0.10174442182067962, -0.07540427259296345, 0.1755148423180187, -0.19202487780732957, 0.24568498450235135, -0.25555174353481985, 0.012411466874009704, 0.1423276700568349, 0.028377782182789666, 0.007748023425928539, -0.10100714604139473, 0.08631722923549724, -0.11909334506531695, -0.11225142353352852, 0.23233113232242072, 0.04654740777502234, -0.15158721539321462, 0.37968753375301806, -0.23489004435971367, 0.0783049642769577, 0.06161346808588236, -0.024019198360463727, 0.1753568589787617, 0.09836296340575464, 0.007696825778540557, 0.1895001074144429, 0.14270927717612927, 0.10481033956131867, -0.01652215488201991, 0.20742885276466513, 0.3008735205097001, 0.19536091636073363, -0.2387933347412771, -0.22702509361629195, 0.0034307942262059897, 0.3854416269377274, 0.25197186534118876, -0.1231114147850775, -0.2946224109047138, -0.32836510638610245, 0.013884644510860833, 0.12960962344237703, -0.12925437107480686, -0.04916749754332159, 0.17914234397879716, -0.1647144887632369, 0.007088985371370544, 0.24615931932052693, -0.2903901198113628, -0.10212156488964104, -0.003921961282065716, 0.13448489539890623, -0.0847891570486982, 0.019050372974518864, 0.01730535318399475, 0.02298331144823665, -0.0009809769017132264, -0.0050963541656520355, -0.007856410010124132, + -0.035696844708254, 0.06552788660120246, 0.10680345799234292, 0.12092519320996538, -0.09774293400020549, -0.13662379167910302, -0.055448529737677194, 0.06907334353348185, -0.02752036821345147, 0.021533462011011632, -0.08764345233639108, -0.08301287841967436, -0.14757187254816118, -0.14072395109364608, -0.14359324294533357, -0.09474954821395441, -0.09441474055091623, 0.07615939587292447, 0.07225591031312285, 0.0052687534714224195, -0.06732408606148016, -0.12055715135862842, -0.0765285836855609, 0.05096298809834152, 0.21815082893329332, 0.04369684747324031, -0.12501123624060712, -0.15367993629975418, -0.11829588719032356, -0.030624855034607264, -0.05128841334154098, 0.12638230271548578, -0.1557289960781229, -0.19001858233289037, 0.2251884524858067, 0.21979978066917516, -0.35701378540878675, 0.1300463027862262, -0.09859391525561932, 0.08074418622113433, -0.12275913617667983, 0.12273465132824755, 0.15827897101152405, 0.040911304269347845, 0.11258740252238876, -0.14557595039844887, -0.11080557683669816, -0.1710774935832163, 0.10780257923113412, 0.1849204629113886, -0.012499804135270224, -0.10917227109054607, 0.09490337853723721, 0.08262711247723646, 0.21976358857292322, 0.04959115756185729, 0.1674999877530636, -0.2545935940630761, 0.13045916476455954, 0.15368243271248422, 0.23948815978313534, 0.015130314184543626, 0.016406438845367674, 0.16330774061270764, 0.14018775515894874, 0.24507123073143586, -0.04633297536702667, 0.03150530331834253, 0.1141485279173565, -0.02120254426052347, -0.20830326205277536, 0.18861325371949286, -0.08874979166772538, 0.13560543813195583, 0.2533776269474956, -0.20300669173039304, -0.03281599990569511, 0.004972260962347013, -0.0180132399864144, -0.036739849585138, 0.10646945002515648, -0.025580945203486933, 0.049743455438471355, 0.15261780617977339, -0.023325500261110136, -0.17529368850742005, 0.1363280285015415, -0.30762452499161147, -0.011609053330649825, -0.11580736806253261, -0.05122128502940415, -0.05070776815130384, 0.11833522695798399, -0.19535887623974457, 0.003943905794873672, -0.23853849430219287, 0.33314692573107707, -0.1892638432282711, 0.12573249164445366, -0.064347040683279, -0.15292403233519264, -0.11176981411718535, 0.16544336294289747, 0.07744768920002015, 0.1562283325426769, 0.15545874292694062, 0.03509666243331849, 0.17380648435098614, 0.06985003942336196, -0.06804102854695471, 0.07645248272241044, 0.008184961500539257, 0.30153137770346633, -0.24449286812023163, 0.11516114661543023, -0.02039684300932182, 0.19518023928873635, 0.06501060065383406, 0.14150677912589332, 0.273228642583993, 0.21486468388308996, 0.19311427163703504, -0.4570980655078515, -0.01366693833113987, -0.08294517139240958, 0.03092550642969233, 0.0071997190901828476, 0.0019206329352030177, -0.006288186768286035, -0.014756120479437806, + 0.06830179184855929, -0.10337269954061205, -0.1213348711667546, -0.0689526552013606, -0.03998760124524547, -0.06112020539062983, -0.1386618574301976, 0.060897728861941156, -0.01898774236247028, 0.017124922365127956, -0.07956958107412337, -0.14281386236125473, -0.0897808270054624, -0.048864987363256514, 0.06658769555066385, 0.15113235837695807, 0.1127034882912853, 0.015466070526361942, 0.07333622034746023, -0.10428650343416078, 0.11618530469344074, 0.09123771859158626, -0.04185076832779294, 0.2352202112984345, 0.0863187687830666, 0.11620476397772411, 0.043002929097946466, 0.10457373673912437, 0.09500963798122511, -0.12064521410021094, 0.14737218819441006, -0.06181930414421676, 0.06452895381166841, 0.25308463830268324, -0.24254497453577034, -0.06001221711616516, -0.07474390551929373, 0.21274723581674154, -0.3067441165375826, 0.08622869448294808, 0.024013231208551408, 0.24410003370806815, 0.014929943400238547, 0.15608125996078076, -0.10004999581355338, 0.23175884544337755, 0.35339979732927695, 0.1660618781351909, 0.06133952341000318, 0.006459435863907119, 0.21535011934353485, -0.06476333788174865, 0.09861568641203255, -0.034441310746149215, 0.060831074500777294, 0.18051878161371404, 0.07089325902725536, -0.10829664606143626, -0.07620489438798327, -0.21730691174030176, -0.038700083735268107, 0.03859291240052011, 0.24397700365688688, 0.02189324889360198, -0.19022194740666823, -0.05141366104203307, 0.0464752475304288, -0.17314346486145893, -0.11144136882113498, 0.08583599052885345, 0.07164954612888798, 0.10960314712726335, 0.1685373170902964, -0.15903989781028913, -0.23004813852933031, 0.03049461671928092, 0.18555574867457458, -0.10387024695744676, -0.10827375855564672, -0.02262661352408882, -0.03449396369496491, -0.08791748423466633, 0.009895585486884396, -0.05671898902098401, -0.025568028468296138, 0.12642531230755694, 0.1657855827783025, -0.02810577018500342, 0.0874866038803615, -0.1101894967835784, -0.16319512366651412, 0.05428026904348189, -0.15447009485703553, -0.1483344496784964, 0.16952443672660905, -0.0583586685116211, -0.07310756244832241, 0.031743717387910354, -0.16732346943333593, 0.0759804634576513, 0.10027605272623269, -0.14147119967574937, -0.020780751450002282, 0.025309255379575124, 0.15038025096569152, 0.23869127335030643, 0.16286949280287003, 0.10842590273022996, -0.11539752480642257, 0.13819521603419618, -0.12239134565606102, -0.036387624757278234, 0.19092486019184451, -0.48648462520744606, -0.06753151004476564, -0.043396548452203025, -0.07066141371948084, 0.05730893262871737, -0.3611238446962625, 0.24589148055092333, -0.37537851176760834, -0.07793234903229868, 0.009087283060519551, -0.011067837920659674, -0.08437068090337846, -0.08548006233096482, 0.011090465256341102, 0.0020918145221054843, -0.008521229840088622, -0.020218263480543633, + 0.10950407596965858, 0.026679259275151954, 0.10375397929899627, -0.04309250108757836, 0.10433444493159374, -0.09522354532883409, -0.07228566723217822, -0.10498298829969882, 0.10045790464291474, -0.09928619436709428, 0.07031023153539978, -0.09814467065283722, -0.07951049245219212, 0.11159295192572079, 0.052890961957047795, -0.15576407203276882, -0.028602628540719204, -0.11017194795547991, 0.05067581782261499, -0.15351954017179317, -0.06883257091917745, 0.007243621050862638, 0.16315888011893373, -0.012115268092003835, 0.21617334006590502, -0.050610316713380496, 0.23096895025976272, 0.033973984634880855, -0.10993103366547818, -0.0026835437893308217, 0.14911455748780475, -0.00418441540366889, 0.17211816921667736, -0.16100652241782218, 0.10608891474574553, -0.1107775128586533, 0.10462174185770633, 0.17052204983987074, -0.11425532463979968, -0.19972601169013568, 0.005065785531437002, -0.15249934716303262, 0.08627391351162464, 0.16299914358869522, -0.2684990571465621, 0.003936848017989682, -0.23698571648286892, 0.053546812228246615, -0.23480798564162517, 0.16734656546614785, 0.064145217967257, 0.1577849212806512, -0.25855480870565895, -0.1232939065602618, -0.17180460118719781, 0.1837040012175848, 0.10153918662978609, 0.15167231128601757, -0.06855657969920385, 0.14336468835626154, 0.02929713267888043, 0.0747615099973262, -0.011297345878689203, 0.14724880189291942, 0.08778082695927136, -0.24902958285151805, -0.3205623290723365, 0.21045385833946836, -0.2260384116559984, -0.01917472534202891, 0.04596939758037618, 0.05162933109181236, -0.16232717463338467, -0.19769402124674706, 0.00885760039431838, -0.23353159534432225, -0.045212210381181325, 0.10748565090702361, 0.05001766313046239, 0.03254212421529369, -0.06401458439208231, -0.10348914495584952, 0.030468300895478376, -0.04198514971020954, -0.06006925235305058, 0.053029519274275426, -0.0022165119350423075, 0.09238389624287476, 0.02500695960513124, 0.045219014796882735, 0.0986344713814172, 0.09224039749867693, -0.10515149287705013, -0.188886333021075, 0.09299893964080057, 0.1644401183956672, -0.22416940105812022, 0.05739159304055314, -0.05821490291671025, -0.01899362300375188, 0.12812436704777122, -0.12891903473554112, -0.19044911829601013, -0.0007792080183004864, -0.20341085194720396, 0.1961329960471452, 0.008005610295683495, 0.06605063525000733, 0.10462714256289136, 0.4110923591015006, 0.12613304316884766, 0.2723663404543881, 0.17908999005053947, -0.32531135812402784, -0.3072912113311474, -0.14131276251079655, -0.24581293530431267, 0.0760801396616616, 0.062496346152309444, 0.3388048013446086, -0.12418023780767609, -0.02044609732728256, 0.1953003322118092, 0.20334014533078143, 0.07672891327477735, -0.21863388171241221, 0.08940209684917882, -7.781654522908202E-05, 0.009154549156153782, 0.025117840871240082, + 0.05002881764817228, 0.09106082922060461, -0.11132464629529563, 0.09309604094882444, 0.06948427790271614, -0.0542785202829781, -0.010989705256688782, -0.10023236080600366, -0.12340499768656538, 0.1421065308972796, 0.11872595003574554, -0.07332530477760199, -0.00867647437776793, 0.06452669948236554, -0.09715147393294221, 0.11744197357627388, -0.16452722147601587, -0.10708700252286929, 0.04745370260135372, -0.013202785003628119, 0.04087331536649068, 0.0331537853951144, -0.043424752554043544, -0.11838133327921586, 0.23098654577756741, -0.16510847606943024, -0.05030364743520062, 0.09248110790659139, 0.09702188175778763, 0.10788963956719361, 0.14762465710875214, -0.15960509567658807, -0.09237152449609272, 0.160998561861288, 0.07504930273559783, 0.12318715083522758, 0.11027943545494173, 0.1558688514266127, 0.29036159630944236, 0.14443655284144952, -0.16369563233308856, 0.04609464245326111, -0.07058993714670721, 0.19942239398522554, -0.21873167402704946, -0.25833953997970305, 0.2470733882533002, -0.10418969793669454, -0.12252231905127037, 0.0865208952668818, 0.02388675554012305, 0.22189707211128615, 0.24895486894348812, 0.2074217483833937, -0.1758641324731074, 0.0082701322575294, 0.13799686451857596, 0.14700585026315793, 0.07968763852862489, -0.10046451815134778, 0.22416567953521624, -0.12485904210580888, 0.07244687090204978, -0.16281237145131516, -0.26818153922029236, -0.08969075910743766, 0.22956389236283117, 0.20817651899044057, -0.07430579695011885, -0.053074351082255306, -0.11616278919892667, 0.10082391258191542, -0.09588159468754237, 0.11473506365102472, 0.1993713452382312, -0.022332260929825636, 0.0024071608723232486, -0.016879133510766833, 0.0662109537569559, 0.062086714083989865, 0.1325290338974465, 0.05696806069313555, -0.1628424655505725, 0.018877691020614033, -0.1211646543837656, 0.027460574870550716, -0.08066317457642745, 0.044947994298426365, 0.13487271561129746, -0.0330845122924319, 0.03886053945706529, -0.06434927149640032, -0.04899469292886791, -0.05509318001856374, -0.19704213317106464, 0.017413459727400403, 0.26255744567028905, -0.10000181813187237, -0.1345763657595088, 0.006444763168856529, -0.03453570470793606, 0.2030145747242338, 0.06783764962155632, -0.12824738183047724, 0.21704397517097646, -0.1396935092018712, -0.010008856909164972, -0.1831906071932254, -0.3137988254300469, 0.06746701407381335, -0.010232565761205176, 0.5337653512257005, 0.1882384913540143, 0.03781989250672704, -0.26613118995325064, -0.1406973368937868, -0.2186492485794571, -0.0022833936958581848, 0.050377030188985296, -0.15052168021808, -0.11683016644243535, 0.4365661968551801, 0.20082108957849196, 0.4205004471855482, -0.12882894200159184, -0.4082432710238212, 0.45196761541003455, -0.09490869600107904, -0.014080761294607022, 0.01808287816245345, + -0.05544270489933009, -0.09794877484302764, 0.11257417608342091, -0.08244979578886137, -0.0459165769102483, 0.013499913262521092, 0.05487159864304911, 0.13304325357610391, 0.14057836936173082, -0.11824857066242608, -0.07342433424603959, -0.010195494971302486, 0.0964519678796424, -0.14054436267924098, 0.10090277391343826, -0.12175455267551251, 0.09312855440396633, -0.0014084338660306697, 0.06067609795546578, 0.07929356567603002, 0.06150461011071225, 0.014189278572177808, -0.10246619737675794, -0.17795997520249673, 0.19112631617564052, -0.15109418558561835, -0.06627824035675263, 0.04351035132840737, 0.09186633253059755, -0.00317231725544677, 0.11478732131613, -0.25917577100684513, -0.11602219897509627, -0.009462555257782135, -0.13371836136217624, 0.1762155800597777, 0.12476635452470322, 0.14803242555184165, 0.12348278451738898, -0.13560879614982743, 0.12312244868688461, 0.2684827246308496, -0.15089745153500747, 0.18349524625048724, 0.11795818467036681, 0.24564937997677608, -0.21266341025560326, 0.1403979385186903, 0.09900474822945826, -0.08308044864977733, -0.08993379994511475, -0.2672599958850091, -0.23893399069749918, -0.21142413820861983, 0.122103609257643, 0.022636741853671535, -0.19116225304939227, -0.20008515934152016, -0.12017749858631523, 0.04356773965694342, -0.16055623744336078, -0.04668322916025179, -0.1011081765404785, 0.13814353349121397, -0.07267115921035369, -0.07521375940128029, 0.18275688093332842, 0.10940362322823043, -0.22924785050696006, -0.19123498288588284, -0.08024873123929735, 0.14550136474587771, 0.03966628238323035, 0.16283134550058864, -0.0240648392313432, 0.14311728299118592, -0.13103440964776855, -0.037255804268092045, -0.038299248224943516, 0.118589974075033, 0.11824927014036908, -0.06365408539493675, 0.055574368767866415, -0.2149193775703494, -0.05537552806093479, 0.09616324981923546, 0.11379657652886307, 0.09812426573375033, -0.03661956765032852, 0.041545538652841905, 0.037380481010042016, 0.12482643392715853, 0.07861067510155482, -0.07526872083751157, -0.048058110385037, -0.24835771411225077, -0.08264902300070524, 0.028051611278427428, -0.07614733367211368, 0.2947997874631736, 0.019685393660741304, -0.07135457255943028, 0.11307451512685004, -0.09939482393242693, -0.04996633750969647, -0.12457319213883529, -0.1358432453414344, 0.15840321012186218, -0.17756986439314812, 0.21611002818622593, 0.00031365287223226367, 0.03824236667887972, -0.1355573692281241, 0.032941549906515016, -0.4293899327095831, -0.11941348965172986, -0.3834264629845245, -0.15426413676884618, -0.5031975216702833, -0.12590054175106635, -0.19983527410684024, 0.36719272934144775, 0.03936896349740657, 0.07558084093705178, -0.10519602386903147, -0.4901574690517154, -0.03637416288889607, 0.040182774708305134, 0.07854709052531825, -0.013457297049405313, + -0.109940460249522, -0.014547635886904003, -0.10672073203691629, 0.019627196548739886, -0.11314160563866466, 0.06146249280782945, 0.09177223764775261, 0.06368946997009169, -0.13350672946908262, 0.054293561838784456, -0.12491760440326356, 0.05467401007321942, 0.12901049249303095, -0.06597275144348864, -0.14520432789127763, 0.09395247934958617, 0.11321614225560644, 0.07081292647496736, 0.07589060386938176, 0.13602642464112855, -0.02424840947178813, 0.009750909096207535, 0.21134798443653835, 0.0004119146481718363, 0.08504931370295366, -0.062372022865479826, 0.09792719453354791, -0.04669311676784893, -0.08400955755273082, -0.10980219934394533, 0.10681657466130068, -0.0938842010458328, 0.145755531279246, -0.12705956154109244, 0.12013064161416233, -0.18024026943572913, 0.21099580096363632, 0.23468579752553134, -0.17863497496080022, -0.054705299271922456, -0.27247369830685053, -0.12834528495834693, 0.04948097572818566, 0.1235835099830304, 0.2695992496470721, 0.056539456860012174, 0.24020434394094492, -0.049360077748674305, 0.11514804823931635, -0.1681230721214584, -0.093941322816669, -0.11152590587994596, 0.26008020986903063, 0.0902458139134972, 0.15368183267718374, -0.14477001203120404, -0.22945704933000988, -0.13417818315888114, 0.162602164599116, -0.1072159970294264, -0.1614159196639211, -0.1392520218818046, 0.14553555726015946, -0.1931542718828125, -0.02632672329015814, 0.08966577649039029, -0.2839983623445339, -0.043935914555030944, -0.32891138385348734, -0.05433463923178488, 0.08626007630934285, -0.08667986809642603, -0.2159408580971837, 0.07156882759632699, -0.07895076121538024, -0.0012827280977198204, -0.06730102708368721, 0.04606331141014211, -0.016702738291696, -0.04559768881113278, -0.03590315444615305, 0.016278213265657083, 0.07175230612182945, -0.010992591676504434, -0.304415501151816, 0.018574936882689946, -0.21453902504736042, 0.110716684169095, -0.10636639665559222, 0.0708593849615771, 0.10444419643961417, -0.07086749902637748, 0.18168987460630426, 0.1150546492923992, 0.021897054350868025, -0.065870521293352, 0.06990535968413734, -0.062548216750678, 0.06675201664165048, 0.014512045053008897, -0.1995508859498835, -0.10097571388533823, 0.12216914872343312, -0.06174281905204037, -0.024231436900727463, 0.017253272505544356, 0.19696224453132746, 0.02585394822957394, -0.14441213943232478, -0.043329784469379636, 0.1323698974562152, 0.13107589041153264, -0.3272198860761617, -0.1284352496677672, 0.0911962850968342, -0.002761490249535347, 0.06669311690617301, -0.27895104518387087, -0.17227104501203247, 0.14856636293656442, -0.2598926448000477, 0.1697864448930453, 0.23592773121411179, -0.12554945716002205, 0.0028331905595678324, -0.20720632435453235, -0.07774542472550743, -0.24995356274755376, 0.32111830885591175, -0.0764987992545402, + -0.06335946346271248, 0.10012414678377432, 0.12736306553635313, 0.08954191896661241, 0.008994652031661863, 0.02880894609584122, 0.1310296746754381, -0.07975767197904074, 0.06523033043028915, 0.058345198308002603, 0.03589783955425675, 0.11381467277851423, 0.12635752398979375, 0.11677005828898492, 0.03045629295384735, -0.0726961204879837, -0.09111811304142019, 0.07196664042128034, 0.010760716266302744, -0.031003027247052024, -0.062487588439161176, -0.08370624570544624, -0.13285524771976487, 0.11436298251336414, 0.2032480416041183, 0.028273112962172036, 0.018497356288740496, 0.12303948918733437, 0.2018931790945754, -0.192065726799953, 0.19095823776169105, 0.03892287454309786, 0.11937467528697772, 0.18316701181487782, -0.19692513751568783, -0.14396242629499503, 0.08267320638373818, -0.04707096450146282, -0.29842332271339084, 0.1573284092066325, 0.11131677616604954, 0.14750133149716982, 0.04088798912759866, 0.23440079207329012, 0.23248713706466143, -0.27113300374448507, -0.19715100074475805, -0.16330237484322524, -0.07206769831652504, -0.1025685686384007, -0.2716111993306886, 0.044257070141226554, 0.004121868331027242, 0.1234173387521329, -0.023505634247954807, -0.29931632892165216, -0.15478533327917265, 0.22172789292267514, 0.055950275270604616, 0.09183892756088408, -0.04606624364487215, 0.07584180484236555, -0.05404553232662464, 0.041669587721330455, 0.04350751772428834, -0.024503696300217346, 0.11946506560034446, -0.27081052254822363, -0.0931686132564788, 0.14353138950754052, 0.012190664300705884, 0.025245263144600447, 0.027703153269250397, 0.1403598411270366, 0.1298855313258683, -0.21781360040769748, -0.005757437743692847, -0.09509442253091441, -0.004088812370461388, 0.08141110602110961, -0.09936384935074688, -0.16433827753353508, 0.1972890788651231, 0.03314845567425516, 0.004196172648778498, 0.33833704385264124, 0.04882822796777069, 0.1301817654038221, -0.12535854635885224, 0.04582425387300987, 0.03504593222395059, -0.011791825504088325, -0.04443403873081845, -0.08177813985334899, 0.1348274469694965, -0.11650089363863392, 0.06701745709364088, 0.20089589829084564, 0.078003814615654, 0.036814249380472494, 0.20313864432381967, 0.19878301936132609, -0.04894420866703335, 0.1994725649164259, -0.0384062154659869, 0.09804995963021036, 0.029374448666167494, 0.014029764459342495, -0.11310392173740666, -0.0784146678364199, 0.03891938017993564, -0.21159094115870095, 0.2674612253072983, 0.04575024884362007, -0.1534889837012218, 0.04825582320501219, -0.1128963294596177, -0.21647063256250582, 0.12614928425064562, 0.11806394420821455, 0.08122397324666925, 0.23169891498456388, 0.2666641759228125, -0.03392713287237695, -0.6439395312315289, 0.24233841308967285, -0.43165968124974297, 0.6273548853739532, 0.02283664475704074, 0.17425381979548848 + ], + "LDA": 130, + + "TAU": [ + 1.1197619827777812, 1.127605196970985, 1.0654651203919774, 1.127424006170046, + 1.1435846569120123, 1.0417886894062054, 1.1027085424020582, 1.087134742410274, + 1.0926081043833527, 1.0374363134297462, 1.127938095922853, 1.0617530678008231, + 1.0605925485667482, 1.0345308379480909, 1.026745614234824, 1.0293307814975132, + 1.0414575010655827, 1.0435685315102992, 1.0872485448829645, 1.1525861773625903, + 1.0747362896420318, 1.006122739106758, 1.125287952115595, 1.2047726469830249, + 1.126336951081915, 1.2304490638192982, 1.1602125421435059, 1.0341611240909285, + 1.1281444150737507, 1.1127414020607949, 1.1360342059410655, 1.085136374483944, + 1.079855295882761, 1.0006621640165891, 1.020811881739756, 1.0729149349109575, + 1.0136559468198365, 1.0661674564879462, 1.0075127665368853, 1.0342821912979365, + 1.0375234403635405, 1.0186926783732924, 1.031688628064647, 1.1176383836381816, + 1.1348473185746035, 1.1392982343974805, 1.0709107739908224, 1.1520965563468677, + 1.2035555264621762, 1.1235016012266708, 1.166720419585611, 1.1428152753997671, + 1.0633910585131507, 1.059023234851939, 1.1233034395156647, 1.0418775545827772, + 1.1572832796379042, 1.0032913663231398, 1.240885732454607, 1.1213913716523822, + 1.0254709388213852, 1.097229313176191, 1.0545305163877696, 1.0799614547444634, + 1.062669220504155, 1.0942880164290165, 1.061453882759591, 1.050768269045017, + 1.0030450789102536, 1.0663594441914759, 1.067938914757893, 1.0202707661602062, + 1.0845845916980419, 1.0122954229143304, 1.012008096132612, 1.001509681985787, + 1.118112506361379, 1.1489662997705996, 1.05311595053667, 1.0739100452569343, + 1.2563701234368143, 1.1760498458050705, 1.0242034836926184, 1.1406031809393977, + 1.1826610757293503, 1.066143679531893, 1.13614606871777, 1.0568478366138274, + 1.025959823724627, 1.01354155360806, 1.0369100336710642, 1.1094912675000963, + 1.0719695364048833, 1.00942774115232, 1.0333292720058431, 1.0307301577006558, + 1.066955415222236, 1.0385494698921724, 1.082246008597389, 1.0827407897420982, + 1.1495067973672815, 1.1326685979541418, 1.331991728639266, 1.210212266848284, + 1.0320658836014163, 1.067013694557259, 1.0728961632855543, 1.07045445614084, + 1.2181335388322982, 1.1602151783125387, 1.1967002635243174, 1.058864034832166, + 1.2214089441795453, 1.039643046955631, 1.3259500274731282, 1.4066155775143752, + 1.1284812710280339, 1.4510729152146542, 1.2250303117902939, 1.1850449458006413, + 1.1725301607719105, 1.3703821282935842, 1.3947970852210294, 1.6114694039048294, + 1.3742540523524687, 1.2850331732364884, 1.4306435762142269, 1.3720568093184924, + 1.8121876276596807 + ], + + "WORK": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + + "LWORK": 5000, + + "A_out": [ + -0.11976198277778116, 0.056856805519143655, -0.09289109366734463, -0.10024922819479085, -0.0454814941818927, -0.12148796627301607, -0.010798385548512791, -0.1165808121698443, 0.06476010844404406, -0.08434518748462053, 0.10090754705313716, -0.036494328194719775, -0.1195745703039876, -0.011612778960175133, 0.11349566124784363, 0.06396564314087466, -0.08231773230360094, 0.10218958047466056, -0.03583485771070873, 0.11747451433602824, -0.01961015254580467, 0.07995200303315757, 0.13405666527535967, -0.028595330343554434, 0.11720411556848283, 0.09292443755146977, 0.06985523315632484, 0.126930844859753, -0.015728994976358514, 0.13738290700671224, -0.047981381681940265, 0.11370539615016008, -0.09440566779347292, 0.06884493643162179, -0.13017175108937773, 0.014760862912126138, -0.13661849750900568, 0.04958033844936156, 0.11620359306551206, -0.10314872770695899, 0.07344181046725802, -0.13445391162848241, 0.011170334095961859, 0.10128596287950867, 0.05785999905109061, 0.012711421645860718, 0.056817301305886844, 0.025548966950539837, 0.03541512722994631, 0.04515186156424761, -0.01976656014915581, 0.06070104328634317, -0.00901067755817256, -0.05825250037059815, -0.02728496123502596, 0.04584243465486111, 0.04761306123327035, 0.021657126272812355, -0.058234377943392646, -0.009866872050308773, 0.05806400674475292, 0.03711014022542239, -0.0469040305757301, -0.057922693975939736, -0.02275058087025428, -0.04976609568195131, 0.03868145101075236, -0.036519683759920596, 0.019075826561062884, -0.1550500068834492, 0.049972612017508966, 0.14808398174952742, -0.04955061101980264, -0.13871810468708717, 0.11001301483046638, -0.06589701570812273, 0.11484848581392301, -0.013305377568561365, -0.12275850576117386, -0.0677254461711756, 0.09073063346642267, 0.11790217119873195, -0.06922794158152239, -0.14483623473181134, 0.017036306731443802, -0.1268338327480023, 0.0400709818316554, 0.07756540710117885, -0.16617928511169738, 0.04984449977876664, -0.13269903298045416, -0.13787910104960088, -0.05604027871071864, -0.16547679888463815, 0.013204833444019612, 0.16244656591916318, -0.08389497112653886, -0.1230051924796183, -0.13803579226939222, 0.053660020992442894, 0.17166487694374769, -0.021975889778456832, -0.15911816921145894, 0.10146341651686891, 0.12949285281992776, 0.1514384642093559, -0.08727969421672163, -0.18744878770249673, 0.017976075250765187, 0.11271969558681147, 0.07714094566366896, 0.011042347316505616, -0.06274732112492097, 0.061113385632511646, 0.022685947436918576, 0.07425624734529475, -0.005072493585584521, -0.07538457110547558, -0.0370801115466629, -0.05799273540275867, 0.06128594383047274, 0.026602340529132622, 0.07608362166911087, 0.014095626222873386, -0.06837230967458435, -0.054423581207211025, -0.055538975395116784, 0.07148960399309226, 0.04349195791478293, 0.07703895098444183, + -0.08909848951680227, -0.12308115028211687, 0.08085515279068863, 0.01084619120845803, 0.09597728073657252, -0.12171975687529926, 0.07266965382993613, -0.021430723458555387, -0.10219200333253409, 0.11601575973329528, 0.06315209504614078, 0.02915772913361051, -0.10079657453789644, 0.11720452921698879, -0.061299337796291514, -0.03209600673115767, 0.10475900845603113, 0.11282551411620229, -0.052473657280408106, 0.03945747911403437, 0.10762976722103046, -0.08017975655728501, -0.06822076435281071, -0.13029961272877366, 0.10925089295530473, -0.01352872940515704, 0.0858608211074102, -0.1332031787347847, 0.10328093200662895, 0.004547751377496268, -0.09661379893968501, 0.13283830624292806, 0.09607906673031638, 0.0006397799491955252, 0.09631416439099376, -0.1379032247436852, -0.09442979963889715, 0.00803443967412965, 0.1067638695127413, 0.1395828216646452, -0.09254274099569357, 0.010646070921360638, -0.10996178881982695, 0.10060513631657066, 0.007622555637815745, 0.050841686875557755, -0.057204320367466394, 0.01701862860810518, -0.021899498964963977, 0.0494619318162103, -0.05319509260019494, -0.014475162245920999, 0.03237847316285938, 0.05608030183353144, -0.054528049984110254, 0.01909243592201158, 0.027723642659540502, 0.05636654629976185, 0.050246140333848666, -0.009268248937578338, -0.03896396908471993, 0.06247914030154335, -0.05519522203260033, 0.012760731769416209, -0.04046251040163406, 0.04841697258862766, -0.04498976276364562, -0.04352447863325049, 0.013898205607898778, -0.10250636980398455, -0.15794484565160252, -0.12303621174380708, -0.069619098106256, 0.05943166532392659, 0.1479206837640125, -0.1127017532976732, -0.04611774069168879, -0.04989949453703482, 0.1266739726870941, -0.10359508368727693, 0.015313242543320508, 0.07910023175351226, -0.14765429485851247, 0.1261844575988017, -0.04106876363104636, 0.055084174115779386, 0.12178231025005745, 0.0792890413062437, -0.09177277215536472, -0.16257478874338044, 0.12525619413316316, 0.008293395420800598, 0.12537555551163018, -0.16562725998022687, -0.1096004639952418, 0.017882921071894164, 0.1344941805380604, 0.16343181805539111, -0.09936463148698829, -0.02817462318533967, 0.13633050023296459, 0.16897167910433697, 0.09645261580110351, -0.03850754582831262, -0.15523590691775765, 0.17963736181733483, -0.11951082851194307, -0.01592607117616366, -0.15393717646032604, -0.11133396396686465, -0.030756208552730487, 0.07204499275930239, -0.06130924030341964, 0.004042636091068686, 0.05514756307764607, -0.0735353279666694, -0.05233438658574884, 0.006072641626708765, -0.060619943963161824, -0.07457966983161529, -0.048353879775842795, 0.009004108151426651, -0.06079599766789656, 0.07410849871425454, -0.040713461875736656, -0.02162194057186822, -0.07370336198972591, -0.08355998887579082, -0.060011887665387044, -0.03474968853177293, + 0.02348174410718808, 0.046130943565748934, -0.06722068513235838, 0.08587323122118683, 0.10100590239555796, -0.11246884482648198, 0.12005984833793293, 0.12297365063156479, 0.121274521001075, -0.11009772671681788, -0.09990542807734985, 0.08600185430085196, -0.06340579133124649, 0.04256893524102846, -0.020339727557222555, -0.002480793950625594, 0.02501883661336034, 0.04665636436899651, -0.06779511611557991, -0.08531747252602849, -0.09931886079757102, 0.08072145168597403, -0.06108787850045782, -0.08260993331636393, 0.09882425924798661, -0.10979267740983994, -0.12194196963420392, 0.13046893942493784, -0.1386621141054716, -0.13611817390889455, -0.12846144559582917, 0.10733664564211322, 0.0905538524524895, -0.07028889091658724, -0.04374981899044017, 0.017921915536305236, -0.008438017323983466, -0.03408185636688935, -0.05931002734779045, -0.08238749500106116, 0.10859167159432663, 0.12563200784396536, -0.1360595976792148, 0.10081203652799937, -0.04977083167281405, -0.056257212663014346, 0.055532938006131335, -0.046804146750019524, -0.04925766785627679, 0.05152535390395249, -0.05993227670445496, -0.056091478916498565, -0.05016922898028938, -0.03419049390553861, 0.024257861667149855, -0.013298841712186489, 0.00224190895787642, -0.008926888437224861, -0.019856500792771063, 0.027589681010633884, -0.03758338471391062, 0.04636218919909572, -0.0610831771603697, 0.06755146798746413, 0.06925823347372533, -0.0477715597960261, 0.008575123119374247, -0.0006033815297066647, 0.007737714773907994, 0.03034691597763747, 0.05975981737274744, 0.09652678727958168, 0.1517619843008308, 0.1592771674731587, 0.16047201985526596, -0.11811345781263444, -0.11137376165155942, 0.09969005002058695, -0.1028487027115725, 0.08648535619872791, -0.06692414013458295, 0.03383965959681709, -0.004109764030997671, -0.024516070248062877, 0.06285622190937157, 0.08574925426043936, 0.10267892799017155, 0.08215634423937851, 0.07110730013914743, 0.09815099552528031, -0.1151611243135766, 0.1260220014699397, 0.14413862510896466, -0.15793497809563067, -0.16989665736277612, -0.1702581521376329, -0.1644723794399064, -0.1441542890800677, 0.12677701942021344, -0.10429098807402681, 0.06924327430926001, 0.0376798115903368, 0.0051032109625596, -0.026702687726047218, -0.0602378944453744, 0.09198840278801028, -0.14503330822540603, 0.17152028641693684, 0.1867412931544722, 0.11244113152978769, -0.045420041411431945, 0.056201138068325676, -0.058180157414390477, -0.055406990345399594, -0.06333637574425872, 0.07037118364466895, 0.07893367427823401, 0.07844043924733964, -0.07511891162560058, -0.06294263539124692, -0.054323717622341866, -0.04338702576787407, 0.03043382934220046, -0.016512845450767123, 0.002070010439671161, 0.012028666162351919, 0.027415979842031018, 0.04218159767230567, 0.07250707077259154, -0.11588399151478739, + 0.11447297049064087, 0.0845422106418856, 0.05238534753240562, -0.12264894136426444, -0.037839406845116955, -0.09448805852754832, 0.10802460753417321, -0.014426459064252344, -0.11860817888408771, 0.06853973291882436, -0.06448052983576873, 0.11643614483716527, -0.014157461879458046, -0.10587362831554752, 0.0922249657515689, 0.03686373414217807, -0.11845413451856503, -0.05124086000668437, -0.08147680131820803, -0.10875075518532698, 0.0019226664181745657, -0.08159300886857296, 0.1333968137461445, 0.05992283826451051, 0.08646302471439402, -0.12701804216340024, -0.012632986550824198, -0.11879116678899379, 0.104137766725898, -0.04628089729280055, -0.1380498077624796, 0.04579712761111933, -0.0993777718362382, 0.11919824960843352, -0.017593745950685708, 0.13358466327634577, 0.0813581534427766, -0.0731357571642036, -0.138415952332115, -0.030002925729482634, -0.1213264050165982, -0.10943892922472052, -0.04379834841301098, 0.10181424412757094, -0.06021096334847984, -0.0026590514258609007, -0.05207558116306893, 0.04183447093131903, -0.008940661924845857, 0.051018095250948234, -0.03651317431688171, 0.03227418234774471, 0.059381994112715254, 0.00032249633381610824, 0.05582433849011808, -0.04181641497776069, -0.023724755650489596, -0.0584085659807274, -0.019412755181515452, -0.04352265371282049, 0.0586712264933809, -0.00046068510073247115, -0.06450621942520324, 0.038978474168167423, -0.03877763941015226, 0.04768409333764537, 0.035987723639197104, 0.04297275676677399, 0.0012100871978350896, 0.1396488326396012, 0.11728935231919961, -0.06898900668541755, -0.15534564260603115, -0.005453235493047262, 0.14586370779135374, -0.08044502749356089, 0.054325599551331434, -0.12167166268892239, 0.0564723586737122, 0.08713238508060374, -0.12122190665131512, -0.014774964604809183, 0.1455432291473962, -0.09304770156986222, -0.08155541726278696, -0.11907172017722058, -0.0020537806479740545, 0.08626226473480875, 0.1648800262684631, 0.07367304877223362, 0.1035914285456421, -0.16171446133495584, -0.026588372498688465, -0.14282056343377766, -0.13513312775302927, 0.04500178088151701, 0.16928773340664846, 0.07221168992634994, 0.11207199036281648, -0.15400636482231467, -0.015481468370089069, -0.16471566366887624, -0.10400433969747482, 0.0890378017680376, 0.18270097107404631, -0.054425620420703695, -0.163587974404128, 0.13305026649269813, -0.08735674954583915, -0.11620478256635887, 0.07671557164872923, -0.019954723442132845, -0.05400263638939009, -0.07016981221219841, -0.00977028666581461, -0.06481732951273443, -0.06013948207539709, 0.024295292851530245, -0.07846564835983391, -0.027481623516261485, 0.055276031670028106, 0.0674689284736357, 0.00831473210197501, -0.07314317498483087, 0.043716684539353665, 0.04432104641427753, 0.08474044920050781, 0.025698548928583597, -0.08108406897232026, 0.029510583702821273, + 0.10021827572414953, -0.11719906730548865, -0.03722493412668466, 0.073145607805419, -0.12277501385975542, -0.06968209172124622, 0.04207486020166014, -0.11841191983674138, 0.09455260773438087, -0.004669300838992965, 0.09911837098451177, 0.1116664103828007, 0.038565617306405564, -0.0701000847189217, -0.11990399992430155, -0.0682103462379086, 0.03962961140604127, -0.11408656546258295, -0.09321250679234971, -0.002594085471815553, 0.09726231262547244, 0.08323953357704804, -0.08123143194523325, 0.1340428089530558, 0.07328562941331906, -0.05119097852505743, 0.1290519758495142, 0.09969309764098822, -0.016756924046499824, 0.12165277224624119, -0.12357671248684207, -0.03159182067144824, -0.08660225711088052, -0.13362447533599256, 0.07703565092756558, -0.04841641827751041, 0.13294026481214535, -0.10561841371367743, -0.014610801477509148, 0.12213513032441473, 0.13047949297272174, -0.04125983899771235, 0.0856727206053866, 0.10424031716682888, -0.0139459230774257, 0.058302043178297853, 0.04664472580258074, -0.005203638554402824, 0.04347930062867167, 0.04852346215462313, 0.0052147152037352144, 0.046048681832746526, -0.05824802065809597, 0.03375120043930724, -0.020917361937385137, -0.058136626471116254, -0.045027761433704794, -0.004009970905813625, 0.0500167385210066, 0.05587362359585893, 0.0065836342689214195, -0.046914507007277215, -0.06501560706412016, -0.03827052066410675, -0.024339377974801252, -0.04838867719526045, -0.04644114896449419, 0.036912155764448354, -0.0050395637258673995, 0.1375372610912989, -0.1447026571523793, 0.04653646420036383, 0.07699804131366643, -0.15992221089107422, 0.10561743634850713, -0.012922438860857931, 0.10697020553473666, 0.11052082089004031, 0.004067952951675578, -0.10226343589693256, -0.12709139049835, -0.06462615118449787, 0.07542589930086586, 0.148033746275509, 0.09557228924836791, 0.001571253641567241, -0.10520942831474935, 0.09323180411476496, 0.09879234129935595, -0.16679902095593707, -0.0940351118487801, 0.06528363633366589, -0.16145409546548448, -0.1248129282244512, -0.02070326633366576, 0.15048634259212681, -0.1476005523227519, 0.026983486418833635, -0.11583765694143025, -0.16836513715073656, -0.10601804227166192, -0.04563256612345655, 0.15927445387008554, -0.14313524729769522, -0.019872613974570567, -0.16331103466026453, -0.17636230642596773, -0.09586792683139458, -0.06422412807374378, 0.12646357053878426, -0.03192384838454029, -0.07528549434224409, -0.05034884151843444, -0.025395756942600923, 0.06993621246965383, 0.059316920861863236, 0.004424583439831289, -0.06718161141472341, -0.06977196919988761, 0.019043026763460518, 0.04715704531591171, -0.07748246534844794, -0.05030016077797682, 0.014608837180076304, 0.06815199515995854, 0.07288131417027131, 0.003008936035056798, -0.07473550535712345, 0.08774164991325309, 0.058955183757909, + -0.00617663956286687, 0.012385342141965936, 0.018740398831163393, 0.025098637995651544, -0.03149188602573115, -0.037790020487592016, -0.0435623771291813, 0.048784071026301445, -0.053278843709924216, -0.0603038257718386, 0.06543295510323192, 0.07107482546405595, 0.08125273598403582, 0.08579765316172114, 0.09040557661960924, 0.09392783940977484, 0.09750140846054269, -0.09941841879342628, -0.10124054226093641, 0.105005443487833, -0.10849359467792323, -0.08447143034047945, -0.04326194871380359, 0.04869943719371772, 0.05288292167226088, 0.06028991058178038, -0.06879785266329724, -0.07765869822407219, -0.08102175987203007, 0.08376257047014352, -0.08537251340190177, -0.09452140508685415, 0.09968678238709085, 0.10595557287931807, -0.11850822630818204, -0.12446466653993504, 0.129962360360606, -0.13401222953996736, 0.13224846687755545, -0.12869135600170623, -0.12703506378690663, 0.13470720051812687, 0.14097333540591012, 0.11063262312538936, 0.04360252797482346, -0.043069931423069786, -0.03673080912432519, -0.03754587690273003, 0.042921114668427816, 0.05134135235467348, 0.04800043391453613, -0.04638125614853458, 0.04475358987905311, -0.053490375722654276, -0.056105456036714546, -0.05791170092555135, -0.05786841814621762, 0.059830746656934615, -0.06219691067847126, -0.06692107957698776, -0.06235882122868002, -0.05896870225593798, -0.05775371962558961, -0.06484641994804784, 0.0683585414152992, 0.053354069653317064, 0.014723763041504204, -0.01021947213827963, -0.0038066071589958695, -0.010755782477316811, 0.02198600756312275, -0.03998840335380543, 0.0398499622179958, -0.0419241129918631, 0.04283450255802165, 0.05985189316060488, -0.06626886973579546, -0.0712816370486799, -0.06663151558944133, -0.07644477655714291, -0.08925305209124115, -0.11186682065754182, -0.10622785805097516, -0.10095352224225644, -0.09819424610020244, 0.11588272998490025, -0.12547454544697098, 0.10487481622855169, -0.05126300375396607, 0.05543565799150261, 0.05790285956292077, 0.0680699378770735, -0.0835690317574099, -0.10043872805578212, 0.10896665680705575, -0.11087848472579326, 0.1061639201089738, -0.10662939562423379, -0.10627303042529856, -0.11215225266494712, -0.13730827528158332, 0.16205161566088735, -0.19284970972489285, 0.2259298567369218, -0.2117143886740781, -0.17165396840662392, -0.12394129283585925, -0.11986632902367098, 0.1341916711426844, -0.13465764092939042, -0.03420628968062802, -0.03447258165507018, -0.031499217615090634, 0.0345475592428995, -0.043432066510283224, -0.05496884932697892, 0.05837030214337467, -0.05726874216934473, -0.05185465721553926, 0.05094853425517328, -0.049547606292989356, 0.05194706455750071, 0.060309792797196615, 0.0749125567572032, 0.09629959824882847, 0.1293875617841423, -0.12214866432581158, 0.08753291038987968, -0.038799607914886555, -0.015524711013098439, + -0.10689278092081624, 0.10692882079675106, 0.00033070660498429535, -0.105913135481153, 0.1062090818589766, -0.00021110359068284013, -0.10609007648069696, 0.10463779480553391, 0.0028563042106867177, 0.10887921751118257, -0.1015713980022456, 0.007302821051211708, 0.10842768664452296, 0.0935981855015171, -0.014778929951509444, -0.10851906882404558, -0.09340944271575763, -0.01671193278836061, -0.11159999353802127, 0.09568510611826547, 0.016973854541176593, 0.08361018180525251, 0.12576715545008596, -0.08908258367226624, 0.03575776269728148, 0.1336947345845113, -0.09683254700013258, 0.03784428418565076, 0.12882108731599992, -0.09166904652662007, -0.038023767700951706, -0.13515488040294898, 0.08960959043857013, -0.04544918779527297, 0.1368520932665362, 0.08340659931732866, 0.05362962176060431, -0.13558645582826434, 0.0766724491538423, 0.05967302536174604, 0.14113914064815916, -0.08919463688988508, 0.055380511109057215, 0.10578897794885303, 0.049134943089390266, -0.006967126399103607, 0.03796957968813215, 0.06291936589607228, -0.02814536484726285, 0.036515004438485044, 0.05188879184316611, -0.018243678551226238, -0.03286478654327104, 0.06018526049201599, 0.019699737017340922, -0.04100036043028687, -0.05943098969340608, 0.02028637456597884, 0.03943048070281671, 0.060102896859000526, 0.011944699060111297, -0.04681528226581428, -0.06212234635923837, -0.024890789922984706, -0.040989301797521256, -0.04815029445378276, 0.04053296466105399, -0.05790364011457351, -0.009982235879493536, -0.15357509344524042, 0.14178825307072668, 0.003784299928726612, -0.10867823296987035, 0.1264436018707735, -0.01657624341012586, 0.11924911442826239, -0.10550369501640268, 0.01627553056063977, 0.12286121669759814, 0.12958081810498032, 0.009061347240003929, -0.11119932917354095, -0.09665275252205596, 0.012711941324247045, 0.12650973371830082, -0.12584705975250776, -0.012331238446872037, 0.1018012058592865, -0.14606604395034886, 0.10516348267857033, -0.03602794977839944, -0.16481549737587634, 0.13118118998915249, -0.0332362051700881, 0.15630822389609061, -0.1173923673642189, -0.044575925466535576, 0.16832917651695534, 0.11961604352056447, -0.0448759475763165, -0.17191807403604806, 0.12237106107626039, 0.04532197462739266, -0.16300085076201443, 0.08832564104424963, -0.08249455186022853, -0.18913472456424452, -0.15102967335097625, -0.030916653025500868, 0.1254208025856003, 0.0614426850434093, 0.03165996494627192, -0.025542439086670123, 0.07964396359376284, -0.05780606094912527, 0.021320696014709862, -0.07040532607280706, 0.04677026467586173, -0.026282153677114558, 0.07828477932482014, -0.0491835231657068, -0.027037447845445907, -0.0787652693006943, -0.0574781318281883, 0.01738880323573903, 0.07384749569580737, -0.03594789951653751, -0.04342949317633132, 0.09048785778315986, 0.07103847534287973, + -0.10933219246148289, -0.10072397573627585, -0.016828295795893122, 0.115556790256962, 0.08933166451888966, 0.033022163804882675, -0.11962472875809557, -0.07745728852668371, 0.04787356437570928, -0.1207362745235232, -0.06830660885935311, -0.05827278877439573, 0.1173873608942258, -0.057891604375396664, -0.063520548422297, 0.11750725452178434, -0.044060008569081065, 0.07696161174857472, -0.11736595044526232, -0.03013695636611674, 0.09083481689015144, -0.08365556298620754, -0.09211602256592213, -0.12224531434344449, 0.020398096111618035, 0.11178714069388787, 0.123939560093766, -0.0023750078085879815, -0.11794115147669335, -0.10897089214384052, 0.016941064456960437, -0.12595079207647356, -0.10669636560442029, -0.028293766487492364, -0.1304336991262553, 0.09923769797672774, -0.038439441347119366, -0.13312590423716725, -0.08767137167912854, 0.05160981876157236, -0.14282390973495865, -0.07286990448161307, -0.0796057336480558, 0.10448227010299399, 0.009067879315022405, 0.050217488887809594, -0.03452923164295701, -0.03618120093856374, -0.0632122831542914, 0.022073496015484972, 0.03280985900927162, 0.05088831067242798, 0.014210731899538271, -0.04304480811092166, 0.05912770768268048, -0.011451290857117862, -0.048452217041754855, -0.05443568796022082, -0.001570395101880724, -0.0508785737947475, 0.055702490217594824, -0.0012152652658927445, -0.06032396550685533, 0.047580567927072145, -0.01918339346147805, 0.04639524896567076, -0.05946788218880359, -0.0367882324426252, -0.018430950337166244, -0.14694837101236474, -0.1434753493574918, 0.026571152105930005, 0.1379851983233046, 0.07062760834610476, -0.06878334629258513, 0.1283722917489272, 0.08394165360965494, 0.051795879934220475, -0.14421608267631036, 0.05635793814836776, 0.09430898609258255, -0.12095225105252586, 0.04178012983410326, 0.07787051234676844, -0.13971567486632425, -0.036320619056761476, 0.11693261102595313, 0.10189271384511732, -0.10376153478407854, -0.1414462185857734, 0.024895625243205897, 0.14113446471868954, 0.15382850781244886, -0.00038147008887643883, 0.1473547029736459, 0.13627967363575916, -0.019563785924608633, -0.1577771397204805, 0.13238999797192502, 0.038959027165175096, -0.16511753157772247, -0.122852592730024, 0.0519410058683496, 0.16110360621040165, 0.11605755700234473, 0.048775671429328434, -0.1933575198811942, 0.09476113610040912, -0.12827183330774833, -0.12163944591438881, -0.03015404902448148, 0.06002325656831474, -0.022612694345271175, 0.061311982499516436, 0.07609451856606349, -0.00809410965133497, 0.06136258895748164, 0.06392974507391493, 0.0010479849158310213, 0.0680259103438107, 0.06585779534341982, -0.009301508914361805, 0.07438027155109297, -0.05733528072125969, -0.022650077936908552, 0.07144172758894261, 0.05729476017065206, -0.013646236918911878, -0.09116357213468947, 0.014898391474881978, + -0.0112520904643006, -0.022424339676424532, 0.03347670244619799, -0.0442576983112834, -0.05448027547704617, 0.06426146999772434, -0.07363207006516347, -0.08221657304614928, -0.09002609222192226, 0.09347588496576707, 0.10031204189868369, -0.10634252681741295, 0.10442373281276321, -0.10864445021722877, 0.11208873212805359, -0.11591228549459837, 0.11769995311024614, 0.11833543833497422, -0.12022995623371875, -0.11979959063031671, -0.11755543765710534, 0.08407811386352194, -0.027201443246650844, -0.015548966740276345, 0.0037613133310390448, 0.00895606458574664, 0.021529946423464567, -0.03417643248130895, 0.047366720109796825, 0.05845534178379557, 0.0689478453511321, -0.07451943483447637, -0.08489801169200274, 0.09453126361117561, 0.0981636467835744, -0.10637935490412122, -0.11386355319849113, -0.11830205888041508, -0.12373543738533734, -0.12831473999192108, 0.1400238938603425, 0.14518654897104172, -0.1464266782155379, 0.10429268062545843, -0.03948928948174997, -0.035979377174707707, 0.02956991918202853, -0.017646638520898424, -0.012085653480908575, 0.0064899262303871625, -0.002531626491904805, 0.002248364798473468, 0.0069109234274289215, 0.010734160137558253, -0.0162700280045358, 0.021638472148771983, -0.02757287384534838, -0.03239797953151838, -0.037053980972811894, 0.03741341287254441, -0.04133298672381759, 0.0452456376206051, -0.055873194371994124, 0.06084421098077535, 0.06320631128711446, -0.04546075904386411, 0.022073670282638732, 0.026909005930311713, -0.025993107102494938, -0.023701322224369242, -0.03940972793747626, -0.06069216791412339, -0.09553649787142275, -0.10308683452048344, -0.10929828962451323, 0.0899265428120992, 0.0988942012823056, -0.10640662145041306, 0.13349304321433225, -0.13846050854380046, 0.14271303816114178, -0.11898624500006205, 0.11780904655257395, -0.11787054100689687, 0.14494501836967574, 0.15208032938998417, 0.15023734950173426, 0.10383466892618598, 0.03817143892099717, 0.02475777249859111, -0.010763171378402686, -0.006002001692322036, -0.02180289634564636, 0.03763690955587239, 0.053566469978339984, 0.06754695772305143, 0.08097611430141516, 0.09007622293245923, -0.10345665958431638, 0.11592857278893072, -0.11803741695870204, -0.12885319434038706, -0.13868799830606615, -0.13542928628543618, -0.1425910104263841, 0.14991470828337433, -0.18884753398621054, 0.20271327445255719, 0.20767511015252094, 0.12139423130980512, -0.030055127614251446, 0.02497109743817356, -0.017849147571998056, -0.006795545086329286, 0.0006826296969377555, -0.008375024356136178, -0.015846119058653213, -0.022210519644885053, 0.028370375477613532, 0.03238237172563756, 0.03898992614762259, 0.045220885847853325, -0.050739889119926475, 0.05603182548375264, -0.060973929337706886, 0.05588313937442083, 0.05932512551765778, 0.06344491614279091, 0.08802304148323485, -0.12851458010289935, + 0.09717313161408583, 0.11945682863670448, -0.04952758709170014, -0.057929635596952266, -0.1206875221437021, 0.09052102650923775, 0.008801573990768486, 0.10143753840631267, 0.11603730695204147, -0.03596243226834718, 0.06961949315579763, -0.12176871860532257, 0.07202854967204148, 0.028940829523485735, -0.10717373645162773, 0.10420060099283973, -0.020465232676541358, 0.07920820145669942, -0.12017694279671608, -0.06713713204189668, 0.03882795215429198, -0.08481977814805701, 0.12110150306755547, 0.10899859282540623, -0.012989848446091107, -0.10029037692519475, -0.13688355794499307, 0.06841823539497158, 0.04708339258575659, 0.12690409739199154, 0.10900863621654155, 0.0019032739386877634, 0.10974338447910192, -0.13295905100398261, -0.04650178679823779, -0.0735684274167566, -0.13676317839928998, -0.09276214414121352, 0.021580957388786355, 0.11904840667801264, -0.13292770370092408, -0.04127724272283595, -0.08583653323395352, 0.10490401067046429, -0.05078778659415366, -0.019412202531446585, -0.02364950726860892, 0.05836481313112284, 0.055650722431455295, -0.009429856167295145, -0.03659246960488681, -0.05159872103044036, -0.026851393219365128, 0.025331696878933864, -0.06000158145683187, 0.048477779246703975, -0.001052102050964168, 0.04704483661182773, 0.05909737570927036, -0.020703451749622275, -0.0340304841939043, 0.06174110031902978, -0.049170254475251605, -0.0009699814365113418, -0.05312379985593755, 0.04505957053111517, 0.036328104384978924, 0.05990985238445518, -0.032238803889762566, 0.11796909778391745, 0.17027178042901023, 0.0941261149308004, 0.0036412735880485356, -0.10557231650513886, -0.1313377381082767, 0.018686944618884142, -0.09122785832309437, 0.13139780725490335, -0.09364511622090439, -0.02983788366322465, 0.1316821555941512, -0.10590530553165123, 0.01701682175346223, 0.08095990991632553, -0.14304347835122277, -0.07713006205111149, 0.05821612095828195, 0.1072401837282036, 0.14285704962698872, 0.11899214516962944, -0.003644390097945432, -0.13367910643365344, -0.16881935421678687, 0.07406564193569967, -0.07014574951499099, -0.1613103100258161, -0.13001882795469208, 0.010479087432299555, -0.14257364326436664, 0.16376308716705215, -0.04229000290127091, 0.10755918055560122, 0.1727663429758246, 0.09263205702610776, -0.0502088068927064, 0.15511099160722497, -0.175124552813706, 0.04339300497899011, -0.13978405563970148, -0.12381542813638151, 0.060462152149271, -0.036881212336875344, -0.012672739334757863, -0.06932738302898502, -0.07661633253374762, 0.024680075361986208, -0.03875658515933275, -0.07257803562137889, 0.05149004045145108, -0.01547992132988816, -0.07071534226179861, -0.0705605113619892, 0.013913956764880423, 0.053486393261154466, -0.07865994424831846, 0.03178466699041274, -0.03274667034296905, -0.07322396887999921, -0.0800046558036851, -0.01830721625813786, + 0.11625782462333822, -0.07759658032902876, 0.06445837667690724, 0.11983831022729657, -0.015371958022686538, 0.10950696551487661, 0.08690614602593869, 0.05251018305354017, -0.12116727705300528, -0.03326179352557957, -0.09942791828900749, -0.10008827117913932, 0.025859306724332475, 0.11632812961994207, 0.0513899901858709, -0.0831624529223592, -0.10635318554820383, -0.013764159296886794, -0.11717458232279435, 0.06553210403862003, 0.07465484374578416, 0.0861105819800541, -0.10204598071282081, 0.10865720802382078, -0.028895023346827593, -0.13719363827508943, 0.06134090091927831, -0.09750362032790263, -0.11777575031207276, -0.01954547840292846, 0.13012261995930693, 0.07793110040684383, 0.08073888979143357, 0.13260363975831505, -0.015283008500568181, 0.12371259016329791, -0.09691673898407435, -0.05853187278736983, 0.13503069070278612, -0.02993404810737876, 0.12156033835929454, -0.11350193563851951, 0.0487273463732906, 0.1066191052099136, -0.01422072799498748, 0.05247397575189243, 0.01701030811478125, -0.055429580194083845, 0.04727225339632748, -0.02476650501472327, -0.05241271927701125, 0.014022868864828855, 0.042154899627030444, -0.052514838861896875, 0.012876549149834868, 0.0612456570431739, 0.025861092395000108, 0.04300696487083276, -0.05484193551414334, 0.002210468416869392, 0.05923255389100002, 0.03720822762502233, -0.04026943236795489, -0.06170088360033959, -0.002094428132184837, -0.04528714643409941, -0.06020847485479716, 0.024226456222529683, -0.03630888127581433, 0.16695308391149694, -0.07974291674120865, -0.12573651921614892, 0.09118175717235041, 0.06697724177982027, -0.1305673728911082, -0.05938036035921676, -0.09182562100848762, -0.12011451007535984, 0.03231721300144816, 0.14460621280728822, 0.0674433237180862, -0.0823177716960572, -0.10900952169807994, 0.008635541583944719, 0.1333997980679836, -0.09528988949782256, -0.0819016178314109, 0.1130459107921474, 0.10891498310443272, -0.13354695591039936, 0.016171587340714392, 0.16842048208414226, -0.09667295800205934, 0.10406949259795588, -0.1543577759761723, -0.00710569698694052, 0.1588337621302294, -0.10778371999541284, 0.08906684333722985, 0.17186053182976563, 0.049236491922331, 0.13896680262743782, -0.1441422518189847, -0.033551344493993634, 0.1627284430113794, 0.06063369422496014, -0.15232995138872363, -0.181091068111167, -0.01998822645695382, 0.13069124976563606, -0.031036603565344916, -0.0595304471120969, -0.008232621383625346, -0.07547112738661427, 0.05574063165599261, -0.0383265697769176, 0.07083198543949952, -0.006252740047554832, 0.06678240934397661, -0.05788148203819651, -0.029707717360259796, 0.08000141755352548, 0.029747247081078516, -0.0579974599119207, -0.07157144525580288, -0.001263297051218804, -0.07001609375204157, 0.036455618543260515, 0.06719145223707611, 0.08054312764964305, + 0.028455609824321014, -0.05558884195969108, -0.08049701490337882, -0.10129067897414223, 0.11699039188496169, 0.1263202507290874, 0.12744111654726908, -0.12038433878322227, 0.10537718569881933, 0.08961416852548076, -0.06660617150352821, -0.040556413318652895, -0.01526222446842632, 0.012092718045072934, 0.03869767407685275, 0.06292831816881214, 0.08380363124486487, -0.09898815020080186, -0.10912140310680662, 0.11560090207356628, -0.11582062249338085, -0.08314225642914802, -0.006501922456830957, -0.02522755988257601, -0.05423846267748073, -0.08531826050400203, 0.11270604654474366, 0.1349429772977932, 0.14062102726043985, -0.13797511247430452, 0.12641643309327577, 0.11908447529571099, -0.10088525493479429, -0.0784817099192573, 0.056864038962711985, 0.029054844937797877, 0.00025208486187468715, -0.029254588383345402, 0.05578280379376728, -0.07860643665074303, -0.09957974594536988, 0.12143718435816275, 0.13615267498508143, 0.10800330904940886, 0.03375882639285832, -0.02262622077674213, -0.00853878113405201, 0.009206598919564709, -0.024246319973757327, -0.04037033898369158, -0.04419295229688355, 0.04790262965683907, -0.04905312957012272, 0.05908726594656174, 0.059311857827143225, 0.055615689733693525, 0.04724097002084884, -0.038099295948687044, 0.027174224712667967, 0.016428809182530146, 0.0018529155414557298, -0.012447372842428861, -0.028095488672844903, -0.04417841855079884, 0.05616537450529598, 0.04827984234213793, 0.028288265506327164, -0.037668165230024246, -0.03304391019032316, 0.06665024022358569, -0.11026440377478551, 0.17931288425404557, -0.16186360148571302, 0.14222381011986004, -0.11242354826379608, -0.11446158821935158, 0.09346155185384075, 0.06538752468846243, 0.023946545509074164, -0.01254528270640095, -0.049339223066494665, -0.08720544591969161, -0.10002863525112429, -0.10739457456855173, -0.11326602181036644, 0.13553601798432385, -0.1414279430825688, 0.10921745209527775, -0.011235168746990425, -0.030342144372107853, -0.06700601619392585, -0.11425962309616398, 0.1618020630772735, 0.20367285606202185, -0.21815567433042568, 0.2082641670627889, -0.17534004084157684, 0.1410198438406862, 0.09848224487903413, 0.056124715221085614, 0.02016211887287835, 0.016515768940728284, -0.05261410673136267, 0.08555242960406495, -0.0965384907791462, -0.09080202534615574, -0.07843363878018585, -0.0871882010147157, 0.10567125615317403, -0.10689384239224808, -0.0114497434999754, 0.006274273518785882, 0.02089308208593955, -0.044824958357721295, 0.0701468778358883, 0.09631860365246071, -0.10302930612923511, 0.09660334508486418, 0.07803560083290421, -0.061591828254942624, 0.041577150105047984, -0.02232476309388559, -0.004367023930152392, 0.013310443334784065, 0.03143461230993897, 0.05124036725474432, -0.05245219859693474, 0.03929724901708299, -0.01803119210590948, -0.007394843487459912, + -0.08550856141740876, 0.12368777803875441, 0.09396517714150578, 0.01234758674784223, 0.07632045139520116, 0.12214385306202634, 0.09835062441985158, -0.01860171894592678, -0.0716525714146843, -0.12605426393674343, 0.10589598322139543, 0.027151583360750617, -0.06424550838481981, -0.11589187580610946, -0.10287357243521685, -0.031074495554514907, 0.05739833489103574, -0.11318784760837682, -0.10580639541044885, 0.04208193370452769, 0.04600519450812813, 0.08090727698528404, 0.11342097152713176, -0.12849082100879888, -0.07033963832320556, 0.028698395475386756, -0.10830493284857011, -0.12823911273007638, -0.06905688659173378, -0.030465585983147116, 0.11230234544013755, 0.142147386308573, -0.08642102676572434, 0.017012434869425688, -0.1113325820872033, -0.13753848273342248, 0.08662056402152613, 0.012457509975959846, -0.10511509018757662, 0.13769194230489565, 0.09388968271942416, -0.008428983185271717, 0.08432262728705696, 0.09630259650045102, 0.035560961725089484, -0.01290378324410028, 0.015560794992899231, 0.048173541200724396, -0.05384870317571988, -0.03167640950359034, 0.01092494671252206, -0.05155453486184525, 0.06288837602817662, -0.052769178764507096, -0.008417155965097574, 0.04096632260600633, 0.0663589200953387, -0.05697885929319619, 0.015961403033464217, -0.03128844826459821, -0.05901375271889992, -0.05434243436661356, -0.018138367349894022, 0.02014605370131334, -0.04806459533195073, -0.03648420273170938, 0.05112295861224274, -0.0868833379027066, -0.05294364623614148, -0.04616698263627485, 0.08311137554143468, -0.09118913120443262, 0.021821320564938705, 0.06987192543496198, -0.11849935111334212, -0.14490301094562064, 0.06727225603700888, -0.050009969388056026, -0.13540662869667536, -0.17205390945153412, -0.11805546367685946, -0.019020503781082304, 0.10380932907363707, 0.16487127762100218, 0.1358644107022287, -0.0694973821471079, -0.04704429465767927, 0.1027669245608646, -0.1451715092012467, 0.16929338285802062, 0.09784321964324906, -0.03310850721436402, 0.13665084757343274, 0.16599264247044007, -0.09187534059140233, -0.03973087902008626, 0.14716093152799212, -0.18191454005020424, -0.11265627210539708, 0.014728791019091586, 0.13700945491416455, -0.18030602976391497, 0.12909136543105437, -0.01312003141659584, -0.11422841553194583, -0.16503501419935293, -0.11936275394847845, -0.05045546336971291, -0.047992193394497534, 0.09004946725999241, 0.05648964394193224, 0.061730226803422196, 0.02996652300369216, 0.02850622424744047, -0.06500571919572172, -0.06866867395278718, 0.02720371644820102, 0.03329356032770431, 0.07290599998418688, -0.0793882713171863, 0.04015073933690071, 0.019417380316836534, 0.07031340991665141, 0.08813279836496804, 0.06371013954321864, 0.014524887566664927, 0.046154050466309465, -0.07131462968293084, 0.052025818832331726, 0.028416047407056326, + -0.1208565556349078, -0.046829710037769555, -0.10311103764976513, 0.0865384247807908, -0.06992363799697691, 0.11369384948802494, 0.024794373802239467, 0.12353967829930187, 0.023902933208224855, 0.11669796745744934, 0.07349492473130449, 0.08875737809927238, -0.10142982950740854, -0.0429103380665111, 0.11757188955227339, -0.004124865632008408, -0.1151234305169003, -0.04963517618825638, -0.09692375489144942, -0.08456823366198504, 0.06515303378525694, -0.08083780510285342, -0.1167198065249057, -0.08100687405146503, -0.08271953588644541, 0.11661327081783943, -0.03238650155379107, 0.1304321157983976, -0.024822244871218955, 0.12406723403335626, 0.07345685087961858, 0.10344405556079495, 0.11847162824764843, 0.05828374709226192, 0.13701060807157106, -0.002471056039732949, 0.13555454744370146, 0.05403301137343583, -0.11440794940847646, -0.0990139962952272, -0.0775064778921552, -0.11815269532101257, -0.03394576797931422, 0.09435476802881573, 0.0035896755464080686, 0.039275765461876395, -0.011455418384311912, -0.050702164353187494, -0.031795084139018985, -0.041072890439374454, 0.05042810215533245, -0.030457309743200267, -0.061133770295612476, 0.019243714584413648, -0.06801138018436972, 0.007422327468705564, 0.06520010464344764, 0.03057892520601277, -0.05372059216255927, 0.045604063537972306, 0.03314636166849214, -0.05725782097473253, -0.009139518532736842, 0.051818038851263855, 0.011131320306937097, 0.034292937042592384, -0.09063712666085048, -0.02129826051470555, -0.06398031832424746, -0.08163844957096432, -0.01470638246464153, 0.08858741820657885, 0.07024702583047085, -0.08911814785275789, -0.10261892166007183, -0.08761057896933985, -0.1456802052128578, -0.030864139826516916, 0.1676963241487032, -0.004501775813057264, -0.16824706244238619, 0.0407203269707233, 0.1554480264339199, -0.09997183535991092, -0.12696475370137916, -0.10775581593399004, 0.09366776082161944, 0.10245157364170582, -0.15066103184726168, -0.10188552719549515, -0.10471150489924974, 0.15483426353310503, -0.03399579727698201, 0.1687655785131955, 0.03961766365984047, -0.15600276659479037, -0.10404772244578295, 0.12491290591685564, -0.15644895853670382, -0.06887078065483561, 0.17617592115286745, 0.008733013244715626, -0.17117000702410848, -0.06370774596063013, 0.1397461104088402, -0.12513719106897803, -0.09576065966295429, 0.12504921102315922, -0.06550363565691224, -0.08745186698252423, -0.05297793969980387, 0.041590095112194365, 0.03207059970918663, 0.06935083356528017, 0.0024153114181206764, 0.07033622653462614, 0.03468543450592934, -0.06045937306983141, 0.0598815163707842, -0.04462438179967896, -0.07874007892844129, 0.01695885166753425, -0.08481056532185621, 0.012693278983998513, 0.08000881372308954, -0.03081039687341103, 0.060191682574616386, 0.05976404953790372, -0.03828281470084912, 0.036177443335543825, + -0.045089589960234856, -0.0839682615343183, 0.11138861247468239, -0.12346619599014726, -0.11784160090873695, 0.09594568290289485, -0.06108760765719244, -0.017594416961401772, 0.028293457968269858, -0.06961176022765815, -0.10408611238310349, 0.12420540006476141, -0.1188023088166484, 0.1048132843691344, -0.07652227867846009, 0.03838019526539548, 0.005120427029923543, 0.0480039036803657, -0.08574076572443319, -0.10999597373307946, -0.11846273700853273, 0.0811935343647689, 0.01154901185657427, 0.05853669280321189, -0.09505540719032554, 0.11783822942601618, 0.1294206015055985, -0.12383283573561896, 0.10598656427367689, 0.06860078596023764, 0.02180855669495869, 0.030541400292639555, 0.08008795223502603, -0.11859723117139852, -0.13396935305395435, 0.1381317563081483, 0.12339004087434396, 0.0896723862473061, 0.04463164694069886, -0.006367613981018632, 0.059335420528772886, 0.09893244122783303, -0.12390599010554139, 0.09378948604788524, -0.0316637922976131, -0.02064445038439048, 0.006501183525087116, 0.01472271458664847, 0.03338890296503072, -0.04930442218088314, 0.06479981132710583, 0.06093316761613439, 0.04864242086619851, 0.02097397069723953, 0.0041274517449850934, -0.02876817346857285, 0.05048237265790295, 0.06354750520861255, 0.06797020652728154, -0.05614270297228441, 0.04148174614177894, -0.021861300389401938, 6.005437382341529E-05, 0.01875898478699626, 0.035285543541635774, -0.032973472593009846, 0.04465015379355178, 0.06984868885139038, -0.0703327943840603, -0.05054421352672096, -0.07150456551517874, -0.09063241328112435, -0.12286391904228613, -0.10175290112195215, -0.06738440585068763, 0.0027627929529627764, -0.05490623793862118, 0.1051243080025892, -0.16192412187423563, 0.17010645296998472, -0.15487714385376294, 0.09136354569778819, -0.029370553143201125, -0.0336448272078088, 0.11008866124098533, 0.14721798817992904, 0.15879605849918868, 0.10437844500526886, -0.011990476871396162, -0.07276412449783172, 0.11645997769216052, -0.14511708462760914, -0.16579346280654955, 0.16443361004009233, 0.14553509888337898, 0.10154635293340829, 0.043663685276069855, -0.02432812671759718, 0.08987910205266507, -0.14322872034587403, 0.16485001001889255, 0.1766112676447622, 0.16390287014369234, 0.11616685226388909, 0.06202649400010603, -0.0004989525487407165, -0.07200008708974696, 0.1175613099272908, 0.14524383738925895, 0.08733981231696035, -0.0017106952588871972, -0.021199691212367488, 0.03649044915859948, 0.049799612067345594, 0.06456466654848697, -0.07179260354541118, -0.07369367475933672, -0.0594587516091295, 0.03717358323025362, 0.005571332402593814, -0.025808750102123388, -0.05381944389892291, 0.07384534189264805, -0.08362451409890734, 0.0817309964492048, -0.05648319141845879, -0.03311427346138982, -0.006431739786873342, 0.02685184829681659, -0.06794492304349864, + 0.07213253678258, 0.11699332998320645, -0.11766737989836476, 0.0741393821013811, 0.0020830870567005617, 0.0706668303403096, -0.11671284197935412, -0.1184582163482357, -0.07542474116361475, 6.366498033477143E-06, -0.07485584374177251, 0.12156588362883193, -0.11403153013728774, 0.07078977664267186, -0.0011086730736193625, -0.06923403769554845, 0.11235931067862807, 0.11300857402290014, -0.07248364568833793, -0.004751445047513276, 0.06555322060099272, -0.08185031773786683, 0.10431810262239372, 0.13088475258166762, -0.10558990848398167, 0.03419023054242257, -0.04539348027454155, 0.1086944518245759, -0.13370050385262855, -0.10307240002097029, -0.03361926458826437, -0.052541820080422234, -0.12132815833665503, 0.1441254908480939, 0.10444070419988742, -0.030755872677213334, 0.054233919474572206, 0.11712552045208315, 0.1383120351608025, 0.10750198420301647, -0.039398350830876755, 0.04032473454469507, -0.10617736975214445, 0.0939723664493637, -0.03704509566484991, -0.021623119625397216, -0.0012960145134905926, 0.03217228980959936, 0.05273257210356507, -0.05512860991073898, 0.04659301006203619, 0.011134063471995997, -0.027824333102732038, -0.05382757233503311, 0.06824614934663586, -0.056693179736827685, 0.02544543566847937, -0.016109049401289592, -0.051825917986715396, 0.06182173951482463, -0.05491177830976574, 0.028033007660450058, 0.00923051740065388, -0.03743582990086417, -0.051535860394643536, 0.03207075404728854, 0.04383346679966402, 0.08129934496796165, -0.07301918414545826, 0.019958002786308035, 0.06352872704587419, 0.09167096875750357, 0.11175141816261042, 0.054708449100398175, -0.020651602488208354, 0.09214712295978013, 0.14977567425680355, -0.15028770747123274, 0.12085155329609694, -0.02782493579287929, -0.07708732014033644, 0.13307907894611137, -0.17023689747699894, 0.14553108777880225, -0.0877485165761647, -0.0019953064618119572, 0.09163973793972598, 0.10776270503994281, 0.13801049430384296, 0.16776627209342937, -0.1269401589560012, 0.021738336885686882, -0.07991486506398791, 0.15207126363783458, 0.16977358231368955, 0.11878525784965739, 0.023464884298461334, -0.08496895854723838, 0.1650786406534643, -0.18200359743226213, 0.1135029897443162, 0.011406954636963326, -0.09399564550784721, -0.15283751073632082, -0.16904523855067868, 0.12475715413862691, -0.045018024913208575, -0.044399425474732454, -0.12296248223574266, -0.08906962221785653, 0.05450469023955441, -0.0612508681990104, 0.040413302444117026, -0.009862845273379042, -0.048846775453606064, 0.07079158701518892, 0.07019061177519777, 0.037558747989546774, 0.008914713053577125, 0.05354087476113435, 0.08178386488846456, 0.07837669003654614, -0.04381212127393541, -0.007463518869926388, 0.055676185398167134, -0.07251212687576741, -0.0744135855610545, -0.05125487348013168, -0.014211189556228339, -0.044529140351578046, + 0.12303634186372782, -0.013848267732601185, 0.1217835936540637, 0.02717862774185128, 0.11896404239156548, 0.04007014512425559, -0.11450901656743846, 0.05212097021660164, 0.10899874795867474, 0.06963660843232858, 0.10313019419613825, 0.08173516264900926, -0.0879369919951217, -0.08606419718982208, 0.07802038372043058, 0.0940772456695094, -0.06664972862875278, 0.10110512626138835, -0.05743875468018536, 0.10624829615750866, 0.046099481656942914, 0.08292606018924972, -0.12288835513282753, 0.05307219846996933, -0.1138098166897259, -0.07439983489169498, -0.10191411501244986, -0.0863162370566036, 0.09395730665657794, -0.10013626987738108, -0.08321549576390011, -0.11810677198189933, -0.07563005686284911, -0.12741291352974612, -0.05383378311968319, -0.1307913882367727, -0.03957499973445644, 0.13396012752729444, 0.029252285378086183, -0.13654111705520175, 0.018110138780411372, -0.1308532925068547, 0.003594919909701219, 0.09498087398950704, -0.007490534501738983, 0.03910794500435377, -0.003882163291096235, -0.05513981362916845, -0.0002264242839417046, -0.05829425479130605, 0.004954654923223297, -0.06448582476320314, 0.002229720999864159, 0.06780034781899112, -0.00038981975543268214, -0.06818175763643422, -0.0049264486939946455, -0.0672296385727078, 0.01256444475949704, -0.062191260377998187, -0.012638542514833973, 0.05931319158313778, 0.01806545712500825, -0.047392588876283094, 0.02379494837129883, -0.03155322307001501, -0.09060680334338858, -0.00012599400304742076, -0.07161215215876977, 0.0750665909968409, 0.027837996382475486, -0.09209266370913968, -0.04246888417690553, 0.12009426930566461, 0.029463337559666056, 0.14775764021773025, 0.043645480695979635, 0.15364318157742538, -0.052774755904299725, -0.1653629815393891, 0.03205704642161982, 0.16288997442389586, -0.05541509867990754, -0.16199679493136682, 0.06085612571629585, -0.14594084000268334, -0.05164567148975842, 0.11311552464933344, 0.15405434621035755, -0.07965187210340088, 0.13497277846756367, 0.12003916988777372, 0.10999814799707357, 0.13337464258719942, 0.09828983796253493, -0.14500708525960082, -0.08687422570284886, 0.1635346142096865, -0.07338096908639123, -0.17563497146659718, 0.03172677387493554, -0.17608919994789796, -0.0085865560505143, 0.17000016198852894, 0.015606073218512612, 0.169516357303126, -0.015210316792922684, -0.15009604872490803, 0.01605718593170852, 0.09348649831756442, -0.05352348575214268, -0.03578411078699164, 0.04314292671084965, -0.062097704631876825, -0.028985724712307464, -0.06762487010458854, -0.025895453378415676, 0.07366414432908543, -0.020619017139366428, 0.08143720756361564, 0.015285484172234059, -0.08477176464185458, 0.000534117162501512, 0.08458745509772803, 0.012758869597879266, -0.07710901916338403, 0.0026921868501983623, 0.07601799618489696, 0.00023346794177079265, 0.04965238575712376, + 0.06082110164652573, -0.10622435837650337, -0.12530538698453458, -0.11226148800296928, 0.07029026106961397, 0.010047897292161559, -0.05272764207100686, 0.10131798992081749, -0.12230407415052386, -0.11740697120991161, 0.07863773719758799, 0.019912659868488943, -0.04214668997082001, -0.09080896823676368, -0.11590680956116443, -0.10969718597804548, -0.0754562080628275, 0.020429632144300672, -0.04084531712764447, 0.09122796297826895, -0.1182499570177305, -0.08657762027960014, 0.025524696915427053, -0.0844946364098142, -0.11863747692009083, -0.1297848718247325, 0.11005398088140751, 0.061943754111701665, -0.004515962653113078, 0.07122647153090036, -0.11843664269334253, -0.14600885306452668, 0.1294882797127066, 0.08071446044729877, -0.016260864806041584, 0.05351738977797544, -0.10906657820589817, 0.13507020098822498, -0.12061650089951415, 0.07355712831083361, 0.0055476944060577965, 0.0591754797814668, 0.10966329222141595, 0.09843201432012974, 0.02946277382974727, -0.011996445175656706, 0.008038182887697646, 0.03519896301907618, -0.05254030452479066, -0.059939777653675, -0.03952610109317249, 0.008685025808025028, 0.02377668319316906, -0.05736206911999204, -0.0683373173918527, -0.06075360702613472, -0.0354510610896639, 0.0023211673340397115, 0.031603312372198135, 0.057496024015377935, 0.06154008071760384, 0.05072400362465121, 0.0265161852188734, 0.0028663527057040603, 0.023022888810640175, 0.031408379166158316, 0.0523403205171239, -0.07978388857613014, -0.06306519928250147, 0.06894066715324305, -0.08827493798101939, 0.1044750717485123, -0.0574482717074729, -0.008979048728329022, 0.07056558288813543, 0.14625761121894074, -0.1552947888867096, -0.12098043413069046, -0.03676268492209609, 0.04696782135141078, 0.12124818197882398, 0.17538340321124032, 0.14023499041665088, 0.07098534051053869, -0.028863515045243128, 0.10831826092399742, -0.15718799210675524, 0.12843817526276594, 0.01636282119678993, -0.09209266687109713, -0.13804372031283804, -0.16951899428883632, 0.16980008933151483, 0.12851038576090196, -0.04692251874331503, -0.05095476625629938, 0.13284519043570386, -0.18906759761207442, -0.19421945533414597, -0.15969744625095297, -0.11005443813094656, 0.03192935230136146, 0.05246439547771723, -0.12122326099454342, 0.1347306840629086, 0.09794282017394337, 0.025421994950835407, -0.035678573942772254, 0.09869304657726627, -0.11526163632119213, -0.004632700473115512, 0.02356237109343071, 0.04060365203274889, -0.06072584947522413, 0.07249272736029541, 0.06926687363918146, -0.04062214381728489, -0.002923047759259078, -0.045376249341453415, 0.08207689794929027, -0.09591919267822996, 0.0919389451282849, 0.07405063945963791, 0.04430180973845148, 0.0070222894769947355, -0.02919134583288148, 0.04868169959095746, -0.04509399530217057, 0.02419742633601468, 0.011035324146942884, + -0.057312778933611086, 0.10188399013141951, 0.12439684844440907, 0.11885915905502933, -0.08641179503479894, -0.034164465303769265, 0.026106728457199788, -0.08019265833709971, 0.11489564871729575, 0.1290648366529551, -0.10987088400612635, -0.0663707137746318, -0.012516221765009865, 0.04549176083839201, 0.09293654448437222, 0.11827572143275118, 0.11681375337013138, -0.08691404275627845, -0.03643881716043708, -0.02052824746620061, 0.073375137430692, 0.08214443838018702, 0.09600329915839192, -0.13434921185040155, -0.13883098908393512, -0.11849844645070672, 0.07492563477202807, 0.014097587204673283, -0.04897351375249966, 0.10189926404034448, -0.1302432994632645, -0.1405908206172983, 0.11311515149491383, 0.06094909969529538, 0.001065963220779339, 0.06297963156974594, -0.1101768936780527, 0.1310039358251038, -0.11661641264614764, 0.07431936191938482, 0.013527277886428136, 0.045458145257740265, 0.09519864176652333, 0.09188037399979367, 0.059020781411395926, -0.06819636499577672, -0.05329941721375351, -0.03172235899684278, 0.01107500548999115, -0.012682354559028166, -0.028304203891360274, 0.039989036440905366, -0.04242248412282262, 0.04480143501349776, 0.032220924638062594, 0.011801614981810107, -0.011781894121019501, 0.033014710117652564, -0.04705742858351966, -0.052075678695610084, -0.03789259423080999, -0.016121293614439466, 0.011301806664871456, 0.03411356116455515, -0.04833711935646321, -0.03825044225430189, 0.010835501360528145, -0.03292689180426525, -0.03533769092780291, 0.07931956939238657, -0.11884763928269201, 0.16050771682434486, -0.10522035303072975, 0.022710687010316147, 0.06250729942061815, 0.16623106213637348, -0.19753063739278554, -0.18000923588435555, -0.09506122734613834, -0.011034213483196137, 0.07625661735838878, 0.1505010985195721, 0.15512462789325931, 0.12506064853340698, 0.06131277997538668, -0.00936820346432505, -0.04973771330918573, 0.07378365404833621, -0.1100131433645276, 0.1671547642543892, 0.18028336205629122, 0.1730821462245025, -0.14301886088431556, -0.08227923105822281, -0.0004191607043992181, 0.08445680176512636, -0.14456766070171279, 0.18042733625205676, 0.17332554729411884, 0.1362006330559938, 0.090479961476192, -0.024252196322056063, -0.04590953384087218, 0.10392135225227468, -0.11770947913261826, -0.09109179630081782, -0.03583556116905077, 0.00889431759393833, -0.057424853796707094, 0.07603760579379945, 0.05164969252769755, 0.07556197272124533, 0.07417861834937037, -0.06824483123964456, 0.060570383688022894, 0.04183325259338644, -0.010498904010021678, -0.02549042106647322, -0.05377770174668917, 0.0758693877613435, -0.07940940747520656, 0.07063063291108963, 0.05340555688269074, 0.029345271502331186, 0.0012464501118614828, -0.025535187735498545, 0.03851934781845588, -0.03440785502279102, 0.017994149031410774, 0.008069469396086349, + -0.12275355487360776, 0.02177951567518374, -0.11916886504152177, -0.042473172556154994, -0.11186073120700667, -0.061808964882012145, 0.10122331508606786, -0.07902111451416555, -0.08786356166395919, -0.0993141990282312, -0.07356297050888805, -0.1129289080493192, 0.04587865226211975, 0.11871842596864278, -0.024910604399505595, -0.12322539357178894, 0.00265680065625434, -0.1239481406285237, -0.01802777125212552, -0.11806603663804417, 0.03918677824295695, -0.0819791228846574, -0.14040706050319118, -0.011046373092675978, -0.13840130756715713, -0.01909920551576333, -0.12956149398929925, -0.04199013631675554, 0.12062175857264999, -0.06602521803568195, -0.10906330198737801, -0.09531350443828182, -0.09610631027098718, -0.11317189382879113, -0.06924655268271927, -0.12184431793365959, -0.0480210520677453, 0.1291252369572741, 0.02982624739819217, -0.1337027827118555, 0.009932182950626908, -0.12750660409187992, -0.012744938045635283, 0.0903168732674435, 0.06248206658251297, 0.02456079254501032, 0.05912697096663777, -0.010643755471234565, 0.049083589950582804, -0.0014168385804578234, -0.04326470567953505, 0.010901373104003933, 0.04051764571514847, -0.026906944380739817, 0.03754438016193164, 0.033399361004804624, -0.03294981512383892, 0.04012884385359432, 0.026002299429108273, 0.04468852822340294, -0.025022259526871145, -0.04809594410252033, 0.020939913205310686, 0.047153764177540664, 0.014350697448301603, 0.0359410297229391, -0.0493832468708882, 0.022188182389448377, -0.037201670791272665, 0.11670518302097264, 0.006209582193606988, -0.13631710259104715, -0.028860039352573294, 0.1691872285677572, 0.0009448722205831518, 0.1910277771598931, 0.010791422200565788, 0.19464732294789733, -0.00797901255980512, -0.19266871217358117, -0.029566387823741738, 0.17072490210973965, 0.0214049398873416, -0.16045348483411606, -0.04106121884816647, -0.11664145238058879, 0.06336256757620183, 0.07500452659806889, -0.18380900590829005, 0.005069563783797195, -0.171237163726225, -0.05295120630145883, -0.14660433781218987, -0.07976698050111984, -0.13138979743586734, 0.10195996841914375, 0.11687237435950305, -0.13172197517362386, 0.09711215328756469, 0.15330178838031805, -0.050777690101796766, 0.15866026980998396, 0.019378085839835954, -0.1562129687216495, -0.01611083660925866, -0.1568513258072888, 0.0044465163715510635, 0.13623209184749768, -0.0344218319037062, -0.07818172607474286, -0.08289682095651993, 0.0012000383190810485, 0.07263890849890886, -0.02429191883502036, -0.05474865641415628, -0.03582852047285328, -0.04733857036888336, 0.04575390163496072, -0.04106358597439399, 0.058929462175137975, 0.03292698678366464, -0.06687796314529756, 0.01691920267391626, 0.07054485054786355, -0.0011028474542203748, -0.06730872053220162, -0.005545345832182939, 0.06654735436546794, 0.005136160735703553, 0.045835584626726954, + -0.0753352785698319, -0.1192558287753453, 0.11347558865549802, -0.06070881478862084, 0.017813787737459223, -0.08881338218188714, 0.12287835236136647, 0.10552961130139925, 0.04423046438944099, 0.038221371413960745, 0.10581821847790643, -0.12933504510607463, 0.09036142050911862, -0.019311648161901198, -0.05939736353770624, 0.11423869826236256, -0.12021202597329902, -0.07599477877230258, 0.0003848245111521247, -0.07387857722810358, -0.11750812377215523, 0.08229583716110082, 0.054467302843399845, 0.12338406678125399, -0.13752194613355956, 0.08923956420006898, 0.010379655620223378, 0.07352305101232404, -0.127492276739676, -0.12412419623316441, -0.06907729781636733, -0.021086709752986946, -0.10258329635053623, 0.14128556972973305, 0.11315327572780334, -0.04382988735493242, 0.04343128001163735, 0.11113937706154413, 0.1350477416778273, 0.10295301153625912, -0.030839262295421874, 0.05035714871333008, -0.11173496339053973, 0.09000320080670529, 0.007425354052119581, 0.04780098919658593, -0.062140421968967054, 0.04412465331830443, 0.02178137470380459, 0.010702670895325159, -0.03690240122051267, -0.04320946304186989, -0.03144555017734232, -0.00029013278625260785, -0.029213619959986295, 0.0465843013556769, -0.04608536343200233, -0.0249273526603573, 0.006771867102381984, -0.03372732537363596, 0.05136561925607475, -0.047777602266855124, 0.028932926351111644, 0.0007428368428235342, 0.031736380691307256, -0.03485940453020123, 0.041754048777261805, 0.052339283456747404, -0.03471947130817095, 0.05693588839737692, 0.10995967730171176, 0.1278985593278383, 0.13555165009089185, 0.041623350213488716, -0.06603421490336993, 0.14167582574386126, 0.1940048878083716, -0.1646197100384495, 0.0949018419994287, 0.027291419122051953, -0.13961563255846005, 0.163222116025682, -0.15367095523104612, 0.08409989535444473, 0.017818629643514675, 0.09143280033102912, 0.12764982636288189, 0.07736738634998391, -0.08198927842609212, -0.16514399917581377, 0.16930912094922232, -0.08987591036765208, 0.010778509567102253, -0.10746114873430512, -0.1598062525883357, -0.1420068025067849, -0.06578282552694875, 0.04395685277139007, -0.1369970771875676, 0.17243973711766578, -0.12019446018325514, -0.027426119423808824, 0.07588526081540418, 0.13799856232833718, 0.15650336880143328, -0.11308801462881232, 0.03193657823718984, 0.053808419552788096, 0.121821124554393, 0.07853068109558088, 0.03280976031063109, -0.07236776756098784, 0.0728549032541304, 0.03202327996070436, -0.007304781230259613, 0.0447155233088497, 0.06410531566065933, 0.052730923023257464, -0.019811752824169124, 0.024804590458197544, 0.06047622608041684, 0.07051618171859945, -0.04975853759054318, 0.007979703467392008, 0.037023315427457536, -0.059109522423120564, -0.0667044048486376, -0.049308087751827705, -0.01762101701585807, -0.03713547443638099, + 0.041345905424610106, 0.07793977858258663, -0.10568237103122706, 0.12125918790579646, 0.12222013468771051, -0.10907665515791705, 0.08363453329201263, 0.048290188402151865, 0.007364859857054104, 0.035211792868597144, 0.07496797169879542, -0.10615973396175667, 0.11782465758346573, -0.12379961170170271, 0.11558115930030535, -0.09524603924621575, 0.0632171273849131, 0.023712183262532313, 0.018759422652722974, 0.05802191520043537, 0.09056904130658236, -0.08292182936360108, 0.08214630404538292, 0.11626711092885955, -0.13381487426309122, 0.13290384329858485, 0.1234901354829062, -0.10033353102807636, 0.0700389009403869, 0.028019696744848437, -0.01710508188624372, 0.0600786677854599, 0.09985076932478851, -0.12805814822346878, -0.13427874200647447, 0.13229643057276774, 0.11523640591186551, 0.08307974904377306, 0.04231204090006957, -0.003151160019389365, 0.05065216343802258, 0.08772377107109729, -0.11389593272358461, 0.09042591477797447, -0.054610893255965506, -0.06552311900352191, 0.06304360839169079, -0.04469120378886508, -0.03539794284053579, 0.022388896822345097, -0.012048862446197624, 0.0027689372022080246, 0.01697160131258652, 0.027363895547179756, -0.03916115655736719, 0.04634023359657953, -0.049708024799769115, -0.045755684360980424, -0.036544749940347655, 0.01988274903029116, -0.0019586356751032053, -0.01575442599411722, 0.035675516378682805, -0.04653281754370231, -0.050764913858376844, 0.034256621443398305, 0.005568626616849041, 0.022619711840139355, -0.03020644075142856, -0.04719466207286377, -0.08195236098968225, -0.11841703176284024, -0.17150514409728113, -0.1553940715672123, -0.12191877916367726, 0.04038322809639496, -0.02539790736336653, 0.08868080297762942, -0.16025546728966283, 0.18699317640089264, -0.1925639084610013, 0.140680643448064, -0.09804413398350258, 0.04768905481392249, 0.006282243562325139, 0.048548881699395086, 0.08595752636133136, 0.08077986994040313, 0.09893676490621622, 0.14490093029912976, -0.16475431194033854, 0.1606554090186604, 0.15465505626355028, -0.13152454006176945, -0.09814087187006218, -0.049675171843593074, 0.004479118641206802, 0.059538161929730035, -0.11066215699157284, 0.14903744486319304, -0.1577721436000248, -0.16083933718811355, -0.14538035199230037, -0.10221664592366358, -0.055672578186628185, 0.0037125247761561585, 0.05724132214190848, -0.09758576849648466, -0.12574875122649354, -0.08035744056942903, 0.04925260223435711, -0.06854367624987731, 0.07149144558204, 0.06174078025280802, 0.06027900622157582, -0.052777708714772095, -0.04365806933866263, -0.025474400289196703, 0.004446745102112724, -0.018508009376283874, -0.040602139258905774, -0.05801071597115747, 0.0681193159005875, -0.07039351867248253, 0.06450241155979768, -0.04182781099834662, -0.021513158542637932, 0.0004170094701980726, 0.028620023555513373, -0.06371563529342837, + 0.12001385464807764, 0.05413270620128689, 0.09599500504372668, -0.09711368281113476, 0.052545943705303993, -0.12080978245404377, 0.00297579424712825, -0.11956980196260292, -0.05762956986570919, -0.097262855009903, -0.10485569064918238, -0.05043725184289361, 0.12337873577955019, -0.013636755506246528, -0.11659076109988954, 0.06789661312361914, 0.08552640946548401, 0.10726310569454663, 0.03669107230913037, 0.12103081521382661, 0.017590710597202967, 0.08390965537865268, -0.14212992928598248, -0.024315725623331157, -0.12745567576189992, 0.08078897388497848, -0.084544156237926, 0.12016333346726207, 0.022738950980110605, 0.132677310465171, 0.037832726626596654, 0.12113787761463794, 0.09899769265065357, 0.07722844489724656, 0.12882340002214812, 0.011989297827094719, 0.13380368944958962, 0.04743883050204542, -0.11238996691260258, -0.09874465091748307, -0.06896173042823792, -0.1193846490706242, -0.017051753385840113, 0.09159435202460452, -0.06513633260436105, 0.008310457313978522, -0.061884570420619706, 0.012034205388728007, -0.04395790977184007, 0.032936968053474805, 0.018884529931286177, 0.04234142563595221, 0.0004065386199279906, -0.04485769239156825, 0.02709923156491542, 0.03270297498359732, -0.04312974515218023, 0.014513950048761826, 0.049967530175243295, -0.004311320418061181, -0.05033505770188158, 0.026698460068678632, 0.04098156803907378, -0.03637110593189352, 0.026369571374103173, -0.03405729902318214, -0.04757499185126923, -0.032870796348252435, -0.024156347604126535, -0.114615565223296, -0.054064693702486254, 0.10770801125932843, 0.11857186380527351, -0.09421671228463968, -0.1570634136203898, -0.075630020513088, -0.1920933548980891, 0.011734972740328909, 0.19077946083361577, -0.06295107661899858, -0.16548156160031435, 0.10476212965864998, 0.104659793102138, -0.14813638277889568, -0.030098234024144237, -0.1276933988911327, -0.027360577004396893, 0.08550023013009278, 0.18380109014393345, 0.03383547339654497, 0.15801146957750972, -0.10531999412436038, 0.09529858420858055, -0.1488483927533416, 0.018633113803548162, 0.1600424226957925, 0.05745837621623644, -0.1414312704970399, 0.12621145705810194, 0.08846108041143431, -0.1568417868494827, 0.008992591323703, 0.1591993657578663, 0.052587792076461824, -0.1302337021796243, 0.11788571772635871, 0.08000289683237762, -0.12089350570164371, 0.04117483438311563, 0.0843096829388921, -0.08273941065065143, 0.00879264591629978, 0.06880608444069111, 0.04149641123281754, -0.03594042682171012, 0.05879664940272218, -0.0019980403169575257, -0.06244480141903665, 0.028022758238011255, -0.054910271854692674, -0.055478812110467526, 0.032095908301510295, -0.06867836728555096, -0.0035551835288995075, 0.06990223552007696, -0.0173191391910952, 0.057347106809636485, 0.048509048914873586, -0.038246992265528024, 0.030508554646073768, + 0.0883416193803501, -0.12373234874114501, -0.08549580935527762, 0.00379493867748483, -0.09098746983297248, -0.12296257270459458, -0.07928926599562672, -0.013138732128026616, 0.0973645739869324, 0.12792111179808174, -0.07713668612811184, 0.020017172969034047, 0.10560758693558324, 0.12049602124962339, 0.06283978232689671, -0.033787011614333416, -0.10944682709848876, 0.11757900194963866, 0.05383891740208049, 0.03982005666963313, -0.11026825662073121, -0.08596089259623131, 0.06937919495822534, -0.13734218580052715, -0.11946983450660294, -0.0319376688986097, -0.07043547398823267, -0.13122714253298864, -0.1039681515346063, 0.012573574584107669, 0.08618873520644633, 0.14183175435212078, -0.10518599110076379, -0.005759155855872002, -0.09616206735888096, -0.13490560471506471, 0.0917888128794494, 0.006622524273861096, -0.1018082220451466, 0.13414397340503179, 0.08568181993609572, 0.004102055363715771, 0.09392588696558896, 0.09438362205406223, -0.014334186232461153, 0.058095256446851956, 0.058057587797078994, 0.029972507010440432, 0.007000739585491755, 0.04206943401471075, 0.04060907294656201, -0.015986131578690124, -0.017713806340877863, 0.04641363837028002, 0.040819593751335856, 0.010011484976957462, -0.027324511782753122, 0.04899440237936202, -0.04138976856087743, -0.011671151706800591, 0.02860834968144322, 0.05125421793924329, 0.04444871595399547, 0.019361366591790437, 0.020034624489897564, 0.03445060342592045, 0.0446139149989803, -0.049984160143125816, -0.016650714970482847, -0.08938446147614516, 0.12265340987025189, -0.103559624089223, -0.0006066492569200138, 0.12132118801537031, -0.16319796349925467, -0.16308584114654348, 0.04150268537285625, -0.10713902599631697, -0.17917663504794598, -0.17949162562575252, -0.0763725339872181, 0.0547824678344192, 0.1476481458997784, 0.14923833228852623, 0.05222570286251039, 0.0447686870171546, -0.11880481329884299, 0.09399431287645908, 0.09033656592909071, -0.17790467867090015, -0.15335332236937918, -0.04199705371900029, -0.08077793360447096, -0.15626488081664403, 0.1255250519487498, -0.011821312619572567, -0.10964600167932882, 0.17313122747329235, 0.12943944794028928, 0.013275269835995043, -0.10955493790505104, 0.16387954404029248, -0.1246081204843156, 0.016904331722590635, 0.10568368806874798, 0.15273539611176679, 0.10251690512207019, 0.02930179222752178, 0.06592232107036201, -0.09555441889488528, 0.03402404859208854, 0.07730176996452785, 0.06646573444641239, -0.01653213371936684, -0.030710482199578656, -0.061814771974866414, 0.04710010643982636, 3.614132003914184E-06, 0.04696195349173232, -0.07143758820989447, 0.05116455124935014, -0.002944841138495551, 0.046964530438241746, 0.07252377375110301, 0.059886930056638886, 0.02078928605584093, 0.036127650658480066, -0.06354475761607525, 0.04925323685659275, 0.027752043252786022, + -0.024551493337420235, 0.04830551424689565, 0.07080417851833869, 0.09066692100004382, -0.10723911917136603, -0.11946560288656813, -0.1255795413301343, 0.12538831580359044, -0.1186508201733503, -0.11285285727083927, 0.09940317842677807, 0.08289269665830026, 0.06876592424952406, 0.04709921376570275, 0.023822384783839346, -0.000727276574162542, -0.02506780518299211, 0.04809604292559433, 0.06960057881270346, -0.08943881115126612, 0.1058479111775865, 0.08908774724950268, 0.06359263893752257, -0.08522641952931923, -0.10120435467853311, -0.11992803443070714, 0.13617424139300038, 0.14795437536973072, 0.1439778247790385, -0.13327193445880509, 0.11583926390885098, 0.10377282370794984, -0.0837758844297869, -0.06144344569842687, 0.04061330693086107, 0.015911652045444646, 0.009354537091544986, -0.0339237714311942, 0.055999760504260324, -0.07514940076616354, -0.09349550075472197, 0.11403408307211069, 0.12946953218455065, 0.10506084403818955, 0.046615663319690435, -0.04961117476713799, -0.04387425200405062, -0.04534678930888801, 0.050535220794926936, 0.057244092008043826, 0.04915715693252619, -0.04056004165434195, 0.03058727652912955, -0.025938755283684646, -0.017842784928439763, -0.008775024964762372, 0.0009485961376903237, -0.010634266681061374, 0.02004797710601701, 0.02913391828269167, 0.03346630450975876, 0.037017291369394516, 0.0410042708625311, 0.04875875452669246, -0.05211712859120994, -0.03975619882260283, -0.0023190085849073222, -0.00973929143853288, -0.016263373798954914, 0.061704033675495026, -0.10864567264515809, 0.18301269545190793, -0.17035591298463668, 0.15872445705845653, -0.1375526554203616, -0.1593776228162752, 0.14941435225406494, 0.1304478310383534, 0.08785996724116207, 0.061935820106143014, 0.035614578904990445, 0.013972480851857347, -0.01366587213988004, -0.039721763319010873, -0.0698578018764201, 0.1058878678247789, -0.13213497142607147, 0.11861226560729779, -0.07629621782738666, 0.09780912464850187, 0.11192249060657995, 0.13779210173778364, -0.1687752566316678, -0.19612661306178797, 0.20027150351702422, -0.1846339676565514, 0.15111614713532256, -0.1183808634028397, -0.08043969686055823, -0.0437589239509823, -0.012668157485047734, -0.018606469516606442, 0.04958951748271535, -0.07838943452656233, 0.08812496245148452, 0.08378935593828839, 0.07484123038185833, 0.08666767249726129, -0.10979226103480953, 0.11468953193059031, 0.03678007470412056, 0.04404034281278161, 0.04481736438785122, -0.05407297913614565, 0.06955304828978727, 0.0866134518949491, -0.08789994895988322, 0.07897651870623287, 0.061218504404566346, -0.04584682528314165, 0.02851485410022816, -0.012069816107372943, 0.003526684993866565, 0.019303694803140134, 0.036041484149307294, 0.05540066319794473, -0.05542573472048989, 0.04101692466757717, -0.018642117196526427, -0.00759400872824554, + -0.11487207630577893, 0.08367900256168381, -0.05386419877696617, -0.12213084912824353, 0.034957106681917226, -0.09670495378259901, -0.10392706810805763, -0.022203619896791284, 0.11967770660836959, 0.07020992581764982, 0.07052161981096819, 0.12210945721913913, 0.026203044917157192, -0.1058025840957462, -0.102640015397499, 0.032838883109289646, 0.12571984849768944, -0.056975083200038266, 0.08647001240904988, -0.11937693052162054, -0.0003424809398256544, -0.08861443334777622, -0.13263441996939698, 0.057637657645774346, -0.08823573036515457, -0.13178762447850606, 0.008974998727155618, -0.1264811183143259, -0.09183619106273268, -0.06121323180749875, 0.13526637190394958, 0.047584930058442804, 0.10133487735559407, 0.12220195187011, 0.005245592324402098, 0.1261164575607063, -0.08571267024840475, -0.06314916111166917, 0.13047140167775528, -0.03025993543352283, 0.11463545433882583, -0.1157695343478617, 0.0329822661001038, 0.10178905275913966, 0.04794605923392314, 0.005601329515780387, 0.04640038680993623, 0.04192267967849878, 0.00965100623964568, 0.05181811966623408, 0.01683575836576399, 0.04215389975829717, -0.046783734285225115, -2.6814192889532042E-05, -0.04421996777602796, -0.031737561203938655, 0.022387510748500837, -0.048582055011594204, 0.01300215629250355, -0.03654325696976672, -0.03626619288485748, 0.009391728239328141, 0.047124612891430225, 0.029266155809828314, 0.02879547938047948, 0.036652221112892076, -0.04906562148009051, 0.04912657987280163, -0.013571356807584912, 0.19347878576788394, -0.11556780100484307, -0.11816065184845764, 0.12250761459563578, 0.023441549798206104, -0.1344857642939391, -0.12145889045060167, -0.06126460227668451, -0.16647852684980838, -0.0337329373569396, 0.1315842933747119, 0.13350650940919576, -0.010589910455187874, -0.14935399106403968, -0.09527671827748835, 0.10494449917657085, -0.1632414971473114, 0.0033915055288657545, 0.11775403954073643, -0.1521741820528692, 0.06200790338199938, -0.0990773489712996, -0.15945946550251308, 0.025135315013816086, -0.141755431041862, 0.1162995365688427, 0.06284014813140094, -0.15935312751706204, 0.06057449864250419, -0.11599924354873445, -0.1504322771002128, -0.014219095023150177, -0.13903404493164015, 0.1180311021495913, 0.04472790736900587, -0.14452368295138093, -0.047543296670127855, 0.1360904402444646, 0.1642184078504263, 0.005067606622195317, -0.11029193638730529, -0.05970427163262285, -0.01750744539405224, 0.04083283524418183, -0.06711830008721209, 0.014826807968344749, -0.057602959405156556, 0.04709340113882145, 0.026655815497983276, 0.06488782637992528, -0.025938618077803646, -0.0461209160716501, 0.06237859409166407, 0.00405110262041846, -0.05896419452431862, -0.050340674043174716, 0.013386983277957632, -0.05575363306741031, 0.018046110662544922, 0.05899222810236322, 0.06433738673973204, + -0.09957980207832627, -0.11724438685043571, 0.03828683170904285, 0.07150238450918234, 0.12236358907721984, -0.07269028203327199, -0.036190935944094636, -0.11541802799755091, -0.09992932006019051, -0.0026451086811052045, -0.10240341357945094, 0.11801189138666446, -0.029082194873656805, -0.08258322032565718, 0.1259971706221372, -0.06722227184658403, -0.046696516670148736, -0.12252829941240179, 0.09986358863198738, -0.004923995553233966, -0.10675412956879278, 0.08871487668865657, 0.07870765928955369, 0.13251774750787157, -0.07572128494584209, -0.05175248379396704, -0.13409908843956192, 0.10695898854851277, 0.0015401558507313132, 0.11108330794688884, 0.129214135793082, -0.031149016717021024, 0.08870096756239486, -0.13566435126119955, -0.06355521175570311, -0.05764398647649892, -0.13119982802799388, -0.09507311871950763, 0.017973629092631997, 0.11598307374887859, -0.12642750933182736, -0.030263802260231502, -0.09431302517898234, 0.10079375446825203, 0.0045217183175045176, 0.04576945847419223, -0.0452698689800201, -0.0055140920263112075, -0.043404527747554426, 0.04726112574483323, -0.02206460268478915, 0.027612212147924742, 0.05378053439428137, 0.02677295010995559, 0.015593099140496763, -0.04531523882049557, 0.039315586629422625, -0.0001946187845453663, -0.03979131054991552, 0.042118903693110374, -0.013623041958346951, -0.025221172732450545, 0.04909550991925286, -0.028037359124378946, 0.018420088980675996, -0.035281039458620315, 0.055405074182882104, 0.051165043032709565, -0.006188392109547949, 0.15113817190524473, 0.19632077620068186, 0.07930994691358752, -0.04026051637160408, -0.13219025573435422, -0.11453071897572806, -0.03542392325539729, -0.15219977467686224, 0.14411417862123177, -0.0412286953617077, -0.09939710409196657, 0.1590628833823973, -0.06084246354928622, -0.08344518280407934, 0.15593424235873546, -0.13007427416672823, 0.0025336677994087916, 0.14374954609365134, 0.11779634011181477, -0.0813320957194265, -0.1503833337942468, 0.09011868206169284, 0.06506702454913986, 0.15908379693669145, -0.12268471425118598, 0.006585081379566873, 0.1325805930452389, 0.15117031700262623, 0.036512028831547694, 0.10570100768403717, -0.1605472841714703, 0.06720827682514026, -0.075772810754312, -0.1548041908905111, -0.09500828479028658, 0.03362058693513491, -0.13493939337781724, 0.15622073429037867, -0.033716745249356105, 0.1327145576904027, 0.10785487708471529, 0.024691571711704385, -0.05786807690855399, 0.03878004937011061, -0.02963067065315008, -0.06686154351903227, 0.04967937399967497, -0.0010427193498982607, -0.053219203370220985, 0.06234636814941928, 0.014323713694259037, -0.04356746496246825, -0.06530943747036609, 0.03137046813637888, 0.028782071028501784, -0.06459630880847715, 0.03722720019641696, -0.01306876756493487, -0.05276403528625589, -0.06785133508600286, -0.009925222965301699, + 0.007265682944153619, 0.014515320697176842, -0.021758544846003213, 0.028930961659976714, 0.035879787190594384, -0.042712505818645885, 0.04947881491107552, 0.05595796709612936, 0.062180670887459925, -0.06570764587616482, -0.07192743809753556, 0.07792723426870274, -0.07846685396012731, 0.0840194684821674, -0.08936911835476076, 0.09546745649387527, -0.10033021677973357, -0.10470624511444213, 0.1107745936418161, 0.11515087044211152, 0.11839931626222785, -0.08919138322623134, 0.048426285532197286, 0.055577021169586495, -0.06115867325518505, 0.06530581627980113, 0.07241754521037738, -0.07979834561574131, 0.08949720960007528, 0.09532797865135019, 0.1006958150319385, -0.09915581184200072, -0.10463694326074317, 0.10968299890497205, 0.10833948469686384, -0.11256643639863743, -0.11658337161801532, -0.11807979702995113, -0.12111307992718784, -0.12390569972682416, 0.1341347908218755, 0.1387952561777426, -0.14037957716488925, 0.10077003346583682, -0.04312915325793119, -0.04478627385076256, 0.042397639425893356, -0.03493466823066888, -0.03715398947658203, 0.04055177242318583, -0.049840443365207425, -0.050814028006006234, -0.05148327436342583, -0.044047609887734845, 0.04512796174572261, -0.04589196888220244, 0.04803002354475157, 0.048499569767810606, 0.04891166090355655, -0.044121704368950174, 0.043448605146557656, -0.04309071837859847, 0.048925441593693345, -0.05051049214535914, -0.05003488818340083, 0.03448114644802598, -0.009174161617213383, -0.005629070878354958, 0.0018578265937758656, -0.010212313425070504, -0.022225128234899964, -0.03799115809454009, -0.061801965622244076, -0.06846722073040855, -0.07451077272597414, 0.06374166755734163, 0.07306954851132003, -0.08170347975291381, 0.105867943020238, -0.11294221875789467, 0.12003426829414099, -0.10392196053391016, 0.10838786517944074, -0.11429470715177556, 0.14803911944240689, 0.16091275514078385, 0.16551243747445968, 0.11984936110781884, 0.06759275374588901, 0.07528385538906332, -0.07847969241303457, 0.07899539266182992, 0.08726245574277748, -0.09582014738755223, -0.10633565020787417, -0.11312068225038392, -0.11952218411273613, -0.11971555249990601, 0.12625881049813306, -0.13222367242517644, 0.12697897870638425, 0.13180582437708335, 0.13633781685559582, 0.12885559140720043, 0.13184535264856923, -0.13563189619417018, 0.1682640322532834, -0.17965745427456845, -0.18401466183000295, -0.10816887984808277, 0.03409141014662987, -0.03671525527026781, 0.035229011162739826, 0.03124394256389168, 0.03480399221077429, -0.03904352134526689, -0.045316161699569694, -0.04793164409902085, 0.05036856578662124, 0.04882063252913318, 0.05154723069720891, 0.05396042670301887, -0.05577427446503828, 0.057631222555899614, -0.05942926972701066, 0.051883023013442144, 0.052541986625669265, 0.05407796748005708, 0.07281192181443248, -0.10477122889432211, + 0.10743113257519231, 0.10511868266156957, 0.004841945800087318, -0.10917349852313615, -0.10171343613033253, -0.009425689643924635, 0.11066165460213923, 0.09909598946864936, -0.013283645070898627, 0.11279497603586396, 0.10146384888335666, 0.013922101765118936, -0.11325577684351265, 0.10497421430670704, 0.010103917355045997, -0.11538403422152443, 0.1016965739207078, -0.015657191227281805, 0.11899949946438064, 0.09843024306218667, -0.02383666368510481, 0.09001680146639258, -0.13035613462588405, -0.08517378098663249, -0.04538723205849704, 0.13535753406024767, 0.09062263334992719, 0.04717482337290217, -0.13541922567495407, -0.08184750974282912, 0.05473127524061466, -0.13389865063071474, -0.08493747741782133, -0.05141879780455798, -0.13169935512044387, 0.08480866702142388, -0.04817524315913093, -0.13038835516748082, -0.0826658258232572, 0.04881125542949894, -0.1377263377094989, -0.07886136464126042, -0.06429267661623726, 0.10152468410765113, -0.0500887768912687, -0.007413439652588585, -0.03816551904887863, 0.049449225071346865, 0.02015062312289591, 0.03181633322484342, -0.05253743055292644, -0.011487541284995066, 0.0403866758987067, 0.04590148760770107, -0.013176403543467231, -0.0331885772641265, 0.04689985720156428, 0.01125514107495593, -0.03614143462189988, 0.042295552573947244, -0.00915855161085965, -0.03242047452819139, 0.04678020271944216, -0.010654802602586813, 0.038816001847347056, -0.0340815839954428, -0.04578194060691418, -0.05598554648106342, 0.009796586961000841, -0.16364977716018433, -0.18121696071221347, -0.0037360179626919027, 0.13188713486497206, 0.10897711700145575, -0.021900203823810218, 0.13966262275078042, 0.1468161081271171, -0.0034414567950646372, -0.1474264419515931, 0.12104702260699335, 0.03102429716887538, -0.13732789837818085, 0.1375296737239824, -0.0018982018225775187, -0.15872764450430749, -0.12258831440755032, 0.04920017069899867, 0.12362698435289374, 0.15072121743783862, 0.08218728020337132, 0.06576829973146012, -0.16122314959854495, -0.09933553640982618, -0.06446537000847834, -0.1598054822614965, -0.09076117294758, 0.0696053876290807, 0.1592274181963638, -0.09322355634965238, -0.07061319501339046, 0.1557629758078573, 0.09140619899921783, -0.0659803856660022, -0.1463556937119795, -0.09455015094588437, -0.049514176453245025, 0.17209044833541326, -0.08873001722659205, 0.10475476541442086, 0.11091747678378944, -0.05913669236646112, 0.02384696150232052, 0.031018217495012282, 0.06691781892175173, 0.04195350050133302, 0.027090544165733234, 0.06563946010472298, 0.03463999572390174, 0.03092181043892989, 0.06487038546495706, 0.03710463215995298, -0.029936812122912486, 0.06557350858163312, -0.03272047448155345, -0.03405458148932899, 0.058530574566797514, 0.03486386072849983, -0.021264553267782968, -0.07372219648116, 0.007472309734190833, + 0.10882489436065082, -0.10266579427916193, 0.011754948544445205, 0.1130327062342192, -0.09478949534955274, 0.024053215598497837, 0.11681904176028506, -0.0847579992431581, -0.037956211665595055, -0.12336778321173297, 0.07361319398986699, -0.05413234892521862, -0.1271617005236851, -0.05659453916086568, 0.07343281902879782, 0.12506319971502916, 0.04460079968688854, 0.08391998374114215, 0.12432350950979547, -0.035583943569119446, -0.09206154153042669, -0.09153040879704617, 0.09067391109790984, -0.12846855715108144, -0.029500359030771424, 0.10710095158417915, -0.12721771178364813, -0.012187678007446311, 0.11281516530320615, -0.12019925995366476, -0.0007669568258363898, -0.12365275401750865, 0.10843701516641022, -0.021130864939491213, 0.12877861205890487, 0.092863323367406, 0.04147153083833323, -0.13060530208628582, 0.0767399044120847, 0.05898296344508439, 0.13700716387478581, -0.07797416422116153, 0.06688922713730015, 0.10348962890921934, -0.0098570993254301, 0.05097469783421636, 0.032604244151470396, -0.026789315009965526, 0.04992318293636752, 0.02186569840637274, -0.028983824353577034, 0.054480411477271326, -0.02228673098714517, -0.031522971071352615, -0.04586142781323467, -0.011083953155376268, 0.03599709647583835, -0.04603086855701918, 0.00737268315312197, -0.03690804667134593, -0.03860700923617906, -0.0001952814840080158, 0.042517499149879415, 0.04254933758443794, 0.005259822627260861, 0.034181314264305616, 0.05730432942117557, -0.0419038541948535, 0.01674725753574918, -0.18755629121043896, 0.1509597475876035, 0.04169377504989396, -0.1338834112839595, 0.10504098263991649, 0.034113843103484524, 0.1638590764251291, -0.0845985122779592, 0.08673367818686525, 0.1569265422624765, 0.09225654316502292, -0.06926779213865691, -0.15874735862544473, -0.04004242397912125, 0.11572576435120806, 0.16053406011457194, -0.07086808449726875, -0.10759392876843507, 0.13056356169266636, 0.08749999224037902, -0.15103798448386277, -0.05462670752887125, 0.11446646848637622, -0.15697320810925489, -0.034397825571060116, -0.12122586193361402, 0.14549350011838147, -0.009122569167993186, -0.14078114526942315, -0.1380884350784715, 0.005729538730555272, 0.14519862520777546, -0.12681928172419718, -0.021574976072585753, 0.14208321765879509, -0.0872759032150335, 0.06746344572519627, 0.16802829278454576, 0.1298180520062144, 0.040560616931253915, -0.11849033974995114, 0.025583645409399457, 0.059235287444429296, 0.02732727420720352, 0.04721563746067592, -0.06583840290229429, -0.016546678032736725, -0.0468396712772449, 0.060675263226664215, 0.0068879059820574975, 0.056460040955666604, -0.05765712326780003, 0.0006888961870447257, -0.057186170568119477, -0.05865153126314349, -0.0019492694911821522, 0.05361992326712731, -0.037550693151767026, -0.024203114632117488, 0.07123690226309076, 0.05934330214897891, + 0.010165550142640405, -0.020340024398362612, -0.030666815538284414, -0.040867493120100504, 0.050948855101747875, 0.060657549701399804, 0.06926345837207104, -0.0766960011471554, 0.08265790470853772, 0.09217461351679684, -0.09840567533147093, -0.10497641452399419, -0.11781187575367667, -0.12195584490887242, -0.12567705856574277, -0.12733716355762287, -0.1285448097607032, 0.12700892074692152, 0.12473431446802416, -0.12441064483986297, 0.12316978454096647, 0.09165157233370735, 0.029970673460185837, -0.01845921708409367, -0.006770491424113321, 0.005364616076858768, -0.01709622178637147, -0.028931870752297383, -0.03834020153924995, 0.04746026841266381, -0.05570753775833206, -0.06878966561703494, 0.0785752778620028, 0.08891366755809327, -0.10411080750386514, -0.11307767180256004, 0.12112917600178429, -0.12728709685436915, 0.1274006044128742, -0.12523480788183375, -0.12441904825829808, 0.1321646515776975, 0.1379642717554341, 0.10759819881767053, 0.03833420034757249, -0.03354739409417019, -0.02456708373377866, -0.018445579175424, 0.015730897372956965, 0.013795484131967994, 0.0091397622620864, -0.00442114325161816, -0.00022740296767993122, 0.005216897180825492, 0.00935894566421952, 0.013344470773208307, 0.016863263942452356, -0.020881180835291953, 0.024970476750381627, 0.02977170567629646, 0.03046682196607933, 0.03153602669157179, 0.03392522198504046, 0.04062955098407825, -0.04504129336551898, -0.03651939811015772, -0.01635017396331912, 0.019442930052788954, 0.016393611761675787, -0.032588684541217806, 0.05536437766974124, -0.09407264084166711, 0.09065498592417157, -0.09137318950713287, 0.08930550722145206, 0.11989584181719175, -0.1290930583899428, -0.13496901958536775, -0.1218363626873129, -0.13473905298156635, -0.1522716839522355, -0.18619002834405454, -0.17196922804112427, -0.15781080953263402, -0.14578790598483027, 0.1650722774266787, -0.1716240619192313, 0.13808642697541, -0.04813030317736073, 0.03258435968188177, 0.017045316196040078, 0.0010491669743616415, 0.013397700755539086, 0.02806514051466582, -0.03988911446985125, 0.04927550052325326, -0.05551006313353852, 0.06447654155851329, 0.07261361013069387, 0.08477614254655494, 0.11118380663489552, -0.1367101493294005, 0.16670632114082967, -0.19784159719834887, 0.18675814331851637, 0.15208780040017, 0.11003706247879783, 0.1062205206818702, -0.11819447789975045, 0.11782880490872152, 0.024056483619328006, 0.017699126537884687, 0.010429263869425604, -0.0025736497449073813, -0.003297077765834877, -0.009497806863903455, 0.013870498152141097, -0.017282020706858206, -0.019307884825602115, 0.023128549864291824, -0.02655678390243296, 0.03195572357204612, 0.040897604621879094, 0.053879941613788486, 0.07149533223828355, 0.09741106812556183, -0.09255067720576636, 0.06656272705954502, -0.029587934428571078, -0.01186297919225059, + -0.09783995399567748, 0.11953213484913264, 0.048617275593663134, -0.05967979987774355, 0.12157147196034007, 0.08806818370148864, -0.01510500640056371, 0.10640896774486326, -0.1131731989645624, -0.03610444989090255, -0.06973548462757623, -0.1217670575326982, -0.08640118115833981, 0.023114607941516787, 0.11404934288109266, 0.11456323490044829, 0.02607118505280472, 0.08338856649374599, 0.1284554604638799, -0.07543546205887354, -0.037572008759697025, -0.0902317823153179, -0.12262635449291942, 0.11005751663202247, 0.011390629197364784, -0.1026097444883311, 0.13416416390706123, 0.06083930667609949, -0.06086145663372224, 0.13717786569610177, -0.10466046960776756, 0.0025948978278982028, -0.10602649216761234, -0.1277155958651823, 0.057175815881492814, -0.0615786603504416, 0.13163108926492487, -0.09786040010404046, -0.016984340242369843, 0.11801937293580454, 0.129507472137411, -0.05056863965814058, 0.07106118899947367, 0.10098050000379895, 0.04023592934901725, -0.008804189980081983, 0.026679821491119464, 0.056859175957288205, -0.044124224110881224, 0.002834668739827669, 0.04160300043633382, -0.052658400515520495, 0.02269663454021965, 0.022475954318233213, 0.045331307215459964, 0.03225173894974228, -0.007221319042992081, 0.041158398605222433, -0.04321082374788759, -0.014323932541739519, 0.029693175365061247, 0.05007828438850998, 0.031654849233631446, -0.003293655948551067, 0.037408970943404854, 0.031240147445815963, -0.048738403857462025, 0.07072180834125034, 0.02503711002807055, 0.13139070523603175, -0.15698666428833763, 0.08052217138603317, 0.05932942588943457, -0.17825947068482764, 0.15236288091609826, 0.049160817029013405, 0.08895949375490782, 0.15701935205605808, 0.07921861285778038, -0.04175816334113478, -0.1327115809606005, -0.13487621186748247, 0.0072189011430930546, 0.13813486158345184, 0.17147138247684915, -0.10831833872959629, -0.05421384546158202, 0.13014675740074522, -0.13808395363784, 0.11387344513043103, 0.0036846330504146166, -0.12712365441143214, 0.1579673399663922, 0.06686512552772148, 0.07634586551241447, -0.158522674641692, 0.10908312055347091, 0.02303188560056226, 0.13599322237126774, 0.14963849776955565, 0.06898966247363711, 0.06571131097520613, -0.1499602654693114, 0.1205127165354164, 0.02666066757059094, 0.14939961717754185, 0.16024307182755307, 0.09442701029417572, 0.043086981546015105, -0.1060045276322803, -0.049330747282679915, -0.03502891176836282, 0.005080341722172703, -0.0575072114627403, 0.06529421245902847, 0.02416961060863608, 0.03405831809113386, -0.06612584559632001, -0.042443001600992514, -0.012657403018451792, 0.05673712791339634, -0.06025451680999087, -0.022203318159057767, 0.03122937950519333, 0.06235476940402051, 0.05288098391167721, 0.012262386744372359, -0.06465294506925721, 0.06758848900431014, 0.043502422820128, + -0.11589185564243447, -0.07854395590885886, -0.0630247586282386, 0.1207210265635904, 0.018428941530223616, 0.10804410900147603, -0.09222965962346737, 0.045295098286570454, 0.12302576783902379, -0.03287676693395536, 0.09856795945998496, -0.09979463477413747, -0.036829836289220846, 0.12818198487866972, -0.050196925496277786, -0.09392998380239675, 0.11273491607726534, -0.017031956942443964, 0.12641331841937495, 0.0665103994672692, -0.08264021295896712, 0.09013749402819772, 0.10235231782531035, 0.10958431603387955, 0.026926815645162125, -0.13494142853821772, -0.06747026702568706, -0.09001478246946104, 0.12972466883137582, -0.00628130052890217, -0.13350811424165937, 0.07538178488209116, -0.0759068365459195, 0.12698081599741304, 0.0033332168476350767, 0.12494200992592722, 0.08824504421858628, -0.06486473885027956, -0.13509105806134283, -0.027613518657211778, -0.12148894901586686, -0.10009437090926122, -0.05699828201415046, 0.09937444438477122, 0.004766362904020706, 0.043111731441630115, -0.02298773948196211, -0.0443144155691833, -0.051075249536658165, -0.011167100246755358, 0.054141076243382234, 0.018940106410282802, -0.040372588707714735, -0.04106646412850405, -0.004461240095033932, 0.04431840524795049, -0.02712309867824917, 0.026661180938404697, 0.04542391610911044, -0.0009180063533643645, -0.047298550096957645, 0.03268085081609034, 0.02618503943632402, -0.042344093817962856, -0.0016395047688594396, -0.0295975947821806, 0.07132026020564684, 0.03629621397011522, 0.03509001382105382, 0.1496425008065695, 0.10313160935730974, -0.0988755861213862, -0.16855569983201252, 0.03234031023916825, 0.18439170010324665, -0.04520823136286899, 0.12536226533985087, -0.13141962405705196, -0.01600370501355402, 0.13610145635110857, -0.07533546868918287, -0.09016260802909039, 0.16577408210629618, -0.02563820117475911, -0.17144519232830036, -0.10353234933769608, 0.11329493266153763, 0.12850051509975777, -0.09945879441451291, -0.12605234016965003, -0.013453608244662811, 0.1555115335227866, 0.09441481437978394, 0.09213128632875789, 0.15595180412319481, 0.012716054973646803, -0.14710801983647087, -0.10709123539516263, -0.06944192495519004, 0.15409797029734346, -0.01787880477558758, 0.13947445139667677, 0.11023584463661215, -0.06718735466562084, -0.1660468180571822, 0.053346621125034854, 0.14867990688505983, -0.11541449466075879, 0.09081433625525799, 0.10203779043093528, 0.028618016956677213, -0.046157220206814786, 0.002669240509681979, -0.06280505289214348, -0.046065465089495765, -0.03306381689944334, -0.06612628322671511, -0.009344203434932183, -0.05936258277521673, -0.04619370475716954, 0.024369803132474537, 0.06272271570439218, -0.015482211315864849, -0.052517980482793575, 0.04950329466715088, 0.024333050337800387, 0.07024113248938368, 0.02950860995903572, -0.06055420405256347, 0.02648659428395349, + -0.02739331967421237, -0.05344759234795301, 0.07697488409144766, -0.09668553116594972, -0.1111341470752047, 0.12005989877264986, -0.1232599927245784, -0.1200068994495338, -0.11065821432173174, 0.09107418143471076, 0.07116032246274391, -0.04759389748527407, 0.018717187819427463, 0.010065748581094278, -0.03821272121598702, 0.06499039216866559, -0.08774769374684215, -0.10604672380316287, 0.12127855951353182, 0.12887891939521778, 0.12922278438322807, -0.09049956269126593, 0.013057999686119462, -0.016006666896637056, 0.04314478099501606, -0.06875024266953252, -0.09339434451142832, 0.11414737351264237, -0.13271259946283034, -0.1394599947755634, -0.13907428497299532, 0.12238774766461763, 0.10889414284413143, -0.08977357965901041, -0.06139550475769519, 0.0332199758361687, 0.0035433552536830344, -0.026079269112413064, -0.05514196614381736, -0.08145198357240101, 0.10988396065795217, 0.12748119523570076, -0.13665716514723214, 0.09898340915789546, -0.035127147169093875, -0.02804649742549766, 0.018116369366467877, -0.0016033341870516447, 0.011451388516020143, -0.025008799070101048, 0.03976577912680952, 0.04665978802277436, 0.05100514224432053, 0.045051930636567095, -0.04563328750037169, 0.043770136785926984, -0.041159962323131453, -0.03521978072232983, -0.027548681502020778, 0.01604116930985716, -0.004704975300540087, -0.006553291815657105, 0.019619185285740578, -0.02863952520840419, -0.03560685238342337, 0.028583359177682902, -0.026446892545238257, -0.04044506315993091, 0.04306652190311427, 0.04806444340166078, 0.08174637767506493, 0.12321441265385619, 0.18817412855326165, 0.19084226312850044, 0.18366614847900514, -0.12285762513880102, -0.09915548042534524, 0.06955779315880499, -0.04867885172944561, 0.018462511020413054, 0.013047113911891405, -0.03946139490042404, 0.07436756326174654, -0.10558779221424394, 0.16125739846077658, 0.18354234075618042, 0.18840131771160867, 0.12966689700729409, 0.03415850320643787, 0.0028527671933206867, 0.02674372981872067, -0.05868354930869914, -0.09076389765392652, 0.11899932660730148, 0.14359934260526436, 0.15675428632683303, 0.1621823645009537, 0.15141356650943386, -0.1416215830641604, 0.12428344863629587, -0.0903257997376222, -0.05956493853300755, -0.026209189411005633, 0.009185839464895887, 0.045366024179438885, -0.07954104652316517, 0.13211311853497235, -0.1581548351591813, -0.1716845812224834, -0.1014567640407581, 0.019448208463308657, -0.008956046165469151, -0.00150644049296207, -0.01600082059018223, -0.030415958960083256, 0.044272971634659986, 0.05767336582448579, 0.06403331419758371, -0.06722301837333981, -0.06186950704136391, -0.05906843880688012, -0.05301592229628174, 0.043798307336489935, -0.032555645315593865, 0.01977666239839958, -0.0036734490087953937, 0.011784306507435975, 0.026695235634505255, 0.052595047840066945, -0.08809837398027741, + 0.08629050807171443, 0.12319655796722505, -0.08954924593673289, 0.005152510437119484, -0.08239864944338333, 0.12274804605075529, -0.09327721332078348, -0.010309652795780196, 0.07844299306479863, -0.1197852205281186, -0.09760806442565446, 0.01923337181206272, 0.07070499106549863, -0.12548961668688527, 0.10844757269788292, -0.03039856528316255, -0.06465152265764365, -0.12292752333380609, 0.11320294894681925, 0.0381362537261853, -0.05990618104361423, 0.09120127365560761, -0.11622688463237621, -0.12321914730751929, 0.05858519339320467, 0.046889198575128826, 0.12358762373472927, -0.13049824034590354, 0.06879530446589743, -0.036482462444520025, -0.12054089879719795, 0.12830930598010076, 0.07194331001349744, 0.0260958820485331, 0.10717444339931931, -0.13294668152125275, -0.08289549105164724, 0.015039009545211472, 0.10567016038877167, 0.1359491846415355, -0.09492571325147674, -0.00014415932471008463, -0.09744847647411381, 0.09936044563686633, -0.041878437910169354, -0.01910880826203123, -0.012636197526941331, 0.04631232068817536, 0.05825210770204473, -0.03762943187441471, 0.005397139271287484, -0.03373846214350492, -0.052915629299122656, -0.03326032544616548, 0.0020120609574103675, 0.03055037841391553, -0.04674520343319224, -0.034683334566778606, -0.0026568384622065837, -0.029769960422635508, 0.04976787617452991, -0.04145211229730683, 0.012270336746159101, 0.020401694789601778, 0.042385824418157164, -0.027914676785061186, -0.043602337667981134, -0.07106183970497625, 0.04885529817311274, -0.09088243735634803, -0.15877910897001304, -0.14620690735136863, -0.11035323326633008, 0.03231844084816453, 0.1518298602373988, -0.15569540732497314, -0.11805902764187894, 0.011778447043766155, 0.10256030230210536, -0.13950985905579671, 0.09612117195812632, 0.014682470334230383, -0.12873396907796616, 0.16800891442562157, -0.14311369876266078, -0.033363121006560456, 0.10641242949795451, 0.1326673673008662, 0.13434663013362413, 0.12341330969353911, -0.039923940875916344, -0.08383445865032702, -0.15673478267830857, 0.14052629670377242, 0.050917666481657596, -0.07069193308908663, -0.15245009704285478, -0.14044065301079453, 0.05528219988719135, 0.06307896596875286, -0.13998999459525946, -0.14627309172229053, -0.06853627845554028, 0.04941287263914647, 0.14549238243659807, -0.16163977187372852, 0.10921725838832369, 0.007442887380909206, 0.13114922324992084, 0.10309386709591542, -0.04817357503755829, 0.03785094874793574, -0.0057857767753387674, 0.04356781153413577, 0.06791432668643481, -0.054146612487948234, -0.016069014580348543, 0.03418688597381547, -0.06510706790847984, -0.054148870250559866, -0.016880846638254204, 0.030798986681701272, -0.06029273676028086, 0.05455308260404508, -0.017065565704014886, -0.030595580721817756, -0.06569213971497215, -0.0661791568417436, -0.04183362028718185, -0.031283271036908734, + 0.12063924064557362, -0.049618936617573266, 0.1003910904296626, 0.09024440302778589, 0.0634655772542093, 0.11593018753343805, -0.017010814556426394, 0.12288351366635027, -0.032154415262844536, 0.1097053294040264, -0.07260737795716343, 0.08009115496910116, 0.10979286327910086, -0.043261002390753076, -0.12686953237927673, -0.007005784097720005, 0.12304512634683987, -0.05617319812537999, 0.1023412606407925, -0.09810019551122139, -0.06305974109246387, -0.09241839193778695, 0.11098523551994187, -0.0891442443705566, 0.07244827429501527, 0.12897474650668186, 0.018644267494112476, 0.13784167941565412, 0.029879052381007104, 0.12816639180361566, -0.08107191404224867, 0.09107771542116815, -0.11181452970742027, 0.04488473675407566, -0.1319756663787211, -0.0016580680614474517, -0.13083101216668352, 0.05493038173068164, 0.11146753773975539, -0.09926394727790105, 0.07686398079263414, -0.12781202073536502, 0.02601994063731195, 0.10068503872716236, -0.009147106271854935, 0.04432629101269295, 0.006814357711759119, -0.05648500047558376, 0.025276015751830503, -0.048413157569471794, -0.031749256981285445, -0.036028549955469065, 0.04571692861277506, 0.009753685012698245, 0.04572607834210247, 0.008594831693750284, -0.04270390306036764, 0.027404036514614462, 0.031652867839229326, 0.04097037085312671, -0.021457839173279078, -0.04881728610253493, 0.004345826538213283, 0.04425189469152881, -0.013054980052400396, 0.02759703752819037, 0.07219602994485531, -0.02035138224313726, 0.051661482624900085, -0.15879642069784092, 0.028314339997638667, 0.16781767977779138, -0.025606657873067127, -0.17941497513636911, 0.09408194373491889, -0.13136446650765632, 0.10809140258028704, -0.08935501985072594, -0.1344240413818499, 0.0073049518834769145, 0.13939161339264347, 0.06861462798462711, -0.13816080102273637, -0.12034593783028336, 0.11738950307608555, -0.15911690786398, -0.06374515798129576, 0.13824140772026153, 0.10404178904137068, -0.11530316110473164, 0.05132486094739288, 0.16136707661549848, -0.018667208444192195, 0.15438829315666744, -0.07098671131759221, -0.12955645067395474, 0.11929370330576879, 0.0780428759724545, 0.14825760471917487, -0.012595939117659804, -0.15605631276754303, 0.045760406888727054, 0.13485097549450523, -0.10375535940132664, -0.11061036338369759, -0.13954460987795098, 0.08024629528488736, 0.167629555447671, -0.0021870768554039834, -0.10799791691546998, 0.029263469664345215, 0.04427920792063643, -0.009340268603511769, 0.0681136348415616, -0.01926923048601338, 0.0615211733054682, -0.03513572148086596, -0.050235448967780115, -0.05325155917865325, -0.025831058253990787, 0.061795440842138394, -0.002207422742379744, 0.06098670078129209, 0.03079283854448284, -0.04653371820434498, -0.0543052260703369, -0.03733306015956574, 0.06328837561905107, 0.028163229386544544, 0.059625714929206326, + 0.04407281172625524, -0.08264113927590341, -0.11139751365191972, -0.125792285335062, 0.123986712159785, 0.1057582455243344, 0.07249210834186826, -0.028884489609080178, -0.018830457277660126, -0.06552647466010045, 0.10136406413868852, 0.12489273567714927, 0.1401305160932558, 0.12737808930651814, 0.09830764187212351, 0.055143118057377975, 0.005224530617665903, 0.0455727035182145, 0.09113285920223832, -0.12582073376936703, 0.1441146634555498, 0.10841837378986846, 0.010279071831019457, 0.03016310526084479, 0.06498245406234773, 0.09698669382863438, -0.11735497481053345, -0.12302789823360115, -0.10463428126034328, 0.07137379193417732, -0.028066756925977692, 0.01743777445475202, -0.059252115761191444, -0.09414765634642555, 0.12223590405412466, 0.12767244722271853, -0.11609627665519133, 0.08849311395314198, -0.045250146928660806, -0.004325255289707956, -0.05580731837446878, 0.1010068451379347, 0.13308328129687844, 0.1107787285016091, 0.035498461789026804, -0.02214206958519477, -0.004604400881739666, 0.019115918627151122, -0.03823455178826658, -0.05565229935191364, -0.052634728653550185, 0.044662294873222354, -0.031068596900014806, 0.019655340394672968, 0.004264062400767312, -0.011819661566191509, -0.02606180763099623, 0.03777391614749688, -0.04487439621372183, -0.0478364613801784, -0.0378060094253499, -0.023768468613768388, -0.005862569408913814, 0.009480948636050639, -0.02386537827246741, -0.02583276143590686, -0.033288023591640535, 0.052872165448250824, 0.048212504208539224, -0.09445025402089603, 0.14828965394478993, -0.22216571266278443, 0.17663297810921538, -0.11043420507223495, 0.02971209052059803, -0.05435341015917867, 0.11491862122601716, 0.15863169661403473, 0.16067121524470726, 0.17632024280567846, 0.17549907944398, 0.17397475360120834, 0.10244320384539456, 0.020773134262168143, -0.07728289761244536, 0.16270775535847948, -0.22044579366495268, 0.19310006119766757, -0.07198297667017008, 0.04609201559684314, 0.014964180169358698, -0.02147964357008276, 0.05378000212238652, 0.08003236235923154, -0.08906830583375756, 0.08133902075193118, -0.05833900465364753, 0.02986826715485146, -0.002575506845591706, -0.03515303556291941, -0.06928193033957979, 0.09385036580164337, -0.10957166918518249, 0.112965002591803, -0.07824052849219022, -0.024318284474399945, 0.0429176931567083, 0.10791972708787492, -0.18139115175026724, 0.20066240335817703, 0.052383691940110555, 0.04741891619406361, 0.03319624359059813, -0.015497145394118613, 0.0020761086765240895, -0.011878490462634481, 0.02158122185477236, -0.027261993829516877, -0.027402543478770604, 0.02641476826941513, -0.021706048161161933, 0.01572397321040823, 0.009418373705128146, 0.0028572227412202527, -0.0037971952301109483, -0.010139794863083477, 0.012008792503013545, -0.009679857108998708, 0.004695449324075882, 0.0020017804284601067, + -0.07301395704199744, 0.11812952152237928, 0.11872365316047011, 0.07378013255700994, -0.0002742564333454707, 0.07324306158071618, 0.11735375642054245, -0.1147832317025844, 0.06634023018918353, -0.005436257340482151, 0.07441347331887595, 0.11534432955333236, 0.11897263701398955, 0.06811670351898581, -0.008697975395702006, -0.0823176426860831, -0.12381213464580289, 0.11558130261300423, 0.06182585927520284, 0.013367026389591157, -0.0841520813304023, -0.09177380295844831, -0.06872131376535796, 0.07009925201613525, 0.04341859507544474, -0.00013859839102693498, 0.04182974246270793, 0.06778751087703679, 0.06279151733413547, -0.03291005266909398, -0.009952503383725957, -0.05072720766451322, 0.06917584994923223, 0.06158166907799779, -0.03394446932953475, 0.008826010560157872, -0.048007156122098535, 0.06794877856983815, -0.0589000508755338, 0.026407296193118625, -0.017909218321690148, 0.05395910520260583, 0.06939539572578136, 0.043863708083962935, -0.07080886765687147, 0.13250057410724927, 0.12395448464975078, 0.08542044584510157, -0.03208263088134509, 0.035283058688200225, 0.07464106051888698, -0.0914391435361563, 0.07284581680960309, -0.04053236138585876, 0.009835232371957228, 0.05651669755043929, 0.07969595902673833, -0.07476618318446021, 0.041231685282567127, -0.0046310240650708325, -0.05065529242366386, -0.07698182149667149, -0.07664371684799626, -0.05900870840382961, 0.013888500679925763, -0.02588385880137998, -0.16001825476796647, 0.24876104763452433, 0.17413469481118535, -0.04238064035065647, -0.00504015590097796, 0.05864543018219878, -0.0591761332090907, 0.03997945618988211, -0.005344257632645595, 0.03394094391605193, -0.0512684146748999, -0.04785468144835761, -0.01870037946925573, 0.012955876708588495, 0.04042893296738271, 0.05607379246554305, 0.035656848644375086, 0.0025136566413970192, -0.03733771967718132, 0.06361913817146111, -0.0620469897584981, 0.029521046020773888, 0.08490767767657738, -0.15729851874949202, -0.16326964217296502, -0.12112647409044917, 0.04698429343964089, -0.04510702145743647, 0.11321228427553612, -0.13237291795131353, 0.09320132718290626, -0.02091607153213398, 0.059256886257695485, 0.12035408352011955, 0.1547503279628109, -0.12787094046289285, 0.05653436545731559, 0.03178183440371475, -0.10252624069841927, -0.12184967772345386, -0.09049341703674778, -0.05622811502387153, 0.0037954848870943372, 0.03158543457538471, 0.14682576477055645, 0.24237196337055283, 0.22004171834399497, -0.13317259243803908, 0.03609949317244241, -0.07606524704992167, 0.14059071594242648, -0.14350396878047625, -0.08123779106141131, -0.008958505398686938, 0.09413111112024901, -0.15030295202318644, -0.16414228318643934, -0.1299080259869134, -0.056350141829341734, 0.02712109665371444, -0.09099782415567514, 0.10033115472315131, -0.06049355046156507, -0.029674456005433607, + -0.12297203042695228, -0.015228171137425858, -0.12146136728976585, 0.03035398798575384, -0.11799199515351169, 0.04530668593455497, 0.11160530413404754, 0.0598950190873892, -0.10356716770058237, 0.06917940353795779, -0.09150425833648042, 0.0806574032875681, 0.08590234690136879, -0.0980227068440314, -0.07315831203911814, 0.10845522477584695, 0.05960534953536019, 0.11662514669275312, 0.04454769869302005, 0.11917257711676357, -0.03023998051980149, 0.09080653447976016, 0.056744151223912215, 0.0479523094467023, 0.049268071927360886, -0.05563568145946965, 0.03945921431001066, -0.06119685472804964, -0.027621988933089214, -0.06553550021735788, 0.01893173188056515, -0.06794446935120034, 0.006201141620220549, -0.06896298509450786, 0.0014538822584144913, -0.06944971811379842, -0.0074363910542513765, 0.0678689723861726, 0.018065190655602057, -0.06526457024476429, 0.029021329796544232, -0.059123532057876654, 0.037105644735060166, 0.04011052527656405, -0.1479497063145005, -0.00043495620663991835, -0.1323839241460142, -0.0023807084317396887, -0.1075341399744472, 0.009983039306628772, 0.09185131832013163, 0.012322414584499387, -0.08852267214533367, -0.007578719438527396, -0.08158739836108332, 0.01829049494004596, 0.07907585721915766, 0.025546304114578085, -0.07639958756672056, 0.028291725922259137, 0.07371033708173332, -0.03659836479180172, -0.07455285020029717, 0.032706218039934634, -0.07423456542535298, 0.028475763984851143, 0.26561070806955517, 0.0394764713516658, 0.20387025543882537, 0.03349175171526727, -0.07346680715073145, -0.044175093193159834, 0.03585967434498134, 0.04885199972279108, -0.028029466141481652, 0.05040548122635268, -0.0076087263842639, 0.05189384748813845, -0.00736998102814607, -0.051027357755180226, 0.013102259723410382, 0.048151286527903396, -0.03194934917660568, -0.0420201022968989, 0.047809854629312296, -0.035392814488997344, -0.056687728010865676, 0.022778687669781562, 0.173038844235831, 0.002600227260831765, 0.16177554902940294, -0.012259747483254858, 0.1454295164116466, -0.03006645259963261, 0.13443558160709573, 0.04915534238006973, -0.1269165858555431, -0.06048405168518795, -0.1165440212390086, 0.07249437836131702, 0.11710567494893387, 0.09158675430517413, -0.10608349170524212, -0.09513555783550103, 0.08167339559286362, -0.109835115764879, -0.06874467999979943, 0.08920805383661398, -0.07256485479550327, -0.05138636134415843, -0.25772065528709354, 0.029191942602964847, 0.2220773319004711, 0.04470317205582553, -0.17277025558021647, 0.06530936491425166, -0.14296665271768902, -0.08574271791817638, -0.12875966631409042, -0.09570446719722085, 0.10974244736005337, 0.10659057179912643, 0.10294123460278268, -0.11438759586630208, -0.09294399558635706, 0.1066516938230699, -0.05386624329363253, -0.11804460803426133, 0.029729237976971502, -0.06925806626134573, + -0.05987018615194126, -0.10469875263113435, 0.12331434792479457, -0.11107586763820844, -0.0702759109710671, 0.011867774501253658, 0.04931121582932916, 0.09803731678351853, 0.1220044023964924, -0.11026669987856878, -0.07576694867944568, 0.021956902870772472, 0.03835247402020324, -0.09201643343235764, 0.122382150805597, -0.12337833226545032, 0.09233052210726744, 0.03787883546170603, 0.026392223797063765, 0.08249459791381777, 0.11779243057233368, -0.09072824900228245, 0.007596008485506869, -0.02826325780985683, 0.05558034072404775, -0.06871243953993826, -0.06755067607094753, 0.04964952147266158, -0.02181009990771138, 0.013045833954473857, 0.04448319944432134, -0.0622705793829894, -0.06868248236481168, 0.05766689217174271, 0.0290681417343007, 0.005364330481254556, 0.03833340020419308, 0.06074607578499387, 0.06910065602470687, 0.06019545033923265, -0.038775000765029176, -0.007849268241533595, -0.026111313533107132, 0.03836277271901725, -0.08591812889092268, -0.1331961664898811, 0.13443972969067028, -0.08178850278253791, -0.03827333699068081, -0.016636612544349953, 0.06381282558108078, 0.08741169565125666, 0.08855329542870637, 0.05261657487849907, -0.015354439303091274, -0.02601400618481519, 0.061871814527189366, 0.08009166583386286, 0.07830670985476798, -0.049540442353586935, 0.011496173172865451, 0.028428529045220176, -0.06892425074308275, 0.08272469590082819, 0.07315029302306454, -0.030967625604228888, -0.12121711629005753, -0.21929914955873916, 0.21635380935062073, 0.07941730286058903, 0.06122232352187696, 0.02788525552271006, 0.005552620688595451, -0.02368283148518965, -0.04600971077770957, 0.047738145385399375, 0.051806174591547856, -0.04251095604253673, 0.02998529533256421, -0.005621644044031959, -0.02049428166254684, 0.03618718775705929, -0.051496119913971586, 0.0543546713347528, -0.05486897169826689, -0.03727216050924656, -0.006747238267290483, 0.01887194219250862, 0.09357156192256724, 0.15209136594699899, -0.1629050048038039, 0.12413900384323912, 0.07020333291848882, 0.0013901416455106771, 0.06983704722315873, 0.11981769527861791, 0.14005387039638523, 0.11805038301641799, -0.07282112482811023, 0.008315399392295867, 0.05942066601637695, 0.11616075019891452, 0.1430886679580568, 0.12222279423336485, 0.08149013828233367, -0.021909350936290505, -0.04998969151538872, 0.0945775951536029, 0.11402157058355829, 0.058002216332218616, 0.11420672054865898, -0.2111635310767389, 0.22750174241564877, 0.16766131102448872, 0.1138440297734171, -0.03121295433177091, 0.049224848903177736, 0.11712572690841098, -0.1558769138548926, -0.14399406126062952, -0.10859592545400763, -0.044373129307034645, -0.03196492700119493, 0.09993675212622956, -0.1421768117467501, 0.12585706530470311, 0.0995124272211354, 0.05194588717244785, -0.008561798300410045, 0.08768441139002328, + 0.05827603116565501, 0.10273657001423743, -0.12293629022984064, 0.11410131683114175, 0.07754887632754581, -0.02265053975215968, -0.037391291422315225, -0.08853076596136962, -0.11854982073166567, 0.11564449155010227, 0.09043288711822409, -0.043522187596732986, -0.016167683794200485, 0.0735537838351336, -0.11328071321507668, 0.1274696237934323, -0.11024669800664534, -0.06667747394162112, 0.007614893099093079, -0.05214769949556992, -0.09976271402527982, 0.09101524767982062, -0.06477509620347542, -0.07204056381912538, 0.060854609762210576, -0.032247925934578404, 0.001162465499557997, -0.03461594070822851, 0.06023331741674576, 0.06956590408550001, 0.06231969376502097, -0.03571053621875769, -0.0036623770978798835, -0.029392989425379826, -0.05365548309556013, 0.06815917491690862, 0.0665464966000194, 0.04811795140363905, 0.018845376266516504, -0.014771816818468739, 0.04728613483790277, 0.06516849026489381, -0.06667830896792577, 0.037033494637820574, 0.0571203918930206, 0.11449863560675626, -0.13199626210615728, 0.10504352897778263, 0.08353696839049679, -0.04256635393009313, 0.003767238367546716, -0.0400013730022925, -0.07340482026386695, -0.07918035148180452, 0.08077362293183833, -0.0628980901616246, 0.032026865675721605, -0.007342912773494294, -0.04521870313308156, 0.06650457428733332, -0.07975197995012955, 0.07462980527668586, -0.060487822166380364, 0.03055382794258244, -0.009537190337299316, 0.03377456756038563, -0.13855055562362362, -0.22775225515432007, 0.2172095121521022, 0.06305605775048259, 0.03143195260287227, -0.010873459233310817, -0.04389598842842699, -0.05694611254252649, -0.05619132235104064, 0.0276129164784592, 0.00374782449763999, 0.021260574997628515, -0.04590029469793566, 0.05197914398714144, -0.045711219444405, 0.020997651148617028, 0.006299572349739426, -0.031154866828336587, 0.05914809847055768, 0.06308968110867491, 0.04880452578471711, 0.015423932581813727, -0.076567789663955, -0.14055067693914675, 0.16170585672656038, -0.13786359621060706, -0.09738023575656743, 0.03396105064482782, -0.03383060038232619, -0.09375916148539039, -0.13172376217225762, -0.13243185804142243, 0.10882236237254078, -0.0584139444546519, -0.011325900305711636, -0.07855767152820937, -0.12645722758519848, -0.1328218154210777, -0.11979684315351036, 0.0803954205561356, -0.029127781808430776, -0.024431201316338223, -0.07617882900984113, -0.06471436514719794, 0.14131120608369127, -0.22531070253300306, 0.22857484857366298, 0.1540479868823468, 0.09102039718330837, -0.005733590211885486, 0.07267568985463341, 0.13168860068124147, -0.15980475895676693, -0.13775606155860629, -0.09535219165477932, -0.02888282104812968, -0.04515370875778785, 0.10813522939996723, -0.14487675796150784, 0.12425341882722074, 0.09547835433475892, 0.04766479901028949, -0.012387422598548126, 0.08983669523839893, + 0.12284353418323521, 0.018833272323789934, 0.12033684903762576, -0.03732918379497262, 0.11491000787144309, -0.055258833418659434, -0.10559041180276754, -0.07217000667653592, 0.09382621027629537, -0.08357627251284705, 0.07702530816145883, -0.09561674250514883, -0.06785153946848915, 0.11158594880456305, 0.05021947648118846, -0.12038916180318666, -0.03188310099546815, -0.12583583386642444, -0.01136796677312199, -0.12489897971974798, -0.007697506639749646, -0.09170431967030951, 0.061504336642867696, -0.03314194611536722, 0.06483538295761672, 0.02756879719783733, 0.06678489908430463, 0.017322306748736742, -0.06828241020301698, 0.00827941809986786, 0.06934941655039187, 0.002879717573027265, 0.06886997098390889, -0.007428800393797865, 0.06770712593778512, -0.021718703862318087, 0.06404819522848806, 0.031085388197917806, -0.058989840879615514, -0.04053946993904429, -0.054370928961741345, -0.04335148324014176, -0.049334304476923815, 0.03591573283323035, 0.14631347328547828, 0.0351092536146516, 0.1251944614032407, -0.05012762157179949, 0.09068281531119056, -0.06631642261359377, -0.05824038280059571, -0.07476792668391655, 0.045676578174569014, 0.0779829274603141, 0.01973340631616377, -0.0815358445405246, -0.004486370805750905, -0.08178817790077973, -0.008056190677586112, -0.07774060521290557, 0.03036119835938483, 0.0713504997369289, -0.049526033724351035, -0.059413524733526124, -0.06219061413993927, -0.037073005170448176, 0.26646989610513555, 0.0237941359149893, 0.20640307172208086, -0.0028434151516357085, -0.08284194840551252, -0.005787602868792879, 0.05961934874507209, 0.004370542835594064, -0.056801501538424906, -0.002599010498347129, -0.05207318736507641, 0.0058148374981033014, 0.05183786740489359, -0.004205142419016955, -0.0519441135551472, 0.0036577828938645102, 0.05457444671332092, -0.012311607109160443, -0.0604509680057861, -0.00969030782082888, 0.06374695106130818, 0.012057668703086652, -0.17260001853394025, -0.024642891014983143, -0.15831204891141562, 0.04282740707438911, -0.1370100741982567, 0.06382150567169873, -0.11867919392363036, -0.08477085829541861, 0.10322728436395705, 0.09843958354204599, 0.08404368627569758, -0.11016825166599292, -0.08099109067548968, -0.12518532963794937, 0.06301039119067282, 0.12608777733364576, -0.026056434387259384, 0.13088816307762385, -0.0064875528084473826, -0.11260540646461932, -0.014806968426760495, 0.07428022160944223, -0.2578786110933582, 0.0019296120119264375, 0.22511464566912845, 0.014798911195210058, -0.17907158722026167, 0.04072922971346384, -0.15285045747749856, -0.06562731891760874, -0.1399526952398061, -0.07931472256967394, 0.12130326800143647, 0.09468259811237023, 0.11249330163279965, -0.10666784775356467, -0.09990110083238289, 0.10203034248368004, -0.059486598076126405, -0.11649309086917135, 0.03331623491575282, -0.06802376306573082, + 0.07446925839473226, -0.11916705137334077, -0.11683671951544353, -0.06765245694824618, -0.00893349041461264, -0.08178799057951502, -0.1203956552917527, 0.10898694496431782, -0.05211764505939867, 0.024234131257267574, -0.08948268182760939, -0.11934722081063813, -0.10862354676393497, -0.04612117686909916, 0.034627109875846496, 0.10122338286151451, 0.12671732152386486, -0.09905107454624026, -0.03027052407669058, -0.04868825141875943, 0.10861270989035332, 0.09373947715239309, -0.00033361389640334735, 0.043398494650098984, 0.06717697028463435, 0.06801958698773673, -0.04297422077776564, -0.00036197031954973875, 0.041132433030274425, -0.06657960042440493, 0.06426898790909578, 0.04114224920208284, -6.541887488533933E-05, 0.04120207362421587, -0.06803895164898233, -0.06360562522098126, 0.033305160139437254, 0.010357159619595825, -0.04985359430771366, 0.06848527240080315, 0.060220533707352475, -0.033028690530020735, 0.00878407271472121, 0.034261112809078106, 0.09800855682976063, -0.1434913686175501, -0.11288345545250554, -0.043864847810665214, -0.024124666833888316, -0.08724300498252639, -0.09187851544375529, 0.06328099752313246, -0.009875789129557267, -0.04873400736765968, -0.07940903848437224, -0.07703449718838504, -0.04094600949670247, -0.01013293197352642, 0.05747873778439206, 0.08272953755415612, 0.06353831766117526, 0.020312389979761057, -0.03567531761845346, -0.0753026703257302, 0.08199311968261083, 0.041935679719343276, -0.14360497247832366, 0.244141396910213, 0.1781488208964652, -0.06875978340335175, 0.032126352650395894, 0.017780257357064042, -0.042980965869317836, 0.05710833198612547, -0.04673216516149516, -0.031736871906805846, 0.0008575743186537239, -0.030679779778972127, -0.04622352338936012, -0.05258230847183117, -0.03937888539518987, -0.016587160124251817, 0.01933349715627896, 0.046157040212934805, 0.05760281886665977, -0.05684375044007544, 0.02820477979798373, 0.007423264914277999, -0.10216856715863006, 0.16657785787309268, 0.158634913007143, 0.09861935830276346, -0.01314593044515036, 0.07790271313936199, -0.1288971242460693, 0.12145594151210076, -0.05837450736340401, -0.027672546240586078, -0.10169770933469044, -0.14052061768798324, -0.14542090340703334, 0.09041021333576972, -0.0027206459192360708, -0.08227259790200261, 0.11853948115475248, 0.09362760169787915, 0.020779896109422047, -0.04378057157619055, 0.10271572154779858, -0.10509894672484281, 0.11800638980653087, 0.2290102895641932, 0.22243003375833592, -0.15213934890606795, 0.061899617027119186, -0.053244372016323656, 0.13081626257785936, -0.1496141429553637, -0.09782170569417604, 0.011778565797114933, 0.07784069231567839, -0.14230370287221306, -0.16414867915458722, -0.13492037327652542, -0.062393446345256856, 0.022631062862851888, -0.09069801768566953, 0.1028285857152731, -0.06309700163026351, -0.03127844834753179, + -0.04237171012930691, 0.0798906153817328, 0.10875524045669809, 0.12471706719105508, -0.12591142574043648, -0.11172551876857079, -0.08278915852147839, 0.04290507252092169, 0.002668635463796919, 0.0485888446492211, -0.08687654909864762, -0.11554799296415857, -0.13768035234116538, -0.13379735232092818, -0.11410741333884598, -0.07929234012212986, -0.03537859054087571, -0.013452714309962985, -0.06142052151066666, 0.10234671178759283, -0.13113793426075615, -0.10866009972305261, -0.05202995072410996, 0.04910025716549711, 0.0394158629554832, 0.02636037242711109, -0.011321413360988762, 0.005177220688266944, 0.020225032903905534, -0.033015100853244335, 0.04139052051118293, 0.04856033504460967, -0.047837648725923936, -0.04188797988014238, 0.03347873615882587, 0.019160320751561, -0.0025408182373851526, -0.014242143407833275, 0.02888280263424544, -0.03964895093996689, -0.04663243219373733, 0.05110888586858295, 0.04894860292121109, 0.031020504183401514, -0.02908371318080455, 0.06739839348366347, 0.08533204652961886, 0.11970491576451488, -0.148299437555697, -0.16933009810900784, -0.13357967404447482, 0.0841965401674224, -0.025753716652373495, -0.0335323863731608, -0.08203466136780029, -0.11979362735740387, -0.13953210238927546, 0.1473721935001194, -0.13851701680218606, -0.11955414554309332, -0.06785867231632897, -0.0104534282737957, 0.05397774761482326, 0.11104082049110259, -0.15117200039904283, -0.12820303104791425, -0.04330653205942982, 0.03524859847288951, 0.01574080809484879, 0.026652291586744613, -0.053795493122737945, 0.09002017709825649, -0.07711247574689492, 0.057119284643310904, -0.02968774545428034, -0.005976676861886278, -0.016943686101429982, -0.03768712471452134, -0.04925867265436119, -0.06524150035069996, -0.07595351843777502, -0.086390271632373, -0.06386300040310314, -0.03479283598412852, 0.002872293208283992, -0.03351606043820748, 0.05987274257630608, -0.06073042784396345, 0.0506768227382863, -0.06953107991380476, -0.07749226688028052, -0.086294063995264, 0.0918825201411604, 0.08785191044615417, -0.06710823435015628, 0.03393080996689886, 0.005278107451745651, -0.04531057268401711, -0.07928840217641418, -0.10860015071477806, -0.1434121359096051, 0.1603034774057607, -0.16400065592491145, 0.15171788468990902, -0.0895579419537598, -0.00646883414688563, 0.0923736365091777, 0.19385318220485098, -0.31114596243062526, 0.34078347506636925, 0.08577293000994951, 0.07514412164621317, 0.050883658980753595, -0.02096283315990202, -0.0017980824352409254, -0.025064483188849622, 0.040166487393094974, -0.04805237116725772, -0.046666595899824546, 0.04377487299996502, -0.035195192302548126, 0.02491251067456162, 0.014379178608687806, 0.0036111988412104844, -0.007227065328857701, -0.0176371138908615, 0.02044932617463105, -0.016317745260588705, 0.0078555179004116, 0.0033315552670291526, + -0.12025632376761412, 0.05293524583282117, -0.09709788539414707, -0.09499089897856859, -0.055472294797191804, -0.1190186474411661, 0.004391966802500533, -0.12102624861134594, 0.0474894957964903, -0.09946207827853668, 0.08689771156854442, -0.06137401328068187, -0.11688848476633117, 0.01859484657513536, 0.12440803231735546, 0.03437746857739992, -0.10835977338231748, 0.08085493725823835, -0.07509782455621206, 0.1129782392703656, 0.026126317451090085, 0.09243021132101764, 0.003914213668684965, 0.040494905215094794, 0.02105560464879435, -0.032788306745287946, 0.03403183897985491, -0.01813856151230791, -0.03982763765736484, -0.0004724775810695629, 0.03987873325584343, 0.020325806520334985, 0.031519272467283276, 0.03444475737884902, 0.01431068823610955, 0.040032131648981645, -0.0031112098634234566, -0.03828166758754566, 0.018719339912443157, 0.030152750594343764, 0.03270888749890767, 0.012520033724547104, 0.0392097375422224, 0.004224159207942104, -0.1300110807162183, 0.0601552588625711, -0.09447642733015595, -0.15056083979330437, -0.019429942708981494, -0.16834747489751042, -0.020242705111165524, -0.17186764092260995, 0.09435630606299156, 0.12083641750559163, 0.1239521792577596, -0.0680048952291255, -0.15215417516914698, 0.0037532927262874977, 0.15144636967577443, 0.07819163042955489, -0.13494698068782576, -0.13558826888792933, 0.09112007330853968, 0.16431410063184523, 0.025945001570977212, 0.12656087413195288, 0.011992188086786183, 0.04009290765977779, 0.021013932865545395, 0.08959020469047234, -0.03851966197921591, -0.08116312362906669, 0.03309323205973965, 0.07318733951604432, -0.0622846736471433, 0.03364427721169168, -0.06299140499661088, 0.006943345109510037, 0.0669693674226327, 0.03493566328867801, -0.051722721840359406, -0.062081300105569455, 0.04290900071709158, 0.07775245219490998, -0.018969495643512586, 0.0732505812592788, -0.010720680133157029, -0.049853811194424606, 0.06073582090771034, -0.005642785366621271, 0.05446917644737294, 0.03729696339583199, 0.03333125175993906, 0.05233161313617967, 0.012560044125648321, -0.05848725889868982, 0.01089881281868091, 0.05488881234983014, 0.0333064039496241, -0.039579416338325735, -0.05628276100172191, -0.016530442611409683, 0.06329948673259057, -0.014055881769933446, -0.06019182555495603, -0.035492704785281055, 0.05703074701761964, 0.06609944522261837, 0.025069963585937067, -0.05519471190247209, 0.14531553560778387, 0.09019068749310033, -0.09161950155634427, 0.18910118101133544, -0.005977258229628851, 0.191511113262956, -0.06548086051995827, -0.17223598850334637, -0.132625233047211, -0.10987452582471936, 0.17366114514709163, 0.02640202062075756, 0.1878746077678184, 0.06732042284383928, -0.15408609484791982, -0.15124424724307875, -0.1239349396086847, 0.18486017070741878, 0.09492202721261696, 0.18447325169467335, + -0.08757782792442804, -0.12320853275151063, 0.08569947078583774, 0.0021234246847142667, 0.08886212618921743, -0.12285897053255115, 0.08444574596043493, -0.004162422653572328, -0.09019856137202623, 0.1196369013417993, 0.08323226957973782, 0.002903491725784724, -0.08639855992419018, 0.12492639225811959, -0.08943631789599116, 0.0016911154237553684, 0.08641474459746123, 0.12348666557058278, -0.08930271527081222, -0.002257257426911701, 0.0870923218859376, -0.09184616222721542, 0.03384112149845439, 0.0053173277052746435, 0.025607678254297685, -0.04213796910606445, -0.03519522294990241, 0.007369534025057302, 0.023629774673168714, 0.0403127911029263, 0.033093439221511645, -0.00355824637143929, 0.027361501386536966, -0.04207003795013205, -0.02947229986502996, 0.0009384010005853496, -0.02804728935311419, -0.03980248559803088, -0.028747912335487166, -0.0007886690376012343, -0.028976709303141265, -0.0390774751953486, 0.025360752228750984, 0.002809690212743255, -0.09687677258762793, -0.13346555959066797, 0.08438376532565284, 0.05287580391685432, 0.14535093973610902, -0.15694424960686007, 0.1055732479618003, -0.03247865353561124, -0.1486753833448768, -0.15638496312190564, 0.10083408274063896, 0.015083209246335914, -0.12308221408356182, -0.15388396085951037, -0.09341296305658618, -0.027525116025166402, 0.14163856317380558, -0.17090700731944125, 0.11698126152348398, 0.003334973202096113, 0.12825778196780907, -0.12442135386080705, 0.031206695668188122, -0.00165465500327114, 0.026576204955484458, 0.06827794292907743, 0.0926884955112149, 0.06555541869336817, 0.032124357540066345, -0.03680506943699971, -0.08191502917354235, 0.06031210419802248, 0.023714861409059984, 0.027439266559621006, -0.06867710058080283, 0.057538558671967145, -0.011693693698296467, -0.03995108009429393, 0.07988798676737029, -0.07300394182268437, 0.032384542329885545, -0.021297455544915897, -0.0654855272289823, -0.04996605866329787, 0.02336997684096452, 0.05647055057492501, -0.05283683358154298, 0.012058308995954635, -0.03095016985594049, 0.05585421978101196, 0.049213216908337076, 0.012044367188600196, -0.032175239738004485, -0.05674961472061483, 0.05039654282457505, -0.013416575460944758, -0.03305399349553784, -0.06186322131672567, -0.05358298820476899, -0.010572380278270349, 0.03819805569716667, -0.06505740697572149, 0.066411953353919, -0.022636053893972392, 0.04108600046728803, 0.047934055418341406, -0.12219374065460298, 0.15288655524413597, -0.08380481514604216, 0.07912563248027367, 0.18082619146382556, -0.1781751550092475, -0.088156473371438, 0.06488815640522852, -0.17973463825175773, -0.1765959237903185, -0.08341590272628346, 0.06188401978894299, -0.16952138961686328, 0.1743974405923305, -0.07398380325991662, -0.07518094705232498, -0.19150654561260708, -0.202977948092134, -0.13600445654558482, -0.09058845939049244, + 0.025619319026630845, 0.050149168575638225, -0.072627904346832, 0.09196374042026395, 0.1068794826591255, -0.1171599818526615, 0.12258867526415271, 0.1223769412604441, 0.11671856617048858, -0.10106063189454918, -0.08563306088179883, 0.06639036251011123, -0.04004341371645827, 0.01442938500928839, 0.01166357365115737, -0.037476507252623754, 0.06113047031384697, 0.0820828409555925, -0.10129719697376863, -0.11464564217558464, -0.12234033213297726, 0.09171496627668732, -0.039953772001790296, -0.03595175704041971, 0.02976226302104993, -0.021023482151964965, -0.012814589155488743, 0.004044658465035978, 0.004491035290144362, 0.01282824746250042, 0.020560914669239868, -0.02618878200353438, -0.0325214394236016, 0.03742250298290766, 0.03861982919469246, -0.04025166467029667, -0.04019138728694327, -0.0376781721678529, -0.03410890648809263, -0.029118791607358807, 0.0243764982444086, 0.01807821617195961, -0.010448345232098165, 0.0015917797171754447, 0.027533508160816088, 0.05398799906047491, -0.07106233447748597, 0.08409627801813521, 0.11114643154173079, -0.13817075910911295, 0.17828293766049821, 0.18201015268562779, 0.17739386766011833, 0.13691700897387865, -0.11839619017730411, 0.09418231576032365, -0.06886376897816474, -0.03848631913793373, -0.006313657027789906, -0.02542890958211034, 0.06049306347637157, -0.09273531653995024, 0.13770275468469287, -0.16152450908913787, -0.1732841803726802, 0.12401480254009781, -0.04481720496205484, -0.04167195261606489, 0.030695670834041545, -0.006599158846774661, -0.025829004391753743, -0.04902720207060434, -0.08018332094488648, -0.08587413715429415, -0.08750828558135684, 0.06483754809474519, 0.06120884093313905, -0.054432764741393705, 0.05535302496058727, -0.04539396293028899, 0.03341219962546213, -0.01459844262547963, -0.0032317562769222123, 0.02027608459288672, -0.04405478836663299, -0.05731571630079826, -0.06601647704085696, -0.05087629547901466, -0.03641432852436427, -0.04572481903316316, 0.050263383529218185, -0.051257635334236516, -0.05515203505061238, 0.05698598101990094, 0.05789356176627239, 0.05438987681691888, 0.0485432969514146, 0.03793304594524997, -0.027858085591104274, 0.01639770058032624, -0.0027940584948295648, 0.010565717759859742, 0.02334510132705448, 0.032655556874160135, 0.04348066578451927, -0.05280862236334029, 0.07234494317678089, -0.07911583122454842, -0.07952853211035643, -0.04354424058187194, -0.021027785019940466, 0.05248595067585956, -0.0726985146702741, -0.09345627056638083, -0.12669018741007795, 0.15769031571089884, 0.18967853690878636, 0.19912665009314207, -0.19998551237324144, -0.17630323323937236, -0.16116042049889442, -0.1381030265686197, 0.10767246791970508, -0.07298924546636536, 0.035370899701882945, 0.0072258637847241, 0.0500480579947565, 0.09118472788361248, 0.1677862198980756, -0.2747728685777036, + 0.11526218221414834, 0.08131210063666465, 0.05825855805412137, -0.12185258975634929, -0.02734239164093414, -0.10236271094648165, 0.10005256909684423, -0.03151736546132192, -0.12230533524190235, 0.04976739976640824, -0.0843783263243175, 0.10948401712875211, 0.013832504174990917, -0.12109334550293861, 0.0716191410882494, 0.07001336893260843, -0.1199056513359687, -0.015150352471036029, -0.11083758397393158, -0.09084179738298737, 0.04785817563458057, -0.0919425947237609, 0.008756090470360724, -0.035946755582391764, 0.0332965389575109, 0.015255107901145919, 0.042874418219641115, -0.015152308718251907, -0.030349775789625305, -0.0363728057442121, 0.004465440637547846, -0.04003987035631358, -0.026193175751299192, -0.02177146755047575, -0.040131562348433604, 0.008766250610514096, -0.03378723908476169, -0.03213441031892587, 0.01052254087588114, 0.03951307094212852, -0.01901810502189995, 0.024889865956510108, -0.037163259381993455, 0.00035277727864160813, 0.12597787407712802, 0.08719384694060725, 0.055498282661024516, -0.15864887240149791, -0.07574646200329561, -0.11255025395365445, 0.16131222265024184, -0.025264053605443815, -0.1757792072130324, -0.0694916379092104, -0.10717711340743874, 0.14596929623043645, -0.00045879229012409626, 0.14513254772998774, 0.10319859791487104, 0.07619125984530412, -0.1733565666959146, 0.046849609350586775, 0.15287753755719904, -0.12705556736730161, 0.0700138628940949, -0.12507061084541649, 0.015793368335795106, -0.034102456191208046, 0.03321046681742397, -0.07641657468316121, -0.07512569689197636, 0.03202685921666862, 0.08674762048395883, 0.007699669354254354, -0.07828947879349057, 0.0457126140640208, -0.028227199807199115, 0.06624099582968303, -0.029885444464946523, -0.04890684005057478, 0.06456220911144157, 0.012234737733455708, -0.08146449645897347, 0.045622975267897034, 0.05355734185666775, 0.06406090715548625, -0.011496879210765096, -0.05254294446575398, -0.06078607354925222, -0.015047034797053402, -0.047019224214975064, 0.05030615841665829, -0.0068414851479732, 0.05539329321712322, 0.034168892496238036, -0.0321111585070944, -0.05748018287873854, -0.005245290941446419, -0.0532271405479369, 0.0420111093793932, 0.028442883785799886, 0.0631697571240441, 0.015508073930974033, -0.050747354193984955, -0.05817203475907397, -0.00678141480696275, 0.07476522739734551, -0.03122539088760795, 0.06171787236414256, 0.03984130613408575, 0.1436906806359699, -0.10424409698519821, -0.06050081834477079, -0.1908906224829392, -0.08996083104264595, -0.13212034920912383, -0.18214291800368593, 0.012285569397578125, -0.19055200796443375, -0.1093129041999224, 0.1038901566244249, 0.18165530761405033, -0.016562494528528864, -0.1699018089731027, 0.13155550534820168, 0.08992989847058384, 0.21132921726652254, 0.07781241399247418, -0.190566421805391, 0.0768384738572408, + 0.09893352663276522, -0.11853374700459501, -0.0434903706511714, 0.06594101103480884, -0.12252320563317062, -0.08008827541915309, 0.027545504658748006, -0.11280998149967852, 0.10581797975940745, 0.017771390462599415, 0.08448464161872005, 0.11944816114423927, 0.0660146952716775, -0.045839736539864784, -0.12030499755624358, -0.09647272066132624, 0.004389858570632622, -0.10188155956815663, -0.1176901094684976, 0.04139004187796904, 0.06931471540026428, 0.09282410245428928, 0.030822176225729, 0.00513723779332982, 0.03594849246057147, 0.040684658641942845, -0.013461581820129053, 0.024890127258839934, 0.040816390158800064, -0.023908947371568758, -0.012412450850011587, -0.0404625726536062, 0.033808113476536464, 0.00012980548003168474, 0.03343121232672698, 0.03825419663549944, -0.01217015540366751, -0.023475301603686376, 0.039589150577577045, -0.023360231125721068, 0.012938746543601772, -0.037690383781974916, -0.03213276906178755, -0.0013226614649860377, 0.10590556221425622, -0.12806884622280373, -0.038352563865922305, 0.11341719577895966, -0.15943607054892237, -0.08305484805702343, 0.06385619579854337, -0.17434537195842284, 0.14351579645096849, -0.022806796967914343, 0.11189985073929946, 0.15566415073112339, 0.06887353314572293, 0.07066159987980529, -0.15429104098317054, -0.1207574803600746, 0.03110664645628017, 0.15502465924788333, 0.1612461448594561, 0.06593975232077713, 0.09201815124590418, 0.12837282545301773, 0.028063013846675477, 0.012509220674109032, 0.03318968789206919, -0.08537601192830704, 0.08031605034722733, -0.01806471665166497, -0.04759977394165543, 0.08780194392518939, -0.05530116720504952, 0.009607544262595158, -0.058913817731621285, -0.06003752862652863, -0.0031479541391192033, 0.05419194672552846, 0.06993208024699082, 0.0394078899595889, -0.03667373945232033, -0.08068071914705272, -0.059946881133950726, 0.010429702441727619, 0.05245576616284291, -0.05581431967432641, -0.02605611538447187, 0.05992241167917827, 0.044246671509605456, -0.007742106265646395, 0.049449177427689825, 0.051966923867586605, -0.009887284538953286, -0.041395728283104165, 0.057355619859139347, -0.02975649615267282, 0.02210299627921824, 0.05762392870272524, 0.05562998448290214, -0.008082825695660944, -0.04522264215220442, 0.06203705221723566, -0.01723000744184599, 0.042837893003879954, 0.07411587840813003, 0.06450042004716866, -0.007892701711502113, -0.03391001269050834, -0.12557549205587812, -0.1518511851092187, -0.05194504585487104, -0.1283100082792908, 0.1937036220317033, 0.11044867533868018, 0.0629589338019111, -0.1896419891211863, -0.1519570376542903, 0.00045901000345226965, 0.14901964685159622, -0.1887755050114072, -0.09384145296136498, 0.0685798444825976, 0.18019227999323392, 0.16926537402979858, 0.023947204403831076, -0.19074706301185831, 0.20967046163277722, 0.13756087197954422, + -0.008354157079448222, 0.016734200708142306, 0.025276851362758524, 0.03377128495255909, -0.04224214174869138, -0.05049741592275384, -0.05794557068871448, 0.06454038018720908, -0.0700396615270238, -0.07871285253947409, 0.08475070637845977, 0.09127247763215815, 0.10343569456799674, 0.10820507290760978, 0.11283322707914868, 0.11586619540007763, 0.11873155983599559, -0.11932913067893242, -0.1195331734711151, 0.12182215662394057, -0.12351224341958886, -0.0942834639551616, -0.040721387005643046, 0.038999771864400054, 0.036362603181491676, 0.03548904404644058, -0.03540774935810446, -0.03539160725246152, -0.03292000032051569, 0.030042954491848232, -0.026712583110273566, -0.025599484210367902, 0.023410517320386296, 0.0214179030642862, -0.02067156135384207, -0.018721887395194977, 0.016674383298696423, -0.014433843648604013, 0.011508333812373317, -0.008411373210063394, -0.005280278047229479, 0.0027190803572731555, 4.569319983390319E-05, -0.0018987913716599827, -0.009141484608062621, 0.01757196796179635, 0.022694383666403837, 0.035603302673493514, -0.05044457510718104, -0.06923671105095436, -0.07115696352002851, 0.07607972445526769, -0.08068234192108022, 0.1042612543109288, 0.11533065342848664, 0.12452558235713833, 0.12950809646332478, -0.13869045028066296, 0.14854661286199863, 0.1635598473424117, 0.15572840144309297, 0.15041751778325418, 0.15066356815703205, 0.1718140550855668, -0.18324940409462595, -0.14420011805007124, -0.04472950555050211, 0.037377827632545865, 0.021071490728349154, -0.0021311850413183483, -0.004330649013703964, 0.01276850475123872, -0.014724054773087594, 0.017791302078844322, -0.020251213463808863, -0.03053606881877097, 0.035188478840113606, 0.0390337656894983, 0.03753854359353406, 0.044084949065256514, 0.05227682751085339, 0.06606331831568561, 0.0630575453497328, 0.06012492682319938, 0.05858099837971635, -0.069102204179433, 0.07464777606566798, -0.06215948237376203, 0.02932496771131929, -0.030597316697344213, -0.030933106827488233, -0.03515145362248677, 0.04214363144605844, 0.04973420116434054, -0.05312394120194917, 0.053165316382663266, -0.04991976379948969, 0.048972591513225784, 0.047551704794748656, 0.048807094658699375, 0.05833877381702389, -0.06758308327376042, 0.07922131149881077, -0.0916804896363796, 0.0847485426247285, 0.067307688957537, 0.04639606571998942, 0.04215768896677316, -0.044008068677721876, 0.04224435750957995, 0.00047748478717921637, -0.010758498195127711, -0.01955766533797936, 0.036318853207714205, -0.05652060117033064, -0.08029026950463221, 0.09138823500441802, -0.09551978486775303, -0.09224479284979087, 0.0971082108707317, -0.10071885532090255, 0.1119179342006695, 0.1357489407803904, 0.17331856248427663, 0.22620009688100445, 0.30597367951514187, -0.2897498017545186, 0.2080012373178947, -0.09232447447712386, -0.03697780344163507, + -0.10796106729998627, 0.10465736795343429, -0.006271557004087313, -0.1100304544950446, 0.10030985557649832, -0.013281143175265442, -0.11266920146369387, 0.09458873201868492, 0.022237406148861136, 0.11832651930165478, -0.08773858306766048, 0.03340297841283251, 0.12128361173910936, 0.07550592525926131, -0.04789197638532198, -0.12154604010526274, -0.06978400390832083, -0.05519886527734501, -0.12431981252456156, 0.06692936348745787, 0.06070705391877105, 0.0937231559240158, 0.011572239681526077, 0.031497075832003334, 0.0408975752997823, 0.009169706573906936, 0.030483553508271772, 0.038878011068202475, 0.00512530732674564, 0.034700757861605265, -0.03822505756558686, -0.005006117600038371, -0.03307295103265537, -0.03730859697219711, 0.005234904957791695, -0.0326566302101038, 0.03660223992195573, -0.002722222614414264, -0.03445101712601875, 0.03557686371813382, -0.0010822615010702271, 0.03441520725056074, 0.03247196128590754, -0.0014036596868485683, -0.11373318596395503, 0.110500174586529, -0.009447384805203402, -0.16527060167141996, 0.14188963279316333, -0.028160846156205944, -0.14522009848228903, 0.1270290752115271, 0.020887170789109715, -0.16017856208404346, -0.11042616063677632, 0.05515199602630046, 0.16256422899104617, -0.10726545193949337, -0.059192990060410546, -0.1620674602941335, -0.07696029678571621, 0.08405833285757693, 0.17009596218357523, 0.10122841269296494, 0.0826737850654799, 0.13186552357070713, -0.008774517298267595, 0.05589030415419192, 0.03226887474699305, 0.07632904173678617, -0.07897012231060921, 0.005690378633349858, 0.056492247692951955, -0.07286152591648248, 0.013272615059737047, -0.06396585533813173, 0.05858112226483416, -0.0085730111611351, -0.0675466795098376, -0.06951329694922491, -0.0010176491246503844, 0.06391163357458238, 0.0490054888886733, -0.015168939864077956, -0.07274163853361393, 0.06393006177465863, 0.017420092918821035, -0.0599353899480271, 0.053423662029490226, -0.025759115073823023, 0.026105696417110837, 0.059897114343441575, -0.03399120643535827, 0.026945773848270172, -0.0564329561065922, 0.025456057282915345, 0.032984329637090005, -0.06023425363198396, -0.0239943094161109, 0.036489563501117914, 0.06490889075462251, -0.024817935155902204, -0.039705219351322416, 0.06271255968708185, -0.009543023821484038, 0.05400215859466888, 0.06500059826100323, 0.02792675277025877, 0.03975512299996209, -0.05227323455384252, 0.12000858293020672, 0.14082880912594986, 0.01649286211810179, 0.17523020085403546, -0.18039317646509517, -0.0030447280472985583, -0.16146488786949356, 0.1567432630751875, -0.018561779688285325, 0.18458721647711626, -0.15291982410362304, -0.02937345415800362, -0.18453350544375377, -0.16267814073918352, 0.01610136407261282, 0.1717975379484484, -0.10255298037414813, -0.08857772338116447, 0.21875289347930665, 0.17727168414800493, + -0.10830907013288778, -0.1031757469437007, -0.010300699694127018, 0.11230997795856575, 0.0964036393306031, 0.02024483594242512, -0.11547793340678882, -0.09001723185981508, 0.029317324626689196, -0.11795298578737823, -0.08774551846012668, -0.03480628927128886, 0.11774535199288197, -0.08559322903421493, -0.03571480467034731, 0.12042511920270146, -0.07806488827092527, 0.0459537555846216, -0.12411984378029858, -0.07045343845144071, 0.058253203061836324, -0.09287426832943313, 0.029854579494405755, -0.014305178905003695, 0.04233309754188061, -0.025007723472122153, 0.016434183940127196, -0.04103819570580515, 0.024373008686676488, -0.019156947602147374, -0.0425530886879735, 0.0183618526735286, -0.023323001742660672, 0.04062608809810642, 0.0131507761381917, 0.02747817581996189, 0.039304598870149074, 0.009658753850871568, -0.030244611108001886, -0.03855072423115394, 0.007532019115911115, -0.029498020201264696, 0.0359307747193449, -0.0028643855142164963, -0.1150611770139538, -0.10897346144284305, -0.007413763050766917, 0.15764398181896108, 0.15262141901420692, 0.015950090495112656, -0.15166760351926076, -0.11173598117955955, 0.04339975171083305, 0.15371428835183426, -0.1269659466317399, -0.03303732980261592, 0.16022457954171768, 0.11437109234396764, -0.0518931349866374, 0.1535455749493883, -0.11309706735674956, -0.043084944311986575, 0.1725930081399455, -0.10109467412080483, 0.08449105283628484, -0.12847204479668117, 0.05542701922851129, 0.005390861877838948, 0.039486663889730066, 0.08157843148784875, 0.07057182510478935, -0.02124172882151578, -0.07769811980834482, -0.03492981591742782, 0.04207365504637173, -0.07065241999220327, -0.04459001370222514, -0.028606654771674622, 0.07874433646764406, -0.032927181619209635, -0.04846444495134166, 0.06730596575140284, -0.029741289249757767, -0.03646552236370851, 0.07866080972026199, 0.028688646155176863, -0.05716949003208524, -0.059151787747416085, 0.026101490474438507, 0.052698157366261954, -0.022600037718269676, -0.0393342388181625, -0.05834120773602142, 0.016247174754394564, -0.04019346117098588, -0.054839172196937555, -0.01292485209642329, 0.044657831760023546, -0.057233498102530686, 0.008768513286698264, 0.050129314216524515, 0.05927825194751675, 0.006049973932105332, -0.05153166990734822, -0.061646604358721185, 0.009777190676775224, 0.060980198122512125, -0.05334432189884568, 0.0176305768713469, 0.043328511478742525, -0.1401223268163174, 0.11393544129822746, 0.026345478597817457, 0.18728301057289967, 0.16133970539156048, 0.03649119608697554, 0.18279308244134868, 0.13260839237043673, 0.053450500436968834, 0.1870750152381032, 0.13726957324084296, -0.06082511912606347, 0.19375064539298117, -0.11908867330149125, -0.08234817075362881, 0.17740951105228395, 0.1218633514086976, -0.05051491838183431, -0.22363600785480492, 0.0289862664990615, + -0.009078213378480384, -0.01811858687264849, 0.027115320750256047, -0.03597105758523831, -0.04447827265123363, 0.0527547700366238, -0.06084696263295996, -0.06846713793365906, -0.07564055536485526, 0.07938089766172918, 0.08622296149901723, -0.09262943586449363, 0.09237135691125689, -0.09782627909651385, 0.10285899739239653, -0.10854771552366879, 0.11262965391218413, 0.11594245868648621, -0.12087497355200201, -0.12376019633586835, -0.12517063291364722, 0.09261122893762161, -0.043297121445978054, -0.043722468066437356, 0.04297388259263549, -0.040813130171754856, -0.04062354146804099, 0.04046550091478696, -0.04152324444560627, -0.04062993369184424, -0.0394731147055459, 0.0354576781201372, 0.03393807017990759, -0.032197414593547746, -0.028538687586510018, 0.02628071235623807, 0.023934023651750284, 0.021054879652271215, 0.018374902002307507, 0.01563229412958263, -0.013644662229033395, -0.011255251072350784, 0.008514655869407233, -0.004048836416689909, -0.00808428715253233, -0.017600283746434534, 0.02456656647443639, -0.03169709435169928, -0.04489577827427873, 0.060021986170257245, -0.08256771935121596, -0.09180034051619637, -0.1001585136181244, -0.09298135541333416, 0.10313060053797621, -0.11239410981235937, 0.12483763900038262, 0.13267549236723045, 0.1401361502984593, -0.13216596494404576, 0.1366324648584587, -0.141671007769691, 0.16742444144285162, -0.17752945785537536, -0.18029682779241912, 0.12720944379028465, -0.04963077053464838, -0.05166779354355648, 0.04429977595791829, 0.022026897055140323, 0.02867695843953358, 0.038745958656139265, 0.05844330411470502, 0.06135426256733221, 0.0636991359988837, -0.05117752273425768, -0.05508229073156966, 0.058326739825251606, -0.07244846477256432, 0.07479279171752123, -0.07696864710691695, 0.06427609332506702, -0.06396729683203181, 0.06450217664132052, -0.08012262330239245, -0.08481250446789551, -0.08480300698687628, -0.05954930513090999, -0.02609275649072135, -0.022554666330333, 0.017998789753277476, -0.011930054081782432, -0.007568529644751666, 0.003192241619646892, -0.0009396071483904547, -0.005107940873549086, -0.009250040059396728, -0.013004854148936982, 0.01740131869344426, -0.021718206870571875, 0.02417112907286262, 0.028458295894572463, 0.03259349261208651, 0.03366619308584344, 0.03744911647437808, -0.04136802814042985, 0.05448657149639783, -0.060261179049601016, -0.0637485765720803, -0.03867189972386394, 0.02251575337611348, -0.03332756633374305, 0.039287985814635655, 0.0454244931580157, 0.06013681334144747, -0.07613779188525095, -0.09525786051709083, -0.10678616391216046, 0.11769466380396187, 0.11931534660157037, 0.1310609199920215, 0.14180555750955068, -0.15070780226747763, 0.15941129636679086, -0.16761964822043887, 0.14899523520194666, 0.15361095851590126, 0.16046796515152, 0.21862818567512013, -0.3164199702839115, + 0.09849911088977588, 0.11831157649424134, -0.04344600371710354, -0.06547224067040933, -0.12200268244774086, 0.08117725534701285, 0.02389721225442527, 0.10998766538383686, 0.10840200961072725, -0.015117944730581853, 0.08887267737295362, -0.12201889635585175, 0.049812665647108054, 0.05952370981592192, -0.12092784280419573, 0.08719899191301973, 0.01632126236912869, 0.10705968413122618, -0.11469848444825374, -0.030041236074385032, 0.0798072492020356, -0.09270681703521706, 0.016313642913296924, -0.022940883438317478, 0.04274975746987877, -0.02722887079023709, 0.007947735075954636, -0.037110258917279745, 0.037740769131317416, 0.006699040968033058, -0.029554162277734747, 0.04065409639451568, 0.022097590289245763, 0.014284617635450808, 0.03826763009343232, -0.03381961302485774, -0.002490272846581341, 0.030540009959715335, 0.040063317764377535, 0.017760984174590547, 0.01933470938932379, 0.03833855472086058, -0.026312354255281795, -0.005253192994180015, 0.10651654299455579, 0.1240610555984159, -0.040951883067780706, -0.11776590293597859, -0.18072633606155353, 0.10111540475555819, 0.02806745094461129, 0.1408616007853677, 0.13979827585384386, -0.00029986410445929446, 0.13249286798156476, -0.15924309915510498, 0.0638776733687671, -0.08411058960960309, -0.16566462398921336, 0.0993196461124774, 0.04145645887217192, -0.1464281275150453, 0.15550211881919548, -0.034901159246784615, 0.12176019865084019, -0.12743210209906228, -0.0033900177890426406, -0.04976133167894353, 0.04684968403245206, -0.05468347525447323, -0.09007798741856571, -0.05577545652665339, -0.008929699578092167, 0.055724650758574065, 0.07455597540163597, -0.013040494807861722, 0.04864725425039306, -0.07180784381994294, 0.05034407834080996, 0.018600542547087668, -0.07341593344905546, 0.05524345323255369, -0.0021834709242217775, -0.0504539148268841, 0.07764417592434168, 0.03458375010933187, -0.041692901059719234, -0.06079211907330509, -0.05285456227377325, -0.03225701924083823, -0.013104715849931788, 0.0538005519553325, 0.05318127623824864, -0.010077437609151207, 0.038829314622825115, 0.05675049309620023, 0.030014303442724582, -0.02338587258414292, 0.05893382276227341, -0.04675858315552351, -0.007613299317265836, -0.05588814466656716, -0.058897286499305215, -0.01157554147311975, 0.044373067836456816, -0.06604764631727375, 0.04534477882985255, 0.012226006147004533, 0.06463895442632196, 0.03497644380243225, 0.11729966865191897, -0.14481515974904902, 0.05158724295908117, -0.13296453127403068, -0.2044182772863734, 0.11335048117864893, -0.046987295986584146, -0.1740438695928762, 0.1644907248467638, 0.006489842707371911, -0.15366969241777648, -0.18952207823440534, 0.06830496272059286, 0.10817612595588222, -0.19599210640594883, 0.09766836226955622, -0.05820413308120496, -0.1691721299954182, -0.20147707727993056, -0.036788121752284984, + 0.11551680685789537, -0.08095730373843961, 0.058748316385298906, 0.12134485868993161, -0.026143049482543264, 0.10301115781973492, 0.09681564900334248, 0.036281721615817955, -0.12164648151696203, -0.05410861667961968, -0.08503790098370896, -0.11421233986644583, -0.002458258962205641, 0.11355488205480689, 0.08150088903578098, -0.05797775763953795, -0.12140029712057504, 0.025353981941875943, -0.10568957956353454, 0.09961782307747438, 0.036937826916111534, 0.09329305551172651, 0.02600170794539597, 0.024133266477957147, 0.0416863818288237, 0.006219018303877298, 0.035705965926614514, 0.03133061541024066, -0.014880677616144004, 0.04263029775843305, -0.014495846794607067, 0.03217605995102077, -0.03488455392809575, 0.007650473138445333, -0.04042771533623144, -0.018328417659970286, -0.0275710902570721, 0.03725120197131521, 0.0030320324728048548, -0.039219425552008844, -0.024481422744861873, -0.018740364977504476, -0.038416357268044654, -0.00673279259063201, 0.12079928548289606, -0.08836963967106892, 0.05542526020993369, 0.17927033126636174, -0.06948910926707223, 0.13730115278882704, 0.12494460309450123, 0.04746517438544162, -0.15528724583214384, 0.09360826472112596, -0.09558281503160604, -0.16010753574349018, -0.010737778327271463, -0.15168994318668047, 0.11753440741499897, -0.05799756855594274, -0.1584204993893108, -0.05389480927219773, 0.13669279173181806, 0.1513042470027166, 0.040143122109210436, 0.12953138939474976, 0.053112395512300126, 0.00905470221466106, 0.04642594633144151, -0.08850709792720313, 0.034419726099331575, 0.07191514186022227, -0.04582020223500198, -0.04225936643099561, 0.07245741736039893, 0.029870862855399482, 0.05130387374730229, 0.06547728737173826, -0.016658968952934408, -0.07857060191908118, -0.040219183702655224, 0.04064871462534434, 0.06267902314778777, 0.003510424833921994, -0.07093929966914118, 0.05940848478465962, 0.03583999328440727, -0.06333562245117927, -0.028228884691114328, 0.05210624876238914, 0.008699485091909343, -0.05316512874730809, 0.04484012771016975, -0.021687998000368473, 0.05657962487109505, -0.016001214040340342, -0.04607230518064524, 0.051437949188233995, -0.011226361959249826, -0.06027316571716071, -0.03946268757705726, -0.033357717472690056, 0.0630856901443748, -0.013642046199223799, -0.056629654393040595, -0.048078851977738715, 0.03361321625352319, 0.07083274138512337, -0.023363338949565174, -0.030420267601191608, -0.1421581354240466, -0.10234650900420415, 0.060421589441060894, -0.20437193203070253, 0.0910487670574816, -0.1428022994489928, 0.1623887307756585, 0.03786611115304154, 0.18635376664915748, -0.10982675228070524, -0.11135831742601825, 0.19523872775483928, 0.04027077474666883, -0.1637962172090856, -0.16413250111283337, 0.02102898676579559, -0.17083524676890444, 0.07055379118705085, 0.17251876215115103, 0.19613106351160417, + 0.02632888333391494, -0.05164192264014253, -0.07529671054233637, -0.09569234135286679, 0.11203088974599616, 0.12314920985324716, 0.1272241465482988, -0.1241369023740626, 0.11381955833748884, 0.1036591046323534, -0.08587473889540212, -0.06489593230266211, -0.04545845685912855, -0.02067978877400852, 0.004853638818473985, 0.030208442001492825, 0.05408704866976147, -0.0747409135367491, -0.09232385691483372, 0.10735702388584527, -0.11752280500881579, -0.09241685387331551, -0.04194312168163149, 0.0405661460222931, 0.036579166100778854, 0.03269079085642637, -0.028303245868325867, -0.022740723297472114, -0.01484343790946977, 0.0059983357461873745, 0.003154030308297933, 0.012646152045838976, -0.020922272264227895, -0.028540343705054004, 0.03656841592209353, 0.040974205480544694, -0.04343351087604113, 0.0435275481908768, -0.03982071898413807, 0.03385131370095778, 0.026591166591485225, -0.020582339076428497, -0.01324689624249426, -0.004244548200197954, 0.025504940488846137, -0.05180380602400209, -0.06627420559615835, -0.09990344671979555, 0.13531000255823747, 0.17513938613652008, 0.1664339982339712, -0.15660887685962938, 0.14006891100868388, -0.14882339098920472, -0.13494504097473356, -0.11313460872857949, -0.08263207879547921, 0.051495589444205146, -0.01823897173195936, 0.01367557570899944, 0.04487008910385015, 0.07415442559176191, 0.1061706591728287, 0.14434840907168006, -0.169480208823958, -0.13873025107354942, -0.05326289346934948, 0.05415969484314415, 0.037895003863054305, -0.04190118562851727, 0.06284008441562212, -0.09824510205682918, 0.08753278146042714, -0.07612600918173547, 0.05989712397929669, 0.061104836670794846, -0.050477231354232266, -0.036432377825672935, -0.015285515003944507, 0.0027135597895332564, 0.02093545984005505, 0.03959974630024544, 0.04732778334517899, 0.05277521407826606, 0.05828056246738134, -0.07217042659289483, 0.07807760824245127, -0.06269552313049917, 0.01626260538156394, -0.0025668136689197835, 0.010432767098575853, 0.026356478545126672, -0.042097332592755284, -0.05671336157034001, 0.06401792273308164, -0.06472032912571665, 0.058768195746519564, -0.05297358005647698, -0.04447048604969236, -0.03651244393149566, -0.0331319477549735, 0.02827739277453784, -0.023328602003928316, 0.018040857562317655, -0.008107210930044127, 0.003097286158571774, 0.016141194169108766, 0.03144467229832692, -0.051769611110976194, 0.05998436941167358, 0.047299214799001524, 0.08070724816501193, 0.09926338913061823, -0.1426044041281193, 0.19783108606451918, 0.2566170580170624, -0.26644935348136894, 0.24401661278535233, 0.1928156551015785, -0.14815892903923833, 0.09617432906455053, -0.046659797374782486, -0.000191026831193247, 0.04611771000621531, 0.09440205152769819, 0.14876930754454093, -0.15031722075137527, 0.11183588642675513, -0.05103972295453006, -0.02085252883116908, + -0.08706569410540044, 0.12377658795835163, 0.08944829794292902, 0.0035436714441764794, 0.08460480652409667, 0.12317465426342705, 0.088521038087991, -0.0013025167563605125, -0.08658341726003696, -0.1287293368930463, 0.09163893911224683, 0.0014877142533866864, -0.08866203459679858, -0.12146545768129172, -0.08359549683239748, 0.0042168947830257255, 0.08893723002294272, -0.12069799729337116, -0.0816208067502402, -0.00226280657171064, 0.08572830160259746, 0.0894236622867785, 0.017511596957290893, 0.01577296406639933, 0.03881778658685956, 0.04203371859090747, -0.02166137740672725, 0.011528505647443605, 0.036379564378230325, -0.04030383499976259, 0.02032295232315887, -0.010349586713964555, 0.03408644945996214, 0.0383404612675106, -0.022560381356618663, 0.007695767975920885, -0.03334289984770139, 0.039188472682328855, -0.020586362410115893, -0.01017753435568224, -0.03641837044520261, 0.0428926647459231, 0.023884583880826114, -0.005895182470897317, -0.10082180015505719, 0.1414835153206959, 0.08503929841452551, -0.031652693049693474, 0.1116691177673351, 0.13488860347820802, 0.054135127226626674, 0.06323041923307685, -0.14178579832024107, 0.17157016748151138, 0.08236983589276271, -0.05637516182650446, -0.16104157326713694, 0.1771733248188745, -0.09079407563305571, 0.039346493893489515, 0.14802220435134533, 0.17087339496635673, 0.09389498708633924, -0.01123215975465958, 0.11498112126491349, 0.11172843429215254, -0.040649839655487685, 0.0977989272598893, 0.07104857267844827, 0.005893108378492927, -0.036037941307805056, 0.05480069229605285, -0.02239193845346644, -0.02720292811570909, 0.05888227397557365, 0.07886342833859201, -0.039726521766180856, 0.02374527021323624, 0.07171738122338718, 0.09201616209171336, 0.06152485051908326, 0.006263867489687249, -0.05877759979023252, -0.08758746670003617, -0.06542037006105288, 0.025339352848108114, 0.03496747019813987, -0.05644836481290569, 0.05102843146016907, -0.04834706538763422, -0.017840949165415766, 0.026843036518193083, -0.054238452184936004, -0.05075884696739747, 0.014918543434871165, 0.03104125432185019, -0.05734009070850778, 0.05340074647679033, 0.017676885238306475, -0.027862502519816333, -0.06181709805856153, 0.05879250870154035, -0.023655269758998492, -0.022825251070578947, 0.052110793784904824, 0.04541615660876148, 0.007189252971208893, -0.027578160638695982, 0.052886843431032865, -0.04421573834462372, 0.1287406764825625, 0.20688706233024728, 0.14881653541711357, 0.006474772567868013, -0.12918307618589425, -0.18471073604474983, 0.11038032838718623, 0.039450306516705044, 0.1633380316334929, -0.2105876936366886, 0.13079531505521744, 0.017965621465334973, 0.15862975874659982, 0.22055311977728342, 0.17110945852001017, 0.050223260022736436, 0.11231621639857818, -0.18557812052793074, 0.13981396925383355, 0.07765260594526857, + -0.12041247390823083, -0.05084096664098892, -0.09934554291063229, 0.09250166644136523, -0.060639459065330935, 0.11812965195164628, 0.00970660443982397, 0.1223908504136136, 0.04274546632979541, 0.1074866798532031, 0.0919973282052471, 0.06915170765200693, -0.1158531282007319, -0.01250179690794514, 0.12054836412984606, -0.04002725643146521, -0.10299515941269576, -0.08438542917685356, -0.06760633124573061, -0.11008476277245079, 0.021783739461685193, -0.08818844281510203, 0.02491167835759741, -0.030054995348295727, 0.036655338174828876, 0.01742392996057025, 0.04273565721232372, -0.0006918590177720143, -0.04112502125571273, -0.01740354070963808, 0.03353270415257467, -0.029639686885516693, 0.018747318334399094, -0.0376237758466503, 0.004872432952973283, -0.040082101740191535, -0.012187000135581575, 0.03463154694677526, 0.028002316765402442, -0.02250779961114847, 0.039846081621469596, -0.006690959307437905, 0.043818346627036237, -0.007781068145346474, -0.1394440035228339, -0.06016292055260353, -0.10049702806745796, 0.11754740931921599, -0.025015636712615558, 0.13495790097223123, -0.05582470126123085, 0.1290667987986039, 0.10872393410731046, -0.10981411821683962, 0.1649915488272952, 0.039730019587942304, -0.18395154791752813, -0.03219666919473544, 0.1714627909857566, -0.08861491823254133, -0.13222465258853652, 0.14183786571215531, 0.0726639772686059, -0.14402342872241222, 0.013953698678175884, -0.10719764406341892, 0.10658955145696862, 0.004689222390625417, 0.08242757197805603, 0.03914961736799151, -0.012171180245505415, -0.05027280613037954, -0.025950067216443096, 0.05240319902960335, 0.047300311893923114, 0.05133684230016629, 0.07558227358310739, 0.019336508216156175, -0.08956968147471596, 0.0027411669603051403, 0.08963988468092955, -0.02497194164747825, -0.07983531129354451, 0.05796969449941377, 0.05923603886300253, 0.06132267464245761, -0.0370812897391747, -0.05519325629750618, 0.03936183860437697, 0.04181647852442865, 0.020552685239052224, -0.05654094257741954, -0.005626420608860737, -0.05444374844511157, -0.03054236725382179, 0.042226189689660916, 0.04942974622968137, -0.0247402505547357, 0.06050095592474849, 0.0006940655231167099, -0.06109222398611571, -0.028133282827339675, 0.04903190991715664, 0.04443521400974751, -0.024718811160282173, 0.0559125245067279, -0.003890889888319568, -0.04712907790005385, -0.021159233596660467, 0.02815633410648609, -0.20620132598328245, 0.0665394301753563, 0.15539329566217977, 0.15356974031689374, -0.05737660646890665, 0.1818914135335348, 0.037802248710972985, -0.17478591544883137, 0.11677175227297679, -0.1425813509597687, -0.1832139083841093, 0.07216983398594633, -0.21099754947237342, 0.009201844736666735, 0.20662187329723855, -0.06413578154754078, 0.16265727929469714, 0.14797206327182807, -0.10606713354789009, 0.09128575858003186, + -0.043052580510408237, -0.08072125971603471, 0.1084029076004056, -0.12251748515756829, -0.12062304106419798, 0.10359484350083328, -0.07385782524059217, -0.03462531706848049, 0.008940094403242005, -0.05152254025255222, -0.08960344434220394, 0.11650069018115324, -0.12085978784503437, 0.11809774394783304, -0.10064823987365981, 0.07159133651497404, -0.03312803489834311, 0.009635730742337093, -0.05203665035803527, -0.0865202888075921, -0.10985203652763992, 0.08779287974571533, -0.04380228932408395, -0.04162771033306453, 0.03350744346812586, -0.019564145716672386, -0.004747626039000648, -0.010781584979861408, 0.02489392605292481, 0.035132182356528215, 0.04088403008877888, -0.03881332479483662, -0.03475137080895035, 0.026239963106762743, 0.013049466796913593, 0.0011148931972071816, 0.015090135483432547, 0.026778075882036588, 0.035656822562587266, 0.04008680710393075, -0.041961668711197095, -0.03714305559415508, 0.026741943969909417, -0.009070276403637357, -0.046960778396828565, -0.09077741893857369, 0.11221426996012082, -0.11379627130146301, -0.12807332957834563, 0.13025888956168594, -0.13756755501438378, -0.10329623800766859, -0.05658394102383085, 0.00927701710680687, -0.07208458686114241, 0.12587096541551634, -0.16819370034865752, -0.18393800982525751, -0.1768720538909761, 0.13045492216869728, -0.07804519719915623, 0.017866233213695456, 0.04853637890582898, -0.09674453237997603, -0.1316303385153309, 0.1050139700008871, -0.07202252590580693, -0.09495609232623796, 0.08760781672524477, 0.04016109686378416, 0.044705998067161364, 0.04744605293623587, 0.05937166866085337, 0.04568953301957798, 0.026767513751105955, 0.004465230802901325, 0.033348349757573746, -0.05806912602834311, 0.08708725149615897, -0.09110286235723002, 0.08374892680142816, -0.05123736179245669, 0.02048943941238863, 0.011210846413259506, -0.04938116846002641, -0.06974840584038676, -0.07912681785482341, -0.055397410735028116, -0.009659285027154489, 0.00903989639103652, -0.02501841919370147, 0.039187095734098884, 0.05111288774940456, -0.05692526760386735, -0.05711438263898831, -0.048304008747732864, -0.033490452449041, -0.01225890047147454, -0.00971193079770433, 0.030638220296125347, -0.04523503694534929, -0.05762056218090259, -0.06267141857269089, -0.054674611651585915, -0.0445226155616854, 0.029424988255844345, -0.01361997350088444, -0.002923217415207716, -0.020641908570928, -0.02156115914141839, 0.08053031536129153, -0.1418236443130521, 0.16533280127407815, 0.16409625110525083, 0.17845678097980933, -0.17359050632099235, -0.15994765817779916, -0.11243876199118703, 0.05116476051214226, -0.023794024186721677, -0.09668354492562461, -0.15766180681532121, 0.19721750967614582, -0.21201479168399118, 0.20000066525503415, -0.13366943831205005, -0.07349955487586686, -0.006974475242092011, 0.07722994026114316, -0.18153053353760662, + 0.07388965686153623, 0.11828959691990706, -0.11551636461293281, 0.06695112505174725, -0.008801646436090407, 0.08094653624408273, -0.12084541650363223, -0.11233912089016454, -0.059032013117266885, -0.021103985388665467, -0.09315855464963557, 0.1281284689707416, -0.10336989656837081, 0.04392524661362836, 0.032678937317112564, -0.0968578668371214, 0.12119275092887644, 0.09712669028287389, -0.03521456243790096, 0.039805778544940836, 0.09941405136837998, -0.08775567591651814, 0.021796054470051184, -0.005417098788043372, 0.029650298744083217, -0.04241320534848527, -0.03991084755004123, 0.021566464615271085, 0.0038863502572384937, 0.028181479015925145, 0.0411486111326468, -0.03495733866394875, -0.01747141872530384, -0.007115298137170768, -0.028319224745892643, 0.03981217357348988, 0.03545447721096562, 0.01650578929211061, -0.00896435796257787, -0.03080291905845922, 0.04277958144727987, 0.03584699485172195, -0.013589785410091367, -0.010368693233583932, 0.0898027850759275, 0.13794867402124278, -0.12032270482381024, 0.025496062757896922, -0.05525505129667621, 0.11910743736302015, -0.15010107883150223, -0.09628781744413514, -0.005241305490001944, 0.09447356462043867, -0.16890558707627457, 0.17571561553770854, -0.11798849129246307, -0.009679853383262072, 0.10317401577008704, -0.16099217669473367, 0.1731768304452546, -0.11797685750267481, 0.022500278505312287, 0.06991758250685352, 0.13673971754764835, -0.10411637688991446, -0.031075074463258946, -0.0862227567413528, 0.08820501083204225, 0.009803051588577152, -0.018359042028786687, -0.04400757734171184, -0.06197362799195478, -0.03696142009399102, 0.0016602933547678993, -0.04404658973026733, -0.07806519748156267, 0.0807171344592907, -0.06561601288393963, 0.014584663785686363, 0.04301845118069262, -0.07252413132162702, 0.09012476296249593, -0.0731924884344478, 0.03708082995400287, -0.00931349399694882, -0.05524666809887264, -0.056399625533213385, -0.04917344966505791, -0.04998037535925608, 0.029275277777043376, 0.00878884023901369, 0.040759675494538725, -0.05672554603511447, -0.05166161377282777, -0.024442746782980408, 0.012407983512153777, 0.04472908570580204, -0.06134122042133079, 0.05303097118654638, -0.018605555885693466, 0.021488771031257473, 0.05258445828514202, 0.05774721937894192, 0.04540290503237583, -0.015997503713249452, -0.02257821827665061, 0.04468766664150563, 0.047898281224411726, 0.016174707144096512, 0.12429763743908093, -0.1980874276194908, 0.17242367859704127, 0.04204207296158829, -0.07078078429244722, 0.1589325994777436, 0.18978744978233733, 0.1316465813582394, -0.02211181566283766, 0.10370616561690263, 0.19496361761914405, 0.20686885074926759, -0.13215501138042804, 0.004094279151931111, 0.12514049701935284, -0.1802446099903004, -0.19441612345168663, -0.13913606510975696, -0.04478182711192848, -0.1116667555806757, + 0.1228980844745955, -0.018184953187318477, 0.12049920182564314, 0.03559767000611541, 0.11546482044485988, 0.05217550187978894, -0.10794846318131782, 0.06735378247883926, 0.09850643447418131, 0.08693330240985266, 0.08838506668064858, 0.10055003932874645, -0.06648382008558955, -0.10648439731798809, 0.05067277571854806, 0.11366767472569436, -0.033262757415728914, 0.11849839493912248, -0.01750763041008508, 0.11892902299755713, 8.942468960652754E-05, 0.08810535237263507, 0.020610608762314207, 0.03701151857071498, 0.02527616441693933, -0.03465244690610671, 0.028775775678305665, -0.030786777334354413, -0.03071290209656466, -0.0264759899051035, 0.03427248474748704, -0.019342570934814687, 0.03544528917580648, -0.014021918260057224, 0.03806078511707316, -0.010622809818431337, 0.03944157128860758, 0.004697508283558223, -0.04040721025731449, 0.0008743153620166398, -0.04226970796406403, 0.009086040716771047, -0.04211768163756823, -0.011889595094671074, 0.1419235111163252, -0.027301239091964254, 0.1242168285726707, 0.08193433335298468, 0.09327775861668341, 0.10237137581735192, -0.08726802476640667, 0.13381706615909117, 0.0661649658663084, -0.16511679532374582, 0.06280071159773921, 0.17473695645339293, -0.04327690530747122, 0.1818305366990281, 0.01650977404167523, 0.1777255007582489, -0.012921230716964643, -0.17550961329269302, -0.0046224156938176365, 0.15028429482589115, -0.02517732591230944, 0.10454498885978189, 0.10456566053746165, 0.020956273922894245, 0.08388289891408558, -0.028419794679666842, -0.03211600401951143, 0.04044182456053233, 0.03236693883718244, -0.05811830163988085, -0.023651823343841, -0.07640704234804543, -0.027470185119510732, -0.08092253291401008, 0.029476268486207338, 0.08863584145742853, -0.015200918593991704, -0.0873106383585821, 0.024398425616334662, 0.08714982492706837, -0.022844202646389117, 0.07678035170393145, 0.014515630901601672, -0.0583932021960966, -0.04089966911543229, 0.036395041143430396, -0.03283139225565739, -0.05026541851453224, -0.022749040482358023, -0.05395951832277765, -0.017030228841058256, 0.057112374383859466, 0.01053949681291351, -0.0609473731324183, 0.003467389321298715, 0.06217474871256598, 0.013673304682588296, 0.06009363971598561, -0.023461786830517337, -0.053066358832587694, 0.023431482642617855, -0.05095553871492176, -0.03063401100709677, 0.03333505679511914, -0.042338539597820496, -0.009740965138349131, -0.2071376583167854, -0.04248690012216182, 0.1753787642969512, -0.11583161064234053, -0.12652370177538533, -0.14029628341584832, -0.10939829270125666, 0.1627753240504164, -0.09194285273340017, 0.19250690035309614, 0.07176157864415388, -0.2084484256979382, 0.02804748757076291, 0.2133688942241654, 0.013291946428678564, -0.1987650034839628, -0.005654936725697688, 0.19590621425563137, 0.008390957939538339, 0.13153207574437606, + 0.058914579995266524, -0.10391037896126065, -0.12495554173183626, -0.11609906535957168, 0.07933486855624554, 0.0232987294211079, -0.03846935529145148, 0.090563546701692, -0.11952472069661457, -0.1253642674432207, 0.09711173729738035, 0.045973176611981775, -0.012795264756407408, -0.068030005325381, -0.10668423019846969, -0.1184182758160095, -0.10178199723965507, 0.058921217958971525, 0.0009201763196032792, 0.056124527312491075, -0.10004937090475843, -0.09013276449693654, -0.04490206515521948, 0.03856581554219471, 0.022465254053299473, 0.0008831334659514817, 0.019991053714660038, 0.03628697590505772, 0.041102362249139185, -0.03577940051678171, 0.02142106914200232, 0.003378706660437032, 0.015331867725336807, 0.030571565295970982, -0.04018345485031931, -0.03787653276862589, 0.026334854032425543, -0.008353021363743055, -0.012197267809673937, 0.02959152767360458, 0.04086533224232871, -0.04475880108007615, -0.03736482897492072, -0.01622066781042522, 0.06021559904777219, -0.11294696492111686, -0.12047256327812646, -0.12644377457959163, 0.11680238906891942, 0.08444407787730543, 0.01929681437415973, 0.055424647570242826, -0.11541023865918429, 0.1768753779509618, 0.1739662297646213, 0.1266449872091173, 0.044422846593929484, 0.0466608159026134, -0.12731152558435746, -0.18005815524077695, -0.1659042181529459, -0.11511426903391339, -0.03332582445844565, 0.04016224751765334, -0.10558406306833511, -0.10712595127113175, -0.07981393387278884, 0.10174706560536434, 0.07147169345162024, -0.04476525795067981, 0.04595035581530106, -0.045055514142128494, 0.019521813383859277, 0.01381325615786658, -0.04236451763372156, -0.07912117477226693, 0.08158649015486465, 0.06265549831099802, 0.01895272921940736, -0.024164423283793927, -0.06284304230893799, -0.0920973265693501, -0.07615828178431445, -0.04286643424354339, 0.006593102344854215, -0.046345352190898616, 0.07428525039935113, -0.06519452765119696, 0.009584580332375862, 0.014129684219135004, 0.032738114223559656, 0.049788225706669076, -0.05782495294918961, -0.05274728593840985, 0.03153622550840075, -0.0005050863402285433, -0.030683664748121797, 0.05685552747470615, 0.06860165032602002, 0.06763689763410115, 0.061547281908753665, -0.040385632627672974, 0.011220012429050302, 0.01910863899439089, -0.04129590608317705, -0.04863662910966437, -0.04376634026018864, -0.04227107640385604, 0.0362535464587042, -0.023810538848417762, 0.08004630733473718, 0.15541296211583058, 0.17353004286345883, -0.18656767242999403, 0.1865859140144951, 0.1504970768006171, -0.0642655224680613, -0.046375519982271254, -0.14223476445650035, 0.22072252105426768, -0.24190502658641225, 0.22223874108830577, 0.17284758349514578, 0.09884742304712431, 0.009811822402272031, -0.07569534208421941, 0.11920584625888273, -0.10819966840684887, 0.05723330816587399, 0.025858886294461106, + -0.05923471763320456, 0.10430649306439436, 0.12503847428937165, 0.11549662444885338, -0.07786222389524183, -0.021094727780821686, 0.040903584426519125, -0.0924965127658593, 0.12020312197467944, 0.12429600266521296, -0.09424686124025286, -0.04170740044754607, 0.017819522942179897, 0.07219970557203892, 0.10880007759501957, 0.11762652452160065, 0.09796117767243122, -0.05277020520923296, 0.006241132816966297, -0.06268552654085643, 0.10421880670316234, 0.09054156199384238, 0.03357143009259374, -0.018152220327617607, 0.0015690090520861667, 0.022315946993755886, -0.03728857314053556, -0.0433893445040701, -0.03604580809867705, 0.019455938311789916, 0.002049968592002838, 0.023704040461149163, -0.03827038223934346, -0.043934818399685875, 0.04149003549578641, 0.026580843545118492, -0.0051632090923979836, -0.01734276223382375, 0.035108520789787497, -0.04381820049118311, -0.04250160844009333, 0.03421280361453991, 0.01687438954026073, -0.0028321970202489794, -0.06922221094371797, 0.12100985004736256, 0.12455120012005506, 0.12444402198552822, -0.10976199876693496, -0.07308569445469973, -0.008860629408464648, -0.06278230969649454, 0.1178122309973834, -0.1736153802933725, -0.16599074060338934, -0.11549520167417349, -0.03280737312920501, -0.056438546105367166, 0.13277332940916176, 0.17996848961325662, 0.15945655640234432, 0.10344233623068992, 0.01814687021437776, -0.057079925391655746, 0.11904784368491543, 0.11208531864796335, 0.04973611428035519, -0.04698064175231607, -0.02271525926149953, -0.03307283851120825, 0.06389662193406247, -0.09609812813622345, 0.06705591522050798, -0.020532972170762685, -0.029765446507323132, -0.08955599227985075, 0.10845271581368779, 0.09874845981729319, 0.05035033227404411, 0.0016783746917057212, -0.048000730106801, -0.08904481493906051, -0.08713967882778541, -0.06448912544344217, -0.02199920676143953, -0.012804770620090444, 0.04625642712398345, -0.05227002412582551, 0.04496485024193897, -0.056810496711499674, -0.053274797272550224, -0.04154165057722915, 0.02453473481921976, 0.0017925454647879247, 0.02060584443910192, -0.03716981987619194, 0.04258502937204151, -0.03975616514137516, -0.026853281489390993, -0.008722634622819329, 0.01020672479006265, -0.02640548640133973, 0.03699628327078888, -0.03914057532255107, 0.023739207764512504, -7.62586898496783E-05, -0.028127288668525038, -0.05384483048378015, 0.07646890456736469, -0.07303891066611193, 0.06566046910979875, 0.1421906869551692, 0.16502818260526103, -0.18470281454004916, 0.1896537498289168, 0.1574836420038569, -0.0719126695785603, -0.04065962164560858, -0.14011161780323542, 0.22229291200175327, -0.24607246719601536, 0.22761056822943487, 0.17804708601180247, 0.10261149175832576, 0.011264897346010891, -0.07661372259954125, 0.12175866896233334, -0.11088346356125953, 0.05879078154060783, 0.02660335598622427, + -0.12292388904460362, 0.01746112513847571, -0.12073787988114669, -0.03420111173055649, -0.11611367963921301, -0.050188781545476006, 0.10916334042836727, -0.06489239238791807, -0.10044178410556405, -0.08421347998605436, -0.0910975667558694, -0.09768572128381164, 0.07035028428598722, 0.10347992209784915, -0.055566407283056354, -0.11097954505576027, 0.03917492386590864, -0.11638622512660886, 0.02450111677071865, -0.11783278074888626, -0.008019637533940697, -0.08819310743480456, 0.003925131892806039, -0.04092444480236515, -0.0017370486464205748, 0.043374962827709085, -0.007108296086059437, 0.04278998201130877, 0.01054550019403578, 0.04207688454388635, -0.016100907110215536, 0.039478693710951696, -0.01910850337958891, 0.03684033157605025, -0.026233181630086772, 0.0347407340469697, -0.03089605528561471, -0.03001919751178065, 0.034518326825916754, 0.025382366964538477, 0.039323216864509465, 0.01631986085668242, 0.04281276315270838, -0.0065776274053857995, -0.14674213129902566, 0.019777010409217307, -0.12941548087880153, -0.07247153765204616, -0.09874339125025643, -0.09268374703866025, 0.09212523725924271, -0.12398662239061226, -0.07307594793067597, 0.15662268682370128, -0.07023521952572422, -0.1668266136925475, 0.052633010131073237, -0.17530828602089502, -0.027935781595032246, -0.17373336578939377, 0.0261550594353772, 0.17342104563262078, -0.011371118813188643, -0.15229750293926925, 0.007659559918953965, -0.10825310254674671, -0.03589066068098103, -0.033399383639709124, -0.030191202871712536, -0.07345576065386734, 0.01481555439341703, 0.08130328234345525, 0.005782080686506283, -0.09643399263266171, 0.006430650197950131, -0.10568150352024198, -0.003403806826266364, -0.10713469183699212, 0.0056691221338898605, 0.10630407376470397, 0.01121172088787365, -0.09620174849868898, -0.002698158705640813, 0.0920439989517857, 0.008583719891114738, 0.07185320580589664, -0.018400465289709067, -0.05010968546954478, 0.05148220169471523, 0.0145652530501894, 0.05032230618387114, -0.005064002060763832, 0.04642200429828757, 0.0016669135323403974, 0.044437825112636845, -0.007180425590594692, -0.04367377662065479, 0.015790106038842427, -0.041689385044599576, -0.023146919982186705, 0.0357005570612687, -0.026490262278308814, -0.031127160952163987, 0.031148880997977857, 0.031894179888333644, 0.033157181607716905, -0.03585763014224902, -0.04040713404421557, -0.029411805963416755, 0.03445037399976653, -0.19972616156379647, -0.05197342076977613, 0.16791293731876972, -0.12549478093131902, -0.11999574348110864, -0.1483961928492457, -0.10396712326511445, 0.1698637334683552, -0.08676590050293587, 0.1982053264843698, 0.06729798420375206, -0.21296312400759315, 0.02390715860976765, 0.21689940116050918, 0.016789253014053318, -0.20121959572602086, -0.0035767465685976074, 0.19827413049486672, 0.007153935218789247, 0.13247948273502408, + -0.0735974037609536, -0.11808311478161612, 0.11589900257361406, -0.06817747819425808, 0.006984136265369182, -0.07928811879668926, 0.12028163864606967, 0.11352212169800328, 0.061888450684088644, 0.017600510224648837, 0.0903183513488616, -0.1274152999736902, 0.10554612985302657, -0.048662770900120444, -0.0271044354145559, 0.09270677140596127, -0.12046847312821893, -0.10055225323157144, 0.041896141505118514, -0.03250757740383607, -0.09458325009372753, 0.08771380073886272, -0.03659032166445194, -0.018290079815133448, -0.006959446681134421, 0.030868523315319304, 0.04316720709260419, -0.038626679204201396, 0.020634376786254065, -0.006781506624969808, -0.0314132685314837, 0.04185875915203071, 0.03864726010828768, -0.020008555126450694, 0.007514297603599283, -0.032557977164701796, -0.04469829254870088, -0.03842616118140499, -0.017513627700096526, 0.010214405109066236, -0.03571145354530814, -0.044570776788956795, 0.035037670024057624, -0.007958449948552625, -0.08598623803550952, -0.13958058721906672, 0.12655552113882673, -0.03497214695073363, 0.044531327061673995, -0.11139924038264552, 0.14705859298292512, 0.1006186053457183, 0.015431193640478475, -0.08385872078332998, 0.16040753674343697, -0.17333363182056424, 0.12324339679256946, 0.020718541391284935, -0.09065271508321181, 0.15346681771491053, -0.1737793879020343, 0.12689804706518515, -0.0385173007700909, -0.054806520760687635, -0.12942791456084068, 0.10703295683146107, -0.01184015413796055, 0.019804131633105713, -0.03531278678082332, -0.051609116898360424, -0.0742125767581731, -0.07295066649715562, -0.07002963997906247, -0.0150304440831451, 0.04386823732515533, -0.08093529673545541, -0.1070146049346754, 0.09027860727361027, -0.05339314837250152, -0.011926978384983465, 0.07335386193444118, -0.08950533566028725, 0.08969275475000427, -0.05651220905604596, 0.0053133538374799585, -0.03844033003510607, -0.06834708822542417, -0.05021483547176002, 0.009987704485665914, 0.040156033470213744, -0.05130207686485822, 0.03993521083759277, 0.0178165565253461, 0.011412378543093172, 0.03541557706195535, 0.044839331222999906, 0.03676471599895379, 0.011814191694512116, 0.017041745001690273, -0.03927706934186385, 0.04249038886304155, 0.032082577316678074, 0.009054455177723146, -0.01720901101769351, -0.038628512896958435, 0.04545450602912147, -0.042563292043485, 0.019507099527014047, -0.015077699163874157, -0.02696419063114449, 0.12994413675791044, -0.1953388687887668, 0.1642047298382482, 0.03138206486291259, -0.08136495130304928, 0.1655822838951062, 0.19135206360599838, 0.12780810934424333, -0.014834255798228098, 0.11098108223878062, 0.20034958970167946, 0.20884784871230783, -0.13064575541102194, 0.00019495880419945774, 0.12983809369578092, -0.18360989261742428, -0.19634153627682796, -0.13961256097832037, -0.04391724834328165, -0.11351776954059838, + 0.04339419512870017, 0.08127143620223452, -0.10892378908374137, 0.1227190067894982, 0.12022307519566644, -0.1023948010920766, 0.07179609888206721, 0.03181661804627711, -0.012205287643428904, 0.05467526554754255, 0.09227475089477621, -0.1181580664275121, 0.12095006666572079, -0.11635114537468731, 0.09705022539121518, -0.06634579258979315, 0.026815162097840812, -0.01627102721341176, 0.05824417312583831, 0.0913450339275109, 0.1124458136152177, -0.08763155566766691, 0.03506844146510114, 0.025324221096622156, -0.012144644440752361, -0.003865705580641177, -0.01891320408346689, 0.03177898304712172, -0.04139646511423457, -0.04418280446561893, -0.04127404926506196, 0.030187932126803364, 0.017639399193317175, -0.0027534755138018986, 0.012540268752710521, -0.026962594462090123, -0.037931151761172795, -0.043310522875921166, -0.043911434554211405, -0.0389746722306865, 0.031017221117110128, 0.018637730326000586, -0.0031316388185014636, -0.009274175468012914, 0.055812088107775396, 0.09970979036434614, -0.11928392518565908, 0.11622976607008484, 0.12679348493704498, -0.12490690643392373, 0.1281616261407231, 0.09210011926578192, 0.04486491118188272, -0.01828462388017698, 0.07905322109975949, -0.12972381876152247, 0.1682867649437328, 0.17992083632683178, 0.16884334756886024, -0.12004390597692716, 0.06512452385734376, -0.0038476267316888972, -0.06391241398876829, 0.11029056714571889, 0.14077179029420026, -0.1072014460082158, 0.048361164418674926, 0.05048214001962029, -0.03853381176672614, 0.010595411447719149, 0.03629625210646491, 0.06382426411205525, 0.09768381364021307, 0.09151377472068797, 0.07391323504771988, -0.026527349471200938, 0.011449723993388868, -0.048240465789994205, 0.08901185410759428, -0.10376583849392951, 0.10548741652943323, -0.07459988147420932, 0.04741749612982441, -0.016192884121343305, -0.01890474097147595, -0.043188468189989844, -0.06153200698879723, -0.05108736489988966, -0.04101017485919767, -0.05100198930356162, 0.05160627449799588, -0.043101940213141, -0.03423542488206659, 0.021119314029540568, 0.0064814707049539785, -0.009449558009698898, -0.024191107970050064, -0.03502396536409047, 0.04324107608571364, -0.045822456659482494, 0.038660587618901385, 0.02972587041745617, 0.017097885428536255, 0.001467782264525222, -0.01441877408039372, 0.02854809870469812, -0.04706727849325543, 0.05256227009495911, 0.049139736915914625, 0.021598065799330744, 0.06749826099761996, -0.1297752334917693, 0.15645789937163881, 0.16109898099125897, 0.17958480839947122, -0.1784481307922204, -0.16758841658634283, -0.1210641028640064, 0.059458215192065164, -0.01769845538431847, -0.09293994106412418, -0.15659651893262438, 0.19865318259224127, -0.21534072294785353, 0.20433274447796781, -0.13735504679700794, -0.07641848318475958, -0.008700805575148506, 0.07677574868565053, -0.18257603142341908, + 0.12048937113961099, 0.05017447466305947, 0.0999951147782373, -0.09153603126167789, 0.06222685178198358, -0.11747932489011023, -0.012245960626876181, -0.12275411527274453, -0.0396571656110881, -0.10926795309274304, -0.08912057810701188, -0.07267079018890328, 0.11383585839925613, 0.01770564256297863, -0.12063956395279876, 0.0341443452974012, 0.10573039884972213, 0.07905456869925075, 0.07318863001065752, 0.10670096527397112, -0.0294775558683593, 0.08790201925935692, -0.0007898721951537912, 0.03987038217207865, -0.017036209509200154, -0.035858571245092785, -0.03177692012355176, -0.02278912512355686, 0.04128663062878026, -0.006764204661297641, -0.043980578626665864, 0.00837024374366465, -0.039310678014967175, 0.024667366060660972, -0.03018481057865636, 0.039047015879121315, -0.013700412098464109, -0.04426700715073599, -0.005945213055614547, 0.041613563959128394, -0.025350711419684938, 0.029974539673545384, -0.038567672067916135, -0.010729870777453708, 0.14498091748449998, 0.054148631753386564, 0.10816610286059343, -0.11112304839350734, 0.034937266724160775, -0.13222005297113926, 0.04478222235646389, -0.12984813021514055, -0.09748132126903447, 0.11405727471614786, -0.15611856186924164, -0.048695487513983435, 0.1788537868433222, 0.020239447015669376, -0.1715161457560912, 0.07621832089865282, 0.13960472550809158, -0.13201060445535515, -0.08677012209045774, 0.1392744029848467, -0.0317265911838019, 0.10867071774983074, -0.03888135609556887, 0.023502359270421637, -0.039704015761582626, 0.06464869548463723, 0.04946893194826587, -0.05413029929862158, -0.07473307667276523, 0.04600969315568955, 0.09138425823499408, 0.03755348492337644, 0.10614825173511674, -0.007102884035789018, -0.1052857371013579, 0.03169960420321154, 0.09378498538631312, -0.052570615856590674, -0.0659753466525592, 0.07819893463200032, 0.031570576130418325, 0.07066740239332557, -0.003451283355602571, -0.05275314557647351, -0.052142383219135155, 0.00607703466020403, -0.051169342516827004, 0.012351976771764162, -0.04126919142791644, 0.029599795140605255, -0.026127134767865438, -0.04124605831737457, 0.007926982579555385, 0.045472488915949336, -0.01275039764337145, -0.04088151114489965, 0.025171733062290938, -0.02874121188196891, -0.03645253622645073, 0.014726950404838856, 0.04509615800494353, -0.0065911706487565905, -0.049307191143662644, 0.016148634605258144, -0.04868354595866916, -0.016043065681025422, -0.1986903277935544, 0.07496627310191253, 0.1460719744838962, 0.16070816191938997, -0.04763030614009863, 0.18485046019119222, 0.04711752399069925, -0.1742941179103729, 0.12484737212778561, -0.13997800827954351, -0.18909417000312587, 0.06834121563008763, -0.21506089728717412, 0.013303495068038606, 0.20915575212515797, -0.06753395056913357, 0.16335873283229713, 0.15079491380277976, -0.10606464802378648, 0.09270456992306128, + 0.08680717498996764, -0.12377252041894245, -0.09022140486787616, -0.005017651714920721, -0.083265041253491, -0.12309986644064451, -0.09026409288157329, 0.004206846645432978, 0.08422899979761941, 0.12855836245883484, -0.09427739452107037, -0.0058192778013894855, 0.084860118994674, 0.12104251653300444, 0.08728477442279634, 0.0017670713704071696, -0.08412954013981032, 0.12029292963265382, 0.0864373584059403, -0.0053394424880800016, -0.07975306863015631, -0.08895297073637548, -0.03454414500616897, 0.009014162776369647, -0.02109821912709118, -0.04171732784938897, 0.038373216639248635, 0.01279249369226929, -0.02010679713960362, 0.041943102571374236, -0.03900875455747463, -0.016502400712253028, -0.015870207449968143, -0.039324034147735325, 0.04227262077274239, 0.018378811608105002, 0.016100933411818563, -0.04086741733866229, 0.040509595995156224, -0.0162768703047134, 0.018708248835255462, -0.04226072737326751, -0.041377834583371846, -0.013085928921599068, 0.09782225795555717, -0.14524215346493774, -0.09292335352275412, 0.02120511579171174, -0.10398525872425347, -0.134802619158172, -0.06133855784252838, -0.05177564116134646, 0.1329902641055564, -0.16951150316866764, -0.08878822225524813, 0.04489243808588009, 0.15173487604972652, -0.17576306646920212, 0.09888501555543246, -0.025974434792525918, -0.1390229873373459, -0.17178780899504884, -0.10601982386581824, -0.005984297022475132, -0.1034781488342804, -0.11240031906137017, -0.007176436947593414, -0.0301660645733769, -0.037594671324401245, 0.06675606781617913, -0.07338551449112406, 0.04878429071208347, 0.010955531933148351, -0.0745866148193508, 0.09195464352776067, 0.087420563767089, -0.020397887132543004, 0.05948034686831334, 0.09828780283037343, 0.10025237612508582, 0.047036148613889474, -0.022988711031199205, -0.07872098032105171, -0.08749470937683228, -0.042343768411694224, -0.0082800720216172, 0.05754036836035947, -0.056420696790715825, -0.012341104270878865, 0.04579654769555639, 0.05079187839226894, 0.030580900151579216, 0.0027186123782705677, 0.03463945914539435, -0.04325345227535132, 0.02469130475199991, 0.009421455418325866, -0.03951713225158263, -0.046060014062899474, -0.028216563672005143, 0.0016371304241021272, -0.03022556212264022, 0.042131307177936395, -0.030856653966227242, -0.004477992910360576, -0.036522309010339815, -0.050073850682256546, -0.04822473114110449, 0.023630072453762224, 0.0035242815060350582, 0.13458647796922224, 0.2030022261567162, 0.1395546273922334, 0.017946332635032095, -0.1379294971782798, -0.18647463364637165, 0.10533881889292844, 0.047895695534186364, 0.16991668260253465, -0.212601120609234, 0.1280078701576719, 0.02361509480938571, 0.16451592351006808, 0.2244753785813442, 0.1720575482631397, 0.048635847049370434, 0.11483521090048653, -0.1875184634827991, 0.1404975365483269, 0.07781103408202937, + -0.02668513751365374, 0.05230661950259287, 0.07618149669297909, 0.09666239267415397, -0.1129216114198546, -0.12377562062915204, -0.1273943269193882, 0.123678996956996, -0.11260410700138275, -0.10152950919748899, 0.08286655271767926, 0.061008923806467504, 0.04054110530058601, 0.015233504819589962, -0.010613449808771089, -0.035946988085199805, -0.05951432333981834, 0.07945160432649431, 0.09598958940224238, -0.10978998272213361, 0.11845524545715533, 0.0918667023697505, 0.036618135034238476, -0.030256049108166698, -0.02205732821439427, -0.013495962802252803, 0.00500134313222029, -0.0037799627173709218, -0.011875745274812813, 0.019513426099074645, -0.02598820842077964, -0.03370228245652861, 0.038409362261515874, 0.041817141565536696, -0.04582171231847923, -0.04520933425394349, 0.042411402718262735, -0.037301711802170096, 0.028831672225621455, -0.01870468748184944, -0.007505797071836654, -0.0027727444234979383, -0.01318781808061733, -0.017025035937472413, -0.033804943667692, 0.05951329862721357, 0.07203721505864308, 0.10405876795989931, -0.13837367085534394, -0.17691867142647352, -0.16642571359836453, 0.15444286159287662, -0.13568836235893977, 0.14108578685213305, 0.12500853262201161, 0.10140808621578566, 0.06986751695197434, -0.037722754691663, 0.003918210791894583, -0.02848896280806128, -0.05739191741282134, -0.084034623114509, -0.11296001057697318, -0.1490098624349465, 0.17121425790346065, 0.1377094736623385, 0.040952181541071074, -0.030438454063330855, -0.012559592788335976, -0.026353529084821005, 0.05396704611641834, -0.09540336703818021, 0.09020177478965244, -0.08511451348768972, 0.07425927434605478, 0.08608802829708719, -0.08011577813120047, -0.06872141399240533, -0.044317870322792996, -0.0280649868142077, -0.01136144621755755, 0.0033898186011048063, 0.01823719372411236, 0.03171291422882821, 0.046922776650656, -0.06674318122549687, 0.07966595037989169, -0.06895195934978673, 0.03523125417690076, -0.038011246102623956, -0.03800403729405933, -0.04090000715470281, 0.04544737374116032, 0.048660643947864624, -0.04591127893236173, 0.03822852718766318, -0.02656516853101669, 0.01466416145132567, 0.002056484331400754, -0.010650448747144766, -0.024772498511402674, 0.03759194014704417, -0.05004588307817526, 0.06073659523057675, -0.056072452049793345, -0.04212674881448938, -0.023404624228570342, -0.013269738776323908, 0.003534335495044957, 0.0031418856537398726, 0.034941197271545446, 0.07103827834238252, 0.09313886679908318, -0.14023001323011236, 0.19796553929219052, 0.2590703663045922, -0.27028329135081014, 0.24848668592868353, 0.19708144236132938, -0.15215321834440626, 0.09948850697797597, -0.04926260705090561, -0.0021962159480175664, 0.044592606167941314, 0.09322598799075511, 0.14770303067197815, -0.1495521057942765, 0.11139167111911864, -0.0508811166557501, -0.020800523426040426, + -0.11564325765203867, 0.08040220469175728, -0.059715380366316316, -0.12113551916431115, 0.024354010970379213, -0.10418113681804193, -0.09525921731372598, -0.03905482666619227, 0.12178288748098624, 0.05072250819259584, 0.08768975355662775, 0.1121906679440269, -0.002327545640656242, -0.11452490567135631, -0.07677960482876867, 0.0626222425946688, 0.11961291257281985, -0.018807711277828782, 0.10853746363068245, -0.09461854170320762, -0.043851932807206895, -0.09305941776516383, -0.0041157801366721505, -0.0396404045090054, -0.030731946534583957, 0.018923200432806198, -0.04225519471352293, -0.010310528996094729, 0.03453778628361021, -0.03498005469679068, -0.010541380646528806, -0.04398386870998992, 0.017562562846018863, -0.03184602580594374, 0.04127088120815783, -0.005632795033762142, 0.04499841536644639, -0.025354155690589117, -0.02871847481142947, 0.044846426671350956, 0.0012478472127119, 0.04110962038855894, 0.03007793670521582, -0.013966637796677495, -0.12338021287222792, 0.08119466693829998, -0.06241851840034465, -0.1761950152741438, 0.06089505552848164, -0.14085456506877853, -0.1182847751163426, -0.057419880505955694, 0.15532134426044603, -0.08215962158591865, 0.10232346045135858, 0.1526903655256647, -0.001832571104346055, 0.1534655103353461, -0.10527735673858767, 0.06937233366072253, 0.15175107082910597, 0.037291481864050735, -0.1414223335134676, -0.1398611778313408, -0.053795917876298484, -0.12826995470601135, 0.0032392734637446876, -0.048344358990793, -0.020990240606761634, -0.10272363244706278, 0.06916161687517254, 0.05829452998011096, -0.0678941794954079, -0.0069100086821617295, 0.07007950109053204, 0.06671556074276042, 0.03242590982856122, 0.08949467291654768, 0.015606800202307496, -0.0735589020352328, -0.06886039984508281, 0.012952470576716118, 0.08036046735959654, 0.04167319374932117, -0.0651023615834672, 0.08519874097358057, 0.0122468539676659, -0.06917785038353261, 0.04437863041856374, 0.00033639389424129445, 0.04178656063118399, 0.03493247538235028, 0.013907046328989725, 0.04487069910599628, -0.014379417880181504, -0.036065301381145824, 0.03789869538834482, 0.008635043415537938, 0.04342539677506312, 0.023225007200494228, -0.024269846853022185, 0.03903140482053633, -0.0038550765514480893, -0.03461705380330575, 0.022130240568928438, -0.021014975963947455, -0.04043754842662106, -0.017327061641356313, -0.02990707559815527, 0.03118028744456136, -0.13495980193196985, -0.11312382338052089, 0.047969151299190264, -0.20658632042845182, 0.101456798868139, -0.13797749540203452, 0.1684361463790843, 0.029576389280254148, 0.18686743388930338, -0.11787455037944983, -0.10724766520262775, 0.19967044800284472, 0.04670898443591621, -0.16355305486816812, -0.16943356162235906, 0.017368786306014235, -0.17438126959201644, 0.0751420330062836, 0.1745400704171041, 0.2001458040935625, + -0.09827950002134603, -0.11851349007429594, 0.044472090623972546, 0.06423290571890627, 0.12184957794336733, -0.082806809117219, -0.021392677847162544, -0.10870842630106535, -0.1098770106596993, 0.018656206965793565, -0.08586560025328813, 0.12236434960759494, -0.05376082212585252, -0.05458764749146744, 0.1191952098319356, -0.09061256073996878, -0.01011548508952155, -0.1030523662889141, 0.11658322877315756, 0.036733492131084206, -0.0734879837695082, 0.09234361690533371, -0.03494195028231658, 0.00040238999857027504, -0.034448533126766476, 0.04142096298009581, 0.01741341583305972, 0.020639126299645084, -0.04226026963446053, -0.029073508420548066, 0.007056601453204923, -0.03782320619047827, -0.0408558725030048, 0.011274861393685824, -0.027669272967114075, 0.04625746321306701, 0.02820811928718109, -0.012296616216792967, -0.043686327591296946, -0.040513367982028696, 0.006128151242729241, -0.03105554357539146, 0.043878210213659855, -0.015164399494608016, -0.10080778429132434, -0.12598251377800368, 0.04870551658058222, 0.11004059176467902, 0.17783545281737795, -0.10655583146569655, -0.017982653727318998, -0.13575459829740738, -0.14425422751765857, -0.01060081485594334, -0.12205573493113706, 0.15820664895930672, -0.07383297787346219, 0.07110934096394882, 0.1603485412740818, -0.10673505750187322, -0.025331291977359137, 0.1345680957676489, -0.15773204965528517, 0.04815298983558145, -0.10777602167910955, 0.12553861873608677, -0.044998629486078946, -0.008020718697695328, -0.027550256302580158, -0.08818889824527056, -0.10467182331111435, -0.036954241536110835, 0.02777061469084533, 0.07135087002769488, 0.057971989793237935, 0.02112017813914442, 0.08206126626571639, -0.07799003125425352, 0.02490834139147097, 0.05048936463815904, -0.08627648947168445, 0.03853650116969967, 0.03611670300742825, -0.08022298493830783, 0.07753060768897616, 0.01080319502401791, -0.07060541305912586, -0.06817419570645421, 0.0074505513950985204, 0.041876200834184654, -0.04045817941071024, 0.0018614940022575572, -0.03451116415216451, 0.04366003316002057, 0.020082409944265734, -0.020289539041710998, -0.04479825118705367, -0.03169485981412723, -0.004938028578504189, 0.03793159717216545, -0.037145937849667555, -0.009482026806301731, 0.02545931034844889, 0.03733899667155002, 0.023651201243803086, 0.007909400597829228, -0.03961538827743219, 0.032230284558982344, -0.004905686512656419, -0.024235326106480652, 0.1265290012686191, -0.1395656954827707, 0.038521960595326706, -0.14310740892298457, -0.2069755609413919, 0.10706635189465176, -0.0565294636623626, -0.1789705210088709, 0.16178919573127612, -0.0010032789503630415, -0.16050302845432932, -0.19085112605904517, 0.06393343608680217, 0.11435807624202729, -0.1995016902416226, 0.09630312840009687, -0.06311287170104805, -0.17426046765419995, -0.20448162138426854, -0.03887445891211724, + 0.009441976689836375, 0.018840386385487684, -0.02818498629285762, 0.037370548321073394, 0.04617735706956143, -0.054724131887398456, 0.0630555791799852, 0.07086984097052212, 0.07819034563930038, -0.08192584884994342, -0.08882696529987652, 0.09523903149426069, -0.094758068772432, 0.10009370348863618, -0.10495412258334097, 0.11043609225898063, -0.11423671392633675, -0.11720577109920502, 0.12175327257961753, 0.12419322235370324, 0.12509281735964725, -0.09213452543805707, 0.04131178059008976, 0.039975477256111384, -0.03759622818061298, 0.033847198635182305, 0.03179944496594572, -0.029744251699242136, 0.028628266905392236, 0.026114033162518188, 0.02342625650533386, -0.018987048691891252, -0.015911877265595942, 0.012716471498498826, 0.008773797431893958, -0.005248730061009023, -0.0017146285383650775, 0.0018251937684886418, 0.005422103988617845, 0.008984614291334675, -0.01322807516339425, -0.01668747316830748, 0.0198200369099583, -0.016296355607412272, 0.016700950813979654, 0.026438320747598228, -0.03281271930706995, 0.03827834944595851, 0.051655820479950626, -0.06712436054859389, 0.09103334449637826, 0.10014050673967702, 0.10826861455047514, 0.09949645466414013, -0.10928095807529876, 0.11807347328328562, -0.13014949130335793, -0.13736921064409255, -0.14413130315213316, 0.1349988848784052, -0.13845124768973363, 0.14244688883420095, -0.16708729075736897, 0.17618586769758326, 0.17787170772477648, -0.12469267839054077, 0.0441154882816603, 0.04173275695402637, -0.03258351421363349, -0.004157919112030308, 0.004224157896236039, 0.01424432442434008, 0.02623259899205278, 0.031184505938081995, 0.03571253856096135, -0.032294231799749384, -0.0387763676721257, 0.04481189215963949, -0.05929579110690003, 0.06404106638208577, -0.06864987278579582, 0.05979501261566677, -0.06266598126315691, 0.06621032690359693, -0.08571832386100556, -0.09295599148443054, -0.0951729118407059, -0.06843318982640845, -0.0363689699004894, -0.038500652657419254, 0.03836000601921987, -0.03653100175133537, -0.03838692849424617, 0.040268987337995804, 0.04294834670810788, 0.04399172340393531, 0.04478146382281032, 0.0430867777761141, -0.043583647777828076, 0.04375658927579461, -0.04010093249690783, -0.039548377880614626, -0.03883180989564568, -0.03468836298813887, -0.03325576301996439, 0.031961211380596495, -0.03698549416121982, 0.03755919337372164, 0.03637906534470732, 0.01999552002907746, 0.006161377622401442, -0.01763100249918022, 0.025802397888717295, 0.03578426122105905, 0.05151159381337635, -0.0684052667374563, -0.08784288620097419, -0.10032615733169836, 0.11217834502041227, 0.11519930278359292, 0.1279208981090157, 0.13962250380899638, -0.14945074310397613, 0.15901044824446783, -0.1680005882359537, 0.14998570820060964, 0.15529090285520075, 0.16278734439192052, 0.22239376829063395, -0.32229689204433587, + 0.10848254357628968, 0.10277467367793064, 0.011394846780216001, -0.11289283902922159, -0.09527260970215362, -0.022401321649451376, 0.11629753129568277, 0.08803725302532385, -0.03248470427968443, 0.11868091242977521, 0.08470419584329154, 0.03887892224790403, -0.11812597843839381, 0.08126118047422029, 0.04063751168956617, -0.1206231484890213, 0.07274038415809828, -0.05162807105208446, 0.12397024776902148, 0.064112155283097, -0.06448690191150362, 0.0922812829307767, -0.009106407339208682, 0.03365186583357866, -0.039981537235683186, 0.0018948199297068834, -0.03649601279008583, 0.036797924580898124, -0.0005637023869525086, 0.037079016075795494, 0.0357371815505732, 0.0062238936841113625, 0.041433661392582095, -0.03295608378477247, 0.011874377603472428, -0.044991336145493166, -0.03083426601477392, 0.01578536774078232, 0.04657835906545967, 0.028562633419604924, 0.019926218464753263, 0.0441845169783563, -0.021482653193923867, -0.0175655768909167, 0.11845614307580264, 0.10332605618747291, 0.0158874519620005, -0.15819501526894555, -0.14549942941831068, -0.02435926251598548, 0.1542541135993707, 0.10398235067822865, -0.05377772709951833, -0.15356251300257062, 0.11619952468743286, 0.04378778283302352, -0.15980270795928053, -0.10243959678389286, 0.063411296302221, -0.15154996533704468, 0.09792585093016959, 0.055982161939219954, -0.16970090662905016, 0.08681185616476664, -0.09570057582262043, 0.12530064068593377, -0.0012602756787168938, 0.043844613181705336, -0.03593837370221472, 0.08315761329718876, 0.10181249361830949, 0.008577763663401485, -0.06667518729298039, -0.060774007225461425, 0.007420610531531521, -0.07393106047432861, -0.07920323922684755, 0.0008309239000967427, 0.08076030629880127, -0.06276644319905017, -0.022441350283206374, 0.07549001366000203, -0.06738569602288316, -0.009008889694421006, 0.08969178607850742, 0.05854806504306101, -0.040346394640661254, -0.0696741839352793, -0.04477618167759317, -0.006996746905074845, -0.03572230453591536, 0.042585454748145526, 0.008234209088311377, 0.0349666425058609, 0.04179733951811134, 0.004035752911790859, -0.03791830738726309, -0.03874947106206379, 0.0006199744414399303, 0.03855557581793184, -0.0332258914445168, 0.004804578916278823, 0.0373825279373889, 0.02760204825182424, -0.008258910634888776, 0.03554627868386066, -0.0325383608225567, -0.006681599882366782, -0.04204985710693146, -0.016097568468063067, -0.1328428936437631, 0.12323152329532351, 0.012712339928407684, 0.18594519938528176, 0.1700611420206485, 0.027601360865434858, 0.18176992466448397, 0.14002915216248468, 0.04593843690074297, 0.18789562495851206, 0.14450431313662718, -0.05565329283461352, 0.1959623329782055, -0.12524807268834015, -0.07949458351696505, 0.18062404824233383, 0.12745390246358917, -0.04860632363534751, -0.22795775896181386, 0.030836202188663796, + 0.10778476019158413, -0.10504642384090757, 0.005168346597824833, 0.10938036879456589, -0.10135300500363484, 0.011102194931157657, 0.11168811739305967, -0.09640776447231647, -0.019023324042607575, -0.11699883088991066, 0.09030350545775748, -0.029102980194481064, -0.11956239415094352, -0.07891239017792512, 0.04248788573688811, 0.12002158507954075, 0.07429540988829902, 0.048979889179782035, 0.12314217581921809, -0.07251144721568067, -0.053721320036875755, -0.09298497836325482, -0.031752116748179154, -0.011191842916330488, -0.04146404679346953, -0.0316682871091376, -0.009494094097004878, -0.04124166282795414, -0.0277996929940967, -0.014729374584066871, 0.041827934606205576, 0.029455236080869526, 0.014241569346977817, 0.04354876153442422, -0.03054427639188893, 0.015683419834971256, -0.0455892357794275, 0.028369319658789274, 0.019422171248010586, -0.046909136741950214, -0.026100666973517733, -0.017775161104753363, -0.04429044898669677, -0.019342286629328864, 0.10870361927272394, -0.11449101137333344, 0.0010788731082945376, 0.1593483746509623, -0.144124689077924, 0.01880910337671942, 0.1406193135134995, -0.13293903062245213, -0.010042874963151049, 0.15339707994254553, 0.11595199147860373, -0.042440366743944385, -0.15644196550536812, 0.11463256571482965, 0.04526525696192011, 0.15540389572866647, 0.08677480676683927, -0.06763431331684262, -0.1647397559256334, -0.11073731580512476, -0.06733768905766357, -0.12793699875278916, -0.04269516699544975, -0.004270716037747647, -0.036755732833271264, 0.10472199313065474, -0.07665615203403943, -0.029349146401237827, 0.0727693405288645, -0.05161223105280312, -0.02193308774676593, -0.08816745655698136, 0.045014757306588826, -0.045740271568870235, -0.0846362569988845, -0.05341423270939982, 0.03210919956882051, 0.0844957198998311, 0.02914693291667971, -0.05351573621855619, -0.08860838835206694, 0.05004072756374426, 0.04763444923425995, -0.07258493531591739, -0.009508117833610157, 0.04509061677055261, 0.03320042186644163, -0.014133983318230594, 0.04386907171154551, 0.02893389138735808, 0.016432141716142025, -0.044925110000855015, 0.025199833691960796, 0.02019122069766989, 0.044187282456906105, 0.024674689015321064, -0.01676613844715158, 0.040253948004723324, -0.023441253848094066, -0.015444906337389066, 0.03606981543817121, 0.016196498207027978, -0.026299994287912274, -0.044081143170670536, 0.021619103690917893, 0.010039799494791925, 0.12926237334496465, 0.1338978435835674, 0.0030492101220161503, 0.18354441212327188, -0.17843087319491568, 0.006534858169041117, -0.16746721642066076, 0.15327512814658598, -0.02691814978410935, 0.19010161620004198, -0.15080793228868833, -0.03632824721922192, -0.1899429532621483, -0.16238300573376463, 0.020934099493067404, 0.17683816063362978, -0.10214193936982645, -0.09336836548226415, 0.2235268614908935, 0.18016300344019315, + 0.007990165361625098, -0.016008234141369357, -0.02418817816533005, -0.03233143348611405, 0.040464845926298454, 0.04840760263671042, 0.055595492410018245, -0.06198645930096667, 0.0673494250851267, 0.0757919422132778, -0.08172601841777082, -0.08815943512229009, -0.10007522269808143, -0.10487799129757386, -0.10958408967638689, -0.11278483944202236, -0.11586465783513722, 0.11677745308667739, 0.11735684202832265, -0.12002139573591367, 0.1221476548215446, 0.09361437945866495, 0.041954111926977816, -0.04180784511774323, -0.04064910104900866, -0.04159979833819552, 0.04341316926953302, 0.04534160830803291, 0.04408287178682779, -0.04234337483903474, 0.03997268128115989, 0.04099373565267439, -0.040263953023370005, -0.03989994847112135, 0.04185203659227925, 0.041395513817745914, -0.040725099741192074, 0.039556345635270156, -0.03657924220951228, 0.033052017855084534, 0.029826687227565377, -0.02892081704271769, -0.02759031429354354, -0.019769330327544302, 0.0004699398947175785, -0.008890251583556833, -0.015204558475640718, -0.027835000991294434, 0.041502321045354604, 0.058519858679382454, 0.06116463041856785, -0.06650135184061781, 0.07156377033949976, -0.09354825164145844, -0.10429942534675989, -0.11340003868509631, -0.11871274684077533, 0.12791911760582855, -0.13780210665803966, -0.1524904081097709, -0.14598106952690712, -0.14187226399043767, -0.14316174949956306, -0.16422324307088873, 0.17611076265738226, 0.13927604020147405, 0.04673283469914325, -0.04315884828997045, -0.028227981803252516, 0.025138271898905655, -0.036573956297717605, 0.058090865441031196, -0.05431782918913556, 0.0528865592638912, -0.050042670221244596, -0.06542941118238164, 0.06944167947412361, 0.07183928107834513, 0.06428912182588858, 0.0706607875647467, 0.07964274552106504, 0.09740479336907265, 0.09024516357153056, 0.0833383166713986, 0.07790773246270978, -0.08920439987463669, 0.09392640989935247, -0.07658610695884584, 0.0306731832782309, -0.02639439070960903, -0.021658822029559894, -0.018843510419178488, 0.01798509626839898, 0.01737022530782392, -0.015424575064240022, 0.012461002592209466, -0.00873114053854662, 0.0053100259454317645, 0.0018596189388205538, -0.0015192310406042043, -0.005177156482205163, 0.008783201374544242, -0.012679869608759591, 0.016626804012366297, -0.0170848244223555, -0.01541856425680271, -0.013380462906846018, -0.0155894917173771, 0.020443895304097303, -0.022228248957829443, -0.01438732488078462, -0.024055074594463082, -0.030230757112817867, 0.04574703906992044, -0.06669602610980746, -0.09180263107145724, 0.10264350078147486, -0.10562326772718038, -0.10045855503260935, 0.10411773364039367, -0.10649974442099885, 0.11693111790819113, 0.14060229067099392, 0.17856316262866673, 0.23237379944829656, 0.313925097454228, -0.2971064197790116, 0.2132120223536369, -0.09461295853753543, -0.03788735880309221, + -0.09915055065327658, 0.11832082459474615, 0.04245044736583463, -0.06717057634399526, 0.12263313034762308, 0.0784079411616023, -0.03001170577136276, 0.11390828170865656, -0.10411289694916502, -0.014034750214829977, -0.08717988669103552, -0.11852094327318306, -0.061617939274956166, 0.050164423459324016, 0.12084598660501888, 0.09219651182736055, -0.010461711872446128, 0.10472444231442328, 0.11442461512740465, -0.034144429331006906, -0.0748690415056203, -0.09217354451573039, -0.011810404995100198, -0.02790647216548135, -0.043834202489825044, -0.026282415215374777, -0.011180792736884139, -0.03991256139365437, -0.03348659145700379, -0.0004624212134861326, 0.03390329703901154, 0.04313162915839289, -0.015485901730339077, 0.024710943164613856, -0.046135771277990685, -0.027600932583723155, -0.013286017272222997, 0.04298866771516791, -0.0363385931382598, -0.00010489352142913425, -0.03824281441586041, 0.046429358166484566, 0.01641525878936046, -0.019031265284064194, -0.10784905664393592, 0.12171460488517388, 0.029488504717626488, -0.11942886668814136, 0.1585048025620498, 0.07472307700913546, -0.07106708821891114, 0.17443432178880597, -0.13572990323123396, 0.010749705913334996, -0.11712544415945039, -0.14918879715886413, -0.05536843789301428, -0.08103043833368105, 0.15278451571185517, 0.10828072167078324, -0.04368636878627335, -0.15762486790727637, -0.1497850313485667, -0.04882669903416163, -0.10045424300181832, -0.1231934939036027, 0.021286623971915632, -0.06964254682589252, -0.044218566770254084, -0.057319840258220685, 0.08010412700017167, -0.04968012854153038, -0.025228357987425065, 0.0930208689363877, -0.08246711465810809, -0.02794339874580813, -0.047626006879421784, -0.08435748541117055, -0.04027356901039699, 0.02679188864545892, 0.07368122829431199, 0.06952537557852229, -0.011427953757467135, -0.08006630609208866, -0.0882895918092249, 0.046233449092643285, 0.04079355170141564, -0.07121479538336611, 0.039903845202535246, -0.015431840969303282, 0.019761392016665623, 0.04548839400679268, -0.03607370793679747, 0.0022996327368798083, -0.03716818883572069, 0.04067123234242318, -0.00926725979908474, -0.03025910745004807, -0.04456321956204688, -0.024809930555782043, 0.011435277108177853, -0.03789053042015955, 0.034685891154844245, -0.0051962201602005, -0.029871080826389812, -0.03759923232502509, -0.011811110173017482, 0.01618259661221458, -0.03542073745162095, 0.025430257776930462, -0.1212320606789231, -0.162207275991291, -0.06608169496841022, -0.12021719214838972, 0.1949603717541013, 0.11937790318755635, 0.05549368280709669, -0.1899567803108693, -0.1588698873621165, 0.008429181266169795, 0.14662986793556207, -0.19310747283360258, -0.10088216147942751, 0.0644179485553556, 0.1816307943085252, 0.17424821188959644, 0.021635715563480522, -0.19324385539076883, 0.2146707729800587, 0.1413950324687508, + -0.11513270765374735, -0.08185951821273585, -0.0572873629350077, 0.12202863022511072, 0.029115468771958523, 0.10112382082707777, -0.10149689093282158, 0.02869282713268234, 0.12190080694562815, -0.05303570391605757, 0.08125179454278722, -0.11101219577295102, -0.009145916258651927, 0.11904132159116118, -0.07549304546014418, -0.06474820332954881, 0.1204360250819711, 0.021469631080563753, 0.10667334019870903, 0.09476598539727445, -0.040349637340202096, 0.09114758591133636, -0.03073433512640935, 0.020121151432372624, -0.0438646700224596, 0.009237237877364255, -0.03534490761008634, 0.034707038658996596, 0.008364754195536976, 0.041269804992240894, 0.02113257641580179, 0.02852201125549295, 0.04274744533258471, -0.0016777335666829868, 0.04137968800754389, -0.03347281559086562, 0.01737051589867654, 0.045296267674847505, 0.015998075723469035, -0.03369979871652795, 0.04260828138943666, -0.004161461267306143, 0.04679891236604505, -0.02028793041476694, -0.11915613735668514, -0.09115230928210477, -0.04634047144053509, 0.15808326036729034, 0.08359714201686573, 0.1057557224250324, -0.1630760092698775, 0.015902693102970922, 0.17105993553801882, 0.07784419310351273, 0.09520899371531595, -0.14638905891597556, 0.013608200221724705, -0.13662935243387983, -0.11117175866514295, -0.0625921850134272, 0.17068439987109418, -0.059204011828410175, -0.1393024650667793, 0.13075268358852893, -0.05229437368610426, 0.11933177417893329, -0.07253676680181846, -0.007249513906922164, -0.05288914307633179, -0.0772052112313819, -0.04194192042172857, 0.057458160756428796, 0.08607991518544676, -0.0217175250416718, -0.09837502191400807, 0.02268069913858127, -0.06742611767991998, 0.07126760314145199, 0.005668921237797532, -0.07249941845699405, 0.04547294015460364, 0.04396095217513262, -0.09175506216896581, 0.022900957143226132, 0.08630483605037137, 0.062847043814119, -0.04745181312667208, -0.0692701961385936, 0.010323130336728412, 0.040611285730826965, -0.01728745819444608, -0.03503934934918505, -0.04090807234840401, -0.006049013035935827, -0.0437633553344012, -0.025154400393429793, 0.0253820881257889, 0.04299621449723292, -0.007038717749808284, -0.03853021935435479, 0.03033695134771595, -0.014949002041292993, -0.04045169598680425, -0.011339812725468561, 0.03141424020430722, -0.034995230245972384, -0.004839489380432603, 0.03245391035161737, 0.01638661217801285, -0.01585639196805523, 0.15606799973954302, -0.09763928531335286, -0.07496064251503964, -0.19285673273964432, -0.08079698952166571, -0.14020144922228067, -0.18068470300474745, 0.020772291050363267, -0.195401730029077, -0.10462607067995008, 0.1116628108561583, 0.18285778581829817, -0.01060002898340184, -0.1750621345155889, 0.1301008529463714, 0.09491839313959549, 0.21493027485351945, 0.07685413176511217, -0.19566306574453093, 0.07758382912305313, + -0.02526238419904764, -0.0494814304391847, 0.07173751428775406, -0.09097646520725695, -0.10595430693357896, 0.11646623531979591, -0.1222960466795507, -0.12264839881453621, -0.11769068366806834, 0.10280407048651616, 0.08826982628605937, -0.06991694371594291, 0.04415127935457301, -0.01927360953589941, -0.0062678943419069155, 0.031708570740380464, -0.055334352673745306, -0.07658717242750517, 0.09634045264307405, 0.11060224819942162, 0.11956042248726825, -0.09080502948229509, 0.04442488144104212, 0.04513835755166525, -0.04300046244345286, 0.03769544370569898, 0.03295449210921468, -0.02696539858439293, 0.02098737773967978, 0.013104061415170365, 0.0046815647820250255, 0.0044398477013791295, 0.013557670690217112, -0.022121333983438744, -0.02848664296391552, 0.03522509408690227, 0.040506706087355376, 0.04331242913585252, 0.04501815372973236, 0.04488364441115685, -0.045557883768846945, -0.042777689069464345, 0.03724784626386681, -0.02137744270076012, -0.018374324811961388, -0.044217922952980354, 0.06198944776611357, -0.0774198358158265, -0.10519267960631792, 0.13319954857918392, -0.17374408654795043, -0.17917141054393143, -0.17656765849035075, -0.13862102943327118, 0.12290481107784894, -0.10144640868955658, 0.07894467467046086, 0.05071635116130666, 0.020258488681444923, 0.011835976090093282, -0.04649109265769408, 0.07885480538335443, -0.12267091704128466, 0.14727612756088837, 0.16122510902999548, -0.11768275161966188, 0.055244028633234285, 0.06407277002930396, -0.05805701982918985, -0.0351612051955623, -0.0495051386856204, -0.06806821167665837, -0.10113427209936572, -0.1011963659806443, -0.09683330883060097, 0.06492591777850394, 0.053090637295538035, -0.038507695064968324, 0.02910843219642685, -0.014269930078312594, -0.0013439394675413018, 0.015639877307243696, -0.03372450881022812, 0.050299827967906705, -0.07925300036158313, -0.09204880452882983, -0.09693917294610009, -0.0690125057760675, -0.02868990502634856, -0.022003280592114764, 0.013754775663465548, -0.003012913089716448, 0.006570804834627615, -0.015962114580283703, -0.02476001403366098, -0.03184950209268441, -0.03760762835469463, -0.04003663049249789, 0.04299804098706569, -0.04405928595478844, 0.03961586914791056, 0.03677329238857634, 0.03244760606941545, 0.02427180474064891, 0.01705917373459928, -0.009354997116862888, 0.001799791551303039, 0.004929871434247978, 0.011916605878986878, 0.01103856741059503, -0.03758713502777478, 0.0691202885855451, -0.0871661613381176, -0.10351360000112765, -0.13509047237500638, 0.16434962093155267, 0.1951056381116605, 0.20281018384410865, -0.2020154456591003, -0.1766016357718969, -0.15998719687497082, -0.1356970342801112, 0.10432620445742498, -0.06897178508629083, 0.0309398028292058, 0.011150024023013098, 0.053947048409798595, 0.09503910671550553, 0.17273124095956993, -0.2816640989816913, + 0.08783405878480276, 0.12319800042847509, -0.08490585032098963, -0.0035842751371937508, -0.09010248750573956, 0.12276499632834471, -0.08256134847229851, 0.007066724570019844, 0.09237323646860808, -0.11929152176619387, -0.08007193670487028, -0.007346542384196239, 0.08916491835083715, -0.1241650054232006, 0.08509250666537432, 0.0040759418362315515, -0.09012257072037481, -0.12255354919015554, 0.08367405004416162, -0.004948452256848685, -0.09153368447467249, 0.090820379422528, -0.016638539969921654, 0.018334332103199152, -0.041263095509476835, 0.038991852195194875, 0.015568383559777766, 0.017350174080013783, -0.039756926258220235, -0.03725844974234331, -0.012580536661114736, -0.021120398097226066, -0.04322536253215511, 0.03942965633986091, 0.009987174506598782, 0.024979203646213442, 0.04496736124119098, 0.03740409797172112, 0.008048454324905955, -0.025992827160290964, 0.047103127160106166, 0.03777180316126356, -0.004709462821809462, -0.022601562761262566, 0.09973265725723089, 0.1290573727591335, -0.0756898578938016, -0.06070311189218682, -0.1494733037291775, 0.15404586548338162, -0.09701664227411816, 0.04093869522583681, 0.15188395537451357, 0.1508456391370847, -0.0886231722852188, -0.027095667664661014, 0.12803296785407925, 0.14816971897024392, 0.0797352947185633, 0.03993380460611396, -0.1463093665861543, 0.16469545110461298, -0.10110302377796208, -0.017940590733964208, -0.13218071180160035, 0.11742711843056121, 0.014616216609103519, 0.062278958538490733, -0.0602455496168832, 0.034267289554033485, 0.07564604783413927, 0.07788404902212463, 0.06380929267271783, -0.01256642543271529, -0.07889191799001809, 0.0834915051188857, 0.06351666695564244, -0.005027442975668338, -0.05744567727818267, 0.07516817147031106, -0.047661646280772435, -0.014018030826906568, 0.07496211272341911, -0.09073154330768193, 0.0682950637229688, 0.005815520050822182, -0.06558905456730278, -0.06974575640641698, -0.03972841719940296, -0.02065902207291558, -0.00995262780887876, 0.038606137789664825, 0.04545173669471104, -0.025239254351298212, 0.008080164335010492, 0.036960842851924844, 0.04408556249352082, 0.02246876702172387, 0.011300097854556641, -0.038504025808126154, 0.039136664932330964, 0.01924046682035664, -0.011985150522869999, -0.033996335898839776, -0.03938096217902998, 0.022311451102919592, 0.008310065865726227, -0.028929309879809, -0.03177569467610045, -0.006778048283806719, -0.11784661101159208, 0.1617007268482149, -0.0979861505724178, 0.06912440914374271, 0.17766602936126866, -0.18314367245455487, -0.09734392558772709, 0.05781416881479926, -0.17864251093088815, -0.18176122328737696, -0.09132858225346131, 0.05642138961054259, -0.16965145218131394, 0.17929003230582122, -0.07989508821576476, -0.0729318393953313, -0.1934891219703476, -0.20729374889766866, -0.14052063518605884, -0.09144139228089763, + 0.12017627318942097, -0.053595794179159696, 0.09641326680739223, 0.09590445112916238, 0.053829512663112616, 0.1195265788528258, -0.0018490312047329675, 0.12044953038321185, -0.05047517687714365, 0.09713804302678564, -0.08949368226205272, 0.057371285526282886, 0.1177881730032744, -0.013544802598522488, -0.12317706030482681, -0.03963430941094279, 0.10459759960352516, -0.08511524354776041, 0.06893335823799825, -0.11477938803499316, -0.018435723075060192, -0.09126984649074082, -0.02675974308199293, -0.02949687904544664, -0.038750386369465734, 0.012027881247048108, -0.04228646283716453, -0.006691653503887039, 0.038456466380017255, -0.024500968873748086, -0.027658515863345938, -0.0396382451526293, -0.011915594974601967, -0.04517318492144916, 0.010726638025761317, -0.041152868119812086, 0.02878247434612052, 0.028039429565911878, -0.04066069820892468, -0.010318229368133421, -0.04718470494607317, 0.013294383058541888, -0.04255971513501598, -0.024203845645960755, 0.12386875877490178, -0.06613957443471552, 0.08645699069022883, 0.15368823248685767, 0.010873369168460172, 0.1676424856118553, 0.028533102397019797, 0.16635549855038545, -0.10104542055113103, -0.10999336079463588, -0.12778133392763355, 0.05471943715096914, 0.1509250538317301, -0.017284599344682784, -0.1441283127188845, -0.08835563127839464, 0.12340486360809784, 0.14116103085365156, -0.07506250021710652, -0.16118984481618578, -0.009391993021473736, -0.11877825586536261, -0.07052201547002325, -0.01068526846861741, -0.05885773261853535, 0.07701717800530171, -0.002959425461883554, -0.08711897886183928, 0.007087372924070915, 0.09667315421114242, -0.04748458349805143, 0.07138857557763323, -0.05790611351778088, 0.04689360742506962, 0.07343325959668037, 0.00043168108756273284, -0.07421760722089162, -0.04301682948009989, 0.07088024454519283, 0.07166434654670031, -0.05369913740609679, 0.08791704318777675, 0.020082116185328666, -0.07177282365631954, -0.012059771601562139, 0.04087936474201206, 0.006397864067586889, -0.04387024490946128, 0.02509553378565483, -0.032759065910892365, 0.036454737271566735, 0.01794290380757707, -0.043763407955524344, 0.0033983991168816154, -0.042088861527332704, -0.023718150316245905, 0.02856682610030759, -0.035141405662930336, -0.011969050418992256, 0.03937473999426304, 0.0009433607343298275, 0.039457565352194544, 0.014623781177087252, -0.024636665635457106, 0.03036895299819112, 0.0011124515112500514, 0.15763797487295875, 0.08178461897540042, -0.1052660674301959, 0.18741693346226984, 0.004656214580774299, 0.19479959426943216, -0.05790571255822151, -0.17862155665735288, -0.1285812307428521, -0.1179781932681648, 0.17355286680053278, 0.03362946954494824, 0.19166106894216509, 0.06313941383696604, -0.15953940368099825, -0.15126084901976328, -0.1284698403058434, 0.186887546201884, 0.0987321145564393, 0.18879101016108468, + 0.042028976244964524, -0.07932982042076785, -0.10819894045526546, -0.12444938665491738, 0.12621728798807907, 0.11282262190148806, 0.08475774371252127, -0.04565774036161117, 0.0005911987834952481, -0.045055549322969665, 0.08369353153984618, 0.1132451921737434, 0.13660444322759832, 0.13444065573052286, 0.11665732217330613, 0.0836565206822469, 0.04119729300550977, 0.006885285815028895, 0.05490957538840469, -0.09664656634951929, 0.12715469452599937, 0.10747085774144613, 0.05946154644660397, -0.06387446667388583, -0.05939902373967662, -0.050654881349663367, 0.03752047777809894, 0.019970643891406945, -0.0006872483921695301, 0.021710542444985263, -0.03982659148810872, -0.0570874321386681, 0.06504679155775273, 0.06606726896751582, -0.06327612630303195, -0.04948740116820354, 0.029772498398133247, -0.006476678319491782, -0.018111883971826045, 0.040259933586143555, 0.05920060745771574, -0.07444127842087443, -0.08041814878889049, -0.05797086632858092, 0.016372015670960735, -0.05425843637997451, -0.07509761759093847, -0.112507633301334, 0.14373931337027063, 0.16814589302175606, 0.13606970266504065, -0.09076438407535585, 0.035719008961952584, 0.0188037633612336, 0.06614423839522052, 0.10499772142447143, 0.12829762145298643, -0.14089859754309278, 0.13785701278172838, 0.12478423220745423, 0.07819282527604912, 0.02487816789745731, -0.03625025327202899, -0.09004770197934665, 0.13071785938111083, 0.11532704932422809, 0.059821876239898306, -0.07099907237740176, -0.05347940477227462, 0.06667816289519954, -0.09777945219271285, 0.14281695328024166, -0.11323966528978413, 0.07176784917582943, -0.02166946647565505, 0.02946433843796689, -0.06765990674743028, -0.09679298770384036, -0.10180851800088123, -0.1166193147493856, -0.12206432493817489, -0.12806639488674432, -0.08472224047705289, -0.03340035966280913, 0.030101450938484486, -0.08413541494938764, 0.12570745765698577, -0.11760290873759056, 0.0710362822659247, -0.08183069812334061, -0.08068610156428146, -0.07906461737416919, 0.07554235406180491, 0.06422612947506237, -0.04115021100329668, 0.010349550529547728, 0.02227512381035654, -0.05435751971639742, -0.07938361912180941, -0.09981255373326994, -0.12546374824582132, 0.13574417107808134, -0.1351687932939398, 0.12183987939758174, -0.06865322219260384, 0.0004058382137500146, 0.08175360618888901, 0.16646768975782378, -0.26487679703189565, 0.28954703150684125, 0.07236420611518123, 0.06297897510228188, 0.04234264746929704, -0.016923188861174054, -0.002437343514599083, -0.022171203123034507, 0.03480261697614666, -0.041229610475428294, -0.03978437315483521, 0.03712513677080878, -0.029721512939744118, 0.020939606080325877, 0.011990160589437878, 0.0028705342473541676, -0.006296880113097414, -0.015117586956412606, 0.017456645308442136, -0.013902365187308481, 0.006682845434570754, 0.0028313310513143146, + -0.07475956763255774, 0.1193629619379824, 0.11643032052062988, 0.06639377770675431, 0.0107766066029824, 0.0834267863257821, 0.12085101837598067, -0.1076362840343875, 0.049142333627375, -0.02795759054096135, 0.09222934305761092, 0.11968667866096629, 0.10603418179399884, 0.04143073817186586, -0.03966822912683482, -0.10437077500884613, -0.12635015568867664, 0.09486386030088652, 0.023576872756817014, 0.05536775010890085, -0.11234972325472771, -0.09295843310320653, 0.014767417899596565, -0.06626922363988637, -0.08848349726213398, -0.07953946158293895, 0.04045220231755033, -0.015463150738908936, -0.06248882881461232, 0.08456127207203228, -0.07111648056802189, -0.03413727736107706, -0.017578411195795243, -0.06248986140414768, 0.08540338590297379, 0.06872445154770464, -0.0238932440283092, -0.030380861354272058, 0.07153487798286398, -0.08254240245240253, -0.060263965523724566, 0.019715859160157306, -0.030330270831732415, -0.05001196679868564, -0.0829434020472994, 0.11268901137715687, 0.08294293129589435, 0.021858469693993576, 0.033693566563441475, 0.08008219069995191, 0.0738835080554951, -0.03982635926893759, -0.009669394227656478, 0.060356437907052224, 0.0774389771413161, 0.061950159488378995, 0.019061215395157788, 0.03078003097602898, -0.06851204328526866, -0.08045240498722689, -0.048151635922268, 0.0021223933231084425, 0.05687649979640326, 0.09009281080988192, -0.08278598138956386, -0.032045269137046105, 0.18726979868543606, -0.3095767269665914, -0.2209367477933447, 0.06139582396988001, -0.003853323346307082, -0.06345811404609578, 0.06985980544353941, -0.052408216323572725, 0.013360398515900956, -0.03161865150904308, 0.054635870081508026, 0.05443506946496725, 0.02388066981415017, -0.01054403778022531, -0.0414528640154016, -0.05921877614306012, -0.03770787353266545, -0.0019463446022654702, 0.04078529054802837, -0.0680422790339678, 0.06398435021853482, -0.027652791021163636, -0.09733063009446354, 0.17521035073883814, 0.17574842723408746, 0.11941771995147635, -0.030341632942085677, 0.07117854329451177, -0.13512608862976372, 0.13752169765552116, -0.07643369417905493, -0.014345224906761546, -0.09856234334536662, -0.14842645410171126, -0.1619685413489712, 0.10811057080109213, -0.01466723273989053, -0.08031534712186994, 0.12760226894671325, 0.1085352902859165, 0.03520926739317195, -0.03130824248699082, 0.09576813166905696, -0.10393437095447526, 0.08785224584964617, 0.17732402392358707, 0.1747404921075507, -0.12236355181804486, 0.05269773246025266, -0.03816791528460066, 0.10121188899293285, -0.11856821449484398, -0.07955800867739873, 0.012553664055000212, 0.058698753888149394, -0.11081011253768232, -0.129334229026869, -0.10713720661060094, -0.050161208429554134, 0.017104346876444815, -0.07145088579557375, 0.08147932814633747, -0.05017797354478498, -0.0249277639095324, + -0.12281450980011671, -0.019555336580469915, -0.12008247528013731, 0.03871502004603085, -0.11421548185457021, 0.0572079497404959, 0.10424535074215739, 0.07451988875604215, -0.09166587191988762, 0.08625673486310885, -0.07385503355220281, 0.09826440170668282, 0.06389476792236931, -0.11374529190448342, -0.04527793038216624, 0.1219980167517415, 0.026021877551230373, 0.12665042322991427, 0.004519537283502497, 0.12477409508935951, 0.01534024588569636, 0.09073764310451643, -0.08483556094432382, 0.028863815376078523, -0.08703756146131264, -0.019787519789709822, -0.08686499988298849, -0.005792255863479383, 0.08545281493200536, 0.00637590053078412, -0.08406827535739343, 0.013789764502207922, -0.07973470933414406, 0.02626626089638035, -0.07650871319687172, 0.042924105217598, -0.06922972425736125, -0.053260791773198486, 0.059814418006407806, 0.06313171150565702, 0.05066539628210548, 0.06444723225833056, 0.041927498391516244, -0.0506642765274926, -0.11135272965212742, -0.03675502840805631, -0.09343273703783185, 0.05264065827140457, -0.06414606218815302, 0.06546437240899422, 0.03475369752802477, 0.07297576969926162, -0.02249884129126297, -0.07694474052371852, 0.0023059315217190345, 0.07694828940183296, -0.017250881216405885, 0.07446356457239917, 0.029245676933409844, 0.06889744202043159, -0.050704206045568107, -0.05934504589330952, 0.06973466684656376, 0.04779341781911439, 0.08187550446487689, 0.026644580030663768, -0.33455624491927133, -0.03898016361901185, -0.25735669807766554, -0.03026199495546239, 0.09440853965186316, 0.04588728559453434, -0.04944840764931701, -0.05166706748303834, 0.03897960799046117, -0.05328514668035168, 0.014591898583505694, -0.05624178804633805, 0.003486028180224171, 0.05491899308515697, -0.01156891459425292, -0.05135065634362415, 0.03333999213031182, 0.043748366180862315, -0.051649405153665257, 0.03520889329463808, 0.0620678613625802, -0.020723868361963736, -0.1886109540695454, -0.011584302754246524, -0.17500702759493664, 0.030283084051571388, -0.15401945121302346, 0.05471230624131456, -0.13653896106614383, -0.07927837484629115, 0.12163308746163227, 0.09548327960017626, 0.10232709147081404, -0.11013646251941303, -0.09872250242036837, -0.12927747461669797, 0.0792362813778863, 0.13205187174583158, -0.039942126841266586, 0.1400430035242773, 0.006333993414342131, -0.11992704398339699, -0.0019334542660020089, 0.07812368053854477, -0.20198211055778445, -0.0028285243295625116, 0.17691782803032255, 0.006842456251369256, -0.14152016321834102, 0.02806448014200451, -0.12164219772705825, -0.048380460414108414, -0.1118268621048458, -0.059793831207399464, 0.09730992105866516, 0.0726641239013522, 0.09012456342365721, -0.08282222255453218, -0.07983707562859077, 0.07969631930547974, -0.047792961968063916, -0.09161546252541375, 0.026843574757741833, -0.05345818747904759, + -0.057954358045578865, -0.10233168960901495, 0.12283128396128244, -0.1146614835729893, -0.07896007375666367, 0.024797328097155572, 0.0349456869454074, 0.0864694429241779, 0.11760313077746702, -0.11642254701223397, -0.09309798248784304, 0.04770669869918486, 0.011611122936561212, -0.0694357685629879, 0.11076493019181036, -0.12744232241507186, 0.11305014706558636, 0.07196392893052445, -0.014454590329406828, 0.04543400703067755, 0.09495121788919218, -0.08993283896674273, 0.07525864551600656, 0.09114098179442218, -0.08374301609979383, 0.05315778882557304, 0.014111527828289398, 0.028556018041429924, -0.06438268728757435, -0.08316706432724151, -0.0823333254708744, 0.056345718001956556, 0.021682019375906598, 0.018261547695770687, 0.052669850990262945, -0.07768028199380803, -0.08450925089799464, -0.07012908023583186, -0.040273857197017066, -0.0011451819150633557, -0.0401058296070564, -0.0681947794316894, 0.07961226001893276, -0.051331389385433794, -0.03515605870366668, -0.08204149912994863, 0.09995106071666213, -0.0863109118612347, -0.07576135634408623, 0.0482896834781662, -0.021165127671582476, 0.0171526881349833, 0.05068903610809056, 0.06594648697850881, -0.07732771407176525, 0.07033584806883932, -0.049070772303190784, -0.014827225095365828, 0.023102430322987772, -0.051842187250011836, 0.07516456704999655, -0.08113096185607227, 0.07876707179864004, -0.053843387610569914, -0.012726027196437582, -0.02274419736754784, 0.16692588964816096, 0.2813053478173275, -0.27222087251287463, -0.09423270062555242, -0.06807542155561341, -0.0255049610413395, 0.003630675686621275, 0.03540454088016874, 0.057856655063027396, -0.05477259904600398, -0.05579907937848571, 0.04334321493474117, -0.028254935188388147, 0.002573812529018566, 0.02406036900165418, -0.03910669281418801, 0.05426678732078501, -0.057250674471858956, 0.05887961811963556, 0.041793440460981865, 0.011139887901724347, -0.016541859778344898, -0.09737011506549466, -0.161441939774347, 0.17734651572927798, -0.14326266162313128, -0.09313553150202006, 0.02127838465045995, -0.0519841603484571, -0.11276206241629035, -0.14743210434689655, -0.14058174272198223, 0.10835947307362784, -0.04967402590620541, -0.025406841046266365, -0.09575653415889966, -0.14292611873342603, -0.14383038516443974, -0.1240538789464379, 0.07734084693727852, -0.017884617908522304, -0.03895983193555275, -0.09010452476784747, -0.07017696917727581, 0.11498043014862122, -0.17877655135870402, 0.17931567529167008, 0.11864066868414072, 0.06778820311981479, -0.00044571903787807635, 0.06081992818462764, 0.10581575667402492, -0.12628212372821943, -0.10738231674650103, -0.0729462821510377, -0.020284191919020648, -0.03765856523386534, 0.08650144468180485, -0.11460675045996739, 0.0976920548967531, 0.07463930932309214, 0.036908005483604574, -0.010375657136836225, 0.07120276849406916, + 0.06018876322584865, 0.1050818587265691, -0.1233611411421352, 0.11042150056122257, 0.0687682581632731, -0.009688578153717358, -0.05164593550539215, -0.09978673334386794, -0.12244178126537925, 0.10889135675021633, 0.07256303168203716, -0.017517350122890574, -0.04266061629837998, 0.09526909924406655, -0.12349639813500127, 0.12172090188808288, -0.08800308307011641, -0.03171582132379289, -0.033057006984863524, -0.08781779296047329, -0.12012344442163746, 0.08953226072272331, 0.004537448940464833, 0.04882070500395329, -0.07869978428555939, 0.08766025229427733, 0.07845763457200887, -0.04951082025408726, 0.010848545297280647, -0.0318779148154608, -0.06632104704055336, 0.0799433220156786, 0.07887579989362065, -0.0575318141035239, -0.018545881486120627, -0.02428278797244579, -0.060822161470190955, -0.08059412258998416, -0.08137554960811819, -0.06162528533922865, 0.02835696646944154, -0.010833694175624001, 0.048158204801221134, -0.052351088596401515, 0.07417613715050786, 0.10704826778549922, -0.10318424937779556, 0.05576310746655524, 0.016611482456225398, 0.02868451851791488, -0.0663926001286765, -0.07838340571997476, -0.07019284791133414, -0.031833723272402914, -0.0065024529864032106, 0.04335277339369581, -0.07074058131369172, -0.07780743163103471, -0.06514776662742283, 0.03032656270873012, 0.01125704927975428, -0.049133207488031135, 0.08453275869478774, -0.08891929437257172, -0.06733958359430983, 0.01921489763888041, 0.15956510969499343, 0.28047891739406916, -0.2724970634686657, -0.08429088138469198, -0.047682604969471167, 0.0043233989721976375, 0.04385351780164939, 0.06373549534108351, 0.0669217405293876, -0.03623519441765969, -0.010438667461018663, -0.01833330828265668, 0.04669391722406087, -0.055292805069058266, 0.04982896113232481, -0.02336214759446343, -0.0063062223153014345, 0.033331541932164234, -0.06313329518282643, -0.06627730249249245, -0.049055849734020905, -0.012787615936936463, 0.08821799424415336, 0.15799176945777466, -0.177205434111305, 0.14313332649489335, 0.09018804309456069, -0.014376542936288966, 0.06157687573150496, 0.12134839675161688, 0.1506525857977165, 0.1343096210160061, -0.09109843460246615, 0.023637895552681674, 0.05235196493923293, 0.1183355222599152, 0.15352391811064756, 0.13674037415959547, 0.09742875601675724, -0.03524819867482794, -0.04084709421308748, 0.09204949053678428, 0.11929351594655552, 0.06493028199580878, 0.08512719585654718, -0.16318779432499336, 0.1781326839256563, 0.1336537367470839, 0.09296582703659662, -0.028561161836356867, 0.03493668899490588, 0.08973879482726947, -0.12194496703178845, -0.11427170087475155, -0.08757535114787682, -0.03739739462983305, -0.023086024374463207, 0.07744164306022713, -0.11162279145541193, 0.09946459249305865, 0.07909858464338515, 0.04164067868389678, -0.006146145515505544, 0.0688231521770211, + 0.12299461316213389, 0.014502474236456658, 0.12165851439479948, -0.0289397091575027, 0.1185343554352071, -0.04326306074070024, -0.11267243256145298, -0.05732442617078842, 0.1053095190410871, -0.0660950112146614, 0.09412815530851024, -0.0773227457409217, -0.08915837321276865, 0.09476732552218063, 0.07736569763386054, -0.10530915532597075, -0.0647779637122173, -0.11377785774769769, -0.05087518221738767, -0.11677633669585036, 0.03762621344524458, -0.0894845345808573, -0.08018573828809122, -0.049529805917743544, -0.07215233284613899, 0.0589346887425746, -0.0612773985832579, 0.06694737066512943, 0.04816838596827355, 0.07335892088982557, -0.03880645855856188, 0.07671336361807213, -0.024612447633121773, 0.07983550419290747, -0.019477214698201177, 0.08350848021977858, -0.009216464693847393, -0.08374219984881419, -0.0032065128865352704, 0.08307795556119736, -0.015672698244762147, 0.0768383647530436, -0.025088146598555603, -0.05388346977974409, 0.11356905459991848, -0.0096198450085479, 0.1029482436644725, 0.016331594217461297, 0.08616563098591808, 0.007778212029888467, -0.07829966843045812, 0.007673679101918912, 0.0776641899467844, -0.013466512125239022, 0.0769552059213365, 0.003920594337972423, -0.07792198037744648, -0.0028483691686636923, 0.07807250239805053, -0.006180863728462421, -0.08106572721634438, 0.015419298264246296, 0.08683508860470049, -0.014135017618646857, 0.08983249661682467, -0.015834305876023407, -0.3341937620639319, -0.04052953100856857, -0.2580990225642767, -0.008141203018339531, 0.10086737181884885, 0.016308572860444005, -0.06878922072925064, -0.013776758777765328, 0.0645886134608731, -0.00445675352162465, 0.05656378396187702, -0.01167138910633481, -0.05499992404317998, 0.007876207177030947, 0.054916558036249605, -0.005229482998948296, -0.05734182342079717, 0.012270788975285624, 0.06420376204468208, 0.007530857958086329, -0.06844167294573912, -0.009053533250231184, 0.18841280141104053, 0.018154174644526944, 0.174607309140246, -0.029934142235572968, 0.15495268290417447, -0.048066519063782315, 0.14073384816100623, 0.06752275227541486, -0.13078809144731696, -0.07892776832036226, -0.11793315997958843, 0.09054713508105044, 0.11901137772273696, 0.1090650339076844, -0.10673771895658174, -0.11131353220106521, 0.07859773797729373, -0.12487898898931481, -0.062191829062873225, 0.10223777550219458, -0.06552154709414057, -0.06023170305713661, -0.20180799702097818, 0.027211940346187385, 0.17356952119838995, 0.03982173484100273, -0.13456889054050084, 0.05518786517571974, -0.11073324706273154, -0.07058728939139547, -0.09946744595290917, -0.07789503737266618, 0.08453976137804502, 0.08581972043526688, 0.07957025118163631, -0.09135306885545928, -0.07214809824641598, 0.08480441504226809, -0.04158022046316938, -0.09333064263472785, 0.022877878482619567, -0.054822878184931936, + 0.07271978297587293, -0.11790877359550603, -0.11907490514020097, -0.07498134473415742, 0.0021264903925954466, -0.07145363447007387, -0.11658913449138893, 0.11575596598761172, -0.0690631338492017, 0.0016325439605142525, -0.07112953352866241, -0.11408254994211418, -0.12051788897562496, -0.07220652495397588, 0.003398263170535769, 0.07793283664064725, 0.12228895929084463, -0.11796610302443841, -0.06766303437822226, -0.006036548841492418, 0.0781983802140156, 0.09021384286151028, 0.08160113825930312, -0.09210182570340197, -0.06581117155631779, -0.015139509186287474, -0.03885429205605861, -0.07851466972465658, -0.08230229838439337, 0.05398593172351089, -0.004484577753266955, 0.047465388502651334, -0.07847417852790602, -0.08025620598241295, 0.05612367394891422, 0.007236532802835111, 0.04426740883709125, -0.07803225700534015, 0.07889412799792109, -0.04858888613390503, 0.0018529388602659355, -0.04855646315695109, -0.07729163940188152, -0.057398159325466346, 0.04608722431012119, -0.09799890816541906, -0.09760989528964725, -0.07642966624865512, 0.03973075264122484, -0.01253027328740712, -0.05154369347799454, 0.07619399375641893, -0.07140823204608181, 0.054271046184725544, 0.01170849307899777, -0.03571635721036023, -0.06849992447286404, 0.07731658521141266, -0.056912083988433934, -0.018601636646017647, 0.03183986497079334, 0.06951079270619517, 0.08484991671256838, 0.07916445710902087, -0.037887864708900744, 0.011857393714255537, 0.1943433651877793, -0.3098297474288391, -0.22165162188084606, 0.0778305190352891, -0.03005890549529893, -0.03146826696501089, 0.056491672794544194, -0.06685666352998847, 0.0501331330991781, 0.028913181780825442, 0.005413001808571787, 0.03787683253397104, 0.051215273910429585, 0.055560910770457286, 0.04039976148931206, 0.01631940002750589, -0.020454308856187625, -0.04807857718930843, -0.060804569562575926, 0.06172011293314113, -0.0338210810693634, -0.0036491567230285808, 0.10677870197132175, -0.17838138073570273, -0.17592128618894382, -0.12085365763410214, 0.03546993235680337, -0.06348394045318417, 0.1301133385726024, -0.1407349314869726, 0.08982287950030063, -0.0069144561335033215, 0.07822198190612654, 0.13825047436074603, 0.1680410667718995, -0.13196757812585835, 0.05056040337360157, 0.0451176947720085, -0.11562802760625936, -0.12859988338444062, -0.08727216332078232, -0.045011702081649334, -0.01314233179092545, 0.046559190411599095, 0.1195959749619099, 0.19204855374247715, 0.17210760468667777, -0.10144432945139209, 0.024232786707198407, -0.06335407282224746, 0.11200338095286244, -0.11182457137408688, -0.06124633492710771, -0.01034959037188706, 0.07669462863979787, -0.11964903359474993, -0.12932856521042232, -0.10159925683610832, -0.043482774365798595, 0.02206685126261928, -0.07178210571033412, 0.07871843379915208, -0.04729970455932405, -0.023154375396668845, + -0.044413280313944224, 0.08318491867608005, 0.11190215624922333, 0.12595625017477866, -0.12352014719468252, -0.1044613261081907, -0.0703312139393971, 0.026016972070760883, 0.022045745892738205, 0.06877524996882257, -0.1039785709877537, -0.1263270872228865, -0.14003435624317778, -0.12545988232948085, -0.0945570288359068, -0.04988560118806347, 0.0009596442281078268, -0.05177766026146512, -0.0964236730991731, 0.12943375987500708, -0.14527392592563898, -0.10713429604307532, -0.0011954503974918882, -0.04673019611552108, -0.08625531303972467, -0.12139896335325012, 0.14192503903813333, 0.14433629673562576, 0.11834074581260967, -0.07516594686151121, 0.021282812218590734, -0.03477866961974545, 0.08395215385433964, 0.12310283516343362, -0.15313239118612476, -0.15444186828038922, 0.13486258775982668, -0.09644264813024042, 0.04068368257864511, 0.020802832362692765, 0.08276326929697732, -0.1361409333888088, -0.17132239632740293, -0.13792454507537513, -0.024286837676289707, -0.009881059410716205, -0.03795870985540734, -0.08038137319798984, 0.11423122920345698, 0.141425132203892, 0.11842190976471627, -0.08260067552168768, 0.03662363236577783, 0.008725854407004952, 0.0495114808487329, 0.08325443360221728, 0.10346780604453641, -0.11354822031573526, 0.1093661908309546, 0.095771782222696, 0.05483075180141845, 0.008576015792215976, -0.04347128817904725, -0.08904791794829335, 0.1199217490277754, 0.0999357637240219, 0.02233534887677387, -0.005756482911111565, 0.009548142774611367, -0.07089133315006879, 0.12174743182172124, -0.18977589601822822, 0.1542329282971586, -0.10099630461508888, 0.03401005922312366, -0.03367241209985549, 0.08515654694812454, 0.12403501153358368, 0.13020572912123163, 0.14701497948441472, 0.1498239821938119, 0.15150183170651504, 0.0921218051079087, 0.023235908593315004, -0.06019081241969977, 0.13229592696464598, -0.1818223299790196, 0.16037862068818567, -0.06265732887880811, 0.043729581013872545, 0.01938728213791764, -0.009290374403039614, 0.03497943859244759, 0.056682857745896986, -0.06595244295911731, 0.06271517845587839, -0.04757287183323216, 0.027977206363966958, 0.004557432207956173, -0.019441491660575228, -0.04429331944838563, 0.06290661583470375, -0.07543390871932172, 0.07924761206615491, -0.05617460797801847, -0.019190120122469227, 0.027352080484215936, 0.07188974102425064, -0.12203088266476608, 0.13527713287048282, 0.035586790328276136, 0.032427278199115464, 0.022845770868712142, -0.010894181931975732, 0.0018319436310096898, -0.007628444000760362, 0.01429751432663282, -0.018283490164626222, -0.01851523190460357, 0.017950909508203813, -0.014817565036912495, 0.01078366018853065, 0.006504560790116579, 0.002034538841357222, -0.002507085344985798, -0.006830144969659506, 0.008125168944492535, -0.006563141837792821, 0.0031886075463179358, 0.0013608429128116376, + -0.12071297850545717, 0.04894769891769355, -0.10102877963109953, -0.08925253182079326, -0.06503073206636809, -0.1151990533840587, 0.019528468679840066, -0.12305126754624307, 0.02899619350558427, -0.11148294445653191, 0.0694850813880265, -0.08357341301049134, -0.10785816320843879, 0.048058390741931745, 0.12662223921839458, 0.001356668340286392, -0.125130659657797, 0.05062082739890976, -0.10699863285660859, 0.09400177658961359, 0.07000230197096252, 0.09125539443636592, -0.13359023382844817, 0.09738498724088589, -0.0917002484007561, -0.14619849461003448, -0.031158331825885382, -0.1601822746314603, -0.024607687799722902, -0.15337718994012597, 0.08502776923905131, -0.1154000698148584, 0.12358869683088733, -0.06512238447816018, 0.1527083982098418, -0.012197904443341578, 0.15703246107102217, -0.05098289648293717, -0.13973768084350818, 0.10580817977241991, -0.104516550125073, 0.14587116034549544, -0.04782320614088453, -0.12046703362997783, 0.0695713682115972, -0.07730712652736096, 0.036514926699474086, 0.13117197099374814, -0.015595706782493543, 0.13174475309123668, 0.03877391639725334, 0.12318865170919312, -0.0871965872496932, -0.07699000276733171, -0.10191225970700693, 0.03696332022988319, 0.1161223611863962, -0.013728617955951839, -0.11125836802893127, -0.06424261799621558, 0.09920972133910382, 0.1028615388660045, -0.06954813125121888, -0.12258460024069126, -0.025271377085982597, -0.09578440998017854, 0.02169235561174827, -0.04337606304997059, 0.005839430262413877, -0.15008947757343852, 0.04299035323502295, 0.15009991709087964, -0.03543234753292626, -0.15304548209270158, 0.09249756260917992, -0.1034442745533742, 0.1010850662967446, -0.06455855541492876, -0.1204515603820095, -0.007875494218502355, 0.1187071218056375, 0.07095944580600272, -0.1158508817205992, -0.1131435458951783, 0.09467715783215257, -0.14079170843438446, -0.047281596849219336, 0.1190309664599365, 0.06953279238986815, -0.08959662266669095, 0.02978063373360078, 0.11982116558856853, -0.020734876259817597, 0.11189762946306088, -0.05774024881197599, -0.09178814545605667, 0.09144186991446428, 0.052610260227430664, 0.11059260624120831, -0.00438837037193537, -0.11365139845722771, 0.037392982916689514, 0.09667982194251137, -0.07823800355105619, -0.07877993876696929, -0.1032568067637543, 0.056447653489626964, 0.12196854733909485, -0.002966066183089101, -0.07795068411819409, 0.015559031997405673, 0.02916691040552368, -0.0030544540264746903, 0.04283585974372784, -0.014143304426437273, 0.037884410538423986, -0.023499655961795807, -0.030316840343177668, -0.03425318083912629, -0.014723874157865333, 0.03897503883606228, -0.002747692442751283, 0.03782857262683476, 0.020249026825248415, -0.02845313816288885, -0.03439351243312394, -0.022831631421655556, 0.03974508937391918, 0.017178002622811696, 0.03703853140701953, + -0.08602972095547518, -0.12318121688062951, 0.0903014082213566, -0.0066125086694244425, 0.08104503182927433, -0.12260957140355609, 0.09493454096835462, 0.01320649744367459, -0.07590786564245343, 0.11949934146703543, 0.10020064995549674, -0.02364258458974534, -0.067201201953144, 0.12495455756023197, -0.11168780711676864, 0.03607040185167676, 0.059697971636202544, 0.1217744695749424, -0.11706857020619733, -0.045163619847914935, 0.05357858169664995, -0.08992223504996394, 0.13161524904119512, 0.14618598896411586, -0.07619703772613412, -0.045626873608350826, -0.13883817970011564, 0.15429564296746884, -0.08903200432582146, 0.031936987340731596, 0.134352363740775, -0.1524954588082861, -0.09490676477328203, -0.017194486270944612, -0.11788977174249124, 0.15827551399818202, 0.1090115190494456, -0.002938332546982673, -0.11446867272907753, -0.16105266646578079, 0.1243882990581277, 0.01670789657232003, 0.10395638358704597, -0.11827965730719268, 0.09213236282171117, 0.08274683905369096, -0.0254514433183303, -0.07375636886972242, -0.12994716213465649, 0.11573982978702596, -0.060463953855233815, 0.04519057700925993, 0.12325083799454203, 0.11347386864475092, -0.06145427086855716, -0.02591681432954797, 0.09979615173658463, 0.11362124139869442, 0.0628496506429802, 0.026672626690154518, -0.10866257510288928, 0.12838929674062458, -0.08890640982939708, 0.0008677515752662224, -0.09261795192672295, 0.093858563462531, -0.04586149221210238, -0.0306695301609178, -0.000187803744456212, -0.09925944526864522, -0.1525253451315486, -0.12738671609890723, -0.0859383946505255, 0.04052790433201793, 0.13996646426654036, -0.1320761666875648, -0.09064357760774912, -0.0032372875432497977, 0.09880829660604812, -0.12059519987014393, 0.07330768313877303, 0.024184267853461314, -0.12042790940139217, 0.1476248720691859, -0.11789136702845414, -0.02049615712005302, 0.09770988729532108, 0.11468256411101622, 0.1009525910931921, 0.08587560715761036, -0.021123269229202886, -0.06818203440907591, -0.11744184795735099, 0.10039610602429676, 0.03153094649919014, -0.0572582367350785, -0.11400037174572972, -0.10096926289069924, 0.03579656560381001, 0.05082454970472111, -0.10420945780985372, -0.10549591498729122, -0.04665669162278644, 0.03912129211704794, 0.10764608138756394, -0.11747994997528635, 0.07769275287813021, 0.007121057666885958, 0.09596017152873826, 0.07462220520482624, -0.030638864804770342, 0.021681902544300122, -0.0007338140147486014, 0.029180975585405923, 0.04307474438606815, -0.03293611050086434, -0.008299398841465803, 0.02282709178830187, -0.04114285192770285, -0.033108795781245544, -0.00914781118607644, 0.02046243322209709, -0.03806878991681314, 0.033593785702844464, -0.009714204247269202, -0.01978851319919158, -0.04126246819444002, -0.04116689182032814, -0.025717439719658026, -0.019683896791212494, + 0.027748865294585465, 0.05410445753515229, -0.07782991671562287, 0.0975937726390052, 0.1119164966144298, -0.12052958438893262, 0.12323658378300424, 0.11932831401955145, 0.10920227458547484, -0.08881898193548403, -0.06800580480573976, 0.04360422845571447, -0.01430392772219485, -0.015000346778990889, 0.043406397295994645, -0.07018640097880213, 0.09254799613192372, 0.11008144275348167, -0.12425985457212368, -0.13048426049627698, -0.12917231077908164, 0.0891105687738934, -0.006891898635995278, 0.027361783488581096, -0.058713797582016405, 0.08752082482030556, 0.11514620763942121, -0.13779455686808026, 0.15769592066677895, 0.16329881155468243, 0.16034274839511947, -0.13832131125304972, -0.11977478963348603, 0.09486470295059252, 0.06007646797418052, -0.025383951785492145, 0.010441983770538895, 0.04519819259500173, 0.07874633495823573, 0.10828405680941494, -0.14022697333424472, -0.15843487451670143, 0.1658600601857866, -0.11729173963768297, 0.027855494798956073, 0.006606204424947073, 0.01326989017554428, -0.03858856299778624, -0.0663506270148153, 0.09421970197121608, -0.12922911462265313, -0.1373822570286969, -0.13808982901494601, -0.11003605473365184, 0.09854262952579684, -0.08157600912908027, 0.06304416008598537, 0.03938086511340386, 0.013623262768837695, 0.01313123735103167, -0.04209656056680349, 0.06867053457387878, -0.10437418523068209, 0.12306705872857922, 0.13165314879728815, -0.09324454572254012, 0.026492849818772958, 0.017271055365102445, -0.006360228705742628, 0.029291928516631986, 0.06275097943272281, 0.10325821045451694, 0.1619067020371506, 0.1671887801994527, 0.16352659239694972, -0.11221931256294414, -0.09423244297214449, 0.07056124368062837, -0.05583916033642959, 0.030102127185417646, -0.002531942533192246, -0.023843934613636025, 0.0561393806883852, -0.08534364184693065, 0.1348584903392967, 0.15571538023529338, 0.16173996097238943, 0.11251783426346117, 0.03425915014347612, 0.011334348980959688, 0.011254117399690828, -0.03645876452017406, -0.06121380503304325, 0.08330930705287451, 0.10266028810850966, 0.11372617622022718, 0.11903801033079313, 0.11234211023655935, -0.10621287286719262, 0.09429278823182626, -0.06964311479571278, -0.04734899751573915, -0.022907567801101578, 0.0035445768370118633, 0.030457468895574963, -0.05596773828797831, 0.0945997010214678, -0.11397158758374165, -0.12422582027792319, -0.07359749694067697, 0.015391885010146295, -0.00893234788330597, 0.001987084306814311, -0.00797259499281858, -0.017353357781936567, 0.02642382830764797, 0.03511587709942241, 0.039500482731621975, -0.04187674932665969, -0.03889333228894362, -0.03745623139128736, -0.03391059209827363, 0.028295551416372442, -0.0213326893872247, 0.013332696456158604, -0.003043267304222559, 0.0067599864574561, 0.016227267854430225, 0.03246243814645473, -0.05463733756693256, + 0.11601527276325302, 0.0779797229556912, 0.06396731331653638, -0.12044281486319196, -0.01662479226489233, -0.10908456371630106, 0.09053672118515917, -0.04799337558686267, -0.12290985756400177, 0.029381843666489903, -0.10111984617995914, 0.09744853148062173, 0.04133245139221013, -0.12896132170083524, 0.04552765844928787, 0.09819595618864332, -0.11041324928202287, 0.023509079631404955, -0.12843749051613468, -0.060784385349788965, 0.08891298801539595, -0.08863003372217063, -0.12432475430583703, -0.12287735105094247, -0.040153464000813925, 0.15770892566548397, 0.06965499258861402, 0.11189183600949315, -0.14685885494331777, 0.018134604628884547, 0.15854796371360674, -0.07770971474932117, 0.09927221022627744, -0.14455204720771372, 0.009789870127205481, -0.15216073989575887, -0.09282324066874995, 0.08927350926900995, 0.15649354377929808, 0.01703107522145274, 0.15178042821997356, 0.10785666780207159, 0.083493803504548, -0.11719790858726928, -0.06270869158571159, -0.08836799063162325, -0.0007115973671169142, 0.12231104883771923, 0.0883864533089819, 0.06805302805198499, -0.13300088969673132, -0.0016115879904141206, 0.1293144350239885, 0.06805637725933396, 0.0667375070051714, -0.11358794046517959, 0.01331356293760906, -0.104662683395345, -0.08398729903415704, -0.05180752548701832, 0.1307347818906945, -0.036524724081731644, -0.11563672518106018, 0.0933914973726238, -0.05802463376351243, 0.09372898014944031, 0.018069581769007807, 0.0454587800028584, -0.012167292730057296, 0.1351321403033646, 0.10982180504896999, -0.07806155233984624, -0.15405581907947077, 0.016123203276802153, 0.15939065867921806, -0.051429322719643525, 0.09758682016741597, -0.11815112460132637, 0.0005307032825944916, 0.11494786047438488, -0.0772105125522617, -0.06986775391611534, 0.14837687032930436, -0.032536446640247324, -0.14517270120086534, -0.09564683603254873, 0.09090767376729608, 0.11195319110832927, -0.06591710591595258, -0.09618746113953541, -0.0014310989059382892, 0.11276217486967126, 0.07539586632972925, 0.06251662782525677, 0.1163647800773949, 0.015186983542097408, -0.10586909351695085, -0.08269120518131592, -0.046410445566576045, 0.11395455249852753, -0.01754193803724291, 0.10008254251223325, 0.08320665272481484, -0.0461858402257664, -0.1214153837908634, 0.04127500970630178, 0.10697957770620388, -0.08494025454980784, 0.06465396102267237, 0.07419428814848522, 0.015146670322899264, -0.029964887288048744, 0.004583696578252454, -0.0387919565964742, -0.03060337085318472, -0.01912884162149472, -0.04174859652568473, -0.007498677788032037, -0.036396066492946494, -0.029971287463951987, 0.013894833776113068, 0.03936046600801, -0.010893539862338701, -0.03225780536904214, 0.03160111028306622, 0.014500772330995015, 0.04385136567764698, 0.01887206867563424, -0.03748041075411046, 0.016658378577865035, + 0.09761777348522811, -0.11972015171561887, -0.049635935996190914, 0.05839585975752325, -0.1212994176727174, -0.08958930657862528, 0.01258216789027654, -0.10494142699320524, 0.11441492723562044, 0.039708663770374866, 0.06652880836338977, 0.12176745534931842, 0.09015059006647602, -0.0183676200196234, -0.11209715866238469, -0.11749708775320034, -0.032124435952287964, -0.0788801005174625, -0.1294679337068835, 0.08169623853802713, 0.03055176244318091, 0.08855702090928397, 0.1399308822272953, -0.13283556587565262, -0.02220819398498337, 0.11266450078790421, -0.15713620768236006, -0.07958533134984476, 0.061435827546033266, -0.1573300444976288, 0.12910554504297506, 0.009566778932432834, 0.11592168680090924, 0.1526357795849401, -0.07977240177474557, 0.05990262329014367, -0.15239547832871378, 0.12528265394183877, 0.004861923412235091, -0.13077646633600903, -0.1587886398180626, 0.07578117179739362, -0.0698291618474355, -0.11833356131445347, -0.09435356030981631, 0.06871293023838715, -0.011287787972286568, -0.11373118955487091, 0.12283221994413338, 0.03979322714399769, -0.07051720440341207, 0.13808312047887578, -0.09797578126835704, -0.0017655255037443965, -0.0944589710449597, -0.11294249550862984, -0.039838162816545425, -0.06256738570736528, 0.11711636500335404, 0.08629253146740568, -0.02700113275428591, -0.11722734791069038, -0.12173052993377546, -0.052880210684647024, -0.06429136664380408, -0.0958801958849307, -0.04544736761441635, 0.021252023988856634, -0.016741001973179223, 0.13297952261610455, -0.14277124574080063, 0.05844942266077806, 0.06450216744311517, -0.16029879718335555, 0.12698927775279906, 0.028422534443044618, 0.08628890882219814, 0.13326462612045567, 0.056749648302747716, -0.049910154643439335, -0.12041438797529692, -0.11167533495999606, 0.016800221525863024, 0.12734322318410954, 0.1468842451251443, -0.08615713979371842, -0.054067440504108735, 0.11394794434748098, -0.10335953997437422, 0.07769711193030439, -0.005702260997716177, -0.09847853547351894, 0.11505920908616232, 0.0433336733810218, 0.06146109169774505, -0.1172205045573614, 0.07619690356188369, 0.022412231103239633, 0.10266950755910934, 0.10838874192409903, 0.04630363096800178, 0.05175814443870224, -0.1104054599201628, 0.08598805472433149, 0.022078213795659475, 0.11010148463995831, 0.11581848897123527, 0.0669624688832789, 0.032621767508989534, -0.07741939170817086, -0.031358370465547604, -0.0196228968784365, 0.00601835812715308, -0.03750451653829869, 0.04057749933349132, 0.013402258442401414, 0.022798868732777776, -0.04146276187635977, -0.025364851360918643, -0.009483363129113985, 0.03622148228931353, -0.037221545574344796, -0.012718199008402872, 0.020525812432177947, 0.039213796249663604, 0.032593361535942, 0.00818140514500085, -0.04052353882423265, 0.041957827939965345, 0.026903958609078984, + -0.010529056547688013, 0.02106210933604367, 0.031742353746817165, 0.04227635699719637, -0.052665857051613675, -0.06264400060371778, -0.07145235917710224, 0.07901477190940423, -0.08502306652570941, -0.09464378978227489, 0.10084488530659175, 0.10734295803108711, 0.1201957042539713, 0.1241192049847062, 0.1275523190799014, 0.12882875010182354, 0.12958669304001114, -0.12751357397189136, -0.12462607169019882, 0.12363857098468325, -0.12167064236317078, -0.0899413230927232, -0.026953547719483363, 0.013150846619852562, -0.0006295221731423754, -0.015375948917132398, 0.029793451388422258, 0.04432062237768193, 0.055216544633948, -0.0656118399942945, 0.07477648868488183, 0.09035097516882269, -0.10157602008792409, -0.11345917079905933, 0.13149435187209538, 0.14159128782966604, -0.15047581118581319, 0.15694503654607259, -0.15587148129721895, 0.15193579103936516, 0.14949510162084673, -0.157360535347005, -0.1627911963596489, -0.12588029703531026, -0.0399702874969018, 0.029455872846702143, 0.015907775128138832, 0.001271265443185279, 0.010416281645125336, 0.023378510733492366, 0.029804525312254256, -0.03789741885385197, 0.04561817082947702, -0.06425605723086582, -0.07478476922700987, -0.0839122374191251, -0.08998675232238725, 0.09872594795071048, -0.107689120862712, -0.12003334606448492, -0.11535685211317036, -0.11220965266146132, -0.11295904428332679, -0.12901256849563392, 0.13742952385781368, 0.10776184342803932, 0.030756248407400263, -0.022525960060169867, -0.00964795643573196, -0.01651138606600959, 0.0351849951842807, -0.06460856838565496, 0.06436867343615643, -0.06738748421860367, 0.06823112175409572, 0.0942949569921144, -0.10328566914674585, -0.1095833340168192, -0.10043979030166536, -0.11266729070065026, -0.1287286206646074, -0.15850089090200747, -0.14728289393938726, -0.1360080714225012, -0.12665438524996045, 0.14422944215207706, -0.15066669039097264, 0.12167171859200554, -0.04385370558658861, 0.03168127609823511, 0.019313794221713785, 0.007269091524723348, 0.003044967996119124, 0.013442301471086738, -0.022337213493073254, 0.02989628724360189, -0.03552889104982605, 0.04294232864915819, 0.04977313125173371, 0.05935045037820985, 0.07887690925475799, -0.09773027919967964, 0.11972409965768561, -0.1424595825639544, 0.1347295815252199, 0.10991704195411132, 0.07975180136391968, 0.07721450870183658, -0.086138562190757, 0.08597046718255369, 0.017909182525319724, 0.013654220127952128, 0.00860738815714115, -0.003454449353824369, -7.73838734185392E-05, -0.003710535160114249, 0.006517293150957384, -0.008904604119369242, -0.01057170044995136, 0.013243951963767061, -0.01567714918093373, 0.019270701702120783, 0.024992329708676653, 0.033169486005299134, 0.04418127296301704, 0.06029462269524141, -0.05732872069310785, 0.041248248633270784, -0.018341344776309023, -0.007355504009134293, + -0.10899552054789186, 0.10225506051827467, -0.012853460964982544, -0.11358785227101939, 0.09361717835009824, -0.026195945135633905, -0.11750218159795667, 0.08263636527914967, 0.041039759844683985, 0.12405883316402097, -0.07052628116734413, 0.05812133986518086, 0.12779033087846337, 0.05245247814167056, -0.07821721009328005, -0.1249432767868128, -0.03908880038931282, -0.08912353679001306, -0.12314981729318063, 0.02873206624100565, 0.09749821260506984, 0.08992438292183055, -0.11093630439959948, 0.14650767830775646, 0.02557262493675282, -0.13050693153633683, 0.14439577683818428, 0.004043281232736106, -0.13655628400258052, 0.1338369623834071, 0.012450526025704135, 0.1495892889393064, -0.11905686706601659, 0.037708599144358354, -0.15563285063561086, -0.0992013171769387, -0.0628205914695458, 0.1564561615912637, -0.07782955425786853, -0.08414863911030046, -0.16180305103604392, 0.07767941286841172, -0.09308740238853999, -0.12137186807893277, 0.06303971747229214, -0.10839256751995191, -0.031153380968426892, 0.10809726294894251, -0.11964956966411955, -0.005366416036648982, 0.10187111004476936, -0.11321823147874314, 0.004908432083025987, 0.11447753190341023, 0.09411739466632454, -0.027781020206026186, -0.11969549502691333, 0.08803008493651993, 0.037535856820310506, 0.12081765514691623, 0.06050417227940667, -0.061520486678025656, -0.12699955179893255, -0.07288846430641031, -0.06658471438060415, -0.09851519353436437, 0.033518705902765775, -0.06690691114637515, -0.01880658022992283, -0.1564859822834366, 0.1381704063672463, 0.02148692006888884, -0.11430825344003652, 0.10547574017418918, 0.015375204297388492, 0.13924052892002697, -0.0834122676441622, 0.0634202826538667, 0.13663864098777181, 0.09141032585953913, -0.05001748213682871, -0.13756437004148336, -0.04475636349064219, 0.09128764682405638, 0.14150573770973404, -0.07042596272677293, -0.08779301842360084, 0.11543486641036946, 0.05789784902085926, -0.11374600359283522, -0.048063952015192875, 0.078734961301518, -0.11709308573296237, -0.03172408411019294, -0.08538522033698356, 0.10966596931483025, -0.012300787744274549, -0.10073078004948897, -0.1040104817184885, -0.0004900637338460696, 0.1041278526929425, -0.09494609565506804, -0.012119628973083371, 0.10245789454363227, -0.06589458968484724, 0.04648485218182161, 0.12228741213378222, 0.0960942566755977, 0.02826206486775234, -0.08612569968464769, 0.013900357719148274, 0.03816508534689833, 0.019686741007848504, 0.027824357801022107, -0.04154303183419568, -0.012238306350343148, -0.02820406673181862, 0.03877173844093612, 0.00592393535949845, 0.03450873564344156, -0.03674434621922855, 0.0017325463761359468, -0.03512363094369688, -0.03714026766957567, -0.002120232265391991, 0.03303108961372588, -0.02387276559553506, -0.014462762731237873, 0.044316215100901585, 0.03712730632701565, + -0.10725200561496033, -0.1054978668873588, -0.003744264847060577, 0.10849725124070711, 0.10271338411960285, 0.007241593791515346, -0.10954975113755917, -0.10075524244105659, 0.010027237187124513, -0.11145778371764556, -0.1039121696786503, -0.009644186257812522, 0.111843722800043, -0.10838096710914057, -0.004811923830187748, 0.11357620934833759, -0.10578154122582198, 0.009284842792579394, -0.11681857860458504, -0.10318839795964858, 0.016435195583601254, -0.08829276333239755, 0.149363405072113, 0.10515575007868277, 0.04425161223077251, -0.15582080545276675, -0.11278928894589664, -0.04536288270326869, 0.15532047568209267, 0.10361217536379205, -0.05270570896154768, 0.15456247299425982, 0.10915069747986843, 0.0479338621753289, 0.15279981854241914, -0.11094720917172099, 0.04303155728533761, 0.15153285561982127, 0.109947308415378, -0.04253610505086816, 0.16001164628043196, 0.10570997688760876, 0.06032071325276652, -0.11841613994172431, 0.10993884302235107, 0.05881484157407278, 0.04519895384784526, -0.12784106497637657, -0.09601074935404029, -0.037198284872029655, 0.1255099162528256, 0.07029589073467873, -0.05464901737855436, -0.12056089123238772, 0.08381787462634134, 0.03839850168090767, -0.12336188527938217, -0.07896215311941351, 0.046189132225613466, -0.11616368978625309, 0.08190089025139706, 0.033530388121679286, -0.12869715153795253, 0.07796050611838103, -0.05808749886458441, 0.09568308316039074, -0.06802214955049544, -0.03096949140659036, -0.0281998558763714, -0.14776268578493662, -0.14965201229518946, 0.010576764325495362, 0.12510267591840474, 0.08761454199784388, -0.035561914838271355, 0.12635731101565573, 0.11930907329418271, 0.00957273998290159, -0.13434334321706606, 0.09860831520017621, 0.0391927363931661, -0.12289306892538446, 0.11139395752893233, 0.009096923685588815, -0.14171661077105108, -0.10142645353685001, 0.051418958334851925, 0.10982787748736347, 0.11329153796098282, 0.05415630017542205, 0.05616034731835032, -0.11936221800889749, -0.06737328648732167, -0.05343616018327327, -0.11835937902098241, -0.062033145718325966, 0.05639648943477902, 0.11745028872109926, -0.0643525666242918, -0.05601614772077411, 0.11420054763093036, 0.06341276583011965, -0.05152398695504334, -0.10691531037172289, -0.06624207138881456, -0.038707892944683714, 0.12571603251562247, -0.06327821453633195, 0.07764901078173421, 0.08087757616224578, -0.03806692642737055, 0.012911180415113153, 0.022021358566540136, 0.04201727373625331, 0.024506702534136945, 0.01870271485903483, 0.041356339785221304, 0.020323705881156943, 0.020875681076930296, 0.04069053509795666, 0.02203052902054196, -0.01985904681457035, 0.04101061292957016, -0.019548419187555614, -0.02206999165832206, 0.03646991831910826, 0.021064847316897815, -0.013834966835828143, -0.04597531232090592, 0.0043979666685576456, + -0.006901491337599615, -0.013790096197832625, 0.020677328835799265, -0.02750427575984156, -0.03412804362847308, 0.04065296473393012, -0.04712839883482648, -0.05334634506068421, -0.05933784808476447, 0.06277786208903072, 0.06881148448274851, -0.07465850893500293, 0.07529885709192986, -0.08077649403795736, 0.08608574791274226, -0.09214612286614753, 0.09704381485262052, 0.10150409617855936, -0.10764343520971423, -0.11217006501633445, -0.11563924168455002, 0.08736105011272859, -0.048473116898380034, -0.05652364496759404, 0.06297560979024489, -0.06802054284941035, -0.07614617640679397, 0.08458695467309406, -0.09549443464931791, -0.10231930881985105, -0.10867979977640721, 0.10763492424171561, 0.11423839747117238, -0.12040844239802954, -0.11960103658552237, 0.1249861080735923, 0.1301779879801147, 0.132592284295115, 0.13678528867319603, 0.1407505015547098, -0.15325197988256986, -0.15939092429821397, 0.16207452312754975, -0.1170015343946988, 0.05329951974445332, 0.05839316954894939, -0.057922251257280975, 0.05160115302121282, 0.058700967703065446, -0.06788734026878744, 0.08654451077174237, 0.09101361606140357, 0.09491471793288758, 0.08407326421185318, -0.08932995105038566, 0.09400646658862104, -0.10154460752663169, -0.10557884009072685, -0.1095429791932735, 0.10176544626052238, -0.1037074393987259, 0.10635442387643386, -0.12470071170615381, 0.13177858824347446, 0.13368975452637244, -0.09444541487791686, 0.0380978777348321, 0.040899145899914155, -0.0360798769452457, -0.021952342163784958, -0.03184079427370079, -0.045994588139860695, -0.071124376201317, -0.07617842373140826, -0.08064945133538734, 0.06669131219467726, 0.07405314430343368, -0.08071697861007056, 0.10269313235428149, -0.10816315030881325, 0.11367012072596418, -0.09731830033002481, 0.10017148902479152, -0.10444044416679671, 0.13399476563203896, 0.1448920049897031, 0.1483319335112642, 0.10694577793453411, 0.05858451249089115, 0.06377944725303383, -0.0652705247623643, 0.06436751017070824, 0.06992305156963653, -0.07573020641342486, -0.08314766388923146, -0.0876618235769948, -0.09190800621016494, -0.09139146555964525, 0.09575787390773807, -0.09971291154136483, 0.09524600807583969, 0.09837201919899215, 0.1013163954448228, 0.09538378615416784, 0.09722961030858474, -0.09969746441915511, 0.12335090730346225, -0.1315139392269182, -0.13455648371205114, -0.07903482671168166, 0.024466440874069607, -0.025966759890623546, 0.02461288590806143, 0.021396966375574554, 0.023449567950301075, -0.025958680744977064, -0.029856092454358867, -0.031342955115998244, 0.0327241910781574, 0.03151786537518227, 0.03308525612505919, 0.03446081170428952, -0.03546499839181815, 0.03650945592502686, -0.03752980495536626, 0.03266743687215825, 0.032983624866862855, 0.033862385438387155, 0.045500574228782176, -0.06540637433675603, + 0.09979422224769219, 0.1170177310011579, -0.03724137999031742, -0.07268378887032996, -0.12235532445932971, 0.07091490793424116, 0.038616619862945664, 0.11631555687152875, 0.09800979609355151, 0.006219260858552859, 0.10481091468434964, -0.1167557521562328, 0.02474789127909545, 0.08685408307639264, -0.12628920729781995, 0.06267740818104314, 0.052583216856257095, 0.12467477028155932, -0.09585820561440198, 0.012102275820177429, 0.11111114908421878, -0.08677162891975955, -0.09766352204020119, -0.15330601647272488, 0.08045721584565158, 0.06873833854821296, 0.1585052401503217, -0.11802227593984357, -0.012469973851613754, -0.13499259599966576, -0.1458244079332084, 0.024599739669658297, -0.11325853067155922, 0.15744477264510456, 0.06275411101252588, 0.08078508482361925, 0.15726250101557193, 0.1016396016882284, -0.03688479558138512, -0.14466212568050857, 0.14179112073910974, 0.01961088372425985, 0.12279688676101129, -0.11649430710865291, -0.05362545122933359, -0.1088289273967858, 0.06879475812392123, 0.06294032971572035, 0.13275202872584022, -0.09519131407888322, 0.004035195136480674, -0.09917529871603192, -0.11895803225561231, -0.018153919304555746, -0.08860303177084705, 0.12241797201809893, -0.05892074547843355, 0.054882414214424205, 0.12387193265874545, -0.07853698362943472, -0.027524170525462053, 0.10873981501354349, -0.11567405153871048, 0.02298915772483465, -0.09484569512749177, 0.09431032792878088, 0.028078749169885828, 0.06609720019199539, -0.042121951613756065, 0.12094291299022362, 0.17130407884471685, 0.08086923926804893, -0.019670046076964997, -0.11343702635346342, -0.11210599756352319, -0.017294117156816273, -0.1247641264219922, 0.12939536576868826, -0.048646633059535885, -0.07787897005807325, 0.14081127760532217, -0.06267586755028762, -0.06140680724935221, 0.13165456402481696, -0.11968664486010672, -0.006674389238333977, 0.12150180839882395, 0.10559957724689184, -0.05315768709861208, -0.11193310957852087, 0.07347856536524482, 0.04102316134909839, 0.11524423512311766, -0.09446220966230329, -0.0014474076822689214, 0.09443628857760969, 0.1133710732611796, 0.03197672504716137, 0.07381882032778277, -0.11830364089824755, 0.053037902490706675, -0.051746249393707866, -0.11253783839704071, -0.07174597754786531, 0.02130533155921156, -0.09687521777383853, 0.1149609201286531, -0.026352885306544987, 0.09599285656097307, 0.07896682446237596, 0.013349757369406398, -0.036972564220474104, 0.02673968378085743, -0.016486031304335153, -0.041287059986422736, 0.03233356211401383, 0.001201860426093595, -0.032471137074412404, 0.03971999844015778, 0.010435291864268507, -0.026179843940315375, -0.040966500212140676, 0.020629014092871704, 0.017054083676939735, -0.040224867832356445, 0.023819579081541, -0.007380617129147804, -0.03251936823510203, -0.04249411373417554, -0.005915129484494372, + 0.11473958812309103, -0.08421690183032413, 0.05287016326857062, 0.12223702817438795, -0.03670539840537919, 0.09534492095165119, 0.10522255824585203, 0.019333501535570487, -0.11902534533035601, -0.07327095875740991, -0.06736517269462881, -0.12324607802615271, -0.03090453126739148, 0.10367959354428179, 0.1063522848784055, -0.027467196215461134, -0.12565509933114027, 0.06300387530910811, -0.08168601136809431, 0.12221735273989187, -0.00724180038699598, 0.08652890562422097, 0.15292874832804884, -0.07445650309677757, 0.09568296625689454, 0.15622524848613556, -0.02004267018008109, 0.14296414447032565, 0.114174764613684, 0.06087863392551202, -0.15761481651076725, -0.06701071205753872, -0.10997846205451353, -0.1486638507206763, 0.0076528518479142636, -0.1439690124434424, 0.11223089585205118, 0.061117143261632825, -0.15620019161903573, 0.05152581941418134, -0.12571362235286965, 0.14482215879454063, -0.02225615751507692, -0.11700756813893443, -0.11008630178838588, 0.0346617335149608, -0.07684835532550402, -0.1305400592271564, 0.02538330523824544, -0.11801157103723241, -0.08072389646274339, -0.05983272118122483, 0.12244143405064549, -0.05426859991256177, 0.08425753469201233, 0.11553005721704412, -0.003777382672736759, 0.11799441368125008, -0.08314692635071971, 0.04861613645670093, 0.11817162259995562, 0.03886610713848049, -0.1015035395513375, -0.11454892631631301, -0.024494627803844267, -0.09555652530591467, -0.06754207306237163, 0.01554597592434755, -0.04533611178645434, 0.16871919120420348, -0.08838506352771264, -0.11373825823569124, 0.10127673581762514, 0.03747140739683304, -0.12396422455204992, -0.09484039011532859, -0.06436703462654174, -0.1421830074378142, -0.01719365772092669, 0.12287448472477258, 0.1108605439466263, -0.020938483723555355, -0.13024544854915554, -0.0725550979956836, 0.09878999707649072, -0.1403552593600579, -0.005562456409163101, 0.10611848633662789, -0.11400368669675243, 0.03839305134107032, -0.07967104814569133, -0.11537855359651387, 0.011570397147678092, -0.10737157264911948, 0.08149252514519534, 0.05177345437304588, -0.11724212151418203, 0.039515031030181405, -0.08866064380443738, -0.10862643013465999, -0.005953839659774644, -0.10335875874176999, 0.08374782497620017, 0.03580077476194787, -0.10500937393485756, -0.03182568764388361, 0.10064086486401519, 0.1191258124424309, 0.005082049119694208, -0.0809954546261917, -0.03840362046301614, -0.008678067234080163, 0.027896470365885277, -0.04144534770092921, 0.007221238980277996, -0.03701134063388174, 0.02835547208107654, 0.018333351181963144, 0.04070551689360452, -0.014810907016402256, -0.02984902704428445, 0.03853925896841579, 0.0013619582326736997, -0.03732741237624711, -0.0308807500017974, 0.009144719033022598, -0.03467798508618804, 0.010598547261966101, 0.03705607595625529, 0.04008834304962489, + 0.024193905826841198, -0.04763035324286804, -0.06988509541546992, -0.08961955522398868, 0.1062067317772364, 0.1186141176851553, 0.12509010958862007, -0.12543199125387694, 0.11937099350960347, 0.11440470802333545, -0.10180879516384769, -0.08620257753946825, -0.07316248066688431, -0.05220196714143016, -0.029502365106498774, -0.005283407640518728, 0.01894253066983386, -0.04221219246740413, -0.06424358702183255, 0.08476805089664761, -0.102160804069289, -0.08722543824344049, -0.06684065901096095, 0.09258993583855749, 0.11223835998178791, 0.13519958947362606, -0.1554487128098675, -0.1707991490984288, -0.16810271639116, 0.15778861680415332, -0.13968518260690826, -0.12828364349201501, 0.10717355080900572, 0.08321978453952703, -0.061358115897065656, -0.03375051259961721, 0.004896108958176763, 0.023902640629110142, -0.051095803020802036, 0.07565676972708348, 0.0997595537044002, -0.1260308154893864, -0.14691343000403673, -0.12177638474461906, -0.06514104802246191, 0.07946802934452715, 0.0788917514598087, 0.09508279868021481, -0.11667369588844212, -0.14246347709763243, -0.13051347835945895, 0.11819473279274836, -0.10175399184391483, 0.10419032319622734, 0.09173655278872377, 0.07454026732733147, 0.05214643469691413, -0.029742315062291018, 0.006303216641045006, -0.016128867547286898, -0.03695319080595386, -0.056584684459505916, -0.07846486793299051, -0.10568461323666993, 0.12408167209936175, 0.10221476367531344, 0.04431857277215635, -0.05013210327106711, -0.0393005288063815, 0.06360631600295026, -0.10310484679688144, 0.16799456065031582, -0.1540094173192209, 0.14072150991263602, -0.1192412572853739, -0.13479241655155325, 0.12390730682381837, 0.10567584769403443, 0.06834553537635196, 0.044162785995084525, 0.019672980842311772, -0.001564390592289664, -0.023997104241755236, -0.04471212099983507, -0.06860612576649175, 0.09946614449421394, -0.1210097551592783, 0.10690189033128675, -0.06359862641965278, 0.07770480032258476, 0.08620830346453624, 0.10349390215002112, -0.12493726612405488, -0.14383237980332075, 0.14591806679184785, -0.13374219885947242, 0.1087687041420148, -0.08446192288905523, -0.05654648376246165, -0.029572200892250593, -0.006397538102606359, -0.01678676956251464, 0.039777930713601785, -0.06114143680154016, 0.06769118415644775, 0.06351546354173629, 0.05576931473726077, 0.06372073666358302, -0.07998329730997573, 0.08323721896353269, 0.0254881596920419, 0.029503280429969223, 0.02931287546377766, -0.03443020473924063, 0.043701320596067426, 0.054005719540489126, -0.054564487106627244, 0.04883692967992357, 0.03770300728278323, -0.028074370984644156, 0.017282065806528815, -0.007044549181125167, 0.0026918573685191837, 0.012576218240235883, 0.023103075882804216, 0.0353468027278929, -0.03529611832550339, 0.026093600914340143, -0.011850097334473609, -0.0048245080808932, + -0.08859554191069319, 0.12371051546562384, 0.08468189143295668, -0.005266971535727574, 0.09220927377707366, 0.12280274777278165, 0.07733012030680102, 0.01602316430227632, -0.09932957710621346, -0.1274266576373037, 0.0739725331263417, -0.024284162052436623, -0.10857674099344514, -0.11968722943003147, -0.0582506149693184, 0.03958787249971052, 0.11280649248251298, -0.11593560255539768, -0.047619457942230374, -0.047121882235427286, 0.11402046542748247, 0.0841206003116824, -0.08672655115799364, 0.1606439594254726, 0.13365092737682463, 0.027662946351583433, 0.09003923853625362, 0.15407722690484477, 0.11431370453106808, -0.0033330214326672825, -0.10928460472173133, -0.16647655994085936, 0.11476280374222524, -0.005985467335895587, 0.1226924426049733, 0.15822571148475212, -0.09711201758280952, -0.022758341077115864, 0.1291060318625645, -0.15524937593857308, -0.08664161465992838, -0.022876178018080423, -0.12127146829346408, -0.10877514233128349, 0.06206085414854911, -0.13071488924554073, -0.10344898808973019, -0.015360890370719768, -0.06327282769406328, -0.10993012660904178, -0.06600509867299134, -0.019479755522864628, 0.09155180199258157, -0.13102882220136888, -0.07542879690957734, 0.027310808451233366, 0.11301945815543314, -0.13369836550691858, 0.07367934454865151, -0.024065437583397378, -0.10911006912382275, -0.1280346247565105, -0.06878899034432095, 0.012337372292247194, -0.08971875388035234, -0.0829897569281342, 0.05251765645614117, -0.10299679591108095, -0.0651162340825618, -0.052564807789318914, 0.09391400044741288, -0.09714539516929763, 0.014973632356040552, 0.08887937134824526, -0.13406303142265344, -0.14548958362893533, 0.04678080360615752, -0.08226211251027667, -0.15259926995621562, -0.16097741670476454, -0.07600297776808482, 0.03832439115348888, 0.12747756582911202, 0.13693510345256013, 0.05661542837711267, 0.028713996728359906, -0.10108586757773509, 0.08653437494978239, 0.06050857465802784, -0.13035851203498638, -0.11716634912893929, -0.0380070580711576, -0.0536177424665462, -0.1136743616647872, 0.09578421702875241, -0.014283815279060324, -0.07664379315400435, 0.12689440934333254, 0.09802381210364454, 0.013887281833290554, -0.07704985791921268, 0.11942829828951886, -0.09305957918975366, 0.015078206193021164, 0.0760124978499485, 0.11244164509564929, 0.07703584299820962, 0.02369763324095875, 0.04694680638240106, -0.06974980417323826, 0.019819522097215082, 0.04886619027092409, 0.04330732909021527, -0.012646948107556764, -0.017465038955812532, -0.03841194730937503, 0.03058570694379007, -0.0016802196494739591, 0.028264658051853617, -0.04463836451013042, 0.032841193061771724, -0.002977458716621538, 0.028529927284019114, 0.0451168823912518, 0.03774346027137947, 0.013507553839344311, 0.02237819697100559, -0.03989221592477321, 0.031102824112917114, 0.01757678752367948, + -0.11993065699481109, -0.05478813351214112, -0.09529925211664161, 0.09799949049158252, -0.05088517616103721, 0.12123470799482872, -0.005522528042311899, 0.1188022649631901, 0.06050452531465049, 0.0949505814031414, 0.1071241572181354, 0.04647361177346453, -0.1243688541130464, 0.018868497229957874, 0.11510458315629798, -0.07312151761561074, -0.08130809233830227, -0.11103323166471046, -0.02999217970120197, -0.12199252462802933, -0.025502679916594172, -0.08193007317741939, 0.1643981514515814, 0.035992632685459575, 0.14374702502722722, -0.10112864573406329, 0.09010839389296461, -0.14375935847849022, -0.015689491515912337, -0.15381527165816677, -0.05537414806842111, -0.135706672579243, -0.12447400467036084, -0.07970957883123532, -0.15557524656612148, 1.987577505211703E-05, -0.15500864508189915, -0.0696123529691868, 0.12274164071223546, 0.12629367901055205, 0.0654097905072622, 0.14418345870504679, 0.00136587180041801, -0.10468600806845865, 0.13771887093645993, 0.018989688719553515, 0.11501942332885177, -0.0706657288472846, 0.05678228465317045, -0.10113483279744756, 0.011527075084981658, -0.10591458157399734, -0.05923192168893401, 0.09548684888521253, -0.11338087390824045, -0.043516706581602775, 0.1353336104984716, 0.014123433259028241, -0.12970624927810084, 0.06154688163349223, 0.10089977285428338, -0.10577198255491574, -0.05270419758854425, 0.10868920530401383, -0.0045124241869994065, 0.07931377579542258, -0.10871442533455475, -0.019288193739171823, -0.07794362192339145, -0.0916243133993153, -0.020424653606946248, 0.09629869962665774, 0.08550044206215184, -0.08909177313694128, -0.12333947863698937, -0.0756224909552725, -0.16218638011624598, -0.001037918235796272, 0.16797278303414767, -0.045310916705272514, -0.14990984871803492, 0.08477025592171043, 0.10145480008582147, -0.1280573346538955, -0.03802661000735032, -0.11386344884904125, -0.012955391326554027, 0.07958436143328049, 0.1366837995741523, 0.018184826643890824, 0.12031774028909674, -0.0721511331900948, 0.07583822044225468, -0.10717429552343438, 0.019751928554240294, 0.11825974696554802, 0.03714481381264381, -0.10646340030757395, 0.08955573882670823, 0.06841172758748537, -0.11359833889178961, 0.010144586165315928, 0.11694791813535403, 0.03589134019881852, -0.09708216048666989, 0.08513161637182924, 0.06078939663512102, -0.08839093577288273, 0.03208503113643385, 0.06204624231570627, -0.05292580429391662, 0.003675139748678504, 0.04477111969071301, 0.024455195597703726, -0.02444511885926068, 0.03626374528742846, -0.003106372525254926, -0.039360581825204535, 0.01604454881258611, -0.03513157342257642, -0.03384589401989754, 0.02103309316135611, -0.042610318131444266, -0.003069836306764855, 0.04374868144230285, -0.01028208048182454, 0.036205292998517685, 0.030179657672128053, -0.02426104706395427, 0.019062411897511043, + -0.04100207912646154, -0.0773729490906961, 0.10511088816703607, -0.12095557698033894, -0.1224611255250151, 0.1100758842228714, -0.08549362157500906, -0.05095909456264901, -0.010632164785325995, -0.03183370217094037, -0.07178327954609715, 0.10368258353414767, -0.11670277801968759, 0.12433043549807517, -0.11794118878014963, 0.09942903304908589, -0.06888503750133922, -0.03034050979297354, -0.011747051232623928, -0.051538739843305786, -0.08552114654799725, 0.0808328171869827, -0.08859490299557687, -0.12950163040937096, 0.15211854613950554, -0.15424633559845477, -0.14667798123549822, 0.12311271375798293, -0.09088070658006413, -0.04376962748687276, 0.008177021231715194, -0.05978435994632778, -0.1081851548879799, 0.14429238428929644, 0.15588317304273203, -0.15827444601256424, -0.14292289325873928, -0.10906991605255363, -0.06421735401265773, -0.012312528254195255, -0.04282559225352904, -0.08828510779894906, 0.12318569364594421, -0.10274675297125838, 0.08378843375144468, 0.11516546065932035, -0.12192998409343657, 0.10267225503899294, 0.10005471127968416, -0.08848285779493065, 0.08292326467604032, 0.05244110011627764, 0.016527102043944426, -0.026153561014987402, 0.06842308688652972, -0.1028676152183703, 0.129144441895, 0.1365951555358347, 0.12873950695846176, -0.09385335258358049, 0.05572538807169984, -0.012736686409046051, -0.03452866048813646, 0.0692431356130647, 0.09527324059538027, -0.07739551087921404, 0.06232898128937829, 0.08776598210408312, -0.08515545255242471, -0.05621951873909852, -0.0781738475767215, -0.10021557825327249, -0.1386838567461935, -0.12075034687544042, -0.08974814089500341, 0.0227590539470756, -0.033191326834489464, 0.08565735674602719, -0.14603321478056783, 0.16596205433935213, -0.1673875848681568, 0.11940766298679348, -0.07920803042681229, 0.03315502568677545, 0.017226457051987457, 0.0544226122255641, 0.08544868724533486, 0.07590899834576542, 0.08007576378414578, 0.11232172712984567, -0.12475348736842838, 0.11889823344011775, 0.1121289212848251, -0.09315161835903032, -0.06719420750914697, -0.03098688987390968, 0.008709916485624268, 0.04817660706419671, -0.08458602274066257, 0.11139489000170028, -0.11626401899011236, -0.11720624628671224, -0.10489426440485287, -0.07284172323132523, -0.03850444460680549, 0.0005093366499531382, 0.044235900961343985, -0.07347486771361483, -0.0935825765404873, -0.059378749004299416, 0.0333777553401078, -0.04514788424339949, 0.046350583987691804, 0.039150272123548664, 0.03748041222675037, -0.03211092656136883, -0.0258899931364927, -0.014306084118085387, 0.0011569404097869344, -0.012874582004399199, -0.02636388874666635, -0.03685379482362444, 0.04277879486113367, -0.0438720144782055, 0.03996625562512575, -0.02575099995084476, -0.013041090938436403, 0.0006179736723066782, 0.018247884231955124, -0.040211332304865746, + 0.07562362119998088, 0.11943737245021077, -0.11303880292160758, 0.05942925782470143, -0.019613109987920357, 0.09031109818156263, -0.12312986451822827, -0.10398302582594776, -0.04115675203383894, -0.041571756073787734, -0.1080437245684441, 0.12910459864566326, -0.08734054785944671, 0.014222657335705982, 0.06448151380804885, -0.11701605845227597, 0.11909935096164481, 0.0710171980327785, 0.006770618614667225, 0.08010237232463278, 0.11984991948763872, -0.08009314600297851, -0.06984683127166691, -0.1463369920896152, 0.15748512434923692, -0.0962148747610223, -0.0020127003532598477, -0.09391723584233763, 0.1516168058032874, 0.14043840459461188, 0.07030997862054501, 0.03613380485406058, 0.1283502403611464, -0.1665162208576508, -0.12535648894391047, 0.0380754171026156, -0.06482928199947774, -0.1385845118599273, -0.1571072885796266, -0.10994010154034199, 0.018991001973933032, -0.07468620399843823, 0.1379279971831165, -0.10168131071241808, -0.04916849475758981, -0.1176344970426331, 0.12488421927748806, -0.058379946598489954, 0.005911889183293795, -0.07141551816838097, 0.11258268163862072, 0.08926341324504516, 0.029006540946278875, -0.0523178009306391, 0.11708523996195969, -0.13253183415699216, 0.09649478502803166, 0.016977922614630183, -0.07018745205592551, 0.11802548310229391, -0.1301387267571084, 0.08876114184842779, -0.01499671044448891, -0.0556442200907608, -0.10455265588509373, 0.07642635653767552, 0.0433717960288299, 0.09467199883402053, -0.08794349175488303, 0.023012179287019967, 0.07376205760860405, 0.10299801829463746, 0.11995981041870563, 0.04823601986025669, -0.040879875254893186, 0.11285095489482291, 0.1646695192574172, -0.1466040208208444, 0.09232847846371733, 0.013673224741043268, -0.11528153097288418, 0.14266207986321675, -0.14106237127516078, 0.08357921444436583, 0.004406150563832054, 0.07323541261381093, 0.1126497144206867, 0.07343907765952801, -0.054309447209675746, -0.1199748367956491, 0.1275084723229438, -0.07228705342183872, 0.0010552659668931564, -0.07431794786130938, -0.11640231928131527, -0.10704734654778306, -0.05326911778417795, 0.027602431489606203, -0.09781459581593217, 0.12657852741636047, -0.09052154901826856, -0.023578782498617053, 0.052641736109415325, 0.0999067890055511, 0.11527626985591105, -0.08462033240273062, 0.02570423314483839, 0.037908314795119025, 0.08920836843264705, 0.058252111826282774, 0.01910103605990708, -0.045549918765943394, 0.04706438763356744, 0.02215581781447192, -0.002438732946715059, 0.026700250706437584, 0.039934762302207154, 0.03391646677108283, -0.013916075408114317, 0.014196635636783587, 0.037096990925257825, 0.04414897549479727, -0.031757422503874554, 0.005828566059099738, 0.022494369084164537, -0.036764740665639686, -0.04188653953709854, -0.031166971977644457, -0.011355971715473652, -0.023180486159244985, + 0.12272131295135837, -0.02249921654926121, 0.11887337692248351, 0.0438367066956763, 0.11106316048458753, 0.06368712798852087, -0.09974118147097577, 0.0812366168757468, 0.0855349307756961, 0.10155178997034875, 0.07034479504099658, 0.11501441522991052, -0.04151259174858634, -0.12059918821577538, 0.019528021095705686, 0.12434807510132867, 0.003616444732060269, 0.12400584825632241, 0.02515199422005494, 0.11662911700969933, -0.04682359716211675, 0.07964218154233882, 0.1632806241342757, 0.004704618021728753, 0.15958998370505387, 0.03158142139858334, 0.14767439362977267, 0.0586427235878838, -0.13585462331279624, 0.08676175807784199, 0.12024302057466899, 0.12008292151416294, 0.10347987772395395, 0.13999494354734815, 0.06952726411687833, 0.14919874586586312, 0.0427127311431954, -0.1555214571018939, -0.01971982827930319, 0.15844769793746044, 0.005596339675872572, 0.14717632284994953, 0.03313643829891104, -0.10138570915257358, -0.1358063087588217, -0.014425198082913397, -0.12352487836342918, -0.029521663665687183, -0.09629544727646143, -0.05107778469945062, 0.08575515850660521, -0.08071017816128684, -0.06955627773822341, 0.11246978088363473, -0.061971302790506826, -0.12389311841327227, 0.043825198483800516, -0.13281461423277782, -0.019635226676668744, -0.13208643648950932, 0.01264096928167038, 0.13133478060935896, 0.0052771247591070665, -0.11184062039961774, 0.02463700108267339, -0.07642439445754116, -0.10778641121635603, -0.006572919152576147, -0.08575704902478486, 0.08449555611811473, 0.02739623068847704, -0.10512145521754011, -0.03872001606330091, 0.1368470863855612, 0.014810237044001893, 0.1615635673687497, 0.02078714197621384, 0.16669789329255938, -0.017731275872003516, -0.16902680990684507, -0.016077149844957322, 0.1528335407655117, 0.008877209411379386, -0.14527427995871442, -0.025865712338338814, -0.10898552129475711, 0.04632855482518362, 0.07201753879971169, -0.13637030857141283, -0.0033783627232227345, -0.12833476943648972, -0.03217637870255185, -0.11096378166062357, -0.05309413551296484, -0.10000163992965477, 0.07043226139146812, 0.08956596587856583, -0.09354155635970647, 0.07493670814652649, 0.11056363121482084, -0.040880914980649274, 0.11525273632163481, 0.017348374526988525, -0.11429212353369929, -0.014340576851916224, -0.11510569552345143, 0.005455233090423436, 0.10081244907103372, -0.02372815513062196, -0.05828437209931972, -0.05300294598281846, 0.002759079781330474, 0.04677559710506661, -0.013202731355773914, -0.03556456400322649, -0.020842544833938142, -0.03079934502845533, 0.02736274889249348, -0.02688089717832938, 0.03602161495084868, 0.02166390044843247, -0.04134871198254752, 0.01152107996515766, 0.04392881086002159, -0.0014035222744871387, -0.042145623732229645, -0.003937101014612447, 0.04171044564222398, 0.003513836192722254, 0.028885032783242646, + 0.056989595533588164, -0.10146633298714555, -0.12425544953154152, -0.11936472343111335, 0.08777932599916954, 0.03631975640442215, -0.023583057895205903, 0.07796838762799353, -0.11371946429542266, -0.12947847729172718, 0.11211175184263826, 0.07026138124869905, 0.01760611132088625, -0.04066236411975348, -0.08956778891388394, -0.11742702506118771, -0.11897817010149456, 0.09189736067664846, 0.04338953728869618, 0.012961734197145726, -0.06696856244800711, -0.07938602057102434, -0.10489828491789523, 0.151827325248207, 0.16079408807539997, 0.14173698928974673, -0.09505128010114053, -0.026819380166746253, 0.04703997711826772, -0.11157405536097441, 0.1494723660491383, 0.16725358581905156, -0.14041227337986428, -0.08333899489898816, 0.012936655337734075, -0.06132489456882877, 0.12137476912207103, -0.15262438257918004, 0.143341435176987, -0.10011915351700713, -0.032941148825803915, -0.03484369330747755, -0.09628766798120716, -0.10117528262954234, -0.09479603851228144, 0.1284457168050091, 0.11535525724223593, 0.09545290668682374, -0.07001045110030937, -0.031064973851546097, 0.016273269496785342, -0.06474260490264509, 0.09782901069446898, -0.13277917137934261, -0.12221781012425456, -0.08244477416875595, -0.021286149831584503, -0.04368557587406909, 0.09949445947570978, 0.13539489102538904, 0.12307094520379414, 0.08565305730295651, 0.026781138212961776, -0.02593803201093838, 0.07417494946960912, 0.07777927392768656, 0.07105491411761383, -0.09807276565787246, -0.07481474642211323, 0.07714919161314952, -0.09971911443739812, 0.12276782865807798, -0.07414276407432542, 0.004974709693805122, 0.06296911468630492, 0.1474838130366069, -0.16889790425097695, -0.14897991977721964, -0.07350808407805885, 0.0008052413174905668, 0.07596321876828907, 0.1390891979990928, 0.13783275350521135, 0.10634097855723018, 0.04552995142787506, 0.003794071538188215, -0.055982036207398264, 0.07264695603125712, -0.08892375387356372, 0.12903809850659528, 0.1357661554469563, 0.1270829044994192, -0.10227318227396971, -0.05579366740707002, -0.0052174025031316434, 0.06582778605751824, -0.10796606187946957, 0.13221006271890792, 0.12535248001729893, 0.09711552060036738, 0.06301219905568939, -0.014825979795429888, -0.035647491839206166, 0.07695040616440438, -0.08569227985147464, -0.06525540842496894, -0.024262785985963785, 0.009029468915869716, -0.04496451423513471, 0.058282330409723276, 0.03524077961174669, 0.049872315787080734, 0.048075145952036206, -0.04313180233961793, 0.03743791170519155, 0.024986326170797032, -0.0051900777915156295, -0.017095764212560184, -0.03426768488570691, 0.04754597567383934, -0.049339489391204736, 0.04361292843624564, 0.032792993038754686, 0.01786917576858458, 0.0005373805199409987, -0.015960274220860396, 0.02387953184154287, -0.021264278221524865, 0.011095725210471214, 0.004968568010865688, + -0.06113809319677773, 0.1065984339039351, 0.12532962845167755, 0.11156522201145291, -0.06872405566860981, -0.007819948145140202, 0.0550353324588094, -0.10292117937189449, 0.12246738217454506, 0.11571660742791089, -0.07525637228389866, -0.015463211232132831, 0.046843387843992564, 0.09407000315894423, 0.11662692512195091, 0.10732950976962055, 0.07031683193835833, -0.013717243689856726, 0.047432970120969246, -0.09599601593959317, 0.11964678938801385, 0.08460606356117191, -0.037561875900699385, 0.1046612689820958, 0.14087324208081334, 0.14905616339599528, -0.12153226054299936, -0.06225624524512237, 0.015310707880533151, -0.09045082044288605, 0.14060007292160753, 0.16688685698858782, -0.14236866496892406, -0.08194413996577299, 0.005430432904603731, -0.07305543513126789, 0.13196386600665105, -0.15482355627435548, 0.13078146155360024, -0.07102991675010065, 0.009868842461165997, -0.08386500642634218, -0.13692915744481882, -0.11539922232994937, -0.005197036082642062, -0.037310889116426445, -0.0615851602731317, -0.0912767767841745, 0.10301935987223096, 0.09368902487452269, 0.043094598673165896, 0.021470772972907184, -0.07919954395689999, 0.1372960073252031, 0.14210425959245943, 0.10781372791735538, 0.04166263673437815, 0.03367757490946682, -0.10086571726939819, -0.14385120008866967, -0.1304847595976105, -0.08573965624750314, -0.015269642051420923, 0.04715785326689649, -0.0978283282722467, -0.09070883450719829, -0.03022580721290957, 0.01991763951597583, 0.002136866591076155, 0.053093910648026495, -0.08799933794921669, 0.12188218121964797, -0.07797885749760124, 0.010741025567800006, 0.05713824111214871, 0.1385302701985885, -0.15541249401595705, -0.12853026372531967, -0.048545264098976706, 0.03171676625842299, 0.10582129511296158, 0.16144682008951644, 0.13485445125746984, 0.07479435192288775, -0.015551328357963039, 0.08779807779638743, -0.13563624370271748, 0.11469132092577522, 0.0019528710282990455, -0.05927026586876378, -0.09671270844838395, -0.12455348510430563, 0.12867864245138028, 0.10093944000425367, -0.04107480979318433, -0.032963922912659364, 0.09656771345184864, -0.14135013380047262, -0.14751653580090646, -0.12313083547709147, -0.08673009966557724, 0.027597916706412616, 0.037117532983590135, -0.09045523815811174, 0.10233223349690516, 0.07570710065680597, 0.021531660955730635, -0.02406135412574185, 0.07131873186840684, -0.08426417456243038, -0.006814199611906989, 0.010935503552956274, 0.022892240609872227, -0.03744546427211296, 0.04632181791788913, 0.045515207973641336, -0.027760790122899733, -0.00017082877409702393, -0.027961083642754667, 0.05220366200911222, -0.06173837905527039, 0.059623766900430614, 0.048311640499104164, 0.02911513588677353, 0.004880904887228279, -0.018711483836811257, 0.031526360339190054, -0.029305968476245323, 0.015764463384097108, 0.007200954029729518, + -0.12305570099478863, 0.013121219856682275, -0.12196479836929816, -0.02575608921446928, -0.11945912103450185, -0.0379973328805852, 0.11543793384516303, -0.049462890749256985, -0.11049166994702397, -0.06651969780068567, -0.10523213114501954, -0.07822136115241946, 0.09109704169586871, 0.0821147876250974, -0.08208364938946788, -0.0900279687497069, 0.0716768030944903, -0.09713805376793155, 0.06353140073947207, -0.10274724494496422, -0.053262213866408746, -0.0807549439205075, 0.14542971461398038, -0.05399661596966883, 0.13594006402197586, 0.07799696722554829, 0.1232365304233328, 0.09155946352922162, -0.11486920088252316, 0.10747139527506333, 0.10391946257686292, 0.1288987292998418, 0.09619777549653998, 0.14007841464206477, 0.07297914857980377, 0.14412035988144875, 0.058069077313433096, -0.1489015765150893, -0.04762564859510152, 0.15303635058287451, -0.036808225679331966, 0.14910621148676995, -0.02162109854796936, -0.10989927377586411, 0.06979946877612063, -0.05238418603916855, 0.05897917028410759, 0.0902633636901953, 0.04347611077656791, 0.10085153463367619, -0.047128990307704906, 0.11984968783817021, 0.03373269882237105, -0.1375514255647095, 0.03774618137942488, 0.14197136910529606, -0.0276952616895098, 0.14525986226428125, 0.012295871823775364, 0.14130262835485938, -0.015337186860908899, -0.13966261999852853, 0.00826023402670884, 0.1221609943860778, -0.0027205508447861824, 0.0873228932266048, 0.0071703274800358555, 0.030522815714463684, 0.00649059551426713, 0.0915115521988707, -0.002831858868248162, -0.10502300045261376, -0.02296439163103681, 0.12897861442496922, 0.010540586420144632, 0.14967260936641097, 0.02772257192489412, 0.15377749720472672, -0.037291418692166955, -0.16071157952753645, 0.017935231208667368, 0.15480095814188632, -0.04008522517769966, -0.15245737065801396, 0.04418147655758315, -0.13381797882079913, -0.03558294444394539, 0.10217196811462695, 0.10913942813714379, -0.06648279054595103, 0.09482040097466822, 0.09594668223964324, 0.0766177552249333, 0.10483925943359525, 0.0684061034389238, -0.11274837229249535, -0.060185295461097084, 0.1255983867111722, -0.05061142531576813, -0.13376658771847413, 0.019665654677317575, -0.13367814669865336, -0.002937763972648659, 0.12847577510923552, 0.00893865496230349, 0.12794215123560435, -0.008996434150085685, -0.11247622432967343, 0.013961756886997072, 0.06961715539389882, -0.030939574384027814, -0.024836074302314586, 0.024648079339644167, -0.04145115701768999, -0.016246107926197805, -0.0446331072234236, -0.014717599898205582, 0.04827136177617787, -0.01154660763281162, 0.05290446293375819, 0.00842785007454551, -0.05478944245570321, -0.000778697968570846, 0.05449188638778328, 0.00900851462575139, -0.049528911208432544, 0.002250535691947666, 0.04885036903898986, -0.000168617770119432, 0.03177093533958325, + -0.07183646479863151, -0.11676216907641625, 0.11799479066392503, -0.07530637275554097, -0.00390451533294336, -0.06886643610959307, 0.11584539479866304, 0.11925383931121118, 0.07799153426842724, -0.00355276407406662, 0.07150870930154343, -0.11993971130946468, 0.11524516964245168, -0.07488620479177904, 0.006789117189444503, 0.06402917053375934, -0.10985365581438714, -0.11453656588576047, 0.07795434724822571, 0.012239271299807338, -0.058878622055484296, 0.07957261418778105, -0.11633969434655142, -0.1517259391770913, 0.12737775472267146, -0.048288384806912076, 0.043099656062935095, -0.11932694426583941, 0.153713671645371, 0.12479300053157048, 0.04926412084469412, 0.04999334873644215, 0.13262011342791136, -0.16546863691340896, -0.12711148238644, 0.04784668847189363, -0.04896663846249132, -0.1257975163644966, -0.1583697669517675, -0.13192506643556176, 0.06074649086918005, -0.03027328473041286, 0.11188161810242284, -0.10813740027374227, 0.07866801628503284, 0.0829416927602281, -0.052066603235721425, -0.019455651565853372, -0.07471286065907258, 0.1059871166668305, -0.11344037141510444, -0.05820505136227429, 0.01768282181016167, 0.08857828765516924, -0.13916514845306163, 0.13737885619599943, -0.08847033527748192, -0.0038164886549856766, 0.08279782960835627, -0.1273611916241638, 0.13892931602216452, -0.0997782717386461, 0.0300504152605653, 0.04283075206170066, 0.10199138446412807, -0.08613354165734391, 0.02279661396857237, 0.005427821529676699, 0.010814007090662995, 0.05336972722814247, 0.08808830673972037, 0.09782093407167593, 0.10427639586103299, 0.037141317098128554, -0.04130065261575815, 0.10304165425606342, 0.15145936938974694, -0.14254774561504027, 0.10544090275396012, -0.013503151182723543, -0.08478360168494617, 0.13065458001800967, -0.15778133095853628, 0.1283982882359902, -0.069047025189317, 0.009406125510639551, 0.09020894965525532, 0.0979735693117033, 0.10670019122602914, 0.12295619913774689, -0.08823905103609911, 0.00808009754089013, -0.06699135443697958, 0.11751980138624857, 0.12656814416854645, 0.08476511548384075, 0.011614493086620142, -0.06878053098551701, 0.12653242140264484, -0.13626334200018725, 0.0825028108662266, 0.004652572717825942, -0.07416930602573647, -0.11668227104162163, -0.1270097816772235, 0.09232256313119647, -0.031423726290229194, -0.03538093652454345, -0.0932119462230495, -0.06662489135433061, 0.03519097887334783, -0.037132071994694996, 0.02273614584008368, -0.00919679530890987, -0.03351944196307746, 0.046202398067464574, 0.0444704612787675, 0.02253252914208718, 0.007625792670733349, 0.03575196391988021, 0.05309000265048945, 0.050058469842747, -0.027301726350688928, -0.005767794772252294, 0.03651558448481495, -0.04685161208601943, -0.04770104882938009, -0.032647157468540064, -0.008799980476682125, -0.028751641054284748, + 0.045428885842556506, 0.08450109437297751, -0.11185741999021045, 0.12356462779984602, 0.11728581513429391, -0.09455837577446326, 0.05885484063034904, 0.01470210317819131, -0.031473909605167855, 0.07243958354182194, 0.1061406999467366, -0.12496559476292904, 0.11785328918410085, -0.10195263452584319, 0.07193060957202906, -0.03247932188750413, -0.011523577353656677, -0.053990284070844635, 0.0904573541250242, 0.11257264694701324, 0.11825452348146372, -0.07880779274607888, -0.02124798139770305, -0.07538204808288461, 0.11605089129967279, -0.13942145604716635, -0.14938679048424644, 0.1391735966387235, -0.11500603450888658, -0.06928124841879259, -0.013937101152491284, -0.04555297623825419, -0.10105506472878927, 0.1423812558815972, 0.15565215635940766, -0.15554501207911825, -0.1338300842637121, -0.09130237557490754, -0.03695946282861546, 0.022345262936344035, -0.08265764982487254, -0.12501681143678803, 0.1484023263846588, -0.10737829632204116, 0.013365664428298759, -0.018566545546489746, 0.04326798569303938, -0.06574984207033456, -0.09047536749142523, 0.10607500552619936, -0.12275491194923112, -0.10137955016181792, -0.0660637375724903, -0.008554608867521553, -0.045377700497927206, 0.09303105780737816, -0.13086438728631533, -0.14605917067387061, -0.14097769534971827, 0.10249152539763869, -0.057630169401761404, 0.006323555118979206, 0.05047768268149074, -0.08932829980718898, -0.11423142564934594, 0.08606236143904895, -0.031120080725345296, -0.02595617595041436, 0.014610245467341798, -0.02642769357626916, -0.0577708958015466, -0.08970057860777317, -0.1312075937673764, -0.11660961918138638, -0.0862321654221419, 0.018652050309958607, -0.039102718578941445, 0.09162469419040938, -0.14995473561645029, 0.16279099955821733, -0.15292946999552318, 0.09473846184355036, -0.03851717092729486, -0.020120383512615383, 0.09032371238633645, 0.12664062156945533, 0.1410582116859045, 0.09552289571830824, 0.0006468402263279818, -0.04523151875690627, 0.07988636025451533, -0.10479408113129869, -0.12332603667290337, 0.12521129808081913, 0.11336158193252974, 0.0817760090030989, 0.038827161219176676, -0.012936161105177263, 0.06327927112752153, -0.10493346650152222, 0.12312440085060879, 0.13365831090877714, 0.12536510010095808, 0.08995723027443112, 0.049418890104371095, -0.002873600785750974, -0.05184589645631513, 0.08670070397030681, 0.10829485530392016, 0.06557600414576896, -0.004696061209153288, -0.009708745033181483, 0.020112067520977116, 0.030161925686505952, 0.04064341507622981, -0.04632168796067293, -0.04837577488800393, -0.039771939861665086, 0.0256957259044175, 0.0051880014708079744, -0.015265482468733523, -0.03371504919899133, 0.04709079336322316, -0.05382522470341846, 0.05292514973892242, -0.036773695665032545, -0.021764839784979863, -0.004528282779121173, 0.016929620476026596, -0.04341436099996779, + 0.12092712834613904, 0.04615298856308522, 0.10371258663306308, -0.08549782612600222, 0.07142518628292101, -0.11282546606664978, -0.027287375182071517, -0.12349128656299227, -0.02067936472554202, -0.11789155096970634, -0.07011905861519589, -0.0916701878569428, 0.09848964420375558, 0.0477693931278591, -0.1162560855479054, -0.001956955619718645, 0.1161272441345199, 0.04326363436592904, 0.10077099013895575, 0.0791687029795973, -0.07159933527601946, 0.07832922486968588, 0.13909791280845274, 0.0874935773737968, 0.10251039815959816, -0.1301242680709387, 0.046674984775563734, -0.14940951577403644, 0.01829782823980765, -0.14598893248346242, -0.07472340033436767, -0.12588973472451728, -0.1290043797614831, -0.07752085197471564, -0.15339404545114768, -0.01043369318825699, -0.15685895472277772, -0.04846222669729577, 0.13855216205285822, 0.10218639403767633, 0.10208964691780233, 0.1285937396208891, 0.05594172363679167, -0.10744736633903587, -0.06455713351547157, -0.06699271369772712, -0.03311827848175808, 0.10212215165083591, 0.017989610266629142, 0.1009451915328339, -0.07033346231603453, 0.0903645808438801, 0.10313511364412745, -0.07449862769721541, 0.13669216079075097, 0.021876965123946334, -0.1464631577713551, -0.029430065362122337, 0.1361102196537465, -0.0687440406755397, -0.10868624957722468, 0.10820696464234815, 0.06890283650121028, -0.11123963121156662, 0.028788415836438826, -0.08703546658799839, 0.00985101416734871, -0.02766757883126529, 0.01759962232727552, -0.08572443458283491, -0.04867022185617067, 0.08072609779283857, 0.09013224505328403, -0.07659773854533541, -0.11647127003695551, -0.07252903397460697, -0.14853416300650135, -0.01537254169130316, 0.16180949957995422, -0.017449372183342297, -0.15748959567372772, 0.04962270264349645, 0.13844137562038047, -0.10107022403929364, -0.10712026335843332, -0.10382374146862101, 0.07440193498617896, 0.09442775300815684, -0.10629402534661452, -0.08201772753445813, -0.07070871361843944, 0.11946648182287352, -0.017761384702394807, 0.12683116038867132, 0.036537745569625774, -0.11476135933120885, -0.08327943533485424, 0.0900596116997814, -0.12048159627110572, -0.04755413807463595, 0.13389697168241174, 0.010587545290485632, -0.12868402092015108, -0.05102700652889457, 0.1036972840018765, -0.09600160976452424, -0.06996222768513558, 0.09488951704885731, -0.047321288936163816, -0.06594384325844851, -0.030572766979367325, 0.02812944449064398, 0.017240278484250623, 0.045245375997221796, 0.0042830470721133725, 0.04487446830387408, 0.024376307142333225, -0.037858207733917765, 0.03992984812240285, -0.027415266137181354, -0.051304684640009666, 0.00967454961056293, -0.05473615639269855, 0.009132382360137721, 0.051359583120416365, -0.0204227278400418, 0.038361725107858416, 0.03865408392898198, -0.02430201476708018, 0.02333443172132232, + 0.08524552673230634, -0.1236578140012989, -0.09469529003869251, -0.013816136600575419, -0.07487313041417616, -0.12183504421609914, -0.09985048553785444, 0.02146755811794036, 0.06896830286600344, 0.1252223964485021, -0.10790618280092311, -0.031349541482656375, 0.05981034477887501, 0.11425752649551826, 0.10540208171332204, 0.03677086114373761, -0.05156196783137387, 0.11076580511965876, 0.10868455307492747, -0.04906047152242443, -0.03860508787018156, -0.07819408386721627, -0.12761483786899036, 0.1509659866180799, 0.08873668333019619, -0.023939330756023967, 0.11925104325759803, 0.14942464611966305, 0.0878012866286166, 0.024454210657211976, -0.12249030815065881, -0.16452349370239558, 0.10807294817498271, -0.007538468180920573, 0.11869925960914926, 0.15776106145920404, -0.10897329464421812, -0.00011107602707575645, 0.11029890298152033, -0.15785389797866062, -0.11902135379149897, 0.02680568290978067, -0.08332278570752476, -0.10877000367883954, -0.08189037591426172, 0.07547647478799878, 0.022153813462437076, -0.06070673532321173, 0.10189343574027943, 0.09255222560007151, 0.01733565470723458, 0.07340940504876362, -0.12209136061039699, 0.1313085885662661, 0.053981245363446416, -0.05435244818350629, -0.13128450191670907, 0.13986419134626144, -0.0715593654919787, 0.029233304095356523, 0.11517629568264089, 0.13762139465559597, 0.0844742853086103, 0.006110325259496346, 0.08039910305046663, 0.0898085685102201, 0.020608502673742493, 0.0024358918174921494, 0.018912206054713315, -0.07576986536595419, 0.09462517330910647, -0.07750067974175867, 0.0007788311939366255, 0.08877123497694629, -0.1249136561839927, -0.13628295710606295, 0.051713251902185266, -0.06336184065729464, -0.13724645939796848, -0.1626002039715144, -0.10284291956487379, -0.005079305430926322, 0.10463808522803009, 0.1530756308647432, 0.11720045032206262, -0.05164404389149661, -0.05231200461170468, 0.09563597541369104, -0.11180647925631039, 0.12283723378168329, 0.06541159297585308, -0.033065928698095534, 0.10724872810960667, 0.1236049948022915, -0.06363075839816543, -0.03605417928051311, 0.11394127556672833, -0.13587072001765355, -0.08070155543013684, 0.015824576727675437, 0.10668142799420299, -0.1365265786842869, 0.09540105630322793, -0.00693454735018826, -0.08786233274159401, -0.12415482648157522, -0.08810389507972549, -0.03558898599282343, -0.038005548053186254, 0.06858049783342823, 0.03648253102763557, 0.037116968464300605, 0.01595420996310563, 0.021053952623323113, -0.04311350416540943, -0.04351853661342741, 0.015666467354996518, 0.023269773127765958, 0.04771277122033345, -0.05060149568558586, 0.02457870364627654, 0.013810703772155802, 0.046073996264539015, 0.0568607291578416, 0.04063527913053154, 0.008810550659007219, 0.029922343609499306, -0.04575277587659708, 0.03320485077922124, 0.018086643470355605, + -0.028810419029320553, 0.05624224260479532, 0.08134502239447092, 0.10217861901859158, -0.11773262072860739, -0.1267147806770072, -0.12728976063762865, 0.11952161813303241, -0.10369720858539677, -0.08697256729134432, 0.063107343300822, 0.03626452328751514, 0.010077868573957888, -0.017557694235661163, -0.04414187468194162, -0.06794312235456351, -0.08804619799259886, 0.10204543821770937, 0.11066868855535937, -0.11546822633129275, 0.11383755772829382, 0.08023440531288631, -7.245926253825197E-05, 0.036827891500246866, 0.0698298734835372, 0.10510057649199858, -0.13580453429499229, -0.16009205395327616, -0.16458247475917642, 0.15905720619702585, -0.14304898473425637, -0.13155854911641443, 0.1079346411075625, 0.0796466984247635, -0.0520821146768543, -0.01874974001582143, -0.015519779537876057, 0.048473135892836465, -0.07709816357199123, 0.10052214105554831, 0.12115370212692396, -0.1430055905051506, -0.15613712046706715, -0.12099236669852063, -0.025100580111457382, 0.000431266672473849, -0.021731722959430544, -0.05652859230326719, 0.08879870448904416, 0.12361867432197925, 0.1223286666326603, -0.11951940771875694, 0.11039922788622697, -0.1203854059845062, -0.11079739368045585, -0.09368271384451449, -0.06850577310741289, 0.042169565901240505, -0.01369968802504134, 0.013738424384052116, 0.0400567811435765, 0.06433658679631915, 0.09021139803518809, 0.12071126426447476, -0.13910170383485543, -0.11133444837985262, -0.028052430129822396, 0.014521055493356241, -0.0008290779414515548, 0.05145609863879573, -0.09487534846127332, 0.16093281893428488, -0.14815312325057603, 0.13367957755823717, -0.10933570770790535, -0.11637619622978734, 0.09933536690940639, 0.0746896923850577, 0.034904276597364864, 0.001770998999036627, -0.03183637064503958, -0.06545361919033847, -0.08059146627573609, -0.09103288801634196, -0.10078127982298599, 0.12411661097026029, -0.13252231507974863, 0.10432065332233961, -0.017679249775721814, -0.014949070590332977, -0.04436619588974938, -0.08156294902947492, 0.11853754359599225, 0.15120312584191573, -0.1632720253263163, 0.156898989246971, -0.1329614258229799, 0.10781082943694593, 0.07622162153289312, 0.04467811342556331, 0.018175784361040795, 0.009056625967340567, -0.03588775027436189, 0.06042257079376027, -0.06938834545203641, -0.06623500157792281, -0.05832424887497183, -0.06585958306898615, 0.08074019831857132, -0.0820894062232069, -0.010513695372717529, 0.00130293810317531, 0.011447623591835463, -0.02753257209114118, 0.04416561720529359, 0.061289948957915216, -0.06590860233786733, 0.06204979027226569, 0.05030762622532661, -0.039874881261118676, 0.027071370550654048, -0.014728791785097301, -0.003220975541411502, 0.008090229594679265, 0.01965941091922741, 0.03224213201579026, -0.033080764294913786, 0.02481452200588887, -0.011396672730566989, -0.004677055127778195, + -0.11637819840144477, 0.07702497766581255, -0.06539574842916758, -0.11952690776459118, 0.01355624373000498, -0.11047367883895554, -0.08511271085897625, -0.055130671954790045, 0.12078422113333917, 0.02965641399123213, 0.10147273481128145, 0.09727004464608849, -0.03047584899836681, -0.11607620936242778, -0.045982068170539625, 0.08670195161677743, 0.10285891684959973, 0.020171258914352078, 0.11775517719850956, -0.05899104800280405, -0.07994376973043209, -0.08359476561026705, 0.1221447982051619, -0.12046801426116845, 0.04145030756730843, 0.1587624967321197, -0.0624199955468806, 0.11890616556027273, 0.13096647089323613, 0.033177342795617584, -0.15200249760308823, -0.07959651090661334, -0.10170830313412868, -0.1478226090934741, 0.004583199789883946, -0.14553174980055197, 0.09985052198201694, 0.07875149406638844, -0.15036345344243215, 0.018964418064727193, -0.14510867891238274, 0.11898341368372481, -0.06993630806697287, -0.12098210744775814, 0.06773310988032448, -0.09403961931940501, 0.007805214216734966, 0.13738027676648298, -0.07597534117263044, 0.09128277006339451, 0.10603550520448174, 0.017002909310337273, -0.11504564370638569, 0.08393606180352033, -0.06608739321955265, -0.12744479363477007, -0.013618313422228984, -0.1175720933821961, 0.09182801526893576, -0.04785314473346798, -0.12336807148603258, -0.034566433710731745, 0.1132259304352603, 0.11245209867051839, 0.04650667958694426, 0.10370975212578941, -0.023710316487023594, 0.05306964093948412, 0.005727424334154035, 0.1568821600945093, -0.08990417489208348, -0.1061821653807589, 0.09345506633500589, 0.042808633693115314, -0.11715288626943786, -0.07203107812253615, -0.07470130185086565, -0.12124766881720554, 0.014760536882013012, 0.13069786194633726, 0.07485576493214587, -0.06389584819698957, -0.10852708153392758, -0.008147373141557335, 0.1217416060668707, -0.09925699521463263, -0.06725081141611768, 0.107953643011244, 0.07429254192912632, -0.10566145905218692, 0.002229724785098661, 0.12463204284813773, -0.07968956100302638, 0.0719653675295044, -0.11867950771725078, 0.0020744531062285264, 0.11742365149931815, -0.08656799031574838, 0.06193905566565698, 0.13089111770987497, 0.042680448296400345, 0.10280261101294136, -0.11224801576897928, -0.021545487350856166, 0.12431573551955183, 0.04970646463074904, -0.11448442426151043, -0.13902266004997138, -0.013474079464870064, 0.09906900590537633, -0.01682647049970735, -0.040034505961894375, -0.0088733069262968, -0.047589896853405284, 0.037851752445983065, -0.022483842222516343, 0.04611668971028427, -0.006403136716598862, 0.04208497974915265, -0.038819438112479614, -0.017482631504151015, 0.051794533364956465, 0.020718899380823604, -0.036600220623692975, -0.046896201678005234, -0.001904071018951116, -0.045455397170463846, 0.02449603416060503, 0.04327293792762445, 0.05235190248036725, + -0.09694839886884038, -0.11963374752635295, 0.050531410481824766, 0.056638587595288364, 0.12037426231867819, -0.09198637534627643, -0.0062566306945546785, -0.09980223260798138, -0.1170303846251617, 0.03935369196190941, -0.06612537934093642, 0.12118440066471, -0.07537897266702846, -0.023636785017135866, 0.10410864817069744, -0.10619990271275428, 0.026434031497323308, -0.07373096592934267, 0.11971724013132656, 0.07250559137284417, -0.0314146228024632, 0.0822058453043839, -0.13656539854173855, -0.12970362675215888, 0.023379182102783162, 0.10941057167484011, 0.15866519152164826, -0.0869540667895925, -0.04460151531710176, -0.14304917986418603, -0.1319806267651816, 0.009154537071154253, -0.11807730352943574, 0.15485680471451888, 0.06456022033458385, 0.07200454918025732, 0.15316992585362643, 0.11488361492806558, -0.009810435931013713, -0.12665461434901215, 0.15583001341321331, 0.061192152873496844, 0.08454600500187, -0.11846307701451812, 0.10093953123623671, 0.0752446456275689, 0.00548679777229157, -0.11111463227442236, -0.1384499748182007, 0.06015903417073717, 0.04214639319337511, 0.11323168636691355, 0.09685192649514102, -0.013484574558776085, 0.11000955050396269, -0.12251890578251214, 0.04506515154207848, -0.06800009404672003, -0.12955687321637305, 0.07963637079559129, 0.027113967350360806, -0.11099056838747855, 0.12664372768881157, -0.03949739749173228, 0.0844028573738215, -0.10129806983746237, 0.05397993511448196, 0.028830791642603028, 0.013224817475330794, 0.12368299158321026, 0.16039055592286455, 0.07504113087528551, -0.015327422049648144, -0.10331802828776888, -0.11077963827242117, 0.00025627011467037114, -0.09927040463148085, 0.12317500867959043, -0.07419011138304388, -0.04189196351364501, 0.12702286443895244, -0.09046277645342853, -0.0007194287188037251, 0.08776171225192995, -0.13308787850999487, -0.06230865112197073, 0.06570197053709874, 0.10311647411596084, 0.1108875992842833, 0.08322959560634897, 0.007351682523647163, -0.10616434657978371, -0.12525624417820072, 0.0485275405806003, -0.05980435339671236, -0.12292694921118091, -0.09329526102945461, 0.014475222236717739, -0.1112252311139413, 0.12192168605899073, -0.02695772162949856, 0.08578950245247931, 0.13149594599561962, 0.06733665229759944, -0.042174282577247625, 0.12007730655641967, -0.1323136590650561, 0.030914677607492655, -0.10775404568517567, -0.09414885284985994, 0.03997416604883518, -0.021151867112018524, -0.01181073141533097, -0.046151615934838304, -0.048497757767376685, 0.013525834689506801, -0.027095604004702057, -0.046961347655464634, 0.031518962339864044, -0.011984679154572382, -0.04659207021272163, -0.04490563116240771, 0.007476190335472715, 0.035673273038847174, -0.05083610071073975, 0.019721660170889676, -0.02223028597917101, -0.04797812333873619, -0.05169871180705185, -0.012246098578066647, + 0.01161531148332757, 0.02314180837605485, -0.03453179530970862, 0.04562298562724, 0.056113399315728826, -0.06611843747860872, 0.07566500334236773, 0.08436222876423001, 0.09221821353132463, -0.09555552877283868, -0.10230342214388019, 0.1081722752576569, -0.10589813985026533, 0.10978922924886335, -0.11283737070820903, 0.11620365073156852, -0.11746888221594635, -0.11751866165972273, 0.11874406907610877, 0.11762144826555246, 0.11464555654240671, -0.0813669069475772, 0.023625559425322858, 0.009677841768263817, 0.004173938041307182, -0.018817445721328097, -0.033652589528630046, 0.048537238659830305, -0.06426089336390814, -0.07705052198091521, -0.0890192283000904, 0.09454980029109866, 0.10615165196090313, -0.11675745388445412, -0.1198956040692518, 0.1285615516073782, 0.13627745945683342, 0.1402863550560484, 0.14538454034461917, 0.14940361523431891, -0.1615744139373262, -0.16618872637618914, 0.1661839013288608, -0.11727709557630267, 0.039040356894547795, 0.029852415408729127, -0.0189017577395466, 0.0018171628548679171, -0.011584841209120752, 0.026008330382725077, -0.04263495699094033, -0.052673062259696604, -0.061935271719776884, -0.061619176354619866, 0.07232811774887479, -0.08218326796093665, 0.09409225080755132, 0.10219426800073819, 0.10966189468434986, -0.10461938528062299, 0.10912439836763893, -0.11368734339237489, 0.13449402467942917, -0.14227027755911942, -0.14365280122061305, 0.10040671107429086, -0.03305643835869507, -0.0286672434305595, 0.020139154877663788, -0.006832606415574878, -0.022349791756306102, -0.04202864193341754, -0.06985418145435397, -0.07806474136054221, -0.08513152335205194, 0.07250189788227891, 0.08238059779265494, -0.09102475920479604, 0.1164319705306692, -0.12243852178055216, 0.12776610194777566, -0.1078792825943434, 0.1085043828620523, -0.11014390040089869, 0.13722653069144808, 0.14508116344339048, 0.1443760933164363, 0.10050678188702068, 0.03978913123781952, 0.02954040805981258, -0.01821771227482457, 0.004203481598651981, -0.008141887700502268, 0.020526894323110605, 0.032804080361314776, 0.04391438670316238, 0.054642957311597656, 0.062470749053089476, -0.07322329999476142, 0.08330458137866632, -0.08589912540904313, -0.09477128205270507, -0.1028604244929075, -0.101150502068524, -0.10717845187498816, 0.11326682827337978, -0.1432653449879635, 0.15410438799103135, 0.1581136769487367, 0.09251319171065545, -0.023515598842661342, 0.020211661820497565, -0.01514611748145316, -0.007126563290790111, -0.0021626018780851637, -0.0029142786902544, -0.007693596765174689, -0.011985592672610566, 0.016158151165851044, 0.019131438563953055, 0.02361798380376029, 0.027869003104464874, -0.031667182742557476, 0.03530466248473447, -0.03870073775405125, 0.03569504646175061, 0.03811726345474143, 0.04095213429328853, 0.05701483088385512, -0.08338027548727989, + 0.10949995802447751, 0.10030151562442617, 0.017915816146239924, -0.11604334608352711, -0.08807841850540434, -0.035126700986738306, 0.12013945810787915, 0.07519627507239125, -0.050871628511758034, 0.12083113810921124, 0.06478612739201714, 0.06195483431184667, -0.11671045524392112, 0.0528922871392208, 0.06772483322151798, -0.11606468220043405, 0.0379649714137848, -0.08136056820773335, 0.11488970980762334, 0.022998937453109814, -0.09503891139955793, 0.08083533142732025, 0.11139668704570507, 0.13794902741533072, -0.015069403908979293, -0.1335349914412075, -0.1384410782165923, -0.00683053973606404, 0.1407313655488729, 0.11941274058106133, -0.03063423996797745, 0.14823422242672005, 0.11426538142534473, 0.044306848416752295, 0.15153990055046082, -0.10302583623973974, 0.056517028891454074, 0.15298017880764694, 0.08746581160913769, -0.07205116976597578, 0.1623595702578592, 0.06946258955428117, 0.10321891428116071, -0.11698567489763627, -0.0596959716480329, -0.10079382768382834, 0.0316852266633302, 0.10884750558482804, 0.1311927871202779, -0.009417048258093462, -0.10597703110917041, -0.09652342094087128, 0.01643235553266407, 0.11515474988821849, -0.10613106001693062, -0.018084737082720594, 0.12384933311212092, 0.09130858007110447, -0.04069219197970184, 0.12052679779889178, -0.08433192158069874, -0.04108802773018038, 0.13691738566257985, -0.06948501278605673, 0.0799312618337614, -0.10068592674650835, -0.01931431615809245, -0.053428472383936054, 0.02600486709500999, -0.1320891134346778, -0.1452062160253895, 0.0085894532187588, 0.11889734552826961, 0.07685004035049575, -0.045096237613862625, 0.11830698673647194, 0.093199566808636, 0.03354398222400756, -0.13328053967355932, 0.06534854761346824, 0.07530556683468728, -0.11522970228474355, 0.05486909848402196, 0.060662452855348103, -0.1346143556604709, -0.045922120136112715, 0.10261426757366554, 0.09931868812519362, -0.07011597574516543, -0.11001184187109471, 0.028727568880348872, 0.1011740400197634, 0.11962956518318196, -0.008288226455634795, 0.10709332221912798, 0.10664167739959583, -0.007645029964632881, -0.11663459352778292, 0.10402443632923782, 0.023758827367145595, -0.12400018781977104, -0.09704073502604763, 0.03517973149406563, 0.1221856391558135, 0.09166202831013237, 0.03396964378654724, -0.1472299010200075, 0.07411626332020584, -0.09633469833231778, -0.09291538898495741, -0.01625514733253324, 0.03988290845839169, -0.018143055354586102, 0.037712954463699176, 0.050022443085181625, -0.0077124061966900885, 0.038075325784005576, 0.04228790603248646, -0.0015956826901341705, 0.043030813189107106, 0.04365302899300009, -0.004316276275367664, 0.047638331342942215, -0.0381003183940594, -0.013474271415579771, 0.04622070242747617, 0.037998057333932356, -0.008095914326791295, -0.059172817929002156, 0.01000505014204976, + 0.10671084814285185, -0.10729571062249726, -0.001435507512373934, 0.1051713275343128, -0.10711480171779877, -0.001979373285972752, 0.1048261601957997, -0.1061177858563096, 0.0004068183647050194, -0.10695555356027538, 0.1035149062011886, -0.0028855972344549318, -0.10569868887192857, -0.09605350757728263, 0.009129424467523304, 0.10545690563413426, 0.09650564820173456, 0.010097710426845279, 0.10819045300300434, -0.09929480381832989, -0.009400374162904, -0.08063862668419447, -0.1427846144184919, 0.10840309617194703, -0.03299471766041885, -0.151520893749606, 0.11773701282786789, -0.03426512512591685, -0.14596541122564344, 0.11342141659933372, 0.03309443722769364, 0.1521874005066148, -0.11125252287307746, 0.04017903931586654, -0.15301938231319065, -0.10472069087214042, -0.048060677642140975, 0.15143051381115516, -0.0983713586575418, -0.0535995037415712, -0.1580062374523274, 0.11302067602641493, -0.04815622704013008, -0.11781086744599446, -0.10229608438281936, 0.05620932028511185, -0.042782579653627514, -0.1378460369618652, 0.09505307739409447, -0.043929171735655845, -0.11661030562593853, 0.08306490254227455, 0.031922256933689136, -0.1280355527706782, -0.07845961722816809, 0.05066335666638179, 0.12807445072986154, -0.08193097952170159, -0.04617519436286771, -0.12635612733990073, -0.06461341133939168, 0.05877152682603415, 0.13321060989549063, 0.08992399170959363, 0.05130304864961226, 0.10259323975560958, 0.053301455111471795, -0.016817227067166443, 0.029854516233745257, -0.15268229400160901, 0.12592567074049557, 0.021402472702229464, -0.10630913588338262, 0.10366937225125547, 0.002487972810424236, 0.12025680099285639, -0.08973213425500484, 0.03239580902225277, 0.12065090499701916, 0.11186693057937457, -0.006374138591838652, -0.11165148151100655, -0.08094209001306005, 0.028029929671456125, 0.1243228156759199, -0.11173296544262516, -0.023353544015700656, 0.10005536663197562, -0.11288766489843594, 0.07147502627264984, -0.03688700080314583, -0.12687732534958251, 0.09332031082860087, -0.0328382666514169, 0.11975202176357115, -0.08303801085221792, -0.04029978692993066, 0.12859220452397482, 0.0858359031987817, -0.03963123459972284, -0.13211047891218722, 0.0896306062830774, 0.03886091563959919, -0.125306568617154, 0.06445674238634036, -0.0661935787733449, -0.1445871364245647, -0.11349920371092377, -0.02530772137184961, 0.09616970272515316, 0.040588625343404884, 0.01741833749676573, -0.019902721666387888, 0.052023546694987766, -0.03543078806065934, 0.016176321071677872, -0.04583714316527594, 0.028277436010572334, -0.019007968966059163, 0.05089298950818956, -0.030347295553419272, -0.019144161324898365, -0.05137568598673028, -0.036257626467850815, 0.012462319030272308, 0.048301937386761536, -0.022676948757272317, -0.028978366370506176, 0.05887830249235533, 0.04598487635636484, + 0.005812276600977985, -0.011656402795925084, -0.01764164634564042, -0.02363494242822596, 0.029668031044715246, 0.03562004238784256, 0.04108664212502305, -0.046045698988675964, 0.050331812511568166, 0.05702327136749753, -0.06193808641474172, -0.06735642127307091, -0.07709219945864991, -0.08150633045463365, -0.08600327046979342, -0.08949265997205162, -0.09305558683970051, 0.09506456307351126, 0.0970133645829814, -0.10084752059676164, 0.10444741074390469, 0.08152263032834693, 0.042567343451046666, -0.048657990738059424, -0.05349117612982881, -0.0616417798482053, 0.07091167660172162, 0.08057061767922938, 0.08453426419809855, -0.08788295552156875, 0.09006854018377863, 0.10024493755778886, -0.1062180651245615, -0.1133995355872734, 0.12733596888516024, 0.13422303797055338, -0.14065233322439022, 0.14555003969227298, -0.14418083125752484, 0.1408961291634839, 0.13976472425948713, -0.14889239315028052, -0.15652781565333673, -0.1233624441197858, -0.05097951278228622, 0.05277862161081952, 0.04721894490408312, 0.051854102921947795, -0.0621318723269155, -0.07697785138982115, -0.07394856758305729, 0.07377820378821098, -0.07356809828988643, 0.09057103544395577, 0.09711267762655194, 0.10229236689882035, 0.1042442189199291, -0.10983165602115844, 0.11620465158369962, 0.12693389116097148, 0.12018829226055065, 0.11568868483404722, 0.11572171268128788, 0.13209372469175845, -0.14131768058352057, -0.11173591623133795, -0.037985901613918745, 0.03568428928365296, 0.02391109692384242, -0.024227943329870563, 0.03660837506081009, -0.05930695191907545, 0.0561072965715278, -0.05555219840474799, 0.05358730233509511, 0.07139764234946325, -0.07683337828981161, -0.08064410188321307, -0.0734878730070752, -0.08235505062849796, -0.09445003658160335, -0.11704205040897654, -0.11002472779416224, -0.10346289936989511, -0.0993151537956952, 0.11613765897287645, -0.12480538536173055, 0.10370200104805055, -0.048677827496527666, 0.050654122497174915, 0.05120250327584373, 0.05831065745403088, -0.07014911077682578, -0.08315266992239982, 0.089311586792824, -0.0900584923164364, 0.08544864230201862, -0.08500814415187712, -0.08394206085486267, -0.08781812960577891, -0.10680985434469936, 0.1255176498172727, -0.1489560969840741, 0.1742133013583724, -0.1630468820554135, -0.1320235342200387, -0.09512021269792251, -0.09177455959895142, 0.10252236110459807, -0.10277115972147641, -0.02565903444126788, -0.02537601350418998, -0.02277509410886126, 0.024355163549036888, -0.030166534016790956, -0.03781915406271849, 0.03991080392161308, -0.03892380816622817, -0.03501743495439973, 0.034153174295918805, -0.032971253285970836, 0.03432497833235073, 0.039628268015365765, 0.04904407780211571, 0.06291643822600142, 0.08445618123959948, -0.07969715920678115, 0.05709798061634093, -0.02530432222649927, -0.01012352754828917, + -0.10043007524314818, 0.11696150689223217, 0.036166679889401324, -0.07431466435106658, 0.12272205128731017, 0.06786169925225044, -0.04444637444768825, 0.1191188967156262, -0.09242743155480529, 0.008422087456911802, -0.10120042258468732, -0.10985238983197262, -0.03375088907302926, 0.07373367091942942, 0.11898517594122286, 0.06292675187961357, -0.045168441749790865, 0.114964109462511, 0.08805025246973201, 0.009923976744531793, -0.10057878987480595, -0.08035341066332963, 0.09901327119906168, -0.15325523331153945, -0.07709973410075714, 0.06730823822856645, -0.1509027688420452, -0.10831985952020008, 0.02907869832436631, -0.14487204372295806, 0.13737948494017257, 0.024602146323125282, 0.10805696608861666, 0.1513291670753159, -0.07659706498429725, 0.0670359953012716, -0.1537860795055797, 0.11052820942529214, 0.030645585137214153, -0.14536614295429565, -0.14066180904693518, 0.03097917067886691, -0.10839742830648139, -0.11616196314793407, 0.06099252055095722, -0.11811402171141709, -0.06468052306292939, 0.05898831753613099, -0.11714737885907933, -0.08262717458467152, 0.029515780978494218, -0.12769020740983208, 0.11779734354531389, -0.030947834756228264, 0.0801659684583445, 0.12352493919320273, 0.05918163750956305, 0.0524990618099334, -0.12092820800501233, -0.09351119728016341, 0.028808967642438614, 0.12471433913378997, 0.12093942995131224, 0.03833211204062695, 0.08350160235916108, 0.0990641545476061, -0.035400926365859446, 0.07680331755667569, 0.03761476112460546, 0.10801149939113716, -0.1296542921047751, 0.058533464803692294, 0.05771716103176538, -0.14707857169261926, 0.10907773300062472, 0.006443650579610613, 0.0921703525972777, 0.11253140075432175, 0.020858608811935048, -0.08160290511584303, -0.11886364873541952, -0.07302601197540877, 0.05889378973980166, 0.13697875291641712, 0.10043736944340995, -0.012893103918753973, -0.09376438518111513, 0.0932363082405695, 0.06737871173933252, -0.1278397810064714, -0.0792952963776612, 0.04057685787560783, -0.11910365892035849, -0.09911446099928695, -0.00815757405338283, 0.11007264200987465, -0.11442616188086707, 0.02715061201293957, -0.08280381871064141, -0.12788520968529404, -0.0851108802373244, -0.029846414601245614, 0.11964188586769937, -0.1112071265976247, -0.011806281910743047, -0.12296563600854087, -0.13583665456163474, -0.07561569458134332, -0.04744661223987942, 0.09638255086704532, -0.018223625624202995, -0.049622616461976486, -0.03543645953328529, -0.01337127647850274, 0.04396036759917693, 0.03972974343681618, 0.0005243787330928543, -0.04219660691745349, -0.0458720520427694, 0.014363247429774477, 0.0289917423364736, -0.0501803791293235, -0.03388232758862032, 0.0080025800265653, 0.0435978849391633, 0.04769411268804054, 0.001202256199065077, -0.04815463634407787, 0.0571991692897884, 0.038590398774920744, + -0.11433747906574544, -0.08507212708122011, -0.051388259679296694, 0.12272191635761139, 0.03956749972542464, 0.09306471819857351, -0.10919812763757751, 0.011532310389113187, 0.11769355311007137, -0.07147947614124954, 0.06089558641622569, -0.11707670400050378, 0.018782503948561534, 0.10266717147321788, -0.09502354811062558, -0.03101616945696209, 0.11713212770321127, 0.05675954839202651, 0.07563086580730308, 0.11037227750954894, 0.005795108623261878, 0.0786054431919605, -0.1520391024121935, -0.07571553670170211, -0.09278669513226555, 0.14902291416656596, 0.023934121596367167, 0.13244169451519833, -0.1263685535707573, 0.04350223903395879, 0.15837411449494354, -0.06322989700637487, 0.10514053214530854, -0.14152769809408278, 0.007340455441600868, -0.1478675847723614, -0.1029595306847495, 0.07101819112389501, 0.1590122670998304, 0.04829823497155125, 0.1281051937347562, 0.13181479936910354, 0.03347764569737902, -0.11278390702750071, 0.11950137597487431, 0.04182779645965932, 0.07806235047347276, -0.11541808910918186, -0.029045222703455813, -0.09965685358272984, 0.11285696925546182, -0.03602780417931118, -0.13716442523591327, -0.042452266868542, -0.09198967534143371, 0.11154325458085662, 0.005478132820482167, 0.11503593182263418, 0.08037541152827757, 0.05827481642327607, -0.13640678030215073, 0.043732193824066026, 0.11273488558788598, -0.1057416084964932, 0.03887633803242775, -0.0957569233869757, 0.07875971317804195, 0.02259152562001326, 0.04783174391456632, 0.12541842844267467, 0.08743343188899008, -0.07546192666003809, -0.13954912627926175, 0.009999668883755475, 0.14200407181433383, -0.061932013923436335, 0.06820802004831776, -0.1136969369570531, 0.035420047617606754, 0.09090706047494683, -0.10316744570818087, -0.02769948434401804, 0.1391397599086704, -0.07667078287069619, -0.089215571314431, -0.11045332816974125, 0.012155449783448957, 0.08722432346932385, 0.1275015816350001, 0.04771166545415549, 0.08624561823260839, -0.11932075898337832, -0.011359509322283736, -0.11143332512428883, -0.09701602854552985, 0.040837703274122825, 0.1282254089499998, 0.048454184307010796, 0.08947649197542995, -0.11416772510277344, -0.017267963398037472, -0.12679199802294225, -0.07546216041819176, 0.0711754323983122, 0.13865530066921622, -0.038464193152271876, -0.1266104406643546, 0.10051791515011325, -0.06873126185780314, -0.08898574799599919, 0.05098513105082374, -0.010273880926110816, -0.0377929836216828, -0.04419316983565108, -0.0033462470805050645, -0.0428970328915495, -0.03718749303715551, 0.017771492788100637, -0.05070911181703079, -0.015873323819588354, 0.037141166160512155, 0.04291940741587884, 0.007032647250690971, -0.04780367095458629, 0.02724788183791102, 0.029581549665752126, 0.05481246771962503, 0.01600642898190125, -0.05300313902899109, 0.01895139064606147, + -0.023123531929596663, -0.045453170523809656, 0.06629745364540236, -0.08481186325235088, -0.0999451346121199, 0.1115588588040573, -0.11945568382861636, -0.1228325769878049, -0.12173825944654453, 0.11127473199979673, 0.1019247231847957, -0.08890733760594201, 0.06699139779042237, -0.04702477374977431, 0.02555706838292349, -0.0033986074473685442, -0.018745842239356745, -0.04024842522224418, 0.06141179198645176, 0.07932729911470017, 0.09407582644395734, -0.07763941842657374, 0.06323003987902685, 0.08828130966730341, -0.10770015003718751, 0.12164609557287265, 0.13696165380467018, -0.14837901478008597, 0.159527298766918, 0.15853890957285607, 0.15176471540626574, -0.12930245103089738, -0.11216873167599033, 0.09086257394894574, 0.061516413287707405, -0.03326504449362481, -0.003992812239819052, 0.02520236585807069, 0.054228091585032744, 0.08132952293230016, -0.1118238532253828, -0.13278299139040034, 0.14698750896055324, -0.11115429848520418, 0.06551512528048614, 0.08278920467252662, -0.08872477685029032, 0.08468112800950119, 0.09871983423264173, -0.11301936810032574, 0.1398029207222985, 0.13880090969467954, 0.1326349997705379, 0.10062805919866355, -0.0856996180023527, 0.06734220336304751, -0.048742242158628005, -0.02696232725623103, -0.0041433359069919145, -0.01828949422879469, 0.043240813842901925, -0.0665296411307211, 0.09956358641557878, -0.11801042344716445, -0.12867089176805088, 0.09422567956750058, -0.04764391839423146, -0.05819684428346095, 0.05505229372655699, 0.042547036695557996, 0.06624750320750075, 0.09681882620860915, 0.14757183664868337, 0.15161021930912869, 0.14990817228368025, -0.10734831661861884, -0.09768821541957429, 0.0837651890056071, -0.08228033633860717, 0.06537003170249496, -0.04605607786785628, 0.01786454157205744, 0.009380870326030674, -0.03539116804926059, 0.07285001166482669, 0.09383106682450382, 0.10805976598974246, 0.08392010852547543, 0.06385365844893705, 0.08328144536719466, -0.09450767538238856, 0.10036024487701528, 0.11235866345425215, -0.12110577157160538, -0.12865018420806906, -0.12752591306060168, -0.12193768106946432, -0.10567436975998235, 0.09169459996699411, -0.07411044174897545, 0.04767494676998403, 0.023715951361482992, -0.000813225651471669, -0.0242104593863728, -0.04913301107220478, 0.0726692309011627, -0.11284423258338194, 0.13263515057490985, 0.14380382371830935, 0.0863413300026186, -0.03310444817887784, 0.03977810304695495, -0.04038205282758248, -0.037434916810255126, -0.04196831145946144, 0.04593761733281929, 0.051009337996761266, 0.050263430905715736, -0.047761671544034795, -0.03966551250295075, -0.033862829144097634, -0.026648989114795553, 0.018225255934982146, -0.009245039954328866, -1.2250565594271179E-05, 0.008797373641742968, 0.01855674008902549, 0.027924583450705698, 0.047515863204265936, -0.07565436845236423, + 0.08935008382299219, 0.12304475697642214, -0.08002231508511286, -0.012300561712578002, -0.09709464248888303, 0.12139438497363088, -0.07058713677458496, 0.024284246415213546, 0.10395116339159072, -0.1150493958878537, -0.05954149253890419, -0.0334367811790366, 0.10267746330308963, -0.11518549642730724, 0.05615135325700076, 0.037494293602861745, -0.10687559306804387, -0.10988758237778568, 0.04570796763786126, -0.045941954981403084, -0.10956366041068484, 0.07699309145545774, 0.08457293472063296, 0.15092350115593794, -0.12051129977336474, 0.006703055711555161, -0.10618366820599276, 0.1541506542985514, -0.11226209216442613, 0.005106744123731787, 0.11885820717523556, -0.1519661942593129, -0.10106005921331065, -0.013398777424310487, -0.11806651250112424, 0.15588582230488676, 0.0969161464670887, -0.02286688324621529, -0.13007961426729425, -0.15647269609742825, 0.092134442719452, -0.027388508808317297, 0.13263291040526812, -0.11041383608378316, -0.05027423129582711, -0.1127472711136534, 0.09655228562678904, 0.008923578058951595, 0.09085724781776905, -0.12076125814880928, 0.09641464610386233, -0.008011442467895894, -0.1054279196824352, -0.12355828471071778, 0.08740091610941098, 0.0036101216800934277, -0.09292103441845569, -0.12116740877619059, -0.07395449306899476, -0.023272651776243374, 0.11373529988960171, -0.13273423706005935, 0.08238535913748897, 0.01534388208082292, 0.10834476386232891, -0.09380948177075607, -0.028811568732111804, -0.07258659189364532, 0.05946193405065117, -0.07342793081978755, -0.13251830523639235, -0.11707951952138816, -0.07918449563485419, 0.04137376515980072, 0.1324368981113266, -0.11361253081857178, -0.06101090594505123, -0.030453114530477884, 0.11107799660248407, -0.103333942700669, 0.03030573828625658, 0.06158082762206573, -0.13451338354154468, 0.12445054473579234, -0.05290207279291567, 0.040441987060127804, 0.11384646982404634, 0.08186592587833036, -0.061877799528828034, -0.12315046971807855, 0.10153520058442983, -0.0028356065903268604, 0.08835429959013703, -0.12506121218418778, -0.08830028516369001, 0.006255398561835898, 0.09699363738369815, 0.12428464427256626, -0.08027855998605615, -0.015281527943825635, 0.10042577506179996, 0.12945049872669837, 0.07731289105260258, -0.025447635522822327, -0.11622551200157279, 0.137372772654834, -0.09365130600256188, -0.009960312041533605, -0.11707440875378472, -0.08571999556566312, -0.01749755891951733, 0.0471423472657545, -0.042234135501026934, -0.0004754462695916147, 0.03341013296779999, -0.04740726295903678, -0.03549563761677764, 0.0016845157436304707, -0.037723249202785455, -0.04844281091583395, -0.03282356974062692, 0.0040464970008142025, -0.03844292896103505, 0.04833341584526185, -0.027544909314422217, -0.01302957340772452, -0.04732739958958563, -0.05430748007591123, -0.039458044242701454, -0.0223141943793309, + 0.11967564456774515, -0.057505836317110114, 0.09216146795217309, 0.10107983336401338, 0.04377397422424179, 0.12176692582371061, 0.013327496883814465, 0.11560676288063969, -0.06749759663302868, 0.08154668609857904, -0.10287888114195527, 0.03214840060402453, 0.11938794243380504, 0.016606622979067186, -0.11086291805035649, -0.06840349430826342, 0.07720853765815308, -0.10471696441225947, 0.028851393625205276, -0.11673974666740584, 0.026994250264860832, -0.07663184840393952, -0.15366250598115863, 0.040529004329037194, -0.13055495216990348, -0.11355666048183366, -0.07256907499922031, -0.14946515881176828, 0.008285365030723045, -0.15682551053805005, 0.06530233747060742, -0.12355081099592011, 0.11625076043271851, -0.06757155579292543, 0.15159367988514388, -0.0036724287928664168, 0.15279153994021788, -0.06902794907511853, -0.12357103236333837, 0.12665050392433796, -0.06937091725807518, 0.15477004211251152, 0.0036426300584326615, -0.11057319423031738, -0.11872710310320844, 0.013698831299639298, -0.10080254160494635, -0.09602704378955025, -0.04134425475606372, -0.12291355422649818, 0.0045823178429039765, -0.13636426885964745, 0.060059322478157776, 0.1030163256133101, 0.09053266123900493, -0.06086566557736698, -0.11813360681985019, -0.00037096190424939146, 0.11905106000058531, 0.06290078003541376, -0.10303732004689213, -0.1107797043918918, 0.06155175599761179, 0.12990231483956116, 0.004195324216594613, 0.09467538815102654, 0.07783803003449175, -0.003949794186155063, 0.06025575302343626, -0.13201180658248293, 0.02579989580895365, 0.136222400941674, -0.031093148572150398, -0.13718276849224212, 0.09228888342712312, -0.07813954220764267, 0.10230444751436808, -0.0308893298618467, -0.11565652177107409, -0.04657865379965211, 0.09377597424243164, 0.10047286143613801, -0.07615588547856096, -0.13169144690892312, 0.030087191618008366, -0.12405972501322932, 0.025392265129604782, 0.08107705008833865, -0.12806962187618004, 0.02881050096570958, -0.1065279403620292, -0.09833914385528483, -0.050202397157529145, -0.1232290324288944, 0.002386980787182796, 0.12431412587400842, -0.057186577363457364, -0.09751038785456678, -0.10072840088702796, 0.046393629420975385, 0.12996131355299, -0.011685493894834895, -0.12283663550687905, 0.07395233344489271, 0.10091607904419428, 0.11349516353641285, -0.0692251191499027, -0.14338566254979054, 0.011927448759793936, 0.08710655687655398, 0.051231384795602235, 0.0042236896795457115, -0.04296585958898756, 0.03747761729673901, 0.017314953501224157, 0.04735894836564236, -0.0009043727956077024, -0.04915902539862687, -0.022061361945202248, -0.0388959556022465, 0.03856740899093214, 0.018943686898698513, 0.04919622296777249, 0.007667905088967701, -0.044926546544237604, -0.03449857966408249, -0.03657862923794043, 0.045956598125645544, 0.028762443378472384, 0.05021108464320332, + 0.03997196960942505, -0.07591919403526554, -0.10469683910759933, -0.12249055727032115, 0.12747762321854078, 0.11864754065585327, 0.09576636542337247, -0.061550525771865025, 0.019990847224162937, -0.023264160625364405, 0.06302872922856005, 0.096739770923555, 0.126223956160364, 0.13367915446251338, 0.1271270741036502, 0.1055397192173936, 0.07310772337833485, -0.031652877914178826, 0.013892984933473088, -0.057343581515822604, 0.09501269714777373, 0.09215346659089907, 0.0947599688868431, -0.13908694687427553, -0.1646977444079996, -0.18307179517900998, 0.18564919889721052, 0.16921958665852901, 0.12441336017926762, -0.06442969266776825, -0.0029605926348895088, -0.07178521159761568, 0.12901884692041463, 0.17418346699933934, -0.2110786434599301, -0.21392900057676467, 0.19345360348396776, -0.15090254731281352, 0.08537170645063777, -0.009898036412769352, 0.07019800397868006, -0.14308470264841144, -0.20111634675442175, -0.17785772961773255, -0.11044035552300675, 0.13859977498877246, 0.1318632066963214, 0.13972130173759864, -0.14891915727091917, -0.15158099587205562, -0.10726392809806824, 0.052132594731071305, 0.007412903209898328, -0.07156778546687105, -0.11712769708112189, -0.14884459057566707, -0.160160461781031, 0.16007096007207683, -0.14401741161439502, -0.11965787825352672, -0.06391146526663584, -0.003830488907880518, 0.0629156538066918, 0.12304665191423862, -0.16594684004157598, -0.14155488659867776, -0.05692879373920217, 0.056805382873916094, 0.03614734957310094, -0.01776232132153656, 0.017544803683703983, -0.019176831020368264, 0.012080979643260265, -0.0032214388189623425, -0.005741185228379551, -0.017312790003017213, 0.023341316911371743, 0.02645003224306155, 0.02313573823166515, 0.022431963968316246, 0.02014782505743822, 0.0183880485438365, 0.00955876475630655, 9.636316949252974E-05, -0.010993872294523623, 0.021087379512361316, -0.028025663908995455, 0.02475428846602465, -0.01113741892042123, 0.009893695537603086, 0.007479008581882357, 0.004742314512826099, -0.002188153718323649, 0.0005778585227028052, -0.003130681323201115, 0.005208175720608409, -0.006432498742664664, 0.007326478802007855, 0.007377192725508557, 0.007066648038369429, 0.007200311918822753, -0.006551569908124867, 0.005467923890466353, -0.003975217533163242, 0.001214352048608689, -0.0018013906745886384, -0.005133657188388225, -0.008988575280740863, 0.013623662180487169, -0.014727995384828253, -0.003532241038820991, -0.0029509139360968614, -0.0018911737840633627, 0.000590145948799102, 0.00041251891437037863, 0.0014206686722724182, -0.002012826257881106, 0.002262957858126151, 0.0021074533128974645, -0.001909251888080909, 0.0014908142096778524, -0.001020675505294214, -0.0005545759038101238, -8.747634649641615E-05, 0.0003793064723303912, 0.0008338773689464439, -0.0009407858463308947, 0.0007408103753375299, -0.00035308110078162425, -0.00014870995703264661, + -0.07648174986761805, 0.12044701492265689, 0.11381117467011626, 0.058685709129465684, 0.021722673125696586, 0.09264518109248553, 0.12247366924477457, -0.09832136289982119, 0.030695124088179506, -0.04959595968293035, 0.10647012837427383, 0.11845105419312249, 0.08731246786781235, 0.012158796756974337, -0.067812895137272, -0.11806417195707038, -0.11760532880445738, 0.06478564126313688, -0.017142565396894398, 0.09046157982472698, -0.12532002088664607, -0.08040522293535515, 0.09969511245551627, -0.19503391726111707, -0.2015986366754821, -0.12962257550745676, 0.008103701025929314, -0.11803361988634227, -0.18287550377454312, 0.16912948688261667, -0.08090943465073593, 0.03748877628144891, -0.13638630032162483, -0.1782996707136666, 0.15412559503106435, 0.05493209514266987, 0.06764782907399851, -0.15958000983371826, 0.17706118075200017, -0.11635219837784648, -0.00235550995237219, -0.10527748746864253, -0.1692097001291934, -0.12067361031211879, 0.13368955731914167, -0.25965359245737957, -0.2374808381022165, -0.14309135085526753, 0.023476714780559366, -0.11203125260283135, -0.1633836362859271, 0.15522680058129468, -0.08110836493048752, -0.015269012426410988, -0.09820915156523954, -0.13801873633972944, -0.11412995105054534, 0.04529203923579392, 0.04324310966053019, 0.1118894539047278, 0.11953266522284657, 0.07792913722223897, -0.0016079031796710657, -0.06979192574932441, 0.10743389991970473, 0.07369438841832013, -0.11691151569615967, 0.2100344860499296, 0.15433653365429847, -0.054459274061720755, 0.01879506040952491, 0.027370471472276028, -0.042500392979619654, 0.044005692073364175, -0.02587352080921073, -0.002899166859131984, -0.0194263751162903, -0.03320950795623116, -0.028171259170671682, -0.017180605063339557, 0.0008197974640384359, 0.01741469614184828, 0.0229670838763279, 0.01860918391711542, 0.004911056554207814, 0.007105462114366592, -0.016446209638265853, 0.014457532445640457, 0.0034848221882468372, -0.012740902888715221, -0.01588182665788008, -0.014005068725699748, 0.007551682463762666, -0.002086888074420633, 0.01031517131155188, -0.013682881196867575, 0.01044187095593632, -0.0030703097392918047, 0.0056117925307364765, 0.012252344778304322, 0.015637101613206767, -0.012148585088244788, 0.003920735599357366, 0.005508327956692132, -0.011586472608543969, -0.01138383021745886, -0.005528867537168979, 0.00017772163566575315, -0.006414853224309218, 0.008112175308996019, -0.001989586402267413, -0.005575155611762493, -0.006061348852744435, 0.004887349410153611, -0.002738693619525348, 0.0005326136857333186, -0.0032219791367280905, 0.004420170473452036, 0.0034212223905724713, -0.0011758180659459379, -0.001557158674612002, 0.003757942524088562, 0.004737394436317032, 0.004118674819452073, 0.002070569780123277, -0.00046134700221742847, 0.0026247084121020017, -0.003103874294398701, 0.0019545934499464535, 0.0009838618780635903, + -0.12261850123003368, -0.023857619459037287, -0.11836385039620902, 0.046881536518972464, -0.10954760621144564, 0.06846665438821575, 0.09529343050295017, 0.08765875525279884, -0.07745072581886295, 0.10062296115297542, -0.05334176490142312, 0.11134072544085158, 0.03840422029834015, -0.12241416469412508, -0.014212642643548122, 0.12582296188595246, -0.00981957508683393, 0.12411209144759738, -0.035889873081315915, 0.11518949235021413, 0.058735739148071835, 0.07732650876100552, -0.21309686692238183, -0.00389521119295021, -0.2064522100299263, 0.03791485101533505, -0.1898888932314468, 0.07602144742407457, 0.16569094904510376, 0.10736006381108913, -0.1434564693022896, 0.12729286723098565, -0.10891305761703195, 0.14863040178630813, -0.08759824790002815, 0.17118151924447725, -0.053322528386524216, -0.1796403894946236, 0.013304977908975375, 0.18178651358269898, -0.02750572079581829, 0.16650922919471617, -0.06054899801039766, -0.11297988587341172, 0.2866578505080008, 0.006853921236854712, 0.2552339565637399, -0.025891689385640012, 0.19995003177385368, -0.06545769049682719, -0.15240058154376848, -0.0844708527943494, 0.13306148087774988, 0.09131242767103018, 0.09456219062075245, -0.11080639369081469, -0.06958911246578771, -0.1217588782439086, 0.04626815977734359, -0.12212836827713308, -0.009503503303958638, 0.12111132778047394, -0.022033670757987813, -0.1026649704772023, -0.044608410184078726, -0.06832524137542949, 0.23032842983124058, 0.016933682511098908, 0.17850259081927372, 0.004342453437277937, -0.06971316242155844, -0.01596113350902524, 0.044444898216351565, 0.018643349035276917, -0.039086501619157485, 0.01759117818946795, -0.0277857831339465, 0.0234025044567307, 0.02010023833160954, -0.023082354305554723, -0.01616457391885606, 0.02213186804933938, 0.007647356439150818, -0.022798832085008526, -0.001459708679288203, -0.01843971874812944, -0.0023202969939036364, 0.013269843310751579, 0.015995502443565856, -0.004039878485555206, 0.01568422045567839, 0.0025784703878951707, 0.014775951272843198, -0.00026361233878779316, 0.014124968378574437, 0.0032006519766958406, -0.013413998962281537, -0.005298784014599755, -0.012113843488624838, 0.007409271553518089, 0.01163585983686314, 0.010138501517461351, -0.00970929501897841, -0.011049190709701421, 0.0060804331046010445, -0.012533218823239394, -0.0030157346406200513, 0.010742300360965216, -0.0021168571674740995, -0.006897876179154182, 0.006827662341948488, 0.0010359037501780084, -0.006144159271833702, 0.0008064787210416716, 0.005130244088707706, -0.00012069470777492978, 0.004628086825620688, 0.0010095829396531055, 0.004382025972273994, 0.0015716027731574168, -0.003921495406746768, -0.00222181749460826, -0.003625034931625894, 0.0027638118095847986, 0.003179764388627858, -0.002775260196888213, 0.0019644721234952397, 0.003337842446650925, -0.0011221143133894821, 0.0019423597343449287, + -0.05602036804574544, -0.09983618551426626, 0.12200108794597986, -0.11767374581313787, -0.08702840014899753, 0.037448278984338335, 0.020047188630252632, 0.07317737074696729, 0.1102337125344826, -0.11891410230602795, -0.10685162070218696, 0.07127988251802492, -0.01578784939370948, -0.04254071804823332, 0.09134190797169628, -0.12136692945896635, 0.12367554585198802, 0.09884152136572678, -0.05359591632584249, 0.0029555999574564884, 0.05945285444217445, -0.07591756043760091, 0.12737668721317902, 0.19123556824923005, -0.2084575859939198, 0.17393328012273496, 0.11183553544671417, -0.02521206432487713, -0.06329888757810027, -0.13725552370449484, -0.1809082496089314, 0.17331151686469076, 0.140731315441805, -0.07696939848392628, 0.0073894167760959716, -0.09080843873574357, -0.15426374356780412, -0.18099829942854728, -0.17143881689144483, -0.1248381294721385, 0.05525073053685559, -0.02361808647488189, 0.09909045304013193, -0.10936973916148246, 0.16996993762098947, 0.255689208689627, -0.2611732991440802, 0.17383304633311894, 0.10698794479477651, -0.015147015679734413, -0.06653996668860289, -0.12871750744158678, -0.16153060620189824, -0.13427487394751467, 0.10452654444625442, -0.05142511138663933, -0.011496592869213633, -0.07132015753325954, -0.1159916959052007, 0.12244390770965491, -0.11459919085661815, 0.08317116335835574, -0.04071440024341548, -0.007106669890245321, -0.05576253043455423, 0.06506182023617878, -0.12691820320182845, -0.1987849474078497, 0.18783468561643332, 0.057707409159755044, 0.03423173741472843, 0.001566448755384444, -0.022803074767023482, -0.03840898312297635, -0.04518197850055905, 0.03146692126275587, 0.02182371351897772, -0.007168662830357983, -0.008199055055957484, 0.020135960337220357, -0.027811304742359932, 0.024025568726840377, -0.0196865922771032, 0.01163772084897595, -0.0020521782517179954, 0.006289554249592806, 0.013585666870798492, 0.01275138841626208, 0.012836394083066454, 0.016359448260075102, -0.015444521484983044, 0.010081826366547066, 0.0040258545088720146, 0.0029221045827290335, 0.009055079979146872, 0.013042554310544296, 0.014220087038914236, 0.01156320345851794, -0.007023224537997291, 0.0008609101049356169, 0.005603202170812078, 0.011219219439138714, 0.014330312313854572, 0.013097084483141959, 0.010173199835349263, -0.005210378589382952, -0.0008380548301335569, 0.005768806555192657, 0.009600227990954608, 0.006535377167909251, -0.00481193188887443, 0.006560063875785591, -0.006157285333211223, -0.0036090756806496423, -0.0015547892901184752, -0.0008758930652255047, -0.002962047497290044, -0.004261321997148924, 0.0046427224697981155, 0.003636554955221764, 0.0021703563911695326, 0.0001929359822083459, 0.0018375375444384728, -0.003457412223464896, 0.004307556118610138, -0.0035445105509768707, -0.0026164442475012676, -0.0012159622985368143, 0.0005196702450030056, -0.0027223716577842072, + 0.06208263316863727, 0.10729525246002235, -0.12343735296277017, 0.10618966151413745, 0.05945184742101735, 0.003381433896804402, -0.06511174149314305, -0.10905248610539803, -0.1232434331117602, 0.09870684496723149, 0.05187860721335621, 0.009331767939537064, -0.06687329310286655, 0.11108193172701782, -0.12500122312603187, 0.10629775327212328, -0.05796913823836744, 0.006301041759355715, -0.06998073219367713, -0.112711503749287, -0.12433536325765707, 0.07488899663338197, 0.07712285518665017, 0.16688536436448093, -0.20625379427245197, 0.1843844732954529, 0.12277407828075876, -0.0276489850638371, -0.07099497562099802, -0.14948922211417068, -0.18699006470470972, 0.16112607842592588, 0.10366002759457182, -0.01749099253430928, 0.07384231613515817, -0.14937376815497833, -0.1842706284240851, -0.16591506153024496, -0.10491917398081867, -0.015806458636271153, -0.08117221945573976, -0.14769133924022712, 0.17270829668830706, -0.10683495207403779, -0.10698658658891737, -0.22582746045839702, 0.25843933880245834, -0.19238639095788848, -0.13286472982359782, 0.03611238088659569, 0.052646783096058636, 0.12521896599033736, 0.16232323899420548, 0.13014511268955473, -0.0889176736993565, 0.022971563240008444, 0.048802152466164005, 0.10550857676487613, 0.13389547554784473, -0.11219429793330415, 0.069649832069826, -0.009922362384474224, -0.05765653597145749, 0.09715485388474071, 0.1085082106488274, -0.06266274661652074, -0.09726457783406958, -0.18757707556354203, 0.1871245925974649, 0.06577984815727958, 0.04620771900203672, 0.013216670481745213, -0.010533175017308442, -0.0316871756565657, -0.04359945992779951, 0.033844371646988156, 0.026167749904027975, -0.01111469223537613, -0.005416044423642723, 0.0192293329980115, -0.027953672324134315, 0.02366311383400043, -0.01747780606023839, 0.007165097958660188, 0.005455148594890241, 0.01374002553687595, 0.018183967719590115, 0.012443316879034487, -0.0027915501343147298, -0.010799882744188883, 0.01496625519367335, -0.014755242707731367, -0.012037721992228375, 0.00607633446084194, -0.00108496080392112, -0.008045088807320865, -0.01284671021280713, -0.013596987202060422, 0.011371549183394343, -0.005946985462644442, -0.001658586938222989, -0.008864966510249789, -0.013585177101000087, -0.013408684865248745, -0.010811965224208957, 0.005481695362372405, 0.0013468015448450596, -0.006718453872307996, -0.010381488477741046, -0.006362703253761759, -0.001946678228414921, 0.0050551030925844705, -0.0060423911917590846, -0.005074537242393241, -0.004021722078200691, 0.0018894171884770473, -0.00040830871576033774, -0.0026704862300909425, 0.0042123430814958295, 0.004321925309877975, 0.0036287967318721377, 0.0019023566442178917, 0.00037931099665603797, -0.0025493367876243045, 0.004008002259747796, -0.0037227134313828833, -0.003065211580686296, -0.001692696200477347, 9.316839184219175E-05, -0.0024822727197387224, + 0.1231071477565066, 0.010153126462622342, 0.12263593046296009, -0.020404960303720163, 0.12123328298020786, -0.030782286702620662, -0.11803331699724101, -0.04133646030650621, 0.11413456408798198, -0.04652624617769441, 0.10761343616241253, -0.05542217197512808, -0.10566094492591058, 0.07206198686323603, 0.09904502139312117, -0.08186818513287457, -0.09184980811232869, -0.09048475202086931, -0.0846799402138308, -0.09447810797808258, 0.07778614427665431, -0.07410804497941934, -0.20981571207857938, -0.04898113712799074, -0.19994964521923625, 0.061693186846349946, -0.18555696948388753, 0.07824513660534448, 0.16950368155700596, 0.09137857625865652, -0.16064042460486397, 0.09478630551853694, -0.1446845126546184, 0.10656880152326967, -0.14088268359538672, 0.12662058922308517, -0.12939558855229738, -0.13568760243916042, 0.11528759629685492, 0.14581714273123364, 0.10470463847603613, 0.1397191641110559, 0.09638910932543561, -0.10499504470921718, -0.2831036162614616, -0.06223845404732054, -0.24710806023355267, 0.06769439400362795, -0.1903652253068288, 0.08538444023600245, 0.1455188970086877, 0.08910118546423496, -0.13528519207094064, -0.08034654474885101, -0.10933421992534978, 0.09054836488831898, 0.09924110965040153, 0.09531567631534346, -0.09198862640770031, 0.09226485681800436, 0.07802754296883253, -0.0964018057497957, -0.07228998762692021, 0.081426697117013, -0.06853873262323108, 0.06098748811315763, 0.2288612535483078, 0.03774567205894576, 0.1763120273229812, 0.022219993873107243, -0.06599352282973259, -0.02745694120232271, 0.03856620876231902, 0.027626513995883985, -0.034604999242177775, 0.023845668259185583, -0.023771037901500945, 0.02624745630323045, 0.017939945697744958, -0.023813853442688132, -0.01655181768924672, 0.021067784342667265, 0.010954316573338172, -0.02123653068569203, -0.008588262212064771, -0.016530055932536154, 0.007657312469508022, 0.012315566251010539, -0.015753578536318577, -0.006569813824970166, -0.014306464221758573, 0.007802215986053496, -0.01230334156233258, 0.008829944361312118, -0.010636005347595935, -0.010021410544948945, 0.00950674146153864, 0.01066532895378407, 0.008199637857375427, -0.01122912665634285, -0.008700721827892614, -0.012223782517712561, 0.007806039946751053, 0.011942897541880548, -0.005152553613352477, 0.012624983123538575, 0.003504529230991881, -0.010434803475509933, 0.003951607282509322, 0.006310629086138903, 0.006810773762037191, -0.0018644039743961104, -0.0058189981752037115, -0.0024129817003022075, 0.004449108114578114, -0.002788694309584586, 0.0035518128690902135, 0.0032070430300662547, 0.0031556074844921247, 0.0033723636205341473, -0.002648324214234255, -0.0035359736361926623, -0.00256883675842577, 0.0036189587644349193, 0.00240783038360657, -0.003288854388662406, 0.0013392600474772072, 0.0035106209350961193, -0.000722209042865447, 0.0020800750354575395, + 0.07094751843474331, -0.1165029249475664, -0.1209797769385774, -0.08194540152386263, 0.013190519131808076, -0.06028747662372639, -0.11097069746338094, 0.12019231851365372, -0.0842554630750025, -0.021039533086246662, -0.049977675786146016, -0.10347076245625912, -0.1258463305045774, -0.09378470909760658, -0.028049926176184018, 0.04845180111282158, 0.10696190259208017, -0.12514037928041272, -0.09752340319701325, 0.03728689856811744, 0.037273733687448865, 0.07332398493341456, 0.14724780415711478, -0.21015240102487137, -0.192263843825933, -0.11127668694470717, -0.003985165915200034, -0.1188923147880528, -0.1802230306865894, 0.1761295102509028, -0.10620140226923966, -0.004925695129069767, -0.09674304285349851, -0.16464266427560667, 0.1823655623388478, 0.12373492630678917, -0.02012528866585347, -0.08988633895171308, 0.16461298882034942, -0.177469108929188, -0.12664364520852828, 0.043302558741600015, -0.05875627889276324, -0.10251944705412724, -0.193221503589364, 0.27688682480783383, 0.22449001042449285, 0.11047124370359364, 0.007776767206872323, 0.13025535436140892, 0.1671429142171722, -0.1531123104722497, 0.0843081491183448, 0.0011723647907875907, 0.0813947992174291, 0.13138269548765488, 0.12963829159910847, -0.08544162387311885, 0.010389929055149032, -0.06474392240223989, -0.11105266218304058, -0.11811745581808748, -0.08386932808365667, -0.037270743467636765, -0.0277659901160998, -0.0600423751416189, -0.1451121405185349, 0.2159249679930226, 0.15032078871409768, -0.04192833531343705, 0.004763415184101765, 0.03901176974821476, -0.04628922108533639, 0.0403782046013412, -0.019350140334256034, 0.004815382196991232, -0.024111128186292633, -0.03433927336611576, -0.02735098599707146, -0.016478401742432106, -3.1459315174495184E-06, 0.015403500223568312, 0.022161203401144896, 0.020766798883885065, 0.01115157614042065, -0.0018956056071607016, -0.008965131822539527, 0.012555376501417683, -0.013758047855100868, 0.017399048838321215, 0.014369427600668144, 0.00691067929857858, 0.0017457947573208594, 0.009834115033794128, -0.013399489648611434, 0.011411430987469936, -0.004665457461290439, -0.0037700564821956505, -0.010746604456742543, -0.014452848805768958, -0.015288118771005655, 0.01047072237981602, -0.002293268755851863, -0.006296387525767963, 0.011440106156779093, 0.011131960217641627, 0.00613016835559191, 0.0014846927393806974, 0.003985294388265994, -0.0062651141363616655, -0.005038414831818157, -0.0069983133158528395, -0.0058055752183614326, 0.002842404630126532, 5.532248572939248E-05, 0.0030153283840770144, -0.004290865547189738, 0.0037552177492497663, 0.00160467637388722, 0.0011036561058775881, -0.003353110447349209, 0.004642941909202267, 0.004738656506856231, 0.003564890435887695, 0.0014008891512328607, -0.000959724332734834, 0.0026577969614357266, -0.002825729789733649, 0.001664401916821679, 0.0008049611463729275 + ], + + "WORK_out": [4160, 0.08295610593682662, 0.08952726538018704, 0.040617108708287504, 0.10849445519809685, 0.009643465052926119, 0.10411213629582562, -0.05783381597167139, 0.07532421066429346, -0.09011517501497678, 0.03259114772247286, 0.10678570280387649, 0.010370756588259445, -0.10135695173924034, -0.0571243211724297, 0.0735135980410732, -0.09126009102502301, 0.03200220963191981, -0.10491025427083218, 0.017512786509466933, -0.07140089078111182, -0.1197188932444436, 0.02553697194882283, -0.10466877548185363, -0.08298588359014757, -0.062384001449161314, -0.11335520120523923, 0.014046730660867562, -0.12268938320794566, 0.0428496255632053, -0.10154425484967114, -0.02726607188151616, 0.09440566779347292, -0.06884493643162179, 0.13017175108937773, -0.014760862912126138, 0.13661849750900568, -0.04958033844936156, -0.11620359306551206, 0.10314872770695899, -0.07344181046725802, 0.13445391162848241, -0.011170334095961859, -0.10128596287950867, -0.05785999905109061, -0.012711421645860718, -0.056817301305886844, -0.025548966950539837, -0.03541512722994631, -0.04515186156424761, 0.01976656014915581, -0.06070104328634317, 0.00901067755817256, 0.05825250037059815, 0.02728496123502596, -0.04584243465486111, -0.04761306123327035, -0.021657126272812355, 0.058234377943392646, 0.009866872050308773, -0.05806400674475292, -0.03711014022542239, 0.0469040305757301, 0.057922693975939736, 0.02275058087025428, 0.04976609568195131, -0.03868145101075236, 0.036519683759920596, -0.019075826561062884, 0.1550500068834492, -0.049972612017508966, -0.14808398174952742, 0.04955061101980264, 0.13871810468708717, -0.11001301483046638, 0.06589701570812273, -0.11484848581392301, 0.013305377568561365, 0.12275850576117386, 0.0677254461711756, -0.09073063346642267, -0.11790217119873195, 0.06922794158152239, 0.14483623473181134, -0.017036306731443802, 0.1268338327480023, -0.0400709818316554, -0.07756540710117885, 0.16617928511169738, -0.04984449977876664, 0.13269903298045416, 0.13787910104960088, 0.05604027871071864, 0.16547679888463815, -0.013204833444019612, -0.16244656591916318, 0.08389497112653886, 0.1230051924796183, 0.13803579226939222, -0.053660020992442894, -0.17166487694374769, 0.021975889778456832, 0.15911816921145894, -0.10146341651686891, -0.12949285281992776, -0.1514384642093559, 0.08727969421672163, 0.18744878770249673, -0.017976075250765187, -0.11271969558681147, -0.07714094566366896, -0.011042347316505616, 0.06274732112492097, -0.061113385632511646, -0.022685947436918576, -0.07425624734529475, 0.005072493585584521, 0.07538457110547558, 0.0370801115466629, 0.05799273540275867, -0.06128594383047274, -0.026602340529132622, -0.07608362166911087, -0.014095626222873386, 0.06837230967458435, 0.054423581207211025, 0.055538975395116784, -0.07148960399309226, -0.04349195791478293, -0.07703895098444183, -0.14595529503594581, 1.127605196970985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.09607906673031638, -0.0006397799491955252, -0.09631416439099376, 0.1379032247436852, 0.09442979963889715, -0.00803443967412965, -0.1067638695127413, -0.1395828216646452, 0.09254274099569357, -0.010646070921360638, 0.10996178881982695, -0.10060513631657066, -0.007622555637815745, -0.050841686875557755, 0.057204320367466394, -0.01701862860810518, 0.021899498964963977, -0.0494619318162103, 0.05319509260019494, 0.014475162245920999, -0.03237847316285938, -0.05608030183353144, 0.054528049984110254, -0.01909243592201158, -0.027723642659540502, -0.05636654629976185, -0.050246140333848666, 0.009268248937578338, 0.03896396908471993, -0.06247914030154335, 0.05519522203260033, -0.012760731769416209, 0.04046251040163406, -0.04841697258862766, 0.04498976276364562, 0.04352447863325049, -0.013898205607898778, 0.10250636980398455, 0.15794484565160252, 0.12303621174380708, 0.069619098106256, -0.05943166532392659, -0.1479206837640125, 0.1127017532976732, 0.04611774069168879, 0.04989949453703482, -0.1266739726870941, 0.10359508368727693, -0.015313242543320508, -0.07910023175351226, 0.14765429485851247, -0.1261844575988017, 0.04106876363104636, -0.055084174115779386, -0.12178231025005745, -0.0792890413062437, 0.09177277215536472, 0.16257478874338044, -0.12525619413316316, -0.008293395420800598, -0.12537555551163018, 0.16562725998022687, 0.1096004639952418, -0.017882921071894164, -0.1344941805380604, -0.16343181805539111, 0.09936463148698829, 0.02817462318533967, -0.13633050023296459, -0.16897167910433697, -0.09645261580110351, 0.03850754582831262, 0.15523590691775765, -0.17963736181733483, 0.11951082851194307, 0.01592607117616366, 0.15393717646032604, 0.11133396396686465, 0.030756208552730487, -0.07204499275930239, 0.06130924030341964, -0.004042636091068686, -0.05514756307764607, 0.0735353279666694, 0.05233438658574884, -0.006072641626708765, 0.060619943963161824, 0.07457966983161529, 0.048353879775842795, -0.009004108151426651, 0.06079599766789656, -0.07410849871425454, 0.040713461875736656, 0.02162194057186822, 0.07370336198972591, 0.08355998887579082, 0.060011887665387044, 0.03474968853177293, 0.11024739722685425, -0.0409231687218072, 1.0654651203919774, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0905538524524895, 0.07028889091658724, 0.04374981899044017, -0.017921915536305236, 0.008438017323983466, 0.03408185636688935, 0.05931002734779045, 0.08238749500106116, -0.10859167159432663, -0.12563200784396536, 0.1360595976792148, -0.10081203652799937, 0.04977083167281405, 0.056257212663014346, -0.055532938006131335, 0.046804146750019524, 0.04925766785627679, -0.05152535390395249, 0.05993227670445496, 0.056091478916498565, 0.05016922898028938, 0.03419049390553861, -0.024257861667149855, 0.013298841712186489, -0.00224190895787642, 0.008926888437224861, 0.019856500792771063, -0.027589681010633884, 0.03758338471391062, -0.04636218919909572, 0.0610831771603697, -0.06755146798746413, -0.06925823347372533, 0.0477715597960261, -0.008575123119374247, 0.0006033815297066647, -0.007737714773907994, -0.03034691597763747, -0.05975981737274744, -0.09652678727958168, -0.1517619843008308, -0.1592771674731587, -0.16047201985526596, 0.11811345781263444, 0.11137376165155942, -0.09969005002058695, 0.1028487027115725, -0.08648535619872791, 0.06692414013458295, -0.03383965959681709, 0.004109764030997671, 0.024516070248062877, -0.06285622190937157, -0.08574925426043936, -0.10267892799017155, -0.08215634423937851, -0.07110730013914743, -0.09815099552528031, 0.1151611243135766, -0.1260220014699397, -0.14413862510896466, 0.15793497809563067, 0.16989665736277612, 0.1702581521376329, 0.1644723794399064, 0.1441542890800677, -0.12677701942021344, 0.10429098807402681, -0.06924327430926001, -0.0376798115903368, -0.0051032109625596, 0.026702687726047218, 0.0602378944453744, -0.09198840278801028, 0.14503330822540603, -0.17152028641693684, -0.1867412931544722, -0.11244113152978769, 0.045420041411431945, -0.056201138068325676, 0.058180157414390477, 0.055406990345399594, 0.06333637574425872, -0.07037118364466895, -0.07893367427823401, -0.07844043924733964, 0.07511891162560058, 0.06294263539124692, 0.054323717622341866, 0.04338702576787407, -0.03043382934220046, 0.016512845450767123, -0.002070010439671161, -0.012028666162351919, -0.027415979842031018, -0.04218159767230567, -0.07250707077259154, 0.11588399151478739, 0.20819640870103914, 0.06961282045817584, -0.034600659782954894, 1.127424006170046, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0993777718362382, -0.11919824960843352, 0.017593745950685708, -0.13358466327634577, -0.0813581534427766, 0.0731357571642036, 0.138415952332115, 0.030002925729482634, 0.1213264050165982, 0.10943892922472052, 0.04379834841301098, -0.10181424412757094, 0.06021096334847984, 0.0026590514258609007, 0.05207558116306893, -0.04183447093131903, 0.008940661924845857, -0.051018095250948234, 0.03651317431688171, -0.03227418234774471, -0.059381994112715254, -0.00032249633381610824, -0.05582433849011808, 0.04181641497776069, 0.023724755650489596, 0.0584085659807274, 0.019412755181515452, 0.04352265371282049, -0.0586712264933809, 0.00046068510073247115, 0.06450621942520324, -0.038978474168167423, 0.03877763941015226, -0.04768409333764537, -0.035987723639197104, -0.04297275676677399, -0.0012100871978350896, -0.1396488326396012, -0.11728935231919961, 0.06898900668541755, 0.15534564260603115, 0.005453235493047262, -0.14586370779135374, 0.08044502749356089, -0.054325599551331434, 0.12167166268892239, -0.0564723586737122, -0.08713238508060374, 0.12122190665131512, 0.014774964604809183, -0.1455432291473962, 0.09304770156986222, 0.08155541726278696, 0.11907172017722058, 0.0020537806479740545, -0.08626226473480875, -0.1648800262684631, -0.07367304877223362, -0.1035914285456421, 0.16171446133495584, 0.026588372498688465, 0.14282056343377766, 0.13513312775302927, -0.04500178088151701, -0.16928773340664846, -0.07221168992634994, -0.11207199036281648, 0.15400636482231467, 0.015481468370089069, 0.16471566366887624, 0.10400433969747482, -0.0890378017680376, -0.18270097107404631, 0.054425620420703695, 0.163587974404128, -0.13305026649269813, 0.08735674954583915, 0.11620478256635887, -0.07671557164872923, 0.019954723442132845, 0.05400263638939009, 0.07016981221219841, 0.00977028666581461, 0.06481732951273443, 0.06013948207539709, -0.024295292851530245, 0.07846564835983391, 0.027481623516261485, -0.055276031670028106, -0.0674689284736357, -0.00831473210197501, 0.07314317498483087, -0.043716684539353665, -0.04432104641427753, -0.08474044920050781, -0.025698548928583597, 0.08108406897232026, -0.029510583702821273, 0.1653002658595429, -0.20603985819289417, -0.160324159562244, 0.08761223433543586, 1.1435846569120123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.08660225711088052, 0.13362447533599256, -0.07703565092756558, 0.04841641827751041, -0.13294026481214535, 0.10561841371367743, 0.014610801477509148, -0.12213513032441473, -0.13047949297272174, 0.04125983899771235, -0.0856727206053866, -0.10424031716682888, 0.0139459230774257, -0.058302043178297853, -0.04664472580258074, 0.005203638554402824, -0.04347930062867167, -0.04852346215462313, -0.0052147152037352144, -0.046048681832746526, 0.05824802065809597, -0.03375120043930724, 0.020917361937385137, 0.058136626471116254, 0.045027761433704794, 0.004009970905813625, -0.0500167385210066, -0.05587362359585893, -0.0065836342689214195, 0.046914507007277215, 0.06501560706412016, 0.03827052066410675, 0.024339377974801252, 0.04838867719526045, 0.04644114896449419, -0.036912155764448354, 0.0050395637258673995, -0.1375372610912989, 0.1447026571523793, -0.04653646420036383, -0.07699804131366643, 0.15992221089107422, -0.10561743634850713, 0.012922438860857931, -0.10697020553473666, -0.11052082089004031, -0.004067952951675578, 0.10226343589693256, 0.12709139049835, 0.06462615118449787, -0.07542589930086586, -0.148033746275509, -0.09557228924836791, -0.001571253641567241, 0.10520942831474935, -0.09323180411476496, -0.09879234129935595, 0.16679902095593707, 0.0940351118487801, -0.06528363633366589, 0.16145409546548448, 0.1248129282244512, 0.02070326633366576, -0.15048634259212681, 0.1476005523227519, -0.026983486418833635, 0.11583765694143025, 0.16836513715073656, 0.10601804227166192, 0.04563256612345655, -0.15927445387008554, 0.14313524729769522, 0.019872613974570567, 0.16331103466026453, 0.17636230642596773, 0.09586792683139458, 0.06422412807374378, -0.12646357053878426, 0.03192384838454029, 0.07528549434224409, 0.05034884151843444, 0.025395756942600923, -0.06993621246965383, -0.059316920861863236, -0.004424583439831289, 0.06718161141472341, 0.06977196919988761, -0.019043026763460518, -0.04715704531591171, 0.07748246534844794, 0.05030016077797682, -0.014608837180076304, -0.06815199515995854, -0.07288131417027131, -0.003008936035056798, 0.07473550535712345, -0.08774164991325309, -0.058955183757909, 0.11672859247143341, 0.13025486628608032, 0.14312846832407944, 0.14674069087266578, 0.04064116329689895, 1.0417886894062054, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.09968678238709085, -0.10595557287931807, 0.11850822630818204, 0.12446466653993504, -0.129962360360606, 0.13401222953996736, -0.13224846687755545, 0.12869135600170623, 0.12703506378690663, -0.13470720051812687, -0.14097333540591012, -0.11063262312538936, -0.04360252797482346, 0.043069931423069786, 0.03673080912432519, 0.03754587690273003, -0.042921114668427816, -0.05134135235467348, -0.04800043391453613, 0.04638125614853458, -0.04475358987905311, 0.053490375722654276, 0.056105456036714546, 0.05791170092555135, 0.05786841814621762, -0.059830746656934615, 0.06219691067847126, 0.06692107957698776, 0.06235882122868002, 0.05896870225593798, 0.05775371962558961, 0.06484641994804784, -0.0683585414152992, -0.053354069653317064, -0.014723763041504204, 0.01021947213827963, 0.0038066071589958695, 0.010755782477316811, -0.02198600756312275, 0.03998840335380543, -0.0398499622179958, 0.0419241129918631, -0.04283450255802165, -0.05985189316060488, 0.06626886973579546, 0.0712816370486799, 0.06663151558944133, 0.07644477655714291, 0.08925305209124115, 0.11186682065754182, 0.10622785805097516, 0.10095352224225644, 0.09819424610020244, -0.11588272998490025, 0.12547454544697098, -0.10487481622855169, 0.05126300375396607, -0.05543565799150261, -0.05790285956292077, -0.0680699378770735, 0.0835690317574099, 0.10043872805578212, -0.10896665680705575, 0.11087848472579326, -0.1061639201089738, 0.10662939562423379, 0.10627303042529856, 0.11215225266494712, 0.13730827528158332, -0.16205161566088735, 0.19284970972489285, -0.2259298567369218, 0.2117143886740781, 0.17165396840662392, 0.12394129283585925, 0.11986632902367098, -0.1341916711426844, 0.13465764092939042, 0.03420628968062802, 0.03447258165507018, 0.031499217615090634, -0.0345475592428995, 0.043432066510283224, 0.05496884932697892, -0.05837030214337467, 0.05726874216934473, 0.05185465721553926, -0.05094853425517328, 0.049547606292989356, -0.05194706455750071, -0.060309792797196615, -0.0749125567572032, -0.09629959824882847, -0.1293875617841423, 0.12214866432581158, -0.08753291038987968, 0.038799607914886555, 0.015524711013098439, -0.10660025712576243, -0.0004846983333783106, -0.11998690201191638, -0.2021237280381915, 0.09008687554742296, 0.04025455179945176, 1.1027085424020582, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08960959043857013, 0.04544918779527297, -0.1368520932665362, -0.08340659931732866, -0.05362962176060431, 0.13558645582826434, -0.0766724491538423, -0.05967302536174604, -0.14113914064815916, 0.08919463688988508, -0.055380511109057215, -0.10578897794885303, -0.049134943089390266, 0.006967126399103607, -0.03796957968813215, -0.06291936589607228, 0.02814536484726285, -0.036515004438485044, -0.05188879184316611, 0.018243678551226238, 0.03286478654327104, -0.06018526049201599, -0.019699737017340922, 0.04100036043028687, 0.05943098969340608, -0.02028637456597884, -0.03943048070281671, -0.060102896859000526, -0.011944699060111297, 0.04681528226581428, 0.06212234635923837, 0.024890789922984706, 0.040989301797521256, 0.04815029445378276, -0.04053296466105399, 0.05790364011457351, 0.009982235879493536, 0.15357509344524042, -0.14178825307072668, -0.003784299928726612, 0.10867823296987035, -0.1264436018707735, 0.01657624341012586, -0.11924911442826239, 0.10550369501640268, -0.01627553056063977, -0.12286121669759814, -0.12958081810498032, -0.009061347240003929, 0.11119932917354095, 0.09665275252205596, -0.012711941324247045, -0.12650973371830082, 0.12584705975250776, 0.012331238446872037, -0.1018012058592865, 0.14606604395034886, -0.10516348267857033, 0.03602794977839944, 0.16481549737587634, -0.13118118998915249, 0.0332362051700881, -0.15630822389609061, 0.1173923673642189, 0.044575925466535576, -0.16832917651695534, -0.11961604352056447, 0.0448759475763165, 0.17191807403604806, -0.12237106107626039, -0.04532197462739266, 0.16300085076201443, -0.08832564104424963, 0.08249455186022853, 0.18913472456424452, 0.15102967335097625, 0.030916653025500868, -0.1254208025856003, -0.0614426850434093, -0.03165996494627192, 0.025542439086670123, -0.07964396359376284, 0.05780606094912527, -0.021320696014709862, 0.07040532607280706, -0.04677026467586173, 0.026282153677114558, -0.07828477932482014, 0.0491835231657068, 0.027037447845445907, 0.0787652693006943, 0.0574781318281883, -0.01738880323573903, -0.07384749569580737, 0.03594789951653751, 0.04342949317633132, -0.09048785778315986, -0.07103847534287973, 0.06880786592619931, -0.09533903520157042, -0.1332569857704961, 0.17643162392771727, 0.20672108796249072, -0.01937161255804869, -0.21751147339565907, 1.087134742410274, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10669636560442029, 0.028293766487492364, 0.1304336991262553, -0.09923769797672774, 0.038439441347119366, 0.13312590423716725, 0.08767137167912854, -0.05160981876157236, 0.14282390973495865, 0.07286990448161307, 0.0796057336480558, -0.10448227010299399, -0.009067879315022405, -0.050217488887809594, 0.03452923164295701, 0.03618120093856374, 0.0632122831542914, -0.022073496015484972, -0.03280985900927162, -0.05088831067242798, -0.014210731899538271, 0.04304480811092166, -0.05912770768268048, 0.011451290857117862, 0.048452217041754855, 0.05443568796022082, 0.001570395101880724, 0.0508785737947475, -0.055702490217594824, 0.0012152652658927445, 0.06032396550685533, -0.047580567927072145, 0.01918339346147805, -0.04639524896567076, 0.05946788218880359, 0.0367882324426252, 0.018430950337166244, 0.14694837101236474, 0.1434753493574918, -0.026571152105930005, -0.1379851983233046, -0.07062760834610476, 0.06878334629258513, -0.1283722917489272, -0.08394165360965494, -0.051795879934220475, 0.14421608267631036, -0.05635793814836776, -0.09430898609258255, 0.12095225105252586, -0.04178012983410326, -0.07787051234676844, 0.13971567486632425, 0.036320619056761476, -0.11693261102595313, -0.10189271384511732, 0.10376153478407854, 0.1414462185857734, -0.024895625243205897, -0.14113446471868954, -0.15382850781244886, 0.00038147008887643883, -0.1473547029736459, -0.13627967363575916, 0.019563785924608633, 0.1577771397204805, -0.13238999797192502, -0.038959027165175096, 0.16511753157772247, 0.122852592730024, -0.0519410058683496, -0.16110360621040165, -0.11605755700234473, -0.048775671429328434, 0.1933575198811942, -0.09476113610040912, 0.12827183330774833, 0.12163944591438881, 0.03015404902448148, -0.06002325656831474, 0.022612694345271175, -0.061311982499516436, -0.07609451856606349, 0.00809410965133497, -0.06136258895748164, -0.06392974507391493, -0.0010479849158310213, -0.0680259103438107, -0.06585779534341982, 0.009301508914361805, -0.07438027155109297, 0.05733528072125969, 0.022650077936908552, -0.07144172758894261, -0.05729476017065206, 0.013646236918911878, 0.09116357213468947, -0.014898391474881978, -0.07367027840261532, 0.1053784778467327, -0.049403311879172074, 0.08274014920732943, -0.16865594129372183, 0.12793771000365076, -0.07397337259242544, -0.11518689928606493, 1.0926081043833527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.08489801169200274, -0.09453126361117561, -0.0981636467835744, 0.10637935490412122, 0.11386355319849113, 0.11830205888041508, 0.12373543738533734, 0.12831473999192108, -0.1400238938603425, -0.14518654897104172, 0.1464266782155379, -0.10429268062545843, 0.03948928948174997, 0.035979377174707707, -0.02956991918202853, 0.017646638520898424, 0.012085653480908575, -0.0064899262303871625, 0.002531626491904805, -0.002248364798473468, -0.0069109234274289215, -0.010734160137558253, 0.0162700280045358, -0.021638472148771983, 0.02757287384534838, 0.03239797953151838, 0.037053980972811894, -0.03741341287254441, 0.04133298672381759, -0.0452456376206051, 0.055873194371994124, -0.06084421098077535, -0.06320631128711446, 0.04546075904386411, -0.022073670282638732, -0.026909005930311713, 0.025993107102494938, 0.023701322224369242, 0.03940972793747626, 0.06069216791412339, 0.09553649787142275, 0.10308683452048344, 0.10929828962451323, -0.0899265428120992, -0.0988942012823056, 0.10640662145041306, -0.13349304321433225, 0.13846050854380046, -0.14271303816114178, 0.11898624500006205, -0.11780904655257395, 0.11787054100689687, -0.14494501836967574, -0.15208032938998417, -0.15023734950173426, -0.10383466892618598, -0.03817143892099717, -0.02475777249859111, 0.010763171378402686, 0.006002001692322036, 0.02180289634564636, -0.03763690955587239, -0.053566469978339984, -0.06754695772305143, -0.08097611430141516, -0.09007622293245923, 0.10345665958431638, -0.11592857278893072, 0.11803741695870204, 0.12885319434038706, 0.13868799830606615, 0.13542928628543618, 0.1425910104263841, -0.14991470828337433, 0.18884753398621054, -0.20271327445255719, -0.20767511015252094, -0.12139423130980512, 0.030055127614251446, -0.02497109743817356, 0.017849147571998056, 0.006795545086329286, -0.0006826296969377555, 0.008375024356136178, 0.015846119058653213, 0.022210519644885053, -0.028370375477613532, -0.03238237172563756, -0.03898992614762259, -0.045220885847853325, 0.050739889119926475, -0.05603182548375264, 0.060973929337706886, -0.05588313937442083, -0.05932512551765778, -0.06344491614279091, -0.08802304148323485, 0.12851458010289935, 0.14092819104972193, 0.03178795175400798, 0.07240181581890011, -0.10462062147978772, -0.09349533064738251, 0.15581009158033163, -0.1500726806726297, 0.2243104702136285, 0.01726194413044993, 1.0374363134297462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.10974338447910192, 0.13295905100398261, 0.04650178679823779, 0.0735684274167566, 0.13676317839928998, 0.09276214414121352, -0.021580957388786355, -0.11904840667801264, 0.13292770370092408, 0.04127724272283595, 0.08583653323395352, -0.10490401067046429, 0.05078778659415366, 0.019412202531446585, 0.02364950726860892, -0.05836481313112284, -0.055650722431455295, 0.009429856167295145, 0.03659246960488681, 0.05159872103044036, 0.026851393219365128, -0.025331696878933864, 0.06000158145683187, -0.048477779246703975, 0.001052102050964168, -0.04704483661182773, -0.05909737570927036, 0.020703451749622275, 0.0340304841939043, -0.06174110031902978, 0.049170254475251605, 0.0009699814365113418, 0.05312379985593755, -0.04505957053111517, -0.036328104384978924, -0.05990985238445518, 0.032238803889762566, -0.11796909778391745, -0.17027178042901023, -0.0941261149308004, -0.0036412735880485356, 0.10557231650513886, 0.1313377381082767, -0.018686944618884142, 0.09122785832309437, -0.13139780725490335, 0.09364511622090439, 0.02983788366322465, -0.1316821555941512, 0.10590530553165123, -0.01701682175346223, -0.08095990991632553, 0.14304347835122277, 0.07713006205111149, -0.05821612095828195, -0.1072401837282036, -0.14285704962698872, -0.11899214516962944, 0.003644390097945432, 0.13367910643365344, 0.16881935421678687, -0.07406564193569967, 0.07014574951499099, 0.1613103100258161, 0.13001882795469208, -0.010479087432299555, 0.14257364326436664, -0.16376308716705215, 0.04229000290127091, -0.10755918055560122, -0.1727663429758246, -0.09263205702610776, 0.0502088068927064, -0.15511099160722497, 0.175124552813706, -0.04339300497899011, 0.13978405563970148, 0.12381542813638151, -0.060462152149271, 0.036881212336875344, 0.012672739334757863, 0.06932738302898502, 0.07661633253374762, -0.024680075361986208, 0.03875658515933275, 0.07257803562137889, -0.05149004045145108, 0.01547992132988816, 0.07071534226179861, 0.0705605113619892, -0.013913956764880423, -0.053486393261154466, 0.07865994424831846, -0.03178466699041274, 0.03274667034296905, 0.07322396887999921, 0.0800046558036851, 0.01830721625813786, 0.05135123673893544, -0.12489915673173371, 0.1401845672303452, 0.16646213837747742, -0.08309434416786861, 0.007957319502156012, 0.19077120529871383, 0.12940235779526607, -0.2264254752478029, -0.14898624633500496, 1.127938095922853, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08073888979143357, -0.13260363975831505, 0.015283008500568181, -0.12371259016329791, 0.09691673898407435, 0.05853187278736983, -0.13503069070278612, 0.02993404810737876, -0.12156033835929454, 0.11350193563851951, -0.0487273463732906, -0.1066191052099136, 0.01422072799498748, -0.05247397575189243, -0.01701030811478125, 0.055429580194083845, -0.04727225339632748, 0.02476650501472327, 0.05241271927701125, -0.014022868864828855, -0.042154899627030444, 0.052514838861896875, -0.012876549149834868, -0.0612456570431739, -0.025861092395000108, -0.04300696487083276, 0.05484193551414334, -0.002210468416869392, -0.05923255389100002, -0.03720822762502233, 0.04026943236795489, 0.06170088360033959, 0.002094428132184837, 0.04528714643409941, 0.06020847485479716, -0.024226456222529683, 0.03630888127581433, -0.16695308391149694, 0.07974291674120865, 0.12573651921614892, -0.09118175717235041, -0.06697724177982027, 0.1305673728911082, 0.05938036035921676, 0.09182562100848762, 0.12011451007535984, -0.03231721300144816, -0.14460621280728822, -0.0674433237180862, 0.0823177716960572, 0.10900952169807994, -0.008635541583944719, -0.1333997980679836, 0.09528988949782256, 0.0819016178314109, -0.1130459107921474, -0.10891498310443272, 0.13354695591039936, -0.016171587340714392, -0.16842048208414226, 0.09667295800205934, -0.10406949259795588, 0.1543577759761723, 0.00710569698694052, -0.1588337621302294, 0.10778371999541284, -0.08906684333722985, -0.17186053182976563, -0.049236491922331, -0.13896680262743782, 0.1441422518189847, 0.033551344493993634, -0.1627284430113794, -0.06063369422496014, 0.15232995138872363, 0.181091068111167, 0.01998822645695382, -0.13069124976563606, 0.031036603565344916, 0.0595304471120969, 0.008232621383625346, 0.07547112738661427, -0.05574063165599261, 0.0383265697769176, -0.07083198543949952, 0.006252740047554832, -0.06678240934397661, 0.05788148203819651, 0.029707717360259796, -0.08000141755352548, -0.029747247081078516, 0.0579974599119207, 0.07157144525580288, 0.001263297051218804, 0.07001609375204157, -0.036455618543260515, -0.06719145223707611, -0.08054312764964305, 0.06267872834962462, -0.0639817566915269, -0.16001835480936402, -0.24617253190301566, -0.03746758113863653, 0.10566831246224725, 0.08207795918544519, -0.0783044985972046, 0.22279882194449113, 0.2615119686330629, 0.05122495469563069, 1.0617530678008231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10088525493479429, 0.0784817099192573, -0.056864038962711985, -0.029054844937797877, -0.00025208486187468715, 0.029254588383345402, -0.05578280379376728, 0.07860643665074303, 0.09957974594536988, -0.12143718435816275, -0.13615267498508143, -0.10800330904940886, -0.03375882639285832, 0.02262622077674213, 0.00853878113405201, -0.009206598919564709, 0.024246319973757327, 0.04037033898369158, 0.04419295229688355, -0.04790262965683907, 0.04905312957012272, -0.05908726594656174, -0.059311857827143225, -0.055615689733693525, -0.04724097002084884, 0.038099295948687044, -0.027174224712667967, -0.016428809182530146, -0.0018529155414557298, 0.012447372842428861, 0.028095488672844903, 0.04417841855079884, -0.05616537450529598, -0.04827984234213793, -0.028288265506327164, 0.037668165230024246, 0.03304391019032316, -0.06665024022358569, 0.11026440377478551, -0.17931288425404557, 0.16186360148571302, -0.14222381011986004, 0.11242354826379608, 0.11446158821935158, -0.09346155185384075, -0.06538752468846243, -0.023946545509074164, 0.01254528270640095, 0.049339223066494665, 0.08720544591969161, 0.10002863525112429, 0.10739457456855173, 0.11326602181036644, -0.13553601798432385, 0.1414279430825688, -0.10921745209527775, 0.011235168746990425, 0.030342144372107853, 0.06700601619392585, 0.11425962309616398, -0.1618020630772735, -0.20367285606202185, 0.21815567433042568, -0.2082641670627889, 0.17534004084157684, -0.1410198438406862, -0.09848224487903413, -0.056124715221085614, -0.02016211887287835, -0.016515768940728284, 0.05261410673136267, -0.08555242960406495, 0.0965384907791462, 0.09080202534615574, 0.07843363878018585, 0.0871882010147157, -0.10567125615317403, 0.10689384239224808, 0.0114497434999754, -0.006274273518785882, -0.02089308208593955, 0.044824958357721295, -0.0701468778358883, -0.09631860365246071, 0.10302930612923511, -0.09660334508486418, -0.07803560083290421, 0.061591828254942624, -0.041577150105047984, 0.02232476309388559, 0.004367023930152392, -0.013310443334784065, -0.03143461230993897, -0.05124036725474432, 0.05245219859693474, -0.03929724901708299, 0.01803119210590948, 0.007394843487459912, 0.04749322220160919, 0.17735702902155714, 0.15721976460753265, 0.06624675866975681, 0.08975790163270322, 0.007059474295169893, 0.044931178226931795, -0.1367375953542404, -0.16791554080121704, -0.18598968453795173, 0.06266890728282815, 0.0598016573248723, 1.0605925485667482, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.08642102676572434, -0.017012434869425688, 0.1113325820872033, 0.13753848273342248, -0.08662056402152613, -0.012457509975959846, 0.10511509018757662, -0.13769194230489565, -0.09388968271942416, 0.008428983185271717, -0.08432262728705696, -0.09630259650045102, -0.035560961725089484, 0.01290378324410028, -0.015560794992899231, -0.048173541200724396, 0.05384870317571988, 0.03167640950359034, -0.01092494671252206, 0.05155453486184525, -0.06288837602817662, 0.052769178764507096, 0.008417155965097574, -0.04096632260600633, -0.0663589200953387, 0.05697885929319619, -0.015961403033464217, 0.03128844826459821, 0.05901375271889992, 0.05434243436661356, 0.018138367349894022, -0.02014605370131334, 0.04806459533195073, 0.03648420273170938, -0.05112295861224274, 0.0868833379027066, 0.05294364623614148, 0.04616698263627485, -0.08311137554143468, 0.09118913120443262, -0.021821320564938705, -0.06987192543496198, 0.11849935111334212, 0.14490301094562064, -0.06727225603700888, 0.050009969388056026, 0.13540662869667536, 0.17205390945153412, 0.11805546367685946, 0.019020503781082304, -0.10380932907363707, -0.16487127762100218, -0.1358644107022287, 0.0694973821471079, 0.04704429465767927, -0.1027669245608646, 0.1451715092012467, -0.16929338285802062, -0.09784321964324906, 0.03310850721436402, -0.13665084757343274, -0.16599264247044007, 0.09187534059140233, 0.03973087902008626, -0.14716093152799212, 0.18191454005020424, 0.11265627210539708, -0.014728791019091586, -0.13700945491416455, 0.18030602976391497, -0.12909136543105437, 0.01312003141659584, 0.11422841553194583, 0.16503501419935293, 0.11936275394847845, 0.05045546336971291, 0.047992193394497534, -0.09004946725999241, -0.05648964394193224, -0.061730226803422196, -0.02996652300369216, -0.02850622424744047, 0.06500571919572172, 0.06866867395278718, -0.02720371644820102, -0.03329356032770431, -0.07290599998418688, 0.0793882713171863, -0.04015073933690071, -0.019417380316836534, -0.07031340991665141, -0.08813279836496804, -0.06371013954321864, -0.014524887566664927, -0.046154050466309465, 0.07131462968293084, -0.052025818832331726, -0.028416047407056326, -0.06382308083405773, -0.15835549922924808, -0.13680381252875218, 0.19645757808095465, 0.02222268023619399, 0.0715308692406611, -0.12102669670022742, 0.2675683462137043, 0.10089197049536967, 0.08562603445377859, -0.05679248465446113, 0.039566916566620106, 0.031871316998892264, 1.0345308379480909, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11847162824764843, -0.05828374709226192, -0.13701060807157106, 0.002471056039732949, -0.13555454744370146, -0.05403301137343583, 0.11440794940847646, 0.0990139962952272, 0.0775064778921552, 0.11815269532101257, 0.03394576797931422, -0.09435476802881573, -0.0035896755464080686, -0.039275765461876395, 0.011455418384311912, 0.050702164353187494, 0.031795084139018985, 0.041072890439374454, -0.05042810215533245, 0.030457309743200267, 0.061133770295612476, -0.019243714584413648, 0.06801138018436972, -0.007422327468705564, -0.06520010464344764, -0.03057892520601277, 0.05372059216255927, -0.045604063537972306, -0.03314636166849214, 0.05725782097473253, 0.009139518532736842, -0.051818038851263855, -0.011131320306937097, -0.034292937042592384, 0.09063712666085048, 0.02129826051470555, 0.06398031832424746, 0.08163844957096432, 0.01470638246464153, -0.08858741820657885, -0.07024702583047085, 0.08911814785275789, 0.10261892166007183, 0.08761057896933985, 0.1456802052128578, 0.030864139826516916, -0.1676963241487032, 0.004501775813057264, 0.16824706244238619, -0.0407203269707233, -0.1554480264339199, 0.09997183535991092, 0.12696475370137916, 0.10775581593399004, -0.09366776082161944, -0.10245157364170582, 0.15066103184726168, 0.10188552719549515, 0.10471150489924974, -0.15483426353310503, 0.03399579727698201, -0.1687655785131955, -0.03961766365984047, 0.15600276659479037, 0.10404772244578295, -0.12491290591685564, 0.15644895853670382, 0.06887078065483561, -0.17617592115286745, -0.008733013244715626, 0.17117000702410848, 0.06370774596063013, -0.1397461104088402, 0.12513719106897803, 0.09576065966295429, -0.12504921102315922, 0.06550363565691224, 0.08745186698252423, 0.05297793969980387, -0.041590095112194365, -0.03207059970918663, -0.06935083356528017, -0.0024153114181206764, -0.07033622653462614, -0.03468543450592934, 0.06045937306983141, -0.0598815163707842, 0.04462438179967896, 0.07874007892844129, -0.01695885166753425, 0.08481056532185621, -0.012693278983998513, -0.08000881372308954, 0.03081039687341103, -0.060191682574616386, -0.05976404953790372, 0.03828281470084912, -0.036177443335543825, -0.17841482125702068, -0.024394145357316287, 0.09402509986750489, -0.20702562688124707, -0.012315503220800255, 0.028334349344141942, -0.040939394056968455, 0.06285523357860275, -0.005312299857024624, 0.059902803598796094, -0.19654226696898552, 0.08666617930633468, 0.0026721929187353086, -0.019529722088008083, 1.026745614234824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08008795223502603, 0.11859723117139852, 0.13396935305395435, -0.1381317563081483, -0.12339004087434396, -0.0896723862473061, -0.04463164694069886, 0.006367613981018632, -0.059335420528772886, -0.09893244122783303, 0.12390599010554139, -0.09378948604788524, 0.0316637922976131, 0.02064445038439048, -0.006501183525087116, -0.01472271458664847, -0.03338890296503072, 0.04930442218088314, -0.06479981132710583, -0.06093316761613439, -0.04864242086619851, -0.02097397069723953, -0.0041274517449850934, 0.02876817346857285, -0.05048237265790295, -0.06354750520861255, -0.06797020652728154, 0.05614270297228441, -0.04148174614177894, 0.021861300389401938, -6.005437382341529E-05, -0.01875898478699626, -0.035285543541635774, 0.032973472593009846, -0.04465015379355178, -0.06984868885139038, 0.0703327943840603, 0.05054421352672096, 0.07150456551517874, 0.09063241328112435, 0.12286391904228613, 0.10175290112195215, 0.06738440585068763, -0.0027627929529627764, 0.05490623793862118, -0.1051243080025892, 0.16192412187423563, -0.17010645296998472, 0.15487714385376294, -0.09136354569778819, 0.029370553143201125, 0.0336448272078088, -0.11008866124098533, -0.14721798817992904, -0.15879605849918868, -0.10437844500526886, 0.011990476871396162, 0.07276412449783172, -0.11645997769216052, 0.14511708462760914, 0.16579346280654955, -0.16443361004009233, -0.14553509888337898, -0.10154635293340829, -0.043663685276069855, 0.02432812671759718, -0.08987910205266507, 0.14322872034587403, -0.16485001001889255, -0.1766112676447622, -0.16390287014369234, -0.11616685226388909, -0.06202649400010603, 0.0004989525487407165, 0.07200008708974696, -0.1175613099272908, -0.14524383738925895, -0.08733981231696035, 0.0017106952588871972, 0.021199691212367488, -0.03649044915859948, -0.049799612067345594, -0.06456466654848697, 0.07179260354541118, 0.07369367475933672, 0.0594587516091295, -0.03717358323025362, -0.005571332402593814, 0.025808750102123388, 0.05381944389892291, -0.07384534189264805, 0.08362451409890734, -0.0817309964492048, 0.05648319141845879, 0.03311427346138982, 0.006431739786873342, -0.02685184829681659, 0.06794492304349864, -0.004927651306302582, 0.13010636868248604, -0.12651037058833048, -0.022233401271198078, 0.020106753111084345, -0.03002970693752802, 0.027161462327972292, -0.23191816295498754, 0.06865832501487384, -0.02593327020969992, 0.00080005025507442, 0.09034499005421565, -0.0997530750054757, 0.05705798459397456, -0.02385256231906191, 1.0293307814975132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.12132815833665503, -0.1441254908480939, -0.10444070419988742, 0.030755872677213334, -0.054233919474572206, -0.11712552045208315, -0.1383120351608025, -0.10750198420301647, 0.039398350830876755, -0.04032473454469507, 0.10617736975214445, -0.0939723664493637, 0.03704509566484991, 0.021623119625397216, 0.0012960145134905926, -0.03217228980959936, -0.05273257210356507, 0.05512860991073898, -0.04659301006203619, -0.011134063471995997, 0.027824333102732038, 0.05382757233503311, -0.06824614934663586, 0.056693179736827685, -0.02544543566847937, 0.016109049401289592, 0.051825917986715396, -0.06182173951482463, 0.05491177830976574, -0.028033007660450058, -0.00923051740065388, 0.03743582990086417, 0.051535860394643536, -0.03207075404728854, -0.04383346679966402, -0.08129934496796165, 0.07301918414545826, -0.019958002786308035, -0.06352872704587419, -0.09167096875750357, -0.11175141816261042, -0.054708449100398175, 0.020651602488208354, -0.09214712295978013, -0.14977567425680355, 0.15028770747123274, -0.12085155329609694, 0.02782493579287929, 0.07708732014033644, -0.13307907894611137, 0.17023689747699894, -0.14553108777880225, 0.0877485165761647, 0.0019953064618119572, -0.09163973793972598, -0.10776270503994281, -0.13801049430384296, -0.16776627209342937, 0.1269401589560012, -0.021738336885686882, 0.07991486506398791, -0.15207126363783458, -0.16977358231368955, -0.11878525784965739, -0.023464884298461334, 0.08496895854723838, -0.1650786406534643, 0.18200359743226213, -0.1135029897443162, -0.011406954636963326, 0.09399564550784721, 0.15283751073632082, 0.16904523855067868, -0.12475715413862691, 0.045018024913208575, 0.044399425474732454, 0.12296248223574266, 0.08906962221785653, -0.05450469023955441, 0.0612508681990104, -0.040413302444117026, 0.009862845273379042, 0.048846775453606064, -0.07079158701518892, -0.07019061177519777, -0.037558747989546774, -0.008914713053577125, -0.05354087476113435, -0.08178386488846456, -0.07837669003654614, 0.04381212127393541, 0.007463518869926388, -0.055676185398167134, 0.07251212687576741, 0.0744135855610545, 0.05125487348013168, 0.014211189556228339, 0.044529140351578046, 0.2419352195856117, -0.1408232556936281, 0.07154219174888944, 0.1368363243379337, 0.06043937849545271, -0.07220543986197085, -0.020477181140116214, 0.05243365457199058, 0.0018422754235387047, 0.05032713731651374, 0.26842974193443114, -0.03636904882747225, -0.17182877315174103, 0.032809837110818495, 0.06152004376078619, -0.009184600852579074, 1.0414575010655827, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.07563005686284911, 0.12741291352974612, 0.05383378311968319, 0.1307913882367727, 0.03957499973445644, -0.13396012752729444, -0.029252285378086183, 0.13654111705520175, -0.018110138780411372, 0.1308532925068547, -0.003594919909701219, -0.09498087398950704, 0.007490534501738983, -0.03910794500435377, 0.003882163291096235, 0.05513981362916845, 0.0002264242839417046, 0.05829425479130605, -0.004954654923223297, 0.06448582476320314, -0.002229720999864159, -0.06780034781899112, 0.00038981975543268214, 0.06818175763643422, 0.0049264486939946455, 0.0672296385727078, -0.01256444475949704, 0.062191260377998187, 0.012638542514833973, -0.05931319158313778, -0.01806545712500825, 0.047392588876283094, -0.02379494837129883, 0.03155322307001501, 0.09060680334338858, 0.00012599400304742076, 0.07161215215876977, -0.0750665909968409, -0.027837996382475486, 0.09209266370913968, 0.04246888417690553, -0.12009426930566461, -0.029463337559666056, -0.14775764021773025, -0.043645480695979635, -0.15364318157742538, 0.052774755904299725, 0.1653629815393891, -0.03205704642161982, -0.16288997442389586, 0.05541509867990754, 0.16199679493136682, -0.06085612571629585, 0.14594084000268334, 0.05164567148975842, -0.11311552464933344, -0.15405434621035755, 0.07965187210340088, -0.13497277846756367, -0.12003916988777372, -0.10999814799707357, -0.13337464258719942, -0.09828983796253493, 0.14500708525960082, 0.08687422570284886, -0.1635346142096865, 0.07338096908639123, 0.17563497146659718, -0.03172677387493554, 0.17608919994789796, 0.0085865560505143, -0.17000016198852894, -0.015606073218512612, -0.169516357303126, 0.015210316792922684, 0.15009604872490803, -0.01605718593170852, -0.09348649831756442, 0.05352348575214268, 0.03578411078699164, -0.04314292671084965, 0.062097704631876825, 0.028985724712307464, 0.06762487010458854, 0.025895453378415676, -0.07366414432908543, 0.020619017139366428, -0.08143720756361564, -0.015285484172234059, 0.08477176464185458, -0.000534117162501512, -0.08458745509772803, -0.012758869597879266, 0.07710901916338403, -0.0026921868501983623, -0.07601799618489696, -0.00023346794177079265, -0.04965238575712376, -0.050694695313838446, -0.23518726313221736, -0.1846722868562817, -0.057893382285450753, 0.18713692097499876, 0.09839448679553983, -0.018304470353689418, 0.004951689702684531, -0.24695075914255335, -0.28940557395140165, 0.1166597318250757, 0.11028149868128469, 0.14115023721654896, -0.041558454154457886, -0.156885694249188, -0.21794609017316457, -0.2541464849198099, 1.0435685315102992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.1294882797127066, -0.08071446044729877, 0.016260864806041584, -0.05351738977797544, 0.10906657820589817, -0.13507020098822498, 0.12061650089951415, -0.07355712831083361, -0.0055476944060577965, -0.0591754797814668, -0.10966329222141595, -0.09843201432012974, -0.02946277382974727, 0.011996445175656706, -0.008038182887697646, -0.03519896301907618, 0.05254030452479066, 0.059939777653675, 0.03952610109317249, -0.008685025808025028, -0.02377668319316906, 0.05736206911999204, 0.0683373173918527, 0.06075360702613472, 0.0354510610896639, -0.0023211673340397115, -0.031603312372198135, -0.057496024015377935, -0.06154008071760384, -0.05072400362465121, -0.0265161852188734, -0.0028663527057040603, -0.023022888810640175, -0.031408379166158316, -0.0523403205171239, 0.07978388857613014, 0.06306519928250147, -0.06894066715324305, 0.08827493798101939, -0.1044750717485123, 0.0574482717074729, 0.008979048728329022, -0.07056558288813543, -0.14625761121894074, 0.1552947888867096, 0.12098043413069046, 0.03676268492209609, -0.04696782135141078, -0.12124818197882398, -0.17538340321124032, -0.14023499041665088, -0.07098534051053869, 0.028863515045243128, -0.10831826092399742, 0.15718799210675524, -0.12843817526276594, -0.01636282119678993, 0.09209266687109713, 0.13804372031283804, 0.16951899428883632, -0.16980008933151483, -0.12851038576090196, 0.04692251874331503, 0.05095476625629938, -0.13284519043570386, 0.18906759761207442, 0.19421945533414597, 0.15969744625095297, 0.11005443813094656, -0.03192935230136146, -0.05246439547771723, 0.12122326099454342, -0.1347306840629086, -0.09794282017394337, -0.025421994950835407, 0.035678573942772254, -0.09869304657726627, 0.11526163632119213, 0.004632700473115512, -0.02356237109343071, -0.04060365203274889, 0.06072584947522413, -0.07249272736029541, -0.06926687363918146, 0.04062214381728489, 0.002923047759259078, 0.045376249341453415, -0.08207689794929027, 0.09591919267822996, -0.0919389451282849, -0.07405063945963791, -0.04430180973845148, -0.0070222894769947355, 0.02919134583288148, -0.04868169959095746, 0.04509399530217057, -0.02419742633601468, -0.011035324146942884, -0.0009054871076439187, 0.17452993510768797, 0.19940836792935362, 0.19143512262436102, 0.011188181262960957, 0.06312543039963163, 0.12563887171915084, 0.08036426167000243, 0.22884316609362854, 0.31493477981305973, 0.03217608804173984, 0.07949746477916192, 0.09723965768443671, 0.1953338780735701, 0.15656433755295018, 0.17096381565461646, 0.24705477087273822, -0.030241669422177236, 1.0872485448829645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.11311515149491383, -0.06094909969529538, -0.001065963220779339, -0.06297963156974594, 0.1101768936780527, -0.1310039358251038, 0.11661641264614764, -0.07431936191938482, -0.013527277886428136, -0.045458145257740265, -0.09519864176652333, -0.09188037399979367, -0.059020781411395926, 0.06819636499577672, 0.05329941721375351, 0.03172235899684278, -0.01107500548999115, 0.012682354559028166, 0.028304203891360274, -0.039989036440905366, 0.04242248412282262, -0.04480143501349776, -0.032220924638062594, -0.011801614981810107, 0.011781894121019501, -0.033014710117652564, 0.04705742858351966, 0.052075678695610084, 0.03789259423080999, 0.016121293614439466, -0.011301806664871456, -0.03411356116455515, 0.04833711935646321, 0.03825044225430189, -0.010835501360528145, 0.03292689180426525, 0.03533769092780291, -0.07931956939238657, 0.11884763928269201, -0.16050771682434486, 0.10522035303072975, -0.022710687010316147, -0.06250729942061815, -0.16623106213637348, 0.19753063739278554, 0.18000923588435555, 0.09506122734613834, 0.011034213483196137, -0.07625661735838878, -0.1505010985195721, -0.15512462789325931, -0.12506064853340698, -0.06131277997538668, 0.00936820346432505, 0.04973771330918573, -0.07378365404833621, 0.1100131433645276, -0.1671547642543892, -0.18028336205629122, -0.1730821462245025, 0.14301886088431556, 0.08227923105822281, 0.0004191607043992181, -0.08445680176512636, 0.14456766070171279, -0.18042733625205676, -0.17332554729411884, -0.1362006330559938, -0.090479961476192, 0.024252196322056063, 0.04590953384087218, -0.10392135225227468, 0.11770947913261826, 0.09109179630081782, 0.03583556116905077, -0.00889431759393833, 0.057424853796707094, -0.07603760579379945, -0.05164969252769755, -0.07556197272124533, -0.07417861834937037, 0.06824483123964456, -0.060570383688022894, -0.04183325259338644, 0.010498904010021678, 0.02549042106647322, 0.05377770174668917, -0.0758693877613435, 0.07940940747520656, -0.07063063291108963, -0.05340555688269074, -0.029345271502331186, -0.0012464501118614828, 0.025535187735498545, -0.03851934781845588, 0.03440785502279102, -0.017994149031410774, -0.008069469396086349, -0.3028594655804535, 0.033154606541894824, 0.025168109448964835, 0.077321887748788, -0.11677440166986273, -0.15742078641893642, -0.014507227467907228, 0.05183101586663248, 0.0446243395066803, 0.031591703710295, -0.22478780525041778, -0.27052642095581625, -0.03031639527310987, 0.22073431911854563, 0.11179743691029463, -0.11406357831818212, -0.07791057783583459, -0.3165456741517295, 0.11634844176227732, 1.1525861773625903, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.09610631027098718, 0.11317189382879113, 0.06924655268271927, 0.12184431793365959, 0.0480210520677453, -0.1291252369572741, -0.02982624739819217, 0.1337027827118555, -0.009932182950626908, 0.12750660409187992, 0.012744938045635283, -0.0903168732674435, -0.06248206658251297, -0.02456079254501032, -0.05912697096663777, 0.010643755471234565, -0.049083589950582804, 0.0014168385804578234, 0.04326470567953505, -0.010901373104003933, -0.04051764571514847, 0.026906944380739817, -0.03754438016193164, -0.033399361004804624, 0.03294981512383892, -0.04012884385359432, -0.026002299429108273, -0.04468852822340294, 0.025022259526871145, 0.04809594410252033, -0.020939913205310686, -0.047153764177540664, -0.014350697448301603, -0.0359410297229391, 0.0493832468708882, -0.022188182389448377, 0.037201670791272665, -0.11670518302097264, -0.006209582193606988, 0.13631710259104715, 0.028860039352573294, -0.1691872285677572, -0.0009448722205831518, -0.1910277771598931, -0.010791422200565788, -0.19464732294789733, 0.00797901255980512, 0.19266871217358117, 0.029566387823741738, -0.17072490210973965, -0.0214049398873416, 0.16045348483411606, 0.04106121884816647, 0.11664145238058879, -0.06336256757620183, -0.07500452659806889, 0.18380900590829005, -0.005069563783797195, 0.171237163726225, 0.05295120630145883, 0.14660433781218987, 0.07976698050111984, 0.13138979743586734, -0.10195996841914375, -0.11687237435950305, 0.13172197517362386, -0.09711215328756469, -0.15330178838031805, 0.050777690101796766, -0.15866026980998396, -0.019378085839835954, 0.1562129687216495, 0.01611083660925866, 0.1568513258072888, -0.0044465163715510635, -0.13623209184749768, 0.0344218319037062, 0.07818172607474286, 0.08289682095651993, -0.0012000383190810485, -0.07263890849890886, 0.02429191883502036, 0.05474865641415628, 0.03582852047285328, 0.04733857036888336, -0.04575390163496072, 0.04106358597439399, -0.058929462175137975, -0.03292698678366464, 0.06687796314529756, -0.01691920267391626, -0.07054485054786355, 0.0011028474542203748, 0.06730872053220162, 0.005545345832182939, -0.06654735436546794, -0.005136160735703553, -0.045835584626726954, -0.025500694513428783, -0.18220769107940138, 0.20017318366274872, -0.017904773148322933, -0.04936411738283804, 0.04412804914361328, 0.07615991045404726, 0.002010918338144662, 0.17092573340287742, -0.07590949050039923, 0.0012949557916008825, 0.016627264016780066, 0.08541949396144166, -0.11964293272229665, 0.08032923025542049, 0.05434397747738752, -0.11166119886404063, 0.0376656051396613, -0.08541668845637873, -0.2065708174379598, 1.0747362896420318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.10258329635053623, -0.14128556972973305, -0.11315327572780334, 0.04382988735493242, -0.04343128001163735, -0.11113937706154413, -0.1350477416778273, -0.10295301153625912, 0.030839262295421874, -0.05035714871333008, 0.11173496339053973, -0.09000320080670529, -0.007425354052119581, -0.04780098919658593, 0.062140421968967054, -0.04412465331830443, -0.02178137470380459, -0.010702670895325159, 0.03690240122051267, 0.04320946304186989, 0.03144555017734232, 0.00029013278625260785, 0.029213619959986295, -0.0465843013556769, 0.04608536343200233, 0.0249273526603573, -0.006771867102381984, 0.03372732537363596, -0.05136561925607475, 0.047777602266855124, -0.028932926351111644, -0.0007428368428235342, -0.031736380691307256, 0.03485940453020123, -0.041754048777261805, -0.052339283456747404, 0.03471947130817095, -0.05693588839737692, -0.10995967730171176, -0.1278985593278383, -0.13555165009089185, -0.041623350213488716, 0.06603421490336993, -0.14167582574386126, -0.1940048878083716, 0.1646197100384495, -0.0949018419994287, -0.027291419122051953, 0.13961563255846005, -0.163222116025682, 0.15367095523104612, -0.08409989535444473, -0.017818629643514675, -0.09143280033102912, -0.12764982636288189, -0.07736738634998391, 0.08198927842609212, 0.16514399917581377, -0.16930912094922232, 0.08987591036765208, -0.010778509567102253, 0.10746114873430512, 0.1598062525883357, 0.1420068025067849, 0.06578282552694875, -0.04395685277139007, 0.1369970771875676, -0.17243973711766578, 0.12019446018325514, 0.027426119423808824, -0.07588526081540418, -0.13799856232833718, -0.15650336880143328, 0.11308801462881232, -0.03193657823718984, -0.053808419552788096, -0.121821124554393, -0.07853068109558088, -0.03280976031063109, 0.07236776756098784, -0.0728549032541304, -0.03202327996070436, 0.007304781230259613, -0.0447155233088497, -0.06410531566065933, -0.052730923023257464, 0.019811752824169124, -0.024804590458197544, -0.06047622608041684, -0.07051618171859945, 0.04975853759054318, -0.007979703467392008, -0.037023315427457536, 0.059109522423120564, 0.0667044048486376, 0.049308087751827705, 0.01762101701585807, 0.03713547443638099, -0.04945885399339308, 0.13173846575332937, -0.11530365892087265, 0.17015636699710643, 0.01860991599610178, -0.043266249187185225, 0.026971670673116635, 0.1356201751321499, -0.14538954963441467, 0.09723186042668812, -0.004587953123608354, -0.06533359243308738, 0.05028683019347141, -0.009529845059308383, 0.034567446806207075, 0.014637026397504086, -0.10373016653581756, 0.07865603927153121, -0.06416544306062649, 0.11843040023646034, 0.017712490827347774, 1.006122739106758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.09985076932478851, 0.12805814822346878, 0.13427874200647447, -0.13229643057276774, -0.11523640591186551, -0.08307974904377306, -0.04231204090006957, 0.003151160019389365, -0.05065216343802258, -0.08772377107109729, 0.11389593272358461, -0.09042591477797447, 0.054610893255965506, 0.06552311900352191, -0.06304360839169079, 0.04469120378886508, 0.03539794284053579, -0.022388896822345097, 0.012048862446197624, -0.0027689372022080246, -0.01697160131258652, -0.027363895547179756, 0.03916115655736719, -0.04634023359657953, 0.049708024799769115, 0.045755684360980424, 0.036544749940347655, -0.01988274903029116, 0.0019586356751032053, 0.01575442599411722, -0.035675516378682805, 0.04653281754370231, 0.050764913858376844, -0.034256621443398305, -0.005568626616849041, -0.022619711840139355, 0.03020644075142856, 0.04719466207286377, 0.08195236098968225, 0.11841703176284024, 0.17150514409728113, 0.1553940715672123, 0.12191877916367726, -0.04038322809639496, 0.02539790736336653, -0.08868080297762942, 0.16025546728966283, -0.18699317640089264, 0.1925639084610013, -0.140680643448064, 0.09804413398350258, -0.04768905481392249, -0.006282243562325139, -0.048548881699395086, -0.08595752636133136, -0.08077986994040313, -0.09893676490621622, -0.14490093029912976, 0.16475431194033854, -0.1606554090186604, -0.15465505626355028, 0.13152454006176945, 0.09814087187006218, 0.049675171843593074, -0.004479118641206802, -0.059538161929730035, 0.11066215699157284, -0.14903744486319304, 0.1577721436000248, 0.16083933718811355, 0.14538035199230037, 0.10221664592366358, 0.055672578186628185, -0.0037125247761561585, -0.05724132214190848, 0.09758576849648466, 0.12574875122649354, 0.08035744056942903, -0.04925260223435711, 0.06854367624987731, -0.07149144558204, -0.06174078025280802, -0.06027900622157582, 0.052777708714772095, 0.04365806933866263, 0.025474400289196703, -0.004446745102112724, 0.018508009376283874, 0.040602139258905774, 0.05801071597115747, -0.0681193159005875, 0.07039351867248253, -0.06450241155979768, 0.04182781099834662, 0.021513158542637932, -0.0004170094701980726, -0.028620023555513373, 0.06371563529342837, -0.07194449451374857, 0.12334305901718792, 0.12510441506696546, -0.1944571487687336, 0.12552736271814027, -0.1419736389149923, -0.030201756350733657, -0.0533200609510725, -0.008310556868228031, -0.20979024883357753, 0.013358459314398429, -0.08194088657408584, 0.001858898323339669, 0.14211803857550392, -0.08087356232805391, -0.11348184883801474, 0.17726646663505605, 0.0785409060348355, -0.026778532303321303, 0.3278341536185251, -0.030245272541183237, 0.0150482672139999, 1.125287952115595, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.09899769265065357, -0.07722844489724656, -0.12882340002214812, -0.011989297827094719, -0.13380368944958962, -0.04743883050204542, 0.11238996691260258, 0.09874465091748307, 0.06896173042823792, 0.1193846490706242, 0.017051753385840113, -0.09159435202460452, 0.06513633260436105, -0.008310457313978522, 0.061884570420619706, -0.012034205388728007, 0.04395790977184007, -0.032936968053474805, -0.018884529931286177, -0.04234142563595221, -0.0004065386199279906, 0.04485769239156825, -0.02709923156491542, -0.03270297498359732, 0.04312974515218023, -0.014513950048761826, -0.049967530175243295, 0.004311320418061181, 0.05033505770188158, -0.026698460068678632, -0.04098156803907378, 0.03637110593189352, -0.026369571374103173, 0.03405729902318214, 0.04757499185126923, 0.032870796348252435, 0.024156347604126535, 0.114615565223296, 0.054064693702486254, -0.10770801125932843, -0.11857186380527351, 0.09421671228463968, 0.1570634136203898, 0.075630020513088, 0.1920933548980891, -0.011734972740328909, -0.19077946083361577, 0.06295107661899858, 0.16548156160031435, -0.10476212965864998, -0.104659793102138, 0.14813638277889568, 0.030098234024144237, 0.1276933988911327, 0.027360577004396893, -0.08550023013009278, -0.18380109014393345, -0.03383547339654497, -0.15801146957750972, 0.10531999412436038, -0.09529858420858055, 0.1488483927533416, -0.018633113803548162, -0.1600424226957925, -0.05745837621623644, 0.1414312704970399, -0.12621145705810194, -0.08846108041143431, 0.1568417868494827, -0.008992591323703, -0.1591993657578663, -0.052587792076461824, 0.1302337021796243, -0.11788571772635871, -0.08000289683237762, 0.12089350570164371, -0.04117483438311563, -0.0843096829388921, 0.08273941065065143, -0.00879264591629978, -0.06880608444069111, -0.04149641123281754, 0.03594042682171012, -0.05879664940272218, 0.0019980403169575257, 0.06244480141903665, -0.028022758238011255, 0.054910271854692674, 0.055478812110467526, -0.032095908301510295, 0.06867836728555096, 0.0035551835288995075, -0.06990223552007696, 0.0173191391910952, -0.057347106809636485, -0.048509048914873586, 0.038246992265528024, -0.030508554646073768, 0.05810534722317091, 0.06312152715219402, 0.00269776843278317, -0.11015622723403112, -0.26478077712975534, -0.10159533563095478, -0.060390404268374255, 0.05493447233313965, 0.07960329642502455, 0.0013951299106549561, -0.17917260431205628, -0.014516144524740584, 0.27319073792238613, 0.16870852394526134, 0.0018288956205943716, -0.21214294063821007, -0.20965593533543334, 0.19998553542483563, 0.21016854806177013, 0.11311654197335483, -0.2513210360281966, -0.2342708915090417, 0.15725154558843416, 1.2047726469830249, 0, 0, 0, 0, 0, 0, 0, 0, 0.10518599110076379, 0.005759155855872002, 0.09616206735888096, 0.13490560471506471, -0.0917888128794494, -0.006622524273861096, 0.1018082220451466, -0.13414397340503179, -0.08568181993609572, -0.004102055363715771, -0.09392588696558896, -0.09438362205406223, 0.014334186232461153, -0.058095256446851956, -0.058057587797078994, -0.029972507010440432, -0.007000739585491755, -0.04206943401471075, -0.04060907294656201, 0.015986131578690124, 0.017713806340877863, -0.04641363837028002, -0.040819593751335856, -0.010011484976957462, 0.027324511782753122, -0.04899440237936202, 0.04138976856087743, 0.011671151706800591, -0.02860834968144322, -0.05125421793924329, -0.04444871595399547, -0.019361366591790437, -0.020034624489897564, -0.03445060342592045, -0.0446139149989803, 0.049984160143125816, 0.016650714970482847, 0.08938446147614516, -0.12265340987025189, 0.103559624089223, 0.0006066492569200138, -0.12132118801537031, 0.16319796349925467, 0.16308584114654348, -0.04150268537285625, 0.10713902599631697, 0.17917663504794598, 0.17949162562575252, 0.0763725339872181, -0.0547824678344192, -0.1476481458997784, -0.14923833228852623, -0.05222570286251039, -0.0447686870171546, 0.11880481329884299, -0.09399431287645908, -0.09033656592909071, 0.17790467867090015, 0.15335332236937918, 0.04199705371900029, 0.08077793360447096, 0.15626488081664403, -0.1255250519487498, 0.011821312619572567, 0.10964600167932882, -0.17313122747329235, -0.12943944794028928, -0.013275269835995043, 0.10955493790505104, -0.16387954404029248, 0.1246081204843156, -0.016904331722590635, -0.10568368806874798, -0.15273539611176679, -0.10251690512207019, -0.02930179222752178, -0.06592232107036201, 0.09555441889488528, -0.03402404859208854, -0.07730176996452785, -0.06646573444641239, 0.01653213371936684, 0.030710482199578656, 0.061814771974866414, -0.04710010643982636, -3.614132003914184E-06, -0.04696195349173232, 0.07143758820989447, -0.05116455124935014, 0.002944841138495551, -0.046964530438241746, -0.07252377375110301, -0.059886930056638886, -0.02078928605584093, -0.036127650658480066, 0.06354475761607525, -0.04925323685659275, -0.027752043252786022, -0.14268310823172817, -0.08042161267471327, -0.030980966695013566, -0.0036067407326764705, -0.08772672054625556, -0.19375941206447864, -0.095679326012334, 0.09907128486360853, -0.10727027510912072, -0.11943414247536478, 0.07862652741154963, 0.19990415172863185, 0.08450763032668919, 0.10730766253069249, 0.14670532696860494, 0.16535065815912597, 0.08030161536003055, 0.1530361889238085, 0.18516390891581333, 0.043282446409594534, 0.23223528473681238, 0.22839131887659087, 0.24934060103502856, 0.054457339076841096, 1.126336951081915, 0, 0, 0, 0, 0, 0, 0, 0.0837758844297869, 0.06144344569842687, -0.04061330693086107, -0.015911652045444646, -0.009354537091544986, 0.0339237714311942, -0.055999760504260324, 0.07514940076616354, 0.09349550075472197, -0.11403408307211069, -0.12946953218455065, -0.10506084403818955, -0.046615663319690435, 0.04961117476713799, 0.04387425200405062, 0.04534678930888801, -0.050535220794926936, -0.057244092008043826, -0.04915715693252619, 0.04056004165434195, -0.03058727652912955, 0.025938755283684646, 0.017842784928439763, 0.008775024964762372, -0.0009485961376903237, 0.010634266681061374, -0.02004797710601701, -0.02913391828269167, -0.03346630450975876, -0.037017291369394516, -0.0410042708625311, -0.04875875452669246, 0.05211712859120994, 0.03975619882260283, 0.0023190085849073222, 0.00973929143853288, 0.016263373798954914, -0.061704033675495026, 0.10864567264515809, -0.18301269545190793, 0.17035591298463668, -0.15872445705845653, 0.1375526554203616, 0.1593776228162752, -0.14941435225406494, -0.1304478310383534, -0.08785996724116207, -0.061935820106143014, -0.035614578904990445, -0.013972480851857347, 0.01366587213988004, 0.039721763319010873, 0.0698578018764201, -0.1058878678247789, 0.13213497142607147, -0.11861226560729779, 0.07629621782738666, -0.09780912464850187, -0.11192249060657995, -0.13779210173778364, 0.1687752566316678, 0.19612661306178797, -0.20027150351702422, 0.1846339676565514, -0.15111614713532256, 0.1183808634028397, 0.08043969686055823, 0.0437589239509823, 0.012668157485047734, 0.018606469516606442, -0.04958951748271535, 0.07838943452656233, -0.08812496245148452, -0.08378935593828839, -0.07484123038185833, -0.08666767249726129, 0.10979226103480953, -0.11468953193059031, -0.03678007470412056, -0.04404034281278161, -0.04481736438785122, 0.05407297913614565, -0.06955304828978727, -0.0866134518949491, 0.08789994895988322, -0.07897651870623287, -0.061218504404566346, 0.04584682528314165, -0.02851485410022816, 0.012069816107372943, -0.003526684993866565, -0.019303694803140134, -0.036041484149307294, -0.05540066319794473, 0.05542573472048989, -0.04101692466757717, 0.018642117196526427, 0.00759400872824554, -0.09690525601414633, 0.07747147356192467, 0.10334343829339318, 0.06412313283331485, 0.01773305495182116, -0.07880579036727431, -0.1950510540104644, -0.1323154509194903, 0.14403938155294155, 0.20403810352830928, 0.29984978813498797, 0.14319951224983726, 0.011833515208665437, -0.22709376565889575, -0.2616034145185958, -0.02208245474477983, 0.2628552404171399, 0.1088860118261542, 0.2085858225697107, -0.1826357184483312, -0.12193338945024026, -0.21580675649613026, -0.2263340470399751, 0.13310924878740507, 0.03073116107344774, 1.2304490638192982, 0, 0, 0, 0, 0, 0, -0.10133487735559407, -0.12220195187011, -0.005245592324402098, -0.1261164575607063, 0.08571267024840475, 0.06314916111166917, -0.13047140167775528, 0.03025993543352283, -0.11463545433882583, 0.1157695343478617, -0.0329822661001038, -0.10178905275913966, -0.04794605923392314, -0.005601329515780387, -0.04640038680993623, -0.04192267967849878, -0.00965100623964568, -0.05181811966623408, -0.01683575836576399, -0.04215389975829717, 0.046783734285225115, 2.6814192889532042E-05, 0.04421996777602796, 0.031737561203938655, -0.022387510748500837, 0.048582055011594204, -0.01300215629250355, 0.03654325696976672, 0.03626619288485748, -0.009391728239328141, -0.047124612891430225, -0.029266155809828314, -0.02879547938047948, -0.036652221112892076, 0.04906562148009051, -0.04912657987280163, 0.013571356807584912, -0.19347878576788394, 0.11556780100484307, 0.11816065184845764, -0.12250761459563578, -0.023441549798206104, 0.1344857642939391, 0.12145889045060167, 0.06126460227668451, 0.16647852684980838, 0.0337329373569396, -0.1315842933747119, -0.13350650940919576, 0.010589910455187874, 0.14935399106403968, 0.09527671827748835, -0.10494449917657085, 0.1632414971473114, -0.0033915055288657545, -0.11775403954073643, 0.1521741820528692, -0.06200790338199938, 0.0990773489712996, 0.15945946550251308, -0.025135315013816086, 0.141755431041862, -0.1162995365688427, -0.06284014813140094, 0.15935312751706204, -0.06057449864250419, 0.11599924354873445, 0.1504322771002128, 0.014219095023150177, 0.13903404493164015, -0.1180311021495913, -0.04472790736900587, 0.14452368295138093, 0.047543296670127855, -0.1360904402444646, -0.1642184078504263, -0.005067606622195317, 0.11029193638730529, 0.05970427163262285, 0.01750744539405224, -0.04083283524418183, 0.06711830008721209, -0.014826807968344749, 0.057602959405156556, -0.04709340113882145, -0.026655815497983276, -0.06488782637992528, 0.025938618077803646, 0.0461209160716501, -0.06237859409166407, -0.00405110262041846, 0.05896419452431862, 0.050340674043174716, -0.013386983277957632, 0.05575363306741031, -0.018046110662544922, -0.05899222810236322, -0.06433738673973204, -0.10042491702626762, -0.09720169427730231, 0.15741053287351733, -0.02383970621250784, -0.06476278022077886, -0.007465956911894089, 0.10798970439753858, -0.24571785745236055, -0.0044775900384495795, 0.2644234028814403, -0.2409282233529771, 0.019254635157824475, 0.07803144994927895, -4.328759154690644E-05, 0.003326954092585828, -0.05604021117915963, 0.06842314230641865, -0.3075280148888633, 0.09998472177217348, 0.2357189678142857, -0.17003052926482998, -0.06527707520784597, 0.2249266265684828, 0.23040834248211609, -0.333438894994401, -0.06622870370289756, 1.1602125421435059, 0, 0, 0, 0, 0, -0.08870096756239486, 0.13566435126119955, 0.06355521175570311, 0.05764398647649892, 0.13119982802799388, 0.09507311871950763, -0.017973629092631997, -0.11598307374887859, 0.12642750933182736, 0.030263802260231502, 0.09431302517898234, -0.10079375446825203, -0.0045217183175045176, -0.04576945847419223, 0.0452698689800201, 0.0055140920263112075, 0.043404527747554426, -0.04726112574483323, 0.02206460268478915, -0.027612212147924742, -0.05378053439428137, -0.02677295010995559, -0.015593099140496763, 0.04531523882049557, -0.039315586629422625, 0.0001946187845453663, 0.03979131054991552, -0.042118903693110374, 0.013623041958346951, 0.025221172732450545, -0.04909550991925286, 0.028037359124378946, -0.018420088980675996, 0.035281039458620315, -0.055405074182882104, -0.051165043032709565, 0.006188392109547949, -0.15113817190524473, -0.19632077620068186, -0.07930994691358752, 0.04026051637160408, 0.13219025573435422, 0.11453071897572806, 0.03542392325539729, 0.15219977467686224, -0.14411417862123177, 0.0412286953617077, 0.09939710409196657, -0.1590628833823973, 0.06084246354928622, 0.08344518280407934, -0.15593424235873546, 0.13007427416672823, -0.0025336677994087916, -0.14374954609365134, -0.11779634011181477, 0.0813320957194265, 0.1503833337942468, -0.09011868206169284, -0.06506702454913986, -0.15908379693669145, 0.12268471425118598, -0.006585081379566873, -0.1325805930452389, -0.15117031700262623, -0.036512028831547694, -0.10570100768403717, 0.1605472841714703, -0.06720827682514026, 0.075772810754312, 0.1548041908905111, 0.09500828479028658, -0.03362058693513491, 0.13493939337781724, -0.15622073429037867, 0.033716745249356105, -0.1327145576904027, -0.10785487708471529, -0.024691571711704385, 0.05786807690855399, -0.03878004937011061, 0.02963067065315008, 0.06686154351903227, -0.04967937399967497, 0.0010427193498982607, 0.053219203370220985, -0.06234636814941928, -0.014323713694259037, 0.04356746496246825, 0.06530943747036609, -0.03137046813637888, -0.028782071028501784, 0.06459630880847715, -0.03722720019641696, 0.01306876756493487, 0.05276403528625589, 0.06785133508600286, 0.009925222965301699, -0.16324276842719934, 0.17919145452377397, -0.14308888528120045, 0.12264948071042789, -0.10669676887564496, 0.04259548626565947, 0.011612948781994988, 0.0019462766553573, 0.2684767176785874, 0.00479300830549062, -0.01891077454250019, -0.08597672998756167, 0.07684641829958622, -0.01782580289177545, -0.0006093862530702618, -0.032570241247633636, 0.015371319987213748, -0.2010944332050451, 0.10738020406168998, 0.1438108421001742, 0.020361146111771353, 0.0199480968381574, -0.1095458617078655, 0.15079692193882666, -0.2662898466457481, 0.27004887349841356, -0.07414425779805171, 1.0341611240909285, 0, 0, 0, 0, 0.10463694326074317, -0.10968299890497205, -0.10833948469686384, 0.11256643639863743, 0.11658337161801532, 0.11807979702995113, 0.12111307992718784, 0.12390569972682416, -0.1341347908218755, -0.1387952561777426, 0.14037957716488925, -0.10077003346583682, 0.04312915325793119, 0.04478627385076256, -0.042397639425893356, 0.03493466823066888, 0.03715398947658203, -0.04055177242318583, 0.049840443365207425, 0.050814028006006234, 0.05148327436342583, 0.044047609887734845, -0.04512796174572261, 0.04589196888220244, -0.04803002354475157, -0.048499569767810606, -0.04891166090355655, 0.044121704368950174, -0.043448605146557656, 0.04309071837859847, -0.048925441593693345, 0.05051049214535914, 0.05003488818340083, -0.03448114644802598, 0.009174161617213383, 0.005629070878354958, -0.0018578265937758656, 0.010212313425070504, 0.022225128234899964, 0.03799115809454009, 0.061801965622244076, 0.06846722073040855, 0.07451077272597414, -0.06374166755734163, -0.07306954851132003, 0.08170347975291381, -0.105867943020238, 0.11294221875789467, -0.12003426829414099, 0.10392196053391016, -0.10838786517944074, 0.11429470715177556, -0.14803911944240689, -0.16091275514078385, -0.16551243747445968, -0.11984936110781884, -0.06759275374588901, -0.07528385538906332, 0.07847969241303457, -0.07899539266182992, -0.08726245574277748, 0.09582014738755223, 0.10633565020787417, 0.11312068225038392, 0.11952218411273613, 0.11971555249990601, -0.12625881049813306, 0.13222367242517644, -0.12697897870638425, -0.13180582437708335, -0.13633781685559582, -0.12885559140720043, -0.13184535264856923, 0.13563189619417018, -0.1682640322532834, 0.17965745427456845, 0.18401466183000295, 0.10816887984808277, -0.03409141014662987, 0.03671525527026781, -0.035229011162739826, -0.03124394256389168, -0.03480399221077429, 0.03904352134526689, 0.045316161699569694, 0.04793164409902085, -0.05036856578662124, -0.04882063252913318, -0.05154723069720891, -0.05396042670301887, 0.05577427446503828, -0.057631222555899614, 0.05942926972701066, -0.051883023013442144, -0.052541986625669265, -0.05407796748005708, -0.07281192181443248, 0.10477122889432211, 0.03537561282535523, -0.0678654150323084, 0.14986227335208296, -0.11510873838338041, -0.06360335278104758, 0.1079128498537612, -0.0660071417739748, 0.3344206491845911, -0.02070457885031784, 0.19223643082218958, 0.24582419300882158, -0.1899005637782169, -0.03667893359059365, 0.12985672120431838, -0.07183258956067459, -0.004624400524024954, 0.005103142717397217, 0.013528611073763921, 0.09882675413159257, -0.10575217494841693, 0.21964842484994682, -0.03208655804625656, -0.24402124153526367, 0.00624956664388006, -0.17635929102293973, 0.290494030635984, 0.02187415938314364, -0.05705540724521284, 1.1281444150737507, 0, 0, 0, 0.08493747741782133, 0.05141879780455798, 0.13169935512044387, -0.08480866702142388, 0.04817524315913093, 0.13038835516748082, 0.0826658258232572, -0.04881125542949894, 0.1377263377094989, 0.07886136464126042, 0.06429267661623726, -0.10152468410765113, 0.0500887768912687, 0.007413439652588585, 0.03816551904887863, -0.049449225071346865, -0.02015062312289591, -0.03181633322484342, 0.05253743055292644, 0.011487541284995066, -0.0403866758987067, -0.04590148760770107, 0.013176403543467231, 0.0331885772641265, -0.04689985720156428, -0.01125514107495593, 0.03614143462189988, -0.042295552573947244, 0.00915855161085965, 0.03242047452819139, -0.04678020271944216, 0.010654802602586813, -0.038816001847347056, 0.0340815839954428, 0.04578194060691418, 0.05598554648106342, -0.009796586961000841, 0.16364977716018433, 0.18121696071221347, 0.0037360179626919027, -0.13188713486497206, -0.10897711700145575, 0.021900203823810218, -0.13966262275078042, -0.1468161081271171, 0.0034414567950646372, 0.1474264419515931, -0.12104702260699335, -0.03102429716887538, 0.13732789837818085, -0.1375296737239824, 0.0018982018225775187, 0.15872764450430749, 0.12258831440755032, -0.04920017069899867, -0.12362698435289374, -0.15072121743783862, -0.08218728020337132, -0.06576829973146012, 0.16122314959854495, 0.09933553640982618, 0.06446537000847834, 0.1598054822614965, 0.09076117294758, -0.0696053876290807, -0.1592274181963638, 0.09322355634965238, 0.07061319501339046, -0.1557629758078573, -0.09140619899921783, 0.0659803856660022, 0.1463556937119795, 0.09455015094588437, 0.049514176453245025, -0.17209044833541326, 0.08873001722659205, -0.10475476541442086, -0.11091747678378944, 0.05913669236646112, -0.02384696150232052, -0.031018217495012282, -0.06691781892175173, -0.04195350050133302, -0.027090544165733234, -0.06563946010472298, -0.03463999572390174, -0.03092181043892989, -0.06487038546495706, -0.03710463215995298, 0.029936812122912486, -0.06557350858163312, 0.03272047448155345, 0.03405458148932899, -0.058530574566797514, -0.03486386072849983, 0.021264553267782968, 0.07372219648116, -0.007472309734190833, -0.06206640505509097, -0.04592063194421436, 0.14118648210409118, 0.074826623466503, -0.17314759255891413, -0.04921369396169582, 0.21814705981230606, 0.04137794517132766, -0.10034529137176877, -0.23350888022253735, 0.17443332615650356, 0.04944045496750421, -0.11602076787455343, -0.12270764865793674, 0.009652875591018394, 0.1707141135404858, 0.17763438465707615, 0.04243394588148673, 0.060084184432875665, 0.04528574594084718, 0.08233558261181342, -0.09608213355596526, -0.08646072775964135, -0.2715936887609826, 0.17122846423382, 0.20453071890710472, -0.29287971539415575, -0.07866115990677008, 0.20539398145625304, 1.1127414020607949, 0, 0, -0.10843701516641022, 0.021130864939491213, -0.12877861205890487, -0.092863323367406, -0.04147153083833323, 0.13060530208628582, -0.0767399044120847, -0.05898296344508439, -0.13700716387478581, 0.07797416422116153, -0.06688922713730015, -0.10348962890921934, 0.0098570993254301, -0.05097469783421636, -0.032604244151470396, 0.026789315009965526, -0.04992318293636752, -0.02186569840637274, 0.028983824353577034, -0.054480411477271326, 0.02228673098714517, 0.031522971071352615, 0.04586142781323467, 0.011083953155376268, -0.03599709647583835, 0.04603086855701918, -0.00737268315312197, 0.03690804667134593, 0.03860700923617906, 0.0001952814840080158, -0.042517499149879415, -0.04254933758443794, -0.005259822627260861, -0.034181314264305616, -0.05730432942117557, 0.0419038541948535, -0.01674725753574918, 0.18755629121043896, -0.1509597475876035, -0.04169377504989396, 0.1338834112839595, -0.10504098263991649, -0.034113843103484524, -0.1638590764251291, 0.0845985122779592, -0.08673367818686525, -0.1569265422624765, -0.09225654316502292, 0.06926779213865691, 0.15874735862544473, 0.04004242397912125, -0.11572576435120806, -0.16053406011457194, 0.07086808449726875, 0.10759392876843507, -0.13056356169266636, -0.08749999224037902, 0.15103798448386277, 0.05462670752887125, -0.11446646848637622, 0.15697320810925489, 0.034397825571060116, 0.12122586193361402, -0.14549350011838147, 0.009122569167993186, 0.14078114526942315, 0.1380884350784715, -0.005729538730555272, -0.14519862520777546, 0.12681928172419718, 0.021574976072585753, -0.14208321765879509, 0.0872759032150335, -0.06746344572519627, -0.16802829278454576, -0.1298180520062144, -0.040560616931253915, 0.11849033974995114, -0.025583645409399457, -0.059235287444429296, -0.02732727420720352, -0.04721563746067592, 0.06583840290229429, 0.016546678032736725, 0.0468396712772449, -0.060675263226664215, -0.0068879059820574975, -0.056460040955666604, 0.05765712326780003, -0.0006888961870447257, 0.057186170568119477, 0.05865153126314349, 0.0019492694911821522, -0.05361992326712731, 0.037550693151767026, 0.024203114632117488, -0.07123690226309076, -0.05934330214897891, 0.05018785686594486, 0.1116864418031448, 0.15590722846648614, 0.13521016925945453, 0.16713260754450504, 0.1899441044188479, 0.1513654530149139, -0.06465581358655258, -0.019039865623753736, -0.0794332624142, -0.11141699476451633, -0.23870850640976063, -0.09635985698972958, -0.24997765774078284, -0.17687180176491812, -0.0789950809233871, 0.0031753216730626387, 0.28197480199690694, 0.31091052889522847, -0.010080661229656123, 0.15612831575389863, 0.18250781529255963, 0.1730883081154571, -0.222618636028163, -0.06073801160767267, -0.18143957601451072, -0.1510475509298509, -0.12295327450928174, -0.1315099350666298, 0.20289694215997456, 1.1360342059410655, 0, -0.0785752778620028, -0.08891366755809327, 0.10411080750386514, 0.11307767180256004, -0.12112917600178429, 0.12728709685436915, -0.1274006044128742, 0.12523480788183375, 0.12441904825829808, -0.1321646515776975, -0.1379642717554341, -0.10759819881767053, -0.03833420034757249, 0.03354739409417019, 0.02456708373377866, 0.018445579175424, -0.015730897372956965, -0.013795484131967994, -0.0091397622620864, 0.00442114325161816, 0.00022740296767993122, -0.005216897180825492, -0.00935894566421952, -0.013344470773208307, -0.016863263942452356, 0.020881180835291953, -0.024970476750381627, -0.02977170567629646, -0.03046682196607933, -0.03153602669157179, -0.03392522198504046, -0.04062955098407825, 0.04504129336551898, 0.03651939811015772, 0.01635017396331912, -0.019442930052788954, -0.016393611761675787, 0.032588684541217806, -0.05536437766974124, 0.09407264084166711, -0.09065498592417157, 0.09137318950713287, -0.08930550722145206, -0.11989584181719175, 0.1290930583899428, 0.13496901958536775, 0.1218363626873129, 0.13473905298156635, 0.1522716839522355, 0.18619002834405454, 0.17196922804112427, 0.15781080953263402, 0.14578790598483027, -0.1650722774266787, 0.1716240619192313, -0.13808642697541, 0.04813030317736073, -0.03258435968188177, -0.017045316196040078, -0.0010491669743616415, -0.013397700755539086, -0.02806514051466582, 0.03988911446985125, -0.04927550052325326, 0.05551006313353852, -0.06447654155851329, -0.07261361013069387, -0.08477614254655494, -0.11118380663489552, 0.1367101493294005, -0.16670632114082967, 0.19784159719834887, -0.18675814331851637, -0.15208780040017, -0.11003706247879783, -0.1062205206818702, 0.11819447789975045, -0.11782880490872152, -0.024056483619328006, -0.017699126537884687, -0.010429263869425604, 0.0025736497449073813, 0.003297077765834877, 0.009497806863903455, -0.013870498152141097, 0.017282020706858206, 0.019307884825602115, -0.023128549864291824, 0.02655678390243296, -0.03195572357204612, -0.040897604621879094, -0.053879941613788486, -0.07149533223828355, -0.09741106812556183, 0.09255067720576636, -0.06656272705954502, 0.029587934428571078, 0.01186297919225059, -0.2117787064525659, -0.10506351262735505, -0.10719021474705939, -0.07250023945639295, 0.13873110697728663, 0.13997580042799063, 0.17512669402857634, 0.2078933220646837, -0.0006931885520951755, -0.035023704792431026, -0.19713530289741157, -0.044158506311694254, -0.18879327213251404, 0.014705409043093125, 0.13246518542636465, 0.18349199058656607, 0.14686873048188298, 0.16363655505457114, 0.25265738172411567, 0.040290151401398744, -0.056896499028178824, -0.22658196567406008, -0.24173752573911436, -0.017114365436203087, -0.17238204457567674, -0.10739279223918377, 0.13149300934411656, 0.2423361266660683, 0.1733620372903691, 0.38455635445441944, -0.03127510520451058, 1.085136374483944, 0.10602649216761234, 0.1277155958651823, -0.057175815881492814, 0.0615786603504416, -0.13163108926492487, 0.09786040010404046, 0.016984340242369843, -0.11801937293580454, -0.129507472137411, 0.05056863965814058, -0.07106118899947367, -0.10098050000379895, -0.04023592934901725, 0.008804189980081983, -0.026679821491119464, -0.056859175957288205, 0.044124224110881224, -0.002834668739827669, -0.04160300043633382, 0.052658400515520495, -0.02269663454021965, -0.022475954318233213, -0.045331307215459964, -0.03225173894974228, 0.007221319042992081, -0.041158398605222433, 0.04321082374788759, 0.014323932541739519, -0.029693175365061247, -0.05007828438850998, -0.031654849233631446, 0.003293655948551067, -0.037408970943404854, -0.031240147445815963, 0.048738403857462025, -0.07072180834125034, -0.02503711002807055, -0.13139070523603175, 0.15698666428833763, -0.08052217138603317, -0.05932942588943457, 0.17825947068482764, -0.15236288091609826, -0.049160817029013405, -0.08895949375490782, -0.15701935205605808, -0.07921861285778038, 0.04175816334113478, 0.1327115809606005, 0.13487621186748247, -0.0072189011430930546, -0.13813486158345184, -0.17147138247684915, 0.10831833872959629, 0.05421384546158202, -0.13014675740074522, 0.13808395363784, -0.11387344513043103, -0.0036846330504146166, 0.12712365441143214, -0.1579673399663922, -0.06686512552772148, -0.07634586551241447, 0.158522674641692, -0.10908312055347091, -0.02303188560056226, -0.13599322237126774, -0.14963849776955565, -0.06898966247363711, -0.06571131097520613, 0.1499602654693114, -0.1205127165354164, -0.02666066757059094, -0.14939961717754185, -0.16024307182755307, -0.09442701029417572, -0.043086981546015105, 0.1060045276322803, 0.049330747282679915, 0.03502891176836282, -0.005080341722172703, 0.0575072114627403, -0.06529421245902847, -0.02416961060863608, -0.03405831809113386, 0.06612584559632001, 0.042443001600992514, 0.012657403018451792, -0.05673712791339634, 0.06025451680999087, 0.022203318159057767, -0.03122937950519333, -0.06235476940402051, -0.05288098391167721, -0.012262386744372359, 0.06465294506925721, -0.06758848900431014, -0.043502422820128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "info": 0 +} diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked_reduced_nb.json b/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked_reduced_nb.json new file mode 100644 index 000000000000..9c53c50a000e --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/blocked_reduced_nb.json @@ -0,0 +1,319 @@ +{ + "order": "column-major", + + "M": 130, + "N": 131, + "K": 129, + + "A": [ + -8.115579575588253, 0.026039422541380086, 0.0362748011966193, 0.045116585528862885, 0.08024384477264812, 0.008182236585568048, -0.024508111308305935, 0.03194691953176698, 0.01030656851983025, -0.0038780243860476737, -0.009741556259423856, -0.05380807707176816, -0.05805169966546797, -0.02913378016052387, -0.041645403768728606, -0.04429781758318396, -0.0633350020061243, 0.36475151286331264, 0.11209126090820594, -0.3001981230893006, 0.006321832478375977, 0.03887253105857402, 0.07234984583978699, 0.5351067172892279, -0.11277763287680653, -0.5480807677020367, 0.06862509842272857, 0.016303461110709516, -0.012786892523021232, -0.07310510985094876, 0.03767157127847004, 0.04663993231941599, -0.07935750094262589, -0.053561919366990396, -0.05080792189848965, -0.0800112857695292, 0.2123476595561642, 0.13183099093251321, -0.13701743970014502, 0.015205000529947749, 0.05100466009155247, 0.10777965065303241, -6.381223272583739, -0.19766336451371203, 6.318521666998428, 0.07647069089631364, 0.010366419429449825, -0.039586365516463995, -0.3037408773652259, 0.15988402309129424, 0.3428808594786441, -0.12350517078330914, -0.06189027477399456, -0.043144859464955665, -0.03627926813871252, 0.016067590091119466, 0.02927816009655393, 0.00871192513643615, 0.037151359882745844, 0.06010954666559598, 0.11994177864327493, -0.6137784602116547, -0.1781824906196764, 0.562544252397482, 0.05260944395716882, -0.004077725132546436, -0.06652900328319844, -0.9609430817011229, 0.20649379729109463, 1.0283404792095787, -0.12192842924541453, -0.05640063071124857, -0.023152848932208987, 0.07212939323943679, -0.12096210182318795, -0.1407397775203323, 0.0805197368293119, 0.050436378473610044, 0.05622722655410428, 0.08967467326506029, -0.12753978457068815, -0.06882174023091459, 0.1370975635073658, 0.021042439907110633, -0.013973731057204564, -0.06878903200156772, 2.460492980163777, 0.14310982429064645, -2.428809543747543, -0.08659767196475032, -0.04335052012976637, -0.008976337313715527, 0.18889144975595584, -0.13362075362680456, -0.26520743430134874, 0.07632284340030782, 0.04728352413631709, 0.04429104819847862, 0.03963894724606436, 0.04771885126573827, 0.03920193351909956, 0.015510969660834872, 0.005142005137147576, -0.011616142913852046, -0.04025784676960398, 0.13465483236158085, 0.021646605734053526, -0.17277184796600886, -0.05157037051372404, -0.03646112291138193, -0.0191529753958653, 0.14857913791725763, -0.036563939584540545, -0.17069575145611227, 0.036202106735003015, 0.03751843016727385, 0.041570153895260864, 0.04542528420673228, 0.033650108016488045, 0.024694755988058342, 0.02251314660402648, 0.00856843137897123, -0.004054204512218718, -0.010921235689297037, -0.05821064178381495, -0.05595848743829346, -0.023207797219824744, -0.040183780970840965, -0.04147069415465632, -0.0513006784587513, + 0.07956913244703721, 8.097379993583054, -0.0714325894436989, -0.1169256171734441, -0.05367666280692984, -0.055887316787425534, -0.04014053718151267, 0.01413072763659877, -0.02816512617996625, -0.0005538112881722235, 0.05784708284126866, 0.06811866243632525, 0.08331495814537493, 0.10001486947993021, 0.0737305644035885, 0.10535881077697407, -0.3209702718062716, -0.05003880489919643, -0.06505894051005368, -0.11771386512084264, 0.26189261490479276, -0.07897350556654459, -0.5755019792330831, 0.0387978646298911, 0.013365879218333099, 0.046014280399119256, 0.5327518399307661, -0.05601613564007801, 0.056970435380224727, -0.02470551906491425, 0.026403516748149128, 0.04162963856629087, 0.007192741386783608, 0.13063022475732766, 0.13403681008642715, -0.1616455136031305, -0.05261903870198348, -0.07592347117857667, -0.1469258494876362, 0.08615720499122304, -0.12342509008336022, 6.344099746015589, 0.11060636924800604, 0.06347817564671177, 0.10114606599241216, -6.343358738720368, -0.03700056234549304, 0.2941611443218817, -0.11959127230335764, -0.039742105140008865, -0.037563247692046664, -0.2812249701306425, 0.1672236167554101, 0.09852893223067216, 0.02725479422476179, 0.006965173761267374, -0.024929361622815005, -0.06660684190285557, -0.06909562492088911, -0.1576395186322217, 0.5545276268762909, 0.06034539192219712, 0.05192235760228525, 0.12404626262417362, -0.5598909110674938, 0.013963957856153071, 0.9674037198445387, -0.13718919224354909, -0.06821291854180844, -0.08806235677876977, -0.973732274331948, 0.1455887334876147, -0.015689659767905706, 0.14420690940340675, 0.06915358017836282, 0.04098585148920697, 0.09024742991393586, -0.1372165068341783, -0.14060677839212554, 0.07118446498421926, -0.020489661496782163, -0.009357945065049056, 0.04744581244386692, -0.12346823215341796, 0.04789884330482991, -2.4517968081530164, -0.08240024808563984, -0.0322148579988375, -0.04882864229182349, 2.4779949429633685, 0.09592822626397046, -0.14583917985620765, 0.1423101565463346, 0.07691720695145232, 0.05827954212048381, 0.21816827578772835, -0.12103703563769455, -0.08726026780140483, -0.0923441701799782, -0.07917153616365213, -0.06349800051345139, -0.04449348552731047, -0.003920116292860376, 0.03523212261406494, -0.12318576932293879, 0.01822005064174459, 0.03813307618639916, 0.030546617994970715, 0.20986907975222055, 0.07099955400682978, -0.11230841839418815, 0.05536434533512535, 0.0222839043166084, 0.0009115667149096618, 0.13336023102390626, -0.07806771186186301, -0.08326381837482472, -0.0755354040311349, -0.07038585269264941, -0.05636889952573443, -0.03341034674984977, -0.01852798442808623, 0.0023711298921692547, 0.062439912410011705, 0.06721723408854696, 0.08178138458142536, 0.09643298796749822, 0.06495308438709377, 0.09182343967405782, -0.7396394188338771, + -0.020970299463942486, -0.04196792275449775, 8.056711303519904, -0.08115777120916279, -0.09352003317256108, -0.08640095919362534, -0.06677040450981253, -0.03653456191618709, 0.02382192209199374, 0.025939801694225273, 0.05846347329122059, 0.08830047409689068, 0.11123836199291415, 0.12918730858278277, 0.1650645553570358, -0.29231493064371517, -0.009723444315748425, -0.0224894986500781, -0.056562042884986674, -0.10387368221732385, -0.18986325950064276, -0.27665678956255857, 0.028926879288738272, -0.028153005596839642, -0.027777063166665394, -0.000478068187434344, 0.06176998449213855, 0.6087320765658936, -0.09363034390344716, 0.010346071644303678, 0.05493532650058869, 0.08077093831150642, 0.09359075408252926, 0.08896782688381727, -0.08136556137776574, 0.000682004564770522, -0.026124089078665147, -0.06878115211513192, -0.12794374106913164, -0.2559820836464133, 6.513166487057219, 0.13098729593596192, 0.04149410154048683, 0.014963805998006618, 0.025165649889633435, 0.10536787959872146, -6.0695461055177695, -0.1954197501770929, -0.04956088166661665, 0.0021587202762424207, 0.021039680957513296, 0.004878115361816704, -0.2447380593621692, 0.15275054266957533, 0.06979974606224959, 0.0184889465117819, -0.030723404004616484, -0.08613909985003998, -0.18851295335780383, 0.5472705397689485, 0.025619981586587515, -0.005641656721957156, 0.00693502404327806, 0.054283086691406635, 0.1883047016469679, 0.40555951207343177, -0.18510456898809513, -0.06067210074242796, -0.019702667050381928, -0.01648793156819639, -0.06994559601580419, -1.0501532192369618, 0.26795242520113827, 0.1268782503225948, 0.0652176421553563, 0.01930385953110947, -0.015462578367919644, -0.0008103586739692803, -0.010774263442437704, -0.071582820704847, -0.06587310581106141, -0.04197459577666863, 0.004251610853226201, 0.11623062759012798, -2.6020070240946933, -0.11748848260179656, -0.029647888685921275, 0.011436617166046936, 0.022254958197706065, -0.0255227937227126, 2.300997561540253, 0.2296168016410507, 0.12095215872957754, 0.06804207953013419, 0.030955390964014895, 0.014692589601516981, 0.17830161219240656, -0.17053579233318697, -0.12804317837222418, -0.10922329917883089, -0.08533601820563219, -0.052455131803084254, -0.004173856039641155, -0.1391973283388669, 0.01265671796077783, 0.04965181431357424, 0.07093504406424056, 0.07617178809823189, 0.051528268956877454, 0.06189067612707677, 0.1071616891287781, 0.05882765355810282, 0.020019598539366856, -0.01473772535226267, -0.040490015581992916, 0.08753212829490797, -0.11316190491718026, -0.10929919431144142, -0.09922308477757091, -0.07987439320019407, -0.052887384716601926, -0.022708050452894146, 0.04008143166152167, 0.0593401352751024, 0.08695522206811634, 0.10882283020933814, 0.12474653956568882, 0.14927708695682484, -0.719160560917699, -0.0003879224196992881, + -0.10222973475726425, -0.08012970056538148, -0.04689057730888974, 8.06806168430825, -0.11410795110865835, -0.10464452909579225, -0.0829632794710472, -0.0569737014384669, 0.017434162588263025, 0.08275230964386326, 0.05667705392730754, 0.10189226726491563, 0.13454095531463778, 0.17670311989815246, -0.23594887281748345, 0.05007504593354198, 0.004535225874587989, -0.016502898588888704, -0.061614986051364284, -0.12925057021574748, -0.6404431177288403, -0.08258943171985589, 0.2674611572369956, -0.03743568525204888, -0.04190555289965481, -0.011774265278511664, 0.078145109125348, 0.02460168065246593, 0.561485627384595, -0.014080794051650414, 0.06482353767595139, 0.10705579806144883, 0.16247039911107652, -0.11747209827920735, -0.04375398315709522, 0.05326981308924694, -0.015754887168151974, -0.07850117547955937, -0.1784840009768756, 6.290316004505707, 0.005954033290573535, 0.24224643649589156, 0.03590160402162079, 0.0035141699898905143, 0.019697368703153195, 0.26687498224926853, -0.060748329707265514, -6.403014677822993, -0.07422785728032422, 0.011008494690424614, 0.04437524117048319, 0.05604130719941913, -0.009048657818492123, -0.272397446645116, 0.1440060663515102, 0.03212403500598837, -0.04282412117643364, -0.15285651263942657, 0.5288989702203284, -0.005352673655724449, -0.010067406706754767, -0.027455685902117666, -0.0030072335190388655, 0.07178329205712053, 1.0157262056502454, -0.010171755064123739, -0.6170199876458043, -0.06828680501126283, -0.009301266321561474, -0.0020459493984774646, -0.09774923381329909, 0.05176199131954662, -0.90605227871442, 0.1895791523559212, 0.07734850846924757, 0.008986562457421132, -0.07121968404532164, 0.11013432923407274, 0.06739897074896416, -0.14735631119968706, -0.09312192029805033, -0.052289420098221684, 0.02701577490682161, -2.4712802515181544, -0.05209945690111362, -0.19204862358768515, -0.024068668237169577, 0.024639731574268242, 0.03447651019305242, -0.14212852900084882, 0.11137065294098503, 2.5637320102690278, 0.15599508904670378, 0.07535565664301924, 0.024751707071666837, -0.00778617447091412, -0.03514139601095678, 0.13667444666444062, -0.18777443824412898, -0.13455244278455533, -0.09846743240870515, -0.04524177189528977, -0.1874931142253313, -0.026708903601112444, 0.03299092431833428, 0.06543318296915468, 0.08784707160619265, 0.09203579110201626, -0.07058861860891608, 0.08800048346867517, 0.23226958655045266, 0.07206710802745309, 0.02191213060052294, -0.02136575120601214, -0.059862376320692356, -0.07576001129975982, 0.060851200326289545, -0.13717250955401095, -0.11909764793127292, -0.09598942151597367, -0.06930845118719081, 0.005592674598260738, 0.0342747439462342, 0.06489319182211063, 0.10124952019702371, 0.1302837797597025, 0.16207905578200466, -0.6579271489793859, 0.05654712295011938, 0.005594707505437224, + -0.08949962337133394, 0.09942345505907851, 0.050975310793904986, -0.051437061962463504, -8.062331075751784, 0.11105331619274994, 0.09515899754894513, 0.02919569662193866, -0.0019954974236198186, -0.048506113558730246, -0.12641920049636945, -0.10328118217125615, -0.1678671067891533, 0.2302215929330027, -0.06056380544068174, -0.06156062376128779, -0.04335854471096984, 0.03465035405511574, 0.08942602259107735, 0.5989895665532817, 0.02433305525618168, 0.09633996959490332, 0.1480093490884119, -0.2537761673095832, 0.021579631929304344, -0.03669644323074417, 0.04874617562980266, -0.030162620988386735, -0.10664405068874305, -0.6163289790762322, -0.03825327711628823, -0.14694928473437852, 0.103551225624885, -0.02916587182837249, -0.017111986832530235, 0.06001766480997528, -0.0008660255952690488, 0.12576965691052666, -6.343718250945507, -0.10949119221153714, -0.010251649178892541, 0.08839307108080086, -0.20449941444314515, -0.04065726589318941, -0.2454425478697101, 0.14558454767858842, 0.05833141752544957, -0.034684164688362995, 6.347185875614305, 0.031992298224788496, -0.0461938915623199, -0.03069147530179739, -0.02871027520103253, 0.01913053703248646, 0.309805458076751, -0.08285654302335113, 0.09020414863825221, -0.5721195655889943, -0.03274514674915374, 0.02925253902126218, 0.058546992681092536, 0.007542133198258583, -0.037397135527196756, -0.9593329565317145, 0.12291189385006318, 0.007471354983986572, -0.10446980725621602, 0.56624378858404, 0.0506761792784538, 0.09061202711021576, -0.11944719413004523, -0.04807598514269418, 0.030698081799524907, 0.9556680031868635, -0.13366593125237247, 0.013175014572204116, -0.1344108698739409, 0.0025628025073551886, 0.02617682852630021, -0.04539324098224917, 0.13415410290172491, 0.02430248738046581, 2.5295139931464417, 0.1516435195134952, 0.05790928501552883, -0.04073319847935834, 0.13791514987582887, 0.0009452785104249184, 0.13973404498026354, -0.1709488932117481, -0.1179012555537311, -0.047893490112809856, -2.5203901777023505, -0.1129958038224923, -0.03669728225311275, 0.02515253164179143, 0.04984295622349899, 0.05162020901851927, -0.1296734609250329, 0.17753840805000098, 0.09480606153917326, 0.23378169415597222, 0.06858272229173601, 0.015228276651545358, -0.02620261005084168, -0.07143327304781746, -0.08685321120981104, 0.058687759300454, -0.12823921272911476, -0.10013237114820595, -0.053738404940902096, -0.19570349417293303, -0.030764585227750274, 0.023295259450949568, 0.05686272400724812, 0.0870367735285528, 0.09943416306968034, -0.05068445662328169, 0.13437921725019264, 0.10888718181612933, 0.03774373800255182, 0.012279626080112238, -0.0305091309832769, -0.07641891482672414, -0.10858844551770352, -0.15499275989501432, 0.652369381735076, -0.06650836006980987, -0.06811980347026023, -0.05155622403807847, + 0.005516028993540706, -0.010705624971106671, -0.0189565302991932, -0.024352957446220756, 0.025289118400790626, -8.06705577311086, 0.05727599883516493, 0.03619828509377038, -0.0018867958500912718, -0.04567650819818664, -0.09504817180251912, -0.19231561870523406, 0.2612945932299665, -0.0519077939009257, -0.0670586778975546, -0.053828621892963446, -0.022349176336481036, 0.029546206415033027, 0.571700687376633, -0.015611461295189866, 0.055299932832397314, 0.08972352206871959, 0.10971610090504924, 0.13219601492006927, -0.33216170391144983, 0.05853913471683758, 0.011205994010169529, -0.033283039281816196, -0.08531545686078568, -0.1586478322207111, -0.698077572160908, 0.1722309741352419, -0.013790268292473096, -0.030920543844135895, -0.012857266504000764, 0.03521119351050195, 0.1699443533923497, -6.419314226331067, -0.15964548715898064, -0.06804154447512634, -0.015135666007748627, 0.027274724196869937, 0.08363831948356404, -0.44615383734875613, 0.12462815028114205, 0.0794740264626107, 0.050144302112166916, 0.007059224497596883, -0.07916160879069856, 6.308284071510552, 0.04563483956313252, -0.018880280745613764, -0.020580519301038436, 0.00887895648727538, 0.08001661996207937, 0.4318882883739824, -0.6973943941070802, -0.09502224252156818, -0.014323253446700435, 0.02043021259576544, 0.026697177538253535, -0.006285425767229472, -0.9542229329633024, 0.15750858612053675, 0.06306086292213102, 0.008269954367906118, -0.042802970671970225, -0.1221691809166498, 0.6471632138867229, -0.07080743632809594, -0.05506743645796369, -0.03698448138558852, 0.002170698745918742, 0.08607373312206457, 1.0455731580736294, -0.2589497308962901, -0.055349270938423234, 0.0018200495122094873, 0.02449664970329224, 0.013088357026660336, -0.11412912820275711, 2.6098774092602666, 0.2018913333755603, 0.11777338788614355, 0.058792057737624304, 0.003924943516939727, -0.06385293995443864, 0.30209404307137955, -0.13552371017092535, -0.1200613793945633, -0.10744438551022151, -0.0763180104548048, -0.0040730368164770825, -2.4802901487951265, -0.06305865725707238, 0.005352616269176491, 0.041613535268121504, 0.05669460135766469, 0.041541034682580635, -0.16929054450610537, 0.3127043913332912, 0.11802375753773398, 0.061588642540323146, 0.01567537685783571, -0.02321423677379786, -0.04761486471101972, 0.07502722761103542, -0.12307152727007098, -0.11187023643647542, -0.09394765286301976, -0.06367412151921603, -0.012407618806803855, -0.15041217647257765, 0.004736195931349219, 0.050461631938753304, 0.08051140414298807, 0.09706673871111599, 0.0967003273199446, -0.060824247738709813, 0.07611694698996274, 0.051863271538195505, 0.012811272528800016, -0.029860138381374968, -0.07417882168080701, -0.13011776848982964, 0.6736345785588342, -0.05974278553896377, -0.07314286293566499, -0.0614964631353776, -0.03443882675316237, + 0.09546026974022506, -0.09001488737191221, -0.016088379036919575, 0.08274484474219371, -0.10811949489229175, -0.00182974912271975, -8.096700682394221, 0.025839840304030415, -0.00744161659270276, -0.04791947220570869, -0.110458542472055, 0.26987995339266924, -0.07771631229656406, -0.03564315939249085, -0.04452592086382301, -0.027351372150885567, 0.019180220910394064, 0.5125999411040283, -0.07906885343825976, 0.027662574731947887, 0.04921479931634176, 0.06777171193610876, 0.07282355419570807, 0.03048493296752848, 0.17073242734792093, -0.283586346396979, -0.023507055279007618, -0.043546996091778034, -0.08434494767334, -0.16503751430033248, 0.05631112129567961, -0.5639097091592519, 0.03765219786882869, 0.0027317648294570285, 0.02141976485438657, 0.09644482189302081, -6.360995310039501, -0.07243353046664258, -0.13834603981207594, -0.06453451117870723, -0.03029680754489905, -0.02005057693437154, -0.21403156392027245, 0.2510029623655464, -0.12147882923203898, 0.028467538343820542, 0.02773106266482861, 0.0056194175942374525, -0.03490554143184599, -0.10724743114892787, 6.312124302849853, 0.055685162647931996, 0.0187940727987298, 0.04008777639496834, 0.12976929714014063, -0.5353878020908359, 0.25034372767201635, -0.1381210267892371, -0.04157929925433512, -0.01696975538612744, -0.044451351746277123, -0.931606877646303, 0.1942970293896293, 0.0674340004755869, 0.04221858171814741, 0.012680364330569821, -0.00904926119903382, 0.03845869580723271, -0.2470938677229218, 0.5000655969329495, 0.012048538542970388, -0.004529087904273088, 0.018291474473026592, 0.09060835655956845, -0.04594143614275073, 0.9751858500780687, -0.12182294681560202, -0.03330667749513905, -0.011405349003059784, -0.044137794385239126, 2.480379856182274, 0.045857708301929034, 0.19459187208942574, 0.10776891338961755, 0.0631307177426288, 0.03553938975668647, 0.16783244013566567, -0.20159793119098446, 0.04296338264605204, -0.07085730324111317, -0.07740746181320057, -0.06285550993789402, -0.03458669486004079, 0.062255886898648694, -2.428872221442577, -0.04647732340963717, 0.011853748558046107, 0.03101174814736063, 0.01681445958365735, 0.17708213846048104, -0.14767283726579805, 0.13907552982115826, 0.06442839447969095, 0.022948251487359905, -0.005546201206189205, 0.12315335845173969, -0.08397445104436185, -0.09439684667476128, -0.08763610860804372, -0.07445266757064939, -0.051969413369396644, -0.01811872166721995, 0.024026801403704168, -0.12283965398370078, 0.027912182429826626, 0.05968390290776959, 0.07678925391931485, 0.08599522118811476, 0.0386233371432152, -0.11798642191364911, 0.0506301527117855, 0.009595542160925064, -0.030529053478082935, -0.08271515053398115, 0.7063804746692783, -0.039129249030163626, -0.051671341412577565, -0.054005272635653245, -0.03886868223711826, -0.0027500570339311636, + 0.09763877872533565, 0.09424877171094094, 0.015087907537782835, -0.10847304625696494, -0.06960559907025367, -0.03765630505599001, 0.10301524196727248, 8.118608005341423, 0.02010242491734776, 0.07167457042069825, -0.3169321471881037, -0.0037824049483454747, 0.02763946248132121, 0.06981547319435022, -0.004472506364378459, -0.028709956309193485, -0.5062351812633621, 0.09129992464780262, 0.033140348352620363, 0.01425477586638646, -0.03963154535232727, -0.031634628837500456, 0.01211450066548135, -0.11045615594722946, -0.07939877001179252, -0.08933781599285412, 0.33737579608659574, 0.07407601945378095, 0.12229497126222069, -0.131486305959289, 0.02844747396532299, 0.07648952424732536, 0.5460068301208371, -0.08985234203550074, -0.1116951655891476, 6.358089949182233, 0.12136670604315086, 0.0560027141581787, -0.023740614526536308, 0.09982891637167393, 0.06908845045791268, 0.27089200060263574, -0.14744432971830637, -0.11100157116584919, -0.15444130235549003, 0.17315660134357058, 0.01630588722758486, 0.014243070933616764, 0.02197959910516288, 0.05368262966631254, 0.12170697357890892, -6.33251643549726, -0.11604165460514115, -0.13911868371188696, 0.5745633042849582, 0.05113141648151054, -0.02540114048698694, -0.3038535778181685, 0.1401731095108083, 0.10618231452093224, 0.9725666925112989, -0.1593642716824143, -0.0925468140519567, -0.07795371900319215, -0.01661180349399949, -0.024752440432723732, -0.09388067957715374, 0.13331460769933678, 0.1097543732646197, 0.16548448440099717, -0.5492730417177452, -0.06729602420380759, -0.08360289405534105, 0.114085467757849, -0.01651364913598702, -0.08808700541943826, -0.995215233234852, 0.13456076931204142, 0.10171136194975594, -2.4493832487671865, -0.10628609210191164, -0.05517498528742848, 0.04963291075296161, -0.13871984740500776, -0.08382663339871799, -0.22627265408037034, 0.10235001176275527, 0.09137316716612753, 0.13623281969046977, -0.08610248655867869, 0.025502035109237098, 0.035055166747437874, -0.003613788568284426, -0.025633143015203808, -0.08832342365522686, 2.415672988226321, 0.057123803364778514, 0.028279431283911693, -0.1658856373152583, -0.03825862047238726, -0.0028735639577504024, 0.2016997627760072, -0.09968726349375079, -0.04294332500728998, -0.16896566039678418, 0.04209826148718743, 0.04609348992258622, 0.04758904753253457, 0.056073922894752104, 0.04490013792728065, 0.02838335337348319, 0.015376973319403409, -0.009885878119776148, -0.04753689137960271, 0.11360453620225844, -0.023597041659171536, -0.047826142480917766, -0.017972161244449482, -0.028827602960068366, -0.013282049934099316, 0.1602091517738877, -0.00718580001826985, 0.04291430058671142, -0.7486006390608783, -0.005974414543593043, 0.02119064967541129, 0.03288126369940819, 0.01687164055586965, -0.005105229625768204, -0.2021584669780742, + 0.010048644834670726, 0.020393373126775385, -0.030606811364651224, 0.036406934545988937, 0.045283693676299704, -0.06880150242160672, 0.07231218814324884, 0.06806376381538001, -8.150594438085447, 0.343930019146225, 0.04090786149009762, 0.01858784361220367, 0.012002878357881386, 0.01291742898980719, 0.0035017338386622576, 0.5358591244046575, -0.08435880682169472, -0.04021616561393293, -0.025981721740681696, -0.021082373485992956, -0.03206638089373803, -0.04045792714544594, 0.06886751952818682, 0.03594920717915451, 0.02803912882934767, 0.025768774791831928, 0.04058463210743046, -0.41395518175465446, 0.14211662935955438, 0.013941486618323728, -0.0013003519434507116, -0.008551622308102191, -0.02121318669909189, -0.4358428849603624, -6.265662331327944, -0.07006680757938147, -0.03506036613016858, -0.024582330052355827, -0.017178136326772675, 0.01984886455123902, -0.3386164644755314, 0.09960355943962518, 0.053673135297654384, 0.0493798761860228, 0.05854652308665731, 0.11013828341091836, -0.21426915642012945, -0.04366734131321959, -0.032672419823457366, -0.035704044945808255, -0.04948453653537688, -0.0970084598112102, 6.426811590628165, -0.4975460691730058, -0.0387242433041064, -0.011988736219215479, 0.0015510045127153926, 0.02191434404874759, 0.23921501350151042, -1.0908246131712254, 0.10286034088221141, 0.05299566354749541, 0.04180602997334454, 0.040939062366855905, 0.060042637687300116, 0.09725435341364314, -0.09962796643599628, -0.053470220674593616, -0.05021677891464941, -0.06072283683481357, -0.11293763946849841, 0.6345358757579975, -0.06534676937196615, 0.00987071611836371, 0.01989530163206088, 0.03327413307542304, 0.06976356103703463, 0.9240227405183676, 2.317703636477656, 0.03481291913820439, 0.016798628816617422, 0.01031803941819498, -0.0009385564005104374, -0.07436000603175585, 0.30003378272817227, -0.05522375123935597, -0.032678242084133946, -0.03578060597199029, -0.04739149337827042, -0.09081601255807104, 0.128303255570409, 0.041173786952904634, 0.025138727702704422, 0.029252352129097603, 0.0447274059839361, 0.09113445558171973, -2.445877998574949, 0.0775210261669394, -0.0077902290145288045, -0.008983506625892479, -0.015324653628200319, -0.03560757777179329, -0.22304535951938453, 0.24443614811594908, 0.005427276015523064, -0.00037433864261565697, -0.0052039099541955625, -0.007217010677659508, -0.004281292394125336, -0.009511216857273408, -0.007974801324078573, -0.00024162865329713235, 0.007980636087286275, 0.019108663156976347, 0.04361823053800773, -0.12526399358573503, -0.03555877722482104, -0.009638038199488164, -0.007607038934412613, -0.013099555019118414, -0.029275964382167063, -0.21195062037099965, 0.7835541936331571, 0.04159250643125256, 0.01900949876162561, 0.012399517446658015, 0.013880525516373421, 0.02636709762321643, 0.2233517605168257, -0.07563430319261688, + -0.08678016677529052, -0.11031420574870478, 0.0449135850878602, 0.06062561869001348, 0.10190167077438685, -0.08394091939447608, 0.0030650139421965687, -0.09557271996490631, -0.0919280079230741, -8.08622565719822, 0.04653199835395938, 0.0503413753775368, 0.060265781376631966, 0.08685816793162465, 0.5487767872650446, -0.08642422916084258, -0.016485489531271325, -0.020640476395149543, -0.029420650926540892, -0.04503463579404804, -0.10357849627650814, 0.003260242675504843, 0.010815444657512385, -0.01247727171182977, -0.016874281600555485, -0.02007339573362965, -0.048047803308330694, 0.240475645953163, -0.27304446699114515, 0.009509841323501633, 0.034161112714881245, 0.05432434214435644, 0.10363431851862581, -6.447470759408736, -0.9050989249027889, 0.07991849005502161, 0.025833506104417592, 0.0029096683660594994, -0.029568530159508888, -0.25671303491438424, 0.17506864938096267, -0.008602388823179097, 0.003382646403123024, 0.0030104761924697465, 0.007140214508111503, 0.023219772235214986, 0.0738522664332465, -0.23646057279385527, -0.05923255064970773, -0.030095507665314547, -0.012838029980881904, 0.01565113563954769, -0.42732306610471926, 6.2757560355405495, 0.06608418251202272, 0.013732508470003402, -0.0156297573130465, -0.0638096625851079, -0.9248019990582927, 0.403129275795613, -0.05728779489563551, -0.013061454513696391, 0.002913901316954237, 0.025619015398416933, 0.12518710627009577, -0.06056898526170251, -0.0553542650137967, -0.018539987002626046, -0.00629934765790649, 0.00027152894010906703, 0.017468613257670462, -0.21923029675683203, 0.5619933797309038, 0.0700778744078221, 0.0276734706329963, 0.0027328423877495678, -0.039031096183989034, 2.5842459167262835, 1.1737562299537243, -0.12395501554025712, -0.061307616607466864, -0.039382378089705794, -0.014368913278334778, 0.15775279424652466, -0.20193198869183093, 0.03802468274120696, 0.01037097085509009, 0.010145124874361033, 0.008119949421818928, -0.00966329935907101, -0.018453759051771268, 0.19199085595372656, 0.06846180799824886, 0.045800496095626864, 0.03398187717579537, 0.028334908702964734, 0.11766887900983763, -2.441092648142086, -0.09913259530164387, -0.062418504277886394, -0.04854394096533987, -0.03776451594090435, 0.09957079446029204, -0.2517994699674738, 0.07526731418114252, 0.0428088473269953, 0.038757353217096224, 0.03827117932408142, 0.03968880196048952, 0.03265393339693545, 0.018532435436369843, 0.015555445507188348, 0.009372746840949131, 0.004765965598582125, 0.009923725220148172, -0.021395447798107203, -0.18597383802754103, -0.062130013687482, -0.052432686859993916, -0.05120698349759367, -0.06603920288003585, 0.7434671267502343, -0.09300551058778217, 0.0532925856457831, 0.04923208962964848, 0.055153659042012415, 0.07297381823392024, 0.25738094583271237, -0.044768306953422266, -0.017386113565772354, + -0.10382369325929312, 0.06358031781486255, -0.04618015560624862, -0.0994642063622858, 0.021475575399959854, -0.08437249087068677, -0.08580940133836398, -0.056085059907100665, 0.10756834188892095, 0.05686158209122751, 8.0821942317052, -0.08656532698904018, -0.12315662460873394, -0.5933576511679342, 0.023050401650672514, -0.0038154980400741945, 0.022782703667395765, 0.005258011276877417, 0.0388457855914337, 0.11049718689297483, 0.0061896863045902695, 0.05276975811153828, 0.07797368730302778, 0.0412900206439748, 0.05978322418719162, 0.08980059933665524, -0.18197983902148218, -0.08087052497494199, -0.1190009518119961, 0.2531875286437655, -0.06391121463573635, -0.1443717828934531, 6.379057757524487, 0.13416903597929586, 0.11844762449325319, 0.8130697443116963, -0.11672839691633208, -0.020557382211628034, 0.23580090344138405, -0.13523068102017743, -0.06427895605067904, -0.07998771922781289, 0.05899385146408964, 0.03859599229947608, 0.03213013288412714, 0.029136704232311794, 0.0033568515763415796, -0.06659259928006656, 0.23209882372891116, 0.03556948538642046, -0.035134729473090626, 0.3446609521918541, 0.0691108566921097, 0.0963741109439386, -6.328653875682515, -0.06187888495011376, 0.05107178513410915, 0.9603264282565577, -0.1357635185545611, -0.08547169866428994, -0.2902522272179834, 0.1065281461057368, 0.029038975943243783, -0.08659481137584607, 0.09912997107865018, 0.02445836407830948, -0.021760282493513805, 0.007933982546959872, -0.03179715342662248, -0.07143826854625823, 0.10760329104026428, 0.04209437533518823, 0.10485441481609192, -0.5776082475801144, -0.052090017706124536, 0.04449075089666793, -2.520445119536298, -0.12388531852348261, -0.11817554285458515, -1.0829677697463314, 0.17785782861892419, 0.08452003086830573, -0.1198849679513887, 0.14835100822361214, 0.09457506365796753, 0.13822801926122685, -0.080252041908554, -0.053645983549811205, -0.047226681956467204, -0.08015710645246832, -0.05573785602382786, -0.0021638913318924313, -0.21046116632031264, -0.0717890601460961, -0.028537075054968053, -0.060233465188009094, -0.009520703910551986, -0.03060212289334263, 2.493412914426885, 0.13655737452418226, 0.08325183758806454, -0.08777321391942303, 0.07194458415932736, 0.05852060783791113, 0.21722626143387713, -0.11289227351245568, -0.08487273994999975, -0.08425347950158635, -0.07376301169202837, -0.06650050492182225, -0.05547348901781746, -0.027591780184298087, -0.012068252410971536, -0.00016511717606992882, 0.06029494580871697, 0.05102111765936679, 0.04149085093131441, 0.22669345175545652, 0.10393107420693082, 0.10366136062371417, -0.7240725225767266, -0.024150319203558313, -0.02279429888811313, 0.08702295128657234, -0.08783652564060054, -0.1079481985250843, -0.2962520531739346, 0.007336603306000389, -0.0200484394482775, -0.015562584253692918, + -0.02541219496819449, 0.048016793358183756, 0.08174354070018061, 0.09903493137669858, -0.09222362683845366, -0.13824034560173012, -0.09036417350119184, 0.11585144952920329, -0.10168297734264334, -0.1048211794703612, 0.013765726485859456, 8.04547613625061, -0.6231285506458235, -0.016306205667841384, -0.04877731552371223, -0.040752086997776604, -0.014989943579573728, 0.0412115904953243, 0.08693670122013031, 0.0005735340353540952, 0.06004354819728053, 0.08808369717644049, 0.10573665082463068, 0.1260632156191085, 0.11504369876893744, -0.14246215576631943, -0.040178226075313406, -0.06130435207399487, -0.10164289402353444, -0.17293790376733237, 0.14329407117644488, 6.397793995868296, 0.12556589665462348, 0.05416005415014147, 0.04337519750016716, 0.08601835422515569, 0.8214865491429539, 0.12243507183256219, -0.1850137214337484, -0.08612459628370414, -0.04074069643885275, -0.014344805060563015, -0.037890524746096665, 0.09475472576635258, 0.07537100975807176, 0.0591081193148425, 0.03654220337362479, -0.001222605955755851, -0.08948234432709856, 0.16782230939488618, 0.3689006221256699, 0.05156189969660141, 0.014332678950306627, 0.013623747046106187, 0.06949646334173429, -6.292751614742526, 0.8871089086443518, -0.14436593298000933, -0.05038798571852876, -0.023618362325206976, -0.03781310667025006, -0.2749895257816698, 0.02309462553340247, 0.1540458569137756, 0.06376925803839606, 0.017029485876972117, -0.023147328661103583, -0.07237767569035272, -0.07027736041717669, 0.07606906096701144, -0.011402493987434537, -0.00648412471144777, 0.026840937422508482, 0.1204920291095587, -0.5080239846230248, -2.581310266685049, -0.13149529070157517, -0.05653396573947278, -0.03442412682787488, -0.06989581948595575, -1.063675670071708, 0.019115855338770527, 0.2189096473423272, 0.13370693264659272, 0.08560535306221995, 0.05325577072256504, 0.09498160481091777, -0.11814125995585534, -0.12649593288414196, -0.11353609403391274, -0.10150293800693366, -0.07465376729686807, -0.006598328278910215, -0.19445982383976368, -0.0986471864203052, -0.010081322863808528, 0.026849419766960536, 0.044065103442800235, 0.019317556860553364, 2.5264319600995524, 0.0006801194752417139, 0.11754975522831135, 0.07094743492156486, 0.037959400834034596, 0.02203483463547873, 0.17537827418043447, -0.15955322794868262, -0.1213525399678422, -0.1119591898063535, -0.09737079704399698, -0.07619016214648455, -0.05236871555411826, -0.0185328315856349, 0.05323129887336986, 0.06135233756961844, 0.08102197351813101, 0.09245913389423155, 0.08483181042612298, 0.2797342199055849, -0.6738705930300237, 0.009961409735174093, -0.003907799665939238, -0.03033730699208048, -0.057193343999535795, 0.027974055447716917, -0.3310011903675417, -0.029275427340832216, -0.05928082180162675, -0.05331353936957539, -0.03365896272621771, + 0.07636315818232069, -0.10584024721218588, -0.10361545849668469, -0.027280755389776073, -0.08773011601425988, -0.09381877058140659, -0.1108918638124188, -0.005204884230354484, 0.06807257657038154, 0.11173674277819826, -0.07047872205362103, -0.07809107726875153, 8.07776295135453, -0.08200308665405076, -0.0829265933181782, -0.0624383291802566, -0.023127317049226326, 0.0691854587865175, 0.008882344228516192, 0.03687535613256421, 0.08615722979891632, 0.1186527417404134, 0.14301044273658348, 0.1873395930595419, -0.06795980192181894, -0.023939036003819636, -0.025193816809910063, -0.06514801848646223, -0.1220757055038017, -0.22104095910154375, 6.27286715934065, 0.836210013906239, 0.10981648634907679, 0.038840383085186114, 0.025063190268443503, 0.06098200423721267, 0.3779609011200649, 0.662449717277619, -0.20992457710388301, -0.09649881849915609, -0.03904482290174687, 3.558939156567131E-05, 0.019078699436760882, 0.00536226572224352, 0.1264017015697788, 0.0865066112738554, 0.05675498533833645, 0.013215292058196715, -0.07013528736402061, 0.2541908003841436, 0.2778647289432964, 0.04340523623938808, -0.002644057223071844, -0.0111531236628718, 0.025311027505035777, 0.5958326823071712, -6.403055787218646, -0.12836254459069607, -0.03605577177322772, -0.004675230701022937, -0.01214919962379285, -0.13855946566726263, -0.1477165863661175, 0.18261349981296826, 0.07634532232453167, 0.01734163992978688, -0.03509080215131655, -0.10572883171918179, 0.030531235036560078, -0.0054673328070434235, -0.03813746120148831, -0.02678993612510361, 0.011375570387000322, 0.10143567092338947, -2.4331063273692513, -0.8526632323388648, -0.13707563825882219, -0.046184666490671475, -0.011044275093663791, -0.02461810767897954, -0.2976252893812134, -0.9239185545182821, 0.2856269445691794, 0.16509903870953235, 0.0981367917961603, 0.04635519455541668, 0.021255749727985274, 0.013947198013329665, -0.1923357368035472, -0.15516067798135652, -0.13892205141541403, -0.11048622569173183, -0.05980892578687591, -0.04657397809678354, -0.18198712707408315, -0.012460770916989272, 0.04507228925050599, 0.07925293906542236, 0.08934265747331649, 0.05246466569935593, 2.550916559797357, 0.16618040997285957, 0.08827222664347256, 0.037112010953475605, -0.0014253801879913208, -0.013380525444769087, 0.12735320602498476, -0.19495842301774147, -0.15215700095535734, -0.12793609602604, -0.09920487611948017, -0.07046886830361321, 0.01159260260808992, 0.046350532772536646, 0.07801384482869081, 0.10799617495454639, 0.13019967193843784, 0.15158317038649555, -0.6711348869545988, 0.14096526985521673, 0.043494886394840004, 0.0033902923764225212, -0.040273499286461234, -0.092436990724037, -0.29769540067129796, 0.08372932183369775, -0.0969406776574313, -0.09347353869183395, -0.07623464919772904, -0.045402030289223294, + 0.10793057586675722, 0.046972378223934214, 0.09125628855456541, -0.07872593288655008, 0.07129932886921847, -0.13283797597128058, -0.011908762480970763, -0.13072944951306323, 0.0065335703585380454, -0.10791672135405188, -0.05659753812595938, -0.06664013273367413, 0.04177226683102746, 8.047186974701429, -0.09022900580987292, -0.06116777330204343, 0.023442410131196523, -0.06050709722506298, 0.0182465263895637, 0.09233155415334882, 0.08978514433156976, 0.13324964735944578, 0.19092959317031002, -0.0643699090114932, 0.05266817601244056, 0.05168696436102138, -0.04723084900510066, -0.0816437893773593, -0.17659103559480482, 6.363385930630638, 0.0493283993386362, -0.09742991729769407, 0.7444077846630566, 0.07818429702123991, 0.05479379919216809, 0.31374409388786784, -0.12726965235717325, 0.0005296564594925446, 0.7687446758722001, -0.1565976535220701, -0.053132474778735284, -0.005587296319685353, 0.04231663398248198, 0.05017446571927053, 0.007717894574488793, 0.11843785946451063, 0.05943848247743888, -0.01309172167675264, 0.36334290087568855, 0.022210917642583594, -0.09183264726817131, 0.2213686445012416, 0.018108402653401412, 0.00977615040086377, 0.5151507444983123, -0.10021842797398783, 0.007750396468695492, -6.309409998081736, -0.08032510679814547, -0.024269052171494443, -0.10484908924966896, 0.1260292561400128, 0.030924978281322457, -0.23923057202840278, 0.13128895777213512, 0.02307696871342657, -0.06302395137540184, 0.0755098374255716, -0.042853712659186916, -0.08393030203919749, -0.018311713374933536, -0.0185189045275167, 0.04710983840784935, -2.5592200224351145, -0.07771317251281418, 0.07917033789433958, -0.7604784120115963, -0.08858620530830191, -0.03563210705660502, -0.23773635450569128, 0.13996729668511865, 0.031105707434040397, -1.0016214309320919, 0.2393150735228674, 0.11935259952363964, 0.06304201769128526, -0.03662952001461167, -0.05360616554750386, -0.0012707035097204167, -0.20760974187537806, -0.15497391036167396, -0.1167840502176325, -0.14696660834102737, -0.0435864512282928, 0.05245443139721839, -0.12643303442071763, 0.03694150762453685, 0.08516171192737482, 0.1067137795222507, 0.10053831911365674, 0.04646373596227593, 2.5195204063295207, 0.12659883286820878, 0.046413191814859145, 0.0017106260658057426, -0.04944089496879622, -0.056931680067784374, 0.11057481040175854, -0.20100685657591533, -0.14554124743397379, -0.11567048638727462, -0.030406002352027787, -0.0063152069173457726, 0.033167727124000235, 0.08783035572300735, 0.12005277865043662, 0.15858713428460414, -0.6387265785242675, 0.05707444198794498, 0.03959791355176412, 0.13192637883962527, 0.006942985949308533, -0.056089587148758, -0.27536743312597234, -0.016823034093612743, -0.06819962374590677, 0.026272158885951913, -0.10777387061246957, -0.08052235115717776, -0.030473384701887485, + 0.04026711984664956, 0.07649638505388588, -0.10171946067836789, 0.09957907722227868, 0.09625601564224098, -0.11137203611094945, 0.06628230503622876, -0.013390274367800985, -0.03783763429052774, 0.10065650264722695, 0.10631912041992468, -0.12680809458329098, 0.10879411473405065, -0.10814059390885894, 8.057854510439787, -0.004643338686410536, -0.09847968084898623, -0.02726268607017618, 0.022964647318142295, 0.07129932302152286, 0.13966020013253888, 0.162437139070022, -0.0732896914338863, 0.056823685334177365, 0.05500257241365253, 0.029301734479180497, -0.004901975431289396, -0.1587965665758726, 6.394691490836114, 0.09955982937871667, 0.016862905626313915, -0.03935978057943669, -0.12768750841084034, 0.7595842337889211, 0.36653231059334446, -0.1327182793706535, -0.062308899195633205, -0.01844217754491939, 0.05380611730120288, 0.8105052115193235, -0.12318099000859956, -0.010842848853193914, 0.02559165060101737, 0.044686546799933446, 0.04264074124276318, -0.018872134914252436, 0.048804336789940006, 0.4090599671111601, 0.07926935361932136, 0.01828094445230459, -0.03328668115718064, -0.11657582356408164, 0.233488535151689, 0.5436597365204737, -0.11495864282398127, -0.070688796674233, -0.03076050973307376, 0.048544690350773134, -6.289507448983768, -0.18030339192525568, 0.1136016013989588, 0.06415951726204372, 0.03394394095500064, -0.019935678981543137, -0.2916840109699245, 0.0509459526308596, 0.13330122058177624, -0.0004683171113998852, -0.03883011709925277, -0.05573393782804548, -0.0643901710791952, 0.05539358026101937, -2.585593942524876, -0.134191939036918, -0.05616114806556555, 0.011313129545576811, 0.1261669594222955, -0.7492014829818607, -0.31494039525958917, 0.12843766620614538, 0.08989737489777228, 0.05872235321946129, -0.01516740402674338, -1.0451036619440592, 0.20444735422620008, 0.036561755584497035, -0.011762703301126165, -0.05178284852075021, -0.06951739461144246, -0.0018889754064458364, -0.18591552868087313, -0.19174221049662182, -0.10081022791337085, -0.04809696814515374, 0.011319420588010609, 0.10154082055464164, -0.08601978723614034, 0.06470689771431037, 0.09668059183860733, 0.10088435392679626, 0.07874280861317381, 0.010170367365969823, 2.4748490769704086, 0.09126617427492012, -0.0016037777129402908, -0.04188809480013278, -0.06571051756706048, -0.0635165760444894, 0.11624729401283763, -0.18912918476034857, -0.07713832923426889, -0.05174722086917327, -0.008782054845396292, 0.035328413830395866, 0.07549505018419234, 0.1387734911506422, -0.6473542653807108, 0.06388993490212702, 0.06943433968908974, 0.04854678326179285, 0.003346159590329467, 0.07237076092001127, -0.22806056782725526, 0.01885737385612618, -0.04695409603276368, -0.0739375961324633, -0.07926680993754542, 0.038703898609053544, -0.06230399489788063, -0.08935491349085511, + -0.06441774045913008, -0.10700191631661887, 0.1071913818660106, -0.05377873785617371, 0.002584405433907655, -0.055029836860780605, 0.1074961662226672, 0.13717293698885852, 0.10218715207879228, -0.01552823798818151, 0.037630013790470714, -0.12995162253621656, 0.14910180228941064, -0.09681540566214078, -0.04227175131899349, 8.03924229774863, -0.05445784508531304, -0.014671643118837063, 0.025580752034263687, 0.06957324156866536, 0.1426763941936004, -0.06894274338564688, 0.02892446773491031, 0.045669217629800696, 0.03287834822612026, -0.001971097979778458, -0.0823394236492091, 6.488217161313367, 0.04968768600366741, 0.038763610186778374, 0.010651503768040776, -0.012876632803206306, -0.023867149352049255, 0.15283075372971522, 0.5694162439645285, -0.008544702096038304, -0.02311274690259202, -0.008857444169670603, 0.02177729941833151, 0.07899209979533452, 0.8561530150775658, -0.09209202551542739, -0.00882160722796943, 0.01755666964038849, 0.017673571935180876, -0.027011448463067356, 0.3309158188143988, 0.13714869579810163, 0.06281832628317707, 0.0236023883242647, -0.006000310892108396, -0.020267126854528472, 0.40740910790063456, 0.10319665278423296, -0.041736376169853845, -0.04471930335565899, -0.02964607789698437, -0.0030173645083396705, 0.015605644805582797, -6.163924444236691, -0.012392713951933698, 0.02071465005969375, 0.012926687578207474, -0.018021955294214465, -0.09757568505138758, -0.1824536594008213, 0.11242699546892498, 0.01890982796098928, -0.012908544404364397, -0.018628956229839122, 0.018723748099567394, -2.638123435977942, -0.09869762258904557, -0.07789513357319044, -0.044568219819552085, -0.009411544715289988, 0.0223077510575429, -0.09231434135813221, -0.583081507977849, 0.0116693431419152, 0.04615762471377377, 0.04305790003963683, 0.016767949702697904, -0.039327230120900114, -1.1328439419048715, 0.1294692346065628, 0.02163206116834293, -0.02711472618355637, -0.051779633988003004, -0.04763791269899578, -0.03655884076235022, -0.168135842467396, -0.0918175885054614, -0.04543996423310459, 0.0008013410923951025, 0.05093791527491498, 0.1304735379595544, -0.07547637477729585, 0.0578412949958913, 0.07384935409628163, 0.06383932199723868, 0.03069426902007777, -0.051772788946952364, 2.431415991167693, 0.0477926364303054, -0.01740252522697089, -0.04780903836778805, -0.05964681043544828, -0.05273067757782579, 0.18728736904065352, -0.12451974046934111, -0.05505083661235077, -0.010024976407584263, 0.033202230070248695, 0.08554974053450615, -0.6951528463640314, 0.05086897884634367, 0.061114979490584864, 0.05467438478251907, 0.032689244922177174, -0.011245284460994875, -0.23297448043972102, 0.15016463620542542, 0.0005184285732990901, -0.03782283616836318, -0.05727675633319171, -0.06083810777129994, -0.03414459863062114, 0.030711697378856928, -0.06258575396457655, + -0.10987722726441643, 0.006740834124801482, -0.1041630751343584, -0.022036753743931797, -0.10799347169949239, -0.004623543374331746, 0.08825525263428709, -0.025693531390143232, -0.12566312993398362, -0.04286232101596544, -0.12239281132263183, -0.06643846195308487, 0.08666482594500613, 0.0901184043014958, -0.10313580356926229, -0.10314314400859306, 8.08075663400026, -0.0017592255789740108, 0.031983377625557585, 0.09705253415762971, -0.1371147833194646, 0.009064823360637853, 0.04976914027700974, 0.005365721363694842, -0.010917258435349964, -0.07830299086114634, 6.457281246153268, 0.16513763493332775, 0.14661074195502716, -0.03855134915838804, 0.009082137647566935, 0.025839978066750535, 0.26582605572613355, -0.2102477162975499, -0.21675123863080556, 0.6751756817308813, 0.04439035329464852, 0.01692185187355455, 0.01650257255758103, 0.06942827458993328, 0.11451142972518158, 0.8531726972869935, -0.0996081955756134, -0.03543954378554093, -0.051620922659756596, 0.3653637995918544, 0.06317036482023697, -0.013461438168482054, 0.08163261339263461, 0.03852662840893761, 0.03632031118376111, 0.5149306584939378, -0.14673692766219826, -0.1751870011827506, 0.1720234639750422, -0.0011282687819839377, -0.017142425666424987, -0.06217064788663741, 0.1075791803617433, 0.1441529772477883, -6.224482814546882, -0.06302351130429232, -0.030932988552238805, -0.06453779132427473, 0.08946789932999166, -0.03691713005021097, -0.29432049556636075, 0.09958861312880585, 0.03874123595351242, 0.06098999837934149, -2.5790766537588734, -0.15081115777933207, -0.1363047208848417, -0.009815948473476332, -0.03138938172937322, -0.033433149916891836, -0.2262945878178812, 0.18516885747846723, 0.22877277222099113, -0.6615762036517241, -0.03449826352882379, 0.004582060016987355, 0.018869522051500248, -0.07325180502675421, -0.12023331850055081, -1.1409947143568278, 0.11363729353539645, 0.021237944242019746, -0.005687365112269749, -0.08630344287915226, -0.030357476138113904, 0.06156291796461355, -0.11298404990624267, -0.04308948791121203, -0.0057606096163588805, 0.030128716805230882, 0.061772290244848094, 0.12265622083283045, -0.09722375181714749, 0.021376600066527196, 0.026242839694650688, 0.0020990534690543683, -0.00730550457170831, -0.07955538339399332, 2.4034981745276016, 0.041453020470399615, -0.01172635186513138, -0.037346671295151956, 0.011276730918835076, 0.012537927222804224, 0.20735417439176962, -0.08283048094116784, -0.013081417071567847, 0.040275749439870646, -0.7329561132147511, -0.0063100299907436, 0.012074048541456994, 0.0419630828906703, 0.024741360575495808, -0.004778273832623581, -0.20264690080317516, 0.0649365067190566, -0.003971073766372513, 0.09305068631201108, -0.010094973860780065, -0.025119402043880856, -0.012649375905873783, -0.06859829071268908, -0.03420330084613821, 0.0967548517924578, + -0.05431609804759356, 0.09146474211922814, 0.1299172556821729, 0.1156744877305256, -0.042493737500480085, -0.03873163582864775, 0.0814188188390429, -0.06524607316155073, 0.09800897168690537, 0.15053396893162382, -0.0739246456101132, -0.020459719152790122, 0.040248752210694495, 0.09343893616880991, 0.10987665707427666, 0.10391277751533524, 0.10017566112393107, -8.104094093643265, -0.06917099816865446, 0.1751942598899786, 0.03629203441183526, 0.01805417269335252, 0.0149264809809041, 0.007067936716206091, 0.10560882211418454, -6.430287784296631, -0.126896931846175, -0.08085372512273467, -0.07546285205870834, -0.11664497563950904, 0.023409815774504072, -0.28685346491843544, 0.16169319967086082, 0.1028696119110829, 0.10570236506990538, 0.16771434689410736, -0.7129794920510677, -0.06948449161201764, -0.06416685840302605, -0.05101147535393635, -0.06109958746192945, -0.10158378908817378, -0.8248711243047235, 0.16815845118951095, -0.31159795637216925, -0.03620039544799192, -0.018809220893600487, -0.007014052250546299, 0.038501541510940485, -0.09370543840153278, -0.5576399760014455, 0.09315184389182196, 0.0686090995641585, 0.07707185628656221, 0.1351010299298955, -0.19926318980771107, 0.03329121076127217, -0.09360697032160747, -0.06540189402111041, -0.07768162099112169, -0.13400871022066868, 6.257751653611741, 0.1399477640683945, -0.07685111141765966, 0.003950528109499363, 0.021153621267106404, 0.04826703197579704, 0.27444705861522267, -0.17280076248430676, 2.5147474672323957, 0.09146824162925227, 0.062465606118269346, 0.060351860847266875, 0.08907511380081634, -0.0017500139995660913, 0.24729044435092717, -0.13041975854311372, -0.09378435953600384, -0.1078737275390114, -0.186344227829304, 0.7011390338125314, 0.05876930473475572, 0.08540135634514034, 0.061176541840608056, 0.07454903011628056, 0.12888092201603885, 1.1389562395480122, -0.13467648215243244, 0.012943806480223086, -0.012369180209629405, -0.012170986743427065, -0.025186200179379226, -0.11118481301668437, 0.07257793043727712, 0.013688947948583774, -0.004599906460844516, -0.021171498015274376, -0.03949643286949861, -0.08628108118624744, 0.1449332014666388, 0.04074770753181223, 0.011894847268290154, 0.025295237862337616, 0.04712138272223218, 0.10160640348676342, -2.4020552303482, -0.05208871927655723, -0.059577996185513626, -0.028039320719642102, -0.030206950620322748, -0.053356630895247004, -0.2494305727969064, 0.03229894057460925, 0.7774300346490567, 0.04708433798644668, 0.022034469282524838, 0.015512970520826896, 0.024818611314201156, 0.017882478715236627, 0.21012541506931126, -0.0725805859215003, -0.027055696436867088, -0.007052779359387973, 0.015153457623847899, -0.10571032725064655, -0.034892102367804156, 0.03238894607260173, 0.01204721328969878, 0.0024823143335118703, -0.012778364454063773, + 0.0511830012226669, -0.08777352964573379, -0.12848566343669526, -0.12107888239355336, 0.057307650084990024, 0.06132581413781059, -0.05775612419497915, 0.047930299409897015, -0.09136302061556652, -0.15762750356654714, 0.10342411085830344, 0.06647341126452419, 0.015783384737670866, -0.04435166695634622, -0.08271570293352191, -0.11703855360563599, -0.13767395102318314, -0.00598058547099756, -7.999481156790514, 0.06374322103712748, 0.056144745888305925, 0.060938118692600796, 0.07588389141563767, 0.12750051489816205, -6.519247737101121, -0.04410209762411155, -0.0345466670945435, -0.03650879166496077, -0.050455325086932165, -0.09086770663056765, -0.3997552821779804, 0.21632086541686635, 0.08225643185485887, 0.05636786021757245, 0.05296523108205664, 0.06927471781759276, 0.15093753377010644, -0.7695006452318573, -0.10473608237376669, -0.05591291632017614, -0.03770503766283628, -0.029829926109700478, -0.02644242680360731, -1.1888290507660337, 0.08399979799006885, 0.03680375326919133, 0.0205685041492929, 0.006335178185886803, -0.019439056732137305, -0.48595333731078805, 0.04128558641484131, 0.026919045319740053, 0.022756207109774773, 0.02770014313469016, 0.04978910738009512, 0.17121502358034424, -0.3144121292906934, -0.09486613197964, -0.06364786318238036, -0.05486965347123951, -0.06201684175750688, -0.11350591016818878, 6.229062051829894, 0.08089098688256802, 0.03443877419256055, 0.015204929358411556, 7.796491130473981E-06, -0.02741361625119043, 2.8665636511695762, -0.042729600135717916, -0.010244899904019306, 2.6983263174962246E-05, 0.014501277911299182, 0.04860530227418336, 0.3088881710377426, -0.17005925262459376, -0.07324598850952307, -0.052445965881180424, -0.05040150731313886, -0.06948746328052302, -0.17051097009025185, 0.8009605965906402, 0.13992863466315159, 0.08707557694033427, 0.06972442725225386, 0.06897764047986865, 0.09948482861722197, 1.189736041599463, -0.15486180746089018, -0.0867919696993138, -0.06878187828386953, -0.062197517120138324, -0.06579473932377744, -0.14319350808708242, 0.06289281947539416, 0.023071261325616654, 0.01827557874512381, 0.016111568094360817, 0.008801061714823866, -0.02569533280841596, 0.18518044302267744, 0.06893378747255252, 0.05214129098703174, 0.04731481578354267, 0.055330579646465705, 0.11358185035169988, -2.5052772651664736, -0.11859194435368836, -0.07925327258069259, -0.06945396960514913, -0.07214881647204574, -0.10327728774266132, 0.5213271835719557, 0.11444785182586648, 0.06481615119436612, 0.05680952118228044, 0.0595955117557265, 0.07624672743656102, 0.2629952291161164, -0.06213144623531541, -0.0197824983220779, -0.01445914910698709, -0.01602997339174836, -0.01983233446547311, -0.029315917485231324, -0.0994922281129319, -0.036282658104638155, -0.034475627575204726, -0.035513389904518966, -0.04195624014425202, + 0.10962468521131104, -0.01378727794957735, 0.10114740333025736, 0.03528129980342134, 0.10056046841950439, 0.02557591592026703, -0.07654168929501348, 0.05303759983498886, 0.1046203048288083, 0.0669267121024162, 0.09313447450913019, 0.09731459740832507, -0.040698818233531595, -0.12566525554613694, 0.03883482184902275, 0.1366119316088912, 0.03242357725110662, 0.1629317586009898, -0.031763099636024965, 8.05714134519021, -0.08914185091897253, -0.11438871338206635, -0.17370513592166612, 6.402090102177027, 0.12751991000036267, 0.20575772177025736, -0.043762386207643056, 0.005753043251336076, 0.05333602569792739, 0.33416237821583294, -0.09506286479416015, 0.030557913842537143, -0.1136213241811298, -0.034362554356420855, -0.02202009159521745, -0.039214021480212656, -0.00599776113242545, -0.10135876426238238, 0.7583374577712954, 0.09234528207941858, 0.025867787486906102, -0.03537770737483936, 0.4019747955902164, 0.12713411862233215, 0.8370300355869089, -0.13990039781952912, -0.06160078984223982, -0.008099133322334584, 0.5142368996814489, -0.10556142634224408, -0.09142964547801347, 0.027266782054563343, 0.012637605910012575, 0.0030524898308463833, -0.06590477427021953, 0.0646404364217662, -0.038024371818724645, 0.28517149393550156, 0.08561148242322275, 0.049534360004366396, 0.036854587299313346, 0.011716121909338462, 0.06746706071206787, -6.2953182987043075, -0.09210089013041411, -0.013718072545398474, 0.0594241987485985, -2.5766422892828373, -0.14667866854593248, -0.3706563999593858, 0.13220626427253146, 0.05699164073058623, 0.010624606779055523, -0.2345755255953558, 0.11380838840242968, 0.011182087739397828, 0.09429813559036748, 0.031710749530578286, 0.016167484141778043, 0.03784769929351439, -0.03630907653104121, 0.07483475814974416, -0.8002781807603531, -0.14962480478342166, -0.08301882932278859, -0.04282174286810647, -0.13512770510673636, -0.09650052444895241, -1.079828162630228, 0.21134320669304918, 0.137122392018766, 0.10994951355622096, 0.09603509714109648, 0.07635582256647278, 0.13164760765050942, -0.08547359515533604, -0.0599505243797927, -0.06585445034919679, -0.07518684821292276, -0.05013376297662109, -0.006029453796668749, -0.22509561099095443, -0.09148102446680051, -0.06129779866470142, -0.06107479903696289, 0.07647301062544623, -0.005023588748381158, 2.509589723009654, 0.1605194950004073, 0.12185300399932775, 0.12038636972868089, -0.6887203759904033, 0.012020948261635578, 0.17807871870296438, -0.12494990119023053, -0.1028578001469016, -0.11787741878707136, -0.29720858335391775, -0.0007982906139515356, -0.034525491412914944, 0.005235673421398523, 0.00927778364794607, 0.02739682445642988, 0.06019714488473893, 0.015351978441015351, 0.03256415446184768, 0.16534569319254172, 0.08365374914331891, 0.078899535143312, 0.10084772075027115, + 0.06727793917681373, 0.10915259863068655, -0.10332837951670519, 0.04193744415357591, -0.019250739079705734, 0.07393353584641567, -0.11498042279428318, -0.12264946647046127, -0.07404079041222668, -0.023686895028856673, -0.06573692239445864, 0.13971852803387594, -0.1262577000546314, 0.04055563742318345, 0.09855812400098399, -0.07245262299792317, 0.13189179781074536, 0.08557337414964512, 0.015885323070095353, 0.09952215020153186, -8.028031159956498, 0.20255551908804215, -6.3866694086428355, -0.10242066382053283, -0.0421564282242729, -0.04011936790929105, -0.17721991839582282, 0.027279058229487063, -0.29031038701398115, 0.1326946119357013, 0.038349223986747255, -0.009324188814663577, -0.07897835046164087, 0.07925998220940145, 0.020371331305990337, -0.04178578863441795, -0.011475600586595025, 0.023104713425795093, 0.11256391852000008, -0.7308155567796104, -0.019139979823373787, -0.39913018310300297, -0.06660826872218792, -0.04215252360932242, -0.0746997248691732, -0.8150098518197549, 0.12793566889822172, -0.46065621846947447, 0.13212538652056272, 0.06721843134124772, 0.03712861724634198, 0.05178164886485548, -0.053471814453373734, 0.02544986402576077, -0.1180634782870339, -0.06896925823240652, -0.03313554251442419, 0.04725084356295234, -0.2718463816739938, -0.06759847040746692, 0.0011032872776375324, 0.010002284897013998, 0.00946647369078557, -0.037489848182859054, 6.2973866912830845, 0.017467736763342567, 2.599560701004787, 0.12328656222644574, 0.06074636024424784, 0.05886998242426078, 0.3247475901788151, -0.14355310695410836, 0.16353604598485982, -0.17328865150094042, -0.0883928263938254, -0.036989740286692774, 0.030700146436057674, -0.05794914603611512, -0.01891201941183107, 0.09033916357956473, 0.05938449544012518, 0.02972911913716325, -0.06390097338455913, 0.7989434813390703, 0.12292062264710768, 0.14934382363944423, 0.03968198173934412, 0.017004352459662808, 0.044639025730319415, 1.0332020930468309, -0.25335485876376884, -0.17147149911037096, -0.12076994295931964, -0.08399688036219144, -0.0548339783166783, -0.0950133568018191, 0.13358895313381758, 0.11954542458612927, 0.10774572027677898, 0.10764092807265566, 0.08905456606909129, 0.028880898041879655, 0.23500852280830464, 0.1054707596325496, -0.07097198931406948, -0.04871487069952418, -0.06293930058254271, -0.043975937668404685, -2.561369193737232, -0.21209473287704245, 0.6414812566185872, -0.026349019011248753, -0.014532963355789241, -0.002905540449131494, -0.140625583696181, 0.18660087352993537, 0.3416405081965027, 0.04295453558230411, 0.06708803619414194, 0.05845998665742991, 0.045320333107419564, -0.018163468773520153, -0.05360789584099612, -0.02304309856937016, -0.06351105512039645, -0.08088132139468662, -0.0804762709984046, -0.2105407097770805, -0.14951651476576874, 0.21886277209574867, + -0.03692383386873323, -0.07098153683477737, 0.09652911025250706, -0.09821601329371359, -0.10024584630996042, 0.12369714348581314, -0.08737647792393592, -0.01676956819509459, 0.0018273460118372448, -0.06863465609586054, -0.07661254764440051, 0.10798583289332872, -0.11423237373317968, 0.13677119333424798, -0.0613561123116454, 0.12317136455509836, -0.024919616810321926, -0.0238371934997725, -0.0009545817340737655, -0.05462861159125542, -0.1306731818131984, -10.79877890480415, -0.12149324802081413, -0.03815032224624182, -0.011952778656787899, -0.011099565654260735, -0.043828577251557976, -0.34302272002940803, 0.1553778647306041, 0.06161008188793425, 0.021703651773173238, -0.007667425702118369, -0.033003349590007836, -0.06818838138944738, 0.011762594150496297, -0.022874004493037142, -0.0184515017511747, 0.0003145348296569872, 0.0367855472516424, 0.13015941757012628, -0.8210649998627035, -0.09415621814324404, -0.0310035201257447, -0.011322584317318585, -0.018001771019861446, -0.072636255832429, -0.9926383832757941, 0.18248359569832984, 0.08981487436227964, 0.04834184946682685, 0.0211330447217416, 0.008592955825358128, 0.06621340082541682, -0.12499368512794026, -0.08241460537054908, -0.06524943094117047, -0.04466085968687272, -0.014995773663459833, 0.045425363420998566, -0.16529607047684058, -0.015507094158249024, 0.016641655017792578, 0.029640059067297497, 0.02508932814718172, -0.01678131039120745, 6.604193585899299, 0.17603643716684225, 0.07041731560206554, 0.027408741839320183, 0.012646136416567755, 0.03839489741713176, 0.4037036771315599, -0.22595416864918, -0.11972027377115635, -0.07295441797132007, -0.03499653792316282, -0.00040628497377082073, 0.031642436619391257, 0.03585601941773919, 0.0590746261006021, 0.06299127036269392, 0.05238814775335782, 0.022585473945743686, -0.058541129915498424, 0.6447757450241272, 0.09073546851071002, 0.02399081934882108, -0.008616209419710641, -0.018650866882613415, 0.012267555979919686, 0.7395308514357588, -0.1984945694123949, -0.12005586253569744, -0.07487281520605693, -0.03614146489394632, -0.005765887545752246, -0.024762778475193592, 0.1318915228294012, 0.11433626921150375, 0.11030322785789387, 0.09796481725442739, 0.07448320724405882, 0.03459178650387684, 0.07765354857381379, -0.0037942179739742787, -0.04341926268047336, -0.07329226481536177, -0.09248806674100507, -0.09844287959877523, -1.339256752574703, -0.08133334484725491, -0.04435026330774716, -0.012997168841404005, 0.01653040726079269, 0.04252704689640563, 0.07521359953088647, 0.0869385478248037, 0.08415689719116992, 0.0755088803461652, 0.05860816096831428, 0.034312817630637704, 0.0005199279217250607, -0.010904642632475148, -0.04272120760455933, -0.06655669938422293, -0.08377357497141391, -0.09501941472740494, -0.11123356971565124, 0.06305563394649277, -0.01231233568710105, + -0.10717800433835108, -0.05341098578799133, -0.08517636979910732, 0.0883875538676624, -0.056390295441731304, 0.13745225655259202, -0.01170063106134877, 0.12367224591805646, 0.025297895697013635, 0.08858500615592389, 0.0886595451033116, 0.031132935272003986, -0.0641401214980921, 0.01789887698616397, 0.13983134663331384, -0.016599517491946627, -0.09237622196633727, -0.12043038112640744, -0.07512220555914947, -0.147784474635944, -0.05455878183851727, -0.1328623825685961, -4.919981364105803, 0.01254439673331359, 0.017322494338792738, -0.0030958659890570894, -0.25052116338597585, 0.19176539741484644, 0.22700641004350902, -0.008029267962873288, 0.003437228207742671, 0.003341285638314817, 0.06932466376779173, -0.2751689370499424, -0.2609576039409207, 0.11051904189867423, -0.01415722114881024, -0.027998724368384798, -0.048905522846177996, 0.4258446091002061, 0.2012769866059677, -0.6842542710618313, -0.032376013549287985, 0.017797365802108334, 0.03770597998324832, 0.1938241671045341, -0.05713318032374243, -0.6361567282062208, 0.10935446304756477, 0.04119029707045141, 0.0136540654327868, 0.03814638240672963, -0.10291701409771847, -0.1006895704660906, -0.062390128336094586, -0.07006535781973314, -0.07472289780023667, -0.13662515099577532, 0.4032455236216018, 0.27848127975457404, -0.3282945698440579, 0.00015678995809043084, 0.06127229933071382, 0.13689989387033696, -4.0406347861926575, -0.23084320750705356, 6.960916859442426, 0.07690706877498588, 0.0007715694449309529, -0.030389760094884144, -0.04802395806534132, -0.020168491371212793, 0.15857731092567123, -0.13486344534276895, -0.07277153950681699, -0.049006904310783805, -0.0979687696133435, 0.246363969461031, 0.25207820752180543, -0.05449046331755025, 0.06427631701556391, 0.0958634130217062, 0.17334837015591353, -0.8893426576469003, -0.34387852117870527, 1.0196739602664706, 0.06116356007950419, -0.03779334303090187, -0.12228503790815765, -1.4691728066442495, 0.2800448557181363, 1.8818229150181174, -0.23383345188928506, -0.08884612389360702, -0.012206056053057357, 0.14730252467297641, -0.11559574814501317, -0.16690490659311305, 0.20432403763499218, 0.13934329718356409, 0.1348144321984756, 0.1997137441959992, -0.3626893403923111, -0.2500139347414774, 0.28498250564918126, -0.021892716818612712, -0.10660915723377629, -0.23969755927701802, 4.4275857573646995, 0.3388414627809183, -4.9242578520629126, -0.12569996618727086, -0.01711330265527833, 0.07206931008885564, 0.6131465065678001, -0.2727833066923444, -0.6658251235151759, 0.222994817588399, 0.10923480008629627, 0.06375484739788895, -0.006772590209643825, 0.10496257369152018, 0.06651886795394835, -0.09856500238047951, -0.08480100941699309, -0.10913762604069949, -0.182810183016622, 0.5603527490450054, 0.16521643344318684, -0.4954196961149304, + -0.0788932118959799, 0.10575220215011397, 0.09587975900431871, 0.012605988269004704, 0.10032357977585435, 0.09666871116104277, 0.09146949332881474, 0.030836262750174093, -0.08924091074946558, -0.12097552544171897, 0.0446874647519036, 0.03677993612153955, -0.09717137473174883, -0.07759206796690664, -0.08000631475378453, 0.011532458457511285, 0.1135341116214338, -0.12169782293977043, -0.06344909859788822, -0.004164308308852134, 0.12987732032344443, 0.11843071987552706, -0.08848760888026866, 4.902511798276385, -0.01518726270460502, 0.2289974817158531, -0.20591192985310358, -0.135897191828676, -0.11649153861375999, -0.20298369117219128, 0.014580619104963777, -0.07657321437547837, 0.2567460838582727, 0.16494906255558262, 0.17422893846140036, 0.26410587794360046, -0.09105485793999968, 0.06381904411665629, -0.3817668345698305, -0.09929952072231574, -0.11887171000468255, -0.20307718783333362, 0.6551044399060746, -0.010772456046793222, -0.22112876129633707, -0.016399333227512414, -0.0091628678941153, 0.03983985252289135, 0.6366379747879579, -0.10191403335708538, -0.07014585156681623, 0.092981666113229, 0.09446608038218907, 0.11013997927960051, 0.1345451327036087, 0.10873806228691307, 0.18804166997075134, -0.33465758965271203, -0.12717658280138153, -0.15465299265318344, -0.28217453896350975, 0.275580648436702, -0.1248413715772625, 4.003118079337852, 0.1425659695035304, 0.09213667478425192, 0.13856834562351156, -6.955363943185495, -0.03416168657955643, 0.05362382885401784, 0.06895877291406549, 0.07391699106016192, 0.05007539555837648, -0.13898330096153677, 0.1521765374030138, 0.1560260184946386, -0.19688927160056102, -0.14360277482728628, -0.17965397899004343, -0.2897165304096354, -0.013609147328455307, -0.21584572562221982, 0.8042326620407536, 0.156688080558674, 0.1687768915381468, 0.31108727699901945, -0.9752572322370561, 0.057923117239113364, 1.5055019322717338, -0.13236557876114455, -0.07986418977513288, -0.16319583430332796, -1.851020393410205, 0.2139127072188759, -0.07502057609613438, 0.12358081460021131, 0.009950920405756625, -0.026428304117371015, 0.07710787513021022, -0.29184297146599647, -0.29734000750556455, 0.259976849385865, 0.0713188607175731, 0.11695174635859418, 0.2671938682485826, -0.19855829827604346, 0.230487571311493, -4.375342447520179, -0.20582799418042041, -0.11859767058238396, -0.18289041243848525, 4.94044185457357, 0.04811609342058909, -0.5915970486026682, 0.21238203485702267, 0.09103407273023667, 0.09893806601730926, 0.5939642648122109, -0.2547594762434361, -0.07691295435211065, -0.1535360202825709, -0.06117513090349133, -0.012327538991841913, 0.00017899622256933867, 0.17918556358343374, 0.23177260326118657, -0.49373676504385194, -0.04096336247758425, -0.038621746336339136, -0.12338251357024432, + 0.02192563572886768, -0.041733483285450595, -0.07182187730507328, -0.08845280943497423, 0.08501279052455732, 0.1294985690175242, 0.09145707690654635, -0.11870533304957906, 0.11267640571942722, 0.12985752122916183, -0.042193877235754906, -0.09981211591052118, -0.030831655803245053, -0.0328215035188015, -0.02425859647554573, -0.018848609936739803, 0.04779829404812926, -0.028516293077191238, -0.07176162805651373, 0.09146092442394822, -0.10390408709160343, -0.08213749564318104, -0.08011230626196243, 0.09361424251244681, 5.024128398507997, -0.21863486190777748, -0.15285240381615206, -0.12821289739758934, -0.11001522299606592, -0.10735967586674966, -0.26943989447024097, 0.2679667000790995, 0.15378027172028083, 0.15307619727249105, 0.16502564486147597, 0.18876283380811576, 0.3061728272889549, -0.4885661574042627, -0.08237806911575651, -0.07451201184975198, -0.09941341725273689, -0.14217628724159892, -0.23980280271405607, 0.4407697706853549, 0.010030269704382255, -0.03626504371191297, -0.032684026293308244, -0.006246011518437011, 0.0460974396236265, 0.5927753219485609, 0.004522572898253752, 0.060872079571059, 0.09818614265974912, 0.1256232057024954, 0.1529880241866417, 0.24670970826387195, -0.29300543964755976, -0.07363180866476393, -0.0854469109612217, -0.12874954255687265, -0.20136074977438706, -0.3968636174221135, 4.234636414039306, 0.15254851302104466, 0.06737400772009627, 0.049922842097467, 0.07128089158132445, 0.1729378627985111, -6.733941146568004, 0.004434617720864509, 0.0777953152254609, 0.09658190213012774, 0.09072477500559428, 0.06615017864194028, -0.0540462846649129, -0.09119775654199958, -0.08324064274612442, -0.12795850733133315, -0.17782337810513263, -0.24172251218557905, -0.43083393105804374, 0.8645805732626413, 0.11125613556354708, 0.08480680821012054, 0.12217947144206609, 0.20466639403432796, 0.4190273612779678, 0.48069275867455763, -0.1907364287096207, -0.03746166349657942, -0.016153970912531346, -0.0544814660726336, -0.17886389440950187, -1.9656914595859545, 0.3174155552429489, 0.07979802995566565, -0.017590953872869686, -0.0773491621127701, -0.11185566760529508, -0.0795697007947207, 0.09983014052205086, -0.02622349619718456, 0.015189362594905775, 0.08728535014251748, 0.19760845057743304, 0.46424118431123984, -4.566718440461957, -0.21134253467207487, -0.0801988935273921, -0.0499070487462117, -0.08297091323638944, -0.2510909450252952, 4.226960444779161, 0.32395099200536215, 0.10784745767293025, 0.03859778327054586, 0.021068961879145753, 0.06509245586452439, 0.6106111650399068, -0.3364625611705897, -0.14141276536315073, -0.05982318101933859, 0.005151979460942369, 0.06698148918568186, 0.14397825211874704, -0.4129306869574049, 0.008174726958161904, 0.025353180578943146, 0.00025638566690977527, -0.06422184615574023, + 0.10258615497984407, -0.06903682397717895, 0.03589287494214661, 0.10074499479914546, -0.03999848273469103, 0.07508481102142582, 0.09964230312593998, 0.030395038907695248, -0.10903141946752339, -0.08636463021895141, -0.09163237254795079, -0.07570892358645559, -0.03693474527987188, 0.09929761186280299, 0.12989144273009193, -0.0006237212302258253, -0.16655521395771014, 0.023033856988373135, -0.06484365612674718, 0.08301262871189685, -0.018851452671720913, 0.046644812126135506, 0.13663808761206686, -0.08152266880730945, 0.08220822352816931, 4.821873513101303, -0.14796241237020874, -0.13418326296136274, -0.12569814156157055, -0.18314834387007273, 0.14042732242999267, -0.027461383569662802, 0.17102841881781838, 0.16249362716011978, 0.17708713257841524, 0.21690232197640225, -0.20225661795618022, 0.14446065171744693, -0.18251807194782665, -0.0865235043028727, -0.10303374121521092, -0.14258806364996393, -0.39849692481206067, -0.20934485369146638, 0.6580139199445766, -0.007620169241817076, -0.035886621006638614, -0.028827713558563728, -0.06672463782885252, 0.1865308005352171, 0.7561565346533232, 0.010295304429015883, 0.09758274279677637, 0.14939362057661498, 0.250727214789746, -0.25161015045998947, -0.03279162469447339, -0.04008263893648867, -0.07867060808005877, -0.13912275955975092, -0.2548364181765068, 3.891475827129714, 0.057081393516288936, 0.21438324121345154, 0.061570579014780746, 0.04819041518090883, 0.0872483365961827, 0.49204343402219824, -0.06230661908303492, -6.992412179998654, 0.034896315888372, 0.10072818131246819, 0.11990860668495362, 0.1894082343458553, -0.19086735353192275, -0.31348967955756746, -0.02161752447977694, -0.12406532447072882, -0.2008431122427099, -0.33501040988922515, 0.6453714126234493, -0.06609267306933253, 0.13514134249596854, 0.07948832046279847, 0.12654201475065852, 0.24035057341291383, 1.773126549567156, 0.19626091389854783, -1.1537743809970116, -0.07580714190072169, -0.011201618614210651, -0.031233065707461538, -0.13593613607929234, -0.16683533960028446, -1.871523543406815, 0.18380277928720234, -0.00881476953148086, -0.10991386630271494, -0.2505468528649025, 0.2957468506159186, 0.21147110092206878, -0.158861774649882, -0.011890964039431573, 0.10051942351499643, 0.29767496313032027, -4.320803160656197, -0.1749315354787883, -0.1787749458754937, -0.055803654921662615, -0.04547808096814426, -0.12182865136442256, -0.9681325619823404, 0.202554538877313, 5.161978801104864, 0.1555179189817898, 0.038743853308395027, 0.0032815083473733964, 0.02668668994953688, 0.014993128774981601, 0.5568362072012343, -0.25491893147699063, -0.07917334235378837, 0.020838796270134175, 0.15801530430187682, -0.545729622768614, -0.10634041713454667, 0.12371829241777355, 0.05359287946694277, 0.0007517981461520051, -0.1167088316544641, + 0.08892943644264449, 0.10846050625849428, -0.034704405240337764, -0.0721206779978591, -0.1023859582782726, 0.06697391214966604, 0.022105812657340723, 0.11119554228260782, 0.08146071447952728, 1.0447291067162907E-05, 0.10369738478751181, -0.14584511791237387, 0.03594010743986088, 0.10100230646303586, -0.09822559388795449, 0.06224002859611017, 0.027872981245519932, 0.16330920429164836, -0.11770192352235725, 0.045087632858372674, 0.13118454326248902, -0.11453161647787465, -0.10997830289681712, -0.1333201132470081, 0.10774216275737745, 0.053836192312668715, -4.829075313218134, 0.1486652978883824, 0.209818984606167, -0.11993780614491412, -0.04611266481762055, -0.05454739429019888, 0.014729857885581399, -0.19881974212767506, -0.21841521683045073, 0.20880462405690914, -0.07000631453077999, -0.08214708985513564, -0.13913308658124268, 0.21261165024545758, 0.13218072955059046, 0.36270661029257933, 0.1164965556165789, 0.16058282509246036, 0.2346841672167257, -0.6560503516026964, 0.00461224702742305, 0.09610325718490043, -0.11414705634308608, -0.11795015949797874, -0.18251052891229713, -0.7939997121662349, -0.0641075705304231, -0.22549022870802798, 0.2518867065706004, 0.015590624501401917, 0.010047019830620951, 0.04022021433837519, 0.0960454021651439, 0.20784495953650203, -3.9429884548237446, -0.13300081019246113, -0.04090167075976181, 0.030460760557129707, -0.19682789774923148, -0.10013789419537888, -0.4700010030142542, 0.1471280491430924, 0.03665969362536248, -0.057968794247594546, 6.956405425144981, -0.060727914848102915, -0.20122479473297208, 0.1366721623722656, 0.0696577703352661, 0.12075560474571412, 0.3568549872448887, 0.09791515502429138, 0.285407585526701, -0.6798031471217069, -0.004099810314260877, 0.048342389868144764, 0.0949738718125156, -0.17900329958571898, -0.20065457552170163, -1.6976218395821439, -0.011683811555286472, -0.15526034377041242, -0.31784149207694923, 1.1263674076474213, 0.09125651316639782, 0.09430791690378804, 0.02462396742460765, 0.11858266659375744, 0.2632627191076584, 1.956360407173373, -0.09074927761001525, 0.1834419616272378, -0.29595851924886796, -0.03344596254473928, -0.03830311007078446, -0.2264481493279693, 0.07265914193189593, -0.20042332866122253, 4.40717426138989, 0.2669686547422587, 0.11428543791336593, 0.02556850692870305, 0.1463480623849166, 0.12895820010941372, 0.9310260936506113, -0.33363283734454774, -0.13424976943379813, 0.019043813112888497, -5.087622568224756, -0.1210774921032921, -0.04510028207916464, 0.04447341150473194, 0.002695426233308318, -0.07573383352199003, -0.6157341185921212, 0.17538738826775668, -0.07352018782495273, 0.5903217176345529, 0.07938628201027853, 0.024303090107003156, 0.06208791156057185, -0.09930156535060486, 0.06327715437477288, 2.2503370858292047, + -0.006488595840814062, -0.01319986957223409, 0.019894068811811928, -0.023812411330460446, -0.029836348810540366, 0.045658826762748315, -0.04852770810741528, -0.046608118487773714, -0.05862171930501575, 0.05225596882462495, 0.06700508984398826, -0.079325886557864, 0.06499310976485424, -0.0652232577724633, 0.07028244114289738, -0.084522907500885, 0.08720401154454889, 0.10425952677084968, -0.0968854771274912, -0.07120432651047177, -0.1388148590676965, 0.10276323665330589, -0.053265926888585564, -0.032109568266967814, 0.07780936241489639, -0.08174545392812754, -0.02056346149853871, -4.7912017227488155, -0.09790530493976432, -0.019883479984220187, -0.03412034156553162, -0.05935616927609788, -0.08273064693684606, -0.04129272821018348, 0.1887953998771168, -0.0717370351978458, -0.07650819421609267, -0.06498081807863398, -0.052753737263966705, -0.09432363736655058, 0.4758760338984921, 0.10674966985406997, 0.1251908026696441, 0.14265806492463035, 0.16484545565646308, 0.2334301481840174, -0.600597233038083, -0.13948998438004867, -0.08938360868015033, -0.1107283816440642, -0.155904912765339, -0.2382552455974235, -0.9290542583822637, 0.3400402607126169, 0.04155311853820421, 0.01002798235116037, 0.02315282372264088, 0.06647528444697098, 0.17062483080971996, -4.017763474847408, -0.18219528104705252, -0.08730006257502693, -0.04573618356946951, -0.023205084893123562, -0.008097745378248034, -0.6234662389713428, 0.13538369208368206, 0.05992166237885266, 0.026974793430321053, -0.009873934546576368, -0.08371062111480243, 6.910249067260892, 0.1975613043962664, 0.05859731113521571, 0.06680624082661868, 0.11345673103977316, 0.1986142553508078, 0.5221165879493026, -0.7891920916528322, -0.054699834559610916, 0.014991730404487758, 0.024882648806845542, 0.004728840589237393, -0.026297773531446134, -1.7637469060814814, 0.02842469063133579, -0.07771804208764699, -0.1340379904188933, -0.18588010103135366, -0.3047833057807212, 1.2190266945367023, 0.08527900541511413, 0.07736060028110436, 0.12176901323731337, 0.20223665870204854, 0.3596062972136238, 2.1478102771246936, -0.5006943795920485, -0.10175262444461003, -0.03837738508900995, -0.048491295289230296, -0.1257518608335819, -0.44224137284646164, 4.616690855701916, 0.3679907662428859, 0.19576511385159975, 0.11828343467000466, 0.08223907988843997, 0.099434154216548, 1.039997537390955, -0.3291739948690324, -0.17420173729812183, -0.11262867996603043, -0.05259435367844961, 0.05362942901518547, -5.134199841322133, -0.07390177026917977, -0.015797768612990426, -0.01637304189084865, -0.055816125499724034, -0.15693840016052152, -0.7746034768736471, 0.7927893979311352, 0.1654740977520347, 0.06862624576765597, 0.03525386478345216, 0.049297425778071835, 0.18044326563005986, 2.168804307606545, -0.20735902535455553, + -0.09594104303192103, -0.09806054830499732, -0.004301754499534248, 0.10340560930288427, 0.08114762307950878, 0.01379916288045418, -0.09331869187405012, -0.1006027774139705, 0.006815037519779392, -0.1050959692575615, -0.09366926444695357, 0.029825792418798205, 0.09563672696859082, -0.14985469698496606, -0.025538345439634232, 0.09003893746067292, -0.04986000556456887, -0.03515063048033417, -0.06988700771938394, -0.08894663573670704, -0.007715791430769388, -0.07236374018692374, 0.1514194749516852, 0.099656793465349, 0.034502597638630804, -0.13763333285945728, -0.09499143008303035, -0.006462933695067085, -4.901454284272616, -0.011739910106160878, -0.031027021940653265, -0.05834850122143742, -0.1085283832392363, 0.29856966925219375, 0.09188791328064005, -0.0891538787896583, -0.06191704573140455, -0.043431379320300834, -0.01814302895427411, 0.2121279896804671, -0.13987363031948596, 0.2304345324749477, 0.12454658752496894, 0.12063005697037454, 0.1317690734995765, 0.1986263457607912, 0.11742448254560389, -0.7606813310885362, -0.12941040693770345, -0.11983436879414794, -0.1563218746586451, -0.2785728910208045, 0.20818517803823514, -0.6658734805307159, 0.09582365268123028, 0.04762797121147605, 0.06387920577354556, 0.14708342127705132, -3.964099964098723, -0.01172622681455382, -0.17953585120510185, -0.08944402227440007, -0.06606148922625521, -0.08100322729737397, -0.4408282445871826, 0.2527560396773406, -0.10182099177659587, 0.013015648017683956, 0.012017367593047057, 0.0012551853034464822, 0.002751895439897456, -0.1757943354368432, 6.997354575015515, 0.12293697336819748, 0.09728217452352506, 0.13665606343384595, 0.2652405175049631, -0.6983966656399571, 0.21961618257490767, -0.09474681073256987, -0.02592092533978796, -0.02885320904652844, -0.09372949092203738, -1.5445297988573206, 0.2849886452102035, -0.1550453470342967, -0.08801506033006268, -0.10038017808545052, -0.11138861281871912, -0.06722892029869543, -0.36410488641492234, 1.171493266218665, 0.17463614101464864, 0.15220516106212278, 0.20509915122778105, 0.3818245959041666, -0.15743817883113964, 1.8471932669428928, -0.23481911044017556, -0.11250566405631857, -0.12086162069556956, -0.25377967841450233, 4.341594795536712, -0.10934910608578116, 0.41152810600694245, 0.20661769863508972, 0.15499006812384178, 0.18390540526303545, 0.9500805899173389, -0.4017112024986006, -0.04014439443122242, -0.09957256358902533, -0.0858547510880786, -0.0735082982342935, -0.1386297755037197, 0.35466711228573555, -4.986714213669145, -0.13058530812152702, -0.07179739274353703, -0.09316873310539187, -0.20671930308392827, 0.49023323411893394, -0.5638180746892051, 0.26123671771657064, 0.11578488734133796, 0.08993593118624166, 0.1481617381906677, 2.2554803145050064, -0.19626610953674917, -0.12312188291263332, + -0.09718573771426862, 0.08614728271175823, 0.00457540075235867, -0.08983440621176973, 0.09699978456352613, -0.01754644688252381, -0.10482371125815489, 0.06678825658136688, 0.041845431572242825, 0.11334575270248146, -0.04022672583315727, 0.03395520860716243, 0.1371045629140285, 0.034531729969801736, -0.12235562858411576, -0.12083888943635392, -0.010826647689845497, -0.10951810926975832, -0.1402807080413884, 0.021955495731552154, 0.1263409716199736, 0.09400082682531388, -0.11227772522599408, 0.12124186771775512, 0.03805978266491086, -0.07869808389837417, 0.09597831244453225, -0.01763124367248656, -0.12038269460531939, 4.906900145224389, 0.03570294510783806, 0.07979726380670249, -0.3225394383954383, -0.0309540317343856, -0.017913613840856657, -0.10163748537324901, 0.05537191060234392, 0.014351474971223022, -0.22209024457600546, 0.05763184365708229, 0.04673539831075735, 0.1202427248033997, -0.2249897052700296, -0.11242598246074015, -0.15282482216023008, -0.01395939015026143, -0.05442064791260948, -0.11686200014858383, 0.7905313684326003, 0.17442379751926756, 0.24146638310596857, -0.2902534252457723, -0.009731467372286473, 0.055806077701824996, 0.6582948314597064, -0.15013647609951075, -0.17198702880937833, 3.9611713279640672, 0.11058031313035444, 0.03359193341974864, -0.08188794462232821, 0.15772662935834714, 0.12471174272606067, 0.48407405942085086, -0.1718937215749219, -0.09961271424325469, -0.12529663563804405, 0.15070193926942232, 0.01309335817019952, -0.024865426564258553, 0.08875397123163586, 0.0722484550009529, 0.12859524838130165, -7.029098889849241, -0.19279017626547046, -0.24864406130340144, 0.7592969017223531, 0.061804406100959774, -0.018150614705304213, -0.24766947962890296, 0.13924960859969976, 0.14546451885244638, 1.5781580268152826, -0.1900887862023076, -0.10977715546200906, -0.16491467389555248, 0.17730979523054385, 0.06402091933273124, -0.02051621873087084, 0.16472641729603044, 0.14921630928016116, 0.2552936889214199, -1.2463231907175625, -0.25762361798600353, -0.33047198486355284, 0.31298483145425865, -0.02891114691958019, -0.15311058211587747, -1.83250970663569, 0.31809631160839646, 0.31850455809723177, -4.339978764207446, -0.16742211060548207, -0.0281913411732575, 0.2714649230619458, -0.3695648250828558, -0.27201146806637794, -1.0231198856699155, 0.3020537751730058, 0.1610608077064024, 0.16507575816073417, -0.05035906625667519, 0.0593432480824371, 0.17181503255124975, -0.2235461469415444, -0.13325116356555528, -0.209495038050867, 5.039107160193865, 0.20806822113186896, 0.22284924829115016, -0.5532705089605536, -0.0307001662179342, 0.06965612707915803, 0.6119226942429973, -0.2827417341635006, -0.2292491784651398, -2.2951071083440686, 0.19179972551321967, 0.089793953454392, 0.04499262123157277, + -0.009078313337110122, 0.017580497638503514, 0.031030134424296786, 0.03967667932520905, -0.04085918200392177, -0.06452171766924711, -0.05282781640577866, 0.07074729020375725, -0.0767989297060641, -0.1036428723559547, 0.05991826185760729, 0.11344508751837754, 0.09272493733853107, 0.11040538342288167, 0.1322380670470567, 0.1416150056706095, 0.12356931354904384, -0.12236669533356082, -0.17173554383222836, 0.11234645153043628, -0.10710998541774507, -0.13466315024442435, -0.1091410838252957, 0.027661298680066258, 0.0051806732708347646, 0.0034916974811523655, -0.003900525313902536, 0.0091755147284184, 0.05928334226619815, -0.11810380888046615, -4.931121120018817, 0.3439415729290275, 0.05794543278204051, 0.04119721435491208, 0.04031507622902669, 0.051046586574319985, 0.14880758411374073, 0.2092352094612612, -0.054634445972890494, -0.03654713792276437, -0.037432647330155056, -0.05159468739366263, -0.1329436339194382, 0.25524180386478734, -0.0062451982844276, 0.008289385066348243, 0.012936962022282783, 0.02472335462267361, 0.07547831355899703, -0.9067033138381323, 0.2721603433991311, 0.045506173974541264, 0.025855736352136227, 0.018232334833345187, 0.0016054125282384257, -0.5320950131230442, -3.856786974174291, -0.06617945469890374, -0.025592844790721547, -0.01670668885901183, -0.01192406141322433, 0.047256186041054415, -0.5722324977794584, 0.12999623877135857, 0.05574254692963532, 0.04345280246083072, 0.04998660008042388, 0.0994179886005967, -0.13712645473756901, -0.10271824641060745, -0.049460641014529294, -0.04080550796747251, -0.04741698078490875, -0.09272910520850505, 7.144147440987159, -0.7010676814948898, -0.07462118805745611, -0.041467306612067475, -0.03391629467314136, -0.027320898980454977, 0.1282015305023863, -1.6795220760798535, 0.14544277756703228, 0.07655930356345175, 0.06882264747821065, 0.08645330223642389, 0.18893940889205296, -0.05571437850836258, -0.11675876687511577, -0.060294842617141575, -0.054513283421201986, -0.07407629008418337, -0.17770622243884504, 1.41617309465651, -0.26101285155927234, -0.021233247175324155, -0.0023904578903143348, 0.011371778102388541, 0.06084966108820644, 1.6201909713561025, 4.124076068735417, 0.08139451030054168, 0.020831498509476742, 0.005264204964368857, -0.012840805166088654, -0.207082341835511, 1.2301227671376966, -0.21806935642922143, -0.08717253735189612, -0.06387061085999601, -0.06936463764883799, -0.12436771497436769, -0.03504320033366748, 0.23745935423107095, 0.09864192512051219, 0.07694979732830483, 0.08495693127997686, 0.15598254599579087, -5.163575735269238, 0.43740317039762777, 0.012040022896914637, -0.007277457425256095, -0.016357287250558517, -0.04523137492220142, -0.49751130867672266, 2.47447975629545, -0.12147941077632074, -0.05148288074148799, -0.03967406287389463, -0.043626683944567146, + 0.08737567045540069, -0.10159959678679367, -0.06166273889371319, 0.03884412133792913, -0.12525719652132178, -0.07287756521864514, 0.0020854229881625704, -0.10160827534150356, 0.09667111028200585, 0.051270832367993534, 0.07190784022460331, 0.07240657715037142, 0.0764499710195241, -0.029409725175414212, -0.07555452310651724, -0.12899979191850247, -0.050850408121714395, -0.0965994218435435, -0.11514209535411829, 0.07936329667188957, 0.020919536149472062, 0.12293267796839678, 0.14584743504839068, -0.091528693174304, -0.014352861271174836, 0.11705086984532537, -0.16113472718554342, -0.1112337114698681, 0.07325934787687688, -0.17889669547802278, 0.1515208438870037, -4.8481079944080765, 0.06659155861582433, 0.07153110271629576, 0.07867143873551818, 0.09247208125341644, 0.3329947788848069, 0.12684725866424335, -0.055643395362374615, -0.03759878259008165, -0.044813407362655586, -0.05443042942932996, -0.03325297428425622, -0.2364909161456904, 0.1113454177458057, -0.006812728728709638, -0.021034162065305617, -0.027583602632777836, -0.08313220208026728, 0.46084246303594745, -0.6078078005613176, 0.010003460324637725, 0.05690857940657612, 0.08640157125846182, 0.1503360604174986, -4.1163405437371265, -1.0864705825135874, 0.09484342390202402, 0.026718504362022832, -0.005132397587981452, -0.053562813545180665, -0.4292374686036263, 0.26292971574208246, -0.02035614670467656, 0.005086037906234568, 0.009125316611748646, 0.021162162708744936, 0.07319587740332112, -0.0007165289582728995, -0.2232453895802715, -0.0591369444945925, -0.02788502599177383, -0.008093153579513457, 0.026234361880304702, -0.44474606954626095, 6.881501832953662, 0.015014938031462255, -0.050471700070755965, -0.09117572495917034, -0.15939449704227582, -1.5836919793410158, 0.2954347832845463, -0.005911546169730664, 0.02963421701706337, 0.0589876894530833, 0.10038232162711397, 0.22730359066980932, 0.1344902429212832, -0.14811350303848378, -0.010554429270573817, 0.011577731334970753, 0.018947569563236566, 0.07723396630212914, -0.5986106178720159, 1.0605865223065365, 0.05033837530653319, -0.039768941622652876, -0.09614987328856639, -0.2088208602176415, 4.708655810589558, 2.379375813175832, -0.2138239842585823, -0.08135482806422653, -0.02027565789029573, 0.07119625534816898, 0.8441532876435305, -0.6140933260986836, 0.09966102075502792, 0.01514525540633005, 0.00040582906022856857, -0.028164703389927714, -0.1674132582333132, 0.17293996488923452, 0.2589108600489629, 0.09902450597749846, 0.0565693456972417, 0.029442697231084614, -0.002668410834001378, 0.41168590205398703, -4.977692509041694, -0.12708787697219115, -0.036341306627584946, 0.016509124250939033, 0.09926167998227009, 2.142864199994049, -0.6700541665985164, 0.10903952705934716, 0.02810057467454652, -0.008064037069551833, -0.059121590922007486, + 0.10349686578476511, 0.07487412908828286, 0.05633051144349465, -0.11080462649750533, -0.005706080025300145, -0.11700236286279483, 0.08587737695761334, -0.04211482715014875, -0.091261760195441, 0.033975809960513755, -0.09107773078178065, 0.08910269967631258, 0.007151014998432585, -0.09950212839039545, 0.0016165504679939806, 0.08239262692207681, -0.0762229283124371, 0.03757574359750538, -0.08959319352589373, -0.015398852232308923, 0.07291364885989414, -0.08075685378011029, -0.05486471785987714, -0.10506272340529618, 0.02328460029371768, 0.12817602941212428, 0.0758129206598714, 0.16364357344524416, -0.10479841359401751, -0.01984019921176402, 0.15800109792515368, -0.0676655306004546, 4.842689405192059, -0.10086533951695037, -0.12009434975047129, -0.3566979545058707, -0.0544254599035392, -0.06460558913234318, -0.1462434147825895, 0.062488717981138975, 0.05277555187205829, 0.024318603375409364, 0.15853032212996715, 0.15978436546850494, 0.24367278379926333, -0.08263538308301455, 0.04598870703375468, 0.12707047907143462, -0.36411468227754085, -0.17488140405611827, -0.23757830187017603, 0.5968667501915119, -0.06787277026517463, -0.18468599409374953, 4.044458594282083, 0.1826302023777818, 0.1689690941789316, 1.0011181647264367, -0.1135032875484617, 0.010142721870935734, 0.42011584674107855, -0.18715856393227204, -0.09838794396555478, -0.14150631925056684, 0.06639407117440238, 0.01700323991139871, -0.03202652151976727, 0.08148974170156792, 0.015208379995030247, -0.053700353499952946, 0.19941282693037649, 0.025578179474643803, -0.04547222344524382, 0.36354697576374967, 0.0913331117067967, 0.12606409647754907, -6.911278602450032, 0.032600899214481616, 0.1716055866324907, 1.640912482541212, -0.09881568040296451, -0.04514667649142956, -0.18260990878752814, 0.02388092989915158, -0.05911444678742184, -0.195889545084724, -0.03642248146660801, -0.12657472853369822, -0.2473017716685561, 0.07675055507887052, -0.06140884261301993, -0.160759302566236, 0.4097325248935362, 0.22122892538549888, 0.351453485323602, -1.0400361612323274, 0.04127981852180973, 0.2546690782973957, -4.569484637286041, -0.31424165893768824, -0.3072486850728294, -2.2324689273189495, 0.2503032330017688, 0.014214331864216612, -0.8334458264620994, 0.3870174752860096, 0.23146104273715778, 0.3905687087565043, -0.18513045297352795, -0.049808868895127256, 0.09734170279599302, -0.2767360208398281, -0.11639396861268153, -0.024026962470594687, -0.21319043042998098, -0.049699715818425194, 0.031309971400861336, -0.28824357546363416, -0.07331035750219439, -0.13352598299850377, 5.024368092554526, 0.1015016464005814, -0.07816492069071987, -2.2007429536712415, 0.20191172978445715, 0.14354761766031637, 0.5292184174488126, -0.15018552444078626, -0.008446288081708775, 0.25822167417600705, + 0.02446352001186722, 0.04863272189139485, -0.07035018073600867, 0.07911807380328875, 0.09198169916550879, -0.13061223202090774, 0.12279590748536072, 0.09165988410322948, 0.10174265716633733, -0.055180874674906226, -0.06500130067263007, 0.04922934213160155, 0.00033706581433830084, -0.04804623323179625, 0.022698315560635434, -0.09235033658405706, 0.07809515687944314, 0.11217280474256376, -0.13050250037171557, -0.09244935238469659, -0.13808126638712978, 0.10765598039230007, -0.011923590985153984, 0.0058336700206462165, -0.0033504447038509894, 0.060897048129353204, 0.16439637820242792, -0.13398585398960408, 0.19226361482866378, 0.1373447601390718, 0.14334555154369355, -0.18952789783503654, -0.038923610026517695, 4.8179468910639525, -0.3817822098105025, -0.08511594630863129, -0.08952437448559791, -0.07480381522338064, -0.05903698498196752, -0.13125200208292043, 0.042636165720273234, 0.1579155971458136, 0.15279223752906357, 0.16796801742364564, 0.19107452158868954, 0.28371985644210157, 0.023872602826238543, -0.3465480644258971, -0.1341180465269199, -0.14333834097156473, -0.18778767408051972, -0.2927209228246241, 0.47095052702327855, 4.082439091359079, 0.17770671058840287, 0.10351208673749747, 0.10020252428372348, 0.15811178652784622, 1.0424707170117347, 0.3031064852090626, -0.2287075180262339, -0.10891376485333583, -0.06706955713443917, -0.053604823970340235, -0.11956268205733597, 0.043827191788083614, 0.12001753406950785, 0.05716599248157461, 0.02732112047789012, -0.008800517484851928, -0.08621914358206073, 0.1269166133791249, 0.38267369778485466, 0.0750278293052245, 0.046246172859651574, 0.05504045026254464, 0.12528296437184483, -6.8247263111419025, 1.5917895766566346, -0.07517185447407831, 0.01321048938047975, 0.013427382929791731, -0.028612086764542632, -0.21304236413830974, -0.11408905083221887, 0.0033609663989915273, -0.096164398810203, -0.1510538668521716, -0.2005508599912802, -0.3203455970979492, -0.07325378861180076, 0.36798999487920847, 0.14124507268793857, 0.1656599719869576, 0.24433505671948297, 0.43787587061369637, -0.8290345318784352, -4.646179407592582, -0.30211404690455423, -0.17647072450756013, -0.17305757899983182, -0.2878355221405322, -2.309543180872583, -0.6063929842468498, 0.4688324095452575, 0.24522295995506854, 0.16667248968667212, 0.14941383925550072, 0.35639599177104364, -0.08818722951179436, -0.35580558935786133, -0.18920795415048813, -0.1295035330833547, -0.07149863894171743, 0.023796617518137497, -0.12637251806562583, -0.30989475604798394, -0.046950147500580575, -0.011120579001308584, -0.022131499877737104, -0.12396673002090425, 4.935840861608901, -2.0940038331336925, 0.20835265215639334, 0.08514097231855564, 0.06316576437944078, 0.106577921598913, 0.5505891595891981, 0.10043436213980161, -0.24469248592808035, + -0.07706147324063863, -0.11314068745602768, 0.08139479047657742, 0.006498018875406185, 0.07251461519686955, -0.11162195078674553, 0.09366484064720067, 0.02223408773584024, -0.04303095984309059, 0.11008056608828393, 0.0634208797734102, -0.02651822668703805, -0.041069463217945835, 0.12237119524602792, -0.12133361648875839, 0.017589117976926548, 0.004463475415816097, 0.10848645881316656, -0.12521156373434164, -0.02821798805567933, 0.08580631441856705, -0.09742479181295968, 0.09049845168322959, 0.11769159931790665, -0.07348618155526151, -0.051835227365946014, -0.16494487816408784, 0.1977044256419388, -0.1252213857992455, 0.04429184506281243, 0.118536155543897, -0.1503349355479705, -0.07237199151683685, 0.11863515659355008, -4.823974944724547, 0.1212512875131273, 0.11086308165215597, 0.08854461074864906, 0.06392815762078063, 0.0861293681879508, 0.023322613325498676, -0.1802329207698703, -0.17686707350138536, -0.19446702896672907, -0.220145931109477, -0.31334127592362565, 0.10705352769347332, 0.25658867158577137, 0.13529707592689355, 0.1560953948446966, 0.21040086180072004, 0.32734359154994064, -3.879899537825781, -1.0695302370979876, -0.1723215705097228, -0.10213083672456302, -0.09924707086967638, -0.1557110522965916, -0.634242263149063, -0.820351355239487, 0.2368398858198381, 0.11579188962979267, 0.06846542659177399, 0.0489189405631225, 0.08271304341117992, 0.013884051562955912, -0.13969191762333696, -0.06951754108379395, -0.03478719089094698, 0.005978625256351872, 0.08520761740585878, -0.2780727639880819, -0.2692007588211754, -0.07152348344314374, -0.0418508412021493, -0.0492625929036084, -0.11345752483959315, -1.2843763979460148, 6.9689259945528335, 0.03187973314099801, -0.03729134548267954, -0.03026088986554712, 0.019584894898629468, 0.17868100343090831, 0.15733644627806886, 0.015149473669376717, 0.1169274954762477, 0.17938634617976423, 0.23677980726079023, 0.36841456399364103, -0.10432995694781444, -0.24911305814036644, -0.1340936865887109, -0.17493938676078122, -0.26781535860564054, -0.47500634677091663, 4.292428553437614, 1.6538459619358843, 0.2937920354784086, 0.17262775912742875, 0.1685253845127173, 0.27800367212186095, 1.27656374126731, 1.8879118069077614, -0.4947845127470156, -0.26445819634864787, -0.173876691781499, -0.14304407083510817, -0.2658967726010343, -0.04493725350957928, 0.3945297025048943, 0.22076306649267435, 0.15228151071053803, 0.08587174505136247, -0.015600550338321528, 0.24372924200333318, 0.22229651441923598, 0.036940762660008786, -0.0032005548943516704, 0.0035318988725878686, 0.09211403155992531, 2.028097331366386, -5.093268851750996, -0.19256558150911063, -0.07551718567796428, -0.05252869613818287, -0.09334918968030315, -0.38810662095790915, -0.3197664298477336, 0.25737629568429776, + -0.1077365033828932, 0.03857146394345564, -0.08163527239386745, -0.07594394654321217, -0.053326590522618955, -0.08106592888114605, 0.002979857709782525, -0.10656946174664185, 0.013888113422886221, -0.06847291838826197, 0.060060121876628916, -0.08836683132085114, -0.11180084519887933, 0.06697829066333288, 0.13535592243811964, -0.02198011090348944, -0.13159749152241104, 0.052319397807695386, -0.032487869638760145, 0.0527132302285068, 0.05042552492657498, 0.08419189907286866, -0.12006707431032669, 0.0869567244618487, -0.10867227757569256, -0.058571318364636644, -0.002305389459795123, -0.20266533632365882, -0.0374838500455793, -0.09563611008882279, 0.08080641203827874, -0.06906583179002082, 0.19036041641600135, -0.04112793340903213, 0.05640380286394074, -4.814425415895822, 0.11438753735468343, 0.095291628532768, 0.11232655878961151, -0.04892245816244378, -0.05278043185287251, 0.014348900534746134, -0.2125676766624038, -0.21874592195209797, -0.30518753102055984, 0.18830902228940827, -0.03871907712479583, -0.11874925118560542, 0.2716154484573443, 0.19411875183490818, 0.2845956808375778, -3.9881922862807917, -0.060839377265623024, 0.09337922828616514, -0.9863608961130765, -0.16272322403232817, -0.15244586049176667, -0.5678789086541324, 0.10223164606408097, -0.04962852617978086, -0.9482448648561508, 0.19036702984804027, 0.09403909005360614, 0.09504789942364486, -0.06150635721131038, -0.013875533279394392, 0.07223544997181677, -0.11370532899860786, -0.03436943517749136, 0.041367306004864046, -0.36375152783493, -0.04195523345011512, 0.048217211270549135, -0.2325203067854328, -0.07236088301834508, -0.09772708282863483, -1.204444798408332, 0.09187833539788384, -0.03585094092723455, 6.86824019125974, 0.01689701616081507, -0.0026301623642658797, 0.11894802662706283, -0.04614673732977459, 0.07122675137902401, 0.27735848584247935, 0.092106895686311, 0.19314080882244644, 0.33485066099007843, -0.20864321956179266, 0.05170334941285892, 0.14379006028956798, -0.2759215191915765, -0.22702585982827714, -0.3915896002503165, 4.497641390903373, 0.11675048294429485, -0.1555637997400819, 1.5110769326876414, 0.27683362956460444, 0.2687710614020276, 1.144116546831939, -0.21601539608537107, 0.07262293335810244, 2.1238480500751975, -0.40963342103521994, -0.23167199351330792, -0.2829932765244565, 0.18361080812364397, 0.04285159171521971, -0.2021718045061197, 0.34610695510048317, 0.1690645019323942, 0.060566539054242474, 0.35497417590936176, 0.06711083931899942, -0.041722770954725485, 0.17042570701069895, 0.029569876242184268, 0.06669521745465185, 1.9062971266862019, -0.16920669135032876, 0.01451586194774318, -4.959571599624584, -0.15606976144972706, -0.10298329955436823, -0.3295255750775441, 0.15947722606250547, -0.012894373428588013, -0.4867153254201116, + -0.03935908916725705, 0.07130448441856459, 0.11389015501317999, 0.12480736661600336, -0.09349622623786004, -0.12599647025866287, -0.032953684965012574, 0.042214249991423196, 0.006579155658297095, 0.07080917822714422, -0.11450535052844515, -0.114476364585214, -0.15568699639993808, -0.13333342287530298, -0.11650778233996459, -0.04673290701508649, -0.017678453801301272, 0.031043348870612518, -0.015762559252437233, 0.05950622659055763, -0.11455582955329457, -0.1479536320768815, -0.023188893320837064, -0.07349630135890087, 0.029454809922295544, -0.14966917898495785, 0.07258481993574582, 0.1597237416504273, 0.1606057702275282, -0.07455526894172564, -0.011651536119578379, -0.07802629661861217, 0.02405470066028366, 0.05654675757658534, -0.12516162802364664, -0.1328494043722806, 4.822173862652746, -0.13799157836012543, 0.017558715523004587, 0.026303099083573395, 0.05768454703050238, 0.08535434646548073, 0.027543292577008494, 0.32285258657550364, -0.1893883044432616, 0.031394172251465347, 0.037168743475911065, 0.02298399091204749, 0.05993696809409954, -0.3995146824207139, 3.9980149390270046, 0.09729570559747358, 0.022474285777770886, -0.020051980378630794, -0.10382638931251112, 1.0349884878137359, 0.6303273316771708, -0.10579960826040519, -0.015313986183924752, 0.027173815611187438, 0.09417636273836115, 0.9684716709020003, -0.21660704465748049, 0.01639375101795887, 0.0012902412948010977, 0.0031033892436607147, -0.01171628306108996, -0.10722979764502233, 0.03751203828604485, 0.40349527188614304, 0.0849896318087443, 0.0378933160425447, 0.005864589553113711, -0.04748170895746885, 0.287916462243543, 1.2255337528548589, -0.10886604954621981, -0.04134516154640172, -0.005029430211512767, 0.060123159950027004, -6.8917126250196326, -0.16578283217281498, 0.06837662702847935, -0.011891841060315461, -0.07396972222358628, -0.1475950286135691, -0.35310824671761454, -0.24726264855491364, 0.2518688157972333, -0.01912503155607226, -0.03913614589703482, -0.024165025615167438, -0.05089014657822033, 0.4918141614330778, -4.531146942994588, -0.1927288382130793, -0.05789251892596625, 0.022494368184762054, 0.17373994521951147, -1.6045986208825935, -1.2503762429188923, 0.2259081734712397, 0.05690839343977533, -0.023520383206897366, -0.1536252972439123, -2.153208884956809, 0.5179418880745679, -0.09493626735265082, -0.024935973590463595, -0.026186199250878367, 0.004504746192334486, 0.2535015323233245, -0.2540519623175974, -0.43754939436323426, -0.14252927996064174, -0.06979997948482275, -0.015712204447936223, 0.04917585770040578, -0.23988837923668405, -1.929145524947544, 0.1967492014819749, 0.10287116727541828, 0.04553874153625215, -0.05736157520715732, 4.9789592339679825, 0.4323331340274823, -0.1498704810489333, -0.04462714367327145, 0.00807394377861212, 0.08747360151381328, + 0.0652048901150158, -0.101473618668642, -0.1255182242717917, -0.0823477605985227, -0.020498307063761666, -0.04159782916496207, -0.1358531059120817, 0.07498495127373316, -0.049735552612070334, -0.0306884026921643, -0.05533685249260075, -0.13035585504114683, -0.12010621667767948, -0.09635963383337014, 0.006132640004443123, 0.11035022604684024, 0.11213684490111914, -0.04692191057456927, 0.015235188343014452, -0.022692527423016393, 0.09633858717898448, 0.10427515295242819, 0.08173652360320989, 0.013577717556948744, -0.09779609601487403, 0.04771631604741255, -0.02699388564989665, -0.08066156560592176, -0.11552033906750082, 0.052197419720045095, -0.03192771324082839, 0.02508688924811261, -0.1099410955093179, -0.05427456699392848, 0.015482744002744861, -0.003900139598669262, 0.03279498170858924, -4.878017275152364, -0.0008937876503898323, -0.026067933288699847, -0.05839596801948416, -0.09886941373996166, -0.1931936271743191, 0.37503190949046544, -0.04710277036670707, -0.03612663663065298, -0.015596670823186488, 0.021474345923342353, 0.10299427187049792, -4.201783791670942, -0.002226193132449983, -0.026049125097372006, -0.016227657793643768, -0.011941732790358825, -0.026180697067376996, -0.3643234115222631, -0.7706346211976729, -0.04518339212099398, -0.023424740332140634, -0.028950687860109042, -0.04580147656650191, -0.07211123611123638, -1.0656629014744612, 0.11866213931056603, 0.04161995845589589, 0.024030547466417168, 0.03146719637665557, 0.0875989153450582, -0.25902327820698756, -0.1639960526713783, -0.07657759038228479, -0.048454373220458924, -0.03829146676295936, -0.059961528857236074, -1.0943004330205999, -0.08612079272061637, 0.022463263125876043, 0.02181741745225746, 0.016958677611128986, 0.01695955832352755, 0.12080755516865677, 6.748622808383, 0.057536815054963775, 0.051278029822661796, 0.08749153462162707, 0.14827284288471454, 0.30083367147468953, -0.08996944258096651, -0.06942121756907882, -0.0036188618486005454, -0.00821133973014826, -0.053261032197178926, -0.1888494036122832, 4.7520088634716675, 0.11382288613090075, 0.08412132258033278, 0.05296390288722774, 0.03940120505348327, 0.06697593406290345, 0.7979099760161603, 1.1027886495469135, 0.04588143063904826, 0.013542053494247086, 0.02381552451250469, 0.049634370013534435, 0.05578758323638078, 2.4493101537897117, -0.2067023766694175, -0.06194538054396034, -0.022106150323208618, -0.024555658940236147, -0.09722207233486979, 0.015762583449087875, 0.33417238140338645, 0.15075034747542293, 0.09031572867832072, 0.06177496419003359, 0.08369255076740528, 1.830321150347738, -0.014130424872416114, -0.08308420239518133, -0.0724693086245729, -0.05958001585358752, -0.05601703059968799, -0.24005208613530377, -4.673912960087463, -0.05627054672299714, -0.017517748491238994, -0.029627442784402824, -0.06696650652564828, + 0.10981979413330047, 0.01904227993298955, 0.10600112318216426, -0.02841996603539454, 0.11086568565759862, -0.0746135165966317, -0.08627984164147742, -0.08055324900316926, 0.12413395562426767, -0.07327714056876887, 0.10859071153071895, -0.07513907098999292, -0.11589519726146975, 0.09014370633734478, 0.11853972423119132, -0.1268877433466174, -0.08960061689421771, -0.09969892626820358, -0.03271358248907387, -0.1617964905415675, -0.009331782747603655, -0.015682616264196998, -0.0770364507990074, -0.01979394558126508, 0.03568947241381435, 0.04638278884755151, 0.03424249119977386, 0.08172770968999386, -0.004653772874151936, 0.11455339277231455, 0.022045095627747084, 0.09754824121110439, 0.021321641382765318, 0.0939599208916369, 0.0395662199883516, 0.12180768668248648, -0.03044865916535587, -0.14077815965482396, 4.882155588657811, 0.03190424832059707, 0.06484800511789424, 0.16226177442148082, -0.3093261721663635, -0.07543035773739537, -0.14855424661550926, 0.029875940582491933, -0.023376228594910287, -0.10993604813999049, 4.119150014536901, 0.18221027573522336, 0.18329916025024956, -0.08065036770641759, 0.014776426998635378, 0.062295785606865266, 0.48013258965647343, -0.2604302160124356, -0.25010160939576387, 0.8990202454200293, 0.08887539654810853, 0.04086928281810975, 0.004472103921671355, 0.12959058405095703, 0.14175398721552135, 1.0100198673339686, -0.1426782025024322, -0.07547039451884674, -0.09878745888625962, 0.3382634757686582, 0.030964736026270423, -0.07722455336933565, 0.124165850875786, 0.07507777175618674, 0.10129469636264156, 1.1778973433803388, -0.17653367108773133, -0.17022473953297954, 0.1749286766013835, 0.0030277776715887383, -0.03317276187377734, -0.19792931350094572, 0.20924172065712038, 0.18355807061722007, -6.861591187398222, -0.1314105408505945, -0.12210126164236146, -0.2345518108798741, 0.30729712770854234, 0.016108910151748368, -0.163058239118082, 0.09679273151602263, 0.09615120644857789, 0.2197852768328364, -4.648763252128492, -0.28538657811076007, -0.24902080520520764, 0.030570653209499615, -0.06338048994318601, -0.14143998391468998, -1.0102771927779617, 0.4759915879902298, 0.45244056391964077, -1.3423948309045155, -0.12676683366761188, -0.038664989617744755, 0.07716522475117105, -0.31892309777547284, -0.3022303768363507, -2.2953347019545323, 0.25203547371179924, 0.11225861235937096, 0.11396743836156627, -0.25023178240177146, 0.020480290411169222, 0.28548525458514673, -0.27573284098413575, -0.1391978923942016, -0.15620252865955797, -1.9377872297167715, 0.2256248118507641, 0.20366940700931402, -0.11472336991473642, 0.036483731335307246, 0.08063596428888446, 0.3557429075341131, -0.31333582186476727, -0.27538885340668073, 4.8373124394450935, 0.13042679254909928, 0.07539959555647585, 0.0986768695290492, + 0.05346688588535748, 0.09554648138643212, -0.11248543808883557, 0.0869259875153365, 0.0551431156594449, -0.02879694896926393, -0.03937900307117908, -0.12318173089870861, -0.13764056553678497, 0.1310314426434498, 0.0935714341309693, -0.022376426784586262, -0.06625696540612375, 0.11952398676026207, -0.1083799370287481, 0.13149091406814084, -0.13028607159636038, -0.04453688190977547, -0.022520724796693224, -0.06469307162949657, -0.03701460663246093, 0.013606426632841754, 0.04361428934527426, 0.06535790379130668, -0.03379240346068286, 0.04802874167357379, 0.05241235337065487, -0.03217252142795747, 0.01486037593223677, 0.07035731133071398, -0.006966298207989697, 0.12169877566997789, 0.10645060520953288, -0.01744347111862583, 0.0212392694416984, 0.025167317081875428, -0.02574816099548334, -0.07812567931846463, -0.030904967628932863, -4.901395334618919, -0.13477748746190862, 0.3431099482218388, 0.1041509380541509, 0.0817291599810476, 0.09139341834795, 0.20745995703699915, 0.0951465760471516, -4.101800126585396, -0.14860687670968595, -0.09556681194186395, -0.09778223254570553, -0.17183943532243093, 0.03455369112526635, -0.4806672445057411, 0.22649439230969415, 0.13242548285531539, 0.1305951580648906, 0.2113253936245142, -0.9122852494157127, -0.06386099962236064, -0.12410206381686092, -0.07294310940900935, -0.07185992611806577, -0.11098593131945006, -0.973275467461166, 0.21608381685607636, -0.2937567900439725, -0.017632492863329574, -0.0015929448393922907, 0.008480669855445266, 0.07926562196842232, -0.17579542028839673, -1.2092423570875979, 0.14217267590001775, 0.08609562277989777, 0.08637724404053776, 0.14525330744852558, -0.16293052830138202, 0.1770201632682715, -0.19353738301515738, -0.10479678580606172, -0.10043690174322878, -0.15271370582507243, 6.9043274624873, 0.27653128653022113, -0.3337689599142847, -0.08037739106539782, -0.053878475610226184, -0.04428270679662616, 0.07086449242467019, -0.30654095859523145, 4.58922888811019, 0.22420010464096068, 0.13938182745603728, 0.1387679242948453, 0.22750621789200093, 0.057232382122506587, 1.029268502835704, -0.40639972415785625, -0.23679376987480802, -0.2335269378376067, -0.37862838551010786, 1.3613363058390133, 0.02542011774942554, 0.30719114729131203, 0.16654821746363357, 0.16031830356434784, 0.24154161994713097, 2.2378558512803295, -0.3418179348875654, 0.16263263374834414, -0.03858052045943955, -0.050699546208907154, -0.07708624541512354, -0.297743599414982, 0.339321676521044, 2.0062592809812285, -0.16484434173051282, -0.09594490790659038, -0.09509065817315665, -0.15710799645266915, 0.10643050135140941, -0.3307803577772082, 0.28988158810780995, 0.15729162611847222, 0.15155507801466706, 0.2310945158166855, -4.875138906512503, -0.1981911357536053, 0.008101091339143829, + -0.05204323067040578, -0.09373456431646113, 0.11215656069087804, -0.08973049947746473, -0.06135906365981936, 0.03956620512357981, 0.027773872364945495, 0.11448515380952429, 0.13308712094490038, -0.1373713517283056, -0.10566864101913243, 0.04471224186049566, 0.04273634458163674, -0.09908265620360002, 0.10727376320915886, -0.13041951596364415, 0.14965521313956165, 0.074235440691716, -0.007309648809973933, 0.046310285041406433, 0.008879941370819964, -0.026375854794257553, -0.0024867402611111374, 0.01757345558872675, -0.08465067644238052, 0.04116894464478484, -0.019346884114348938, -0.006582607562081212, -0.06880263672371656, -0.10187410102034715, -0.06982390020295033, 0.0007454521660312186, -0.04574623009570134, -0.02802293954362539, -0.0029435168635046785, -0.11474226817714724, -0.04815284133618973, -0.018924065361843354, -0.09638958639568455, -0.03865859355087195, -4.691376385435321, 0.1306816406694676, 0.11712948628124109, 0.12339059954907794, 0.14431739993975073, 0.221683583945602, -4.095280978675872, -0.08132876116410565, -0.06150420258871003, -0.06420868073427416, -0.08497605886053339, -0.14688848022162104, -0.666975471494143, 0.3486027633893032, 0.1348114786076482, 0.09701393094936583, 0.09395172396973303, 0.12165585326432915, 0.2672662263952208, -1.038517496248383, -0.13551969848041956, -0.06721154621608785, -0.041905638629477215, -0.030098297574817884, -0.01853406392351542, -1.4076457568802931, 0.11015245931494289, 0.04661375187286437, 0.022951789366646706, -3.550599880081627E-05, -0.046305350212890964, -1.0979643761103963, 0.09760252804225777, 0.05893755334234299, 0.05173241726684233, 0.06126790209768285, 0.10031834609658152, 0.34344488229776526, -0.41109728808145873, -0.12790960941469054, -0.08536909646711388, -0.07430759184890817, -0.08518995653787813, -0.1596880662204698, 6.73057633535162, -0.03377259082348075, -0.080921758941228, -0.11216436496352356, -0.1523129407286831, -0.26655665099100145, 4.9762770338820035, 0.043991970064888086, 0.05937159236794176, 0.076826882428565, 0.11907931882567362, 0.2318570387912211, 1.2453045162723433, -0.5356950756429366, -0.22281168492559367, -0.1641280780404899, -0.16330042442148884, -0.22142631378860195, -0.5317992006385868, 1.7021106235580117, 0.2747716733579433, 0.15027740366878584, 0.10584292709695076, 0.09270271424415326, 0.11057857691554995, 2.633183775004461, -0.28145098318271633, -0.14467521645137638, -0.0982529791570127, -0.0629126209394213, -0.008715920669918414, 1.6315667552655322, -0.025490011111561572, -0.03307077308514039, -0.0328158756756366, -0.04867307724485259, -0.1050431657150515, -0.47379342331938873, 0.505876134834697, 0.18552903461426085, 0.12910055574672186, 0.11360273412983135, 0.1336750402873167, 0.27795113617992306, -5.001494498728398, -0.13950434707234793, + -0.10970504095745295, -0.022233624471866133, -0.10522002395258795, 0.03460190988492061, -0.10854209432872869, 0.08353044385433137, 0.08112385789436996, 0.09149618916219451, -0.11535632385353106, 0.08526463644193535, -0.0940267111287881, 0.08676780747763468, 0.10257175049993261, -0.10241071490887797, -0.09362904699322126, 0.14357806038036172, 0.0664942047284396, 0.1104121497616323, -0.0019030324961124407, 0.16667032114284713, 0.035485026943550046, 0.011212197994269126, -0.027620250224246197, 0.022735731717598812, -0.12039050225188058, -0.014555540340195693, -0.12758916789243824, -0.07774250658352326, 0.06075225976246043, -0.08191311015433975, -0.09677460836648309, -0.06771109703601072, -0.11462115299606342, -0.009400198914305309, -0.10675633800100845, -0.0334543223533216, -0.06498801161295827, 0.0168660240700216, 0.08062099784890744, 0.08881197085298558, -0.011337560611917683, 4.79231300402857, -0.1574793482760663, -0.18604695816640737, -0.2599915270462625, 4.0501233301623305, 0.17366645092143723, 0.2302893759387413, 0.006561492431397586, 0.057329092660379014, 0.11963452330215124, 0.5830612324409293, -0.12894740501468063, 0.05168437847848956, -0.23131282608067955, -0.10512035239301476, -0.09678858856775854, -0.1621920552286918, 0.02826448949416391, -0.13253407076702023, 0.9735008780190659, 0.10898333206581057, 0.030198913105438166, -0.04319520780259106, 0.4965154999226457, 0.1890569705709212, 1.0511491744296153, -0.1493481657667719, -0.04833348467400686, 0.030809923116702997, 1.1516539875680207, -0.15543947447507717, -0.12119600642501108, -0.016168722858196566, -0.039806056186134975, -0.07123346068545436, -0.26552354621353097, 0.13295827432106103, -0.02285285426989453, 0.3115979516277262, 0.10439031610032096, 0.07688473541707722, 0.0905919955237603, -0.027470784337108298, 0.08377944801521275, -6.820506890432882, 0.07193523035371197, 0.18391651331673264, 0.3375052786048926, -4.641517334356606, -0.33900193626200603, -0.6319022367061538, 0.08858224158251993, -0.04825582421302754, -0.17861062285799234, -1.1350393132746923, 0.28358469897152805, -0.00751301804218274, 0.3163638977051136, 0.1649997059646654, 0.16746988042937663, 0.3376862949293495, -0.14512038238600472, 0.18319906107052764, -1.5404264087985424, -0.22468693623240732, -0.09338091506753537, 0.009435909328441405, -0.5776134477706003, -0.29569301940002046, -2.268458557674398, 0.34339655189107693, 0.16103463498284398, 0.0358958300826111, -1.8141257626429292, 0.2630162707573165, 0.3164009622404234, -0.09558788150632147, -0.008099202049143939, 0.048493768926509695, 0.369945395019165, -0.26699233236940856, -0.05515769903103196, -0.3600394867135951, -0.15244613575662858, -0.12139101031211688, -0.17401682618174052, 0.1822673320073818, -0.05021508123048457, 4.961987471385863, + -0.06650454251893531, 0.10232820480355687, 0.12393131793815391, 0.07692345626609638, 0.02867193600766468, 0.050128858772900256, 0.13787381514497124, -0.06998394847655053, 0.03745182529811494, 0.01061096857410981, 0.06698114103173937, 0.13807897039096484, 0.1102714503385672, 0.07802872597445701, -0.032373677137606686, -0.13162815111131954, -0.11800186513586462, 0.023175313873680485, -0.03848051966688781, 0.0598763588313482, -0.1114577757849226, -0.10652108772276694, -0.03259701358924571, -0.11154588146771162, 0.016157061072111973, -0.08847317198272205, 0.009662385690679154, 0.016007860817073335, 0.030353647942121018, 0.03839054329420119, -0.06492389175370604, -0.018167608514842254, 0.05535120214190795, -0.07485850579251141, 0.11594659114298356, 0.06526916329316869, -0.03603869371824366, -0.11582374270360227, 0.05702195738958794, -0.08235463494572044, -0.09058148923413835, -0.019135130104532667, 4.758601637858521, -0.2944278112970179, 4.038606972154785, 0.16153573232231666, 0.09858301019010987, 0.09899838934758845, 0.22641654198824493, 0.0613241838235144, 0.5581107717302307, -0.15755172713892648, -0.04756002840264728, -0.003926088245350207, 0.08370711034673711, -0.23115236711960274, -0.17304096745018316, 0.05532662730950294, -0.02172090053514139, -0.06018290117744399, -0.1582267547515931, 0.9422156225677087, 0.02329589405322216, 0.49926440206505873, 0.13033085385874346, 0.11146325743103574, 0.15860807189766005, 1.0571211325828083, -0.09600993042156258, 1.1112555299816538, -0.16734420170786624, -0.09255857765446518, -0.07302601467020126, -0.1015920188915029, -0.03500218035925601, -0.2448222247415108, 0.16402640853161954, 0.0635704746225626, 0.024673216539027765, -0.047901548298148355, 0.30393736646395986, 0.1203070782803105, -0.037418695247110945, 0.011188845525662627, 0.02802585794566803, 0.08769496946569418, -6.766491813871746, 0.29787882887862205, -4.644170843018203, -0.29912384309266915, -0.19313149911762426, -0.2101220576490612, -0.6234513518326245, -0.011873591371352465, -1.070075158671571, 0.3385199131901492, 0.1318925167789699, 0.05306352253783275, -0.06902095907874362, 0.31924599328673153, 0.33909567232198784, -0.20358282109845588, -0.023245555448580646, 0.05448555109056963, 0.23312552029416223, -1.4919160651464738, -0.10836049174665996, -0.580332216878104, -0.17743859987747035, -0.1588316236041934, -0.25293611957216083, -2.2694575641497177, 0.28171315288492615, -1.7293426767687177, 0.2829189418705347, 0.17146830240860406, 0.1439864404818531, 0.2759824191782757, -0.08122796620778294, 0.31458152713230797, -0.3262451135243093, -0.17174401314210486, -0.11133080376810467, -0.020025986304108567, -0.3527970457579798, -0.21251855474830514, 0.19794891965579664, 0.061041104925595446, 0.035147295977804305, -0.048423431109801754, + 0.03783992561007999, -0.06894182316584513, -0.11108209842712896, -0.12346852939192579, 0.09566672695295093, 0.13102365071116034, 0.04281241859724915, -0.053766380474325984, 0.007629931630976559, -0.05087180830378312, 0.10465809729870074, 0.10367082036602243, 0.15558194765837188, 0.14014701100889887, 0.13183537496505504, 0.06991712139194502, 0.05186845258532336, -0.05018116699380797, -0.02063961540156132, -0.041050291626544125, 0.10105121277152922, 0.1444566309048378, 0.05277956735961797, 0.015969659226875172, -0.1184773291818641, 0.0671440363747185, 0.011345258927886473, -0.032854428195238934, -0.05531838515793556, 0.07484662834191294, 0.003248123689406143, -0.03198994406911667, 0.08070310633789403, 0.07558290298026211, -0.035374833358196446, -0.00756086285589851, 0.13728161728710522, 0.04467714710500944, 0.0451999797219993, 0.01756068247603809, 0.1259395003091481, -0.04547907004924969, 0.03549851782737754, 6.534589450298599, 0.17654782360852814, 0.08756346106108104, 0.06623093825908838, 0.07224082058966341, 0.11678860549677833, 0.5311476575120524, -0.14479046310480972, -0.053145191788183, -0.025354559567497544, -0.011132716415804537, -0.002158644833164136, 0.0060739534183019694, -0.061707874656255046, -0.02337986683110488, -0.024433224782969026, -0.036477802232783296, -0.06496468184729692, -0.15715808933991618, 1.0283663095885685, 0.15365585422184153, 0.08846824025714825, 0.07605912716403296, 0.09425391642199676, 0.17591172557429852, 1.611970869922424, -0.19058006003017502, -0.09445761793380104, -0.06459978494704868, -0.055290462331391926, -0.06912282499148459, -0.22422081457566895, 0.14029387017395414, 0.06347339576281569, 0.04261596866024714, 0.028456434749850157, 0.012973076283930032, -0.016335841695497365, 0.14103030726499408, 0.029460475487928905, 0.013260339588244852, 0.012020535160206514, 0.02665749467576778, 0.08580990796160676, -8.436138697505406, -0.3430723201947443, -0.17267036840510525, -0.12979148138465946, -0.14216387738996006, -0.23888610023254797, -1.1986127654753242, 0.34441446243310514, 0.14469198310715137, 0.08288574721373862, 0.052337858145446725, 0.04090297848406345, 0.08410738679285068, -0.029704587888209844, -0.0184727390680528, -0.004130544171181305, 0.02151907333500358, 0.07203762248696638, 0.22180630479026717, -1.443813304834392, -0.22720760012104513, -0.1243514437907855, -0.10294791369431822, -0.1333556771039286, -0.2752991337995436, -3.0224874009233136, 0.3486830043487724, 0.18329086453207316, 0.12431684300391997, 0.100095516149453, 0.12065158807012308, 0.434199319984374, -0.32514840800703554, -0.17038139634628985, -0.12921806765694588, -0.10211808953789459, -0.078066390063176, -0.06656351679973027, -0.02947577217226035, 0.019704209529387673, 0.0392377783273431, 0.04624122849798773, 0.03337451596432406, + 0.10739454064094549, -0.04152972640386487, 0.07832920846340234, 0.07988703307441801, 0.045689415302473245, 0.08481856370085243, 0.007961786957090222, 0.10666846584265614, -0.029222699097588296, 0.05878081951453398, -0.07646261771456069, 0.07444437692796481, 0.11738757078787324, -0.04359051308673663, -0.1322863499501477, -0.00326968595877584, 0.10991844003621905, -0.0850595864402296, 0.011323218777350813, -0.07209040448025804, -0.014244959826354837, -0.0797873822113225, 0.021828608250985915, -0.042826428507525306, 0.04130410234799346, -0.0028776252037668697, -0.05484967166990512, 0.06175548423596507, 0.019981568976987985, -0.03377679400091473, -0.05578885065590103, 0.0007120455638918615, -0.12083277242909986, -0.03631926472772497, -0.01554820662295428, -0.09924902780191872, -0.015157582095701392, -0.01990934297671808, -0.010711369457173147, -0.036139864633625986, -0.05206687536218171, -0.007922652132100175, -0.022945554115650166, 0.006512805942006902, 2.632573874894852, 0.032694927609768915, 0.046023074375695194, 0.1009062201757761, 0.7002009545621017, -0.39573069224984747, -0.6839317847547529, 0.1264228663238704, 0.008156703170634744, -0.05245457965396624, -0.2974050867372563, 0.6280371443441065, 0.5604869564304177, -0.3972479207704127, -0.06915002619401367, -0.008715633021984304, 0.07302250035258945, -0.785604236094188, -0.31500234318887943, 1.0365144850582098, 0.10643341539872678, 0.05683774522347845, 0.0640146179369343, 0.5930782428007135, -0.06482113018605185, 0.020998752637966987, -0.04215703359188522, -0.04195633120318802, -0.07081065868347797, -0.3322658416302755, 0.3454426904788215, 0.40453920473477656, -0.11908645477171463, 0.0020991402708189777, 0.047603448163412804, 0.1905008402733851, -0.6501300246770412, -0.40861874171785395, 0.5040263868955035, 0.06190022699672047, 0.000902929492418103, -0.06196406704135827, 2.171304715949769, 0.20745154988626957, -5.462992060347034, -0.11605143745271795, -0.09453660733511604, -0.16754283659694857, -1.1502749913074533, 0.5668818527240935, 0.9554228210510034, -0.1251591556619639, 0.021210829316352098, 0.11484844357153284, 0.5649253546945119, -1.078944601296936, -0.986370443084556, 0.6140235971827533, 0.08770792678641759, -0.02190845346284709, -0.20654390068024167, 1.631383440995585, 0.6745193493069005, -1.8642519004434794, -0.18725835120164158, -0.07557293909301399, -0.04730345930126112, -0.03702336410347584, -0.11120218561955819, -1.2297577015778922, 0.16928189521847403, 0.09152577118349386, 0.09518362415293391, 0.3588934860240191, -0.32653242815244854, -0.34569195189645063, 0.021803382512361736, -0.062481047145893864, -0.11250816065117586, -0.33321687806096956, 0.9502909037651441, 0.6145810554068105, -0.654846014281894, -0.053032463542211326, 0.05023254758817497, 0.19444411738993617, + 0.07821111028182498, 0.11320927482522537, -0.07787610494983747, -0.012788776352234237, -0.07772265613358235, 0.1122640437098111, -0.08612803542470145, -0.007133340498108083, 0.05501975371771662, -0.11081549220961812, -0.05146099819874918, 0.0024627798529707726, 0.058946080643732496, -0.12291021422702912, 0.10085810736950589, 0.006027417869735495, -0.02564134878843449, -0.10818361420088034, 0.10174954213548612, -0.002235131453841336, -0.10652540743904852, 0.09474280527752836, -0.013647854184091878, -0.025181672170202975, -0.015337328872611748, 0.06027612462872409, 0.06073977877597907, -0.10350337299879063, 0.014455661254907813, -0.016241988378409733, -0.04324467689326547, 0.04285584194269926, -0.008821256577188942, -0.008571438777126699, -0.052891784761243434, -0.005804764517171367, 0.030264294358254045, 0.07534572160796688, 0.052701593732588294, -0.006380689779660995, 0.022846689405744032, 0.08779458633992462, -0.02187351015572128, 0.013021398743281207, 0.09716776723362298, -2.638179846998582, -0.10736207728824015, -0.717066615128422, 0.33094849371537766, 0.20305746667652413, 0.2204909962901807, 0.651132518377997, -0.08412275091791482, 0.2849223764483868, -0.5708949764349242, -0.2692296766204615, -0.2632707158439491, -0.49390511916834023, 0.3962857804400677, -0.01840177882267533, 0.7654517200045605, 0.18973022219786484, 0.16762660688092315, 0.2547982027208409, -1.0570140963531278, -0.14033715860091928, -0.6115763050235408, 0.06288393600937248, 0.036202887986363175, 0.02982958481858844, -0.016445896510195568, 0.08736896854747495, 0.3522310755057857, -0.29699649486412283, -0.16729119819735916, -0.17536843609234223, -0.3785224944838775, 0.08843263889096803, -0.1814443455981328, 0.6036865370480886, 0.22055768518663796, 0.20844133882582339, 0.35048303773969136, -0.49942726655773345, 0.004882944217209084, -2.1559725850530986, -0.14231123564155432, -0.10975364084751117, -0.14954530129016158, 5.477994315666712, 0.2321911091256471, 1.1874555445655668, -0.4777692982077103, -0.2956757285983821, -0.3162431811009944, -0.9145673306619864, 0.04330084343584217, -0.5655232629073204, 0.9702616906255296, 0.47007869942354974, 0.46635998292293657, 0.8803821572937888, -0.5937951054410636, 0.12755350984802932, -1.5740862692399658, -0.4015767727728333, -0.35788160653207024, -0.5504090341666538, 1.8884399234305929, 0.19377801389245675, 0.0594356041779934, 0.048034745227433895, 0.05063455998730959, 0.10013219124939021, 1.2070323485920527, -0.21526001027892439, -0.4106091426354416, 0.27413250852305276, 0.1661362280465557, 0.17840383680748995, 0.3384927724459864, 0.03947505612357982, 0.3554433595956547, -0.8625321069197457, -0.32136851224850993, -0.31561930856738485, -0.5428948527019006, 0.6198752618617553, -0.1232533983544375, 3.8511080826397643, + -0.022879254181390658, -0.04562768069822624, 0.06638105989617968, -0.07531834945413415, -0.08852271616109424, 0.12710268186394416, -0.12180855815780196, -0.09506799576947254, -0.10794072036408735, 0.06587180633842869, 0.07879732109123569, -0.06831249737198039, 0.01914618042663669, 0.02464989552895437, -0.003675293363529267, 0.06417333826789601, -0.05625060536197213, -0.08796856527054897, 0.11135721973242253, 0.0859805337127094, 0.1285732062556013, -0.09887389681309253, 0.03446304067789867, 0.03685883400708924, -0.06843188661655, 0.015199924138957575, -0.08606708527294772, -0.01307667245265207, -0.09644844639866569, -0.0112745325503903, -0.03516824139131051, 0.06212823894413882, 0.05603781963069014, 0.04533496414926371, -0.016813870633249788, -0.01532627102023224, 0.0841145292184082, 0.11507562812636149, 0.04089385635715693, 0.025543611611867398, -0.04613829634903566, 0.007925296761129243, 0.03627215443566516, 0.00229422969882417, -0.022903335083283415, -0.05331980351053406, -2.953313216009427, 0.3081719228689, 0.15929675004702332, 0.133212097488756, 0.14522042577548122, 0.21854355575739498, 0.8455998396679689, -0.6392780698604459, -0.23779779927447914, -0.17613846513888498, -0.17330817928454537, -0.22431802865250922, -0.5295538409616627, 1.030436866920351, 0.19908188560049633, 0.12545107411856093, 0.1108717191307112, 0.12696357493402657, 0.22422541528759193, -1.4361176588087687, 0.003564895266452095, 0.015355428017770734, 0.023878380835409274, 0.03569338262044541, 0.06736942525197476, 0.26018917488161225, -0.25954569901427343, -0.12473577929678918, -0.10849628805692325, -0.12100064044740111, -0.17470410024731853, -0.500570131981943, 0.665464143787791, 0.19022709567267032, 0.13790411201653088, 0.13904844351289747, 0.1824139241181073, 0.38547455312844886, -2.371370374427911, -0.1237765047034502, -0.076621288634179, -0.07223166861130915, -0.09125550294523149, -0.16843010470374586, 5.863719041261618, -0.3993514963179408, -0.22103259879077242, -0.1943478494953973, -0.21782423045170907, -0.3327591544099573, -1.304263343177162, 1.0225068336900511, 0.395951683223174, 0.3055850347711262, 0.3115840694201426, 0.4135975481610791, 0.993898383251836, -1.9593917836140067, -0.3899213947079526, -0.2552638829027478, -0.23753658814767864, -0.2877303121292637, -0.5339098199873759, 1.6674801058135653, 0.17216291737148004, 0.06396860572045204, 0.03152991814386297, 0.020062628448431763, 0.018209235090387188, 0.798811697931576, 0.14817016856306553, 0.0959697292315951, 0.1077410996320948, 0.13681378768499436, 0.20559848212922044, 0.5629597009193678, -0.8449278353491574, -0.24606929367358732, -0.19362154409618537, -0.21389866571841665, -0.300713070684681, -0.6581987817103405, 4.0419882274495675, 0.24329419064655855, + -0.10293453786332228, -0.07730066327408508, -0.052107161203399754, 0.11203455081305155, 0.01361977292751878, 0.11058709545707239, -0.0920714602769011, 0.027954737871852826, 0.09167345760531043, -0.04959464104808499, 0.07856938424744621, -0.09412000047679643, 0.01027847804049518, 0.08827417046322064, -0.02559008738610038, -0.06540560000392873, 0.08786967590003787, -0.007707628814995865, 0.08084405096615506, 0.04488695466944948, -0.0371176423611464, 0.08635024129940347, -0.041410627961688776, 0.05069944484033974, -0.061946319565461316, -0.03202346033217052, -0.05457907342047018, -0.08734763788228414, 0.002804517324107784, 0.05013807665346994, -0.04703733579201849, -9.023851665634046E-05, 0.03294224940352914, 0.04804782295662627, -0.027970297793886052, 0.02460160191033125, 0.07681580717295515, 0.05150200668406666, -0.08254930279842229, -0.09864118844274859, 0.029411817484244936, -0.06586855605225105, 0.06228277006437924, 0.035723488802582755, -0.10973704302182531, -0.0649339494055032, -0.05976747174457209, -2.397688722483627, 0.11579318213280132, 0.11889406441217798, 0.1551861308483603, 0.3616462482300034, -0.2511683660052253, 0.24157042743386764, -0.2596722384344818, -0.16660949083434673, -0.16120312478454432, -0.2247854979889234, 0.3518914768784556, -0.19758730752951742, 0.40385792123945163, 0.14258022547495175, 0.09958080882319359, 0.0841005899906068, -0.11498985659932526, 0.21751369321774994, -0.9060820691624707, -0.05016235315193848, 0.017225606910037827, 0.07763878360364096, 0.3991609639490458, -0.3106959264813992, -0.365205788978369, -0.06609610057214615, -0.09139311220693544, -0.12863527222931814, -0.2748896791813467, 0.39311959399845314, -0.013184236575181474, 0.19111809543859132, 0.12609757483513062, 0.13197556831394686, 0.19539272361776766, -1.9387009549778629, -0.10804731765739892, -0.06459066627219345, -0.05889055269965504, -0.06834849973226875, -0.10653155257002232, -0.47337072205398856, 0.028065551462348376, 5.241597997348876, -0.11198835356955195, -0.16757879160404, -0.2521138991461671, -0.6731899806268982, 0.556866347653473, -0.15634170574922174, 0.368733626663321, 0.27791444959496336, 0.29845960412844036, 0.46796913546058705, -0.9076782437549689, 0.21800483657155714, -0.6270737904884651, -0.2647447991097843, -0.21779061243593745, -0.24268080049282031, -0.9998058057895189, -0.41486623159339553, 2.0814871982493535, 0.19609011962967282, 0.03931881161363382, -0.0732191372645945, -0.652446928224363, 0.6444611220131278, 1.6947781190213052, -0.04563188416841646, 0.07689621969181981, 0.16439840823053486, 0.4319295946850439, -0.741338649713224, -0.25073438117503277, -0.13386185387154176, -0.15802543131976213, -0.21190596906825132, -0.3793365197343245, 3.635938675374165, 0.38101844788773687, -0.09736386960041987, + -0.08835228214065807, 0.10066494796819556, 0.05685857803856651, -0.044686771235760224, 0.12576033462269082, 0.06663205941322912, -0.01435119700814077, 0.1056499152620069, -0.089382319676112, -0.034490057979629646, -0.08192468637468901, -0.0744706601958601, -0.05616890195312867, 0.046713242117128, 0.07958868905731066, 0.11417963041058198, 0.02211004051710228, 0.10862173225283829, 0.10488448272319714, -0.05405504226860086, -0.04937133891556292, -0.1364983472548151, -0.07067285115527332, -0.01974889540276944, -0.022274978808450346, -0.054388678076017355, 0.04792246955447463, 0.019615540002625376, -0.06332697792932658, 0.05929249996535355, -0.06262597248316452, -0.032532709557298284, -0.0017274855848885115, -0.0045895439620740166, -0.0035449416688914637, -0.03676474160344738, 0.03199047534186659, 0.057097241043711146, -0.07228414137608796, 0.05719973666852669, -0.07077880529289265, 0.10348711644808177, 0.025933928077656005, -0.004393567079038516, -0.07890256959723416, 0.10053594812755429, 0.07252555807100945, -0.11079563474284632, 2.406135806984063, -0.15561645513253752, -0.3526996761855772, 0.29265066147157137, 0.06897336986898439, 0.005355911517654296, -0.28158410686940655, 0.2675929877898694, 0.24080783452594243, -0.38405124063831314, 0.012129360244041765, 0.06950474938417724, 0.23843243152034566, -0.3922155179243221, -0.13062593774578585, 0.12276788363414878, -0.1255769922148718, -0.13220201718924618, -0.2144911764142025, 0.8953568191296983, -0.0070998519412317496, -0.381711643978213, 0.30903785769892755, 0.15930600593741162, 0.14509373048844737, 0.35039101545254525, 0.10116775833413355, 0.2599204762585613, -0.4202484735462666, -0.09594693625203138, -0.0445533681669813, 0.05205477672872094, -0.20334957684630123, -0.20049773087492415, 1.9588721405227454, 0.11652467215286866, 0.07175206133305789, 0.06260703726532951, 0.06719530667151472, 0.1025871768992182, 0.4600398966274618, -0.08451301444851719, -0.006090149252558824, 0.05332937173703249, -5.241279947144571, 0.19623340066630657, 0.6475118846579544, -0.6104919839006715, -0.19744249964260896, -0.10386117628530506, 0.21978095506577044, -0.402104847015998, -0.4745180463011258, 0.9678255782098151, 0.06981123957627378, -0.04363383621319339, -0.30390265047596415, 0.6205984103645742, 0.30130860049109753, 0.9669885434397406, 0.1674516184903846, 0.2479571510320887, 0.473556733585203, -2.050656042518047, -0.09473523878767609, 0.6231167554673619, -0.5909490295519415, -0.35642428273650867, -0.38218932881771206, -1.690362660877494, -0.02689031183157875, -0.3871723903072517, 0.7653732976002545, 0.23347383655135723, 0.1745642935602032, 0.20077415983015934, 0.1790845536138404, 0.35059196363514433, -3.67648194288786, -0.3310738392335947, -0.234844974394251, -0.27932732371112673, + 0.007460654324702252, -0.014464292803872942, -0.025572213663787417, -0.032777269525708704, 0.033900139594270365, 0.05365540232190041, 0.04430368282066643, -0.05945817049819868, 0.06501113381145124, 0.08840547580173598, -0.05215739707598158, -0.09829587052295384, -0.08218890804271614, -0.09828792138753853, -0.11869607668738313, -0.1280481573305896, -0.11512198542130696, 0.11370147841663841, 0.1618907228201953, -0.11016013438588666, 0.10793029055172074, 0.13423949300998037, 0.11439517492143735, -0.04397701175215197, -0.03361801082063634, -0.031021623687082046, 0.0469120373574698, 0.05898538013832211, 0.012611447086866921, 0.05371742842420461, -0.03197422575481167, -0.04412483673251956, 0.052397684267435775, 0.013198330570973308, 0.052645504352643056, 0.045883158243720724, -0.09035124933374829, -0.004593610116724533, -0.07188753650262548, 0.07713028119908437, 0.054850670486442286, 0.007137102335115555, -0.0817248819152844, 0.008893416982688102, -0.014739502910006499, -0.026927974173382312, -0.01182710584594026, -0.025233092080287504, 0.03502123335839483, 2.285124862978691, 0.30218722033692114, 0.08843565066154427, 0.04957653829525324, 0.0314817842380051, 0.008159517805059524, -0.21437050318300546, -0.2888095817002468, 0.022184269959623637, 0.0408372078204029, 0.05624569647455946, 0.09105515724881125, 0.2574099059601143, -0.18074600284101447, -0.1787866233496784, -0.13360557789562416, -0.13051788691755392, -0.15755698007713054, -0.2708867177491612, 0.5589249821953117, 0.3933816306868825, 0.19292677649054985, 0.15262669696665926, 0.15329081530484734, 0.19550480198520304, 0.5478041702632617, -0.46741911358804644, -0.1250582533794971, -0.07567489758884655, -0.06091632416513765, -0.05818510290939982, -0.026568438329084232, 1.9844836341530403, 0.15183273390075364, 0.09160926518779575, 0.0756855497288634, 0.07913461432967944, 0.11287364195103128, 0.48470342906338165, -0.0856018517168636, -0.023663171154532744, -0.0032841483149458617, 0.014286198567442177, 0.054039338801713716, -5.010725354722263, -0.6914273921074667, -0.24796357267128633, -0.16716655518883033, -0.1434709460081114, -0.1393408963761404, 0.0184999138220579, 0.902866180690823, 0.08504210231169107, 0.01522503501198269, -0.016882373634263814, -0.06033088711008838, -0.2717736326653952, 1.4467244571389126, 0.253830677270713, 0.2257122845659612, 0.2408556397910333, 0.3094414561503896, 0.5707129524415901, -1.463223200450916, -0.7886155372341082, -0.418795824493419, -0.3498398121036209, -0.370955128614316, -0.5081169615161418, -2.1067631185622693, 0.9446259754626838, 0.3077689644480519, 0.21039299385426435, 0.19531263316697856, 0.2343925346885053, 0.416673180294037, -3.9004718599406, -0.4436944673495009, -0.2821944751272969, -0.24416723660342865, -0.2720555929952817, + 0.09641429961050155, -0.08795237831257308, -0.009804126613803352, 0.08681776048818089, -0.10235198963441246, 0.008800645478790765, 0.10018126515311306, -0.07646303278025511, -0.028000390676744636, -0.10591437255139081, 0.05510615856365323, -0.019482754811102926, -0.13100925390192525, -0.05214037849360646, 0.09760654625260376, 0.11268550794911969, 0.03683092771806027, 0.08505927924196506, 0.13790141367733097, -0.04468800658436933, -0.096376350196691, -0.0819603854829572, 0.027660520291618085, -0.026840727312794778, -0.048011054421142105, -0.0264593982297014, -0.016152472647429385, -0.00700357367642726, 0.016970609195205388, -0.006831721619404789, -0.02532688133112043, -0.04728328519527438, 0.06467616751470952, 0.10155424953697147, -0.008553703029177274, 0.10634305171797051, -0.08398196432596096, 0.07163873250953778, 0.024627560114982842, -0.13679329622833128, 0.004763152283628984, -0.0696165962813382, -0.03914321661787249, -0.004161320763693334, 0.08658886903085784, -0.0798624847014894, -0.031297769133913036, 0.1363093312959084, -0.126021525012504, 0.004801931775853262, 2.4603523213903444, 0.05239885478868772, 0.04147048155425212, 0.043142036687695895, 0.07702093580787805, -0.4574909195971821, -0.33808691017110565, 0.10439061879204065, 0.05467644287957407, 0.050904106499777335, 0.06434990022797114, 0.21557996656141518, 0.22130164368568744, -0.3675544868802542, -0.15207284387474013, -0.12994395473389314, -0.1548045974129793, -0.36744102689512725, 0.017810745098836955, 0.9630543080073348, 0.19924407034868416, 0.15312685016161015, 0.16731919034578385, 0.3063375563738392, -0.44197404145848573, 0.24885696648819972, -0.1108544747898598, -0.07425729759417454, -0.07388622177607479, -0.11652839206567148, 1.9733340817743397, -0.06974932068282248, 0.1726037888410297, 0.09177700459880479, 0.08145093182571601, 0.10543316460086102, 0.4437667311789798, -0.15380755664586404, 0.03807378238377411, -0.0036814177444920437, -0.0027365673334570906, -0.002512613175387271, -0.027304506739303902, 0.1513343153897509, -5.3288564714337445, -0.21359817438266826, -0.15882518180038394, -0.16682554437331876, -0.28444819347657924, 1.0604472933562783, 0.3495987701670345, -0.016537837430863123, -0.0010574800172649113, -0.0003177077019467234, 0.010999241403799098, 0.789948566637924, -0.5470334278409746, 0.6539511839805715, 0.27046984585988665, 0.23427415688465536, 0.2794645145812391, 0.6328322384009378, 0.14879049174285652, -2.153381541712615, -0.45952219204836087, -0.355131099372035, -0.39189091714146557, -0.7173076826092745, 0.8144486215323623, -1.502120253196997, 0.34135780754004985, 0.22283284236488554, 0.22340898197946624, 0.3484349011669486, -3.6391502518619996, 0.3790197775636226, -0.5607171416822947, -0.2952310359122061, -0.2629706133501535, -0.3424843172182209, + 0.09672508247172909, 0.09637701780600724, 0.009217314830052573, -0.10591673500164275, -0.0761692381830112, -0.024699109026243952, 0.09837524624864541, 0.09209894688039745, -0.0197321479514817, 0.11030156816882732, 0.08037137073163775, -0.00859035154283054, -0.10167157352475599, 0.13218870837255015, 0.04551722040963017, -0.09334739043311177, 0.03120856104816888, 0.003369125081735744, 0.07783841524621174, 0.05988388240753561, -0.02988444452416058, 0.07639310755425587, -0.05488276204728586, -0.022057843920278285, -0.0495602397352967, 0.051847966277198954, -0.007981163985848045, 0.011013570618258596, -0.005236298276554946, 0.043601024896256384, 0.05224419795660082, -0.0663661050589974, 0.1249868751967788, -0.04579878270426021, -0.0571290583659245, 0.03488657251597018, -0.10605808934005959, -0.04735940162755627, 0.036825100904742655, -0.017261673547780652, -0.03164140643644097, -0.06432297526908354, -0.0839168143615789, 0.023618301358735865, 0.08968174202113977, 0.12085940495196083, 0.003222073886997671, -0.16721877267612917, -0.11852047880568733, -0.00575646262395453, 0.10695736391857287, -2.43626781452054, -0.047225921635484336, -0.09026550473378009, 0.4186876520353124, 0.08181377813067572, 0.08044033563927955, 0.2986377632610926, -0.11855257178661117, -0.0647489472347002, -0.17732167082296846, -0.032740728816982145, -0.06784759846906024, -0.22313148630140062, 0.3741821622966912, 0.1825547111775907, 0.3483306732203054, -0.11502566299713768, 0.0042365492074105116, 0.10063229539902385, -0.9397646902301353, -0.22138851998012038, -0.316076073621266, 0.45562522194902016, 0.08447744514320688, 0.02217482423639513, -0.2998845902510214, 0.11260357468604604, 0.13471412772578686, -1.9684357197699913, -0.061862627032121885, -0.0015574824328064146, 0.12350757171419026, -0.16723989430076516, -0.12599071419700744, -0.45617755573964175, 0.12186318228701033, 0.05765925127918453, 0.06170298640813167, -0.06100365803916914, 0.002990931555918841, 0.046153319571748, -0.08847535648568705, -0.0561348493695315, -0.09187971352254629, 5.296246374966586, 0.22021488278480333, 0.31034706836238424, -1.0220951540798509, -0.1644922389271372, -0.11168899747181937, -0.25766553867365793, 0.033695228001648814, -0.028361085961256638, -0.8642686906325768, 0.1573206583702746, 0.17617664465407679, 0.4820252450360075, -0.6818869882993448, -0.31973058255572795, -0.5705261540166858, 0.11715935563196433, -0.07208952460451967, -0.3024124723080307, 2.129428984928598, 0.5192292781167356, 0.7235993331314023, -0.8988561509548998, -0.1406200341752062, 0.02818182581120123, 1.5883334189154228, -0.3665505688807634, -0.3895776044131507, 3.6653308811586416, 0.12614543023709393, -0.04216220873100052, -0.5042344271024632, 0.5580711154332917, 0.4079937430099424, 1.5058296709047476, + 0.008107270579020874, 0.016476990731472334, -0.024791406202108745, 0.02960028404762492, 0.03697998574068837, -0.05642873591305009, 0.05970855637811134, 0.056891333534731754, 0.07127406348023047, -0.06281483480641231, -0.08031408401426193, 0.09431844844080474, -0.07611241488901493, 0.0748809790870485, -0.0808983214093195, 0.09517970475899738, -0.09758125859232425, -0.11520342540356643, 0.10484954610752459, 0.07527548966660431, 0.1480396041223459, -0.1090508173187891, 0.05025869897978004, 0.020735050475683674, -0.059507798511255254, 0.0634353154470161, -0.0013348583556964447, 0.018223521192189295, 0.02067607068764116, 0.022020842825784127, 0.03721729798952059, -0.06837212178913099, -0.059090160665607426, 0.10374553174633085, 0.14991501130434126, -0.08494367210211262, -0.034871364371507785, -0.022656737155636215, -0.003233565359500795, 0.021801680574643083, -0.0345332778591071, 0.03287821027942143, -0.09541780640563108, 0.010974207738885697, -0.00022987042127699142, 0.013582400984720966, -0.025992484224870067, 0.046412847379709216, 0.0499525076661044, -0.04932298887919362, 0.08668559813434112, 0.07440794021863856, 2.460790056080703, -0.4098831148254639, -0.06793232454027967, -0.045810849958516586, -0.045371358162107245, -0.0651717347887748, -0.2849352514840613, 0.2431449141906119, 0.03376897264732481, 0.03144573367648634, 0.036499296593661856, 0.05747024530697187, 0.1885474263792814, -0.588268874506248, 0.08424590946809207, 0.01138235421508299, -0.0032187326317890674, -0.01810899174763031, -0.07399509344088406, 1.0936284315803033, -0.39533418445911017, -0.0718880878649843, -0.03991235734992449, -0.03074668315522472, -0.02419197215538549, 0.23610891502689363, 1.9095171794887782, 0.04583993494593788, 0.015934125955381837, 0.007350588337228368, -0.0023295774662974444, -0.08719787290051337, 0.5375936888287689, -0.09841043397996121, -0.04072752535334795, -0.031061876803198024, -0.03413114573469195, -0.06032465485860353, 0.01737946357043693, 0.08700837933196906, 0.03681739828998179, 0.03030451608899555, 0.03638997510130927, 0.07231375468523044, -5.395436488196873, 0.9568479840008508, 0.13639106725366118, 0.08319486446541235, 0.07543558442988685, 0.09391724625603715, 0.2841491996546067, 0.8226618099070876, -0.13682083278751067, -0.09348363403320759, -0.09702776338498098, -0.14133863661689594, -0.42453938014024495, 1.0108689779367193, -0.07233819614735149, 0.015597174216616216, 0.037677786655012424, 0.0747881888674653, 0.23180082255770162, -2.477430214117076, 0.7586611780457562, 0.12774015352752888, 0.0638249233070528, 0.03925352994897602, -0.0026588363593912367, -1.40456853423167, -3.4841870962660884, -0.08771983967055946, -0.01968537988758684, 0.0028316067884375795, 0.03988239195750831, 0.38365257939799297, -1.786304757838915, 0.2637979035704893, + -0.08796432849544528, -0.10935826434941659, 0.03938808567754572, 0.06702256301847191, 0.10251273977259552, -0.07508856050896197, -0.010766518071993223, -0.10501339841917273, -0.08725861732796156, 0.01663957039877984, -0.09275466574723154, 0.14631196302354724, -0.05325865666966434, -0.07444193877137416, 0.0952324461081582, -0.07937489815443644, -0.008330476277694737, -0.14465486411716563, 0.1260463298934497, -0.013612735491065625, -0.10121921687866248, 0.11861798406470395, 0.01843627639031901, 0.04614127601201474, -0.06273143459746058, 0.00416760563580719, -0.01175290465486719, 0.02461039240607321, 0.044542617734398694, 0.023097569350560725, 0.02259905847129896, -0.03694343242134727, 0.0031631525527296934, -0.1225487775025251, -0.06419853009201064, 0.07357194633572381, 0.0103592628130183, -0.031685892965073605, -0.06046392413535159, -0.04465455446621896, 0.03174585265640944, -0.03970995687559142, 0.04070619609713243, 0.0026675097503958824, -0.10063090294898075, -0.13640460859140618, 0.04406669478149535, 0.11613927869894405, 0.14649650577981774, -0.07752433037325343, -0.034546781253930806, -0.11727417943503776, -0.14655274259571124, -2.340171820137333, 0.0477653105967788, 0.04120463368579336, 0.040136734819599146, 0.042883590920128056, -0.005513817574317348, 0.2853403734757287, -0.10700863549591821, -0.045263991648237745, -0.028573050531503885, -0.010889680317458683, 0.1238608801437217, -0.36572314728533567, 0.22017636118064668, 0.03474267448090115, 0.003202966100422644, -0.022149703904831564, -0.11833654197990981, 0.5148202232845096, -0.6613890244747348, -0.012194916415546875, 0.026003308955084542, 0.0498679887778416, 0.1072987071412575, -2.148266240828004, -0.812941208387375, 0.057071152566910754, 0.006658185947890194, -0.01408881055333679, -0.04676237400177548, -0.3681727829965181, 0.223874999851022, -0.018714843422391107, 0.014675123226802922, 0.02354930720786788, 0.03723424327410216, 0.0942042760628772, -0.034634103182219766, -0.12302412027834685, -0.03658652014582605, -0.02328391545021312, -0.017435063528894568, -0.00415986007367572, -0.2611092790615378, 5.013384866635127, -0.034723768502095353, -0.06430057927303623, -0.08236329403311216, -0.12280927113865103, -1.055171387447328, -0.2856577537605268, 0.17795428553255738, 0.09708652652306937, 0.07877593851969689, 0.0641146713609813, -0.10708555487414417, 0.664422496437322, -0.45925703950054897, -0.09104098091566298, -0.025843142528140683, 0.0232085056200122, 0.21943154557451935, -1.1085770285282892, 1.5539002166970386, 0.06484249927447305, -0.03872462449241998, -0.10192683003940761, -0.2508048305287276, 4.33053139805394, 2.6642642776710557, -0.19142305783517888, -0.040869684288307506, 0.0229899175352882, 0.12135796072977634, 1.1686776941360382, -0.7648784997395531, 0.12036006870538016, + -0.10316192961948405, 0.06659409354515174, -0.04062901823105995, -0.1003926523436292, 0.03166044580626952, -0.07974826738027858, -0.09393267246348344, -0.042439013021642824, 0.10957400519448168, 0.07372026293417824, 0.1030067397891197, 0.06825087001605336, 0.012809409716498275, -0.10300014044085117, -0.10455574824167865, 0.023168905184152665, 0.16165514415135532, 0.01308143620373679, 0.08862025861720521, -0.06574796716308094, -0.01996849671287018, -0.058687252564919516, -0.04508660065188342, 0.00518779596898287, -0.0519419574727225, -0.08775752619025584, -0.02898092970559836, -0.03569886691679401, 0.009846085747761144, -0.03685145347290995, 0.01710609872356751, -0.053315361279469675, 0.014730027473133445, -0.007046774396025905, 0.039812480801052264, -0.047426308382988794, -0.05555550849207609, -0.0170802287071456, 0.0022075850965065187, 0.05508054405239577, 0.009167825132014843, 0.05529290513857833, 0.016801268357849578, -0.02140074652593484, -0.11535671505688751, 0.060563769373525145, -0.04083111650014681, -0.1601160508592189, 0.09262453865081174, -0.12168712520149073, -0.14477205834007065, -0.08230348898148257, 0.16091931692138348, -0.11451393714249411, -2.355312360298403, 0.03806812016451333, 0.03484915356110601, -0.03340586058920708, 0.05768775598005199, 0.07650565872472952, 0.2859796968219282, -0.09842496248677635, -0.017156344649205513, 0.15055859684651496, -0.21402538435971472, -0.16090385606491453, -0.2812242842961168, 0.2276530812687334, 0.00900561431710567, -0.12828765363055117, 0.4367719623139948, 0.18386457275242266, 0.22189826910072352, -0.6974553634879392, -0.004057193062998114, 0.09615188929594692, -2.12334890164478, -0.16605331733720208, -0.15545403456467907, -0.7660748113698106, 0.056794861430365634, -0.030855123945945258, -0.3752148661807083, 0.14704763156195025, 0.09104591668984066, 0.1467491979681512, -0.03580991146845712, 0.018806505148239727, 0.0793401366958264, -0.06809546215208526, -0.0071838406221617634, 0.0293138369678132, -0.10526693160541323, -0.021659291357507854, 0.009648298644065162, -0.2078225615359502, -0.08304879383578052, -0.11785290755855804, 5.05118467832019, -0.028388585570647606, -0.1026697871487241, -1.0236488991607453, 0.015869809622135356, -0.052787205237218845, -0.3424787017860099, 0.15265151304899416, 0.057046801326370966, -0.1709848013138371, 0.3382695354341042, 0.2959543654675031, 0.5680364899647877, -0.454023995730084, -0.02804297677372225, 0.2596389163328601, -0.8912344547490918, -0.41793692899300905, -0.5458381601678812, 1.6167174895156724, 0.02908376206877772, -0.23577745756472424, 4.235330429254933, 0.44195076117110094, 0.43350311362919974, 2.5514443611251036, -0.18001565408106618, 0.07930789660834092, 1.2040679693105292, -0.44659137950733724, -0.2960037397528634, -0.5428867558748132, + -0.02351292840698268, 0.04461229229667659, 0.0764151970320865, 0.09344396469846193, -0.08859969692800178, -0.13402940506724975, -0.09164409960595953, 0.11829993481365982, -0.10876270164930953, -0.12003347351711936, 0.030195231579952297, 0.08224199170710823, 0.008244352015977488, 0.007134462196831965, -0.006415849135558402, -0.011268168416579315, -0.0788202096953574, 0.05499720378158709, 0.10830663625153455, -0.11078962606147878, 0.11563399606358069, 0.08943686071337616, 0.07375972051729082, -0.0650559445173549, -0.05105499400401422, -0.0349803627580859, 0.083567895576971, 0.05079117034898961, -0.019073749889450622, -0.03121524397665621, -0.030655713634708485, 0.030171276726613978, 0.013094297997466819, 0.04947957612955907, -0.017194404277224528, 0.03886335121731984, 0.0465872471348736, 0.006719333337328444, -0.028207385969839523, 0.02294587641241129, -0.02946986649958786, 0.0432806558309816, -0.04883648178845948, 0.036076410980788814, -0.03962435514866786, 0.04456273375679737, 0.07177829252817214, 0.09510683168245955, -0.1500684377039028, -0.166552073577247, -0.14911018793261538, 0.17048100879576158, -0.15069155446352275, 0.19257612478608324, 0.11881421381835199, -2.3587018188651343, -0.035830642646324073, 0.04944663170627156, 0.048334653711900696, 0.05607525232319034, 0.08444519223392255, 0.3143459739808224, 0.08084808835878368, -0.22054384396730548, -0.13390554243617675, -0.12629502516809976, -0.1534360937062067, -0.307710460430874, 0.09596537886208642, 0.4679421968430816, 0.17257516574422005, 0.1395372755106677, 0.150917430398537, 0.23274300253998842, -0.6265561260806617, -2.1748754124624816, -0.16863090997177735, -0.11576570399297999, -0.11310412970486963, -0.15262536376242092, -0.8027173177764924, -0.30367195293379906, 0.16461458425630776, 0.08563790218143932, 0.06798875721205147, 0.0733429410878094, 0.1507208698815813, 0.0197202820000731, -0.08697600118202756, -0.02233602928308251, -0.003887331142336437, 0.011228599988812454, 0.044860429699808774, -0.0719884613083075, -0.21167036835117653, -0.0682326240807779, -0.06243418579492661, -0.07707319058998952, -0.13256157352467532, 5.006147894468828, -0.9673131036854781, 0.04109354682810107, -0.014484502110600136, -0.03882285003517055, -0.07767456038174708, -0.38324356640949475, -0.0977206233976517, 0.3310368742179062, 0.23097845933256844, 0.2359878959752415, 0.30131189475156506, 0.6326419581812963, -0.16801381547977756, -0.9423829783782272, -0.374823559848497, -0.3190885301483327, -0.3623328025149768, -0.5880385940448826, 1.4177513971785471, 4.361725313672372, 0.43997442210243476, 0.30796354544877474, 0.3096062536948749, 0.4346839890820249, 2.668810530150621, 0.9991388972824741, -0.4938312718668438, -0.26589469995902604, -0.2180796297449134, -0.24803506703115535, + 0.07775375074747361, -0.10584888965955143, -0.09949806151635925, -0.01928685275634139, -0.09486214933497006, -0.09589870370194478, -0.10081863816052469, -0.01922801456856953, 0.08044259802696566, 0.11842059730241233, -0.05746830785498842, -0.05594948966102892, 0.08078720170632935, 0.07648163443844812, 0.09802635929738325, 0.021807284306846107, -0.09092878505871095, 0.13587453245450795, 0.09211843071151862, -0.03227280502865495, -0.1084543932642854, -0.12006052370734538, 0.01769038684309249, -0.05705411946656283, -0.06598132509929548, -0.03608250918481469, 0.016763488923354424, 0.01984738651903887, -0.027428192766097922, 0.13925182560008006, 0.010759413151201009, -0.04523789514989248, 0.029979245431283427, 0.019947991153787294, 0.021059173781491358, 0.017276427200169635, -0.030204046281564305, 0.0037717734422877875, -0.05149820743998201, -0.023739825342230784, 0.01466732318066734, -0.046004764230489395, -0.027662853874518768, -0.02890846081584924, 0.09048653193225974, -0.12985310006233716, -0.11130147875915243, 0.004150990393473875, -0.106200048359606, -0.13532328393635817, -0.0650087985763025, -0.06111425121470706, 0.1416008810838635, -0.20167374720122874, -0.09852614349672194, 0.045962241319602956, -2.3508533894622774, 0.04455587712892864, 0.046390010823203875, 0.05458757176260681, 0.0816540314360703, 0.25485204242637705, 0.10881035319962673, -0.19757531416044136, -0.12873543953218852, -0.12265456300148936, -0.14805839702656481, -0.27672438910001995, 0.14869909910924417, 0.38361765301551237, 0.16521788210954025, 0.1354391131873588, 0.14581608669540116, 0.21624258146887884, -1.9248294006487825, -0.8260359311419433, -0.1594800591355267, -0.11218639368354799, -0.10953157355381819, -0.14433914178565319, -0.48963514617011317, -0.5996774181158124, 0.15306886006729517, 0.08293501153487158, 0.06589146965899252, 0.06968155017656476, 0.12461368555231629, 0.044440874084221205, -0.07960794870788593, -0.02204290985064561, -0.003804026863848703, 0.01130262986134209, 0.0433964243043319, -0.14333934069463683, -0.14372489819325623, -0.0640567349215298, -0.0603808914613361, -0.07480565034360168, -0.12564077409343632, -1.2325065577685979, 5.1976825801562265, 0.04217630809785125, -0.013211772153655432, -0.038205788074028635, -0.07691542617440938, -0.3173061637377673, -0.10662649762078402, 0.29509143119534154, 0.2217643661224995, 0.2292739387342, 0.2912980146588231, 0.5700366712955197, -0.2773126072752887, -0.7758846367175456, -0.35839501321030853, -0.30964377224846396, -0.3503086949772704, -0.5470085347782099, 3.712462624650606, 1.9636210680632153, 0.415852481052859, 0.2983308600864166, 0.29981094335430236, 0.41103956215410387, 1.5355304374145982, 2.071122262582372, -0.4585991326763995, -0.25719592084747367, -0.21136580486555412, -0.23610303432926483, + 0.10753399004449583, 0.05050970495049243, 0.08804970865318563, -0.08416137928903424, 0.06335320711110023, -0.13589708969324532, 0.0009355704571908334, -0.12785495466285102, -0.011201239973989302, -0.09861421175441276, -0.07540681797805482, -0.04819073799723289, 0.055952048438236084, 0.005531297836170752, -0.13623292563221753, -0.01218259008075946, 0.10118408233624396, 0.09739228741394398, 0.10206662076988425, 0.12797658794954536, 0.018762886244420914, 0.1432684433163094, -0.013300733581139791, -0.005057088756366234, -0.06664236618325482, -0.025529963088336192, -0.05281742282471583, -0.0010646189165539088, 0.04670631624514776, 0.011852329871085709, -0.11827891288794229, 0.023045645949380064, -0.0455173504523121, -0.024619491165105797, 0.011734910594647749, 0.009923190887197082, -0.04488816999369856, 0.07101394666501262, -0.05977177360093823, 0.06023142762285239, 0.07910766685700424, -0.050682551137347584, -0.07492259903678995, 0.004018393118974037, 0.11969350519051865, 0.08444058739065173, 0.1440711553220214, -0.08733375981706412, 0.042038551288862594, -0.15233667925240646, 0.04085849047437162, -0.1380512435269055, -0.053977927380844976, 0.10244430681917353, -0.12671413014649924, -0.03522827160492077, 0.10015353105277233, 2.3515386791316724, -0.0525382461367655, -0.07399763835701989, -0.2279969321069058, 0.11410072025054463, 0.019581425658503737, -0.19308263606382997, 0.19110971664158033, 0.15506175320239224, 0.25143540269326725, -0.29779201826045154, -0.016319613133822575, 0.13932935088390191, -0.35259423199902057, -0.17653395291762622, -0.20618505743360355, 2.003014622332679, 0.05102835038758885, -0.055109043607763496, 0.7753717679863851, 0.1574157245729363, 0.14749459159629258, 0.4518457917556405, -0.03930025914846712, 0.05436425851415254, 0.6753859993821671, -0.13639934533135423, -0.08707844032710979, -0.11975054963258128, 0.03183285525257781, -0.02686062738651382, -0.10633543524965065, 0.061884858982180685, 0.006993729274004518, -0.028778686545925053, 0.17521507091063812, 0.033463958270242455, 0.0013369652363244833, 0.13824705186288225, 0.07867464996508643, 0.11172651844755127, 1.179137863706677, -0.040457178145307214, 0.048752468980492236, -5.143454708985391, -0.017950491805602597, 0.0527226543187308, 0.28064023241018776, -0.1875376867424794, -0.07151923925507192, 0.20466226987332892, -0.30163944634145917, -0.28560476942087076, -0.5087990423283066, 0.5969141973315167, 0.04784779026322017, -0.27696717602337495, 0.7239780084016785, 0.4011324369041095, 0.5073381551678456, -3.9284137007617193, -0.1302985711213584, 0.1518069181193498, -1.8371047885222922, -0.41878870631996223, -0.4109112940442351, -1.4157255736708076, 0.12530288963756167, -0.15178891558617708, -2.2897885713017616, 0.41361608428705343, 0.2830793041507072, 0.44326410508396474, + 0.03844797481301176, 0.07352510343628398, -0.09900470049017489, 0.09905335794778704, 0.09876285788444815, -0.11860068852915318, 0.07825669312030087, 0.003285588168809553, -0.018253835594736784, 0.08391393315299728, 0.09136251948693044, -0.11871700135407148, 0.11428034459529028, -0.12671769186633625, 0.04722407262292065, -0.09853824850445225, -0.006705183073700556, -0.010998927878923983, 0.03293868032917822, 0.07265430761756408, 0.16253940796695382, -0.014615729245748114, 0.07946259719032198, 0.03337844316338547, -0.040334097296234335, 0.02091032510477785, -0.01252586427909183, -0.05268079994961575, -0.03177399860416067, -0.03633348203111341, -0.0700496199699108, 0.07415599401304024, -0.008329353843696702, -0.05002107126650954, -0.008024232436311347, -4.3560588580360316E-05, -0.009422018203156354, -0.01091449711239794, -0.05122382514226424, 0.08409530253872877, 0.12379732514757963, -0.062104507519984524, -0.04811835564863931, 0.03351143349660824, 0.034353822134443296, 0.12328741460963706, -0.09627921102323145, 0.14167490846741754, 0.10017756456845833, -0.13315187329089412, 0.13474004419881505, 0.05153261947192677, 0.045244266103199815, -0.08187858631249517, 0.06511467656155415, -0.07808722766190082, 0.13786626297950694, 0.23176728824553988, -2.33761135735897, 0.22753005137853533, -0.12172919129196692, -0.0471769272455405, -0.0301048179852951, -0.01247777662880073, 0.16713606458681818, -0.3222891100643551, 0.29170738421965015, 0.04295288029259356, 0.009833770658107394, -0.015378906907114492, -0.12762235948997921, 0.4264245294344794, -1.983387393420072, -0.06834190549483474, -0.022823186272151977, 6.37503259796092E-05, 0.05491738346376061, -0.8160137028121079, -0.503178017023791, 0.03486205215024486, -0.016396091474135704, -0.036634727313200596, -0.07380439866203853, -0.6748010936991423, 0.19166951685867537, -0.014134153847012138, 0.021983484277674718, 0.03031935261880666, 0.04523520682188864, 0.12190330289623857, -0.02949945316969607, -0.1945695595202389, -0.04897823198814122, -0.03348262625627957, -0.028115262780438702, -0.016502465709305882, -0.19097276968558105, -1.190414095443134, 0.050712303460263675, 0.005143079355323214, -0.015543131524722288, -0.05589039556643757, 5.134417831237403, -0.2259899502958349, 0.2120577303202808, 0.10956213126138922, 0.0903102513127503, 0.07774810561662338, -0.14069755549601792, 0.5855335370752206, -0.604548559172472, -0.11193750082039816, -0.04297022930475941, 0.005254779505358076, 0.23326218891794628, -0.9284403886905616, 3.899065472686623, 0.18453476165522548, 0.06388188228426986, 0.00271146711908175, -0.14361654535437834, 1.9626415581522245, 1.545159950142885, -0.12147251311760277, 0.031297143758891394, 0.09382980695615403, 0.20588514184687878, 2.276058695457052, -0.6502634050027325, 0.11998084071254761, + -0.06598693114963501, -0.10823061418918531, 0.10520757255136343, -0.047432689966272534, 0.011712699666801238, -0.06570370210610589, 0.11228812892536168, 0.1301716030044054, 0.08749750096060023, 0.006124085800781076, 0.054160958198100156, -0.1376946410808027, 0.13897761392358493, -0.06748683922586307, -0.07426922103336901, 0.05496857067385446, -0.12514841097097118, -0.10548478701762648, 0.017688063525356477, -0.0748531184354751, -0.057442862220533616, 0.13102259858042298, 0.02001274718969528, -0.01060041531749887, -0.007980228223174738, 0.06061481356734978, 0.015983461164603016, -0.05317864320612016, -0.06699308161462382, -0.05786439586971219, -0.01912255197798135, 0.0702211216841946, 0.011990430181450113, -0.016473501328984116, 0.013507374654470591, -0.005346325630296569, 0.009311006469823555, -0.06344666556508713, -0.021952098804158108, 0.11951804943140062, 0.05025516869521633, -0.027269014786004804, -0.026925931088445095, 0.0067588789186675885, -0.10047205390459864, -0.15340788591697194, 0.138495238965025, -0.00905385337934036, 0.015513459937291555, -0.07210527471174641, 0.1561932141783984, 0.14112572664197226, 0.07603000014203755, -0.07868019680827883, 0.10317525636948387, -0.1642065021716262, 0.1483491792742113, 0.0070900283535186345, -0.1051694059309798, -2.425087408525981, -0.05342307045884631, -0.04043389355381938, -0.04091576887723783, -0.05382921793650869, -0.12748450432543085, 0.5675781932436542, -0.007243120787412988, 0.008418943248893335, 0.011652426138053375, 0.01885662755419598, 0.049130461962973104, -2.173196132430756, 0.004221857357118122, -0.019456145171917728, -0.018568729054170674, -0.021865444904952853, -0.039571249486164486, -0.34023985295885045, -0.6480156433928976, -0.06534477524917832, -0.04055224372853061, -0.03750216278709023, -0.043940358726746134, -0.06586650403825615, -0.7336694676140274, 0.09017720508698299, 0.047693372823711284, 0.041247346913057245, 0.04810900817258462, 0.08327949350603014, -0.06547599646877013, -0.1172881015405313, -0.05547201831662126, -0.04466717631895839, -0.048933334230974845, -0.07990711288666427, -1.101798816576854, -0.11419433447164123, -0.008977770694844053, -0.004494511530288716, -0.0033247892595959297, 0.0016304656708429066, 0.08224002438481373, 5.187804934279985, 0.17201595840159567, 0.11967881896498289, 0.11855085202928706, 0.15316184856192272, 0.3401487103540968, -0.9497096092129957, -0.07472962231349248, -0.06027866112866914, -0.06009204292364277, -0.08158766822730945, -0.17929322883719534, 4.30052781075347, 0.05092226234064068, 0.06905482828826101, 0.06025520431265903, 0.06880185342570874, 0.12372854678456136, 1.0915703454919536, 1.4927078002255854, 0.15423519201065955, 0.09568448446326183, 0.08996238537206233, 0.10516591287986016, 0.1325162070032124, 2.533857672282611, -0.22529278273471975, + -0.1097537569276317, 0.010592985210404374, -0.10264931271064955, -0.029337384269327128, -0.10427595125107272, -0.016242786741874946, 0.08246256166332003, -0.04104586188298655, -0.11517322917531377, -0.05698599920027484, -0.1078828463568092, -0.08468397681332629, 0.06277358331698557, 0.11189924380409356, -0.06966553397816852, -0.12517955880468562, 0.0010623381153088652, -0.15696313764699185, 0.05877555828357197, -0.12453319879587992, 0.04423291077116291, -0.07298083694507355, -0.009876258517663265, -0.07501311853810956, 0.00016667743334475817, 0.06001442303215389, -0.0663690921239976, -0.003963218756674775, 0.01713375317628162, -0.018335366223901965, -0.00902862921388362, 0.014331185804106483, -0.004453252738379973, 0.03487936218781709, 0.029870566400154643, 0.003911002331463356, -0.008422713774838922, -0.028363589717911065, 0.03676130953094364, 0.034440188551367296, 0.013581805457943425, -0.026571478843176566, 0.03400404818231912, -0.05362032132438363, -0.12393197531537752, 0.0034824087107572293, -0.15272156446341392, -0.06664120961964042, -0.09741789904549501, -0.04237956588296472, 0.07443427778443987, -0.13298808378273314, -0.1140306830057457, 0.12372900581152824, -0.06408337093226775, -0.19759527591403037, 0.05884401416684667, -0.25938212279279144, -0.1274289110268313, -0.194145489857164, -2.378526776583151, -0.041364334090766064, -0.059286145670904095, -0.1519476352705921, 0.3625360565620862, 0.13445511935312804, 0.2796066259583858, -0.04196147914583925, 0.01598993175318586, 0.07594459654574433, -2.067500894736187, -0.1321661671247329, -0.1382016415712522, 0.060027322255509996, -0.015729908585217403, -0.05668449050669778, -0.42246553454369984, 0.20348203790660924, 0.19756563629733975, -0.7309690080190978, -0.08258236378719365, -0.0428329370966206, -0.02197953553948801, -0.07105914664360594, -0.08865999205306586, -0.6954288491552174, 0.10494037047130564, 0.060588274322552566, 0.07326302757215475, -0.15678276512479297, 0.0044965407209657665, 0.09676026103901733, -0.10656895447373324, -0.0655975716208319, -0.09131934687991516, -1.1460783404080477, 0.13818569440443426, 0.1405125913877634, -0.17355950820757712, -0.017436388472180285, 0.013924939338352708, 0.1393785008414934, -0.14981091585782225, -0.13308841443542174, 5.166145884071847, 0.16580276848550835, 0.168230176126193, 0.3668025107751074, -0.7047168324302159, -0.233141071401206, -0.38121599675725726, -0.011725371396552942, -0.09187933705659956, -0.2397002209665257, 4.07661946862453, 0.327778746415657, 0.324766853377173, -0.0902379677656751, 0.06565247889780071, 0.17634410051149216, 1.3199365447773765, -0.5607087778493521, -0.5458309748242235, 1.7292002421895627, 0.20422911014454787, 0.09458715726083952, -0.003735726668005812, 0.26710283489095055, 0.2848384128049084, 2.3676849951675365, + -0.05261348474174644, 0.0894984739008892, 0.1292776111026137, 0.11884613547297618, -0.050782145379343994, -0.051180972021882744, 0.06879070358994853, -0.05645050436648821, 0.09549086284211165, 0.15616245312880728, -0.0910736752635694, -0.04649436853460442, 0.010227872260103646, 0.06840316603152202, 0.09836306236009003, 0.1152541445259895, 0.12485418270815565, 0.02156261256686478, -0.05920949833460929, -0.0930267518883606, 0.06165698871645092, 0.0786940075269048, 0.0740787114895125, -0.0074096436221322975, -0.04237169342906836, 0.009607134240628918, -0.052992778592554524, -0.0394166564285034, -0.021455178698985774, 0.02294690384213967, -0.052284789696753056, 0.030088493377334352, 0.013637826927076251, -0.034374801988153354, 0.07965116115675651, 0.024903105523918823, -0.021390977275803275, 0.039370054663896335, 0.02228086495177864, -0.0024556405397938024, -0.056679563127564, 0.04989958006511904, -0.08364028875896655, 0.09134242682435029, -0.10655417354271512, 0.09808862843245036, 0.15204804916521247, 0.1622772567348425, -0.0986627257663954, -0.10844844442251039, 0.026290009807584558, -0.025953708297952953, 0.07173848877385376, -0.18167476408707517, -0.23970535828295844, -0.06297757439583922, -0.08423209572990346, 0.0008001893108661128, 0.12231212328252776, 0.11242033662997872, 0.19501409792018193, -2.388416435547129, -0.1528213555737506, 0.35386945542766485, 0.1087737315121882, 0.08572897746126595, 0.10047690755570476, 0.2859556391398067, 0.02253488609130333, -2.0610835108035954, -0.11352702720656445, -0.07453399375517492, -0.07660220291119121, -0.13401329887771896, 0.021393134094045946, -0.4152860273480745, 0.1828889642801781, 0.10929692342495831, 0.10855213254058554, 0.17495533725533496, -0.7313703940239307, -0.0676969700523456, -0.07060375241418877, -0.046175255281807256, -0.04712000382578572, -0.07507910925380065, -0.6783111341100792, 0.1374574937184842, -0.1424477065580863, -0.0046290006575596815, 0.004199776937353503, 0.01335710168230868, 0.08472306864466746, -0.15374374651252112, -1.159285486124805, 0.11942651566023096, 0.0754064619632917, 0.0769598298400871, 0.13053378552884012, -0.1546641535229799, 0.1247489665365537, -0.13627201231618555, -0.07475505455197745, -0.0721835621412737, -0.11157138135542183, 5.196159044382531, 0.4153837839131169, -0.6821700232809642, -0.20238397181147333, -0.15489464779126505, -0.17262216144545872, -0.4123140288277114, -0.1921146900577957, 4.046823221640726, 0.2816680668364311, 0.18418141798459603, 0.18831965270015644, 0.3209373260330277, 0.027199246459987114, 1.3134648801075797, -0.4975263693274643, -0.2978694907467374, -0.2968545926798295, -0.48284711128866764, 1.7237203091642312, 0.11223034742803217, 0.2574554188895479, 0.15173880293512576, 0.1502755539524926, 0.23543042176355677, + 0.05289938267618414, -0.08983534611547057, -0.1294082748779377, -0.11835263002554491, 0.04942899997872645, 0.04911608245186418, -0.07095442327660033, 0.05803499670999149, -0.09609934923489033, -0.15551186576443757, 0.0883685343667395, 0.04227070354077284, -0.015375988614409147, -0.0729161064980374, -0.10086386769556241, -0.11404749787932125, -0.12138704630376443, -0.02488937330942037, 0.05472911675888236, 0.09799846892018794, -0.06445284334197039, -0.0799819557011462, -0.06541046641619387, -0.009024059397741927, 0.0232515848144194, -0.025726093181378716, 0.0633817357657765, 0.04873827452808316, 0.020950533690652955, -0.0031000257555702146, 0.024945147099038566, -0.06140825947941942, 0.009026028032597852, 0.047820599131543594, -0.07916380813341238, -0.00802164160227103, -0.005894797752546668, -0.013624388702334483, -0.056249403448031934, 0.002453389125713468, 0.05821873619780053, -0.04996080356337074, 0.0783561380173059, -0.07954067350103994, 0.1096973170177394, -0.09832797019179552, -0.14846502708627535, -0.16347491203380396, 0.09477916497870076, 0.09807742115648038, -0.039922273543630454, 0.030188488247138427, -0.06732445150886791, 0.17820333691769946, 0.23555884759464354, 0.049592949561021, 0.07017283631936812, 0.012361993162732723, -0.11788162769580676, -0.11252126206143298, -0.20354558170268533, -0.08539244082556754, -2.167982922965315, 0.1014024336662114, 0.07765369855967774, 0.07738402855377058, 0.09500180855122277, 0.16726100549900258, -1.9744628716202468, -0.07846043830619226, -0.05974450970429714, -0.05942523807519026, -0.0729330378183372, -0.12034916480856321, -0.5888471161193422, 0.30907758697512777, 0.12086664795475446, 0.09036003604392732, 0.08902355642535764, 0.11351482486310754, 0.2470634810000239, -0.8326570740893986, -0.09751119049063559, -0.04871359082334739, -0.033083618973999605, -0.026013409789785252, -0.012551763806941674, -0.978293031230171, 0.07259830042151391, 0.021375177246465343, 0.004425635279862519, -0.009763159084713827, -0.04111694020332039, -1.1033608164062905, 0.1227236542463444, 0.06764303110636549, 0.05961462521265603, 0.067486053934036, 0.09969599869255626, 0.3084673005585613, -0.34232569115819356, -0.09211637264662084, -0.060083964338337244, -0.05433619540495013, -0.06439539171624338, -0.11544223922642535, 4.765528863712851, -0.13610449204045394, -0.13218787648538982, -0.14727058664046672, -0.1942967051161586, -0.3676862904196994, 4.115558032530314, 0.15610097977177104, 0.1369506323742073, 0.14571263999788525, 0.1875351825104087, 0.3207845095456313, 1.7265582412336737, -0.7806520878233308, -0.31579315970522126, -0.239572825292653, -0.24102989326196947, -0.316210700678234, -0.7227103786147326, 2.072216630459319, 0.28172587781518577, 0.145914322335162, 0.10371691735492505, 0.09053671929392598, + 0.10977680161963321, -0.009949907031657029, 0.10292457911596634, 0.028128001572773006, 0.10495484611300457, 0.014327985628576836, -0.08353369538513537, 0.03854408893418942, 0.11709960637248068, 0.0547799843919873, 0.11056583396899082, 0.08184964714402551, -0.06699654192951769, -0.10862931764477016, 0.07558749960772182, 0.12209988421011715, -0.007731580399885478, 0.15463949462553184, -0.06402362501541581, 0.12168237773982042, -0.03809577360821019, 0.07431307613750125, -0.012352865273606515, 0.08050564846684767, -0.017722249057690643, -0.06415853906440702, 0.04737371676378478, -0.015049805140550961, -0.005695597296843656, 0.0011342556794412672, -0.0073693505508426824, -0.029953206982844763, -0.013678040226198363, -0.05869513481477762, -0.0520247161240469, -0.022195846990686167, 0.0007117467784962753, 0.05159833349000544, -0.03282918860723991, -0.05670344859090996, -0.014344515692669514, 7.5174875271593E-05, -0.027872139440334915, 0.04673048509407278, 0.12604064078234387, 0.009067058978563684, 0.155215123588849, 0.06596200374385326, 0.10223233291148758, 0.03400877080752989, -0.07489091806279653, 0.1192777841178995, 0.12014711486275005, -0.1232245492049966, 0.06858109450097674, 0.1935921171694066, -0.06773292087524758, 0.24862116432417983, 0.13544286011889806, 0.1951434850941145, -0.03200992084541944, -0.11228753231497708, 0.10192041835425532, -2.2811897943069637, 0.08425296708360425, 0.0982776967519477, 0.15582664647074668, -2.0152673005158075, -0.14287945783285777, -0.16349943022098287, -0.03939631729190184, -0.06805081685727446, -0.1124481082683058, -0.5259984556605801, 0.0989250930404356, -0.053971529843522645, 0.23456633063882454, 0.11469928729607443, 0.10948428617186481, 0.1804297706772012, -0.026523035252160317, 0.11288410667071985, -0.7869885282822177, -0.08940790457425601, -0.033852386356396105, 0.018658972793080014, -0.37063502858034314, -0.16448833342737346, -0.7789037728685028, 0.07944475120304206, 0.007878618119230019, -0.04742078253598653, -1.1352991139264752, 0.0940451774508537, 0.02866952090368069, 0.07738504868921135, 0.06964798436416972, 0.09211800584553481, 0.2551838410785783, -0.06469667178666688, 0.06196473758354535, -0.2745792337457252, -0.0810208722989354, -0.06175142099222486, -0.07188297238460595, -0.026842194794510763, -0.09577627311021135, 4.977560832669011, -0.10863762791172138, -0.19216257911100754, -0.36093886495411015, 4.043648277408354, 0.39785100570000703, 0.5668667412947811, 0.05826715519685802, 0.16483445419081857, 0.30063067337348154, 1.5760099814322182, -0.27877119596592165, 0.1255070493217169, -0.5736389028458592, -0.2974471672864878, -0.29748811314622775, -0.5326645582824823, 0.10580245099719701, -0.29779402087104484, 1.9156113102215482, 0.2507745817757633, 0.10599729110533324, -0.019208292914096647, + 0.06572593541565086, 0.10803433846912483, -0.1055602020305125, 0.04851391991463464, -0.01019024998057034, 0.06397612216440425, -0.11160392337753625, -0.13150011587108396, -0.09007488274659484, -0.0025310495112695905, -0.05158261443006536, 0.13679758583758753, -0.14107748455597327, 0.07266334734702225, 0.06908646625573059, -0.05091401807880408, 0.12291784586548879, 0.10863938904752445, -0.024143384633920368, 0.06933025197245732, 0.054119385945916205, -0.13344943524519323, -0.006611080014695553, 0.03071880412900963, -0.015276481439838606, -0.04961298755114339, -0.025216669677321564, 0.06547305597083414, 0.039576884642427895, 0.04829989181948449, 0.013029316552983368, -0.06786947928825908, -0.03417293492146624, 0.051728870195510035, 0.017459484647398427, -0.019970372191078868, 0.0038220769106239593, 0.09435522403893978, 0.0432593455334475, -0.09099448249061598, -0.052181785557105134, 0.05211503747863441, 0.005741782809961312, 0.010964209451353513, 0.09100877480089865, 0.1558357081833678, -0.1290019706590118, 0.025478095505050737, -0.011547950341717074, 0.0594417138023177, -0.14246931099534985, -0.14601995053261693, -0.08591758831620619, 0.0674626692944125, -0.10404624812835403, 0.17269108183258444, -0.1537460555762107, -0.014511540125621829, 0.08987544767625524, -0.11814599778808363, 0.20100889342470066, -0.15034830307991312, 0.0012721569470667015, 0.07225586539274821, 2.2733060967149608, -0.15823468201529461, 2.025485339512043, 0.1437163968103789, 0.10014244865115798, 0.09844990072654547, 0.16888205421840072, 0.08895401842889952, 0.517991635298895, -0.11869596293199555, -0.038786041728619394, -0.008836105132292382, 0.06899658735369041, -0.2487031863628972, -0.20107460250366255, 0.03838895186276953, -0.03372685040154727, -0.06172753638136129, -0.1342864037107805, 0.7713697610723792, 0.03572816946614828, 0.37860768400495826, 0.12942280287920283, 0.11895436596115103, 0.15430247792042226, 0.79705272483214, -0.027384359390815544, 1.1205535450789406, -0.10140895279714852, -0.05360603700224009, -0.04216186922006826, -0.026472419008791957, -0.10645815006468654, -0.2537925658719859, 0.08026869102239875, 0.006813145053744231, -0.02038599930123044, -0.08085131779259841, 0.27325645441191426, 0.095452656147341, 0.02019820395811345, 0.046084055473442326, 0.06292986691305973, 0.11055829848550815, -4.942639098039309, 0.31380962883291386, -4.0735574084917285, -0.3853447052569178, -0.27709561536602056, -0.2872814347385169, -0.5890618163976516, -0.20466193290622675, -1.5459013033191582, 0.33233039666376907, 0.11284512186607489, 0.03234085355162514, -0.1665626280738775, 0.6182543727887992, 0.5755579699353326, -0.14678493339504445, 0.07129738031487164, 0.1566203543478392, 0.3635603753243782, -1.8720774524445027, -0.12181159900105426, -0.8252474803210176, + -0.038753052698800035, -0.07402840214557051, 0.09947848999731335, -0.09917784286579716, -0.09839840213982655, 0.11747423002648152, -0.07632785566154136, -0.0005261442365568529, 0.02155065850184582, -0.08684869399870887, -0.09408672478065302, 0.1204459018545542, -0.1137839210177998, 0.12408825764429185, -0.04397027205808498, 0.09305107323185581, 0.013274034508514184, 0.017935839982796912, -0.03894413596534573, -0.07553105564431375, -0.16766373661324394, 0.015617102391497668, -0.0734765566798756, -0.020832182353871128, 0.019247079566100757, -0.00020494778253352588, 0.02991157231285935, 0.025693658370644395, 0.042974665718148966, 0.049004984503889015, 0.07294071939220385, -0.069300584808806, 0.033126936880452824, 0.020267626510960247, -0.03096003631436738, 0.036625473945889934, 0.026703767874022854, 0.02215837953455867, 0.055743886511542884, -0.09030496166780934, -0.10433445222295692, 0.05758422741249628, 0.04577198017938859, -0.004269001780511462, -0.04175169300387927, -0.11901937806476222, 0.10660750176601962, -0.13663224267906549, -0.10384342497753168, 0.124550125392404, -0.13057093020864474, -0.03425204296489584, -0.03446054753570096, 0.08979250877702472, -0.07517669000004222, 0.07291286300110432, -0.13648531244971435, -0.21995592520257287, -0.19085441642379924, 0.12873327237923932, 0.03979347461308237, -0.0632689064565115, -0.007742286855395941, -0.07954579907459726, -0.17561634843561402, 3.1596454558379987, 0.1488937826805234, 0.08779157532091718, 0.07414432281188608, 0.07864410058095281, 0.11055653617305809, 0.44749176416487363, -0.0898472119991895, -0.03514885161822001, -0.021739895605563338, -0.017169093615628947, -0.015489983234477755, -0.01863506604285317, -0.07754410723916108, -0.03866565341725003, -0.036601365413813175, -0.04139609328509271, -0.05684901289939484, -0.11688345557524779, 0.8039552317588087, 0.14110126233616693, 0.09528551781630447, 0.08899399078860187, 0.10420717262035767, 0.16701279701411606, 1.3846872323983974, -0.10032431528778896, -0.04873858082536122, -0.03712672451998513, -0.03805014577026324, -0.05206693289542075, -0.15421067288421866, 0.04123948122803778, 0.007155266938992801, -0.0031425462486449757, -0.009319894973728713, -0.016836870478538032, -0.041162798228924866, 0.16910349002641822, 0.050768099267531494, 0.041646668103583875, 0.04550943434299356, 0.0606245739558513, 0.11124698552489143, -6.617388526136194, -0.4060154364823102, -0.23999691270561962, -0.20519845863519107, -0.22349663744979698, -0.32601375330682875, -1.422691696458057, 0.27106667637962056, 0.10674584921207386, 0.06514927249944266, 0.05209939434623925, 0.05287965388524643, 0.09552956739793922, 0.13944550757123708, 0.08003218696396042, 0.08461218628878958, 0.10303690054212443, 0.1477901773624424, 0.30973144482508985, -1.8675389599630343, -0.347374315420406, + -0.10760266288083324, -0.04992209905650645, -0.08860471383068136, 0.0832791716510385, -0.06471512080518374, 0.1354752600124438, 0.0012235200708696778, 0.12850043945516265, 0.008286819307975231, 0.10038539544715258, 0.07246681937791317, 0.05145244951238079, -0.05389687639870505, -0.010253238613450179, 0.13475426978608807, 0.01811962245871227, -0.10218216859000616, -0.0920331450168091, -0.1068426635539786, -0.1227719211644992, -0.011533819373698741, -0.14422243455446324, -0.006881935485074371, -0.0016071909648524357, 0.05201199555782229, 0.04195165293600562, 0.042017565737743, 0.016979529494953783, -0.050782479201132484, 0.005906457392025078, 0.12748074372502116, -0.015114345954248074, 0.06382118714585824, 0.04789546237688453, 0.018500773530505672, -0.010861072417451071, 0.06747975972600874, -0.06466049873171163, 0.04694313268210758, -0.07441864532536299, -0.08920964765721551, 0.032847711973014386, 0.07008877098610955, 0.021877643620392528, -0.12428615793448808, -0.07823455311316131, -0.14642551376052013, 0.08806744198637063, -0.050695263289883184, 0.14466136206916003, -0.03398151547789746, 0.142185121907311, 0.0380382680959867, -0.11005615686371277, 0.11165514316544396, 0.04736739893016565, -0.10387611804291318, 0.014277876882003007, 0.19615810216869942, -0.04407531887046748, -0.19316170444404426, 0.1938053589006294, 0.07247786781702936, -0.15577570791724704, -0.03314959837034472, -0.11060616122786464, 1.1448993441614366, 0.03598804239830236, 0.05131462957645786, 0.10676475154606727, 0.7686015631177998, -0.42821042061512166, -0.8199813341998597, 0.15865883711794676, 0.011392463377986273, -0.06332136117779877, -0.3584752041266005, 0.7032174339329678, 0.6381182610243439, -0.44980882694952284, -0.07979203391873223, -0.007792902256024147, 0.09659076156701843, -0.8593037651319775, -0.3291988563998061, 0.9839837707038119, 0.1078767376497034, 0.06560225687476112, 0.08107977679594225, 0.9978831252171588, -0.15698491102756576, -0.5789607770772924, 0.025349656424629927, -0.021935832286520233, -0.07217247210752128, -0.41227847266718104, 0.4281448788528856, 0.5543650685059096, -0.20505816975143748, -0.031095090081373247, 0.026059799351891705, 0.17623015919677104, -0.6146668964592211, -0.39410091371226685, 0.4877893784505486, 0.07551909252994775, 0.026199413511913183, -0.010995175356541834, 0.8278586051854762, 0.11456452594330024, -3.168740208014158, -0.13139901950956448, -0.15015427378983223, -0.2920763977158775, -2.1785584384915984, 1.0917052678305519, 2.2106921664976054, -0.3812526050537927, -0.015459838679875021, 0.18489602591493656, 1.0292797317572286, -1.8714790339847525, -1.7681160717104563, 1.1555950298858573, 0.2044894383557347, 0.007423448983816321, -0.3029994017785597, 2.334971630734797, 0.964971584967834, -2.528114419439476, + -0.07752288104533255, 0.10585692347703476, 0.10020420395783845, 0.020626809185961156, 0.09371177236025471, 0.09563851866311611, 0.10259438124825342, 0.016882265978032166, -0.07850388510342647, -0.1175750672976785, 0.05983515485895405, 0.05974332864381406, -0.07710640491039977, -0.07573303360436723, -0.10117532853925573, -0.028481346944469493, 0.0857531065085437, -0.1378099133010723, -0.09723124699038468, 0.03952737992815536, 0.10307306770380834, 0.11895438326567867, -0.003931828672520561, 0.033619571458938194, 0.053329889972486444, 0.03843413494394865, -0.03510895144688996, -0.04508236160162329, 0.013469455965686153, -0.14402835693214897, -0.0017747978557497086, 0.07347165243613223, -0.0432972806260236, -0.023329417898009686, -0.035291538498485146, -0.042393499643650204, 0.06216680778717035, 0.002560138424224628, 0.03740408716494263, 0.05243589310232156, 0.010653040508705662, 0.05265899434828845, 0.05991320808088653, 0.04422310545260762, -0.07972393324815458, 0.1294404854929226, 0.12179367013941451, 0.0071356159087784385, 0.09813656083338765, 0.12267033227739428, 0.07211393510777132, 0.05759269227659863, -0.13047598394524215, 0.19513266568484885, 0.09823178154796683, -0.0408209806195133, -0.13480191782566722, 0.05529812926838736, -0.10693334898171024, 0.028442090765368674, 0.15097247913612158, 0.11194914556256916, 0.18593220346094144, 0.02500876927628372, 0.13120144032976666, 0.031156898584880827, 0.023945080111946803, -1.1548897368903877, -0.11568224965440188, -0.786233940449642, 0.3464234857950059, 0.21834212425692906, 0.24769964243910633, 0.7865002725157682, -0.10249928085394881, 0.33889781232896665, -0.6343489977592277, -0.29485619392040474, -0.2889971753374996, -0.5603891995174657, 0.44173656314156806, -0.0314023367547219, 0.8376723365293057, 0.20197552111885253, 0.17031268287961604, 0.25478805443762764, -1.0079564447608071, -0.15637428153370883, -1.01811394834655, 0.11972064400811508, 0.0845452486449624, 0.10346386874328142, 0.5777965620000893, 0.03342245903990954, 0.4179125087311308, -0.3651835639694402, -0.20291199226535547, -0.21496586851421162, -0.5129835636137773, 0.17680475682426824, -0.1476327782381558, 0.5747260996614458, 0.2107605437556765, 0.19265468377047418, 0.32647533178766636, -0.49575703159062834, -0.048025550687233576, -0.8247216312685566, -0.07558862619239601, -0.05822241915810459, -0.079870301650492, 3.206017429253837, 0.34843712660123105, 2.2328276597342596, -0.8759347055694742, -0.5598903561505927, -0.6413215375824726, -2.131967426910912, 0.21830112761237774, -0.9892108493735202, 1.6749785072075045, 0.7958706548063602, 0.7872844225016962, 1.5608746261057505, -1.1257444387726132, 0.1345548423524038, -2.2643305509967266, -0.5813045356213908, -0.4943876003237121, -0.7506880502586811, + 0.023831080108163892, -0.04518572684166418, -0.0773208514128417, -0.0944101694979283, 0.08925846880611656, 0.1348280386249581, 0.09154454345027566, -0.11803838352132903, 0.10775578021895765, 0.11773966269847239, -0.02758846571783909, -0.07841802180039661, -0.0035249887413145204, -0.0018508277210610646, 0.012594217086377972, 0.017157846544898752, 0.08460657775282697, -0.05988708456143563, -0.1147892380692132, 0.11367137680222203, -0.11673875664243995, -0.08947130974383312, -0.0711549557157192, 0.05822470904261257, 0.03709377379079301, 0.023157445327448987, -0.06645458717999571, -0.023278428767917535, 0.047207717675301464, 0.01299325300034526, 0.05661470126244887, -0.019375866409378578, -0.03108167780694854, -0.06867859628910143, 0.02364993199391531, -0.04698535478391859, -0.048181265843634205, -0.02301875476255877, 0.043324691370485974, -0.034252350887762094, 0.003437710609827422, -0.01936718641821804, 0.06747162642472772, -0.013727189166258279, 0.048454160474663055, -0.0556449462942737, -0.07769321286759025, -0.10097385298820404, 0.14612919723657428, 0.16738410595579903, 0.13673369287795933, -0.16995772618983782, 0.14652298814433656, -0.1739835803158641, -0.1079009652456337, -0.04544753077426456, -0.023595852357745105, 0.0599530353674655, 0.04377030792659066, -0.02850996166751733, 0.08474456491339329, 0.16635282800485307, 0.08941118958012252, 0.18952616000917608, -0.212387648651132, -0.06888342369758783, -0.08789233338633352, 0.11029103800799014, -1.474049208793332, 0.3074995841273883, 0.14385144243757791, 0.1153038352171763, 0.1258901557084342, 0.19679820318122182, 0.8962515962822782, -0.6456009692967062, -0.21464272898887982, -0.15178052519105234, -0.1501894022566631, -0.2056455313763187, -0.5505068646907171, 0.9979249304589018, 0.16486812020213054, 0.09973745009735574, 0.08852228903809345, 0.10766100418880717, 0.21664248815789094, -1.527120253126114, 0.09018860598572934, 0.05076415341384488, 0.04623997440001662, 0.05579759633394293, 0.09616676475053393, 0.7609831285934162, -0.339473086037586, -0.13771637677692355, -0.10523844721982974, -0.1111897896791114, -0.16433455070490466, -0.5516766905257107, 0.6173560541790661, 0.15778721781336766, 0.10409635096447398, 0.09907441067908627, 0.1304523736263958, 0.3045416297639895, -1.0112779884180738, -0.06112632848664119, -0.03342803924853763, -0.02812137277618694, -0.03377259933908369, -0.06607969242465364, 4.123798932542815, -0.7643593166589228, -0.36386802986395933, -0.29579645068312, -0.3273341287086133, -0.5179289788330652, -2.4693583667493924, 1.682746247938558, 0.571779107905708, 0.40721432031198096, 0.40669520511514123, 0.5640543901796378, 1.5505719757272594, -2.6574389113039842, -0.4675475361863497, -0.284729717007719, -0.2543331951140145, -0.3132374612994767, + 0.10327485611287117, -0.06609611811202747, 0.041568062263459354, 0.10027567725836539, -0.029968535875826374, 0.08059734498734052, 0.09266747954985231, 0.0447898721745949, -0.10944060498009532, -0.07101537687004525, -0.10500694212146258, -0.06641809226922021, -0.00792661985919066, 0.10319019108736206, 0.09897431296039501, -0.02737389003394044, -0.15966661977775445, -0.020326934085402707, -0.09257081713490277, 0.06153242119374278, 0.02736352400342903, 0.060131302401138675, 0.02631367441691777, 0.009419862595550076, 0.04467812603689369, 0.06744353414522401, 0.03255764110080123, 0.013921698624283947, -0.030334598884377947, 0.03029111256300548, 0.0023754363928671293, 0.06983732542550881, -0.0004906202532641503, 0.026858595564378696, -0.04709387279170271, 0.06358006373010504, 0.05205935908094646, 0.004416990843286784, 0.02074841994381769, -0.058167407787578305, 0.012605433455228169, -0.07535429942827927, -0.00115420787546913, 0.038498389583546185, 0.11526181032400659, -0.05312283707117445, 0.03715464456487745, 0.16121955591017198, -0.08985570376391536, 0.1185942578666251, 0.14251646851528305, 0.08981249953098704, -0.16388427359891822, 0.0991087944607135, -0.1184967822096119, -0.11553683322686545, 0.017389435640528264, -0.15685834005036656, 0.0408308889464039, 0.03103564063280792, -0.14501821316383043, -0.10088954458954326, 0.16179438597088674, 0.1189231875664387, 0.12352358477666442, 0.12260128387986241, -0.02040648481771205, -0.0038199664787331843, -0.005183986238177092, 0.5844568287965332, -0.06320843261157971, -0.06724537261383587, -0.08782212308184015, -0.19938293956875097, 0.10400119569211963, -0.12536979939507226, 0.1362015465163628, 0.08917376768064819, 0.08811653985769619, 0.12342871894282283, -0.14750001142638638, 0.09438352079925527, -0.20025978066966094, -0.06656914567279759, -0.04376469130300026, -0.033311521227513276, 0.166596371718488, -0.08797511774707178, 0.37587438628946057, 0.0017722570579220553, -0.032610053385775536, -0.06955676987175975, -0.2749102696126413, 0.12860566441414836, 0.037728159032433733, 0.05329471035737039, 0.056528891223064384, 0.07448471564241176, 0.14844977458463676, -0.14378726951292137, 0.03740967344154436, -0.0923557884981888, -0.05043874592213268, -0.04853695465474336, -0.06859619250592787, 0.3884728163026806, 0.01903049250499625, 0.02759880831042216, 0.007797188656194433, 0.003963140296660832, 0.0067752863496190335, 0.05647866072452603, 0.004635146005026063, -1.6999713895401838, 0.13746857346603433, 0.17129546137073431, 0.24273667548824468, 0.5938737553637895, -0.31200362061914433, 0.2910567124277029, -0.32445406810887395, -0.22294954302916475, -0.23201186248609446, -0.35108337930058076, 0.4483142005644569, -0.22883127785767637, 0.4954550283390823, 0.17111724114169768, 0.11471735433405034, 0.097099454094901, + 0.08776820568380538, 0.10952743939756976, -0.0403200164687407, -0.06597293524929769, -0.1024684529035965, 0.07663914657120305, 0.008464874893223213, 0.10358417293026552, 0.08821806239264116, -0.0199478865696685, 0.09029642396552344, -0.14593003877594699, 0.05649493252746476, 0.06883242874874886, -0.09396817601655318, 0.08231092647588732, 0.004355706321250462, 0.13999327420510815, -0.12667939651019536, 0.0073690673855154815, 0.09427744918636255, -0.11820426860115774, -0.00031977706175968947, -0.028191583498662312, 0.05203969464355678, -0.014284866601158549, -0.013793826735523622, -0.011728287135825242, -0.04183158842320335, 0.0006840917417323505, -0.005693846671734646, 0.02996503673488083, 0.017092953705443326, 0.11208650518463811, 0.05714537566115784, -0.08151905238940599, -0.02638126827300612, 0.01110921290534368, 0.05595851414346635, 0.06072061646998013, -0.05216501634814388, 0.028136395346903882, -0.056857059754040075, 0.007496042311467081, 0.09021852655861563, 0.13316594195002635, -0.04493551546891013, -0.11204145043046553, -0.14862465055794463, 0.086479942063491, 0.025787626427756255, 0.11953861959445884, 0.14755807195444162, -0.045426899460963996, 0.10921144876526784, -0.2128630270315858, 0.08040044965759201, -0.11861879356564294, -0.1474133367698399, 0.09994991404639354, 0.1151445553760064, -0.2466004358005981, 0.1785775347396128, -0.06841740912042925, 0.1692273341705875, -0.05560206000270412, 0.10626902464586595, -0.06155056822527734, 0.019575992567711593, 0.12748414223962948, -0.5825242676987584, 0.09888439053601836, 0.2085802819937531, -0.11461802309935082, -0.02022773116334478, 0.0031923669841979717, 0.13543192856081687, -0.15569392982794295, -0.1446789932678187, 0.15382968091789168, -0.01440308192441904, -0.03856070990890284, -0.11367810679513521, 0.19844748789468303, 0.06058554244795449, -0.1694256884241865, 0.052297589612676595, 0.05437043025097753, 0.08849616977589833, -0.3644191383390445, 0.04632766757684066, 0.2793326997085342, -0.12521021150994627, -0.051797379362525875, -0.04365433009750379, -0.034412666564892544, -0.08064041161089602, -0.15391842203507103, 0.14986957701628192, 0.018495305511877506, -0.004895094999714392, -0.059006314095790116, 0.0948654178348521, 0.07512457842441098, -0.399873276275622, -0.03226510269528442, -0.013234390907229748, 0.0001819261924819321, -0.017582649640159567, -0.0030343181441735735, -0.046524242967172266, 0.020531722553120323, 0.008911867702859268, -0.009848417866498038, 1.6923546797317708, -0.24652956981032464, -0.6130238082849044, 0.33539390896986, 0.06302856113545588, -0.0015125127211169237, -0.32849693617809994, 0.3738451695115085, 0.39076353296791655, -0.4767948081685649, 0.010187960388921502, 0.08719865914972674, 0.2938403634574634, -0.48168008689165825, -0.15636678390430198, 0.28353817175117235, + -0.008432128287132742, -0.017133488135314782, 0.025769296859536762, -0.030750330396369388, -0.038391076034503695, 0.058543566711925336, -0.06188329584602355, -0.058855259982508665, -0.07366764541790953, 0.0647526154271992, 0.08273745823994037, -0.09698195347640069, 0.07798197804844799, -0.07635562704215017, 0.0825498736579564, -0.09660302668556474, 0.09889662045481606, 0.11639636329419477, -0.10538662520109504, -0.07521978538075533, -0.14827800938216482, 0.10909653591534897, -0.04873504295644639, -0.01743647903352066, 0.05383776844650857, -0.05777021313589729, 0.006919926452122143, -0.03126207516651473, -0.011775884222346602, -0.008212627808800266, -0.02306488863301333, 0.04884675543807529, 0.05278224262873997, -0.08272336865098183, -0.1371629513475801, 0.06617968311200181, 0.012940879791757306, -0.000290872596576206, -0.0144737382992327, -0.04453473999169788, 0.05869305410523976, -0.008026646060278095, 0.053420707676942805, 0.0035895114208217963, -0.004223322849630181, -0.013386864681988173, 0.03323879137808018, -0.047242024880869926, -0.04506122984664308, 0.05651730415942349, -0.09849957380435774, -0.08213555459629372, -0.06924107070994324, -0.10471451097174742, 0.08489684442350055, -0.13091569503160883, 0.0846608449989982, 0.10927985994535795, 0.15859105359188408, -0.07634062617119254, 0.11123684918507404, -0.0868606520456947, 0.13760961861559112, -0.2316983759340933, -0.23941069116233493, 0.17966673304025743, 0.056045355115345384, -0.02596941067350055, 0.03381957033049558, 0.02907857469484465, 0.025168012195776742, 0.5033145330145572, 0.10464566637764615, 0.020175230995643667, 0.010433086030423352, 0.011058032034027249, 0.009730561171094984, -0.08106344381251361, -0.08917390997556593, 0.030769065264483687, 0.037765861689572584, 0.0421113565371462, 0.0540653052424509, 0.12409009016958249, 0.01257600100711162, -0.08014217927344916, -0.06274357545715223, -0.06534418211649803, -0.08105615026118346, -0.1321041907551356, 0.13279128514723715, 0.15161827422500893, 0.06270571410413589, 0.05077984994499627, 0.05936860269384826, 0.08483123462377219, 0.15851050531846522, -0.15507200984449634, -0.02519392572949105, -0.003242986616950126, 0.00408158432479324, 0.006614428465712051, 0.03276503402411135, 0.4036424280850005, 0.05803442919860397, 0.032298879606793784, 0.0161232713487473, 0.0038173544739158183, -0.004439555171853314, 0.06984045371995114, -0.024749653583680732, -0.023083103906240084, -0.01834686388123006, -0.007302563280045901, 0.01748871249864198, -1.4292127343824987, -0.3391512430657477, -0.07242388004772915, -0.03100861202162468, -0.028393628882922295, -0.03323427491243247, 0.1584632501960536, 0.3589281891946705, -0.025065577427046997, -0.06696956390323511, -0.09412403140678419, -0.1359183723535089, -0.32215832902667785, 0.10814115037317858, 0.18202167761992216, + -0.09688000239763296, -0.09602914337732811, -0.010201915557876544, 0.1063794543788603, 0.07511494832888284, 0.02687932000045942, -0.09926176302555269, -0.09022760851403491, 0.022284699324021887, -0.11105993041757165, -0.07745154833890427, 0.00437377633972411, 0.10244786903098489, -0.1281298226022966, -0.04922569778103334, 0.09331579754046096, -0.027105468112141658, 0.0026727801304132883, -0.07848231232097186, -0.05358756957039503, 0.036882639488067956, -0.07604875906180762, 0.034906410035139945, 0.0069737133368201545, 0.05079195144348675, -0.03368791398608416, 0.027179573875661205, -0.010048555305485244, -0.017848014980306113, -0.06090057775407831, -0.04448763178545865, 0.04473113672374592, -0.1399609494424518, 0.041424398934236384, 0.02999698088878851, -0.022666523241655426, 0.0889656741644368, 0.021083494500012522, -0.04295458362720293, 0.01869527772361064, 0.012920406544866168, 0.053142087937954136, 0.06797159519654838, -0.022203083991109446, -0.09230301071655912, -0.11917512650088088, -0.008305312170387656, 0.16288678670610213, 0.11099337906109512, 0.01879297688507919, -0.11457777129975612, -0.1156706339779644, 0.04715882882245883, 0.13252421892918567, -0.05197446872483254, -0.05145299721925672, 0.15790756030566697, 0.11837064303635092, -0.048543662970451436, 0.15429393504937597, -0.03787608563893139, -0.026261594323767692, 0.1966456000246595, -0.18276052348684438, 0.13216461222202852, -0.13276985797253496, 0.04823693807053638, -0.03228301792038333, 0.09661633565655381, -0.07409729092176458, -0.13030166724447645, -0.0173613504634873, -0.5781824801677955, -0.007335488117385609, -0.008544789108096725, -0.01631834799737003, -0.03772452371926919, 0.15960980644960326, 0.12328408335982001, -0.06083482258426811, -0.04019412548414255, -0.037092364301676686, -0.04140358696651304, -0.16647673765465495, -0.07969160762467925, 0.14475601860805037, 0.06668466638717858, 0.0628023804055625, 0.07867124841308078, 0.18562824256827068, -0.008175582831800676, -0.33043408971699834, -0.06139879690906845, -0.05061365135641842, -0.06569864527860805, -0.13589382587469387, 0.1739106042285209, -0.05126676515733058, 0.016809001830860995, 0.00340126753833208, 0.002088796096599621, 0.014480304007277317, -0.4177137476706817, -0.0028443022203270803, -0.059650877780050376, -0.029668563411820646, -0.016184745304003424, -0.009052645570724167, -0.052354874083660775, 0.05065262802702474, -0.013846695076484844, 0.014484406857088558, 0.013716341550843184, 0.0057536410358737106, -0.016638687449109513, -0.00443372251347547, 1.6567733072630384, 0.04615432387732396, 0.030161927817096177, 0.04772707125602044, 0.12292317233388399, -0.5126084681709101, -0.2920322487147504, 0.09622357197349603, 0.074076129113701, 0.08008614887851478, 0.09668413734424389, 0.28055911844566767, 0.2751532775803276, -0.3720286971063626, + -0.09625684908877123, 0.08830534584255194, 0.010855059913580573, -0.08617043242882468, 0.10336766347781495, -0.007029509151896963, -0.09911342800770412, 0.07828332604062166, 0.025154627994789836, 0.1041450985412398, -0.05789226424901305, 0.016486363127536537, 0.12924890040835266, 0.05537976614534686, -0.0923101890903648, -0.11028240180913176, -0.04148710296704115, -0.07948035180266441, -0.13629315019103683, 0.04868579082912178, 0.08961846232182653, 0.07837142943914323, -0.010987121832044072, 0.007140643849364351, 0.048586784377001174, 0.046616920430363126, -0.001263283896290133, 0.00914977067717974, 0.0026399699186708983, -0.014644313780600668, 0.021829582159516425, 0.023456156947156036, -0.04488751075555369, -0.09893436129089624, 0.02895593932313609, -0.0845865519137742, 0.08237820849747471, -0.09373556887617307, -0.003995674343564483, 0.13847064682983742, 0.011483557605669202, 0.03918440650878286, 0.04516673810909921, 0.025537928291176758, -0.0880877239311927, 0.08167384316324194, 0.027208460478477997, -0.12769637723492622, 0.12251281138881123, -0.0009018346628651288, -0.14096352649078658, 0.09671949542254515, 0.02751463754450235, -0.11874860956106775, -0.12129309532922739, 0.0870712541069023, 0.11757362598709956, -0.06716906745124876, -0.0742108198992858, -0.15962590370842747, -0.029003302801301815, 0.13542776940283113, 0.13018129930771494, 0.10152328066926028, 0.0586314900840603, 0.10075638178722361, -0.02413729975299766, -0.004122621514854919, 0.06226321938000086, -0.10136345380487348, 0.0974924694778049, -0.11004349714898819, 0.02312288986250152, 0.5715446642214723, 0.013491888084229561, 0.037178997850620725, -0.14881308079435393, -0.023871975042253867, -0.020641695071199215, -0.10779694366191567, 0.0631151878744963, 0.040933627755723234, 0.15128142960035154, 0.011175600007225853, 0.02309707259595356, 0.07770218842607389, -0.15022495829886826, -0.08351119843254234, -0.17265825174900215, 0.04554240587286318, -0.006213364845376428, -0.040553361267572516, 0.32472924897748234, 0.07955856590999881, 0.13265684856764917, -0.1812122329341249, -0.029215589359676192, -0.0026019327904495126, 0.07437937395917545, -0.016020354648431694, -0.023244941160201503, 0.40990561319089835, 0.03264854003140133, 0.014401070860425663, -0.02277019036161671, 0.04504146113432517, 0.023630576069227867, 0.0666873482864324, -0.026584215879147208, -0.024194105251007507, -0.03439754155072162, 0.02409596688932867, -0.001861244569270136, 0.010306224813241139, -0.018372698454153777, 0.002568317345685356, 0.02471802228857018, -1.6314790079190624, -0.06489365823406201, -0.13129279013704975, 0.48462520875794135, 0.0881610336042391, 0.06178781932474764, 0.2306124050445158, -0.11516214356334206, -0.07917920948285777, -0.22597865506841358, -0.05718703681843404, -0.08747889864643518, -0.25328235393546983, + -0.007135592638896333, 0.013836870546843775, 0.02447012568710008, 0.031378113433082146, -0.032477775253302386, -0.051424984662297404, -0.04252500517689787, 0.057092631010374456, -0.0625034166599165, -0.08510799606231963, 0.05038732157233161, 0.0948873563014379, 0.07964572806035344, 0.09531920049764556, 0.11527305720779242, 0.12451363159963393, 0.11249722205074349, -0.11106928673451752, -0.15851712752830846, 0.10855101673641486, -0.10681382985282142, -0.13265316938321056, -0.11394016550627789, 0.04605223897343231, 0.0377338585796422, 0.035065935932948974, -0.05324203915821529, -0.06927893021152762, -0.024108053357089577, -0.04265130508600832, 0.0172233659932823, 0.0319655628400614, -0.03448097686009075, 0.009393131876822699, -0.0722886585998785, -0.05967085709846438, 0.12117783441900913, -0.010554761052165906, 0.093545107110269, -0.1043297169277695, -0.07470688199487001, 0.014968632752201522, 0.1170786334910723, 0.009523293520099183, 0.028857074969133763, 0.01851389304414118, 0.000261391943560896, 0.01320102227341653, -0.03191682491214059, -0.10901513733418948, -0.02116841943382763, 0.060562350610774314, -0.06832784295748734, 0.09490723638765015, 0.08545851060431663, 0.05385767632203627, 0.11600505170948708, -0.12985331590802776, 0.03194875211578184, 0.17636195019020118, 0.2092805922581625, 0.03523962046943112, 0.18290321757728897, 0.18203687354029238, -0.08855585011794362, -0.10551195949047346, -0.04930181612799319, 0.12744525856189354, 0.025754225248257535, -0.042099299420957775, 0.023982130646281605, -0.09847066587402448, 0.104901609248228, -0.044595615077192105, -0.5856627889165307, 0.1481974221070343, 0.021820531937730422, 0.011141498924037391, 0.009344000135181083, 0.01608848403908112, 0.10469889830391689, -0.1730095140164891, -0.00929944166400097, -0.009457360750290467, -0.00961146600571161, -0.01475340998582176, -0.06026180006408313, 0.25362501561199235, -0.04067964617582698, -0.004028735830610662, 0.002951918313880343, 0.007496684364527134, 0.024626070924804254, -0.39668600817029037, 0.16399555229390642, 0.02821680580805381, 0.011301961257204958, 0.0053537561603275614, 0.002750457945227207, -0.053353650256856414, -0.38665289863957397, -0.01877810960622226, -0.010766068316796093, -0.006742897154939621, -0.000707620335515231, 0.0282612681251402, -0.09317038703202987, 0.012326032334442204, 0.008754062151554477, 0.010389827794176451, 0.013087013307084963, 0.021668518493717, -0.04682473510305629, 0.014305518172734438, 0.0032912175197354777, -0.0018878269831689339, -0.008365518608405537, -0.022701925071480195, 1.6904896123515696, -0.4570542424439728, -0.07132675224776995, -0.03779337590986814, -0.02871002332779736, -0.038280926336609455, -0.2204703415948348, 0.2548151634853635, 0.03740079777055211, 0.034639323064302785, 0.03661537490844416, 0.053604459190080916, + 0.0885460947757084, -0.10046634833620677, -0.055882998919501256, 0.04583662244073043, -0.12578773343328817, -0.06530747418110147, 0.016784529484184116, -0.10629608677908017, 0.08772127791893457, 0.03102080535445634, 0.0836764773161886, 0.07450535039056627, 0.05179637397657323, -0.04997605835723915, -0.07970364465293335, -0.11047527244889749, -0.016343361866832856, -0.11005357735796717, -0.10175662266095695, 0.04852023306315213, 0.05422491174031229, 0.13783957463085758, 0.05501082657608111, 0.04157792973785057, 0.028282235699889104, 0.0400516339601636, -0.02483811040049574, -0.002929143437113691, 0.0583408082912538, -0.03310338799410641, 0.045413931650200405, 0.027318181240561023, -0.018077150774964773, -0.024906160889358566, 0.01962831412871059, 0.0255025166309144, -0.013892424643300724, -0.07430754302746057, 0.07778105017915159, -0.02306939203200404, 0.09728392295029414, -0.10698632591008192, -0.008136633982222344, 0.027131644071480505, 0.07911687763714581, -0.09936310757599527, -0.06417886114740633, 0.11919603747312461, -0.16878417235961327, -0.04760996223141744, 0.038836950625850894, -0.1507009810931163, 0.09464142283957956, -0.04664260834244447, 0.09097807440061292, 0.14808799657838415, 0.017356950981069198, 0.09250764371091817, -0.042627871929703715, -0.11889970231197614, -0.02406067197285919, 0.18414373926049582, 0.1604786459989721, 0.08266462969055344, 0.025164015796421472, 0.12622881158155416, -0.028567248396069486, 0.06630559471593928, 0.0702657579786774, 0.02173323621059302, -0.03315582428429196, -0.04776935311766362, 0.07639449776392522, -0.12635285573947072, -0.01572242646000972, -0.5328206832304465, 0.014164526965501467, 0.01075559044019403, 0.009522591016101985, 0.008830807810147955, -0.06955797206391989, 0.09835569282220136, -0.03299854279668528, -0.011074855287961323, -0.00351972793300899, 0.006228793648889543, 0.07503459807995186, -0.12788958408221704, 0.06751032009029583, 0.008601159786409542, -0.0022887599930389024, -0.013083652126285934, -0.054547568900601966, 0.17631077772954568, -0.2057285169078784, -0.002841189358187694, 0.007430380339448886, 0.01414342879287063, 0.031851527248266204, -0.4562438506382674, -0.22304195611350558, 0.019144406914150706, 0.005447061226472816, 0.0015583020887484367, -0.002209388354158381, -0.04386311596385954, 0.04289655981286923, -0.013928418247342474, -0.002311821961356861, -8.390842558572004E-05, 0.0004744324801879557, -0.0033546644487298626, 0.023206685573820458, -0.031892668034129684, -0.006043627948697103, -0.0032588384458673222, -0.0017317036141983877, 0.004467410807914487, -0.08637512044868038, 1.4928805425202127, -0.01976729080906081, -0.02215219306861807, -0.022755981171544863, -0.025788598876357045, 0.04125713252689703, -0.2129215399331591, 0.07500835571109415, 0.02747872684101907, 0.009599732332731842, -0.01607802996622061, + 0.10281891100476452, 0.0777803022503103, 0.051245445530765495, -0.11223703739591917, -0.015197153778211958, -0.10920804111437228, 0.09320047337450302, -0.025067957092919688, -0.09152692488386602, 0.052609930634696475, -0.07578863173335525, 0.09471935916521074, -0.013835852869821695, -0.08542833698346358, 0.030123272128993937, 0.061511434549809986, -0.0895198336608316, 0.0018946517304302695, -0.07821485978845226, -0.05003616769706748, 0.029623801767571307, -0.08628862413552878, 0.060303353672113605, -0.0389650791033439, 0.06796029688332593, 0.012413253342455, 0.04773921957531529, 0.07252280410765169, 0.01926714199590826, -0.052895317066241225, 0.024390573830641592, 0.01638427626370788, -0.05058396905828672, -0.03766535613077466, 0.02506685845853568, -1.3361244517605483E-05, -0.062311008391177175, -0.05830305014999115, 0.05571559065890607, 0.09238128636537045, -0.047841831568608155, 0.04225619074453859, -0.07043529833906574, -0.015308735460534764, 0.10159435174130967, 0.06662449283495367, 0.05558860027015216, -0.12913927640440634, -0.06148292865626043, -0.08815885566619226, 0.13421084017740245, 0.005093022121307628, -0.1449244648973909, -0.047121710543958605, -0.10633855875351123, 0.16161122601253203, -0.031994361320476734, 0.12260387859065852, 0.11335597478308636, 0.04510490146025454, -0.16091810891563316, 0.10911191343498422, 0.09337165803039214, -0.09590205812164752, 0.027155339705825024, -0.12300623595515432, 0.08234151926631293, -0.024817431991556536, 0.05529677493880608, 0.0789575663197121, 0.04070275080886921, -0.07778597911016571, -0.09990275075855459, 0.005680636257499344, 0.05598078381956633, 0.022330800970406153, 0.5389374885650595, -0.010989027610694597, -0.008827660666102516, 0.07580186293319804, -0.02737192402023027, -0.03219990562702342, -0.10204256352165482, 0.025117865376208682, -0.004641979778350826, -0.08257856952149827, 0.08287694989506059, 0.05856254064545905, 0.09646004608654066, -0.06617925461939685, 0.006574288805451793, 0.060004857492161265, -0.15143720862698884, -0.06000261303269448, -0.07005539500369751, 0.22079094768778923, 0.0006551387374145092, -0.030854098499419516, 0.4466877603947253, 0.03888412304030468, 0.034427840082142565, 0.2025215138276407, -0.028931727113907624, -0.008916927291743076, 0.04069354162261707, -0.0246262606120511, -0.017062292964174407, -0.03215588951951449, 0.021209526054260467, 0.011142860698410159, 0.015276855337277375, -0.004673703749112967, -0.002073439167209458, -0.011241573738416182, 0.036359729666731684, 0.005259466378683773, -0.00910691303884922, 0.06768782903904105, 0.02081594742046472, 0.02807910354069608, -1.522616323941333, 0.003087852966573018, 0.01647870907930244, -0.05849663223020235, 0.046936176353987766, 0.06657655148504016, 0.2337716285329528, -0.046339377127360665, 0.023811593189540903, 0.24948746579936698, + 0.022560494629742224, 0.045019434311874565, -0.06556796484322434, 0.0745218321598124, 0.08776814757432656, -0.12628432904357467, 0.12145926116594274, 0.095565551985684, 0.10894719735350927, -0.06778877587902007, -0.08130911063268491, 0.07188958951144966, -0.022930596279924317, -0.019958376606994753, -0.000234548130227368, -0.05825945023636292, 0.05140104366607644, 0.08240305147783096, -0.10662054221262952, -0.08381100163989802, -0.12509599135214697, 0.09609532243715888, -0.03808307824078857, -0.04446525517887697, 0.08114702146294751, -0.02917687027848127, 0.0704710371623695, 0.04152940924857168, 0.07667828991328052, -0.014318388766585685, 0.012130232609257472, -0.03389383853798542, -0.05635863934446823, -0.05916755405636273, 0.022322243480152562, 0.011115627945881761, -0.07879825322357195, -0.11661269600816761, -0.05795521341903172, -0.03827192738987646, 0.06585765368083436, 0.023030374569613248, -0.07143028700258199, 0.016967818383192827, 0.019535765637072395, 0.05225960629989167, -0.05367197021645094, 0.06862185354244749, 0.08437813743254721, -0.11304664251712426, 0.13711068525706602, 0.1564717599883316, 0.1685245772890601, 0.11581900600810054, -0.09170571636578317, 0.04881993679508649, -0.028472318039883444, -0.025788713471236523, -0.035407160560980325, -0.013352286144786054, 0.08521969659017871, -0.08640450503503562, 0.20498505552879484, -0.21513106757332584, -0.1733807896180475, 0.1214713588051805, 0.04056844750786611, -0.16106061231298432, 0.07521415923391679, 0.038775643631932415, 0.005798529092987032, 0.029894432472219557, 0.0027531317967668762, 0.026167534956384308, 0.06258055583373091, -0.07465888911344487, 0.02125748626496897, 0.5399961832297988, 0.07435336293988787, -0.027682525838928107, -0.026532883766758598, -0.029671937051820585, -0.039749285492449375, -0.1178106866215331, -0.060872508275719925, 0.08488001230370706, 0.05126593334011795, 0.049519228864400466, 0.05995339352960584, 0.11192427681294254, -0.008513428606141349, -0.15815774834775265, -0.05412722248400134, -0.04270223714372544, -0.046776153252934834, -0.07349723427327594, 0.19706136329581075, 0.4609343369726241, 0.037407000098927765, 0.019355185239832984, 0.015559342588917854, 0.023559625811478108, 0.1989026530933944, 0.013366978027166791, -0.0359593517006656, -0.020542532010999433, -0.013261403417594991, -0.009722815019084504, -0.02343672030102968, 0.03626126024765507, 0.006840974594339189, 0.009819898022732927, 0.007555821750468343, 0.0020930105215441128, -0.012296169139940097, 0.023877085713362847, 0.07111242478403994, 0.015777488180989244, 0.008255074245491389, 0.00802881136531599, 0.020563229300549424, -1.5255664026159614, -0.078374108152539, 0.03761865433012128, 0.04942288208135171, 0.06480225137878765, 0.09447309429453402, 0.28510436354323027, 0.21229350876936454, -0.21108357229194238, + -0.07843993646481351, -0.11321147240533143, 0.07715101459799588, 0.014050444021505064, 0.07871742334294239, -0.11227715870431786, 0.08450688758008094, 0.004102132436971535, -0.057271485282626135, 0.11065608108692608, 0.0488197110335339, 0.002408363764320167, -0.062191276339146534, 0.12231595303414541, -0.09631181386055622, -0.0108007702925127, 0.029451173334368943, 0.10704490294802915, -0.09619544626762484, 0.00813642462652473, 0.10969278591181586, -0.09293426463696486, -0.0021115582941438698, 0.006601451143705274, 0.032108944078362005, -0.059988058853157694, -0.03821347037735728, 0.0837282012703416, 0.005693157780371121, 0.007670249878081241, 0.02582850236575919, -0.02017643721328286, 0.020976071243921424, -0.00922109084051159, 0.06314424499534282, -0.009338881244904574, -0.04616700951936533, -0.07779827426956638, -0.03267209460348897, 0.04309941246092491, -0.05771744040402683, -0.08846185986456939, -0.0030167998083542222, -0.0013481701136161203, -0.10754490800543529, -0.12438056623370874, 0.06918668206051454, 0.05936160633385476, 0.10454027915751045, -0.12293136756704504, 0.09407503029980589, -0.030632174510458892, -0.13190356676848103, -0.15597140826335013, 0.0024443565209744627, 0.1107617974398237, -0.13860764500517778, -0.11674891057859497, -0.07205604856435097, -0.08416499589751207, 0.09607678139932356, -0.09302484492228315, 0.05549306978159388, 0.06275312609365208, 0.11008262003101901, -0.03543062342909809, -0.016677751722769744, -0.12865903074789928, -0.014533407035518071, -0.06761035173098576, -0.05192575134643071, -0.06892211926370301, -0.049852371638553106, -0.03305769970917293, -0.030293329947598466, -0.06774086476839557, -0.024017471885549504, 0.026722683789075927, 0.5244774428209813, -0.024457026263396242, -0.02649583659818064, -0.030196190688813906, -0.04010860349880097, -0.11033609241841627, -0.019208726128511093, 0.061483102408877575, 0.044535114392742166, 0.04603664834656698, 0.05695314084209964, 0.10301649799345591, -0.052997937506450626, -0.10065405936636543, -0.04176910839078792, -0.035039397704561076, -0.039754452673660456, -0.06107607255221323, 0.3661513953944969, 0.19821378217831512, 0.027604195532853544, 0.011270002291709422, 0.006136020591427031, 0.008049615256570612, 0.03549211893165856, 0.17478781829131826, -0.04351505028612333, -0.021928908807715152, -0.011400782813486922, -0.0030291118264490074, 0.009258261199072942, -0.03448378438518437, 0.030571434735444984, 0.018045941886622625, 0.013174596789692593, 0.006375668831733156, -0.008769265533383693, 0.0512446055428175, 0.03864844534233231, 0.009320413340785443, 0.0016931361887809054, -0.0006024886092826261, 0.004961680699505297, 0.18559436475799954, -1.5362180214649463, 0.024415121185296013, 0.04898746350665366, 0.0689253545535311, 0.10372204197626955, 0.31724413890657455, 0.017093772865548557, -0.13361964061685175, + -0.10732305171792046, 0.04211912859881487, -0.07764407056434264, -0.08064246197691682, -0.04412239299504364, -0.08547311523934668, -0.010163571719317262, -0.10649917139178065, 0.03222019744189375, -0.05661486392804089, 0.07951712660108108, -0.07141755784437416, -0.11797629484044156, 0.038741466636563436, 0.13083850731241886, 0.00811046669891968, -0.1047438716558156, 0.09095032287283214, -0.006583495262247157, 0.07503042717636857, 0.006860116043370894, 0.07794445722526737, -0.0022483998112280694, 0.032853869808123784, -0.02828177671442976, 0.01616945159092043, 0.06411888567090496, -0.03289813797284567, -0.013829875569283305, 0.058527466052082644, 0.047401535436360095, 0.010105343253003735, 0.10286668817823037, 0.04683328835819961, 0.0058288316307990315, 0.09945776854627428, -0.020592667342809536, 0.023664895435970484, 0.029140357878898692, 0.01037270810814278, 0.07402752997557521, -0.024591391210827103, 0.019371446286093375, 0.01416103243026479, -0.12095096382025525, 0.06724398764461918, -0.0746224002335096, -0.11955221651790762, 0.00098940486521438, -0.1400217507851969, -0.03311543341978234, -0.1427372855619453, 0.09371263816014812, 0.027255042655853448, 0.13064087163705246, -0.1110836491097758, -0.15006612817547973, -9.39119292337531E-05, 0.11578643836189885, 0.052092427198503176, -0.11806538615712285, -0.20925506317235182, 0.00955058130157863, 0.10793175278076418, 0.02563251426036249, 0.16692468969493293, 0.06296887759272972, -0.07554486648058095, 0.029262161531462712, -0.07803065047373514, 0.01571608448549728, 0.1488313049468817, -0.013118239461398196, -0.08909591638330476, 0.116013970037137, -0.06208611106681963, -0.011765787569786813, -0.09766528350899059, -0.06850027503434243, 0.5224149497061537, -0.03389997043108419, -0.04352225432265801, -0.10974988797525495, 0.034907366609127424, 0.006756073197032565, -0.04596224810664717, 0.06619631750026478, 0.0621220749109037, 0.10172055200470043, -0.08610274885082535, 0.0008658367133735356, 0.04045162348579269, -0.09117936909485733, -0.046690725264681154, -0.058240311432082185, 0.3880502029790115, 0.013282195950147683, -0.01746533492445252, 0.17894360544724291, 0.017085788957636613, 0.005359518497071277, 0.020309184107876556, -0.003822027963192665, 0.011256025056960259, 0.18047369594227086, -0.03915967496065411, -0.014235144318429638, 0.0067691558877648085, -0.013094693077409125, -0.001752533543925551, -0.017516061129581564, 0.037682823596085005, 0.0195883527206475, 0.0035616634040972366, 0.0682149393630837, 0.01619757570373407, -0.00138536040417871, 0.026841040357814636, 0.001016170898464292, -0.001259262480110102, 0.16658926812347266, -0.015383670126544501, 0.0029817015986811912, -1.5252658872200429, 0.05458212759770921, 0.10287871887711636, 0.3147676613182656, -0.09800486099252506, -0.01949386296815428, 0.09725649842450657, + -0.037533848167182554, 0.06845992367054303, 0.11049338110412027, 0.12315168514206626, -0.09603378018660963, -0.13193149262579912, -0.04471209465164748, 0.05603079179670903, -0.010493826284412248, 0.046748052584688254, -0.10243577812686572, -0.10108722929168922, -0.15499048848136968, -0.14087873091309885, -0.13424660330812044, -0.07408360309713577, -0.05844254405258243, 0.0540430997271454, 0.028121105647215823, 0.03653177327784422, -0.09719925542734291, -0.14234274471364788, -0.05756759590085516, -0.0051069657351229866, 0.134990376951462, -0.050433340345201326, -0.02848784925737684, 0.005865860176169293, 0.03151834288348237, -0.07147589654531765, -0.006057186053159218, 0.05032546210019676, -0.09719345612120509, -0.09807526367107494, 0.06659368315226752, 0.03841071390715245, -0.17016615827806278, -0.023722297746411897, -0.04482065544361666, -0.008789894454079095, -0.13583071425788704, 0.06582957402068801, 0.003760507833621372, -0.07982761323507925, -0.01334656799419652, 0.018234173256456668, 0.06965451190083775, 0.08413059227100961, -0.11239238016267326, -0.11355132625350278, -0.12713720978053292, 0.06991716981488585, -0.022765417182841946, 0.025324036570462543, -0.058635921964908, -0.13029425287755161, -0.14110751942705188, 0.13347104182987254, -0.033128108344376996, -0.08501976799926955, -0.12864555060271993, -0.007058488121411128, -0.010426842654398716, -0.016467531495336665, -0.09310737735741817, -0.1701268013660096, 0.010469927830532725, 0.02652915719074795, 0.025520170242782792, -0.0565052190261101, -0.0052011426876770505, -0.017235772939555125, 0.029713658402295225, -0.05012109285358112, 0.14347907040018096, -0.007746111079783551, 0.0419542039360671, 0.08722633140973335, 0.11302460532227562, 0.10250868300073414, 0.5134634514979112, -0.11636094156691512, 0.029843355081826686, 0.007677330587190896, 0.008344654812206897, 0.01106134821815278, -0.027461988922295205, 0.12534332535869727, -0.08022714469580167, -0.0016250518890428972, 0.007278932461199046, 0.010869589373766059, 0.03428837209743037, -0.1173819525231708, 0.3865170578066049, 0.023363777560019602, 0.006222502981464279, -0.005623784322208676, -0.025036739493093808, 0.17641221702921528, 0.03192802693816912, -0.006216143627420345, -0.003924370396390188, 0.0028047888115806897, 0.019062296919494452, 0.19063264358804213, -0.021665737468500076, -0.02461073606709231, -0.0045218162876543705, 0.003770021704172212, 0.005249183207069789, -0.015479854353150852, 0.02897587269482021, 0.08293887477407105, 0.0302580687881465, 0.016362624692627746, 0.004595603396780043, -0.009322583234848525, 0.024330758569002284, 0.17111458624942733, -0.01886651252631802, -0.015845969121826033, -0.010599852939881648, 0.0054879137764052635, -1.4958159097084944, 0.3078489556841857, -0.09430871371782434, -0.022904792435684607, -0.018446951627530475, -0.02617427947360651, + 0.06676380229225368, -0.10248887263536344, -0.12358579962556683, -0.07580685616393742, -0.030305370135411076, -0.05177573563407319, -0.13813397702961583, 0.06882668999603965, -0.034884472660125905, -0.00658807965745681, -0.06906430427514776, -0.1391986280910023, -0.10779263116141807, -0.07405500732174529, 0.03752015705205349, 0.13520891361898657, 0.11821190818768056, -0.017947000260117595, 0.04341687420671681, -0.06692229983832583, 0.11337390427000858, 0.10563823893211878, 0.022024732775931585, 0.130763954495101, -0.00016521019432675052, 0.0947028694708432, -0.00392947131215867, -0.00031488552213807555, -0.012147840909990456, -0.053966283280819594, 0.0810356491235049, 0.011332314843954907, -0.04049677931521965, 0.1019304496381133, -0.13939379386054862, -0.07126837098331586, 0.027865291574719012, 0.129321447716968, -0.09609572062610672, 0.09124695293882651, 0.0904539477983086, 0.04907676213899735, -0.023437903095418187, 0.037952550465323316, 0.0633562794135198, -0.08052614831010547, -0.048107659811011914, -0.02391929982380478, -0.023050364948770233, -0.07747980314388771, -0.06144228000178163, 0.01709507467040533, 0.03657221481702054, -0.04742335899872838, -0.05958844304206965, -0.07732529310511893, -0.026173775409775505, 0.005814913113933337, 0.057818170299130826, 0.05426697960528538, 0.021022357729379753, 0.014509933956687383, -0.07466848928991264, -0.10665403702194132, 0.033296312536689514, 0.041850541646974805, -0.21033648057467924, 0.3476306944874571, 0.2263121523628011, 0.0027957154196151064, 0.04227317852105085, 0.18397246634056796, 0.037178676843369104, -0.03846466947256534, 0.022265778898253166, 0.14490980344718116, -0.167359935272792, -0.17930107004569826, -0.0574136425812972, 0.034287020888011804, 0.06579850302214701, 0.5396939265164233, 0.0038172547903846596, 0.004871555926195259, 0.012794337517554426, 0.02649289726359759, 0.06364965745812384, -0.14125886486714467, 0.0102424078596631, 0.010861498042395286, 0.009105587566308908, 0.003393386787171781, -0.010798285527209513, 0.42595214466087733, 0.024484355721858087, 0.014382402995182475, 0.005415110755637189, -0.0024333850083526534, -0.008694026981160556, 0.017723775950630127, 0.16182517154751105, 0.006695115011710703, -0.00027543007398049546, 0.004308295962179853, 0.018208842241592235, 0.06347346726269498, 0.16793037377500292, -0.035031394630117056, -0.008278780216895699, 0.0029108884261602186, 0.006046167029576881, -0.005057264822237862, 0.05032183494849486, 0.0657862005803929, 0.03534347932978072, 0.020531108064669366, 0.00870044019053753, 0.0009870826783960236, 0.15672202504249766, 0.03270532850181737, -0.010957653108147392, -0.016087220366654657, -0.014273785972777425, -0.006086578117237, 0.01690961139333608, -1.561673783927821, -0.03775377531464072, -0.019155881996207103, -0.03130348659970665, -0.06706707909525028, + 0.10967912082124107, 0.022872669522804197, 0.10503646789974232, -0.035831909190856784, 0.10800658570188543, -0.08526678753277903, -0.07996988665646854, -0.09356804818951343, 0.11339925749140635, -0.08748524948358008, 0.0908459680004582, -0.088764805946034, -0.0995522241766241, 0.10431749884554926, 0.08814892926434766, -0.146154116217628, -0.061378702654636665, -0.1114826648034721, 0.008991775316641339, -0.1662121372487084, -0.04064397017493912, -0.009413729384563651, 0.04836427426675424, -0.0222076717077136, 0.1361929610930459, 0.006420988262415585, 0.14490253693322439, 0.07399638558808386, -0.0702597553870317, 0.07212596560208527, 0.10849897647619312, 0.05905071534471897, 0.12866810610034465, -0.012374410580890742, 0.11369523375303324, 0.01302623179313834, 0.07802874756817164, 0.010693456251605395, -0.0923125835324599, -0.10674020378350833, 0.0023986227851031396, -0.0393263284884172, -0.07606507260072642, 0.11662762987117788, 0.08010831811005562, 0.056351736246812736, 0.09438542843268956, -0.06111320365663518, 0.06377091858644757, -0.0671989630735595, -0.04019861870861897, -0.05427916692600447, 0.02767549464884463, 0.06830141354311582, 0.02834752726454544, -0.09564645977637534, -0.025452383340638172, -0.07451872354714098, -0.08426738428983364, -0.09531481322762628, 0.04782387971482605, 0.006490101307095094, -0.00523234808958961, -0.01781925517461478, -0.06372857144272927, -0.0488383713665375, 0.32612635028316755, 0.013088007849610709, 0.20357486785427678, 0.05280768745914123, -0.14560291277932705, 0.013783964984087443, -0.11449834618409128, -0.10549782052279938, 0.12420763446553335, -0.010134035158691448, -0.03474684910195559, 0.07025091495222731, 0.01651414225206965, 0.07730692695442848, 0.023207445535877783, 0.023242253970454117, 0.5258214229424526, 0.0075989414044886, 0.0201207568439723, 0.06017308908744026, -0.10343424818631963, -0.025498733017718878, -0.04974400344357445, 0.019006357577971464, 0.00459428926793026, -0.014277570450012055, 0.4062719792375175, 0.03851255264868314, 0.02909825685440073, 0.0020333445590691585, 0.004252471330492329, 0.003285271502948238, 0.04478915035634132, -0.03739632449794993, -0.04819641456035744, 0.17091202912995473, 0.015593445333077438, 0.014347311166962987, 0.04463777465756622, -0.029832070533721583, 0.012286319836730331, 0.1988166202341929, -0.026103987687794403, -0.007056873945051431, -0.009316126668192416, 0.07576806854753597, 0.01900139259199768, -0.01732973035565972, 0.04747427869944791, 0.022629100800071203, 0.015041214979413214, 0.17960731883932307, -0.029258151972344316, -0.04283573119898363, 0.04003830761996204, -0.004943578073475112, -0.007899828516504392, -0.0017551670436622008, 0.0005318891991475741, 0.021073775471450788, -1.5117386957109828, -0.04157442465329436, -0.06108848546462517, -0.17898568315803898, + 0.05175596147836001, 0.09336101724968834, -0.11206389991198601, 0.09025361188519396, 0.06256686420436211, -0.041705505897987764, -0.02540033759614896, -0.11258439321112858, -0.13193196379045738, 0.1383512834289265, 0.10783293396297793, -0.04903573809537109, -0.03789568471377209, 0.09451076679294328, -0.10641937669561231, 0.12937612794617284, -0.15270449725796575, -0.0796626016609192, 0.01330161683648494, -0.04199210878479924, -0.0023603641864854475, 0.028145806400471488, -0.0051428280473392145, -0.03352493693588714, 0.10764565772898858, -0.059558076706389955, 0.01072381714838344, 0.017042068054230464, 0.07643256380228448, 0.10567778515496928, 0.08370629132128268, -0.02550330753635443, 0.028958529163954118, 0.043004392748134425, 0.0065289873643830645, 0.12474216611368875, 0.06091634800212694, 0.040075762610628375, 0.12497420585739148, 0.04778153402884136, -0.04727009283651687, -0.010946202218060502, -0.04556296997828403, 0.12593677361330616, -0.005737675294135118, 0.08563162504460628, -0.10466125414720567, 0.09307619859210621, 0.05266770517662177, -0.04820315646057509, 0.006992769021709661, -0.04169015594636812, -0.08540979390273554, -0.10093941651847409, 0.03206534780088831, -0.010128257165957012, 0.027343579216011146, 0.06593227748171232, -0.025976307635303297, 0.02235774848406257, -0.1154088529330671, 0.10753575565171528, -0.09144214864508485, 0.10612916794152466, 0.0011103734979565232, -0.03613613470094445, -0.14199247284646396, -0.22500598362796195, 0.34682063103153904, 0.025092993315431834, 0.11470950616183012, 0.09622433470681022, 0.0907335736448899, -0.010825810657791745, -0.023080283400258108, -0.013282604359180649, 0.05603547954705892, -0.12473156450474866, 0.11505774130001693, 0.013272264672986138, -0.10383042917091999, 0.06109869669936914, -0.10917209146464524, 0.5334256147586004, 0.05437180092424345, -0.10800744098221164, -0.026197177793164467, -0.015143221374473076, -0.015874893613148058, -0.05507578256604305, -0.004117106380844362, 0.40185402332030773, 0.03130527794435267, 0.019796476780925047, 0.016241318977375626, 0.019047555788966344, 1.1158924345153198E-05, 0.05065565819113019, -0.02560075374297491, -0.020108726811827345, -0.02345503307179764, -0.039811342027591, 0.18276950340549847, 0.055130530778501614, -0.033076578540235, -0.0046307404565952975, 0.005204799027527872, 0.018577623839145754, 0.19716699544267563, -0.037659495961126395, 0.06199267026032726, 0.013853139477710025, 0.009137647834653213, 0.0024725761566379637, -0.02906558491174683, 0.04174150814847704, 0.19088809897564174, -0.016268621883656652, -0.015482213320032412, -0.02047237392379459, -0.036865607405446046, 0.04716656226625712, 0.007162845437008928, -0.0014045503967874268, 0.0027992423379216546, 0.010024638263370078, 0.027046021149099007, -1.5317060885854334, -0.1869075405904433, 0.31147122796505733, + -0.05375139016288002, -0.09590057881422315, 0.11252483243495337, -0.08632323781580747, -0.053856304133958054, 0.026615683493398396, 0.04165974595371268, 0.12476682724038747, 0.13831040713280895, -0.12947177874681348, -0.09089580786352587, 0.017766950174895293, 0.07081843119791677, -0.12311618841626468, 0.10795767811419724, -0.1308841967862834, 0.12561645652600503, 0.03815499089131312, 0.028367420531511336, 0.06765567929231701, 0.041671088429852045, -0.0102803163462627, -0.0522201618854349, -0.08220227251960369, 0.05760552149215255, -0.06484362759207137, -0.05682125431480675, 0.03697070275866491, -0.0012653853260548636, -0.06191757988447908, 0.023116170907098832, -0.144837918044721, -0.11342897341433687, 0.02013572261299351, -0.031870940560626886, -0.0003278664898046658, 0.041387764681811226, 0.09413905197849097, 0.05149785937891661, -0.04040449686803494, 0.03209462083126262, 0.14843204130967544, -0.05684638243241759, 0.047269352623980056, -0.04860866522929675, -0.09913295480230254, 0.125926486737127, -0.05417227379115681, -0.026483887612136017, -0.01538647409485096, 0.04259636035058501, 0.07368257588963781, 0.12131505387381962, 0.05261791341665351, 0.0014530341193185292, -0.09170783114502709, 0.08592528878170919, 0.03215885375578306, 0.05079032669891191, -0.03657737121363282, -0.0009649686666858661, 0.007716452019794876, -0.06637254445828467, 0.03505354483724053, 0.03221275806986341, -0.04635180062839059, -0.12847688222006995, -0.2661213325525717, 0.37167472754447806, 0.01796000553498371, -0.02811308700983419, -0.04680322938439364, 0.0004465046771778132, -0.008157241798119129, -0.04215714497137183, -0.012627590102349026, 0.07032093359942052, 0.04565604263841791, -0.0678017476057364, 0.02261152304791274, -0.09856814062991759, 0.0702144864064044, 0.0044002062603623136, -0.029902462459295672, 0.46206456203789814, -0.02703743067199893, -0.018388975571256252, -0.01717793338656082, -0.021203502026862282, -0.039776565942697316, 0.3953697708238072, 0.007525630879767712, 0.007809412263013793, 0.007787085552424784, 0.009124936212737175, 0.014457609345341023, 0.07548680541022769, -0.038504748471659495, -0.014604166862760781, -0.010805073943326408, -0.01036093564751879, -0.012221587250874091, -0.019034468041139885, 0.1504412831140194, 0.00936245281470667, 0.003228732576963194, 0.0011862782178917956, -0.001091123076269969, -0.0113690830032632, 0.3112518786614108, -0.022833076698282148, -0.00801794987202097, -0.004328927896205797, -0.0029598535660989387, -0.001621004985550234, 0.15609720120427045, -0.0074857823611430355, -0.006205906667169664, -0.006586509204540396, -0.008198527027390629, -0.012350434966469523, -0.03326370455841995, 0.06135787820085971, 0.013698007818187686, 0.009045766887003889, 0.00876195855371812, 0.011028820032790342, 0.018822686249770293, -1.3182691576800587, 0.05666262628619023, + -0.10983996157560423, -0.018399723259279077, -0.10613117943904188, 0.027168298582958914, -0.1112626194473992, 0.07277253272638574, 0.08719344429305988, 0.07823864255646022, -0.12569343443210743, 0.07069901733836033, -0.11123862552104753, 0.07248562940980473, 0.11819569565528286, -0.08715112173623464, -0.1230000205219931, 0.12280472527603149, 0.09367836451872921, 0.09650358931377112, 0.039392106906592284, 0.15940874111619796, 0.004157956664686864, 0.01567956414392691, 0.09769455668497434, 0.018070316468207077, -0.01803595267041246, -0.05081402027368636, -0.014770201307318608, -0.07951491699770656, -0.00784157614473517, -0.11755766707971012, -0.004526753805049525, -0.1004475012865206, 0.001091840056144266, -0.10522814107826053, -0.02032650671058751, -0.13562229141987947, 0.05443192757589326, 0.16115542653328463, -0.029975879290916028, -0.008630386468306009, -0.11578046213316129, -0.09016392430667038, 0.13190825363577882, 0.01190184675504141, -0.08155194247108953, -0.009221731479800691, -0.09715689237301416, 0.022665188841840676, -0.12462660867282609, 0.011055652345694599, 0.05750496679070059, 0.006079769780381359, -0.07639169225824391, -0.012164849070978057, -0.10806971033403527, 0.01840918658510816, 0.04875548196658826, -0.017957585334701123, -0.04867131500267334, 0.013340955385328783, 0.07635132445734726, -0.01780851064054435, -0.13090784491204446, 0.0083029020336774, -0.06678565956308866, -0.04316091900740769, 0.24386634752792666, 0.10257667884842604, 0.20500969321956802, 0.05332234889700436, -0.06768101831714114, -0.07138526711373192, 0.021701343096152213, 0.11790816032823544, -0.04509926031301581, 0.17097293717979972, -0.12245730091351979, -0.06809760941108861, -0.052392382049699655, -0.084230227247853, 0.011345831778203593, 0.1396832445718052, 0.1371122299106818, 0.05165647366660181, -0.1857946466488086, -0.4962180203012219, 0.022788782078844, 0.0272192823912965, 0.043397575062609016, -0.3868948729953199, -0.03235829357526864, -0.05241771077250235, 0.009825364778499577, -0.0009643328540431262, -0.008976652368553328, -0.06558432166664828, 0.011123235597607549, -0.010080671354475474, 0.02744822394094657, 0.008641378963867505, 0.004070866063148104, -0.002913773434240055, 0.02155951264395302, 0.03099860465866126, -0.17117165973673704, -0.014040224983675041, 0.0020304835317686157, 0.024629698139572012, -0.1280794491624851, -0.045029410724810155, -0.22894843565231715, 0.03766436074864396, 0.018239413018754726, 0.007977001792437044, -0.16579944231630506, 0.018827677321722743, 0.015514326638995754, 0.0009086070303979399, 0.0019090691941734336, 0.0023453850613686517, 0.010717807948419755, -0.0026201425623345737, 0.014829674463240801, -0.06873734379896992, -0.020007675949140317, -0.011916061183612252, -0.0055184217904303695, -0.021022050160756, -0.02409906923268626, 1.429805246725013, + -0.06494217886865365, 0.1012910982216061, 0.1258098731145334, 0.08340867654407558, 0.01885139190862055, 0.0398218959761696, 0.13530308355613022, -0.07583203497192217, 0.05208918911996516, 0.03470576052526163, 0.052759548145077675, 0.1283835441148281, 0.12155541809734652, 0.0997000842962378, -0.0008131571906558045, -0.10545130395946864, -0.11001048324968253, 0.05115419616356108, -0.010950705833493607, 0.014968100628892778, -0.09228435413115733, -0.10251740301723758, -0.09057311887343333, 0.005933293726092175, 0.11402999105815256, -0.03786060031033623, 0.028103188318504453, 0.09044089387453975, 0.13078695640591986, -0.07213959641621884, 0.053899657488985606, -0.020936314545569355, 0.1163598496773439, 0.0775602731471955, -0.043161563386896515, -0.013937926666530268, -0.023440750815928724, -0.05504832432739558, -0.16214141217647743, 0.017421387022510816, -0.027427941034675118, 0.11450985796004318, 0.05937828102725133, 0.13515757626023012, 0.003517573532918382, 0.05849328046105069, 0.12224970333300222, 0.059679300741298257, -0.03441765400836552, -0.02168740091835184, 0.023028410403598498, -0.051416555055951274, 0.07888666925311644, -0.042758779247772584, -0.03001685241022145, 0.014904410326783251, 0.015521172280813272, -0.03312437357544327, 0.05880899060018941, 0.00509450409992245, 0.011846950144083586, -0.07764110530797277, -0.07448862593806811, -0.08004795781580017, -0.02373970910436929, 0.000564212799948351, -0.20508313859150337, 0.2607880184933677, 0.18392846828090106, -0.03792163036625639, -0.020948870004258713, 0.14426616761491462, -0.0765628479086347, 0.07553448693541558, 0.020995260221713163, -0.05903854090987208, -0.13820110064520902, -0.061660556714056784, -0.03526540307509919, -0.021639852692969325, 0.0008897886213775078, -0.16657143574566377, 0.18046329215913526, -0.04262419097121982, -0.07097581115960097, -0.0275559252420226, 0.4926128293670867, -0.04774291064256167, 0.3857956347139249, 0.02700275148159383, 0.014416460793112698, 0.01389206136845984, 0.045449299910147824, -0.009291022490058483, 0.05705073105597967, -0.01863387809323691, -0.005299882329656773, 0.002671865541701332, 0.017596326457111428, -0.019951524275269708, 0.005490296557677847, -0.012633906415269604, -0.007425961739109397, -0.01164332613015996, -0.029381281237665455, 0.16670822465235796, -0.011924507885058193, 0.1284641488842566, 0.031223538487982448, 0.02236544955339584, 0.029215756132568757, 0.22140235516105336, -0.04106116111569101, 0.15194300338098285, -0.027349889565212695, -0.017238206393322103, -0.01158605063644598, -0.010825995794312631, 0.0038715203675446556, -0.003820587487191676, 0.013773071125120918, 0.010216143247220335, 0.0056924012427849, -0.010473956249453867, 0.07120445959045979, 0.016083333890298437, 0.021178492037912652, 0.0092057543146614, 0.006670771928009609, 0.014827773129486403, + 0.03966314359393475, -0.07177139592108875, -0.11442897116161793, -0.12502804446386206, 0.09299209072345195, 0.12488765410585526, 0.030899342774270398, -0.0398483988515067, -0.009407848544694487, -0.074670202765054, 0.11622272182458712, 0.11621456118481402, 0.15513556947973683, 0.1313437476216316, 0.11280754603526118, 0.04166624641906023, 0.010635401416134855, -0.02730983531140177, 0.02275784070889534, -0.06230238916509051, 0.11606767359618449, 0.14722864959680804, 0.016277423359652314, 0.0853520738237414, -0.010783926083936695, 0.16552642813656981, -0.08849633510282756, -0.182734639527901, -0.1783227426097073, 0.07102518311037516, 0.01776209327334386, 0.10295348442871839, -0.0485838440585483, -0.08557678686659853, 0.15652234829636755, 0.15674411043633105, -0.03901886016606949, 0.12249960290149275, 0.11087703968081083, 0.026189347802976968, 0.003683815887357303, 0.12102153819435225, 0.3173782594517613, 0.25734236862692134, 0.06199710228633362, 0.010280429878365171, 0.06662782371082403, 0.08699552594079273, -0.10635686570987114, -0.23045460445671695, -0.08891394895629753, 0.08848870649376155, -0.03165485829930477, -0.010480589701639018, -0.1372777359235061, -0.14282497383198228, -0.17086636286846957, 0.1618317961628517, -0.06747399520690943, -0.1266061335365595, -0.18293820729337457, -0.03325744063782696, -0.06657806176464941, -0.0944074750035404, -0.07949109120419477, -0.1823378385481824, 0.030456116795262507, 0.06385627847447634, 0.05098256027011482, 0.08834658337944004, -0.22542262597311255, 0.33424637703238647, -0.25767292511826945, 0.06938900652305507, -0.0605260752825234, 0.02556525474071714, -0.15234047579569757, -0.1904301191340783, -0.24964096329451582, -0.21244834514744224, -0.16491185882842582, -0.0714590219061892, -0.2682523065943177, 0.18608046474070977, 0.11490938756987262, -0.1272712412887523, 0.12282656382106627, -0.6669536275878664, -0.031032267325160196, -0.012929282052886994, -0.007021697027232579, -0.00630564409128823, -0.012314408158894043, -0.07464964451504684, 0.025058644607807014, 0.01056729758073337, 0.0038332276413554564, -0.0017912988253978995, -0.008025959678843338, -0.02263653196134646, 0.020875957218585706, 0.004042000933988363, 0.0024026903574127633, 0.0048951387128862225, 0.012084532904294775, 0.034524509151692806, -0.21905440971517232, -0.037152037492046035, -0.01866657110648655, -0.012465754204773027, -0.013274548463705314, -0.027206551470426638, -0.287580652662932, 0.03895679436492782, 0.023106923235040645, 0.015602270648298694, 0.009788976706054432, 0.005439482726949357, 0.009272374772009762, -0.014608141224628425, -0.013101179020244581, -0.012840817005046051, -0.010897612099011862, -0.006001003396161482, 0.007845439905077509, -0.06010264723748972, -0.01542990578807497, -0.00550211677369996, -0.0003321543715220088, 0.0007840742957737606, + 0.1078023547522178, -0.03797286631354782, 0.08227761748654334, 0.07511649557078919, 0.05482472233682854, 0.0802147133863599, -0.005165823993547337, 0.10635999287405369, -0.010740961828071823, 0.07018740984206387, -0.05654865165352017, 0.090905773199311, 0.11015789151255373, -0.07146763625519904, -0.1351336987555069, 0.027197197695766433, 0.13506481448542362, -0.045179480849895884, 0.03614359257349108, -0.04795690272995717, -0.0573859386980329, -0.08408982107763822, 0.1393370281838017, -0.09441184253698391, 0.12224342108163685, 0.06949221495939502, 0.015595436886802348, 0.22937963806902537, 0.038279808012191906, 0.12178334417754706, -0.08223275758574856, 0.08492633488812422, -0.19954260815383407, 0.06089104513203299, -0.062267122553592284, -0.055980362022072926, -0.22840839265059196, -0.04112375464444427, 0.13042964383989816, -0.1528907714630222, 0.13351835700392803, -0.18351575416201904, 0.014735930757286306, 0.15569555111189165, -0.09916924554701638, 0.0750804319739903, -0.0947470331574262, -0.041258272402770045, -0.008384160881458422, -0.05394846829824758, -0.08709151991192265, -0.12793422473686505, -0.017419973311061984, -0.02092432430122579, 0.12094211518848993, -0.10561834491220995, -0.11252098236616069, -0.031189387568321476, 0.0698876336843073, 0.05283599647773851, -0.12749252236695185, -0.12327447441308005, -0.03126512839175642, 0.10410434682094764, -0.003028547198969504, 0.12133813393908133, -0.056931108842846245, -0.03088246544866024, -0.09911864046202024, 0.17124760163089187, -0.03718764365159877, 0.16889607351778366, 0.05940793724896561, 0.3330055377994752, -0.0071705710296685165, 0.18814242855341382, -0.15776280216081312, -0.005112633881070637, 0.13223477185644292, -0.18021174440668558, -0.017367609370081086, -0.046322963429184606, 0.2257022065485591, -0.05174937757682351, -0.17883083216994897, 0.112059668702547, 0.11432171563211287, -0.12201293735072345, 0.31954617222312626, -0.0007513808924828821, -0.0026943639770260486, -0.000786914562200286, 0.03684841473466588, -0.022694486591320395, -0.019963276736745708, -0.004482102259997879, -0.0021927424804244824, 0.00066437498138254, -0.0011423420343572126, 0.022782633356483183, 0.02954571276491158, -0.01167503462384929, 0.0030506447389740746, 0.004130518987365918, 0.0043694346109345635, -0.028773408089940417, -0.026403488033483868, 0.12202281514998083, 0.009739396830291416, -0.00026686529743791265, -0.003730627330077202, -0.005857534666923417, 0.005407011315150631, 0.13429966334744284, -0.02966975798341975, -0.015275786841951702, -0.008246673292498723, -0.007563248243110089, 0.010972468802119089, 0.014414253406362078, 0.014447825100380389, 0.01737603270168271, 0.019977748064789955, 0.0341717902432237, -0.06089462730583002, -0.04761385176613493, 0.0724622832354458, 0.0052368365407146, -0.00910271883368196, -0.025675137538650195, + 0.07682857810734224, 0.11311533925794157, -0.08208253264157567, -0.005234330560900851, -0.07141931439983525, 0.1113774352340295, -0.09506607829497436, -0.02525670085007993, 0.040478698543592116, -0.10962600671531805, -0.06556467854887774, 0.031269314354786484, 0.03716816216965384, -0.1215632203583579, 0.12495683410932419, -0.022221087009726904, 0.0001590801793480261, -0.10747749490113481, 0.1289863534821777, 0.034398106520365276, -0.08078830540791347, 0.09667550720731641, -0.10514694835623412, -0.13567584757958578, 0.09179689915537739, 0.048198832048106315, 0.18356143987988915, -0.21501942485788034, 0.14876571769232474, -0.04679954821475061, -0.13068201896033657, 0.16969229075016865, 0.09197473745922281, -0.14423965734426653, -0.018278523885450624, -0.0863053521260197, -0.0982454835974322, 0.0013386158628025235, 0.13391776328185484, 0.20242466701638492, -0.2280751151671913, 0.002650246032667696, -0.12599882885861305, 0.06332334388788269, -0.11667674152985313, -0.12744657924804303, 0.05930833114032541, 0.04262540152071871, 0.0392107449449798, -0.058652934790723275, 0.09298338029007777, 0.013722066403948371, 0.0015841775612025746, -0.02985930505104147, -0.01499367328480398, 0.04769804968121487, -0.023023628030637597, -0.06610957965827934, -0.08268517360991683, -0.12469796682582628, 0.04659615638477744, -0.08039533369560785, 0.07395273462391959, 0.0036350492480643126, 0.11519737052422317, -0.06935088464830019, 0.1223281197153006, 0.006521312339559695, -0.048120603140098625, 0.149387863185619, -0.03522992345835908, 0.0013982057422548147, -0.17620165391755785, -0.04253160477170885, -0.12321565777125376, 0.19866213047979767, 0.12193213485114701, 0.17463944554950178, -0.29612244621222783, 0.09745521493761572, -0.02818993197015331, -0.025834921078810698, 0.02369315642263914, -0.04290401628173431, -0.08280161597660526, 0.07182792375171605, -0.023209637037647703, -0.16018094954114018, -0.051793738470648824, -0.31505172542269033, 0.005105998224372486, -0.0315380560240802, 0.0279737051585605, 0.020274949668735096, 0.01637680752074032, 0.017559144425213856, 0.002118150718587744, 0.004220202159022565, -0.01982466483701447, -0.0189378864520708, -0.02287547525536772, -0.03444675661946114, 0.0063333192884260005, -0.010109493891466788, 0.018905360640243354, 0.006997773294990685, 0.013178365993816443, 0.028906237785755306, -0.11490475811988185, -2.3551187884288116E-05, 0.012847462048028738, 0.01181106802119445, 0.009206708412238293, -0.0009802859664297323, -0.1304796620770834, 0.03163277507630481, 0.018816763877802747, -0.0050330226255640535, -0.011998614136960906, -0.019398753849769967, -0.026593588275874318, -0.029538164023721426, -0.04797795726396249, 0.042722626527108586, 0.01284032500350395, 0.019834635680918113, 0.04688721722928755, -0.06184932043290735, 0.021342564483785173, -0.2636362302932757, + -0.024781038936282834, -0.04923126320775843, 0.07113078646593302, -0.07984687503160257, -0.09261529366130257, 0.1312020815226269, -0.12284267220067342, -0.09079054692014264, -0.10026530020685852, 0.05281584484468038, 0.06199169620512143, -0.04517532559914516, -0.004336281408928953, 0.052693463792574106, -0.026370948261972654, 0.09766722546937412, -0.08193390810806775, -0.11623233399676272, 0.13337346023594832, 0.09284126693765617, 0.13836601808972573, -0.10839041206348815, 0.006621978576139286, -0.015110320265782394, 0.01899553284250169, -0.07695218023553566, -0.1796955837388384, 0.16357153719324494, -0.210180676212092, -0.16134397318105387, -0.1627593307022051, 0.21121375565763467, 0.03230251918128594, -0.004620968500714476, 0.05367530693357353, -0.08652994016522352, 0.0707397060634601, 0.05577220905335379, -0.1022545598277025, -0.08922416005230895, 0.1030540550070759, 0.23014406737285972, -0.22351341647894785, 0.10306895600422283, 0.012974663584453398, 0.04057968521286862, 0.009217896587261238, 0.04668364648776421, 0.09280361012582558, -0.1320945169783344, 0.1330176852720862, 0.019940398991149626, 0.11499860511413315, 0.028547395694558025, -0.03546790784054493, 0.09069948665214106, -0.04611309317528232, 0.057365603567980636, -0.07127082637290637, -0.16339400454301098, -0.041020977809843547, -0.023339692913679003, 0.1509045267028799, -0.15959535731061322, -0.169717707974814, 0.13817579023368004, 0.07787497562453999, -0.02180063369658729, -0.0018221028327945828, 0.0873447400225142, -0.03939627369039471, -0.06861438337706628, -0.1082804810307616, -0.1942173053346498, -0.13526434533053364, 0.025746013600849178, 0.16086151875359522, -0.024870678316933875, 0.20357121029307051, -0.05485436644401135, -0.0900794707000872, 0.051797006261493236, -0.08695143345812684, 0.14082024488363176, -0.10715119845340218, -0.03490919027427678, -0.1107989392892031, -0.13077381544475558, -0.16657436514276364, -0.048425479418421936, -0.33167505890359916, 0.030269735697010254, 0.024178851786580306, 0.021140681667283234, 0.017457392111424108, 0.013601518993174994, 0.01866210896049939, -0.016141332397742653, -0.015310783496210234, -0.019472876275377915, -0.02333993925488096, -0.027100338235485508, -0.03938277649472706, 0.027708998432785608, 0.001385115905238099, 0.003620922833840315, 0.009550558858578296, 0.018029371288475714, 0.03504398534643781, -0.09719248701098548, 0.007872011176852885, 0.01561857460591563, 0.015472897192109744, 0.010566653037660828, -0.0003873767947996237, -0.11995619564691708, 0.017791059912969212, -0.0006729482162252166, -0.013089244188806701, -0.0234140506031415, -0.0333035466562929, -0.054949811016153, 0.03060179734090851, -0.0008117014643889697, 0.0025618586434328385, 0.012403733295040714, 0.028570561458632036, 0.06890055441196939, -0.3174164239773783, -0.020324622416029545, + -0.10360708306550577, -0.07437930487838158, -0.05716456035247046, 0.11051336392704776, 0.004107456850556974, 0.11819727002693439, -0.08452265043378918, 0.04490452921408803, 0.09094916552132469, -0.030737031325849203, 0.0933018977313693, -0.08769884854781373, -0.010553309910095409, 0.10114451880840537, 0.003412462979733619, -0.0852587766830559, 0.07323320716930865, -0.04363121568585091, 0.0904228523634504, 0.00884356968335524, -0.07960897840207895, 0.07846177002049007, 0.07404262751739858, 0.11482367764069126, -0.014017674319336116, -0.14651417663667377, -0.07735154950165034, -0.1788571101903526, 0.12290961192537239, 0.01075908983967833, -0.17884759202372, 0.07797762719829188, -0.09802771819956803, 0.09010000440368994, -0.08739104834973256, 0.1805965713473836, 0.1213932244867457, -0.03417457799467515, -0.22421515373581158, -0.08722714854286939, -0.1061649195781521, -0.161987968217467, -0.05532346620606499, 0.13185034783691316, 0.04028837802751297, 0.0861495064162924, 0.024688770401409793, -0.12276933965683454, -0.05749165787465724, -0.09167208044819584, 0.07467117114309511, 0.026134433891310777, -0.04672813159874374, -0.07299326848663325, -0.06524253211190924, 0.0959458327740869, -0.10425401871280895, 0.13225909075837536, 0.026863006805778123, -0.04420300221715917, -0.18052716778646116, 0.05584733551353899, 0.07811276253289981, -0.0747391146469374, 0.060131695462263456, -0.06370462621659967, -0.12209142928148128, -0.029336496305327767, -0.17355014012106387, -0.172632180284567, -0.09780539154518983, 0.08758675863038914, 0.21946923088244497, -0.06112811289094103, -0.20679000908774442, -0.03000225109851748, -0.0842612811748011, 0.1627455227513833, -0.009245413857246042, -0.11792906443690701, 0.010172986155735373, 0.016796000197683087, -0.07766534093185228, -0.07572146170118375, 0.14248545110215888, -0.10277515011931067, -0.13893376543247227, 0.010269497508792235, 0.11573722176059052, 0.14442492263535228, 0.02884066253933344, -0.30037137243580675, 0.026253290319343543, 0.02415833056980969, 0.020772057594990324, 0.020598884474941924, -0.003720123124754046, -0.0025430776459898358, -0.01754897288749576, -0.02227775164946856, -0.026769029507569014, -0.03146185815118816, -0.00995424488418424, -0.02790909068875453, 0.012732725380079801, 0.004240683732921321, 0.009378572603329052, 0.017133380431000364, 0.04906556807335773, 0.03936076754023506, -0.10435775741201146, 0.013342157370743159, 0.019493925708188767, 0.01867299259035649, 0.030858051120680588, -0.027496798503111625, -0.15360030677204412, 0.010986834714963516, -0.013733940412355695, -0.03061756160525131, -0.05837632942069348, 0.026800030479535584, -0.003263175396260018, -0.013111581787194364, -0.0019141749561707062, 0.012347584672308922, 0.037640010491927174, -0.24133947079065204, 0.0025210679622918453, -0.04564045192858518, + -0.08717725283284648, 0.10177634150134333, 0.06261614998228174, -0.037648477918815364, 0.12508273146326088, 0.07405816577012171, 0.0004007441596039472, 0.10063493103494721, -0.09793047950726427, -0.05452032707397053, -0.06965327018719214, -0.07161198940770207, -0.08018223799307854, 0.025770527155212674, 0.07406728531972599, 0.13119822352992258, 0.05651784576990805, 0.09325054749646748, 0.11609317374212179, -0.0838549954031452, -0.014504706435084886, -0.11888893787627126, -0.15991982422979958, 0.1137230827164339, 0.022820705961904733, -0.12747610602847537, 0.1827227402030315, 0.13063423065386348, -0.07219621609726166, 0.19970926010600698, -0.16918371528984308, -0.09124731828819685, -0.09861730435052916, -0.1798283190341772, 0.12171317638095049, -0.06354615490313714, 0.11269538655288372, -0.08275697097796263, 0.02164091760575997, 0.22245499143132355, 0.09625150715347414, -0.0037409466873680264, 0.07328483879338345, 0.12444581632990397, 0.06747942748054399, -0.08078106728857587, -0.0064447906885233205, 0.07341428711153192, -0.12049425348289172, -0.08157511325176962, 0.048104887165476035, -0.048610497256081873, 0.06473526583927476, 0.0010957639313810173, 0.0721534604252828, -0.060065062893873034, 0.040519739488744495, 0.11340099650889093, -0.04418011261239653, -0.13479598872288842, -0.060479787956430046, 0.11870434608038861, 0.12992762006275724, 0.05359130762729795, 0.10269062365726675, 0.10957323335073957, 0.051156095337004846, -0.07097949044535053, 0.1074964149114523, -0.17905394493066046, 0.0834532172971688, -0.06639187904335768, -0.08989284031328801, 0.12940779051064027, -0.12138549730534466, -0.04741065769911427, -0.0007235244982928224, -0.052649773798391725, -0.035205544776772235, 0.02529949539238457, 0.095169752119892, 0.11106238089217652, -0.15307993175939844, 0.08967451955253398, -0.12661658259816858, 0.23810067286830422, 0.04530554683211115, -0.12002956426210781, 0.24123105417469448, -0.20418061941640264, 0.07887820306019186, 0.18385406248723601, 0.2992893518867917, -0.02788713118090625, -0.02897163607788425, -0.004671441579066862, -0.0011736277453224322, 0.006665385148148548, 0.01092670049905062, 0.02669314141191592, 0.03261666128758083, 0.012102822601353395, 0.023752276218295745, 0.022287871716084276, 0.02506222998211572, -0.018883773564713685, -0.012734560496640384, -0.04220227361400561, -0.02465704057778334, -0.03269303265810478, -0.046142966821682285, 0.09941795376700907, -0.017992151156674324, -0.0408577051870012, 0.008623179136459738, 0.0140520653415879, 0.03214472021218706, 0.16737013980544202, 0.0077517579597578545, 0.0509714666348528, -0.026664218304214768, 0.01202265839987248, 0.014063195247183594, 0.004407518181685763, 0.0030877995586811313, -0.02453348294575173, 0.25593319073792753, 0.02138194489423778, -0.0004705155716256265, -0.023579696801634034, + 0.009402941615832232, -0.018204499383672704, -0.032119573374554136, -0.04104730574712944, 0.04222955182898972, 0.0666512925288684, 0.054466960330464234, -0.07290762989998974, 0.07901433330892077, 0.10644694902503696, -0.061250233191555606, -0.11609597755228561, -0.09438708038250454, -0.1122729385864407, -0.13421772763739115, -0.14349313111100412, -0.12430388289313535, 0.1231867306518699, 0.17227974950835176, -0.11160315930424017, 0.10566595118736694, 0.13325898526168029, 0.10662619157746413, -0.02328543541935148, 0.0019445024347530132, 0.003324303738699041, -0.006743028371820418, -0.02573407256887006, -0.07607566220355386, 0.1323715256992167, -0.1394548323534277, -0.129576549665652, 0.17885440964300622, 0.17537286117643278, -0.0909240090015868, -0.052188401154977755, 0.13105426670296288, -0.10293384650561237, 0.07578207275259675, -0.10934969862733292, -0.06906231410021581, 0.13868529775696717, 0.14574238345736004, 0.11080340271270886, 0.056656757488071335, -0.04062662233893729, -0.0339935626190346, -0.021642474714476438, -0.03488784055812022, -0.04274083355409835, -0.08291026572565104, 0.04992606655354619, -0.06123225169227503, 0.07573316807435426, 0.00585221334014975, 0.04432726375220287, -0.02848333794754945, -0.08058387579797507, 0.04047709861799838, 0.12647121325094357, 0.11583943352991571, 0.07009926808865383, 0.12305764778314619, 0.12977112738960028, -0.17034320269988926, -0.16872617064810008, 0.06058669136099485, 0.06553123796075393, 0.040622669842538164, 0.01084249749626528, 0.039932335920512145, 0.10486527166726183, -0.05752818807271781, 0.046667584723006764, 0.024969453904694267, -0.05592912058013042, -0.00623691009277673, -0.02000354594721935, 0.16717710291037163, 0.25583169060116207, 0.08494478925350622, 0.2154847605995908, 0.2959849715586284, 0.09903476856916447, 0.14636964546562833, -0.13397559633833522, 0.16055476181301195, -0.2338722604911706, -0.026828342668677743, -0.0264487193620352, -0.06230702775709202, -0.004402629798714239, -0.16391733151829724, 0.2967478710214797, -0.012131673391176767, -0.009730186043634688, -0.0017342834580040822, 0.007319806677387162, 0.016072354113274887, 0.021684150805329483, 0.01241717005596149, 0.025305192680073838, 0.024820244595377218, 0.02131567212209355, 0.016374742195647496, 0.01658485620210706, -0.05225856659841806, -0.0207397765953575, -0.026372832340447502, -0.03204192324813469, -0.037844756045640804, -0.05069738651551897, 0.07854704551370065, 0.009077886661481252, 0.004025232535791068, 0.01356650629737573, 0.028805454384405037, 0.05225403356547889, 0.20645506454882567, -0.04954609752656679, 0.004714126968925494, 0.014293272274318737, 0.013373536069039606, 0.0041473160526686315, -0.022203961911415306, 0.2735049402599419, 0.036137782852858784, 0.015245518284578097, 0.0003141851915490247, -0.013121949930483129, + 0.09733811490680178, -0.0857753462907349, -0.003526863384572541, 0.09039811300897012, -0.09586735963900198, 0.01928360087619738, 0.10561815337017573, -0.06473019907589667, -0.044546253340062576, -0.11455330949517385, 0.03705802569758237, -0.03674115216092781, -0.13778047650522407, -0.03074256198798933, 0.1269287589930081, 0.1216941427868241, 0.005129596567897645, 0.11366276232995386, 0.13962022060104134, -0.016947902041586655, -0.13145579557331422, -0.09520752198215755, 0.1290643779222988, -0.13889065054902353, -0.03470575164483235, 0.10009113448995843, -0.11004439733438572, 0.025211872700913036, 0.14146846089847467, -0.11698410839571768, -0.06533365635828504, -0.19670962064734637, 0.15536197705505844, 0.07523079525861384, 0.1275523622086417, 0.20354983006289226, -0.054068745629649216, -0.066660329428489, 0.11186532597095984, -0.06312441830694726, 0.10565209341978356, -0.18528718149163334, 0.0462435804334656, 0.1311335678379071, -0.09120885998652704, 0.07864719728327188, -0.03564457313885984, -0.05422411595193162, 0.1016760095726895, -0.026835997897454132, -0.10456368552496464, 0.1050304446245816, -0.03474750525114988, -0.14549475954081825, -0.0964631659565893, 0.0541699158939407, 0.07726159440966739, 0.02127597910262497, -0.08756939444373758, -0.10100944548341542, -0.07873131418746006, 0.1428482393859222, 0.10170060848548472, 0.038784353120580393, 0.07091009365943732, 0.0635123780961761, -0.07233070232066842, 0.069176582987219, 0.006349916216022587, 0.14319265690430402, -0.131493209980499, 0.025386713132276174, 0.06700744746713075, -0.019803251376446868, 0.07348057187978829, -0.13713281325970333, 0.10830599684775344, -0.09898880795344331, -0.17773524393443668, -0.0657228078067942, 0.1504062682490543, 0.16981003047250015, -0.12805149585844303, -0.1807577223397865, -0.09330959634747049, -0.1845842861163482, 0.20757705677897018, -0.11692089014220793, 0.14906637409394868, 0.2684675318267334, 0.15919887019448786, -0.18014901817842308, 0.08324114452403972, 0.1033648173516344, -0.3064056459223963, 0.008450317723589305, 0.0011195847856978148, -0.0071149331408886345, -0.016783308561407057, -0.0008610418422774491, -0.013559005547630176, -0.02316025271680134, -0.021086039908899477, -0.0174148844652907, -0.011810415972922435, 0.017459497631213697, -0.010851244013031107, 0.03457755334709388, 0.0261052478035948, 0.029176944795674557, 0.03390558618064693, 0.05347966154641151, 0.027008796686014334, -0.11874373529746884, -0.013446321183201888, -0.017615184309489003, -0.031419811164932365, -0.06448043524728654, 0.015277503305443488, -0.15807693449671995, 0.008775944198012064, -0.005248796362937444, -0.0036777413467445064, 0.012994492742538067, -0.26706026962870943, -0.02320075295793403, -0.03205740763225703, -0.013998723124735355, -0.002492537297690632, 0.005802482077290588, + 0.09578107425017365, 0.09838875618561939, 0.00331264834445951, -0.10286027576288079, -0.08209135195107363, -0.011606244735634083, 0.0921771450340923, 0.10214025462580818, -0.004193900621714899, 0.1037700222381075, 0.09607169101115033, -0.03410122462027947, -0.0940002241712339, 0.15284898877278275, 0.02128578558469812, -0.08869059288528945, 0.0531795680017759, 0.04174821477805605, 0.06736550787349939, 0.09418087698726506, 0.015626449412625705, 0.07041391137927842, -0.16965595173779946, -0.11525229282526865, -0.029792855928312476, 0.15334484193218081, 0.11641181059869969, 0.003663262538334198, -0.1332184081588884, -0.07709201599238352, 0.07317668657868921, -0.17680723925851446, 0.0035748148644158245, -0.04690605364777236, -0.20658741564787622, 0.13136043107952738, -0.1680139300967916, -0.18480515094488037, -0.03338794487978426, -0.055070854604741176, -0.1277514457520721, -0.17137070315367425, -0.11171372095872113, 0.03579202071126132, -0.09818729294132067, -0.05764330128521873, -0.042091231675238545, 0.07515305141333298, 0.04370833932861945, 0.08071454505676616, -0.13530812113546611, -0.061213577421647465, 0.009502524194128692, 0.1376928204322943, -0.0648622834726405, -0.013646598431522576, 0.0980473573226209, 0.1266238285238784, -0.014070332162392934, 0.1415655686123674, 0.0018644027256481564, -0.004953292899175454, 0.1392469153067966, -0.0918955235701284, 0.0244427065009682, -0.12748389546130698, 0.1093276268935966, -0.0051459545821973965, -0.13042823488563796, 0.18018098938661414, 0.2066625026228863, -0.03860579346097904, -0.15267009976948465, -0.011308336296715963, -0.03918652609127066, 0.016631032646753776, -0.12965355080288193, -0.012930280801971103, -0.044273805331212716, -0.09902926525495077, 0.13326312644481553, 0.01647974117446421, -0.29207489160849504, -0.21315117299776093, 0.14780610590734217, -0.03873583151542355, 0.0168872428275069, -0.1678940329264474, 0.03025929349140591, -0.13100401043439303, -0.12010599870641811, 0.21900113100100574, 0.2699178952613736, -0.043893968699860675, 0.1042731388489474, 0.3108926375078, 0.0004634491718005177, 0.007895419335294907, -0.008715108720303268, 0.00782638035137205, 0.010860582344828068, 0.008089713764434892, 0.014454918344151767, 0.010501597691603453, -0.01686246124476034, 0.005686044747924571, 0.0017522741408882714, 0.006525195459800848, -0.035653952516468516, -0.026154934409379646, -0.04250665833165345, -0.007742201310470074, -0.015256594658961814, -0.024161658765033053, 0.13011835693862794, 0.030181779199840972, 0.05118514228225496, -0.03811204066561108, 0.009448028453595478, 0.024641365614991334, 0.15628627942021367, -0.01963889009996751, -0.02129161175267299, 0.26278044176665427, 0.02915317581755167, 0.016166032591441157, -0.0005330856507272438, 0.018353262630666136, 0.007725539294311126, 0.030176126759599804, + 0.006163355644990877, 0.012540315483708297, -0.018905557200569603, 0.02263902306416079, 0.028380532723264934, -0.04345257251149123, 0.0462183069863241, 0.04445098779824592, 0.05594653094624795, -0.049968251836848124, -0.06410338179932555, 0.07599484949282702, -0.06242318606157833, 0.06285038301046814, -0.06770043428755092, 0.081708466752914, -0.08439183245117676, -0.1011048199859882, 0.09426730121150052, 0.06953966259878071, 0.13539412492543748, -0.10031344042273276, 0.05293015386095053, 0.03332187662945017, -0.07938748497514282, 0.08330498338112673, 0.023599465604614806, -0.040253124123151386, 0.0590644636246862, 0.08178705998737551, 0.09811608127960267, -0.15189412559456927, -0.08536645966363188, 0.1933879133309209, 0.2011378596883174, -0.16955420823246772, -0.13821378515376206, -0.13445265291748956, -0.09477484102700115, -0.09609511511857007, 0.09558055556972551, 0.16428642025259999, -0.31130389379635565, 0.09540065158129232, -0.03724177808699317, -0.010603678283446235, 0.050701325995656715, 0.002219511168363175, 0.017610717098530505, 0.07635820697382371, -0.09101820966462161, -0.07271353049126297, -0.14099247736342765, -0.0035250970569070815, 0.09974855199124973, -0.05617388907174101, 0.048184204675614836, 0.053227174114329284, 0.04375418641140401, -0.07700005796347276, 0.030212338375011274, -0.05769052621608565, 0.1639984943564824, -0.07650004990433427, -0.1738817642548676, 0.07284822242683191, 0.10774442009806458, -0.15970604015944623, -0.03482755772066899, 0.014131804045540774, -0.0006949254545877805, 0.05954155270022677, 0.06262402286849754, 0.16291004098530082, 0.1391356080205269, -0.0726568796536136, -0.1262296304866248, 0.03238442731822131, 0.03291809713955748, 0.014695312954384277, -0.0645771911515887, 0.02710586971446005, -0.14094567976969816, 0.13719593046431644, -0.2081995740237639, -0.06932719737910256, 0.11048711393549981, -0.160319984313372, -0.0852090265322059, -0.1781050146370467, 0.07922634912919453, -0.29699758568623014, -0.233568714388139, -0.08059469296067788, 0.1022146527294842, 0.1950541360095162, -0.31536936942366045, 0.015477430934069059, 0.001038977680653194, -0.0010294890292539306, -0.0018166594907623804, -0.00155848418892994, 0.003177948491060026, 0.02009339013882676, -0.004627820795248261, -0.002405063875304557, -0.0011338265265488472, -0.000978453308731031, -0.007782177526498624, 0.04711761245702706, -0.001715904080986111, 0.003228880478953526, 0.003998468775726793, 0.004848663651981645, 0.011243687165201563, -0.16024551525977887, 0.040711877688159925, 0.003631323350074822, -0.0017309759517069104, -0.004560517910068326, -0.009230840016040583, -0.12839112037152683, -0.2366216328633323, -0.013217113860635782, -0.007026732938554537, -0.004544211978700503, -0.001979433736819358, 0.007437687736050386, -0.045125977079207555, 0.007260090235248554, + -0.08912092371642567, -0.10826915515868324, 0.033755732038147856, 0.07311762493475159, 0.10229072251082912, -0.06526889670591217, -0.02435167326838479, -0.11224481744913307, -0.08009863403363592, -0.0033685824150859797, -0.10561656498198947, 0.14527929450054197, -0.03225937808275682, -0.10600096821274711, 0.09816210285894744, -0.05835104653107691, -0.03166370377070516, -0.1660741690432436, 0.11503535989565697, -0.051330055475587597, -0.13612928332098528, 0.11250809872347163, 0.12809085641957052, 0.14984476835340613, -0.11483751375535237, -0.06661097085535052, -0.162390397361291, 0.09125979904503796, 0.07970939761993434, 0.1674337283931227, 0.10734008461401015, -0.04860555692656708, 0.13906020706265743, -0.1816024279979336, -0.06718489469420633, -0.00883197661918641, -0.08234072796885596, -0.11972195793755847, -0.04190619319205423, 0.09504963956801671, -0.08397184171416398, -0.04591697501043922, -0.10330855725694618, 0.06798496384038598, 0.002238913112383878, 0.056444400227235174, -0.007813542164878307, -0.07020280438491915, -0.11271411429232658, 0.10825594393540885, -0.0393201506704939, 0.1578416380699934, 0.06468733073957422, 0.08706497794301077, 0.10964407917648013, -0.1939739992111673, 0.08218371463072927, -0.07182904590589374, -0.07520768600940429, 0.10830489372780464, 0.05639294546455734, -0.18984865294030667, 0.2055826212123502, -0.04529303920504973, 0.1568051308508027, -0.1116918215113165, 0.06522364648757376, -0.17390493137242824, -0.009915488456866177, -0.17774653429621884, -0.221701102946951, -0.10710621129069411, -0.17374398696327578, 0.046284369769166174, 0.13678963570836858, 0.006250018678410367, 0.13910350644312933, -0.016099220648302482, -0.01073731010348156, 0.1163633827417581, -0.19797300777117838, 0.0573450454388498, 0.19059688483825035, -0.14362574864344946, 0.10946802064142976, -0.007912253651300558, -0.218548677939944, -0.1254973523113179, 0.21115962081596976, 0.21337901250259156, -0.3467644113755158, -0.05568931667314496, -0.16646726127737885, 0.047277232350492325, -0.24777333730098774, -0.12009395214206744, -0.1638448563131488, 0.3104150805274568, -0.005750210738694611, -0.007222802767466285, -0.008470195030253501, -0.009640123590845026, -0.03389108278920015, -0.01038212171197996, -0.0003546038508743868, 0.00011718561666740346, 0.0016898935113672116, 0.002383774487663963, -0.009731146926535449, 0.03418401313219839, -0.007254957431622924, 0.005494154009415584, 0.007311403852899703, 0.009166231419370341, 0.023200743865698578, -0.0756572128036851, 0.10427133976966411, -0.000511729905689276, -0.00870408672616109, -0.014024070878522435, -0.025519211945946512, 0.27661205083315216, 0.1779676655814123, -0.02260272710707812, -0.011639162623818203, -0.007277180086976284, -0.002288570410976923, 0.02856042998271678, -0.020575874273659932, 0.008959189752300032, + -0.10246783681515763, 0.06951981790358357, -0.03493022748588006, -0.10076942803709771, 0.04165299705314926, -0.07406332878870937, -0.10066646476259301, -0.0279182789325293, 0.10868141547453548, 0.08872115410435887, 0.08908241168488452, 0.07685997439188226, 0.041692881808836686, -0.0980147185223781, -0.13442422898725484, -0.004147493773611806, 0.16652882456292262, -0.030156625208871163, 0.05933333636301454, -0.08564348821554006, 0.02685329531883029, -0.04331987972862576, -0.15408270540856217, 0.09709086341813673, -0.08687446605143856, -0.2062718014404496, 0.007809845939611123, -0.15133322488198103, -0.1201803460610571, -0.04826573265722419, 0.13041573148223107, 0.07007285768139687, 0.07484072269829156, 0.11636934597809262, -0.03423292697878063, 0.03277108500772748, -0.10382075873802171, -0.055398262605886935, 0.13352102042597339, -0.016867380935630262, 0.1134445422077055, -0.09297992290781815, 0.05019098885653742, 0.05924425706866821, 0.06807091910033987, -0.015074661506267151, -0.0007252777796749923, 0.10994219752000764, -0.04064041065704857, 0.04055181943469801, 0.08901052012258397, 0.04530233898341686, -0.13383711205885088, 0.06808431003705406, -0.09983784005908297, -0.051853065230932596, -0.004348423647811245, -0.10682322170136518, 0.009510505150947125, 0.025726092552231395, -0.13359924745893784, 0.015617525191637806, 0.06292028628434486, 0.10678789457102886, 0.0695883876540452, 0.058170125128344165, 0.04851678298172201, -0.06178359915956776, 0.08270411630596183, -0.05932299029718199, 0.11101912031982797, 0.13584084443709732, -0.03099342120045677, 0.035478826349582604, 0.20532616866065334, 0.07236694270652874, 0.11999522562513924, 0.07574288631252055, 0.01962183926777363, -0.26951231974441064, -0.1000976023617268, 0.0845488374909962, 0.14326317527811624, 0.22252094147509477, 0.013864307511417963, 0.1415453283133069, -0.0036420582836893815, -0.2111298001811248, 0.186535459052569, -0.14328692533760126, 0.25995192182065796, 0.24364713462214815, 0.10630989282030764, 0.26846523041685, -0.0027459974161789832, -0.040384901321417206, 0.14706606923319626, 0.10806247693544649, 0.30738809112935206, -0.015160884794814783, -0.01857337501058278, -0.044030101630185975, -0.016014918486445918, -0.014290098217006941, -0.014955055160249097, -0.0010457700179183974, 0.001346444020443099, -0.009166553893703026, 0.029492775308747346, 0.02862603918033843, 0.038587158724623594, 0.0030969401627654915, 0.018553579662607744, 0.035349292502245, -0.056685541286212573, -0.028219693587720897, -0.03966924995232044, 0.10013361041671204, -0.0161309487371245, -0.03866069418500129, 0.2567858654356079, 0.01779653506114105, 0.015821751867835847, 0.155526203836906, -0.03679949123696811, -0.018357228055661312, 0.01959592264484201, -0.016577860597987448, -0.006330530971803104, -0.006834178668227185, + -0.021606293300674168, 0.04115082881076507, 0.07088316582536397, 0.08741528922169034, -0.08423215612419449, -0.1284790573044895, -0.09128306214041261, 0.11860569922726348, -0.11323711485912502, -0.13149819132674104, 0.044389862284989375, 0.10301444028109112, 0.03513946998985164, 0.03779535867223371, 0.030319296813483762, 0.024961079807806996, -0.04123388699690234, 0.022860357797015684, 0.06370294491004308, -0.08666496348296575, 0.10036171038751687, 0.07928502105466693, 0.0799976538571603, -0.09805653361358785, -0.12240384708862681, -0.09845606093998055, 0.1744679798654762, 0.20285043185462678, 0.14365786598923858, -0.1443161383919366, 0.13188933319805937, 0.11190884890646842, -0.11956637431788217, -0.10199922411482704, 0.06262781846493297, 0.028308632852406226, -0.031321097902703696, -0.04730557230209853, 0.017223540391763482, 0.005348676000509172, -0.1478329172530969, 0.154832663283663, 0.03230975084434718, 0.15790171044722529, 0.042565506498020655, -0.09133965801774817, -0.06655241158286648, -0.1002955263067591, 0.018521654747817803, 0.14412737393131236, -0.007803451790277707, -0.0969605524090321, 0.11163645419568763, -0.0540936987727105, -0.002122112052416046, -0.11772598254674349, -0.02882684992369216, 0.011456480925241505, 0.02610411298168931, -0.025831231365398843, 0.10609814093814966, 0.03896422056028164, 0.09386732846923265, 0.1292244287443769, -0.1936912101843514, -0.11119188493593357, 0.01108915981269795, 0.11609947817039183, 0.00288229258963265, -0.0811956434882085, -0.015640217630229197, -0.05647308352317562, 0.14772444692702974, -0.2649504867028545, 0.10040919420977563, 0.1675827225189259, -0.18608291919054706, -0.13602921132591594, -0.07953350485169443, -0.0008869385520345705, -0.017194590302327794, -0.04833664579692884, 0.006866563358986324, 0.12658894356900252, -0.008646569723268282, -0.05839857564881788, 0.3037170367176916, -0.05268526371548039, 0.18757387457532557, -0.2050963289755445, -0.14935632762268383, -0.08558085201842792, 0.31188855819392625, 0.10368039686192543, -0.41625738582866034, -0.07989645215219746, -0.021490209282275276, 0.1637535064534919, 0.3004901962189695, 0.3013855229238888, -0.05239862122577419, -0.026923948004913968, -0.025755770662116876, -0.02155001110654091, -0.015752916237066046, -0.01403085059357137, -0.012080168964869572, 0.028757959706020957, 0.030601617562843374, 0.035810159038596086, 0.040894140475936216, 0.0528271277007312, 0.03241042658696669, -0.04703869917904763, -0.0179410165588894, -0.022748664650119092, -0.03321086794537236, -0.0532494430548335, 0.07098143570401293, 0.25839748149058395, 0.012559798540600055, -0.0007741016418379917, -0.0024704622037732063, 0.0063177488210243524, 0.15050022854547784, -0.01077307880114441, -0.032703963735438976, -0.01583633449039344, -0.0032961386878986865, 0.00741224895072143, + 0.07911997663192244, -0.10572140556093139, -0.09513306990919568, -0.011263972958008812, -0.10136501826152226, -0.09671783752423335, -0.08949550471639016, -0.03314308092504683, 0.09082671399419272, 0.12115461185670265, -0.04194150638955893, -0.032908944077478776, 0.10003682369606494, 0.07729137011334435, 0.07597366569704622, -0.018152111228689528, -0.11736188882232364, 0.11798508647303672, 0.05715751298061881, 0.011379157249775396, -0.13299491376509723, -0.11666916925782939, 0.10274126111295323, -0.1912224329513722, -0.13321551136564067, -0.00793704053717689, -0.10209468698907802, -0.131780130648648, -0.0959880556439385, 0.07936333862080631, 0.0850795060397908, 0.12387124638004345, -0.027971560097707855, 0.04232429543674315, -0.09861594465646006, -0.12839506691993474, 0.13051336856695805, 0.08473931771776085, -0.18497912735971136, 0.12342394090628053, 0.11589539447346724, 0.07175918095106938, 0.18392956731446386, 0.05954967299094233, 0.007888276565739948, 0.07910556023957485, 0.13469984111939917, 0.03881436526878576, 0.08194350292597834, -0.019528501278471073, 0.08018983337699649, 0.07063239970338722, -0.04433585644642137, 0.08565021393166966, 0.029556102724512336, -0.02064018232321875, -0.08239394096015723, 0.11018663265287358, -0.04984999530355828, -0.005954556483164064, 0.04731709671479898, 0.1450471629301175, 0.1536094976197879, -0.017907707457648542, 0.13179018988215835, 0.05915252543894952, -0.10805422688484034, 0.12092558647053027, 0.1822228145365073, 0.012907179757268574, -0.03301611819479438, 0.14195125241128975, 0.060260124664135585, -0.27086210543585826, 0.13923774216426657, 0.15803581747465442, -0.12454019288239412, 0.06904401112088172, 0.26863947633390944, 0.2313974065103673, -0.0018179644907172934, -0.045795490768463044, -0.023941148015197686, -0.1298911951375761, 0.005905510588847449, 0.04025082414075166, 0.03969778829318917, -0.24475563934888614, -0.12996120672246955, 0.25304001620141964, 0.08669311247183932, -0.03593099829869791, -0.04008521713066102, 0.2871116741538535, -0.017416431067219528, 0.25784003231269453, 0.09933391453811648, -0.21528938794156, -0.0014008724685093468, -0.0025314876933052195, 0.29366726369980795, -0.03934472456799171, -0.03692495374996784, -0.030974662899948498, -0.023481003176950867, -0.02930559794778298, 0.012215350248073575, 0.03190757423370907, 0.04049947794195053, 0.04914704441046698, 0.057365587873983104, 0.07886677973750417, -0.008586422369034757, -0.026732268212748954, -0.016875249724245516, -0.027007970699401397, -0.04232337299075228, -0.06880116625825661, 0.23584361629226103, 0.15766482544255075, 0.007611018025785829, -0.007652041921808933, -0.010546906566090173, -0.0037691030641555626, 0.051692273135588045, 0.13798711465324418, -0.05120691370447713, -0.022288990177830384, -0.0026967290083062014, 0.01581678827580813, + 0.10710370492959623, 0.05398849543903742, 0.08457767538450425, -0.08920190139737315, 0.05495782434712339, -0.13765416650283044, 0.013858421027893995, -0.12264070777337002, -0.028031763891863782, -0.086339764361813, -0.09102407323398479, -0.027575788925703143, 0.0653582323095331, -0.022526813429252633, -0.13979742112882848, 0.022137861041281688, 0.08987542237607653, 0.1242382030312507, 0.06919541552622978, 0.1504646025304774, 0.06152202629401603, 0.12967025608331095, -0.12993281106514845, -0.050701169533304925, -0.14169026402550797, 0.07924465758380353, -0.0986297429868179, 0.10225951733609957, 0.0023963414211531048, 0.11373416207667751, -0.03441713424041688, 0.05449487972722689, 0.08927259507894046, 0.08807161460795741, 0.20106551473226933, -0.036419659556743304, 0.08894647407340842, 0.14615558050095137, -0.10860604478652174, -0.055142803723082744, 0.05583564226488737, -0.166399834080319, -0.02206973133070494, 0.14954259466116415, -0.11898107937416652, 0.008710776299165569, -0.04104668517427736, 0.13136805061408524, -0.07103445513794056, 0.0762418470067191, -0.03645213638703669, 0.10369141802938651, -0.03047692733302957, -0.09721720953796423, 0.04792442842109983, 0.07638893780921065, -0.10767978194370167, 0.01813253252832343, 0.1374072536331675, -0.015795295870155834, -0.19659290670534063, 0.11982132706223697, 0.05390758816462085, -0.12032394964494701, -0.05723016370689213, -0.13978374956033848, -0.027250176404411148, 0.02655557750133376, 0.04272887992978494, 0.0827424656546767, 0.01675250463147699, -0.15305447539835218, -0.1656676799858675, 0.1726821316103691, 0.3391382914839503, 0.17347624884294974, 0.1837465288707615, 0.03503985127329071, -0.18507788817827547, -0.06006833509140286, 0.2726362307871686, 0.046037180889188845, -0.10250424006146851, 0.17571171918241776, 0.11765215823332865, -0.011814261986767629, 0.14939194857709442, -0.03292762610685405, -0.03666666409918389, -0.08077630048540077, -0.30292338691835324, -0.07376461868608176, -0.09161310132666475, 0.19235006780529712, -0.12122950266316365, -0.3041595196198468, -0.15664665711571293, -0.034319445555067475, -0.09183649097423441, -0.05175818912437945, 0.24234365860445936, -0.289070605923577, 0.04444626568351599, 0.038779497509417546, 0.04469387375525187, -0.003631482953440776, -0.014106411888228948, -0.023793229975075852, -0.050410546227027966, -0.06198208214860434, -0.08724471089951051, 0.005933327363584335, -0.021228821021487737, -0.021779439441748448, 0.0361515271063751, 0.03652715048163108, 0.0627429286456011, -0.25209588597787724, -0.0104578069208634, 0.014845827593002753, -0.1396570875353716, 0.0019062712471752674, 0.008729965569955658, -0.03569850416467636, 0.01472001028033569, -0.005566490173008514, -0.15198576595592017, 0.038181579005309364, 0.0032030604537079677, -0.03548225868406907, + 0.036616780849040916, 0.0704633700621474, -0.09600888769097188, 0.09800438749040274, 0.1004765603120951, -0.1246152571584314, 0.08910506039051462, 0.019415553069367906, 0.0014578550133406412, 0.06545150743822982, 0.07343344688312134, -0.10542441932198886, 0.11372150942664383, -0.13816301094729816, 0.0637394697451018, -0.12750852716725405, 0.030950892751531168, 0.030758009475803195, -0.005750159725695391, 0.05035478415300212, 0.1231378763287595, -0.0036870016875681514, 0.10879363494925962, 0.10131060291117457, -0.15538618208091193, 0.1392699007978531, 0.09648063621130144, -0.21806531375601565, 0.05388658495454716, 0.05975815589112964, -0.025242043760707978, 0.06529472755193132, 0.1254204213519793, -0.2017594327464164, -0.23542743884994433, 0.2282496657947065, 0.1068147796874229, 0.08849796493489435, 0.03556176769223176, 0.0943131602917384, 0.16756443814704555, -0.13161420209340116, -0.0011732588278840486, 0.1938476118029772, -0.09292324709582658, -0.01387207988800243, 0.14067319547899382, 0.003521637689489003, -0.12463419266669017, 0.085572410507668, -0.10064592881646002, 0.05348395153984509, -0.002401712059280069, 0.06736652562763046, -0.07450541752492151, 0.055161349260985953, -0.12781270823585633, -0.1123446575424381, -0.08742693190194141, 0.11512047625174497, -0.01791961681367032, -0.03511532962011426, -0.03787511699162414, -0.04286897420186065, -0.18470282595005186, -0.05967234230560647, -0.11795874192690514, -0.1393188194733987, 0.11944690764214377, 0.040607166699409385, 0.1723524728027084, 0.06902290584333749, 0.12479450090326695, 0.06845779752413393, 0.0484999082281832, 0.07799044606958755, 0.028168206279609635, -0.1661236244657132, -0.007743730233964764, -0.16083163157355437, 0.175301970617165, -0.03486185768352451, 0.14687895215895755, -0.056987492070067716, 0.1319493321010625, -0.3747438443378491, -0.19959458795169474, 0.014050709164279354, -0.14294100601144108, -0.3017401037380427, 0.04755532043768491, -0.26104736274390844, -0.08089732873473522, 0.13634777555179528, -0.13530034631935992, 0.14141720449335893, 0.23352569926431857, 0.1434305175266622, 0.018369970960617387, -0.23919991223077813, -0.013235758406144528, 0.23627474364831136, 0.2874100379484185, -0.059760606946203804, -0.012993168238959041, -0.0016783890368569283, 0.01577016046703751, 0.03377342707705642, 0.047177815756851496, 0.09102630702740463, 0.0013142084942249985, 0.030901383527927904, 0.024860822368949133, 0.011890200887319662, 0.0011550083357858738, -0.07345363800909831, 0.2574677000885929, 0.020543221046607996, 0.005335498878771855, -0.00540675331836199, -0.021605889374849523, 0.13922144476879494, 0.044255613790298104, -0.01914377706845339, -0.009966552982072639, 0.001557543121767764, 0.020916511706297124, 0.17094966126105515, -0.00010877881935459494, -0.016287083830333192, + -0.06753544267718592, -0.10932658195555382, 0.10292647113990638, -0.040812658039921956, 0.0207534673377617, -0.07550776545254548, 0.11537615604968253, 0.12096213128897533, 0.07122682973031469, 0.027127367212781296, 0.06779062507200594, -0.13963023789596393, 0.12327485697709367, -0.03497874684502772, -0.10306854079600372, 0.0753682246247725, -0.13236427432602757, -0.08081457615040928, -0.022772136212320084, -0.10378814416442703, -0.0709807411536861, 0.10895574907099197, 0.10067451649569728, 0.10885123686724073, -0.14115409029780218, 0.11262111891366557, -0.05459806263173375, 0.03724339637058144, -0.2298277419325389, -0.10340103506471315, -0.033157498202663276, 0.04786733226273128, -0.1353921283071507, 0.20445630376648408, 0.17609898923198644, -0.11611465085144686, 0.12140220026631927, 0.1481827484564384, 0.10275313322749052, 0.2257047868663061, 0.10970936541029332, 0.17837904793232695, -0.16723515499815989, 0.123646342024149, -0.0009808995508287695, 0.10946201941215714, -0.000925686003213314, 0.09849737042248795, -0.040818054273464736, 0.025662570618981372, -0.02869426380148435, -0.1012341237055542, -0.07986056288523938, 0.025202834799852115, -0.07007767105769756, 0.1651076099494215, -0.13825679166326665, -0.03852088044203789, 0.03826287551801459, -0.1462128251568642, 0.08661342570877478, -0.08285887068293575, -0.07510183490180665, 0.123862091236158, -0.012439110770134945, -0.14188103387356704, -0.03787607961217319, -0.1701715062202268, 0.2101248167026959, -0.01057957513617906, -0.06716264019319064, -0.2000700767015794, 0.00624538802846266, -0.09145885653856087, -0.018393163851935197, -0.24407942424590254, -0.2059178686357887, 0.12271030449994155, -0.04346572900266148, -0.08364428172937283, 0.07127911806928225, -0.20091573307970045, 0.1869339263216986, 0.12216147207976571, 0.11007031894765075, -0.04306231660766859, -0.018383721205309216, -0.013373612038819888, 0.08865173230142533, 0.15692401425692834, -0.4437072986727993, 0.009332978666353565, 0.031582373948969004, 0.16799227720727541, 0.1541255135692599, -0.14731348836954697, -0.006179973100291731, -0.3094556938987547, 0.3998106563199415, -0.2278460243371321, -0.04966432612019221, -0.015560804408944173, 0.054318618722614405, -0.2983643765627532, 0.017055676689406607, 0.0008906072619083716, -0.018229179925364984, -0.039611268046782416, -0.07439886601100204, 0.00790173055558015, -0.03396096387995514, -0.032509217773191774, -0.02218588809514721, -0.0048218433293084825, 0.02461869687735356, -0.2802783540544077, -0.02255985652586875, -0.0127812102904578, -0.004843179195498576, 0.0017365541463808185, 0.005982556771621739, -0.030908928997396456, -0.12633960787722637, 0.0021591420446522777, 0.0033625344211881993, -0.0052978970767829855, -0.021700524015162828, -0.06553299138483315, -0.1520462580139428, 0.02173751937495617, + -0.10959589166165917, 0.014426985876844723, -0.10081959777356625, -0.036458017647178494, -0.09974811330560614, -0.027405580721737828, 0.07523838968939654, -0.055343108140829815, -0.10231799437138252, -0.06870024436705452, -0.08991452696200672, -0.09953202572475807, 0.036098454938981485, 0.12789315610497887, -0.032454585196731306, -0.13809973983752322, -0.039091230427339106, -0.1629774418847807, 0.026293688706494574, -0.1326755556552789, 0.07986756698978294, -0.0590539448388311, -0.13930837941908214, -0.03392299364458467, -0.10350856318396245, 0.02335754543926517, -0.17040571745819033, -0.1327611392377314, 0.0740256425213312, -0.13666594650847208, -0.08954967652961439, -0.092054198692772, -0.08217968342314322, -0.12484102351986137, -0.07570888464500408, -0.11966368910448852, 0.0016984984491377796, 0.1315378249620117, 0.00392861775291906, -0.09155142187313567, -0.06533620110000485, -0.15931356516058587, 0.013695547122499853, -0.10657714500257694, 0.11326766981700685, 0.04062364925602949, 0.06931747353592727, 0.046865843299339086, 0.06780722136572243, 0.01966794015008665, -0.003907928300468795, 0.004475816026431135, 0.07990786221194167, -0.07591140444192003, 0.03078263253931918, 0.18046303231982347, -0.031917935661691585, 0.136496655403909, 0.10595242099669505, 0.13047586288310078, 0.0027125466459484073, -0.16132323751339733, 0.013318697007982098, 0.09997065392568508, -0.06629804281685646, 0.10070137331626641, 0.04226841406644658, 0.029370928932908522, 0.053753368741809714, -0.14792813681792136, 0.017304130591315085, -0.05477581508895913, 0.1241692401233105, -0.08464911573280966, -0.12653658667809378, -0.12449567133042462, -0.05213591003252907, -0.22950935853986681, -0.022743514304872682, 0.2573707699471027, 0.04428886097199816, -0.2966843041599733, -0.006238799177866542, 0.13957543873976241, -0.023728933345195376, 0.1465079004719868, -0.09184450235117128, -0.2877227300421585, 0.18655018293448233, -0.17438027770567027, 0.15093270199305292, -0.1089896925488023, 0.13788397230318156, 0.195980049299797, 0.22123535635213806, -0.24554650560386362, -0.06560385913061695, 0.2682012148620192, -0.3932881909790901, 0.28340399327096444, 0.22949201218068213, -0.13731682960029173, -0.07084166547930502, -0.08053861384537696, 0.3058549330752868, 0.0029754345065223925, 0.019121087931220936, 0.05033182073546806, -0.027785525612278622, 0.01468672989542811, 0.017679249380410086, 0.01869707266992074, 0.007977577711470299, -0.015123472661084353, 0.28056898722679235, 0.031156295396611786, 0.021829491976722796, 0.004048249963711314, 0.004658664885269524, 0.004619289559319707, 0.05121786067404285, -0.02812455563337231, -0.035352525457656825, 0.13966955723509955, 0.01364944769479072, 0.015532402344845136, 0.04472272306595494, -0.013265440128412787, 0.02047133461582254, 0.1760401875826762, + -0.05089438327975263, 0.08741768945352628, 0.12829831749055895, 0.12148165060001086, -0.05857345567492967, -0.06333095976397095, 0.05549451296616314, -0.04609957763639015, 0.09031762376466605, 0.1575627400840212, -0.10566219687114689, -0.07024050553906162, -0.02103189557616889, 0.03925625041580754, 0.07897253094989248, 0.11654934937303034, 0.1393068715096035, 0.0031319451074421764, -0.08409034098755906, -0.05926456395749621, 0.03817033611320299, 0.061955034242068455, 0.11723876412551165, -0.1013609186751003, -0.14881203628583306, -0.09200980178654147, 0.020208627704542164, 0.03831083271088509, 0.00039015550534874803, 0.12310056826605431, -0.19764464357323674, -0.16434517522002826, 0.16440993378217203, 0.08140527863824551, 0.032352140387158536, 0.08333389008244943, -0.14344890258096216, 0.17990680738318818, -0.21869374291981603, 0.03396562431904654, 0.016865432162989472, -0.0001260706359801588, -0.1744963315007591, 0.13664118743154308, -0.000940111827815599, -0.0652324126573304, -0.049130067807918475, -0.08282242885551594, 0.04267128438938549, 0.04598428356905216, -0.06833711022733947, 0.006680401974005531, -0.04163770537080262, 0.15770916898751486, 0.1563479518540762, 0.01581767917633141, 0.029837157713903054, 0.01788935754569836, -0.07345101572423343, -0.12782325008045847, -0.24132929509876763, -0.0368297056161467, -0.029082315264398927, 0.06110462480375146, 0.0002885648817412537, -0.11462202351034137, -0.125730096167709, 0.09776391548900312, -0.00455695972719429, -0.13256095704676985, 0.1246600422159879, -0.06297637629785698, 0.0026130144318590575, 0.07644605267426217, 0.09631009691889683, -0.1996204123865427, 0.17025253544189478, 0.13688794315706185, 0.23150022772010853, 0.09360676040077687, -0.16670715189202667, -0.015440626601732418, -0.0757875737211208, -0.20113330187004852, -0.00381115327281412, -0.0698391826685281, 0.3216345056397065, -0.0716539635014352, 0.265722461442584, -0.15823138049466273, -0.1737784475127267, -0.009506973966447478, 0.19466354540808592, 0.021214818770760886, 0.07048865572530862, -0.3004312876588053, 0.31471191650848, -0.15018174348237726, 0.03938422247388251, 0.0007601267936903804, 0.11454697828733432, 0.13558323073719358, 0.20950660837590665, 0.1097945818727286, -0.006364585496259357, 0.31561666479835454, 0.032310155531243764, -0.05100895445203246, -0.009099086008691734, -0.0028961623061793534, -0.0025315700951451664, -0.008643371637215552, -0.019093518313802182, 0.2758124207974334, 0.021805755705485107, 0.012597450240397153, 0.010289684731859778, 0.01270962969434513, 0.0032862572786552056, 0.05557397147347681, -0.020155307644420847, -0.013507164580594547, -0.015119062016278051, -0.02794076613368567, 0.1528572458836081, 0.0502969824488302, -0.02225952247703269, -0.0010628880896157607, 0.005370528597890195, 0.014479193285902896, + 0.05459918637808469, -0.09178221141632067, -0.12999098252511568, -0.11509291727743029, 0.04106348857388697, 0.036630334597513935, -0.08345173327742121, 0.06655207876056074, -0.09816569483683654, -0.14919194544590272, 0.07084887896377284, 0.015959672578275685, -0.04504229845339425, -0.09712592097972142, -0.11097378850104911, -0.1010746384449738, -0.09520110684017268, -0.04510302522184026, 0.027696599949755044, 0.12196979707783087, -0.07337541965637966, -0.07833945077180204, -0.008234566767291092, -0.10496496483189283, -0.09102515200434157, -0.11015272333859043, 0.10966417786293876, 0.07859232775880075, -0.005796764231715983, 0.12314847236442177, -0.1416414460085997, -0.22381673018170814, 0.11462014805277912, 0.08391753095497863, -0.028221728636284398, 0.12019917320967692, -0.18571759638825036, 0.13031818902493764, -0.1912431850902919, -0.038447255953807054, 0.003959096393762938, -0.014292516953109097, 0.0914968270836279, -0.01134337892838777, 0.027089453136105855, 0.06998559910351353, 0.08730561995418694, 0.04499279524702264, -0.04290049121731027, -0.09956613425636913, -0.039406977270063974, 0.0072943591144884815, 0.10564833047773599, -0.17951960789329974, -0.12103418190256504, -0.06668219407895117, -0.07796257991993367, 0.008035685346059475, 0.14413271966071436, 0.1418591243368833, 0.1358219941759622, -0.040452202285667066, -0.017726000505310043, -0.166865072202644, 0.016821271837845857, 0.1374680281295023, -0.01871417563517153, -0.046055683447641826, 0.03876100787388934, -0.0521994648381798, 0.15027603229014266, -0.015306266790381466, -0.002763565642926016, 0.03781882085399478, -0.022808657751039386, -0.09615064257895645, 0.08997665781589283, 0.11170089981844453, -0.022370338202578995, -0.0682719818642195, 0.021442284965082006, -0.25748722637214555, -0.0057533066511052415, -0.22076606470708957, 0.019458278912969973, -0.23236892793149586, 0.12704482017520594, -0.2506252959493261, 0.059417443954488586, -0.08569395271746555, -0.09905036932560995, 0.1759838211245263, -0.22082679518896942, -0.23304434272928803, -0.0001659169946771585, 0.1630965208163795, 0.005548329477871585, 0.037580395549877216, 0.18984269635079512, 0.0022369146754532177, 0.06737886394613982, -0.016003513008067058, 0.02638354062960572, 0.13180539664969415, -0.3325662252032538, -0.24616839620643918, 0.27630113226840736, -0.027416748413483932, -0.02786029678869479, -0.030291103493946925, -0.03375303085027502, -0.04582665598463405, 0.2978021713664415, -0.008263077124395824, -0.003579912763753121, -0.0013962408446139864, 0.0020876572090272848, 0.009390814641765069, 0.07216066247039163, -0.030595527925243293, -0.010187512046110129, -0.005712417672517785, -0.004073879695378318, -0.004341365754632826, -0.006728174376296525, 0.12554924652625857, 0.005878448770164756, -0.0035430500670181747, -0.009373582572269418, -0.015340371530579353, + 0.1098945158769596, -0.0060951907266017956, 0.1043851138185201, 0.020800889519565127, 0.10853418099299929, 0.0026449310621148286, -0.08907761015180307, 0.023043801381433582, 0.12716834717763986, 0.04029730474553844, 0.1244434958492197, 0.06310931487583564, -0.0903040398509305, -0.08599607416864656, 0.10820651752898675, 0.09865654401290773, -0.04591518716292264, 0.1334964573397519, -0.09264512031979046, 0.09629260974773322, -0.0025871151216759736, 0.07609686771388219, -0.1406097443345725, 0.10318390232115067, -0.11670566577210931, -0.07519128975081814, -0.06660188209088584, -0.10549962947115085, 0.06736686002674917, -0.07711919528092971, -0.11251440273385668, -0.10074642132629719, -0.13932110319194277, -0.16703154186278862, -0.19592269756378372, -0.10087188471766828, -0.09218758805614281, 0.14784998465968022, 0.041761641890355854, -0.1711150827550328, 0.052866810904970356, -0.148977368469648, 0.05651303148497326, 0.0074687906842178416, -0.07931959036902576, 0.09009506551823707, -0.03699045871604939, -0.013728978449898226, -0.02226385932037404, -0.06352127419798162, 0.021149844629995373, -0.0940929902420139, -0.0536769118978533, 0.03396289661587104, -0.05447422530110775, -0.11512156396333004, 0.022676801604452484, -0.1675275536626695, -0.10132919296564456, -0.08255510920585062, 0.0803003041270744, 0.08067174943267033, -0.10163389110852968, -0.10922630660903833, 0.05518671336558035, -0.03900366981592635, -0.042521661255891026, 0.04553122085860591, -0.06177722414783906, -0.08084742553973494, -0.013906158707849798, 0.0953333567846854, 0.04572535222532973, -0.10459716942247999, -0.15732190723085926, -0.06777885488630003, 0.023751813386408357, -0.15716716975391293, -0.10222258908604072, 0.1694894186692656, -0.05035249049361458, -0.17581016348243142, 0.04220951469119705, 0.07689001774617671, -0.0926615604524201, 0.23073087991252672, -0.004256631333263003, -0.18210163679750416, -0.007464253995673274, -0.11098310109972764, -0.23019436061240522, -0.264967086285704, -0.1812830703375839, -0.24206258922125387, -0.08887964031903181, 0.11266156259658405, 0.07458790708896042, -0.32386287682924203, -0.0200816138669921, -0.0034945818519255757, -0.09326558587464472, 0.1750521493102504, -0.022981399897205157, -0.18094507358959908, 0.019334818179704685, -0.04414120449248771, -0.2585482262704739, 0.28187854450822647, -0.05426346922471503, -0.06389481747887614, -0.07910922936998002, 0.2571856611896446, 0.022213659146201735, 0.05009011193455286, -0.028887375972833577, -0.012548649013006025, -0.0005807587326026546, 0.06372865053880415, -0.009345424867958587, 0.007012294512762116, -0.02030720544864812, -0.0035173961466294923, 0.0023139366731498552, 0.01253005688741713, -0.013688423403692753, -0.019183469190838118, 0.13985489066488654, -0.003214044586782122, -0.024970608807562442, -0.05539702210759778, + 0.06415333428308362, 0.10678358263211557, -0.10749370706257894, 0.05481102258750641, -0.0010544622555875914, 0.05316817254837782, -0.10653277737958765, -0.13811893793331198, -0.10446237185163232, 0.01916752224142004, -0.034625393047899126, 0.1281113304943091, -0.15020787470469749, 0.10128266017202511, 0.0367528242666593, -0.023614272174573715, 0.10372032192953906, 0.1208363385294471, -0.05914439895819725, 0.03391426769376215, 0.02946301283249266, -0.1399005672443217, 0.06814344790078732, 0.1443756959927201, -0.15076713066866804, 0.024988389600517455, -0.06168093422136667, 0.11689220327698074, -0.11244027452649275, -0.013440821603244491, -0.04087580027427451, -0.018797533188709453, -0.1375325476749824, 0.2310209580491713, 0.20393012709135436, -0.19405180261309424, 0.04073963898251626, 0.22758595473921647, 0.148736719764928, 0.1142100436312543, -0.12308352995574023, 0.12204700457308079, -0.07969788249039293, 0.08030204923160417, -0.09700504305155959, -0.06497114513263981, 0.11663649260775623, 0.06873867410064348, 0.0450232352307638, -0.1265558257116207, 0.15862024078195233, 0.06749411634288642, 0.02353908297649771, -0.06746872569290248, 0.014809588661233629, -0.07258428775949138, 0.1332114150286487, 0.06702358112417812, -0.09472482673244507, -0.004408477426214663, -0.15094975308116604, 0.1327100763868782, 0.011728647648727827, -0.11800311902840278, -0.0012126957994213104, 0.10834283539386068, -0.0023162159164328874, 0.032321862565046086, 0.09819623069478202, -0.000985652267540079, -0.1463122856758443, -0.1371141295667932, -0.1012427790293286, 0.017179469058846226, 0.08031536846115583, -0.1969651997805015, -0.1354327511693263, 0.22022361082649888, 0.022033042433354796, -0.22805035325672907, 0.09979479401928233, -0.05619674936878378, 0.12232993121965544, -0.12420139774801436, 0.0035529286291312353, 0.060114129480533234, -0.04560667442026214, -0.11538456665648486, -0.07711504637262365, -0.16229336505030126, -0.019110572369120303, -0.18029064520116642, 0.13059173916592673, -0.12693028177731008, -0.0801535157454809, -0.12221192168851289, 0.16125396263338165, 0.14885971521204377, -0.19262321278764247, 0.35295957728162153, -0.06912369205847683, 0.1954594804958998, 0.14056871340511057, 0.31651191217294583, 0.28647578952284497, -0.2937029083211979, 0.16132807188345621, -0.17183494746523745, -0.2608254506234954, 0.11718234686496057, -0.23813170757370516, -0.014963725433779312, -0.005980940380555591, -0.006947393827427345, -0.04160659606433795, 0.03157232233589211, -0.052950851651613284, 0.014656719209064945, 0.004050616318111867, -0.0023933529526617425, -0.012961931718238772, 0.013502089946677343, -0.014464985410289557, 0.006242976526008474, 0.0011523281804088105, 0.004005706149640666, 0.016588069912039465, -0.12773974328478366, 0.05552454346103393, -0.10617692259246009, + -0.04057012699240027, -0.07698419839360235, 0.10214547781664397, -0.09961563245672757, -0.0957606696769129, 0.11005041270279314, -0.06418243651152145, 0.016209541752917597, 0.041066949595031654, -0.10325030667121275, -0.10849080425521802, 0.12762231165200594, -0.10729185081217493, 0.10439560282883222, -0.022155473126293918, 0.05739280423349746, 0.05281186333637542, 0.057432890757123545, -0.07045331410748924, -0.08672579432513389, -0.18818716143658745, 0.01666936350920274, -0.03380924106345208, 0.05613243051625592, -0.10925961810190633, 0.1203084735807355, 0.12141668672666413, -0.119670971467554, 0.08609015018139045, 0.09865794134489811, 0.06221086607985243, -0.007438831502991671, 0.18049118860672944, -0.16394433104424627, -0.2442442312445954, 0.21884878110030662, 0.1013139188260055, 0.04596782253358951, 0.01886224075191165, -0.1668323717793098, 0.06447483582015855, 0.06061734586434951, -0.008156077135653816, 0.1481766515585468, 0.011982687551013822, 0.07410502727707755, -0.02402681457997515, 0.048663012844754217, 0.05897114804795557, -0.1468805187192944, 0.08537904451613437, 0.0815128359845495, 0.03349269310684831, -0.029523915318150917, 0.008297635963049648, -0.1402751013927794, 0.11762636341079657, 0.18484790053406394, 0.06348399363589546, -0.09679787448155008, -0.08809854992824824, 0.06607975608507463, 0.039153574736794886, -0.01945667398742092, 0.19467994966652252, -0.03153713774393068, 0.11734937315976755, 0.05810660857340299, 0.016978089030946324, 0.0015055900937203117, 0.06426729551384497, 0.1679529234875081, 0.10614757352150418, 0.00912759597271576, 0.09505412760774322, -0.037344789134444084, 0.04344735208810301, -0.08243177343669165, 0.04868170680472986, -0.07295255915822493, 0.17094368144158031, -0.16345880190053586, -0.004725883008801412, -0.09306169468753749, -0.07652540952369821, -0.16156753964439502, -0.2532334563278123, -0.07959411682956329, -0.01251468491458256, -0.03609489400494006, -0.19101678843470102, 0.17334766769929638, 0.2585087240081323, -0.06101064666263858, -0.2505611768245347, -0.21810171047347565, -0.06915860186865935, 0.06304280421582475, 0.0144370490531194, 0.14073502917212002, -0.32270451375702525, -0.2149998040427211, -0.17090213708096622, -0.08175126215218441, -0.3966072870814984, 0.24839207497419225, 0.06434919467875296, -0.04048472335891144, -0.24828427761214206, 0.3710976975734895, 0.022580241422869053, 0.00701303438490906, 0.002032836130974565, 0.0021243261748338884, 0.008988132686409009, 0.06892278443681374, -0.02255831033769871, -0.009721799065302288, -0.0032724679366574333, 0.002134759059649618, 0.007738339036816079, 0.01912780613205896, -0.012772181674810607, 8.114575529930956E-05, 0.0014910867426293343, -0.0007156774281999803, -0.006982511280233302, -0.02554087412787338, 0.1706272263015231, 0.029746219102805626, + -0.10799360060979786, -0.04637541566032189, -0.09176593896785175, 0.07778029008088344, -0.07257980927685591, 0.13220192046813667, 0.014034552428426543, 0.1309778184378439, -0.009557314214481409, 0.10916186874600392, 0.053185937542330565, 0.06944972597455101, -0.038981932186009184, -0.03788477112544143, 0.12077324435055832, 0.05367034451642387, -0.10248692386947887, -0.056089746700500334, -0.12972123818499437, -0.0842938383611191, 0.029806674215497993, -0.14201641147584648, -0.12370963763851713, -0.03325203405761907, -0.042066248245886076, 0.12685153863890902, -0.03646883599023477, 0.09632805893665942, -0.05397489371479409, 0.10544357976855921, 0.14906250294162185, 0.040859478076793514, 0.13574214044508498, 0.1981340115241793, 0.16911947580344436, 0.02193659253643492, 0.18154499226482923, -0.07008368735816828, -0.03758893697382258, -0.11239937839192972, -0.17003414013635063, -0.03956073397280962, -0.03247992333574306, 0.15435496038347643, 0.05939312670028582, 0.04424890564370079, 0.020281746531935617, -0.0824799559421927, 0.002135930733136865, -0.1439864035259861, 0.06384743213400185, -0.05879763772186164, -0.0802963880051266, 0.03721430601980816, -0.13734725898350192, -0.03255595244615298, 0.035315425499060485, 0.059504066696890526, -0.19543954373161745, -0.09841817912993936, 0.08699974499137707, -0.10891337162248245, -0.060269350048420926, 0.10849496258701823, 0.05638450711824857, 0.11553737190403433, 0.07432099446006359, 0.0975290689228614, -0.1156260308244284, 0.14816681721507122, 0.04851877218173777, -0.11667114028060165, -0.08345242062740915, 0.05378137469539566, 0.22868557814035584, 0.07177087116962613, 0.17906991217371931, -0.07049963785237814, -0.15895497913136666, 0.09448585268659968, 0.25242743607088414, -0.25063871961695, -0.19725255946954964, 0.1600935833757371, 0.08940928507047086, 0.2389159975424853, 0.01784132669045152, 0.015023332525088534, 0.3619681350877988, -0.028996869656239082, 0.10398339931333106, -0.1481578126216128, -0.11606335852741999, 0.09724234349150877, 0.08783383513001912, 0.2378337442544055, 0.12504827060283522, -0.1407069319135891, 0.08567447398886355, 0.009918626614920207, -0.22863445227677914, 0.062263997323125146, 0.10282560114283877, 0.26396638479019313, -0.06454761805640254, -0.060336474421660034, 0.32839378870483316, 0.31059025219807646, -0.017775577482491815, 0.14736234623312805, 0.10153845557580424, -0.0009302886615756324, -0.0014955498010416207, 0.00019252382590019546, 0.02655160938478074, -0.013919813068962193, -0.016917941106644067, -6.637184941742525E-05, -0.0005648000176378919, -0.00010355992717931122, -0.004118658821634388, 0.016150953994409523, 0.0187993293667343, -0.008917941337192141, 0.0008930145138966901, 0.002093821273685575, 0.003313343754482962, -0.018537253262709025, -0.014019881829965976, 0.05913985505705434, + -0.0761282558645532, 0.1058255184382295, 0.10427901170826495, 0.028611962202195473, 0.08647988969674106, 0.09334851143169745, 0.11244407953884626, 0.0028703346263861747, -0.06583253644488432, -0.1102429035381464, 0.07236953599633414, 0.08163285363150158, -0.052830396565470845, -0.06765213355820712, -0.11614876303929032, -0.06709324962992125, 0.051413734731173236, -0.1427043129216635, -0.12219577747456747, 0.08050988403793145, 0.06496948305452248, 0.10285754299152669, 0.07042566389860147, -0.10373941804947813, -0.025184485510821645, 0.037619983195554894, -0.12809050963868, -0.18335407083721228, -0.07668708259983487, -0.1400826169967911, 0.026068439250077582, 0.22524938469756675, -0.1336635618213913, -0.08269233332846367, -0.07490461611796112, -0.17564815444381388, 0.257296733080677, -0.005822298944955604, 0.01785695681864515, 0.2156069446509743, 0.18338104975778347, 0.009061238977132867, 0.2039135492994746, 0.11197593937175639, 0.10923693154813566, -0.07594341311229313, -0.019884690241945502, 0.05483923163445594, -0.131177852637444, -0.11084022459582231, -0.03107150906312938, -0.051780804173588726, 0.11632625855765952, -0.12200082573943222, -0.0752731668145522, -0.010850829562518746, 0.027267313478657556, -0.06590777643005782, 0.09701560608695847, -0.020320264636924115, -0.12613745562653705, -0.1217628015626044, -0.23806157984249243, -0.043586583894735006, -0.11524378731539754, -0.08102561232977495, -0.20350398081972781, 0.009399796703397656, 0.11937332827086683, 0.1492040410006056, -0.12248805656040702, 0.024143474152804753, 0.10206275873398603, -0.10937804087737177, 0.15654966737109152, 0.24854139004209017, -0.11685432338572675, 0.10895574732824295, 0.20345570626699555, 0.23894277890992216, -0.051448969896610214, 0.15345900252832048, -0.15666280673938857, -0.03943468420333745, -0.09156674105528993, 0.13540781214323225, -0.10615672290362467, -0.09124946342908742, 0.07913102371188163, -0.11165269742586167, 0.07674199699528726, 0.19185327406055763, 0.12784634052046298, -0.18371354154241415, 0.025357040360138347, 0.1374906446250708, -0.12193003864398867, 0.20826060626037146, -0.05468133834028377, -0.06385986318870968, -0.1956636484769716, 0.07142422937470479, -0.1379765317669921, 0.0221025002606716, -0.06560483173215079, 0.12489360563440255, 0.05533774823980335, -0.06524983438691113, 0.03589883221207545, 0.15739760628287763, -0.08565953902797911, 0.0997835094977914, -0.0014232838583594035, 0.024918975935400496, -0.014579726135040334, -0.010378636532950744, -0.009156525979361195, -0.0150881194889361, 0.0006979921215837237, -0.005367585278376372, 0.01388163732179288, 0.010763736430247806, 0.012255637490615163, 0.019380772821774514, -0.007295682239076961, 0.004628767543575454, -0.014552455703794105, -0.005104127150785127, -0.007189605002162576, -0.01418052735072371, + 0.025729056239122233, -0.04858027508667646, -0.08261373936427724, -0.09992536508138765, 0.0927547372786923, 0.13881109232963654, 0.08998983755952915, -0.11523694205103918, 0.10025722656233843, 0.10194129974993807, -0.010840139733246915, -0.05388460189575044, 0.02541534905793603, 0.029890674789468347, 0.04870339540741444, 0.05019248903810353, 0.11491499699425825, -0.08519873319481734, -0.14619630603767483, 0.12323102542283801, -0.11428208421597234, -0.07969128843757468, -0.047657070230654484, 0.012697435843611868, -0.053114594520061814, -0.04895536951687302, 0.03920729473606667, 0.14012842338964263, 0.20678493565989275, -0.08184253145603772, 0.1905441726056948, 0.02061854787414812, -0.10220014395219917, -0.1345162700340322, 0.015704927564223665, -0.12945237475146973, 0.011022718668133123, -0.15059750167822158, 0.16167287106728043, -0.13601058118504444, -0.15917336611764238, 0.12313389364712561, 0.17391571375709866, 0.10120383150532153, 0.05241733054065009, -0.03070569912839721, 0.008046757182073722, 0.04365447351899986, -0.07093277105153585, -0.13494868191633008, -0.12721574733545923, 0.08560399988158614, -0.1251088478052123, 0.19650435108088865, 0.03724439999302968, -0.03179605402186217, 0.017979356544112732, 0.010063713926926756, -0.03427395626329049, 0.056214020262784416, -0.058185039480532046, -0.12472551319982396, -0.05797084077484863, -0.18907612806953666, 0.18841390757645987, 0.049009828172076796, 0.13243655054950582, 0.05842589545786631, -0.015712757260290196, -0.07741518454466002, 0.010489277276209928, -0.3168060511442261, 0.08396460686424996, -0.24040908316231324, 0.045391739269327304, 0.33230404170321737, -0.16008194588353666, -0.02751307125643496, -0.03194047867001849, -0.1845182988629488, 0.14270979103532708, -0.054933991084204804, 0.0670885600473729, -0.014893733006488549, 0.09122024876078232, -0.1280793909110217, 0.14502396191603778, -0.09370450622162863, 0.04714219353609236, -0.004094365887407702, -0.16688383209091173, 0.015704251354153057, -0.17497963653146867, -0.19178668091346646, 0.11596627801353308, -0.14653721126227828, 0.10205658237187866, -0.22406850894785327, -0.21228499227138012, -0.22304086047368654, -0.10955874331824007, 0.08607047727431369, 0.18465891245084964, -0.09460861016854719, 0.04337452682014324, 0.20649925174990857, 0.09426071332270286, 0.014336683108653964, -0.0153361669184933, 0.27820346722070416, -0.28197638149771115, -0.1753584330508016, 0.11220151087932292, -0.014287058708502783, -0.010339945823538258, -0.008991042395159242, -0.007904252092536895, -0.0075328291464194855, -0.01769497576559268, 0.013032169138421451, 0.008461426275978338, 0.009178163772013477, 0.010434106227838207, 0.01229280649776602, 0.020538708642609975, -0.021238976883137386, -0.0033844834178845306, -0.0031582010073067934, -0.0049302047663305395, -0.00800476583505419, + 0.10393119269217076, -0.06306798003997766, 0.04709299448425744, 0.09925546059553746, -0.01975888378266466, 0.08503760398346072, 0.08432465485260372, 0.058261618961202154, -0.10695081067389552, -0.05390059647659231, -0.11479386694052274, -0.053299597939204704, 0.02095196695259833, 0.10038132821448528, 0.06297429801461699, -0.04940259425975738, -0.14105414125429122, -0.061967720573074925, -0.1096332047448738, 0.03240025188895428, 0.06661741846300133, 0.06156373694137389, -0.08188889833248172, 0.08651843420317576, -0.003579541576599959, -0.04832452808483979, 0.03712693947925862, -0.12012160221414593, -0.13572042408818066, -0.032657168618103784, 0.11058466202112417, 0.1360654385551049, 0.09747673673449365, 0.12424494055040919, -0.05830154452641569, 0.1589375368390731, 0.0666061935182879, -0.09485267057688467, 0.13855072082564832, -0.01914782501966871, 0.14037182800168665, -0.13823495975305036, 0.13394642753753588, 0.13507836225781458, -0.05704957093248821, 0.08169709410256262, -0.05748161622043864, -0.07705944120953051, 0.025859504449523084, -0.08824925657383, -0.06861341288564125, -0.015276035816524694, 0.08757666503936215, -0.16189586304245124, 0.056656989669701216, 0.10175513811972742, -0.06279949790366514, 0.1894027656853254, -0.05018693138650421, -0.020364259085053377, 0.101138109994812, 0.04525108852015013, -0.1336446170745852, -0.040712461935370266, -0.1489808000658452, -0.071936473578459, 0.07540054590736804, -0.004814829709283321, 0.08125695751379586, -0.18393289526443357, 0.2929805324651075, 0.17883817289271167, -0.016591901610162118, -0.07737440569400351, 0.18248006002663283, 0.04238449651984232, 0.10553203594760054, 0.07198494099023922, -0.15687611127340825, -0.0647869570694732, -0.17716572016186932, 0.12648100166201745, 0.09201782909396557, 0.09569223696764319, -0.03513430869159196, 0.009505453076589421, 0.019045471007718563, -0.11642463289977385, -0.20847651781393237, 0.25102519473532603, 0.15206245852435557, -0.24544284889765985, -0.07493918322833072, -0.09931253567747673, 0.19810554332625616, 0.052494912400112274, -0.2195607048188485, 0.045783730984160234, -0.050434189490053016, -0.12901075222544986, -0.21872713101870453, -0.31469264871512825, -0.05736597367770605, 0.09342678636957627, -0.05037569627303844, -0.20856238170936572, 0.0994960558762969, 0.39533494867571656, -0.12192533732772659, -0.3439827362528289, 0.09887584909684988, -0.04124662755035909, -0.05421171596229762, -0.09002147451143697, 0.010037241779422897, 0.009460774334046112, 0.008876208730935498, 0.011822144979861473, -0.0033823285503880376, 0.002149294548908727, -0.009420022411159565, -0.009759242762069274, -0.01105533486506062, -0.013174382892433958, -0.0019690050655609935, -0.011900387754970175, 0.010490035686609257, 0.003654969449802206, 0.004531957964076438, 0.006564666165443995, + 0.0865794698872894, 0.11046098398825502, -0.04582607651008584, -0.059528631777324884, -0.1017185606848187, 0.08531980292413743, -0.005387286192882167, 0.093790113863201, 0.09245360814774507, -0.03923827922658325, 0.07401133410943322, -0.14033533691561115, 0.0737282860602177, 0.034114670411401836, -0.08191612265747471, 0.09577246499159145, -0.018753642092195228, 0.10673731601788648, -0.12285894477987103, -0.02761734907436908, 0.048369996315803396, -0.10719133914732064, 0.09997820474951358, 0.07558595042630296, -0.018952730518094797, -0.0603994620153567, -0.15711992228409227, 0.06858964236708145, -0.045213172264043415, 0.12856901157535106, 0.10087711794484958, -0.03572886277817862, 0.11004222481518279, 0.05662590066401884, -0.015508381796916495, -0.08984646133957819, -0.10696162115787534, -0.12406430739689989, -0.01303906922802124, 0.09480016740891087, -0.15155551792882357, -0.08690861859240744, -0.08555062039750184, 0.04842156318962919, -0.10759843044414402, -0.08394405946223928, 0.013090898070099503, 0.08046677886763179, 0.07049408886858048, -0.02945395438539121, -0.004036108761597535, -0.08081643199044067, -0.06853652655002805, -0.058029150289411274, -0.15516904797658973, 0.20847845553994568, -0.07556081119319975, 0.15297782653717273, 0.12218649641319693, -0.12426892815376907, -0.04923352035526713, 0.26339141049837056, -0.13661827152747005, 0.07743556413196302, -0.17381370895977494, 0.02964803849446066, -0.0948968937577474, -0.060851797625349945, -0.059407940833646346, -0.23384307971124316, -0.11174433646031116, -0.16260375224555518, 0.18910943521995022, 0.2317232879026876, 0.11121881463654087, 0.056757965275524305, 0.08135854112659861, -0.3436160973829331, 0.11113547670076196, -0.06103878053266894, -0.052839646581362, 0.06938895518658615, 0.017927675598103668, -0.13229769431905947, 0.14815482972834537, 0.01358675619002794, -0.003577213580007725, -0.1596915127536205, -0.0795456815363783, -0.03713415519358938, -0.04261483967026046, 0.17188623033122116, 0.19589439309605094, -0.11012469659667098, 0.23379640540960606, 0.17001603594211268, 0.28205930039045307, -0.2790256125268204, -0.029115556137061592, 0.023026871627205115, 0.11402576652127355, 0.11817144767341241, 0.01773652124661144, 0.04104202780926768, 0.14197117026789718, 0.15316245305125195, 0.29478642912019637, -0.18308166258834063, 0.13696505210719093, -0.07380230782033838, -0.24139190493953522, 0.051358421460271725, -0.07107682577065119, 0.4103438441799022, 0.0895171182006789, -0.011615018050278238, -0.014884011939637086, 0.0007412202734498028, 0.00017299480760527355, 0.0023938330185608453, 0.0006757941553433601, 0.01302999481120359, 0.014468128803635879, 0.0029695929694432376, 0.008613237862728221, 0.008377905635309555, 0.011189663454466816, -0.01250026253677955, -0.00622715760831536, -0.0056097576613248126, + -0.010373018250283507, -0.02104600539364878, 0.031571302633595553, -0.037527626758081176, -0.046638769431676635, 0.07080235125022159, -0.07432001971638474, -0.069790110013986, -0.08680842309364917, 0.07489723235121107, 0.09526989593554756, -0.1102023120496382, 0.08636068681140792, -0.08163274972531331, 0.08880426321385045, -0.09975365551413516, 0.10109890842476398, 0.11620586261848008, -0.10097136984519209, -0.0687693829859843, -0.13843459664822935, 0.10094343486015989, -0.03391828473722571, 0.00803182331538506, 0.008458892237155536, -0.012855931924613977, 0.045464428946315166, -0.12226661764323575, 0.05054765531957659, 0.08909761213182786, 0.0761599044596076, -0.08766089829591632, 0.01027319974522313, 0.06266608494887958, -0.04957414652521214, -0.055287043603323344, -0.12525814280898107, -0.1390376290983198, -0.11289921374612459, -0.17243331984998508, 0.18685190421118394, 0.12387527573151826, -0.17832328252270194, 0.06936099384169718, -0.007494015572901612, 0.0257588279345259, 0.014277352113002253, 0.0063469675542872, 0.067182745655398, -0.032614198772342964, 0.0036771649072679987, 0.026526617353238198, 0.09077005806295027, 0.020971686649414973, -0.06731423375300466, 0.06588695409270508, -0.0833891538429594, -0.07101945638437494, -0.13585170522129641, 0.03711902827537839, -0.07595401494137245, 0.16197207913143785, -0.07917917471799359, 0.14164655470451662, 0.10523026978966632, -0.1534599021291558, 0.02521715999628798, -0.07774148893608998, -0.055449513559171874, 0.004333303279359832, 0.027959654975376537, -0.057931049470463646, 0.028279328452030815, 0.04718579227961199, 0.13672179996069833, -0.1523774554507938, -0.16950154888974212, 0.14699600184840556, -0.2944735836616976, 0.22874755427703658, -0.1518253114308896, 0.02558765405114884, -0.1127046498840812, 0.16953553293617032, -0.07950418517616019, -0.17997848566098776, -0.09394270066796567, -0.15913239161277848, -0.07307303816775274, -0.07070761085814972, 0.13800309846383466, -0.01864310981195233, -0.056340970987745743, -0.11362370559544847, -0.10714324970158391, -0.13963705852900155, 0.011359355534621262, -0.2022918494232637, 0.0075115531070575736, -0.10260253018211939, -0.05012592491976611, -0.04686046234330802, 0.1647165785225484, 0.010679298890848645, 0.19957788097146914, 0.032058222662477286, 0.21786674565922157, -0.3452364097923625, -0.04831877148192298, -0.09083830372616211, -0.02339749790771223, 0.16041345704521995, -0.19500245167585403, 0.045557092596185705, -0.04483199487755514, 0.08662631189647668, -0.002396393680448014, -0.0030397405752006527, -0.00023268163785765059, 0.003130843307084836, 0.006271443766911414, 0.005866655957569428, 0.005446162200497628, 0.010369878638650578, 0.00986533236554606, 0.008393157049961991, 0.006730509507051667, 0.008648098839582407, -0.014174875226500338, -0.009666462468461208, + -0.09778860124617035, -0.09388167364946327, -0.016065140920803786, 0.1088507652973678, 0.0684487825467104, 0.03979990167773588, -0.10363422699307197, -0.07798276763731622, 0.03709102100737434, -0.11353727642816892, -0.058498732999362923, -0.020074022581215448, 0.10398020364747089, -0.10086579738260694, -0.0685854603770164, 0.08827394045976084, -0.000982933648134826, 0.035034668442237786, -0.07563667475770193, -0.014569430010835764, 0.07277977478042726, -0.06622778499919633, -0.08177305195682924, -0.07432660966702936, 0.045515674877202816, 0.07391698791672635, 0.12404879957162494, 0.007120978631604732, -0.15456443888457488, -0.1387407464011516, 0.02189094081697051, -0.09004019094383002, -0.1885074066836862, -0.0042725432721540816, -0.12447272601839664, 0.016612154843121698, -0.03860586364841918, -0.13001919433866377, -0.037862111965248725, 0.06544884289509832, -0.0894693020503496, 0.03975706979786024, -0.07044950273045324, -0.029185196251876436, 0.06125960670926265, 0.05556764415276373, -0.0005680143130167981, -0.1162192250783664, -0.09156651994240114, 0.026044896686713153, 0.05926382147425922, 0.10673078360626319, 0.010346708518015958, -0.09368233331566853, 0.10502741549745576, -0.04021700753541829, -0.10785949691069696, -0.1892629183424764, 0.039768633536948254, -0.08371444239365483, 0.05841355194152953, -0.043036704931528794, -0.12660226241897188, 0.12548060010289738, -0.09894409759693108, 0.10054515814356094, 0.059545629980316775, 0.029190743782614846, -0.09265914438489281, 0.2772923160069415, 0.26127825962722595, 0.07816720580642443, -0.03780270013237298, -0.11906414572492795, 0.027972448068796448, -0.1541836874787816, 0.057631239017998465, -0.10278585998262507, 0.1716919178867842, -0.15281291560692475, -0.13078956387567353, 0.15839789257170148, -0.07330771627977979, 0.020681009133818457, 0.28459596735080755, 0.05678293269128435, -0.19447992030188058, -0.23705861123820232, 0.12261784839196768, 0.29760213318100165, 0.02091109212275321, 0.004100534513155202, -0.21415257607658822, 0.011161829040109868, -0.20521274251560914, 0.024156074193657732, -0.010075662436509817, 0.1700580065920516, -0.09872476399560759, -0.07777534001066631, -0.09237792924245021, -0.10720820193226975, 0.05802780576132484, -0.3499577708361839, 0.0023442973975112344, -0.23901530455834144, 0.16036086803717212, 0.08689516095037383, 0.05209159407836188, 0.1213948456938214, -0.06249745687792106, -0.11285027600448938, -0.047484527713261414, 0.07652647072124964, 0.16901836480550944, -0.271109936730723, -0.09224802836349244, 0.0028510169343868626, 4.934886071572553E-05, -0.0031952517326614693, -0.007233838959598046, 0.0013996895377451695, -0.0015772807607467697, -0.010685695151229802, -0.008846695827173325, -0.007166560849224445, -0.005189085603191363, -0.0035396423045155334, -0.0060614245421800605, 0.017421252166038872, + -0.09529779523156826, 0.09034845058029141, 0.017138759954128814, -0.08201697321491759, 0.10901096804356028, 0.003612415858468638, -0.0918146642876516, 0.08823084379668356, 0.00785316472834071, 0.09174948260735737, -0.07290927906210778, -0.0016863674471444391, 0.11519033532689639, 0.07221050297118964, -0.059252468049281914, -0.09092234166410115, -0.0644343932689303, -0.04280988570951521, -0.11918590013132996, 0.06733705988716694, 0.04620396906313895, 0.049664015471703786, 0.08046658515473176, -0.10869358241194226, 0.04221854730069803, 0.1529164278085275, -0.10717798457879076, 0.0027335933754996933, 0.10295253140503956, -0.14890875017799232, 0.020547299277193527, -0.09833413013415211, 0.08781725431082892, -0.04289550581936201, 0.12150430977137011, 0.06125122864515993, 0.034622924748681234, -0.19753805767749014, 0.1318409526354738, 0.08070976443024573, 0.07973364093893873, -0.17469760131253015, 0.02180640156066408, 0.11754727187565457, 0.05536258546376553, -0.05490806419932173, -0.035383147730776845, 0.1204772420397081, -0.1438473259709001, 0.02840651534827351, 0.08595568477693946, -0.04369151750326592, -0.08115974189394391, 0.10564659229960989, 0.006665553131304935, -0.056100254922569655, -0.14519882993238262, 0.04721876080630932, 0.09687238279944879, 0.14450696217017486, 0.0016249707504287563, -0.13955828326285272, -0.16371790618725804, -0.003019595791116554, -0.07005820571834226, -0.14272271920591056, -0.10943209866275896, -0.08587171059283442, -0.01680312941679025, 0.17245617507416508, -0.2613684184618929, -0.1132991943637531, 0.15378209363869344, -0.09551000363706963, -0.0968501175452514, -0.09545781215479565, 0.10428296119874884, 0.0035819096646671736, -0.1752826410965815, -0.24036477716486568, 0.040211027444726606, 0.05536511920428996, 0.05275009468146608, 0.04546693529499187, -0.20867390311050174, 0.09585427755336859, 0.0277693201050784, -0.007600639226492141, 0.10203310325359209, -0.16359274986513128, 0.14834583498134316, 0.17657377845621205, 0.1279804181899883, 0.09260666806816585, -0.1759060458170127, -0.012834586933802837, 0.019840019212594606, -0.20803540230341755, -0.29025727465229356, 0.33097842348983114, -0.11110843875294586, -0.021998913476699522, 0.18539383557689476, -0.24597547670420272, -0.04211618355460792, 0.08493506154636626, 0.08687354575885914, 0.2683742759897248, -0.18009428693001228, -0.011682826392977975, -0.2002374856188609, -0.44352130030692843, 0.028248413743806756, 0.005890516380466255, -0.020637948278531392, -0.13058347424791353, 0.30956419763494697, 0.09382377769022478, 0.0005819164745679908, 0.003795985635180063, -0.004777806338374397, 0.0025162206204481785, 0.003432883165280334, -0.0005744082188234717, 0.007251517995534581, 0.005035168515614988, 0.003496016724003178, 0.002018185786538595, 0.00121210939862966, 0.004916806540202028, + -0.005190635769361927, 0.010075583065761718, 0.017844736458432934, 0.022931850974928406, -0.023826598134368243, -0.03780383890745954, -0.031494010453333755, 0.04236352766316444, -0.04667107082927221, -0.06396917002081136, 0.0385264698234639, 0.07228829326702732, 0.06182733431278718, 0.07427628506244048, 0.09044711062027852, 0.09831508775144102, 0.09093019946529907, -0.08965175987870053, -0.12938943777992074, 0.09127011464561112, -0.09161683378858157, -0.11309477189958786, -0.10074033205803806, 0.04956790838167783, 0.05013196463145478, 0.04760264518165337, -0.07301425893414944, -0.10347092947499965, -0.06788509782611721, 0.006189996862441019, -0.04440749374009591, -0.021210750226948308, 0.04288794692786844, 0.1026828252600959, -0.1485726203537772, -0.11387747987741521, 0.2421638041474341, -0.07741070039873446, 0.181653033728504, -0.21533689267418724, -0.1613340680705424, 0.11828228952672615, 0.2695914612998482, 0.09953608601857299, 0.10051105271358282, -0.040543159237394634, -0.07837876779733025, -0.08312274470604587, 0.0305513489772815, -0.016786887949692478, 0.041880511006695355, -0.055533430713483135, 0.0710851164144175, -0.1125492752216178, -0.10671841014166877, -0.10879550110851278, -0.10647765891380075, 0.12769759436207848, -0.08912797085812947, -0.20308336121648157, -0.17557498801909052, -0.019077933507521568, -0.17870132952241805, -0.18371093965653554, 0.09904359658855216, 0.17764716662331206, 0.10639860259504316, 0.16758518366516253, -0.08308168490036337, 0.11316704265341787, 0.015245191184165452, -0.02696994667757135, 0.012424514158314632, 0.20104397776163516, -0.051650792995042286, -0.12471985783235862, 0.12309935312060515, 0.13415835555225544, 0.016079874318946665, 0.08319410537532018, 0.010309986912813556, 0.20728188312146675, 0.12084258549957556, 0.06684137942658036, 0.06751397949073104, -0.11386274973844833, -0.005636350594933295, -0.1358114743360114, -0.131942313321411, 0.04487443699186656, 0.05939864326503414, -0.025389639314315385, -0.05870293184341611, 0.38203242791367, -0.060991994216152666, 0.21566601843724728, -0.10141278651588063, 0.11017625155717936, 0.21323375518609322, -0.14643052640334991, 0.12463814273895792, -0.09240546294823596, -0.03586241908726403, -0.09837001087708362, 0.15617347473720936, 0.14823459490864277, 0.07968675367974076, 0.2149410952558963, -0.2929541169946069, 0.04658804476887054, -0.18890695467818258, 0.3577699609614102, 0.13530894660553525, 0.05298071430033571, -0.1720637391416464, -0.3570108616759742, 0.22453853410984678, 0.09166607345193449, 0.09571696892292808, -0.007436528592227095, -0.0008507364805266267, -1.4406379411149861E-05, 0.00020604330606111606, -0.00015929386536907286, -0.004711081740683933, 0.0032069996211066334, 0.001613345208479118, 0.0010126952404836825, 0.0007107085781786204, 0.0009682754112323583, + 0.08968877028135247, -0.09920324083604994, -0.049980330038825745, 0.052535474172548925, -0.1254364429813, -0.05693641478298368, 0.031045668022888728, -0.1089688301517694, 0.07650849938377799, 0.00983956442883266, 0.0921634186146744, 0.07211089345507701, 0.02408377483669436, -0.06747454048414415, -0.0754509373038701, -0.0839679250292392, 0.016810875943139462, -0.11142978924339252, -0.07637563280877807, 0.014025832876463576, 0.07565667935084776, 0.1359437527809557, -0.03686972375210557, 0.16084984070815, 0.05287496523645548, -0.051993500493105374, 0.10610272813312709, 0.07804672653145169, 0.010761915873946114, 0.12501953437404334, -0.04420255387869424, 0.025344565845042497, -0.1445999794036059, -0.1816886596859417, 0.07605610461929141, -0.07115766982058669, 0.10180807619445055, -0.12593503806391712, 0.049104642272211604, 0.18490294863978188, 0.21802483530479452, -0.03966331089812817, 0.12954186090736686, 0.13993986840751538, -0.05817019510403825, 0.07263451584109143, 0.07576604942096046, 0.007140011430818672, 0.10744169414728635, 0.04074878897385214, -0.056455200033930106, 0.1493606071736419, -0.11988660574871728, 0.0641193155812612, -0.07192488551966734, -0.09759812615223537, -0.02096633685425946, -0.03409625983250508, 0.014813404445991319, 0.13519562511247493, 0.02706265168698767, -0.12117849401822454, -0.08682627740917195, -0.03656460347149143, -0.041097803177822564, -0.19303880073068336, 0.038857885194948545, -0.19124786899801166, 0.08435372278403915, -0.15850455549781323, 0.19283657553220626, -0.1342821838748586, -0.23098216699145094, 0.14138827008677732, -0.31947089431719994, 0.006380353753895761, -0.016272294121173363, -0.13530131866330136, -0.04140388169676501, 0.04160403840164951, 0.11687501734604953, 0.05124309496668622, -0.18811288427289746, -0.21289186232639398, 0.004313360993099729, 0.04138787908381645, -0.01569696444631115, -0.011400281684702038, 0.07449186096494284, 0.21110907428997414, -0.029663989855959513, -0.17843242242248983, 0.12272375435437284, 0.1089141738555011, -0.21045681954503132, -0.08524295427153865, 0.0734795426510774, 0.00842542452580605, 0.11216121152049746, 0.1601467683710995, -0.033588961209789596, 0.13175240647110345, -0.2341193907999409, 0.10866092384858374, 0.38934273371615363, -0.03181855958083854, 0.413056924998551, 0.2584965991926143, -0.19544130132903587, 0.05477482336071488, -0.0171693875016559, 0.22952700149026206, 0.11153211506303762, -0.10979854876475158, 0.06563007125819596, -0.012918290964997053, 0.043510707055669215, 0.16664693644820233, 0.13735564295051153, -0.09300494465223848, 0.0027253123679043152, 0.0033065831482249576, 0.0037652504552841137, 0.004047072588749916, 0.004883746357083205, 0.008197726493999372, -0.0008114790250731731, -0.00036031397827214137, -0.0008274735597724112, -0.0008638766397870354, + 0.10210873455634717, 0.08059354797921761, 0.04600372036543737, -0.11313499869660455, -0.024518107376600443, -0.10036252023052465, 0.09910619319424349, -0.00763498250894642, -0.0890744447240875, 0.06957637373308787, -0.05753391760628789, 0.09535889680709941, -0.03501514702412115, -0.06463261591130928, 0.05453662573550809, 0.03568888507604152, -0.09429734921084315, -0.030106213156311804, -0.05731329979106019, -0.074043494432679, -0.014975492462997265, -0.07792980374600657, 0.16331966205798124, 0.03237456732938664, 0.08985884575131195, -0.09887849544474067, -0.007537418520148376, -0.0062136304627538625, 0.15191077445860005, -0.04496071931674879, -0.10095597469994688, 0.12287428711327848, -0.11863086705440593, 0.033737332026762976, 0.048660100610346375, 0.11999029702412012, 0.05246612230635437, -0.04877748823116456, -0.09792433251151712, 0.015636904030567896, -0.11379189652758832, -0.11534922102330906, -0.044558392159288016, 0.10697439491333155, -0.11623320296601981, -0.065286475189228, -0.046724075592640406, 0.1430895907135112, -0.018720994975538238, 0.10374279400733333, -0.11158870472263892, 0.05051339057971584, 0.07812678120136585, 0.08025322187105455, 0.10824838066413989, -0.1259350832351761, 0.04003599933184551, -0.0416606648849469, -0.025339643197545468, 0.013339650103073973, 0.12578174209232731, -0.08810670924888482, -0.015272420861686009, 0.06662607675575787, -0.01747616016412573, 0.030763447871662422, -0.058619024458351605, -0.07417559009150151, -0.08904436213374244, -0.2870141265122669, -0.21362180428750913, 0.3494553980765414, 0.2350788348580915, 0.03632335382054518, -0.13328426152934428, -0.1702039246232602, -0.04670109045379116, 0.2295320796204589, 0.11778000820122926, -0.08738185680698611, 0.040203659916790556, 0.06539190487119388, -0.30628198047727817, 0.18373637189910738, 0.10802718138794297, 0.03801196794115886, -0.017513148242374786, -0.06786870379434583, -0.2237748957463221, -0.0259013018050186, -0.009679328107346868, -0.030285561442077027, 0.17156066377797238, 0.09702409014183289, 0.27792816996469355, 0.019304299513378934, -0.20241460017545754, -0.0512776961954431, -0.03542406300176143, 0.09248595913489346, 0.2779043350965459, 0.3056354442221634, -0.004981328065692112, -0.006741410397641511, -0.17581346733696235, 0.21888078200582817, 0.20804512427474087, 0.06526497255034176, 0.07542813949707099, 0.05234554406450062, -0.26104357366058695, -0.0656743014005118, -0.03743780119779605, 0.4677339607302852, -0.14057647173589763, -0.15902756749724523, 0.04001818213721325, 0.3191428043724632, 0.03957063694520651, 0.28214161801150334, 0.09182340278153149, -0.00639783762027362, -0.007466515690184888, -0.008405158182009306, -0.007526492675302216, -0.006879105020212627, -0.00956583816113483, 0.0006457184939398491, 0.0004999287774791472, -0.006765772579652669, + 0.020650399178791884, 0.04135071954178897, -0.06059948632171591, 0.06953521388309089, 0.08285193427686291, -0.12061758203752443, 0.11832813888672052, 0.09722329262190711, 0.11325190450496536, -0.07752422911376917, -0.09431391167222788, 0.09113008881071041, -0.04419154176692613, 0.007364928891779346, -0.023536982738687928, -0.02218152140675983, 0.020282140602007073, 0.04552124471114924, -0.07328827350994258, -0.06547367266760676, -0.0945465070089494, 0.07294821975599906, -0.052316504384185177, -0.08068445366450994, 0.14080537452923494, -0.09828144998061164, -0.015578653956203305, 0.19287820595955152, -0.03576637576872773, -0.156882572359901, -0.12214048295163717, 0.13664048135002851, -0.040149915421206, -0.16133123692717016, 0.02127796202090224, 0.028734084669064384, -0.006901001885792748, -0.07489028083292004, -0.1063902322568288, -0.06283766088715756, 0.12890963486592288, 0.14367010684178366, -0.19493065826262024, 0.11728292021478938, -0.03767161054240291, -0.03121631326250997, 0.10975291614481696, -0.04586795889247799, -0.07964989119006281, 0.11787945043571209, -0.15471505108851735, -0.09596199522878894, -0.15229238309278492, -0.007570402164517292, 0.14163841735627303, -0.12973225144492723, -0.009351520654672865, -0.05704175526404016, 0.003539869590030596, 0.07136980652456926, 0.001058176725352092, 0.025437238364321844, -0.13658224301870658, 0.18260181172277226, 0.07858757843355155, -0.143644937351277, 0.045888874842661985, -0.03106420757867358, -0.10784573597995807, -0.08917474435409191, -0.288956144031285, 0.03560914721406713, -0.34288326773094735, -0.2779147980912724, -0.14903805153806396, 0.0009943055350979944, 0.27807444154275285, 0.06851452922770719, 0.28841645694923307, 0.022459061686378314, -0.0021435271686183637, -0.12295420157871877, 0.03423477756001172, 0.03563295666376925, -0.06157127137608756, 0.018337123850093503, -0.08527114667457031, -0.03261653752763558, -0.21127892775184115, -0.2101547780863566, 0.056137674616549615, -0.12285037296896738, 0.0200612574565679, 0.0326045977836192, 0.1838265382825802, 0.216766220844027, 0.2384699459073548, 0.20553436773620032, 0.017040294066774972, -0.32789189918820166, 0.18365368621728503, -0.1533233093369194, -0.2559255714401111, 0.18874977158435993, 0.10619389856220264, -0.2848313081808103, 0.11043197419241685, -0.11246542432171773, -0.2678878570913786, -0.21560670402326773, -0.054134336398256135, -0.07188182833183193, -0.16093211764135185, -0.2506108118196286, -0.09840874827083705, -0.2903160698724093, 0.4552579204601197, -0.0851928367169449, -0.14703962091006642, 0.2887258925846628, 0.5748446662251201, -0.08956552448198536, 0.011674079992927827, 0.011622477252743468, 0.011037837587917885, 0.00951032897419199, 0.007607825572520349, 0.00963243187855857, 0.00709119998545071, -0.013454270766672593, + -0.07979381796954958, -0.11314383696444567, 0.07269117539165061, 0.021568606693195023, 0.08429017688913029, -0.11154732363654134, 0.07412163006256425, -0.013880824845462327, -0.06952597716765117, 0.10758371777093736, 0.03159735803874256, 0.031346084020881466, -0.07883955964506821, 0.11393050504584182, -0.06681176778095872, -0.038605809987948415, 0.048389316993381386, 0.09288750035564743, -0.05844727061580472, 0.04021529610456964, 0.12040774837931464, -0.07391172069775999, -0.0929641313750297, -0.09756822874486223, 0.11868589126704596, -0.045265135181784336, 0.0981883419785183, -0.03139962667932226, 0.10400674155272337, -0.059427769161933666, -0.0844800647021423, 0.10913598688857291, 0.05868443365844696, -0.08061653283940226, 0.13838547863758174, -0.09288383774364786, -0.09744510602556096, -0.0358559319415685, 0.10463797165208404, 0.23586445152258997, -0.1954831649446572, -0.019293357082135632, -0.16268076917159388, 0.06747749988962704, -0.013605869295086885, 0.07934745765098243, -0.041559745078108765, -0.0258808931944146, -0.12206271418748892, 0.12290238743089324, -0.07137159758479504, 0.019953739074915832, 0.07163161636019426, 0.1637758241231419, -0.041439361074710516, -0.07367909228460146, 0.0963511511459593, 0.10161788534770465, 0.0816858163175821, 0.07395866799258488, 0.039595368165347866, 0.03311614938563751, -0.05390009389820983, -0.000937214880319741, -0.07299192043278287, -0.047589152107842744, 0.03619006985850085, 0.057740280601321595, -0.06707909424491217, 0.2355269244911331, 0.059651021128353646, 0.1852587496185418, 0.047143338282644526, 0.1328279575146132, -0.044760548128648055, 0.22242014413708963, 0.03098766852866659, 0.11168042969928445, -0.09365364344792354, 0.1465817638273863, -0.003344749274223524, -0.053607642886141116, 0.21327501555620776, -0.13224285896290555, -0.24223376112147335, 0.043812870780306025, -0.11803711054474143, -0.19998220247905207, 0.05637925320730326, 0.08632328426271764, -0.1784795011384935, 0.0905273083518112, -0.13049067669759168, 0.3036709367422176, 0.15891738745120557, -0.09774850175980265, -0.16242334773382971, -0.13194008255914697, 0.23248158793541682, -0.2262477343599645, -0.02437559427231526, -0.18725166558133835, -0.09329167815414964, 0.1171321694736222, 0.32102075500645266, -0.39126244802653665, 0.05234060804743318, 0.22008226421442098, 0.3128002718474076, 0.24460198693801677, -0.4484028339427974, -0.0655695820534035, -0.34881481507145107, -0.10422451556466761, -0.11065751968612114, -0.0578876625560112, 0.2695021370362534, -0.26679894963200296, -0.2725587200784778, 0.34056241508101576, 0.18605459497866683, 0.08783262973279359, -0.08700503736368911, 0.015666391992365976, 0.014886579548176355, 0.012880899705176583, 0.010576020904432276, 0.016381538306957284, -0.0029894726032782867, -0.014310976668064839, + -0.10687596686473237, 0.045609234856812154, -0.07340342679446973, -0.08489633210576697, -0.03454652152585866, -0.08868172237140955, -0.023279267770390882, -0.10418088184972829, 0.049407003108324014, -0.0422950964003796, 0.09587326594006139, -0.052041596187471145, -0.11769901073809672, 0.009356629736011327, 0.11660295109941315, 0.03451658410201403, -0.06902222461552701, 0.12015333980917003, 0.02377144132067651, 0.08526954270354796, -0.03585708478641616, 0.060947092845719884, 0.1067531704811681, -0.03036491352117237, 0.04102245044694662, 0.09600400919250508, 0.10099931691025794, 0.13121447471380573, 0.03825499603466032, 0.18615614864384336, -0.020656973637084446, 0.048011406113897696, -0.020072835394591707, 0.06980837884205451, -0.05173166982579679, 0.059955346474489066, -0.20872169260729465, 0.08235149467402808, 0.09126253789332091, -0.1538734624971643, 0.13392002575914524, -0.19864819140397016, -0.05940435908952209, 0.09106163599961088, 0.05182348813710408, 0.04358438127256838, 0.043617430523740876, 0.12834508872978728, 0.020482875040913135, 0.08625381514322124, 0.015875970673955526, 0.12455449557135864, -0.0967714635071191, -0.08830927427528745, -0.1100570734622192, 0.1419987097685118, 0.12664601079854537, 0.09685117749986642, -0.079364202740311, 0.026912537690057393, 0.07578025071129288, 0.17803584794918142, 0.10490286931264327, -0.07661862632268697, -0.04491476123098967, -0.10753559581900118, -0.08374934883993974, 0.0828874907809326, -0.04235306043236449, 0.17074992292712834, -0.0368875726539776, -0.10174442182067962, -0.07540427259296345, 0.1755148423180187, -0.19202487780732957, 0.24568498450235135, -0.25555174353481985, 0.012411466874009704, 0.1423276700568349, 0.028377782182789666, 0.007748023425928539, -0.10100714604139473, 0.08631722923549724, -0.11909334506531695, -0.11225142353352852, 0.23233113232242072, 0.04654740777502234, -0.15158721539321462, 0.37968753375301806, -0.23489004435971367, 0.0783049642769577, 0.06161346808588236, -0.024019198360463727, 0.1753568589787617, 0.09836296340575464, 0.007696825778540557, 0.1895001074144429, 0.14270927717612927, 0.10481033956131867, -0.01652215488201991, 0.20742885276466513, 0.3008735205097001, 0.19536091636073363, -0.2387933347412771, -0.22702509361629195, 0.0034307942262059897, 0.3854416269377274, 0.25197186534118876, -0.1231114147850775, -0.2946224109047138, -0.32836510638610245, 0.013884644510860833, 0.12960962344237703, -0.12925437107480686, -0.04916749754332159, 0.17914234397879716, -0.1647144887632369, 0.007088985371370544, 0.24615931932052693, -0.2903901198113628, -0.10212156488964104, -0.003921961282065716, 0.13448489539890623, -0.0847891570486982, 0.019050372974518864, 0.01730535318399475, 0.02298331144823665, -0.0009809769017132264, -0.0050963541656520355, -0.007856410010124132, + -0.035696844708254, 0.06552788660120246, 0.10680345799234292, 0.12092519320996538, -0.09774293400020549, -0.13662379167910302, -0.055448529737677194, 0.06907334353348185, -0.02752036821345147, 0.021533462011011632, -0.08764345233639108, -0.08301287841967436, -0.14757187254816118, -0.14072395109364608, -0.14359324294533357, -0.09474954821395441, -0.09441474055091623, 0.07615939587292447, 0.07225591031312285, 0.0052687534714224195, -0.06732408606148016, -0.12055715135862842, -0.0765285836855609, 0.05096298809834152, 0.21815082893329332, 0.04369684747324031, -0.12501123624060712, -0.15367993629975418, -0.11829588719032356, -0.030624855034607264, -0.05128841334154098, 0.12638230271548578, -0.1557289960781229, -0.19001858233289037, 0.2251884524858067, 0.21979978066917516, -0.35701378540878675, 0.1300463027862262, -0.09859391525561932, 0.08074418622113433, -0.12275913617667983, 0.12273465132824755, 0.15827897101152405, 0.040911304269347845, 0.11258740252238876, -0.14557595039844887, -0.11080557683669816, -0.1710774935832163, 0.10780257923113412, 0.1849204629113886, -0.012499804135270224, -0.10917227109054607, 0.09490337853723721, 0.08262711247723646, 0.21976358857292322, 0.04959115756185729, 0.1674999877530636, -0.2545935940630761, 0.13045916476455954, 0.15368243271248422, 0.23948815978313534, 0.015130314184543626, 0.016406438845367674, 0.16330774061270764, 0.14018775515894874, 0.24507123073143586, -0.04633297536702667, 0.03150530331834253, 0.1141485279173565, -0.02120254426052347, -0.20830326205277536, 0.18861325371949286, -0.08874979166772538, 0.13560543813195583, 0.2533776269474956, -0.20300669173039304, -0.03281599990569511, 0.004972260962347013, -0.0180132399864144, -0.036739849585138, 0.10646945002515648, -0.025580945203486933, 0.049743455438471355, 0.15261780617977339, -0.023325500261110136, -0.17529368850742005, 0.1363280285015415, -0.30762452499161147, -0.011609053330649825, -0.11580736806253261, -0.05122128502940415, -0.05070776815130384, 0.11833522695798399, -0.19535887623974457, 0.003943905794873672, -0.23853849430219287, 0.33314692573107707, -0.1892638432282711, 0.12573249164445366, -0.064347040683279, -0.15292403233519264, -0.11176981411718535, 0.16544336294289747, 0.07744768920002015, 0.1562283325426769, 0.15545874292694062, 0.03509666243331849, 0.17380648435098614, 0.06985003942336196, -0.06804102854695471, 0.07645248272241044, 0.008184961500539257, 0.30153137770346633, -0.24449286812023163, 0.11516114661543023, -0.02039684300932182, 0.19518023928873635, 0.06501060065383406, 0.14150677912589332, 0.273228642583993, 0.21486468388308996, 0.19311427163703504, -0.4570980655078515, -0.01366693833113987, -0.08294517139240958, 0.03092550642969233, 0.0071997190901828476, 0.0019206329352030177, -0.006288186768286035, -0.014756120479437806, + 0.06830179184855929, -0.10337269954061205, -0.1213348711667546, -0.0689526552013606, -0.03998760124524547, -0.06112020539062983, -0.1386618574301976, 0.060897728861941156, -0.01898774236247028, 0.017124922365127956, -0.07956958107412337, -0.14281386236125473, -0.0897808270054624, -0.048864987363256514, 0.06658769555066385, 0.15113235837695807, 0.1127034882912853, 0.015466070526361942, 0.07333622034746023, -0.10428650343416078, 0.11618530469344074, 0.09123771859158626, -0.04185076832779294, 0.2352202112984345, 0.0863187687830666, 0.11620476397772411, 0.043002929097946466, 0.10457373673912437, 0.09500963798122511, -0.12064521410021094, 0.14737218819441006, -0.06181930414421676, 0.06452895381166841, 0.25308463830268324, -0.24254497453577034, -0.06001221711616516, -0.07474390551929373, 0.21274723581674154, -0.3067441165375826, 0.08622869448294808, 0.024013231208551408, 0.24410003370806815, 0.014929943400238547, 0.15608125996078076, -0.10004999581355338, 0.23175884544337755, 0.35339979732927695, 0.1660618781351909, 0.06133952341000318, 0.006459435863907119, 0.21535011934353485, -0.06476333788174865, 0.09861568641203255, -0.034441310746149215, 0.060831074500777294, 0.18051878161371404, 0.07089325902725536, -0.10829664606143626, -0.07620489438798327, -0.21730691174030176, -0.038700083735268107, 0.03859291240052011, 0.24397700365688688, 0.02189324889360198, -0.19022194740666823, -0.05141366104203307, 0.0464752475304288, -0.17314346486145893, -0.11144136882113498, 0.08583599052885345, 0.07164954612888798, 0.10960314712726335, 0.1685373170902964, -0.15903989781028913, -0.23004813852933031, 0.03049461671928092, 0.18555574867457458, -0.10387024695744676, -0.10827375855564672, -0.02262661352408882, -0.03449396369496491, -0.08791748423466633, 0.009895585486884396, -0.05671898902098401, -0.025568028468296138, 0.12642531230755694, 0.1657855827783025, -0.02810577018500342, 0.0874866038803615, -0.1101894967835784, -0.16319512366651412, 0.05428026904348189, -0.15447009485703553, -0.1483344496784964, 0.16952443672660905, -0.0583586685116211, -0.07310756244832241, 0.031743717387910354, -0.16732346943333593, 0.0759804634576513, 0.10027605272623269, -0.14147119967574937, -0.020780751450002282, 0.025309255379575124, 0.15038025096569152, 0.23869127335030643, 0.16286949280287003, 0.10842590273022996, -0.11539752480642257, 0.13819521603419618, -0.12239134565606102, -0.036387624757278234, 0.19092486019184451, -0.48648462520744606, -0.06753151004476564, -0.043396548452203025, -0.07066141371948084, 0.05730893262871737, -0.3611238446962625, 0.24589148055092333, -0.37537851176760834, -0.07793234903229868, 0.009087283060519551, -0.011067837920659674, -0.08437068090337846, -0.08548006233096482, 0.011090465256341102, 0.0020918145221054843, -0.008521229840088622, -0.020218263480543633, + 0.10950407596965858, 0.026679259275151954, 0.10375397929899627, -0.04309250108757836, 0.10433444493159374, -0.09522354532883409, -0.07228566723217822, -0.10498298829969882, 0.10045790464291474, -0.09928619436709428, 0.07031023153539978, -0.09814467065283722, -0.07951049245219212, 0.11159295192572079, 0.052890961957047795, -0.15576407203276882, -0.028602628540719204, -0.11017194795547991, 0.05067581782261499, -0.15351954017179317, -0.06883257091917745, 0.007243621050862638, 0.16315888011893373, -0.012115268092003835, 0.21617334006590502, -0.050610316713380496, 0.23096895025976272, 0.033973984634880855, -0.10993103366547818, -0.0026835437893308217, 0.14911455748780475, -0.00418441540366889, 0.17211816921667736, -0.16100652241782218, 0.10608891474574553, -0.1107775128586533, 0.10462174185770633, 0.17052204983987074, -0.11425532463979968, -0.19972601169013568, 0.005065785531437002, -0.15249934716303262, 0.08627391351162464, 0.16299914358869522, -0.2684990571465621, 0.003936848017989682, -0.23698571648286892, 0.053546812228246615, -0.23480798564162517, 0.16734656546614785, 0.064145217967257, 0.1577849212806512, -0.25855480870565895, -0.1232939065602618, -0.17180460118719781, 0.1837040012175848, 0.10153918662978609, 0.15167231128601757, -0.06855657969920385, 0.14336468835626154, 0.02929713267888043, 0.0747615099973262, -0.011297345878689203, 0.14724880189291942, 0.08778082695927136, -0.24902958285151805, -0.3205623290723365, 0.21045385833946836, -0.2260384116559984, -0.01917472534202891, 0.04596939758037618, 0.05162933109181236, -0.16232717463338467, -0.19769402124674706, 0.00885760039431838, -0.23353159534432225, -0.045212210381181325, 0.10748565090702361, 0.05001766313046239, 0.03254212421529369, -0.06401458439208231, -0.10348914495584952, 0.030468300895478376, -0.04198514971020954, -0.06006925235305058, 0.053029519274275426, -0.0022165119350423075, 0.09238389624287476, 0.02500695960513124, 0.045219014796882735, 0.0986344713814172, 0.09224039749867693, -0.10515149287705013, -0.188886333021075, 0.09299893964080057, 0.1644401183956672, -0.22416940105812022, 0.05739159304055314, -0.05821490291671025, -0.01899362300375188, 0.12812436704777122, -0.12891903473554112, -0.19044911829601013, -0.0007792080183004864, -0.20341085194720396, 0.1961329960471452, 0.008005610295683495, 0.06605063525000733, 0.10462714256289136, 0.4110923591015006, 0.12613304316884766, 0.2723663404543881, 0.17908999005053947, -0.32531135812402784, -0.3072912113311474, -0.14131276251079655, -0.24581293530431267, 0.0760801396616616, 0.062496346152309444, 0.3388048013446086, -0.12418023780767609, -0.02044609732728256, 0.1953003322118092, 0.20334014533078143, 0.07672891327477735, -0.21863388171241221, 0.08940209684917882, -7.781654522908202E-05, 0.009154549156153782, 0.025117840871240082, + 0.05002881764817228, 0.09106082922060461, -0.11132464629529563, 0.09309604094882444, 0.06948427790271614, -0.0542785202829781, -0.010989705256688782, -0.10023236080600366, -0.12340499768656538, 0.1421065308972796, 0.11872595003574554, -0.07332530477760199, -0.00867647437776793, 0.06452669948236554, -0.09715147393294221, 0.11744197357627388, -0.16452722147601587, -0.10708700252286929, 0.04745370260135372, -0.013202785003628119, 0.04087331536649068, 0.0331537853951144, -0.043424752554043544, -0.11838133327921586, 0.23098654577756741, -0.16510847606943024, -0.05030364743520062, 0.09248110790659139, 0.09702188175778763, 0.10788963956719361, 0.14762465710875214, -0.15960509567658807, -0.09237152449609272, 0.160998561861288, 0.07504930273559783, 0.12318715083522758, 0.11027943545494173, 0.1558688514266127, 0.29036159630944236, 0.14443655284144952, -0.16369563233308856, 0.04609464245326111, -0.07058993714670721, 0.19942239398522554, -0.21873167402704946, -0.25833953997970305, 0.2470733882533002, -0.10418969793669454, -0.12252231905127037, 0.0865208952668818, 0.02388675554012305, 0.22189707211128615, 0.24895486894348812, 0.2074217483833937, -0.1758641324731074, 0.0082701322575294, 0.13799686451857596, 0.14700585026315793, 0.07968763852862489, -0.10046451815134778, 0.22416567953521624, -0.12485904210580888, 0.07244687090204978, -0.16281237145131516, -0.26818153922029236, -0.08969075910743766, 0.22956389236283117, 0.20817651899044057, -0.07430579695011885, -0.053074351082255306, -0.11616278919892667, 0.10082391258191542, -0.09588159468754237, 0.11473506365102472, 0.1993713452382312, -0.022332260929825636, 0.0024071608723232486, -0.016879133510766833, 0.0662109537569559, 0.062086714083989865, 0.1325290338974465, 0.05696806069313555, -0.1628424655505725, 0.018877691020614033, -0.1211646543837656, 0.027460574870550716, -0.08066317457642745, 0.044947994298426365, 0.13487271561129746, -0.0330845122924319, 0.03886053945706529, -0.06434927149640032, -0.04899469292886791, -0.05509318001856374, -0.19704213317106464, 0.017413459727400403, 0.26255744567028905, -0.10000181813187237, -0.1345763657595088, 0.006444763168856529, -0.03453570470793606, 0.2030145747242338, 0.06783764962155632, -0.12824738183047724, 0.21704397517097646, -0.1396935092018712, -0.010008856909164972, -0.1831906071932254, -0.3137988254300469, 0.06746701407381335, -0.010232565761205176, 0.5337653512257005, 0.1882384913540143, 0.03781989250672704, -0.26613118995325064, -0.1406973368937868, -0.2186492485794571, -0.0022833936958581848, 0.050377030188985296, -0.15052168021808, -0.11683016644243535, 0.4365661968551801, 0.20082108957849196, 0.4205004471855482, -0.12882894200159184, -0.4082432710238212, 0.45196761541003455, -0.09490869600107904, -0.014080761294607022, 0.01808287816245345, + -0.05544270489933009, -0.09794877484302764, 0.11257417608342091, -0.08244979578886137, -0.0459165769102483, 0.013499913262521092, 0.05487159864304911, 0.13304325357610391, 0.14057836936173082, -0.11824857066242608, -0.07342433424603959, -0.010195494971302486, 0.0964519678796424, -0.14054436267924098, 0.10090277391343826, -0.12175455267551251, 0.09312855440396633, -0.0014084338660306697, 0.06067609795546578, 0.07929356567603002, 0.06150461011071225, 0.014189278572177808, -0.10246619737675794, -0.17795997520249673, 0.19112631617564052, -0.15109418558561835, -0.06627824035675263, 0.04351035132840737, 0.09186633253059755, -0.00317231725544677, 0.11478732131613, -0.25917577100684513, -0.11602219897509627, -0.009462555257782135, -0.13371836136217624, 0.1762155800597777, 0.12476635452470322, 0.14803242555184165, 0.12348278451738898, -0.13560879614982743, 0.12312244868688461, 0.2684827246308496, -0.15089745153500747, 0.18349524625048724, 0.11795818467036681, 0.24564937997677608, -0.21266341025560326, 0.1403979385186903, 0.09900474822945826, -0.08308044864977733, -0.08993379994511475, -0.2672599958850091, -0.23893399069749918, -0.21142413820861983, 0.122103609257643, 0.022636741853671535, -0.19116225304939227, -0.20008515934152016, -0.12017749858631523, 0.04356773965694342, -0.16055623744336078, -0.04668322916025179, -0.1011081765404785, 0.13814353349121397, -0.07267115921035369, -0.07521375940128029, 0.18275688093332842, 0.10940362322823043, -0.22924785050696006, -0.19123498288588284, -0.08024873123929735, 0.14550136474587771, 0.03966628238323035, 0.16283134550058864, -0.0240648392313432, 0.14311728299118592, -0.13103440964776855, -0.037255804268092045, -0.038299248224943516, 0.118589974075033, 0.11824927014036908, -0.06365408539493675, 0.055574368767866415, -0.2149193775703494, -0.05537552806093479, 0.09616324981923546, 0.11379657652886307, 0.09812426573375033, -0.03661956765032852, 0.041545538652841905, 0.037380481010042016, 0.12482643392715853, 0.07861067510155482, -0.07526872083751157, -0.048058110385037, -0.24835771411225077, -0.08264902300070524, 0.028051611278427428, -0.07614733367211368, 0.2947997874631736, 0.019685393660741304, -0.07135457255943028, 0.11307451512685004, -0.09939482393242693, -0.04996633750969647, -0.12457319213883529, -0.1358432453414344, 0.15840321012186218, -0.17756986439314812, 0.21611002818622593, 0.00031365287223226367, 0.03824236667887972, -0.1355573692281241, 0.032941549906515016, -0.4293899327095831, -0.11941348965172986, -0.3834264629845245, -0.15426413676884618, -0.5031975216702833, -0.12590054175106635, -0.19983527410684024, 0.36719272934144775, 0.03936896349740657, 0.07558084093705178, -0.10519602386903147, -0.4901574690517154, -0.03637416288889607, 0.040182774708305134, 0.07854709052531825, -0.013457297049405313, + -0.109940460249522, -0.014547635886904003, -0.10672073203691629, 0.019627196548739886, -0.11314160563866466, 0.06146249280782945, 0.09177223764775261, 0.06368946997009169, -0.13350672946908262, 0.054293561838784456, -0.12491760440326356, 0.05467401007321942, 0.12901049249303095, -0.06597275144348864, -0.14520432789127763, 0.09395247934958617, 0.11321614225560644, 0.07081292647496736, 0.07589060386938176, 0.13602642464112855, -0.02424840947178813, 0.009750909096207535, 0.21134798443653835, 0.0004119146481718363, 0.08504931370295366, -0.062372022865479826, 0.09792719453354791, -0.04669311676784893, -0.08400955755273082, -0.10980219934394533, 0.10681657466130068, -0.0938842010458328, 0.145755531279246, -0.12705956154109244, 0.12013064161416233, -0.18024026943572913, 0.21099580096363632, 0.23468579752553134, -0.17863497496080022, -0.054705299271922456, -0.27247369830685053, -0.12834528495834693, 0.04948097572818566, 0.1235835099830304, 0.2695992496470721, 0.056539456860012174, 0.24020434394094492, -0.049360077748674305, 0.11514804823931635, -0.1681230721214584, -0.093941322816669, -0.11152590587994596, 0.26008020986903063, 0.0902458139134972, 0.15368183267718374, -0.14477001203120404, -0.22945704933000988, -0.13417818315888114, 0.162602164599116, -0.1072159970294264, -0.1614159196639211, -0.1392520218818046, 0.14553555726015946, -0.1931542718828125, -0.02632672329015814, 0.08966577649039029, -0.2839983623445339, -0.043935914555030944, -0.32891138385348734, -0.05433463923178488, 0.08626007630934285, -0.08667986809642603, -0.2159408580971837, 0.07156882759632699, -0.07895076121538024, -0.0012827280977198204, -0.06730102708368721, 0.04606331141014211, -0.016702738291696, -0.04559768881113278, -0.03590315444615305, 0.016278213265657083, 0.07175230612182945, -0.010992591676504434, -0.304415501151816, 0.018574936882689946, -0.21453902504736042, 0.110716684169095, -0.10636639665559222, 0.0708593849615771, 0.10444419643961417, -0.07086749902637748, 0.18168987460630426, 0.1150546492923992, 0.021897054350868025, -0.065870521293352, 0.06990535968413734, -0.062548216750678, 0.06675201664165048, 0.014512045053008897, -0.1995508859498835, -0.10097571388533823, 0.12216914872343312, -0.06174281905204037, -0.024231436900727463, 0.017253272505544356, 0.19696224453132746, 0.02585394822957394, -0.14441213943232478, -0.043329784469379636, 0.1323698974562152, 0.13107589041153264, -0.3272198860761617, -0.1284352496677672, 0.0911962850968342, -0.002761490249535347, 0.06669311690617301, -0.27895104518387087, -0.17227104501203247, 0.14856636293656442, -0.2598926448000477, 0.1697864448930453, 0.23592773121411179, -0.12554945716002205, 0.0028331905595678324, -0.20720632435453235, -0.07774542472550743, -0.24995356274755376, 0.32111830885591175, -0.0764987992545402, + -0.06335946346271248, 0.10012414678377432, 0.12736306553635313, 0.08954191896661241, 0.008994652031661863, 0.02880894609584122, 0.1310296746754381, -0.07975767197904074, 0.06523033043028915, 0.058345198308002603, 0.03589783955425675, 0.11381467277851423, 0.12635752398979375, 0.11677005828898492, 0.03045629295384735, -0.0726961204879837, -0.09111811304142019, 0.07196664042128034, 0.010760716266302744, -0.031003027247052024, -0.062487588439161176, -0.08370624570544624, -0.13285524771976487, 0.11436298251336414, 0.2032480416041183, 0.028273112962172036, 0.018497356288740496, 0.12303948918733437, 0.2018931790945754, -0.192065726799953, 0.19095823776169105, 0.03892287454309786, 0.11937467528697772, 0.18316701181487782, -0.19692513751568783, -0.14396242629499503, 0.08267320638373818, -0.04707096450146282, -0.29842332271339084, 0.1573284092066325, 0.11131677616604954, 0.14750133149716982, 0.04088798912759866, 0.23440079207329012, 0.23248713706466143, -0.27113300374448507, -0.19715100074475805, -0.16330237484322524, -0.07206769831652504, -0.1025685686384007, -0.2716111993306886, 0.044257070141226554, 0.004121868331027242, 0.1234173387521329, -0.023505634247954807, -0.29931632892165216, -0.15478533327917265, 0.22172789292267514, 0.055950275270604616, 0.09183892756088408, -0.04606624364487215, 0.07584180484236555, -0.05404553232662464, 0.041669587721330455, 0.04350751772428834, -0.024503696300217346, 0.11946506560034446, -0.27081052254822363, -0.0931686132564788, 0.14353138950754052, 0.012190664300705884, 0.025245263144600447, 0.027703153269250397, 0.1403598411270366, 0.1298855313258683, -0.21781360040769748, -0.005757437743692847, -0.09509442253091441, -0.004088812370461388, 0.08141110602110961, -0.09936384935074688, -0.16433827753353508, 0.1972890788651231, 0.03314845567425516, 0.004196172648778498, 0.33833704385264124, 0.04882822796777069, 0.1301817654038221, -0.12535854635885224, 0.04582425387300987, 0.03504593222395059, -0.011791825504088325, -0.04443403873081845, -0.08177813985334899, 0.1348274469694965, -0.11650089363863392, 0.06701745709364088, 0.20089589829084564, 0.078003814615654, 0.036814249380472494, 0.20313864432381967, 0.19878301936132609, -0.04894420866703335, 0.1994725649164259, -0.0384062154659869, 0.09804995963021036, 0.029374448666167494, 0.014029764459342495, -0.11310392173740666, -0.0784146678364199, 0.03891938017993564, -0.21159094115870095, 0.2674612253072983, 0.04575024884362007, -0.1534889837012218, 0.04825582320501219, -0.1128963294596177, -0.21647063256250582, 0.12614928425064562, 0.11806394420821455, 0.08122397324666925, 0.23169891498456388, 0.2666641759228125, -0.03392713287237695, -0.6439395312315289, 0.24233841308967285, -0.43165968124974297, 0.6273548853739532, 0.02283664475704074, 0.17425381979548848 + ], + "LDA": 130, + + "TAU": [ + 1.1197619827777812, 1.127605196970985, 1.0654651203919774, 1.127424006170046, + 1.1435846569120123, 1.0417886894062054, 1.1027085424020582, 1.087134742410274, + 1.0926081043833527, 1.0374363134297462, 1.127938095922853, 1.0617530678008231, + 1.0605925485667482, 1.0345308379480909, 1.026745614234824, 1.0293307814975132, + 1.0414575010655827, 1.0435685315102992, 1.0872485448829645, 1.1525861773625903, + 1.0747362896420318, 1.006122739106758, 1.125287952115595, 1.2047726469830249, + 1.126336951081915, 1.2304490638192982, 1.1602125421435059, 1.0341611240909285, + 1.1281444150737507, 1.1127414020607949, 1.1360342059410655, 1.085136374483944, + 1.079855295882761, 1.0006621640165891, 1.020811881739756, 1.0729149349109575, + 1.0136559468198365, 1.0661674564879462, 1.0075127665368853, 1.0342821912979365, + 1.0375234403635405, 1.0186926783732924, 1.031688628064647, 1.1176383836381816, + 1.1348473185746035, 1.1392982343974805, 1.0709107739908224, 1.1520965563468677, + 1.2035555264621762, 1.1235016012266708, 1.166720419585611, 1.1428152753997671, + 1.0633910585131507, 1.059023234851939, 1.1233034395156647, 1.0418775545827772, + 1.1572832796379042, 1.0032913663231398, 1.240885732454607, 1.1213913716523822, + 1.0254709388213852, 1.097229313176191, 1.0545305163877696, 1.0799614547444634, + 1.062669220504155, 1.0942880164290165, 1.061453882759591, 1.050768269045017, + 1.0030450789102536, 1.0663594441914759, 1.067938914757893, 1.0202707661602062, + 1.0845845916980419, 1.0122954229143304, 1.012008096132612, 1.001509681985787, + 1.118112506361379, 1.1489662997705996, 1.05311595053667, 1.0739100452569343, + 1.2563701234368143, 1.1760498458050705, 1.0242034836926184, 1.1406031809393977, + 1.1826610757293503, 1.066143679531893, 1.13614606871777, 1.0568478366138274, + 1.025959823724627, 1.01354155360806, 1.0369100336710642, 1.1094912675000963, + 1.0719695364048833, 1.00942774115232, 1.0333292720058431, 1.0307301577006558, + 1.066955415222236, 1.0385494698921724, 1.082246008597389, 1.0827407897420982, + 1.1495067973672815, 1.1326685979541418, 1.331991728639266, 1.210212266848284, + 1.0320658836014163, 1.067013694557259, 1.0728961632855543, 1.07045445614084, + 1.2181335388322982, 1.1602151783125387, 1.1967002635243174, 1.058864034832166, + 1.2214089441795453, 1.039643046955631, 1.3259500274731282, 1.4066155775143752, + 1.1284812710280339, 1.4510729152146542, 1.2250303117902939, 1.1850449458006413, + 1.1725301607719105, 1.3703821282935842, 1.3947970852210294, 1.6114694039048294, + 1.3742540523524687, 1.2850331732364884, 1.4306435762142269, 1.3720568093184924, + 1.8121876276596807 + ], + + "WORK": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + + "LWORK": 300, + + "A_out": [ + -0.11976198277778116, 0.056856805519143655, -0.09289109366734465, -0.10024922819479089, -0.04548149418189272, -0.12148796627301606, -0.010798385548512758, -0.11658081216984428, 0.06476010844404402, -0.08434518748462061, 0.10090754705313713, -0.036494328194719775, -0.11957457030398765, -0.011612778960175128, 0.11349566124784355, 0.06396564314087468, -0.08231773230360095, 0.10218958047466052, -0.03583485771070877, 0.11747451433602817, -0.019610152545804668, 0.07995200303315762, 0.13405666527535967, -0.028595330343554482, 0.11720411556848287, 0.09292443755146984, 0.0698552331563248, 0.12693084485975292, -0.01572899497635851, 0.1373829070067122, -0.04798138168194032, 0.11370539615016, -0.09440566779347297, 0.06884493643162186, -0.13017175108937784, 0.014760862912126114, -0.1366184975090058, 0.04958033844936159, 0.11620359306551188, -0.10314872770695901, 0.07344181046725806, -0.13445391162848236, 0.011170334095961904, 0.10128596287950865, 0.05785999905109065, 0.012711421645860723, 0.05681730130588686, 0.025548966950539872, 0.03541512722994635, 0.045151861564247706, -0.019766560149155874, 0.060701043286343154, -0.009010677558172555, -0.05825250037059807, -0.027284961235025967, 0.045842434654861125, 0.047613061233270366, 0.021657126272812296, -0.05823437794339258, -0.009866872050308813, 0.058064006744752844, 0.037110140225422486, -0.04690403057573008, -0.0579226939759397, -0.022750580870254295, -0.04976609568195127, 0.03868145101075241, -0.03651968375992061, 0.01907582656106288, -0.15505000688344928, 0.04997261201750898, 0.14808398174952742, -0.049550611019802696, -0.13871810468708728, 0.1100130148304663, -0.0658970157081228, 0.11484848581392293, -0.013305377568561469, -0.12275850576117389, -0.06772544617117564, 0.09073063346642275, 0.1179021711987319, -0.06922794158152223, -0.1448362347318114, 0.017036306731443813, -0.12683383274800228, 0.04007098183165561, 0.07756540710117868, -0.16617928511169733, 0.04984449977876658, -0.1326990329804541, -0.1378791010496009, -0.056040278710718594, -0.16547679888463815, 0.013204833444019645, 0.16244656591916343, -0.0838949711265389, -0.1230051924796182, -0.13803579226939222, 0.05366002099244284, 0.17166487694374793, -0.021975889778456888, -0.15911816921145897, 0.10146341651686892, 0.12949285281992776, 0.151438464209356, -0.0872796942167217, -0.18744878770249673, 0.017976075250765198, 0.11271969558681152, 0.07714094566366891, 0.011042347316505533, -0.06274732112492099, 0.06111338563251172, 0.022685947436918635, 0.07425624734529473, -0.005072493585584499, -0.07538457110547561, -0.03708011154666287, -0.057992735402758636, 0.0612859438304727, 0.02660234052913261, 0.07608362166911092, 0.014095626222873374, -0.06837230967458431, -0.054423581207211046, -0.05553897539511679, 0.0714896039930923, 0.04349195791478297, 0.07703895098444176, + -0.08909848951680227, -0.12308115028211687, 0.08085515279068863, 0.010846191208458027, 0.09597728073657252, -0.12171975687529926, 0.07266965382993615, -0.021430723458555387, -0.1021920033325341, 0.11601575973329527, 0.06315209504614078, 0.02915772913361051, -0.10079657453789644, 0.11720452921698879, -0.06129933779629152, -0.03209600673115767, 0.10475900845603113, 0.11282551411620229, -0.052473657280408106, 0.03945747911403436, 0.10762976722103046, -0.08017975655728501, -0.06822076435281071, -0.1302996127287737, 0.10925089295530473, -0.013528729405157033, 0.0858608211074102, -0.1332031787347847, 0.10328093200662895, 0.004547751377496266, -0.09661379893968501, 0.13283830624292806, 0.09607906673031631, 0.0006397799491954913, 0.09631416439099372, -0.1379032247436852, -0.09442979963889711, 0.008034439674129687, 0.10676386951274124, 0.13958282166464522, -0.09254274099569358, 0.010646070921360757, -0.10996178881982684, 0.1006051363165707, 0.0076225556378158215, 0.05084168687555782, -0.05720432036746645, 0.017018628608105192, -0.02189949896496394, 0.049461931816210274, -0.05319509260019501, -0.014475162245921002, 0.032378473162859384, 0.05608030183353131, -0.05452804998411022, 0.01909243592201157, 0.027723642659540526, 0.05636654629976188, 0.05024614033384866, -0.00926824893757838, -0.03896396908471993, 0.06247914030154337, -0.05519522203260029, 0.012760731769416256, -0.04046251040163414, 0.0484169725886277, -0.044989762763645635, -0.04352447863325055, 0.013898205607898752, -0.10250636980398461, -0.15794484565160266, -0.12303621174380708, -0.06961909810625606, 0.05943166532392667, 0.14792068376401268, -0.11270175329767312, -0.046117740691688766, -0.0498994945370349, 0.12667397268709413, -0.10359508368727681, 0.01531324254332055, 0.07910023175351227, -0.1476542948585125, 0.12618445759880184, -0.0410687636310464, 0.05508417411577946, 0.12178231025005745, 0.07928904130624374, -0.0917727721553647, -0.16257478874338038, 0.12525619413316316, 0.008293395420800691, 0.12537555551163015, -0.16562725998022676, -0.10960046399524191, 0.017882921071894025, 0.13449418053806034, 0.16343181805539106, -0.09936463148698835, -0.02817462318533963, 0.13633050023296459, 0.168971679104337, 0.09645261580110344, -0.03850754582831253, -0.15523590691775763, 0.17963736181733497, -0.11951082851194311, -0.015926071176163667, -0.1539371764603263, -0.11133396396686471, -0.030756208552730407, 0.07204499275930248, -0.06130924030341965, 0.004042636091068745, 0.0551475630776461, -0.07353532796666938, -0.05233438658574884, 0.006072641626708802, -0.06061994396316183, -0.07457966983161526, -0.04835387977584278, 0.00900410815142665, -0.0607959976678965, 0.07410849871425462, -0.0407134618757366, -0.021621940571868253, -0.07370336198972588, -0.08355998887579079, -0.060011887665386995, -0.03474968853177294, + 0.02348174410718808, 0.046130943565748934, -0.06722068513235838, 0.08587323122118683, 0.10100590239555796, -0.11246884482648198, 0.12005984833793293, 0.12297365063156479, 0.121274521001075, -0.11009772671681788, -0.09990542807734985, 0.08600185430085196, -0.06340579133124648, 0.04256893524102846, -0.02033972755722255, -0.002480793950625594, 0.02501883661336034, 0.04665636436899651, -0.06779511611557991, -0.08531747252602849, -0.09931886079757102, 0.08072145168597403, -0.061087878500457826, -0.08260993331636393, 0.09882425924798663, -0.10979267740983996, -0.12194196963420392, 0.13046893942493784, -0.1386621141054716, -0.13611817390889455, -0.12846144559582917, 0.10733664564211323, 0.09055385245248954, -0.07028889091658726, -0.043749818990440274, 0.01792191553630523, -0.00843801732398351, -0.03408185636688935, -0.059310027347790444, -0.08238749500106113, 0.1085916715943266, 0.12563200784396522, -0.1360595976792146, 0.10081203652799933, -0.04977083167281405, -0.05625721266301434, 0.05553293800613099, -0.04680414675001957, -0.04925766785627675, 0.05152535390395255, -0.05993227670445501, -0.05609147891649854, -0.05016922898028937, -0.03419049390553867, 0.02425786166714987, -0.013298841712186475, 0.0022419089578763983, -0.008926888437224932, -0.019856500792771063, 0.02758968101063389, -0.03758338471391069, 0.04636218919909573, -0.06108317716036973, 0.06755146798746407, 0.06925823347372533, -0.047771559796026083, 0.008575123119374209, -0.0006033815297066488, 0.007737714773908021, 0.030346915977637525, 0.059759817372747465, 0.09652678727958171, 0.1517619843008306, 0.1592771674731587, 0.16047201985526582, -0.11811345781263428, -0.11137376165155936, 0.09969005002058703, -0.10284870271157245, 0.08648535619872785, -0.06692414013458292, 0.03383965959681705, -0.00410976403099764, -0.024516070248062894, 0.06285622190937153, 0.08574925426043947, 0.10267892799017146, 0.08215634423937855, 0.07110730013914743, 0.09815099552528035, -0.11516112431357653, 0.12602200146993978, 0.14413862510896464, -0.15793497809563087, -0.16989665736277615, -0.170258152137633, -0.16447237943990647, -0.14415428908006758, 0.1267770194202136, -0.10429098807402686, 0.06924327430925988, 0.03767981159033683, 0.005103210962559595, -0.026702687726047288, -0.06023789444537452, 0.09198840278801024, -0.14503330822540594, 0.1715202864169369, 0.1867412931544722, 0.11244113152978776, -0.04542004141143197, 0.05620113806832562, -0.05818015741439047, -0.055406990345399566, -0.0633363757442587, 0.07037118364466893, 0.07893367427823395, 0.07844043924733966, -0.07511891162560061, -0.06294263539124693, -0.05432371762234193, -0.04338702576787405, 0.030433829342200472, -0.01651284545076711, 0.002070010439671184, 0.0120286661623519, 0.027415979842030997, 0.04218159767230568, 0.0725070707725915, -0.11588399151478747, + 0.11447297049064087, 0.0845422106418856, 0.05238534753240562, -0.12264894136426442, -0.037839406845116955, -0.09448805852754832, 0.10802460753417321, -0.014426459064252344, -0.1186081788840877, 0.06853973291882437, -0.06448052983576873, 0.11643614483716527, -0.014157461879458039, -0.10587362831554752, 0.0922249657515689, 0.03686373414217806, -0.11845413451856503, -0.05124086000668436, -0.08147680131820803, -0.10875075518532698, 0.0019226664181745626, -0.08159300886857297, 0.1333968137461445, 0.05992283826451052, 0.086463024714394, -0.12701804216340024, -0.012632986550824194, -0.11879116678899379, 0.104137766725898, -0.04628089729280055, -0.1380498077624796, 0.04579712761111933, -0.09937777183623815, 0.11919824960843364, -0.017593745950685705, 0.1335846632763458, 0.0813581534427767, -0.07313575716420366, -0.13841595233211498, -0.030002925729482703, -0.12132640501659825, -0.1094389292247204, -0.04379834841301093, 0.10181424412757084, -0.060210963348479904, -0.002659051425860876, -0.052075581163069, 0.04183447093131912, -0.00894066192484584, 0.05101809525094827, -0.0365131743168817, 0.03227418234774476, 0.05938199411271519, 0.00032249633381605837, 0.0558243384901181, -0.04181641497776078, -0.0237247556504896, -0.05840856598072744, -0.01941275518151545, -0.043522653712820526, 0.05867122649338084, -0.00046068510073248026, -0.06450621942520324, 0.03897847416816736, -0.03877763941015232, 0.04768409333764536, 0.0359877236391971, 0.042972756766774, 0.0012100871978350572, 0.13964883263960123, 0.1172893523191996, -0.06898900668541769, -0.1553456426060311, -0.005453235493047285, 0.14586370779135382, -0.08044502749356094, 0.05432559955133137, -0.12167166268892246, 0.05647235867371217, 0.0871323850806037, -0.12122190665131513, -0.014774964604809187, 0.14554322914739598, -0.09304770156986225, -0.08155541726278699, -0.11907172017722045, -0.0020537806479740805, 0.08626226473480879, 0.16488002626846304, 0.07367304877223362, 0.10359142854564217, -0.16171446133495596, -0.02658837249868842, -0.1428205634337777, -0.13513312775302924, 0.045001780881516996, 0.16928773340664835, 0.07221168992634988, 0.11207199036281637, -0.15400636482231464, -0.015481468370089098, -0.16471566366887627, -0.10400433969747452, 0.08903780176803765, 0.18270097107404631, -0.05442562042070373, -0.16358797440412812, 0.13305026649269816, -0.08735674954583918, -0.11620478256635884, 0.07671557164872919, -0.019954723442132824, -0.05400263638939011, -0.07016981221219844, -0.009770286665814582, -0.06481732951273447, -0.06013948207539716, 0.02429529285153023, -0.07846564835983387, -0.027481623516261468, 0.055276031670028064, 0.06746892847363575, 0.00831473210197502, -0.07314317498483089, 0.04371668453935365, 0.04432104641427751, 0.08474044920050781, 0.025698548928583607, -0.0810840689723202, 0.029510583702821298, + 0.10021827572414953, -0.11719906730548865, -0.03722493412668465, 0.07314560780541901, -0.12277501385975542, -0.06968209172124622, 0.04207486020166014, -0.11841191983674136, 0.09455260773438087, -0.004669300838992958, 0.09911837098451177, 0.1116664103828007, 0.038565617306405564, -0.0701000847189217, -0.11990399992430155, -0.0682103462379086, 0.03962961140604127, -0.11408656546258295, -0.0932125067923497, -0.002594085471815548, 0.09726231262547244, 0.08323953357704802, -0.08123143194523325, 0.13404280895305576, 0.07328562941331906, -0.05119097852505744, 0.1290519758495142, 0.09969309764098822, -0.016756924046499824, 0.12165277224624117, -0.12357671248684207, -0.03159182067144824, -0.08660225711088057, -0.13362447533599256, 0.07703565092756565, -0.04841641827751032, 0.13294026481214533, -0.10561841371367749, -0.014610801477509087, 0.1221351303244147, 0.13047949297272188, -0.04125983899771227, 0.08567272060538651, 0.10424031716682894, -0.013945923077425756, 0.0583020431782979, 0.04664472580258079, -0.005203638554402855, 0.04347930062867159, 0.04852346215462315, 0.005214715203735185, 0.04604868183274651, -0.05824802065809593, 0.03375120043930721, -0.020917361937385186, -0.058136626471116254, -0.04502776143370482, -0.004009970905813683, 0.050016738521006604, 0.05587362359585897, 0.006583634268921394, -0.04691450700727724, -0.06501560706412017, -0.03827052066410672, -0.024339377974801242, -0.048388677195260466, -0.04644114896449417, 0.03691215576444836, -0.005039563725867384, 0.1375372610912988, -0.1447026571523793, 0.046536464200363906, 0.07699804131366648, -0.1599222108910743, 0.10561743634850722, -0.012922438860857926, 0.1069702055347366, 0.11052082089004035, 0.0040679529516756095, -0.10226343589693247, -0.12709139049834997, -0.06462615118449788, 0.0754258993008658, 0.148033746275509, 0.09557228924836791, 0.0015712536415672697, -0.10520942831474936, 0.09323180411476495, 0.09879234129935595, -0.1667990209559371, -0.09403511184878006, 0.06528363633366589, -0.1614540954654843, -0.12481292822445117, -0.020703266333665846, 0.15048634259212693, -0.1476005523227518, 0.0269834864188335, -0.11583765694143025, -0.16836513715073642, -0.10601804227166191, -0.04563256612345665, 0.15927445387008565, -0.1431352472976952, -0.019872613974570647, -0.16331103466026473, -0.1763623064259679, -0.09586792683139453, -0.06422412807374377, 0.12646357053878435, -0.031923848384540286, -0.0752854943422441, -0.050348841518434446, -0.025395756942600937, 0.0699362124696538, 0.0593169208618632, 0.004424583439831289, -0.06718161141472341, -0.0697719691998876, 0.0190430267634605, 0.04715704531591176, -0.07748246534844791, -0.050300160777976756, 0.014608837180076287, 0.0681519951599585, 0.07288131417027133, 0.003008936035056752, -0.07473550535712345, 0.08774164991325302, 0.05895518375790901, + -0.00617663956286687, 0.012385342141965936, 0.018740398831163393, 0.025098637995651544, -0.03149188602573115, -0.037790020487592016, -0.04356237712918129, 0.048784071026301445, -0.05327884370992421, -0.0603038257718386, 0.06543295510323192, 0.07107482546405595, 0.08125273598403582, 0.08579765316172114, 0.09040557661960924, 0.09392783940977484, 0.09750140846054269, -0.09941841879342629, -0.10124054226093641, 0.105005443487833, -0.10849359467792323, -0.08447143034047945, -0.04326194871380359, 0.04869943719371772, 0.05288292167226088, 0.06028991058178038, -0.06879785266329724, -0.07765869822407219, -0.08102175987203007, 0.08376257047014352, -0.08537251340190177, -0.09452140508685415, 0.0996867823870908, 0.10595557287931799, -0.11850822630818213, -0.1244646665399351, 0.129962360360606, -0.1340122295399675, 0.1322484668775554, -0.1286913560017061, -0.1270350637869065, 0.13470720051812698, 0.14097333540591012, 0.11063262312538927, 0.043602527974823474, -0.04306993142306973, -0.036730809124325164, -0.03754587690273001, 0.04292111466842779, 0.05134135235467347, 0.048000433914536136, -0.04638125614853456, 0.04475358987905309, -0.05349037572265421, -0.056105456036714525, -0.05791170092555142, -0.05786841814621762, 0.05983074665693463, -0.06219691067847132, -0.06692107957698781, -0.06235882122867997, -0.058968702255938046, -0.05775371962558967, -0.06484641994804781, 0.06835854141529918, 0.05335406965331696, 0.01472376304150422, -0.010219472138279638, -0.003806607158995766, -0.010755782477316782, 0.021986007563122696, -0.039988403353805504, 0.03984996221799576, -0.041924112991863084, 0.042834502558021674, 0.05985189316060484, -0.06626886973579545, -0.07128163704867986, -0.06663151558944137, -0.07644477655714292, -0.08925305209124108, -0.11186682065754176, -0.10622785805097514, -0.10095352224225648, -0.09819424610020244, 0.11588272998490029, -0.1254745454469711, 0.10487481622855166, -0.05126300375396607, 0.0554356579915026, 0.057902859562920725, 0.06806993787707352, -0.08356903175740987, -0.10043872805578218, 0.10896665680705571, -0.1108784847257933, 0.10616392010897391, -0.10662939562423378, -0.10627303042529863, -0.11215225266494709, -0.13730827528158338, 0.16205161566088744, -0.19284970972489307, 0.2259298567369219, -0.2117143886740781, -0.17165396840662397, -0.12394129283585917, -0.11986632902367096, 0.13419167114268435, -0.13465764092939034, -0.034206289680628034, -0.034472581655070195, -0.031499217615090655, 0.034547559242899456, -0.043432066510283196, -0.05496884932697893, 0.058370302143374735, -0.0572687421693448, -0.05185465721553925, 0.050948534255173365, -0.04954760629298932, 0.05194706455750069, 0.060309792797196615, 0.07491255675720315, 0.09629959824882853, 0.12938756178414232, -0.12214866432581158, 0.08753291038987965, -0.03879960791488655, -0.015524711013098491, + -0.10689278092081624, 0.10692882079675106, 0.0003307066049842936, -0.10591313548115301, 0.1062090818589766, -0.0002111035906828384, -0.10609007648069696, 0.10463779480553391, 0.0028563042106867133, 0.10887921751118255, -0.1015713980022456, 0.007302821051211707, 0.10842768664452296, 0.0935981855015171, -0.01477892995150945, -0.10851906882404558, -0.09340944271575763, -0.01671193278836062, -0.11159999353802127, 0.09568510611826546, 0.016973854541176593, 0.08361018180525252, 0.12576715545008596, -0.08908258367226622, 0.03575776269728149, 0.1336947345845113, -0.0968325470001326, 0.03784428418565075, 0.12882108731599992, -0.09166904652662007, -0.038023767700951706, -0.13515488040294898, 0.08960959043857014, -0.04544918779527296, 0.13685209326653627, 0.08340659931732858, 0.0536296217606043, -0.1355864558282644, 0.07667244915384219, 0.05967302536174604, 0.1411391406481592, -0.08919463688988502, 0.05538051110905729, 0.10578897794885295, 0.04913494308939035, -0.00696712639910369, 0.03796957968813222, 0.06291936589607242, -0.02814536484726285, 0.03651500443848507, 0.05188879184316608, -0.018243678551226356, -0.03286478654327102, 0.06018526049201595, 0.01969973701734091, -0.04100036043028681, -0.05943098969340606, 0.020286374565978847, 0.03943048070281668, 0.0601028968590006, 0.011944699060111277, -0.04681528226581426, -0.06212234635923831, -0.024890789922984692, -0.04098930179752125, -0.04815029445378272, 0.04053296466105397, -0.057903640114573565, -0.00998223587949349, -0.15357509344524045, 0.14178825307072657, 0.0037842999287265953, -0.10867823296987045, 0.12644360187077344, -0.016576243410125847, 0.11924911442826229, -0.1055036950164027, 0.01627553056063978, 0.12286121669759804, 0.12958081810498026, 0.009061347240003882, -0.11119932917354096, -0.09665275252205588, 0.012711941324247047, 0.1265097337183007, -0.1258470597525077, -0.012331238446872107, 0.10180120585928651, -0.14606604395034878, 0.10516348267857036, -0.03602794977839934, -0.1648154973758763, 0.13118118998915246, -0.03323620517008808, 0.15630822389609045, -0.117392367364219, -0.044575925466535604, 0.16832917651695542, 0.11961604352056456, -0.044875947576316313, -0.17191807403604814, 0.12237106107626051, 0.0453219746273926, -0.1630008507620145, 0.08832564104424961, -0.08249455186022873, -0.18913472456424452, -0.15102967335097633, -0.030916653025500784, 0.1254208025856004, 0.06144268504340926, 0.03165996494627189, -0.02554243908667011, 0.07964396359376279, -0.05780606094912525, 0.021320696014709897, -0.07040532607280706, 0.04677026467586172, -0.026282153677114544, 0.07828477932482018, -0.04918352316570685, -0.02703744784544593, -0.07876526930069418, -0.0574781318281882, 0.01738880323573907, 0.07384749569580734, -0.03594789951653753, -0.04342949317633139, 0.09048785778315983, 0.07103847534287973, + -0.10933219246148289, -0.10072397573627585, -0.016828295795893122, 0.11555679025696201, 0.08933166451888963, 0.033022163804882675, -0.11962472875809557, -0.07745728852668371, 0.04787356437570927, -0.1207362745235232, -0.06830660885935311, -0.05827278877439573, 0.1173873608942258, -0.05789160437539665, -0.06352054842229701, 0.11750725452178434, -0.04406000856908107, 0.07696161174857472, -0.11736595044526234, -0.030136956366116747, 0.09083481689015144, -0.08365556298620752, -0.09211602256592215, -0.12224531434344449, 0.020398096111618035, 0.11178714069388787, 0.123939560093766, -0.002375007808587992, -0.11794115147669336, -0.10897089214384054, 0.016941064456960434, -0.12595079207647356, -0.10669636560442028, -0.02829376648749228, -0.13043369912625527, 0.09923769797672778, -0.03843944134711938, -0.1331259042371673, -0.08767137167912858, 0.051609818761572356, -0.14282390973495873, -0.072869904481613, -0.07960573364805577, 0.10448227010299399, 0.009067879315022315, 0.05021748888780962, -0.03452923164295701, -0.03618120093856375, -0.06321228315429143, 0.022073496015485007, 0.03280985900927161, 0.05088831067242829, 0.01421073189953827, -0.043044808110921665, 0.059127707682680504, -0.011451290857117796, -0.04845221704175493, -0.05443568796022081, -0.0015703951018807378, -0.050878573794747424, 0.055702490217594845, -0.001215265265892741, -0.060323965506855336, 0.04758056792707216, -0.019183393461478005, 0.04639524896567076, -0.059467882188803604, -0.036788232442625204, -0.01843095033716621, -0.1469483710123647, -0.1434753493574918, 0.02657115210593003, 0.1379851983233047, 0.07062760834610492, -0.06878334629258522, 0.12837229174892711, 0.08394165360965494, 0.051795879934220385, -0.14421608267631028, 0.05635793814836778, 0.09430898609258252, -0.12095225105252584, 0.04178012983410337, 0.07787051234676842, -0.13971567486632436, -0.03632061905676147, 0.11693261102595322, 0.10189271384511735, -0.10376153478407864, -0.1414462185857734, 0.024895625243205897, 0.1411344647186895, 0.15382850781244894, -0.00038147008887651733, 0.14735470297364597, 0.1362796736357593, -0.019563785924608678, -0.15777713972048035, 0.1323899979719249, 0.038959027165175054, -0.1651175315777223, -0.12285259273002397, 0.051941005868349606, 0.1611036062104018, 0.11605755700234471, 0.04877567142932837, -0.19335751988119435, 0.09476113610040908, -0.12827183330774822, -0.1216394459143889, -0.03015404902448154, 0.06002325656831477, -0.02261269434527118, 0.061311982499516436, 0.0760945185660635, -0.008094109651334988, 0.061362588957481694, 0.06392974507391497, 0.0010479849158309658, 0.06802591034381064, 0.06585779534341991, -0.009301508914361791, 0.07438027155109295, -0.057335280721259735, -0.022650077936908552, 0.0714417275889426, 0.05729476017065206, -0.013646236918911831, -0.0911635721346895, 0.014898391474881926, + -0.0112520904643006, -0.022424339676424532, 0.03347670244619799, -0.0442576983112834, -0.05448027547704617, 0.06426146999772434, -0.07363207006516347, -0.08221657304614928, -0.09002609222192226, 0.09347588496576707, 0.10031204189868369, -0.10634252681741295, 0.10442373281276321, -0.10864445021722877, 0.11208873212805358, -0.11591228549459837, 0.11769995311024614, 0.11833543833497422, -0.12022995623371875, -0.11979959063031671, -0.11755543765710534, 0.08407811386352194, -0.027201443246650844, -0.015548966740276348, 0.0037613133310390448, 0.008956064585746642, 0.021529946423464567, -0.03417643248130895, 0.047366720109796825, 0.05845534178379557, 0.0689478453511321, -0.07451943483447637, -0.08489801169200278, 0.09453126361117559, 0.09816364678357434, -0.10637935490412133, -0.11386355319849127, -0.11830205888041509, -0.12373543738533728, -0.12831473999192108, 0.14002389386034259, 0.14518654897104166, -0.14642667821553804, 0.10429268062545836, -0.03948928948174996, -0.035979377174707665, 0.029569919182028528, -0.01764663852089842, -0.01208565348090862, 0.006489926230387166, -0.002531626491904823, 0.002248364798473433, 0.006910923427428905, 0.010734160137558225, -0.016270028004535822, 0.02163847214877198, -0.02757287384534838, -0.03239797953151834, -0.03705398097281188, 0.03741341287254436, -0.041332986723817584, 0.04524563762060515, -0.05587319437199416, 0.06084421098077533, 0.06320631128711444, -0.045460759043864166, 0.022073670282638732, 0.026909005930311772, -0.025993107102494924, -0.023701322224369208, -0.03940972793747621, -0.06069216791412348, -0.09553649787142277, -0.10308683452048331, -0.10929828962451318, 0.08992654281209915, 0.09889420128230562, -0.10640662145041305, 0.13349304321433236, -0.1384605085438006, 0.14271303816114173, -0.11898624500006208, 0.11780904655257392, -0.11787054100689695, 0.14494501836967558, 0.15208032938998417, 0.15023734950173437, 0.10383466892618604, 0.038171438920997273, 0.024757772498591027, -0.010763171378402664, -0.006002001692321939, -0.02180289634564631, 0.03763690955587239, 0.053566469978339935, 0.06754695772305151, 0.0809761143014152, 0.0900762229324594, -0.10345665958431646, 0.1159285727889307, -0.11803741695870201, -0.12885319434038695, -0.13868799830606607, -0.13542928628543616, -0.14259101042638397, 0.14991470828337422, -0.1888475339862105, 0.20271327445255713, 0.2076751101525209, 0.12139423130980499, -0.030055127614251435, 0.024971097438173537, -0.017849147571998063, -0.006795545086329245, 0.0006826296969377448, -0.008375024356136173, -0.015846119058653248, -0.02221051964488506, 0.028370375477613563, 0.03238237172563759, 0.03898992614762259, 0.04522088584785326, -0.050739889119926516, 0.05603182548375266, -0.060973929337706796, 0.055883139374420854, 0.05932512551765779, 0.063444916142791, 0.08802304148323488, -0.12851458010289932, + 0.09717313161408583, 0.11945682863670448, -0.04952758709170013, -0.05792963559695226, -0.12068752214370208, 0.09052102650923775, 0.008801573990768486, 0.10143753840631267, 0.11603730695204147, -0.03596243226834718, 0.06961949315579763, -0.12176871860532257, 0.07202854967204149, 0.028940829523485735, -0.10717373645162773, 0.10420060099283973, -0.02046523267654135, 0.07920820145669942, -0.12017694279671609, -0.06713713204189668, 0.03882795215429198, -0.08481977814805702, 0.12110150306755546, 0.10899859282540623, -0.012989848446091109, -0.10029037692519477, -0.13688355794499307, 0.0684182353949716, 0.04708339258575659, 0.12690409739199157, 0.10900863621654157, 0.0019032739386877703, 0.109743384479102, -0.13295905100398261, -0.046501786798237806, -0.07356842741675663, -0.13676317839929014, -0.0927621441412136, 0.021580957388786355, 0.11904840667801263, -0.132927703700924, -0.04127724272283588, -0.08583653323395359, 0.10490401067046431, -0.05078778659415369, -0.01941220253144655, -0.023649507268608864, 0.05836481313112283, 0.05565072243145527, -0.009429856167295076, -0.0365924696048868, -0.05159872103044037, -0.026851393219365072, 0.025331696878933985, -0.060001581456831835, 0.04847777924670401, -0.0010521020509642065, 0.04704483661182768, 0.0590973757092704, -0.020703451749622258, -0.03403048419390427, 0.06174110031902984, -0.04917025447525162, -0.000969981436511349, -0.053123799855937515, 0.04505957053111518, 0.03632810438497891, 0.0599098523844552, -0.0322388038897626, 0.11796909778391755, 0.17027178042901014, 0.09412611493080049, 0.003641273588048592, -0.1055723165051388, -0.13133773810827676, 0.018686944618883983, -0.09122785832309423, 0.13139780725490338, -0.0936451162209044, -0.02983788366322477, 0.13168215559415103, -0.1059053055316512, 0.01701682175346221, 0.08095990991632551, -0.14304347835122286, -0.07713006205111152, 0.05821612095828203, 0.10724018372820357, 0.1428570496269887, 0.11899214516962951, -0.0036443900979454373, -0.1336791064336535, -0.16881935421678684, 0.07406564193569973, -0.070145749514991, -0.16131031002581625, -0.13001882795469205, 0.010479087432299809, -0.1425736432643668, 0.16376308716705218, -0.04229000290127101, 0.10755918055560124, 0.17276634297582466, 0.09263205702610768, -0.05020880689270643, 0.15511099160722489, -0.17512455281370617, 0.04339300497899011, -0.13978405563970148, -0.12381542813638134, 0.06046215214927096, -0.03688121233687535, -0.012672739334757842, -0.06932738302898503, -0.0766163325337476, 0.024680075361986235, -0.038756585159332724, -0.07257803562137896, 0.051490040451451134, -0.015479921329888194, -0.0707153422617986, -0.07056051136198925, 0.01391395676488042, 0.053486393261154466, -0.07865994424831842, 0.03178466699041275, -0.03274667034296904, -0.07322396887999914, -0.08000465580368518, -0.018307216258137894, + 0.11625782462333822, -0.07759658032902876, 0.06445837667690724, 0.11983831022729657, -0.015371958022686535, 0.10950696551487661, 0.08690614602593869, 0.05251018305354017, -0.12116727705300528, -0.033261793525579564, -0.09942791828900749, -0.10008827117913932, 0.02585930672433248, 0.11632812961994207, 0.051389990185870905, -0.0831624529223592, -0.10635318554820383, -0.01376415929688679, -0.11717458232279433, 0.06553210403862003, 0.07465484374578417, 0.0861105819800541, -0.10204598071282081, 0.10865720802382078, -0.0288950233468276, -0.13719363827508943, 0.06134090091927831, -0.09750362032790262, -0.11777575031207276, -0.019545478402928456, 0.13012261995930693, 0.07793110040684383, 0.08073888979143354, 0.13260363975831513, -0.015283008500568141, 0.12371259016329796, -0.09691673898407435, -0.05853187278736982, 0.13503069070278612, -0.02993404810737876, 0.12156033835929465, -0.11350193563851961, 0.04872734637329055, 0.10661910520991358, -0.014220727994987487, 0.05247397575189238, 0.01701030811478127, -0.05542958019408381, 0.04727225339632756, -0.02476650501472325, -0.052412719277011285, 0.0140228688648288, 0.042154899627030354, -0.0525148388618969, 0.012876549149834894, 0.06124565704317392, 0.025861092395000132, 0.04300696487083275, -0.05484193551414329, 0.002210468416869422, 0.059232553890999996, 0.03720822762502236, -0.04026943236795482, -0.06170088360033965, -0.002094428132184822, -0.045287146434099375, -0.06020847485479714, 0.024226456222529686, -0.03630888127581434, 0.16695308391149716, -0.07974291674120865, -0.12573651921614892, 0.0911817571723504, 0.06697724177982022, -0.13056737289110823, -0.059380360359216795, -0.09182562100848755, -0.12011451007535985, 0.032317213001448145, 0.14460621280728833, 0.06744332371808624, -0.08231777169605728, -0.10900952169808002, 0.008635541583944828, 0.13339979806798358, -0.09528988949782262, -0.08190161783141081, 0.11304591079214742, 0.1089149831044327, -0.13354695591039956, 0.01617158734071427, 0.16842048208414223, -0.09667295800205933, 0.1040694925979559, -0.15435777597617234, -0.007105696986940589, 0.15883376213022946, -0.1077837199954128, 0.08906684333722985, 0.17186053182976557, 0.04923649192233099, 0.13896680262743785, -0.14414225181898468, -0.03355134449399363, 0.16272844301137934, 0.06063369422496016, -0.15232995138872354, -0.18109106811116685, -0.019988226456953848, 0.1306912497656359, -0.03103660356534492, -0.05953044711209689, -0.008232621383625273, -0.07547112738661424, 0.05574063165599262, -0.03832656977691757, 0.07083198543949958, -0.006252740047554856, 0.06678240934397663, -0.057881482038196576, -0.029707717360259785, 0.08000141755352538, 0.02974724708107854, -0.05799745991192074, -0.07157144525580282, -0.0012632970512188241, -0.07001609375204167, 0.03645561854326047, 0.06719145223707612, 0.08054312764964304, + 0.028455609824321014, -0.05558884195969108, -0.08049701490337882, -0.10129067897414223, 0.11699039188496169, 0.1263202507290874, 0.12744111654726906, -0.12038433878322227, 0.10537718569881933, 0.08961416852548076, -0.06660617150352821, -0.040556413318652895, -0.01526222446842632, 0.012092718045072934, 0.038697674076852755, 0.06292831816881214, 0.08380363124486487, -0.09898815020080184, -0.10912140310680662, 0.11560090207356628, -0.11582062249338085, -0.08314225642914802, -0.006501922456830957, -0.02522755988257601, -0.05423846267748073, -0.08531826050400203, 0.11270604654474366, 0.1349429772977932, 0.14062102726043985, -0.13797511247430452, 0.12641643309327577, 0.11908447529571099, -0.10088525493479432, -0.07848170991925726, 0.056864038962712, 0.029054844937797895, 0.00025208486187468584, -0.029254588383345374, 0.05578280379376727, -0.07860643665074304, -0.09957974594536982, 0.12143718435816275, 0.13615267498508138, 0.10800330904940868, 0.03375882639285833, -0.0226262207767421, -0.008538781134052051, 0.009206598919564705, -0.024246319973757348, -0.04037033898369153, -0.0441929522968836, 0.047902629656839155, -0.04905312957012272, 0.059087265946561794, 0.05931185782714325, 0.05561568973369361, 0.04724097002084889, -0.03809929594868705, 0.027174224712667984, 0.016428809182530202, 0.0018529155414557133, -0.012447372842428833, -0.02809548867284487, -0.04417841855079882, 0.056165374505296, 0.048279842342137926, 0.028288265506327206, -0.03766816523002425, -0.03304391019032312, 0.06665024022358577, -0.11026440377478547, 0.17931288425404562, -0.16186360148571308, 0.14222381011985996, -0.11242354826379605, -0.1144615882193514, 0.09346155185384067, 0.06538752468846236, 0.02394654550907422, -0.012545282706400976, -0.04933922306649467, -0.08720544591969141, -0.10002863525112443, -0.10739457456855174, -0.11326602181036646, 0.1355360179843238, -0.14142794308256879, 0.10921745209527772, -0.011235168746990426, -0.030342144372107888, -0.06700601619392581, -0.11425962309616411, 0.16180206307727343, 0.20367285606202168, -0.21815567433042574, 0.20826416706278914, -0.17534004084157687, 0.14101984384068625, 0.09848224487903418, 0.05612471522108537, 0.020162118872878478, 0.016515768940728162, -0.05261410673136265, 0.0855524296040649, -0.09653849077914617, -0.09080202534615582, -0.07843363878018568, -0.08718820101471587, 0.105671256153174, -0.10689384239224811, -0.01144974349997538, 0.006274273518785869, 0.020893082085939565, -0.04482495835772127, 0.0701468778358883, 0.09631860365246081, -0.10302930612923505, 0.09660334508486425, 0.07803560083290415, -0.061591828254942575, 0.04157715010504797, -0.022324763093885605, -0.004367023930152452, 0.013310443334784074, 0.03143461230993902, 0.05124036725474428, -0.05245219859693476, 0.039297249017082946, -0.0180311921059095, -0.007394843487459906, + -0.08550856141740876, 0.12368777803875441, 0.09396517714150578, 0.012347586747842228, 0.07632045139520116, 0.12214385306202633, 0.09835062441985158, -0.01860171894592678, -0.0716525714146843, -0.12605426393674343, 0.10589598322139543, 0.027151583360750617, -0.06424550838481981, -0.11589187580610946, -0.10287357243521685, -0.031074495554514903, 0.057398334891035734, -0.11318784760837683, -0.10580639541044887, 0.04208193370452768, 0.04600519450812813, 0.08090727698528404, 0.11342097152713176, -0.12849082100879888, -0.07033963832320556, 0.02869839547538676, -0.10830493284857011, -0.1282391127300764, -0.0690568865917338, -0.030465585983147116, 0.11230234544013755, 0.142147386308573, -0.08642102676572433, 0.017012434869425726, -0.11133258208720326, -0.1375384827334225, 0.08662056402152606, 0.01245750997595982, -0.10511509018757663, 0.13769194230489545, 0.09388968271942427, -0.00842898318527173, 0.08432262728705707, 0.09630259650045106, 0.03556096172508948, -0.012903783244100294, 0.015560794992899269, 0.048173541200724354, -0.05384870317571997, -0.03167640950359039, 0.010924946712522036, -0.05155453486184525, 0.06288837602817662, -0.05276917876450709, -0.008417155965097553, 0.04096632260600635, 0.06635892009533877, -0.056978859293196224, 0.01596140303346425, -0.03128844826459819, -0.05901375271889989, -0.05434243436661363, -0.018138367349893946, 0.020146053701313348, -0.0480645953319507, -0.036484202731709374, 0.05112295861224274, -0.08688333790270662, -0.05294364623614145, -0.046166982636274806, 0.08311137554143468, -0.09118913120443256, 0.021821320564938716, 0.06987192543496192, -0.1184993511133421, -0.14490301094562053, 0.06727225603700884, -0.050009969388055964, -0.13540662869667536, -0.17205390945153412, -0.11805546367685929, -0.01902050378108231, 0.10380932907363709, 0.16487127762100212, 0.1358644107022285, -0.06949738214710793, -0.04704429465767922, 0.10276692456086445, -0.14517150920124666, 0.1692933828580205, 0.09784321964324917, -0.03310850721436397, 0.1366508475734327, 0.16599264247043993, -0.09187534059140222, -0.0397308790200862, 0.14716093152799203, -0.18191454005020424, -0.11265627210539715, 0.014728791019091624, 0.13700945491416458, -0.18030602976391505, 0.12909136543105446, -0.01312003141659588, -0.1142284155319458, -0.16503501419935296, -0.11936275394847824, -0.050455463369712954, -0.047992193394497555, 0.09004946725999233, 0.056489643941932226, 0.061730226803422134, 0.029966523003692156, 0.02850622424744048, -0.06500571919572176, -0.06866867395278714, 0.027203716448200996, 0.03329356032770436, 0.07290599998418693, -0.0793882713171864, 0.04015073933690068, 0.019417380316836527, 0.07031340991665137, 0.08813279836496805, 0.06371013954321866, 0.014524887566664903, 0.04615405046630945, -0.0713146296829308, 0.052025818832331684, 0.028416047407056343, + -0.1208565556349078, -0.046829710037769555, -0.10311103764976512, 0.0865384247807908, -0.0699236379969769, 0.11369384948802494, 0.02479437380223947, 0.12353967829930187, 0.023902933208224852, 0.11669796745744933, 0.07349492473130449, 0.08875737809927238, -0.10142982950740856, -0.0429103380665111, 0.11757188955227339, -0.004124865632008407, -0.1151234305169003, -0.04963517618825638, -0.09692375489144942, -0.08456823366198504, 0.06515303378525694, -0.0808378051028534, -0.11671980652490568, -0.08100687405146503, -0.08271953588644541, 0.11661327081783944, -0.032386501553791074, 0.13043211579839759, -0.02482224487121895, 0.12406723403335626, 0.07345685087961858, 0.10344405556079493, 0.11847162824764837, 0.058283747092262, 0.13701060807157112, -0.002471056039732916, 0.13555454744370138, 0.054033011373435844, -0.11440794940847636, -0.09901399629522716, -0.07750647789215524, -0.11815269532101258, -0.0339457679793142, 0.09435476802881582, 0.0035896755464080903, 0.03927576546187642, -0.011455418384311933, -0.05070216435318752, -0.03179508413901903, -0.04107289043937444, 0.05042810215533243, -0.030457309743200326, -0.061133770295612386, 0.019243714584413592, -0.06801138018436975, 0.007422327468705521, 0.06520010464344764, 0.03057892520601282, -0.05372059216255917, 0.045604063537972264, 0.033146361668492046, -0.05725782097473254, -0.00913951853273684, 0.05181803885126382, 0.01113132030693712, 0.034292937042592425, -0.09063712666085046, -0.021298260514705514, -0.06398031832424741, -0.08163844957096433, -0.014706382464641569, 0.08858741820657881, 0.07024702583047097, -0.08911814785275791, -0.10261892166007186, -0.08761057896933984, -0.14568020521285785, -0.03086413982651694, 0.1676963241487033, -0.004501775813057394, -0.16824706244238607, 0.04072032697072323, 0.1554480264339199, -0.09997183535991098, -0.12696475370137905, -0.10775581593399002, 0.09366776082161957, 0.10245157364170585, -0.15066103184726173, -0.10188552719549539, -0.10471150489924977, 0.15483426353310512, -0.03399579727698199, 0.1687655785131955, 0.039617663659840506, -0.1560027665947904, -0.10404772244578311, 0.12491290591685561, -0.15644895853670382, -0.06887078065483558, 0.17617592115286734, 0.008733013244715565, -0.1711700070241084, -0.06370774596063021, 0.1397461104088401, -0.1251371910689781, -0.09576065966295434, 0.12504921102315908, -0.06550363565691228, -0.08745186698252443, -0.05297793969980385, 0.04159009511219434, 0.03207059970918665, 0.06935083356528024, 0.0024153114181206707, 0.07033622653462611, 0.034685434505929265, -0.06045937306983142, 0.05988151637078416, -0.044624381799679, -0.07874007892844134, 0.016958851667534226, -0.08481056532185624, 0.012693278983998538, 0.08000881372308942, -0.03081039687341103, 0.06019168257461641, 0.05976404953790379, -0.038282814700849106, 0.03617744333554383, + -0.045089589960234856, -0.0839682615343183, 0.11138861247468239, -0.12346619599014726, -0.11784160090873697, 0.09594568290289485, -0.061087607657192435, -0.017594416961401772, 0.028293457968269858, -0.06961176022765815, -0.10408611238310349, 0.12420540006476141, -0.1188023088166484, 0.1048132843691344, -0.07652227867846009, 0.03838019526539548, 0.00512042702992354, 0.04800390368036571, -0.08574076572443319, -0.10999597373307947, -0.11846273700853271, 0.0811935343647689, 0.011549011856574271, 0.05853669280321188, -0.09505540719032554, 0.11783822942601618, 0.1294206015055985, -0.12383283573561897, 0.10598656427367689, 0.06860078596023764, 0.021808556694958688, 0.03054140029263955, 0.08008795223502596, -0.1185972311713985, -0.1339693530539543, 0.1381317563081485, 0.12339004087434399, 0.08967238624730602, 0.0446316469406988, -0.00636761398101862, 0.05933542052877291, 0.09893244122783304, -0.12390599010554137, 0.0937894860478852, -0.03166379229761305, -0.02064445038439051, 0.0065011835250871584, 0.014722714586648502, 0.03338890296503077, -0.04930442218088313, 0.06479981132710584, 0.0609331676161344, 0.048642420866198514, 0.020973970697239455, 0.00412745174498508, -0.02876817346857284, 0.05048237265790301, 0.06354750520861253, 0.06797020652728132, -0.056142702972284346, 0.0414817461417789, -0.021861300389401917, 6.005437382339881E-05, 0.018758984786996287, 0.03528554354163583, -0.03297347259300987, 0.04465015379355184, 0.06984868885139037, -0.07033279438406032, -0.050544213526721046, -0.07150456551517875, -0.09063241328112431, -0.12286391904228627, -0.10175290112195208, -0.06738440585068751, 0.002762792952962754, -0.05490623793862117, 0.10512430800258926, -0.16192412187423555, 0.17010645296998475, -0.15487714385376297, 0.0913635456977882, -0.02937055314320105, -0.03364482720780875, 0.11008866124098526, 0.1472179881799292, 0.15879605849918876, 0.10437844500526888, -0.011990476871396111, -0.07276412449783168, 0.11645997769216056, -0.14511708462760906, -0.16579346280654966, 0.16443361004009213, 0.14553509888337918, 0.10154635293340833, 0.043663685276069925, -0.02432812671759723, 0.08987910205266511, -0.1432287203458742, 0.16485001001889274, 0.17661126764476218, 0.16390287014369218, 0.1161668522638891, 0.06202649400010604, -0.0004989525487407304, -0.07200008708974709, 0.1175613099272909, 0.14524383738925883, 0.08733981231696027, -0.0017106952588871855, -0.02119969121236748, 0.03649044915859943, 0.04979961206734564, 0.06456466654848698, -0.07179260354541121, -0.0736936747593367, -0.05945875160912945, 0.03717358323025358, 0.005571332402593769, -0.025808750102123388, -0.053819443898922854, 0.07384534189264795, -0.08362451409890742, 0.08173099644920476, -0.05648319141845885, -0.03311427346138974, -0.006431739786873315, 0.026851848296816545, -0.06794492304349867, + 0.07213253678258, 0.11699332998320645, -0.11766737989836476, 0.0741393821013811, 0.0020830870567005635, 0.0706668303403096, -0.11671284197935412, -0.11845821634823568, -0.07542474116361475, 6.36649803348148E-06, -0.07485584374177251, 0.12156588362883193, -0.11403153013728774, 0.07078977664267186, -0.0011086730736193573, -0.06923403769554846, 0.11235931067862807, 0.11300857402290014, -0.07248364568833793, -0.004751445047513273, 0.06555322060099272, -0.08185031773786683, 0.10431810262239372, 0.13088475258166762, -0.10558990848398167, 0.03419023054242255, -0.045393480274541535, 0.1086944518245759, -0.13370050385262855, -0.10307240002097029, -0.033619264588264364, -0.05254182008042223, -0.12132815833665513, 0.14412549084809395, 0.1044407041998873, -0.030755872677213362, 0.05423391947457229, 0.11712552045208315, 0.1383120351608027, 0.10750198420301649, -0.039398350830876776, 0.04032473454469506, -0.10617736975214448, 0.09397236644936363, -0.0370450956648499, -0.02162311962539719, -0.0012960145134906032, 0.032172289809599346, 0.05273257210356496, -0.05512860991073899, 0.04659301006203616, 0.011134063471996037, -0.027824333102732066, -0.05382757233503308, 0.06824614934663585, -0.05669317973682769, 0.02544543566847942, -0.01610904940128958, -0.05182591798671537, 0.06182173951482441, -0.054911778309765756, 0.028033007660450103, 0.009230517400653872, -0.03743582990086424, -0.05153586039464348, 0.032070754047288555, 0.043833466799664, 0.08129934496796172, -0.07301918414545827, 0.019958002786308073, 0.06352872704587409, 0.0916709687575035, 0.11175141816261035, 0.05470844910039819, -0.020651602488208395, 0.0921471229597802, 0.14977567425680352, -0.15028770747123263, 0.12085155329609701, -0.027824935792879278, -0.07708732014033647, 0.13307907894611137, -0.17023689747699886, 0.14553108777880241, -0.08774851657616482, -0.0019953064618119373, 0.09163973793972593, 0.10776270503994291, 0.13801049430384302, 0.16776627209342942, -0.12694015895600125, 0.021738336885686986, -0.0799148650639878, 0.1520712636378346, 0.16977358231368947, 0.11878525784965738, 0.023464884298461372, -0.08496895854723842, 0.16507864065346436, -0.18200359743226216, 0.11350298974431623, 0.011406954636963357, -0.09399564550784736, -0.15283751073632076, -0.16904523855067854, 0.12475715413862688, -0.04501802491320848, -0.04439942547473248, -0.12296248223574252, -0.08906962221785648, 0.05450469023955439, -0.061250868199010405, 0.04041330244411708, -0.009862845273379012, -0.048846775453606064, 0.0707915870151889, 0.07019061177519771, 0.03755874798954674, 0.008914713053577113, 0.0535408747611344, 0.08178386488846458, 0.07837669003654602, -0.043812121273935405, -0.0074635188699263555, 0.05567618539816716, -0.07251212687576737, -0.07441358556105451, -0.05125487348013169, -0.01421118955622828, -0.04452914035157801, + 0.12303634186372782, -0.013848267732601185, 0.1217835936540637, 0.02717862774185128, 0.1189640423915655, 0.040070145124255586, -0.11450901656743846, 0.052120970216601635, 0.10899874795867474, 0.06963660843232859, 0.10313019419613825, 0.08173516264900926, -0.0879369919951217, -0.08606419718982208, 0.07802038372043059, 0.0940772456695094, -0.06664972862875278, 0.10110512626138835, -0.057438754680185354, 0.10624829615750868, 0.046099481656942914, 0.08292606018924972, -0.12288835513282753, 0.053072198469969335, -0.11380981668972591, -0.074399834891695, -0.10191411501244986, -0.08631623705660359, 0.09395730665657794, -0.10013626987738108, -0.08321549576390011, -0.11810677198189931, -0.07563005686284914, -0.1274129135297461, -0.05383378311968312, -0.13079138823677267, -0.039574999734456495, 0.13396012752729444, 0.029252285378086124, -0.1365411170552019, 0.018110138780411296, -0.13085329250685457, 0.003594919909701238, 0.094980873989507, -0.007490534501738979, 0.03910794500435379, -0.00388216329109621, -0.05513981362916839, -0.00022642428394171343, -0.058294254791306066, 0.004954654923223305, -0.06448582476320315, 0.0022297209998641877, 0.06780034781899102, -0.00038981975543277625, -0.06818175763643423, -0.004926448693994632, -0.06722963857270783, 0.012564444759497036, -0.06219126037799815, -0.012638542514834145, 0.05931319158313792, 0.01806545712500828, -0.04739258887628315, 0.023794948371298818, -0.03155322307001494, -0.09060680334338861, -0.00012599400304737338, -0.07161215215876976, 0.07506659099684097, 0.02783799638247546, -0.09209266370913972, -0.042468884176905544, 0.12009426930566468, 0.029463337559666024, 0.14775764021773016, 0.04364548069597961, 0.1536431815774254, -0.05277475590429957, -0.16536298153938928, 0.03205704642161983, 0.1628899744238958, -0.055415098679907446, -0.16199679493136682, 0.060856125716295936, -0.14594084000268345, -0.051645671489758384, 0.11311552464933342, 0.15405434621035752, -0.07965187210340087, 0.13497277846756356, 0.12003916988777373, 0.10999814799707353, 0.13337464258719947, 0.09828983796253486, -0.14500708525960085, -0.08687422570284886, 0.16353461420968649, -0.07338096908639113, -0.1756349714665971, 0.03172677387493544, -0.17608919994789787, -0.008586556050514267, 0.17000016198852896, 0.01560607321851265, 0.1695163573031261, -0.015210316792922743, -0.15009604872490806, 0.016057185931708438, 0.09348649831756434, -0.05352348575214263, -0.03578411078699168, 0.0431429267108496, -0.0620977046318768, -0.028985724712307454, -0.06762487010458859, -0.02589545337841565, 0.0736641443290855, -0.02061901713936639, 0.08143720756361565, 0.01528548417223398, -0.08477176464185457, 0.0005341171625015394, 0.08458745509772801, 0.012758869597879268, -0.07710901916338404, 0.0026921868501983987, 0.07601799618489703, 0.00023346794177079704, 0.04965238575712378, + 0.06082110164652573, -0.10622435837650337, -0.12530538698453458, -0.11226148800296928, 0.07029026106961397, 0.010047897292161559, -0.05272764207100686, 0.10131798992081749, -0.12230407415052384, -0.11740697120991161, 0.07863773719758799, 0.019912659868488943, -0.04214668997082001, -0.09080896823676368, -0.11590680956116443, -0.10969718597804548, -0.0754562080628275, 0.020429632144300672, -0.04084531712764447, 0.09122796297826895, -0.11824995701773049, -0.08657762027960014, 0.025524696915427053, -0.0844946364098142, -0.11863747692009083, -0.1297848718247325, 0.11005398088140751, 0.061943754111701665, -0.004515962653113078, 0.07122647153090036, -0.11843664269334253, -0.14600885306452668, 0.12948827971270657, 0.08071446044729866, -0.01626086480604154, 0.05351738977797543, -0.10906657820589816, 0.13507020098822506, -0.12061650089951417, 0.07355712831083372, 0.005547694406057804, 0.05917547978146681, 0.1096632922214159, 0.0984320143201297, 0.02946277382974722, -0.011996445175656671, 0.008038182887697557, 0.03519896301907623, -0.0525403045247907, -0.059939777653674975, -0.03952610109317249, 0.008685025808025021, 0.023776683193169022, -0.05736206911999196, -0.06833731739185263, -0.060753607026134714, -0.03545106108966393, 0.002321167334039754, 0.031603312372198156, 0.057496024015377914, 0.06154008071760378, 0.05072400362465118, 0.02651618521887335, 0.002866352705704068, 0.023022888810640185, 0.03140837916615832, 0.05234032051712393, -0.07978388857613015, -0.06306519928250144, 0.06894066715324318, -0.08827493798101944, 0.10447507174851242, -0.05744827170747293, -0.008979048728329027, 0.07056558288813555, 0.1462576112189408, -0.1552947888867098, -0.12098043413069033, -0.03676268492209606, 0.046967821351410734, 0.12124818197882395, 0.17538340321124024, 0.14023499041665094, 0.07098534051053873, -0.02886351504524316, 0.10831826092399749, -0.15718799210675538, 0.12843817526276605, 0.016362821196789917, -0.09209266687109714, -0.13804372031283796, -0.16951899428883638, 0.16980008933151472, 0.1285103857609019, -0.046922518743314955, -0.05095476625629951, 0.1328451904357038, -0.18906759761207434, -0.19421945533414575, -0.15969744625095303, -0.11005443813094655, 0.03192935230136151, 0.05246439547771727, -0.12122326099454342, 0.13473068406290867, 0.09794282017394337, 0.025421994950835476, -0.03567857394277223, 0.09869304657726626, -0.11526163632119221, -0.0046327004731154895, 0.023562371093430717, 0.040603652032748884, -0.060725849475224115, 0.07249272736029544, 0.06926687363918156, -0.04062214381728494, -0.002923047759259111, -0.04537624934145335, 0.08207689794929032, -0.09591919267822997, 0.09193894512828485, 0.07405063945963788, 0.04430180973845148, 0.00702228947699483, -0.02919134583288148, 0.0486816995909575, -0.04509399530217058, 0.024197426336014734, 0.011035324146942865, + -0.057312778933611086, 0.10188399013141951, 0.12439684844440907, 0.11885915905502933, -0.08641179503479894, -0.034164465303769265, 0.02610672845719979, -0.08019265833709971, 0.11489564871729575, 0.1290648366529551, -0.10987088400612635, -0.0663707137746318, -0.012516221765009869, 0.04549176083839201, 0.09293654448437222, 0.11827572143275118, 0.11681375337013139, -0.08691404275627845, -0.03643881716043708, -0.020528247466200612, 0.073375137430692, 0.08214443838018702, 0.09600329915839191, -0.13434921185040155, -0.13883098908393512, -0.11849844645070672, 0.07492563477202806, 0.014097587204673278, -0.04897351375249966, 0.10189926404034448, -0.1302432994632645, -0.1405908206172983, 0.11311515149491382, 0.0609490996952954, 0.0010659632207793823, 0.06297963156974588, -0.11017689367805285, 0.13100393582510378, -0.1166164126461477, 0.07431936191938487, 0.013527277886428199, 0.045458145257740334, 0.09519864176652323, 0.09188037399979362, 0.059020781411395926, -0.0681963649957767, -0.05329941721375347, -0.03172235899684276, 0.011075005489991113, -0.012682354559028112, -0.028304203891360274, 0.0399890364409054, -0.04242248412282261, 0.04480143501349769, 0.03222092463806262, 0.011801614981810149, -0.011781894121019534, 0.03301471011765263, -0.047057428583519585, -0.05207567869561012, -0.037892594230810005, -0.01612129361443949, 0.011301806664871406, 0.03411356116455516, -0.04833711935646324, -0.03825044225430188, 0.010835501360528164, -0.032926891804265224, -0.03533769092780291, 0.0793195693923866, -0.118847639282692, 0.16050771682434492, -0.10522035303072975, 0.022710687010316047, 0.0625072994206183, 0.16623106213637356, -0.19753063739278562, -0.18000923588435563, -0.09506122734613834, -0.011034213483196057, 0.07625661735838882, 0.15050109851957214, 0.15512462789325937, 0.12506064853340698, 0.0613127799753866, -0.00936820346432506, -0.049737713309185576, 0.0737836540483363, -0.11001314336452764, 0.16715476425438905, 0.18028336205629145, 0.17308214622450258, -0.14301886088431545, -0.08227923105822284, -0.0004191607043991588, 0.08445680176512645, -0.1445676607017128, 0.18042733625205684, 0.17332554729411886, 0.13620063305599378, 0.090479961476192, -0.024252196322056125, -0.045909533840872215, 0.10392135225227461, -0.1177094791326183, -0.09109179630081786, -0.035835561169050616, 0.008894317593938312, -0.05742485379670704, 0.07603760579379944, 0.05164969252769751, 0.0755619727212453, 0.0741786183493704, -0.06824483123964463, 0.060570383688022915, 0.04183325259338647, -0.010498904010021709, -0.025490421066473236, -0.05377770174668907, 0.0758693877613435, -0.07940940747520649, 0.07063063291108966, 0.053405556882690726, 0.029345271502331183, 0.0012464501118615522, -0.025535187735498576, 0.03851934781845585, -0.034407855022791055, 0.017994149031410774, 0.008069469396086344, + -0.12275355487360776, 0.02177951567518374, -0.11916886504152177, -0.042473172556155, -0.11186073120700667, -0.061808964882012145, 0.10122331508606786, -0.07902111451416555, -0.08786356166395919, -0.09931419902823121, -0.07356297050888806, -0.1129289080493192, 0.04587865226211974, 0.11871842596864278, -0.024910604399505605, -0.12322539357178894, 0.002656800656254339, -0.12394814062852372, -0.01802777125212552, -0.1180660366380442, 0.03918677824295695, -0.08197912288465739, -0.14040706050319118, -0.011046373092675983, -0.13840130756715713, -0.019099205515763322, -0.12956149398929925, -0.04199013631675555, 0.12062175857264999, -0.06602521803568195, -0.10906330198737801, -0.09531350443828183, -0.0961063102709872, -0.11317189382879111, -0.06924655268271934, -0.12184431793365962, -0.04802105206774532, 0.12912523695727401, 0.029826247398192157, -0.13370278271185557, 0.009932182950626879, -0.1275066040918798, -0.012744938045635264, 0.0903168732674435, 0.06248206658251286, 0.02456079254501031, 0.05912697096663773, -0.010643755471234573, 0.04908358995058282, -0.0014168385804578217, -0.043264705679535, 0.010901373104004002, 0.04051764571514842, -0.02690694438073976, 0.03754438016193166, 0.03339936100480465, -0.0329498151238389, 0.04012884385359439, 0.02600229942910828, 0.04468852822340292, -0.02502225952687118, -0.04809594410252034, 0.02093991320531068, 0.0471537641775406, 0.014350697448301555, 0.03594102972293911, -0.0493832468708883, 0.0221881823894484, -0.03720167079127269, 0.11670518302097256, 0.006209582193606939, -0.13631710259104718, -0.02886003935257329, 0.16918722856775706, 0.0009448722205831878, 0.1910277771598931, 0.010791422200565797, 0.19464732294789736, -0.007979012559805066, -0.1926687121735811, -0.029566387823741665, 0.17072490210973953, 0.021404939887341608, -0.16045348483411606, -0.04106121884816649, -0.11664145238058884, 0.06336256757620184, 0.07500452659806889, -0.1838090059082903, 0.005069563783797136, -0.17123716372622486, -0.05295120630145885, -0.14660433781218987, -0.07976698050111992, -0.13138979743586734, 0.10195996841914387, 0.11687237435950298, -0.13172197517362377, 0.0971121532875647, 0.153301788380318, -0.05077769010179672, 0.1586602698099838, 0.019378085839835853, -0.15621296872164953, -0.016110836609258668, -0.15685132580728886, 0.004446516371551063, 0.13623209184749777, -0.03442183190370623, -0.07818172607474286, -0.0828968209565199, 0.001200038319081, 0.07263890849890876, -0.02429191883502037, -0.05474865641415627, -0.035828520472853245, -0.04733857036888341, 0.04575390163496076, -0.04106358597439396, 0.05892946217513799, 0.03292698678366466, -0.06687796314529756, 0.016919202673916268, 0.07054485054786354, -0.001102847454220369, -0.06730872053220159, -0.005545345832182896, 0.06654735436546795, 0.005136160735703551, 0.04583558462672693, + -0.0753352785698319, -0.1192558287753453, 0.11347558865549802, -0.06070881478862085, 0.01781378773745922, -0.08881338218188714, 0.12287835236136649, 0.10552961130139925, 0.04423046438944099, 0.038221371413960745, 0.10581821847790643, -0.12933504510607463, 0.09036142050911862, -0.019311648161901195, -0.05939736353770624, 0.11423869826236256, -0.12021202597329902, -0.07599477877230258, 0.00038482451115212125, -0.07387857722810358, -0.11750812377215523, 0.08229583716110082, 0.054467302843399845, 0.123384066781254, -0.13752194613355956, 0.089239564200069, 0.010379655620223374, 0.07352305101232404, -0.127492276739676, -0.12412419623316441, -0.06907729781636734, -0.021086709752986956, -0.10258329635053631, 0.141285569729733, 0.11315327572780326, -0.04382988735493241, 0.04343128001163735, 0.11113937706154417, 0.1350477416778273, 0.10295301153625924, -0.030839262295421818, 0.050357148713330004, -0.11173496339053977, 0.09000320080670524, 0.007425354052119608, 0.04780098919658598, -0.06214042196896698, 0.04412465331830444, 0.021781374703804604, 0.010702670895325176, -0.03690240122051266, -0.043209463041869914, -0.03144555017734235, -0.00029013278625258324, -0.029213619959986305, 0.046584301355676906, -0.046085363432002355, -0.02492735266035733, 0.006771867102381982, -0.03372732537363593, 0.05136561925607472, -0.04777760226685514, 0.02893292635111163, 0.0007428368428235078, 0.03173638069130739, -0.034859404530201255, 0.04175404877726188, 0.05233928345674738, -0.034719471308170935, 0.0569358883973769, 0.10995967730171191, 0.12789855932783842, 0.13555165009089168, 0.04162335021348872, -0.06603421490336983, 0.1416758257438612, 0.19400488780837144, -0.1646197100384495, 0.09490184199942871, 0.027291419122051956, -0.13961563255846013, 0.16322211602568198, -0.1536709552310461, 0.08409989535444469, 0.0178186296435148, 0.09143280033102913, 0.12764982636288172, 0.077367386349984, -0.08198927842609213, -0.1651439991758137, 0.1693091209492224, -0.089875910367652, 0.01077850956710229, -0.10746114873430522, -0.1598062525883357, -0.14200680250678488, -0.06578282552694875, 0.04395685277139, -0.13699707718756748, 0.17243973711766575, -0.12019446018325497, -0.02742611942380894, 0.07588526081540418, 0.1379985623283371, 0.15650336880143328, -0.11308801462881227, 0.0319365782371898, 0.053808419552788034, 0.12182112455439313, 0.07853068109558081, 0.03280976031063118, -0.07236776756098777, 0.07285490325413033, 0.03202327996070433, -0.007304781230259638, 0.04471552330884976, 0.06410531566065926, 0.0527309230232575, -0.01981175282416912, 0.024804590458197575, 0.06047622608041683, 0.07051618171859948, -0.04975853759054312, 0.007979703467391975, 0.03702331542745761, -0.05910952242312056, -0.06670440484863756, -0.04930808775182766, -0.01762101701585804, -0.037135474436381016, + 0.041345905424610106, 0.07793977858258663, -0.10568237103122706, 0.12125918790579646, 0.1222201346877105, -0.10907665515791705, 0.08363453329201263, 0.048290188402151865, 0.007364859857054106, 0.035211792868597144, 0.07496797169879542, -0.10615973396175667, 0.11782465758346573, -0.1237996117017027, 0.11558115930030535, -0.09524603924621575, 0.0632171273849131, 0.023712183262532313, 0.018759422652722974, 0.05802191520043538, 0.09056904130658236, -0.08292182936360108, 0.08214630404538292, 0.11626711092885955, -0.13381487426309122, 0.13290384329858485, 0.12349013548290619, -0.10033353102807636, 0.0700389009403869, 0.028019696744848437, -0.017105081886243715, 0.0600786677854599, 0.0998507693247884, -0.12805814822346875, -0.1342787420064745, 0.13229643057276783, 0.11523640591186562, 0.08307974904377309, 0.04231204090006964, -0.003151160019389319, 0.05065216343802246, 0.0877237710710973, -0.11389593272358456, 0.0904259147779745, -0.054610893255965486, -0.06552311900352192, 0.06304360839169068, -0.04469120378886509, -0.035397942840535754, 0.022388896822345142, -0.012048862446197631, 0.002768937202208015, 0.01697160131258652, 0.02736389554717976, -0.03916115655736714, 0.04634023359657958, -0.049708024799769095, -0.04575568436098039, -0.03654474994034766, 0.019882749030291153, -0.001958635675103203, -0.01575442599411725, 0.03567551637868279, -0.046532817543702226, -0.05076491385837682, 0.03425662144339836, 0.005568626616849049, 0.02261971184013938, -0.03020644075142854, -0.04719466207286377, -0.08195236098968228, -0.11841703176284032, -0.1715051440972809, -0.1553940715672121, -0.12191877916367722, 0.04038322809639501, -0.025397907363366553, 0.0886808029776295, -0.1602554672896629, 0.18699317640089258, -0.19256390846100135, 0.140680643448064, -0.09804413398350252, 0.047689054813922514, 0.006282243562324968, 0.04854888169939517, 0.08595752636133133, 0.08077986994040313, 0.09893676490621618, 0.14490093029912976, -0.16475431194033854, 0.16065540901866035, 0.15465505626355022, -0.13152454006176964, -0.09814087187006221, -0.049675171843593095, 0.0044791186412067845, 0.0595381619297301, -0.11066215699157281, 0.149037444863193, -0.15777214360002478, -0.16083933718811363, -0.14538035199230046, -0.10221664592366353, -0.055672578186628185, 0.003712524776156129, 0.057241322141908565, -0.09758576849648479, -0.12574875122649357, -0.08035744056942903, 0.04925260223435717, -0.06854367624987726, 0.07149144558204004, 0.06174078025280801, 0.060279006221575865, -0.052777708714772026, -0.043658069338662654, -0.025474400289196703, 0.004446745102112727, -0.01850800937628383, -0.04060213925890577, -0.05801071597115756, 0.06811931590058755, -0.07039351867248254, 0.06450241155979765, -0.04182781099834659, -0.021513158542637967, 0.00041700947019812206, 0.028620023555513435, -0.06371563529342833, + 0.12001385464807764, 0.05413270620128689, 0.09599500504372667, -0.09711368281113476, 0.052545943705304, -0.1208097824540438, 0.002975794247128247, -0.1195698019626029, -0.05762956986570918, -0.097262855009903, -0.10485569064918238, -0.05043725184289361, 0.12337873577955019, -0.013636755506246528, -0.11659076109988953, 0.06789661312361914, 0.08552640946548401, 0.10726310569454663, 0.03669107230913037, 0.1210308152138266, 0.017590710597202967, 0.08390965537865268, -0.14212992928598248, -0.02431572562333115, -0.12745567576189992, 0.08078897388497847, -0.084544156237926, 0.12016333346726207, 0.022738950980110605, 0.132677310465171, 0.037832726626596654, 0.12113787761463797, 0.09899769265065365, 0.0772284448972466, 0.12882340002214804, 0.011989297827094778, 0.13380368944958962, 0.04743883050204552, -0.11238996691260258, -0.09874465091748309, -0.06896173042823796, -0.11938464907062425, -0.01705175338584018, 0.09159435202460456, -0.0651363326043611, 0.00831045731397851, -0.06188457042061965, 0.01203420538872802, -0.043957909771840054, 0.032936968053474805, 0.01888452993128615, 0.04234142563595226, 0.0004065386199279654, -0.04485769239156825, 0.027099231564915446, 0.032702974983597324, -0.043129745152180245, 0.014513950048761845, 0.04996753017524326, -0.00431132041806111, -0.05033505770188157, 0.026698460068678657, 0.04098156803907373, -0.036371105931893466, 0.026369571374103104, -0.03405729902318215, -0.0475749918512693, -0.03287079634825245, -0.024156347604126546, -0.11461556522329601, -0.054064693702486274, 0.10770801125932841, 0.11857186380527349, -0.09421671228463958, -0.15706341362038978, -0.075630020513088, -0.192093354898089, 0.011734972740328814, 0.19077946083361585, -0.06295107661899857, -0.16548156160031438, 0.10476212965865006, 0.10465979310213806, -0.14813638277889574, -0.030098234024144185, -0.1276933988911327, -0.027360577004396893, 0.0855002301300927, 0.18380109014393348, 0.0338354733965449, 0.1580114695775097, -0.10531999412436034, 0.09529858420858048, -0.14884839275334166, 0.0186331138035482, 0.16004242269579247, 0.05745837621623648, -0.1414312704970399, 0.1262114570581018, 0.0884610804114344, -0.15684178684948277, 0.008992591323702996, 0.15919936575786642, 0.05258779207646192, -0.1302337021796242, 0.11788571772635868, 0.08000289683237763, -0.12089350570164367, 0.04117483438311559, 0.08430968293889217, -0.08273941065065145, 0.008792645916299777, 0.0688060844406911, 0.041496411232817526, -0.0359404268217102, 0.058796649402722195, -0.001998040316957523, -0.062444801419036654, 0.02802275823801127, -0.05491027185469269, -0.05547881211046755, 0.032095908301510295, -0.06867836728555099, -0.0035551835288995526, 0.06990223552007692, -0.017319139191095255, 0.057347106809636596, 0.04850904891487364, -0.03824699226552804, 0.030508554646073768, + 0.0883416193803501, -0.12373234874114501, -0.08549580935527762, 0.0037949386774848324, -0.09098746983297248, -0.12296257270459461, -0.07928926599562672, -0.013138732128026616, 0.0973645739869324, 0.12792111179808174, -0.07713668612811184, 0.020017172969034047, 0.10560758693558324, 0.12049602124962339, 0.06283978232689671, -0.033787011614333416, -0.10944682709848874, 0.11757900194963868, 0.05383891740208049, 0.03982005666963313, -0.11026825662073121, -0.08596089259623131, 0.06937919495822534, -0.13734218580052718, -0.11946983450660295, -0.03193766889860972, -0.07043547398823267, -0.13122714253298864, -0.1039681515346063, 0.012573574584107674, 0.08618873520644632, 0.14183175435212078, -0.10518599110076378, -0.0057591558558720115, -0.09616206735888089, -0.13490560471506477, 0.09178881287944936, 0.006622524273861049, -0.10180822204514654, 0.13414397340503179, 0.08568181993609575, 0.004102055363715799, 0.09392588696558907, 0.09438362205406228, -0.01433418623246118, 0.058095256446852005, 0.05805758779707892, 0.02997250701044047, 0.007000739585491694, 0.042069434014710735, 0.040609072946562, -0.01598613157869011, -0.017713806340877856, 0.046413638370279994, 0.04081959375133586, 0.010011484976957485, -0.027324511782753125, 0.04899440237936205, -0.04138976856087746, -0.01167115170680058, 0.028608349681443195, 0.05125421793924331, 0.04444871595399551, 0.01936136659179044, 0.02003462448989759, 0.03445060342592047, 0.04461391499898032, -0.0499841601431258, -0.016650714970482882, -0.08938446147614505, 0.12265340987025186, -0.10355962408922315, -0.0006066492569199748, 0.1213211880153703, -0.16319796349925458, -0.1630858411465434, 0.04150268537285632, -0.10713902599631706, -0.17917663504794598, -0.17949162562575258, -0.076372533987218, 0.054782467834419216, 0.14764814589977837, 0.1492383322885263, 0.052225702862510374, 0.044768687017154626, -0.118804813298843, 0.09399431287645907, 0.09033656592909065, -0.17790467867090015, -0.15335332236937915, -0.04199705371900029, -0.08077793360447083, -0.1562648808166441, 0.1255250519487498, -0.01182131261957254, -0.1096460016793288, 0.17313122747329246, 0.12943944794028922, 0.013275269835995085, -0.10955493790505111, 0.16387954404029262, -0.1246081204843156, 0.016904331722590666, 0.10568368806874803, 0.15273539611176676, 0.10251690512207012, 0.02930179222752187, 0.06592232107036201, -0.09555441889488546, 0.03402404859208857, 0.0773017699645278, 0.06646573444641235, -0.01653213371936684, -0.030710482199578632, -0.061814771974866414, 0.047100106439826386, 3.6141320038948852E-06, 0.04696195349173232, -0.07143758820989447, 0.051164551249350154, -0.0029448411384955376, 0.046964530438241836, 0.07252377375110307, 0.05988693005663893, 0.020789286055840916, 0.036127650658480066, -0.06354475761607524, 0.04925323685659275, 0.027752043252786046, + -0.024551493337420235, 0.04830551424689565, 0.07080417851833869, 0.09066692100004382, -0.10723911917136603, -0.11946560288656813, -0.1255795413301343, 0.12538831580359044, -0.1186508201733503, -0.11285285727083928, 0.09940317842677807, 0.08289269665830026, 0.06876592424952406, 0.04709921376570275, 0.023822384783839343, -0.0007272765741625415, -0.02506780518299211, 0.04809604292559433, 0.06960057881270346, -0.08943881115126612, 0.1058479111775865, 0.08908774724950269, 0.06359263893752257, -0.08522641952931923, -0.10120435467853311, -0.11992803443070714, 0.13617424139300038, 0.14795437536973072, 0.1439778247790385, -0.13327193445880509, 0.11583926390885098, 0.10377282370794984, -0.0837758844297869, -0.06144344569842696, 0.040613306930860994, 0.015911652045444515, 0.00935453709154499, -0.03392377143119415, 0.05599976050426039, -0.0751494007661635, -0.09349550075472196, 0.11403408307211071, 0.12946953218455054, 0.10506084403818958, 0.04661566331969048, -0.04961117476713794, -0.04387425200405061, -0.04534678930888802, 0.050535220794926866, 0.05724409200804381, 0.04915715693252624, -0.040560041654341995, 0.03058727652912958, -0.02593875528368465, -0.017842784928439798, -0.008775024964762347, 0.0009485961376903189, -0.01063426668106137, 0.020047977106016992, 0.0291339182826917, 0.03346630450975871, 0.03701729136939454, 0.0410042708625311, 0.04875875452669247, -0.05211712859120991, -0.03975619882260291, -0.00231900858490729, -0.009739291438532867, -0.01626337379895488, 0.0617040336754951, -0.1086456726451582, 0.18301269545190804, -0.1703559129846367, 0.15872445705845653, -0.13755265542036163, -0.15937762281627518, 0.14941435225406488, 0.1304478310383535, 0.08785996724116198, 0.061935820106142944, 0.035614578904990424, 0.013972480851857387, -0.013665872139880046, -0.03972176331901078, -0.06985780187641996, 0.10588786782477887, -0.13213497142607153, 0.1186122656072979, -0.07629621782738667, 0.09780912464850187, 0.11192249060657997, 0.13779210173778358, -0.16877525663166779, -0.19612661306178794, 0.20027150351702416, -0.18463396765655135, 0.15111614713532262, -0.1183808634028396, -0.08043969686055814, -0.04375892395098235, -0.012668157485047713, -0.018606469516606383, 0.049589517482715346, -0.07838943452656233, 0.08812496245148459, 0.08378935593828835, 0.07484123038185828, 0.0866676724972613, -0.10979226103480949, 0.11468953193059038, 0.03678007470412055, 0.04404034281278163, 0.0448173643878512, -0.054072979136145664, 0.06955304828978726, 0.08661345189494908, -0.08789994895988326, 0.07897651870623289, 0.061218504404566346, -0.04584682528314166, 0.028514854100228162, -0.012069816107372981, 0.003526684993866571, 0.019303694803140158, 0.03604148414930731, 0.055400663197944726, -0.055425734720489866, 0.041016924667577136, -0.018642117196526475, -0.007594008728245498, + -0.11487207630577893, 0.08367900256168381, -0.053864198776966174, -0.12213084912824353, 0.03495710668191722, -0.09670495378259901, -0.10392706810805763, -0.022203619896791284, 0.11967770660836959, 0.07020992581764982, 0.07052161981096819, 0.12210945721913913, 0.02620304491715719, -0.1058025840957462, -0.10264001539749901, 0.032838883109289646, 0.12571984849768944, -0.056975083200038266, 0.08647001240904986, -0.11937693052162054, -0.000342480939825654, -0.0886144333477762, -0.13263441996939698, 0.057637657645774346, -0.08823573036515457, -0.13178762447850603, 0.008974998727155615, -0.12648111831432593, -0.09183619106273268, -0.061213231807498755, 0.13526637190394955, 0.0475849300584428, 0.10133487735559413, 0.12220195187011001, 0.005245592324402118, 0.12611645756070639, -0.08571267024840475, -0.06314916111166906, 0.1304714016777553, -0.030259935433522806, 0.11463545433882585, -0.11576953434786169, 0.03298226610010392, 0.10178905275913956, 0.047946059233923144, 0.005601329515780363, 0.0464003868099362, 0.0419226796784988, 0.009651006239645646, 0.05181811966623402, 0.016835758365764047, 0.04215389975829722, -0.04678373428522509, -2.681419288954809E-05, -0.04421996777602792, -0.031737561203938676, 0.02238751074850084, -0.0485820550115942, 0.013002156292503522, -0.03654325696976674, -0.03626619288485754, 0.009391728239328176, 0.047124612891430204, 0.029266155809828283, 0.028795479380479515, 0.03665222111289208, -0.04906562148009058, 0.04912657987280165, -0.013571356807584893, 0.19347878576788388, -0.11556780100484305, -0.11816065184845762, 0.12250761459563585, 0.02344154979820609, -0.134485764293939, -0.12145889045060163, -0.06126460227668449, -0.1664785268498083, -0.03373293735693962, 0.13158429337471192, 0.1335065094091957, -0.01058991045518785, -0.14935399106403968, -0.09527671827748829, 0.10494449917657085, -0.16324149714731134, 0.0033915055288657858, 0.11775403954073646, -0.1521741820528694, 0.062007903381999366, -0.09907734897129954, -0.1594594655025131, 0.02513531501381607, -0.141755431041862, 0.11629953656884258, 0.06284014813140104, -0.15935312751706202, 0.06057449864250418, -0.11599924354873453, -0.1504322771002128, -0.014219095023150203, -0.13903404493164023, 0.1180311021495913, 0.04472790736900592, -0.14452368295138107, -0.04754329667012786, 0.1360904402444645, 0.16421840785042632, 0.005067606622195365, -0.11029193638730539, -0.05970427163262286, -0.01750744539405221, 0.04083283524418182, -0.06711830008721205, 0.014826807968344758, -0.057602959405156584, 0.04709340113882143, 0.02665581549798328, 0.0648878263799253, -0.025938618077803656, -0.0461209160716501, 0.06237859409166409, 0.004051102620418425, -0.05896419452431865, -0.05034067404317468, 0.013386983277957582, -0.055753633067410296, 0.01804611066254489, 0.058992228102363195, 0.06433738673973206, + -0.09957980207832627, -0.11724438685043571, 0.03828683170904285, 0.07150238450918232, 0.12236358907721984, -0.07269028203327199, -0.03619093594409463, -0.11541802799755091, -0.09992932006019052, -0.0026451086811052123, -0.10240341357945094, 0.11801189138666446, -0.02908219487365681, -0.08258322032565718, 0.1259971706221372, -0.06722227184658403, -0.046696516670148736, -0.12252829941240179, 0.09986358863198738, -0.004923995553233973, -0.10675412956879278, 0.08871487668865657, 0.07870765928955369, 0.13251774750787157, -0.07572128494584209, -0.05175248379396703, -0.13409908843956192, 0.10695898854851277, 0.0015401558507313132, 0.11108330794688884, 0.12921413579308197, -0.03114901671702103, 0.08870096756239493, -0.13566435126119958, -0.06355521175570317, -0.057643986476498994, -0.13119982802799385, -0.09507311871950767, 0.017973629092631963, 0.11598307374887858, -0.1264275093318274, -0.030263802260231464, -0.09431302517898234, 0.10079375446825213, 0.00452171831750445, 0.04576945847419229, -0.04526986898002008, -0.005514092026311222, -0.0434045277475544, 0.047261125744833245, -0.022064602684789186, 0.027612212147924777, 0.053780534394281355, 0.026772950109955666, 0.015593099140496823, -0.04531523882049558, 0.03931558662942265, -0.0001946187845453546, -0.03979131054991547, 0.04211890369311036, -0.013623041958346925, -0.025221172732450562, 0.04909550991925285, -0.028037359124378998, 0.018420088980676038, -0.03528103945862028, 0.05540507418288207, 0.05116504303270959, -0.006188392109547988, 0.1511381719052448, 0.19632077620068195, 0.07930994691358759, -0.04026051637160425, -0.1321902557343543, -0.11453071897572806, -0.03542392325539723, -0.15219977467686216, 0.1441141786212318, -0.04122869536170776, -0.09939710409196659, 0.15906288338239732, -0.060842463549286206, -0.08344518280407925, 0.15593424235873535, -0.1300742741667282, 0.0025336677994087335, 0.14374954609365131, 0.11779634011181478, -0.08133209571942651, -0.15038333379424676, 0.09011868206169282, 0.06506702454913987, 0.15908379693669153, -0.12268471425118592, 0.0065850813795668706, 0.13258059304523892, 0.15117031700262623, 0.03651202883154775, 0.10570100768403703, -0.16054728417147002, 0.06720827682514027, -0.07577281075431196, -0.15480419089051112, -0.0950082847902867, 0.03362058693513492, -0.13493939337781735, 0.1562207342903787, -0.033716745249356105, 0.13271455769040275, 0.10785487708471533, 0.02469157171170438, -0.05786807690855401, 0.03878004937011066, -0.02963067065315007, -0.0668615435190323, 0.04967937399967501, -0.0010427193498982051, -0.053219203370220985, 0.06234636814941933, 0.014323713694259015, -0.04356746496246825, -0.06530943747036616, 0.03137046813637889, 0.028782071028501804, -0.06459630880847714, 0.037227200196416954, -0.013068767564934856, -0.05276403528625584, -0.06785133508600284, -0.009925222965301711, + 0.007265682944153619, 0.014515320697176842, -0.021758544846003213, 0.028930961659976714, 0.035879787190594384, -0.042712505818645885, 0.04947881491107552, 0.05595796709612936, 0.062180670887459925, -0.06570764587616482, -0.07192743809753556, 0.07792723426870274, -0.07846685396012731, 0.0840194684821674, -0.08936911835476076, 0.09546745649387527, -0.10033021677973357, -0.10470624511444213, 0.1107745936418161, 0.11515087044211152, 0.11839931626222785, -0.08919138322623134, 0.048426285532197286, 0.055577021169586495, -0.06115867325518505, 0.06530581627980113, 0.07241754521037738, -0.07979834561574131, 0.08949720960007528, 0.09532797865135019, 0.1006958150319385, -0.09915581184200072, -0.10463694326074317, 0.10968299890497198, 0.10833948469686382, -0.1125664363986374, -0.11658337161801528, -0.1180797970299512, -0.12111307992718794, -0.12390569972682432, 0.1341347908218756, 0.13879525617774255, -0.1403795771648891, 0.10077003346583684, -0.04312915325793121, -0.044786273850762566, 0.04239763942589332, -0.03493466823066887, -0.037153989476581994, 0.040551772423185806, -0.04984044336520741, -0.05081402800600622, -0.05148327436342582, -0.04404760988773489, 0.04512796174572264, -0.04589196888220248, 0.04803002354475159, 0.04849956976781065, 0.04891166090355651, -0.044121704368950125, 0.043448605146557705, -0.04309071837859845, 0.048925441593693365, -0.05051049214535912, -0.05003488818340084, 0.034481146448026016, -0.009174161617213352, -0.0056290708783549685, 0.0018578265937758826, -0.010212313425070507, -0.022225128234900027, -0.03799115809454031, -0.06180196562224392, -0.06846722073040848, -0.07451077272597424, 0.06374166755734165, 0.07306954851132008, -0.08170347975291378, 0.10586794302023803, -0.11294221875789472, 0.12003426829414099, -0.10392196053391022, 0.10838786517944067, -0.11429470715177549, 0.14803911944240672, 0.1609127551407838, 0.1655124374744598, 0.11984936110781871, 0.06759275374588895, 0.07528385538906333, -0.07847969241303461, 0.07899539266182988, 0.08726245574277755, -0.09582014738755235, -0.10633565020787414, -0.11312068225038398, -0.11952218411273603, -0.119715552499906, 0.1262588104981331, -0.13222367242517655, 0.12697897870638417, 0.13180582437708335, 0.13633781685559562, 0.1288555914072005, 0.13184535264856923, -0.13563189619417015, 0.16826403225328326, -0.17965745427456845, -0.18401466183000292, -0.10816887984808284, 0.03409141014662989, -0.0367152552702678, 0.03522901116273984, 0.03124394256389166, 0.034803992210774314, -0.03904352134526694, -0.04531616169956968, -0.04793164409902084, 0.05036856578662123, 0.04882063252913318, 0.05154723069720889, 0.05396042670301889, -0.05577427446503824, 0.057631222555899655, -0.059429269727010646, 0.051883023013442144, 0.05254198662566925, 0.05407796748005711, 0.07281192181443244, -0.10477122889432217, + 0.10743113257519231, 0.10511868266156957, 0.00484194580008732, -0.10917349852313614, -0.10171343613033254, -0.009425689643924635, 0.11066165460213923, 0.09909598946864936, -0.013283645070898622, 0.11279497603586397, 0.10146384888335666, 0.01392210176511894, -0.11325577684351264, 0.10497421430670704, 0.010103917355046003, -0.11538403422152443, 0.1016965739207078, -0.015657191227281805, 0.11899949946438064, 0.09843024306218667, -0.023836663685104807, 0.09001680146639257, -0.13035613462588408, -0.08517378098663247, -0.04538723205849704, 0.13535753406024767, 0.09062263334992719, 0.04717482337290217, -0.13541922567495407, -0.08184750974282912, 0.05473127524061467, -0.1338986506307147, -0.08493747741782136, -0.051418797804558006, -0.13169935512044387, 0.08480866702142385, -0.048175243159131104, -0.1303883551674807, -0.08266582582325716, 0.048811255429498955, -0.13772633770949885, -0.07886136464126049, -0.06429267661623728, 0.10152468410765107, -0.050088776891268755, -0.0074134396525885864, -0.03816551904887862, 0.04944922507134689, 0.02015062312289591, 0.03181633322484335, -0.05253743055292643, -0.011487541284995103, 0.04038667589870671, 0.04590148760770105, -0.01317640354346725, -0.0331885772641265, 0.04689985720156433, 0.011255141074955902, -0.03614143462189991, 0.04229555257394721, -0.009158551610859628, -0.03242047452819141, 0.04678020271944217, -0.010654802602586801, 0.03881600184734712, -0.03408158399544283, -0.04578194060691416, -0.055985546481063415, 0.009796586961000813, -0.16364977716018425, -0.18121696071221338, -0.003736017962691832, 0.13188713486497203, 0.10897711700145576, -0.021900203823810173, 0.1396626227507805, 0.146816108127117, -0.0034414567950646537, -0.14742644195159305, 0.12104702260699338, 0.03102429716887545, -0.13732789837818088, 0.13752967372398248, -0.0018982018225774996, -0.15872764450430749, -0.12258831440755032, 0.049200170698998666, 0.12362698435289375, 0.15072121743783864, 0.08218728020337135, 0.06576829973146006, -0.16122314959854486, -0.09933553640982619, -0.06446537000847832, -0.15980548226149652, -0.09076117294757996, 0.0696053876290807, 0.1592274181963638, -0.0932235563496523, -0.07061319501339043, 0.15576297580785728, 0.0914061989992179, -0.06598038566600213, -0.14635569371197948, -0.09455015094588434, -0.049514176453245025, 0.17209044833541332, -0.088730017226592, 0.10475476541442098, 0.11091747678378946, -0.05913669236646107, 0.0238469615023205, 0.03101821749501227, 0.06691781892175172, 0.041953500501333, 0.02709054416573324, 0.06563946010472298, 0.03463999572390175, 0.030921810438929907, 0.06487038546495706, 0.037104632159952966, -0.029936812122912514, 0.06557350858163309, -0.032720474481553456, -0.03405458148932895, 0.05853057456679749, 0.034863860728499854, -0.021264553267782985, -0.07372219648115998, 0.007472309734190827, + 0.10882489436065082, -0.10266579427916193, 0.011754948544445209, 0.1130327062342192, -0.09478949534955272, 0.024053215598497837, 0.11681904176028506, -0.0847579992431581, -0.037956211665595055, -0.12336778321173296, 0.07361319398986699, -0.05413234892521862, -0.1271617005236851, -0.05659453916086568, 0.07343281902879782, 0.12506319971502916, 0.04460079968688854, 0.08391998374114217, 0.12432350950979547, -0.03558394356911944, -0.0920615415304267, -0.09153040879704617, 0.09067391109790984, -0.12846855715108144, -0.02950035903077143, 0.10710095158417914, -0.12721771178364813, -0.012187678007446303, 0.11281516530320615, -0.12019925995366476, -0.0007669568258363837, -0.12365275401750864, 0.10843701516641026, -0.02113086493949123, 0.1287786120589048, 0.09286332336740598, 0.04147153083833323, -0.13060530208628587, 0.07673990441208475, 0.058982963445084385, 0.1370071638747859, -0.0779741642211616, 0.06688922713730013, 0.10348962890921933, -0.009857099325430005, 0.050974697834216376, 0.032604244151470445, -0.026789315009965523, 0.049923182936367404, 0.02186569840637272, -0.028983824353577044, 0.05448041147727135, -0.022286730987145155, -0.031522971071352594, -0.045861427813234656, -0.011083953155376268, 0.03599709647583832, -0.04603086855701928, 0.007372683153121985, -0.0369080466713459, -0.03860700923617906, -0.00019528148400803705, 0.04251749914987941, 0.04254933758443792, 0.00525982262726089, 0.03418131426430564, 0.05730432942117548, -0.04190385419485351, 0.016747257535749217, -0.1875562912104389, 0.15095974758760347, 0.041693775049893994, -0.13388341128395942, 0.10504098263991653, 0.03411384310348458, 0.16385907642512895, -0.08459851227795914, 0.08673367818686527, 0.15692654226247646, 0.09225654316502294, -0.06926779213865694, -0.15874735862544473, -0.04004242397912118, 0.11572576435120809, 0.16053406011457205, -0.07086808449726872, -0.10759392876843515, 0.13056356169266634, 0.08749999224037903, -0.15103798448386263, -0.0546267075288712, 0.11446646848637622, -0.15697320810925486, -0.03439782557106015, -0.121225861933614, 0.14549350011838144, -0.009122569167993234, -0.14078114526942304, -0.13808843507847154, 0.005729538730555353, 0.14519862520777563, -0.12681928172419715, -0.021574976072585753, 0.14208321765879528, -0.08727590321503347, 0.06746344572519637, 0.1680282927845458, 0.12981805200621435, 0.04056061693125396, -0.11849033974995113, 0.02558364540939947, 0.059235287444429324, 0.027327274207203534, 0.04721563746067589, -0.06583840290229429, -0.01654667803273672, -0.046839671277244886, 0.06067526322666423, 0.006887905982057475, 0.05646004095566656, -0.05765712326780004, 0.000688896187044718, -0.057186170568119456, -0.05865153126314343, -0.0019492694911821622, 0.05361992326712734, -0.037550693151767074, -0.024203114632117488, 0.07123690226309073, 0.05934330214897888, + 0.010165550142640405, -0.020340024398362612, -0.030666815538284417, -0.040867493120100504, 0.050948855101747875, 0.060657549701399804, 0.06926345837207104, -0.0766960011471554, 0.08265790470853772, 0.09217461351679684, -0.09840567533147093, -0.10497641452399419, -0.11781187575367667, -0.12195584490887242, -0.12567705856574277, -0.12733716355762287, -0.1285448097607032, 0.12700892074692152, 0.12473431446802415, -0.12441064483986297, 0.12316978454096647, 0.09165157233370735, 0.029970673460185837, -0.01845921708409367, -0.006770491424113323, 0.005364616076858767, -0.01709622178637147, -0.028931870752297383, -0.038340201539249955, 0.04746026841266381, -0.05570753775833206, -0.06878966561703494, 0.07857527786200291, 0.08891366755809334, -0.1041108075038651, -0.11307767180256, 0.12112917600178434, -0.12728709685436926, 0.12740060441287412, -0.12523480788183383, -0.12441904825829807, 0.13216465157769755, 0.1379642717554341, 0.10759819881767049, 0.0383342003475725, -0.03354739409417022, -0.02456708373377868, -0.018445579175423974, 0.01573089737295697, 0.013795484131967987, 0.009139762262086414, -0.004421143251618129, -0.00022740296767991355, 0.005216897180825468, 0.009358945664219478, 0.013344470773208286, 0.016863263942452338, -0.020881180835291974, 0.024970476750381602, 0.029771705676296438, 0.030466821966079284, 0.031536026691571746, 0.033925221985040485, 0.04062955098407821, -0.04504129336551899, -0.03651939811015772, -0.016350173963319097, 0.019442930052788972, 0.016393611761675798, -0.03258868454121777, 0.055364377669741255, -0.09407264084166715, 0.0906549859241716, -0.0913731895071328, 0.08930550722145213, 0.1198958418171916, -0.12909305838994287, -0.1349690195853677, -0.1218363626873129, -0.1347390529815663, -0.1522716839522355, -0.18619002834405454, -0.17196922804112424, -0.15781080953263404, -0.14578790598483024, 0.16507227742667882, -0.17162406191923138, 0.13808642697541004, -0.04813030317736077, 0.03258435968188174, 0.017045316196040043, 0.0010491669743616962, 0.013397700755539086, 0.0280651405146657, -0.039889114469851245, 0.04927550052325338, -0.05551006313353859, 0.0644765415585133, 0.07261361013069391, 0.08477614254655495, 0.11118380663489552, -0.13671014932940057, 0.16670632114082956, -0.1978415971983488, 0.18675814331851626, 0.15208780040017003, 0.11003706247879781, 0.10622052068187025, -0.11819447789975056, 0.11782880490872161, 0.02405648361932801, 0.01769912653788468, 0.010429263869425547, -0.002573649744907353, -0.003297077765834864, -0.009497806863903443, 0.013870498152141114, -0.017282020706858157, -0.019307884825602094, 0.023128549864291827, -0.02655678390243295, 0.03195572357204608, 0.04089760462187909, 0.05387994161378844, 0.07149533223828353, 0.09741106812556183, -0.0925506772057664, 0.06656272705954502, -0.02958793442857108, -0.011862979192250574, + -0.09783995399567748, 0.11953213484913264, 0.048617275593663134, -0.05967979987774355, 0.12157147196034009, 0.08806818370148864, -0.015105006400563708, 0.10640896774486326, -0.1131731989645624, -0.03610444989090256, -0.06973548462757623, -0.1217670575326982, -0.08640118115833983, 0.02311460794151679, 0.11404934288109266, 0.11456323490044829, 0.026071185052804716, 0.08338856649374597, 0.1284554604638799, -0.07543546205887355, -0.03757200875969703, -0.0902317823153179, -0.12262635449291942, 0.11005751663202247, 0.011390629197364787, -0.1026097444883311, 0.1341641639070612, 0.060839306676099485, -0.06086145663372224, 0.13717786569610177, -0.10466046960776756, 0.0025948978278981967, -0.1060264921676123, -0.12771559586518227, 0.057175815881492814, -0.06157866035044163, 0.13163108926492484, -0.09786040010404044, -0.016984340242369906, 0.11801937293580451, 0.12950747213741098, -0.05056863965814065, 0.07106118899947364, 0.10098050000379898, 0.040235929349017256, -0.00880418998008203, 0.026679821491119506, 0.05685917595728821, -0.04412422411088118, 0.002834668739827668, 0.041603000436333804, -0.052658400515520544, 0.02269663454021964, 0.022475954318233213, 0.045331307215459915, 0.032251738949742294, -0.0072213190429920755, 0.041158398605222385, -0.0432108237478876, -0.0143239325417395, 0.029693175365061254, 0.05007828438850999, 0.031654849233631474, -0.0032936559485510566, 0.03740897094340482, 0.031240147445815977, -0.048738403857462025, 0.07072180834125029, 0.025037110028070533, 0.1313907052360318, -0.15698666428833755, 0.08052217138603318, 0.0593294258894346, -0.17825947068482764, 0.15236288091609837, 0.04916081702901336, 0.08895949375490779, 0.15701935205605813, 0.07921861285778034, -0.04175816334113476, -0.13271158096060048, -0.13487621186748258, 0.007218901143093034, 0.13813486158345184, 0.171471382476849, -0.10831833872959638, -0.05421384546158202, 0.13014675740074516, -0.13808395363784007, 0.11387344513043103, 0.0036846330504146096, -0.12712365441143217, 0.15796733996639226, 0.06686512552772153, 0.07634586551241447, -0.15852267464169204, 0.10908312055347091, 0.023031885600562293, 0.1359932223712677, 0.14963849776955565, 0.06898966247363716, 0.0657113109752061, -0.1499602654693113, 0.12051271653541633, 0.026660667570590917, 0.14939961717754183, 0.16024307182755307, 0.09442701029417566, 0.04308698154601509, -0.1060045276322803, -0.04933074728267989, -0.035028911768362814, 0.005080341722172712, -0.05750721146274032, 0.06529421245902846, 0.024169610608636108, 0.03405831809113387, -0.06612584559632004, -0.0424430016009925, -0.0126574030184518, 0.05673712791339632, -0.06025451680999085, -0.02220331815905775, 0.031229379505193305, 0.06235476940402051, 0.05288098391167718, 0.012262386744372349, -0.0646529450692572, 0.06758848900431018, 0.04350242282012802, + -0.11589185564243447, -0.07854395590885886, -0.0630247586282386, 0.1207210265635904, 0.018428941530223612, 0.10804410900147603, -0.09222965962346737, 0.04529509828657046, 0.12302576783902378, -0.032876766933955366, 0.09856795945998496, -0.09979463477413747, -0.03682983628922085, 0.12818198487866972, -0.05019692549627779, -0.09392998380239675, 0.11273491607726534, -0.01703195694244397, 0.12641331841937495, 0.0665103994672692, -0.08264021295896712, 0.09013749402819773, 0.10235231782531035, 0.10958431603387955, 0.026926815645162125, -0.13494142853821772, -0.06747026702568706, -0.09001478246946105, 0.12972466883137582, -0.006281300528902171, -0.13350811424165937, 0.07538178488209114, -0.07590683654591947, 0.12698081599741287, 0.0033332168476350697, 0.12494200992592723, 0.08824504421858627, -0.06486473885027953, -0.13509105806134283, -0.027613518657211802, -0.12148894901586699, -0.1000943709092612, -0.056998282014150414, 0.09937444438477123, 0.004766362904020743, 0.04311173144163012, -0.022987739481962095, -0.04431441556918332, -0.05107524953665818, -0.011167100246755352, 0.05414107624338221, 0.018940106410282792, -0.04037258870771472, -0.04106646412850403, -0.004461240095033925, 0.04431840524795051, -0.027123098678249167, 0.02666118093840468, 0.04542391610911044, -0.0009180063533643635, -0.04729855009695761, 0.03268085081609035, 0.026185039436324057, -0.04234409381796285, -0.0016395047688594262, -0.029597594782180593, 0.07132026020564684, 0.036296213970115204, 0.03509001382105381, 0.14964250080656952, 0.10313160935730976, -0.09887558612138615, -0.16855569983201268, 0.03234031023916818, 0.18439170010324654, -0.045208231362868945, 0.12536226533985095, -0.13141962405705188, -0.016003705013554033, 0.1361014563511086, -0.07533546868918291, -0.09016260802909035, 0.1657740821062963, -0.02563820117475908, -0.17144519232830033, -0.10353234933769603, 0.11329493266153762, 0.12850051509975768, -0.09945879441451289, -0.12605234016965003, -0.013453608244662792, 0.15551153352278665, 0.09441481437978393, 0.09213128632875783, 0.15595180412319476, 0.012716054973646803, -0.14710801983647084, -0.1070912353951626, -0.06944192495519007, 0.15409797029734343, -0.017878804775587547, 0.1394744513966767, 0.11023584463661204, -0.06718735466562085, -0.1660468180571822, 0.05334662112503487, 0.1486799068850599, -0.1154144946607588, 0.090814336255258, 0.10203779043093535, 0.02861801695667721, -0.046157220206814766, 0.002669240509681978, -0.06280505289214353, -0.04606546508949578, -0.03306381689944332, -0.0661262832267151, -0.009344203434932183, -0.05936258277521668, -0.04619370475716953, 0.02436980313247453, 0.0627227157043922, -0.015482211315864837, -0.05251798048279357, 0.04950329466715094, 0.024333050337800387, 0.0702411324893837, 0.029508609959035682, -0.060554204052563516, 0.026486594283953488, + -0.02739331967421237, -0.05344759234795301, 0.07697488409144766, -0.09668553116594972, -0.1111341470752047, 0.12005989877264987, -0.1232599927245784, -0.1200068994495338, -0.11065821432173174, 0.09107418143471076, 0.07116032246274391, -0.04759389748527407, 0.018717187819427456, 0.010065748581094278, -0.038212721215987025, 0.06499039216866559, -0.08774769374684215, -0.10604672380316287, 0.12127855951353182, 0.12887891939521778, 0.12922278438322807, -0.09049956269126593, 0.013057999686119462, -0.01600666689663706, 0.04314478099501606, -0.0687502426695325, -0.09339434451142832, 0.11414737351264236, -0.13271259946283034, -0.1394599947755634, -0.13907428497299532, 0.12238774766461763, 0.10889414284413143, -0.08977357965901042, -0.06139550475769512, 0.03321997583616874, 0.003543355253683018, -0.026079269112413053, -0.055141966143817375, -0.08145198357240106, 0.10988396065795213, 0.1274811952357008, -0.13665716514723206, 0.09898340915789543, -0.03512714716909386, -0.028046497425497644, 0.018116369366467905, -0.0016033341870516154, 0.011451388516020133, -0.02500879907010104, 0.03976577912680951, 0.04665978802277436, 0.05100514224432053, 0.0450519306365671, -0.045633287500371704, 0.043770136785927026, -0.041159962323131453, -0.035219780722329855, -0.027548681502020785, 0.0160411693098572, -0.004704975300540099, -0.006553291815657107, 0.019619185285740595, -0.02863952520840415, -0.03560685238342336, 0.02858335917768296, -0.02644689254523825, -0.04044506315993091, 0.043066521903114253, 0.04806444340166072, 0.08174637767506494, 0.12321441265385624, 0.18817412855326165, 0.19084226312850044, 0.18366614847900523, -0.122857625138801, -0.09915548042534526, 0.06955779315880498, -0.04867885172944561, 0.018462511020413054, 0.013047113911891357, -0.03946139490042402, 0.0743675632617465, -0.105587792214244, 0.16125739846077652, 0.1835423407561804, 0.18840131771160867, 0.12966689700729409, 0.034158503206437874, 0.002852767193320744, 0.026743729818720648, -0.058683549308699186, -0.09076389765392653, 0.11899932660730153, 0.1435993426052643, 0.15675428632683308, 0.16218236450095358, 0.15141356650943383, -0.1416215830641604, 0.12428344863629598, -0.09032579973762213, -0.05956493853300754, -0.026209189411005588, 0.009185839464895944, 0.04536602417943888, -0.07954104652316528, 0.13211311853497226, -0.15815483515918133, -0.17168458122248342, -0.10145676404075818, 0.01944820846330866, -0.008956046165469142, -0.0015064404929620626, -0.01600082059018222, -0.030415958960083242, 0.04427297163466001, 0.05767336582448585, 0.06403331419758372, -0.06722301837333981, -0.06186950704136391, -0.05906843880688011, -0.05301592229628173, 0.04379830733648993, -0.03255564531559385, 0.0197766623983996, -0.0036734490087954163, 0.011784306507435954, 0.026695235634505265, 0.05259504784006694, -0.08809837398027745, + 0.08629050807171443, 0.12319655796722505, -0.08954924593673289, 0.005152510437119487, -0.08239864944338333, 0.12274804605075529, -0.09327721332078348, -0.010309652795780198, 0.07844299306479863, -0.11978522052811859, -0.09760806442565446, 0.01923337181206272, 0.07070499106549863, -0.12548961668688527, 0.10844757269788292, -0.03039856528316255, -0.06465152265764366, -0.12292752333380608, 0.11320294894681925, 0.03813625372618531, -0.05990618104361423, 0.09120127365560761, -0.11622688463237621, -0.12321914730751929, 0.05858519339320468, 0.04688919857512882, 0.12358762373472928, -0.13049824034590354, 0.06879530446589743, -0.036482462444520025, -0.12054089879719793, 0.12830930598010076, 0.07194331001349748, 0.026095882048533105, 0.10717444339931928, -0.13294668152125286, -0.08289549105164729, 0.015039009545211441, 0.10567016038877165, 0.13594918464153555, -0.09492571325147665, -0.00014415932471014857, -0.09744847647411384, 0.0993604456368663, -0.041878437910169375, -0.019108808262031245, -0.01263619752694134, 0.04631232068817537, 0.05825210770204475, -0.0376294318744147, 0.005397139271287493, -0.03373846214350494, -0.05291562929912266, -0.03326032544616546, 0.0020120609574103667, 0.03055037841391553, -0.04674520343319228, -0.03468333456677862, -0.002656838462206557, -0.029769960422635498, 0.04976787617452991, -0.04145211229730684, 0.01227033674615912, 0.02040169478960176, 0.04238582441815716, -0.027914676785061154, -0.043602337667981134, -0.07106183970497625, 0.04885529817311276, -0.09088243735634799, -0.15877910897001302, -0.1462069073513687, -0.11035323326633006, 0.0323184408481645, 0.15182986023739878, -0.15569540732497322, -0.11805902764187896, 0.011778447043766158, 0.10256030230210536, -0.1395098590557968, 0.09612117195812632, 0.014682470334230362, -0.12873396907796608, 0.1680089144256216, -0.14311369876266072, -0.033363121006560505, 0.10641242949795453, 0.13266736730086617, 0.13434663013362408, 0.12341330969353913, -0.03992394087591638, -0.08383445865032695, -0.15673478267830854, 0.1405262967037724, 0.05091766648165757, -0.07069193308908665, -0.15245009704285478, -0.1404406530107945, 0.05528219988719138, 0.06307896596875293, -0.13998999459525957, -0.14627309172229058, -0.06853627845554022, 0.04941287263914653, 0.145492382436598, -0.16163977187372866, 0.10921725838832366, 0.007442887380909175, 0.13114922324992095, 0.10309386709591539, -0.04817357503755833, 0.03785094874793575, -0.005785776775338761, 0.04356781153413574, 0.06791432668643478, -0.05414661248794821, -0.01606901458034854, 0.03418688597381543, -0.06510706790847982, -0.054148870250559894, -0.016880846638254194, 0.030798986681701244, -0.060292736760280824, 0.05455308260404508, -0.017065565704014914, -0.030595580721817728, -0.06569213971497218, -0.06617915684174358, -0.04183362028718187, -0.03128327103690874, + 0.12063924064557362, -0.049618936617573266, 0.1003910904296626, 0.0902444030277859, 0.0634655772542093, 0.11593018753343805, -0.017010814556426397, 0.12288351366635027, -0.03215441526284453, 0.10970532940402641, -0.07260737795716343, 0.08009115496910116, 0.10979286327910086, -0.043261002390753076, -0.1268695323792767, -0.007005784097720006, 0.12304512634683987, -0.056173198125379985, 0.1023412606407925, -0.09810019551122139, -0.06305974109246387, -0.09241839193778696, 0.11098523551994188, -0.08914424437055658, 0.07244827429501527, 0.12897474650668186, 0.01864426749411248, 0.13784167941565412, 0.0298790523810071, 0.12816639180361566, -0.08107191404224866, 0.09107771542116815, -0.11181452970742035, 0.044884736754075644, -0.1319756663787211, -0.0016580680614474248, -0.13083101216668344, 0.054930381730681654, 0.11146753773975542, -0.09926394727790101, 0.07686398079263405, -0.1278120207353651, 0.026019940637311903, 0.10068503872716239, -0.009147106271854926, 0.04432629101269294, 0.00681435771175913, -0.05648500047558381, 0.025276015751830545, -0.04841315756947181, -0.03174925698128544, -0.03602854995546911, 0.04571692861277505, 0.009753685012698242, 0.0457260783421025, 0.008594831693750289, -0.042703903060367636, 0.02740403651461451, 0.03165286783922933, 0.04097037085312671, -0.021457839173279064, -0.048817286102534975, 0.004345826538213272, 0.044251894691528834, -0.013054980052400385, 0.027597037528190392, 0.07219602994485538, -0.020351382243137265, 0.051661482624900064, -0.15879642069784092, 0.028314339997638677, 0.16781767977779133, -0.025606657873067106, -0.17941497513636903, 0.09408194373491899, -0.1313644665076564, 0.10809140258028702, -0.08935501985072589, -0.13442404138184982, 0.00730495188347691, 0.13939161339264347, 0.06861462798462714, -0.13816080102273637, -0.12034593783028334, 0.11738950307608548, -0.15911690786397992, -0.06374515798129582, 0.13824140772026153, 0.1040417890413706, -0.11530316110473163, 0.05132486094739287, 0.1613670766154985, -0.01866720844419225, 0.15438829315666744, -0.07098671131759217, -0.12955645067395477, 0.11929370330576879, 0.07804287597245443, 0.1482576047191749, -0.012595939117659776, -0.15605631276754298, 0.04576040688872707, 0.13485097549450517, -0.10375535940132667, -0.11061036338369763, -0.13954460987795095, 0.08024629528488729, 0.1676295554476709, -0.002187076855403992, -0.10799791691546992, 0.029263469664345232, 0.04427920792063644, -0.009340268603511781, 0.0681136348415616, -0.01926923048601339, 0.06152117330546822, -0.03513572148086596, -0.05023544896778016, -0.05325155917865322, -0.025831058253990787, 0.06179544084213842, -0.0022074227423797338, 0.060986700781292064, 0.030792838544482826, -0.04653371820434501, -0.05430522607033688, -0.03733306015956571, 0.06328837561905104, 0.028163229386544576, 0.05962571492920633, + 0.04407281172625524, -0.08264113927590341, -0.11139751365191972, -0.125792285335062, 0.123986712159785, 0.1057582455243344, 0.07249210834186826, -0.028884489609080174, -0.018830457277660126, -0.06552647466010045, 0.10136406413868852, 0.12489273567714927, 0.1401305160932558, 0.12737808930651814, 0.09830764187212351, 0.055143118057377975, 0.005224530617665904, 0.045572703518214505, 0.09113285920223832, -0.12582073376936703, 0.1441146634555498, 0.10841837378986846, 0.010279071831019459, 0.030163105260844793, 0.06498245406234773, 0.09698669382863438, -0.11735497481053345, -0.12302789823360115, -0.10463428126034328, 0.07137379193417734, -0.028066756925977696, 0.017437774454752027, -0.059252115761191396, -0.09414765634642558, 0.1222359040541246, 0.12767244722271845, -0.11609627665519136, 0.08849311395314204, -0.04525014692866081, -0.004325255289708001, -0.055807318374468846, 0.10100684513793472, 0.13308328129687852, 0.11077872850160905, 0.03549846178902677, -0.022142069585194775, -0.004604400881739739, 0.01911591862715111, -0.03823455178826655, -0.05565229935191362, -0.05263472865355017, 0.04466229487322236, -0.031068596900014827, 0.019655340394672965, 0.004264062400767323, -0.011819661566191525, -0.02606180763099626, 0.037773916147496915, -0.044874396213721815, -0.047836461380178386, -0.037806009425349875, -0.02376846861376836, -0.0058625694089138175, 0.009480948636050639, -0.023865378272467458, -0.025832761435906848, -0.03328802359164058, 0.052872165448250824, 0.048212504208539154, -0.09445025402089609, 0.14828965394479, -0.22216571266278448, 0.17663297810921536, -0.11043420507223492, 0.02971209052059801, -0.05435341015917865, 0.11491862122601722, 0.15863169661403476, 0.16067121524470737, 0.17632024280567846, 0.17549907944397994, 0.17397475360120832, 0.1024432038453945, 0.020773134262168147, -0.07728289761244538, 0.1627077553584795, -0.2204457936649527, 0.19310006119766754, -0.07198297667017005, 0.0460920155968432, 0.014964180169358673, -0.02147964357008279, 0.053780002122386504, 0.08003236235923164, -0.08906830583375751, 0.0813390207519311, -0.05833900465364754, 0.02986826715485149, -0.002575506845591732, -0.03515303556291939, -0.06928193033957987, 0.09385036580164338, -0.10957166918518242, 0.11296500259180313, -0.07824052849219029, -0.024318284474399935, 0.042917693156708216, 0.10791972708787495, -0.18139115175026727, 0.2006624033581771, 0.05238369194011058, 0.04741891619406362, 0.0331962435905981, -0.015497145394118646, 0.002076108676524098, -0.011878490462634509, 0.021581221854772372, -0.027261993829516905, -0.027402543478770608, 0.026414768269415113, -0.021706048161161923, 0.01572397321040823, 0.009418373705128158, 0.0028572227412202718, -0.0037971952301109396, -0.010139794863083479, 0.01200879250301358, -0.009679857108998697, 0.00469544932407588, 0.0020017804284600915, + -0.07301395704199744, 0.11812952152237928, 0.1187236531604701, 0.07378013255700994, -0.00027425643334547285, 0.0732430615807162, 0.11735375642054247, -0.1147832317025844, 0.06634023018918353, -0.005436257340482158, 0.07441347331887595, 0.11534432955333236, 0.11897263701398957, 0.06811670351898581, -0.00869797539570201, -0.0823176426860831, -0.1238121346458029, 0.11558130261300421, 0.06182585927520283, 0.013367026389591153, -0.0841520813304023, -0.09177380295844831, -0.06872131376535798, 0.07009925201613523, 0.04341859507544474, -0.0001385983910269302, 0.04182974246270793, 0.06778751087703679, 0.06279151733413547, -0.03291005266909398, -0.009952503383725959, -0.050727207664513226, 0.06917584994923225, 0.061581669077997815, -0.033944469329534765, 0.008826010560157894, -0.04800715612209851, 0.06794877856983818, -0.058900050875533766, 0.026407296193118615, -0.01790921832169022, 0.05395910520260585, 0.06939539572578132, 0.043863708083962956, -0.0708088676568715, 0.13250057410724939, 0.12395448464975081, 0.08542044584510156, -0.032082630881345095, 0.03528305868820024, 0.07464106051888697, -0.09143914353615626, 0.07284581680960305, -0.04053236138585873, 0.009835232371957216, 0.05651669755043927, 0.07969595902673828, -0.07476618318446024, 0.0412316852825671, -0.004631024065070857, -0.05065529242366389, -0.07698182149667146, -0.07664371684799631, -0.0590087084038296, 0.013888500679925773, -0.025883858801379975, -0.1600182547679665, 0.2487610476345244, 0.17413469481118535, -0.042380640350656515, -0.005040155900977918, 0.05864543018219876, -0.05917613320909071, 0.03997945618988216, -0.005344257632645613, 0.03394094391605187, -0.05126841467489986, -0.047854681448357625, -0.018700379469255693, 0.012955876708588509, 0.04042893296738268, 0.056073792465543046, 0.03565684864437517, 0.002513656641397039, -0.037337719677181226, 0.06361913817146106, -0.0620469897584981, 0.029521046020773874, 0.08490767767657735, -0.15729851874949194, -0.16326964217296505, -0.12112647409044904, 0.04698429343964086, -0.045107021457436454, 0.11321228427553616, -0.13237291795131345, 0.09320132718290633, -0.02091607153213403, 0.05925688625769543, 0.12035408352011955, 0.1547503279628111, -0.12787094046289285, 0.056534365457315584, 0.0317818344037148, -0.10252624069841926, -0.12184967772345379, -0.09049341703674785, -0.05622811502387148, 0.003795484887094384, 0.03158543457538471, 0.1468257647705564, 0.2423719633705529, 0.22004171834399494, -0.13317259243803903, 0.0360994931724424, -0.07606524704992168, 0.14059071594242642, -0.1435039687804762, -0.08123779106141132, -0.008958505398686912, 0.09413111112024901, -0.1503029520231864, -0.16414228318643936, -0.12990802598691348, -0.05635014182934175, 0.02712109665371442, -0.09099782415567514, 0.10033115472315136, -0.060493550461565015, -0.029674456005433565, + -0.12297203042695228, -0.015228171137425858, -0.12146136728976585, 0.030353987985753842, -0.11799199515351169, 0.04530668593455497, 0.11160530413404755, 0.059895019087389194, -0.10356716770058237, 0.06917940353795778, -0.09150425833648042, 0.0806574032875681, 0.08590234690136879, -0.0980227068440314, -0.07315831203911816, 0.10845522477584695, 0.05960534953536019, 0.11662514669275312, 0.04454769869302004, 0.11917257711676356, -0.030239980519801493, 0.09080653447976017, 0.056744151223912215, 0.04795230944670229, 0.049268071927360886, -0.055635681459469635, 0.039459214310010655, -0.06119685472804965, -0.02762198893308921, -0.06553550021735788, 0.018931731880565142, -0.06794446935120035, 0.00620114162022054, -0.06896298509450781, 0.0014538822584144718, -0.06944971811379844, -0.007436391054251397, 0.06786897238617265, 0.018065190655602054, -0.0652645702447643, 0.02902132979654426, -0.059123532057876724, 0.03710564473506022, 0.04011052527656406, -0.14794970631450036, -0.00043495620663992047, -0.13238392414601424, -0.0023807084317397065, -0.10753413997444718, 0.009983039306628779, 0.09185131832013159, 0.012322414584499364, -0.08852267214533366, -0.007578719438527438, -0.08158739836108334, 0.01829049494004594, 0.07907585721915765, 0.025546304114578054, -0.07639958756672054, 0.028291725922259123, 0.07371033708173332, -0.0365983647918017, -0.07455285020029717, 0.032706218039934634, -0.07423456542535299, 0.02847576398485116, 0.2656107080695553, 0.0394764713516658, 0.20387025543882537, 0.03349175171526726, -0.07346680715073142, -0.044175093193159834, 0.035859674344981364, 0.04885199972279101, -0.028029466141481687, 0.05040548122635266, -0.00760872638426387, 0.05189384748813848, -0.00736998102814608, -0.0510273577551802, 0.013102259723410363, 0.04815128652790341, -0.0319493491766057, -0.042020102296898905, 0.04780985462931232, -0.03539281448899731, -0.05668772801086566, 0.022778687669781562, 0.17303884423583105, 0.0026002272608317547, 0.16177554902940292, -0.012259747483254837, 0.1454295164116466, -0.030066452599632615, 0.13443558160709587, 0.04915534238006973, -0.12691658585554313, -0.060484051685187924, -0.11654402123900863, 0.072494378361317, 0.11710567494893394, 0.09158675430517416, -0.10608349170524213, -0.09513555783550104, 0.08167339559286357, -0.10983511576487898, -0.06874467999979943, 0.08920805383661402, -0.07256485479550336, -0.051386361344158436, -0.25772065528709354, 0.02919194260296485, 0.2220773319004711, 0.04470317205582554, -0.17277025558021644, 0.06530936491425163, -0.14296665271768896, -0.08574271791817643, -0.1287596663140904, -0.09570446719722084, 0.10974244736005333, 0.10659057179912645, 0.10294123460278266, -0.11438759586630207, -0.09294399558635708, 0.10665169382306985, -0.05386624329363255, -0.11804460803426137, 0.029729237976971492, -0.06925806626134576, + -0.05987018615194126, -0.10469875263113435, 0.12331434792479454, -0.11107586763820844, -0.0702759109710671, 0.011867774501253661, 0.04931121582932915, 0.09803731678351853, 0.12200440239649239, -0.1102666998785688, -0.0757669486794457, 0.021956902870772472, 0.03835247402020324, -0.09201643343235764, 0.122382150805597, -0.12337833226545032, 0.09233052210726744, 0.03787883546170603, 0.02639222379706376, 0.08249459791381776, 0.11779243057233368, -0.09072824900228244, 0.007596008485506868, -0.028263257809856834, 0.05558034072404775, -0.06871243953993826, -0.06755067607094753, 0.04964952147266158, -0.021810099907711385, 0.013045833954473854, 0.04448319944432134, -0.0622705793829894, -0.0686824823648117, 0.057666892171742735, 0.029068141734300692, 0.005364330481254559, 0.03833340020419311, 0.06074607578499389, 0.06910065602470689, 0.06019545033923264, -0.03877500076502917, -0.00784926824153355, -0.026111313533107132, 0.03836277271901728, -0.08591812889092267, -0.13319616648988108, 0.13443972969067028, -0.08178850278253794, -0.03827333699068081, -0.01663661254434995, 0.06381282558108078, 0.08741169565125666, 0.08855329542870635, 0.05261657487849913, -0.015354439303091248, -0.02601400618481521, 0.061871814527189394, 0.08009166583386285, 0.07830670985476801, -0.04954044235358698, 0.011496173172865458, 0.02842852904522018, -0.06892425074308278, 0.08272469590082826, 0.0731502930230645, -0.03096762560422886, -0.12121711629005752, -0.21929914955873916, 0.21635380935062073, 0.07941730286058904, 0.06122232352187687, 0.02788525552271006, 0.005552620688595504, -0.023682831485189695, -0.046009710777709545, 0.04773814538539941, 0.05180617459154792, -0.04251095604253676, 0.02998529533256418, -0.005621644044031931, -0.02049428166254685, 0.036187187757059286, -0.051496119913971586, 0.05435467133475284, -0.054868971698266794, -0.03727216050924655, -0.006747238267290449, 0.018871942192508616, 0.09357156192256717, 0.15209136594699896, -0.16290500480380402, 0.12413900384323905, 0.07020333291848894, 0.0013901416455107656, 0.06983704722315867, 0.11981769527861778, 0.14005387039638514, 0.11805038301641804, -0.07282112482811029, 0.008315399392295902, 0.05942066601637694, 0.1161607501989145, 0.1430886679580568, 0.12222279423336485, 0.08149013828233365, -0.021909350936290487, -0.049989691515388686, 0.09457759515360284, 0.11402157058355826, 0.05800221633221874, 0.114206720548659, -0.21116353107673883, 0.2275017424156488, 0.16766131102448872, 0.1138440297734171, -0.031212954331770904, 0.049224848903177736, 0.11712572690841093, -0.15587691385489266, -0.1439940612606295, -0.10859592545400765, -0.044373129307034714, -0.031964927001194895, 0.09993675212622957, -0.1421768117467501, 0.12585706530470306, 0.09951242722113535, 0.05194588717244782, -0.008561798300410022, 0.0876844113900233, + 0.05827603116565501, 0.10273657001423743, -0.12293629022984064, 0.11410131683114175, 0.07754887632754581, -0.02265053975215968, -0.037391291422315225, -0.08853076596136962, -0.11854982073166567, 0.11564449155010229, 0.09043288711822409, -0.043522187596732986, -0.016167683794200485, 0.0735537838351336, -0.11328071321507668, 0.12746962379343232, -0.11024669800664534, -0.06667747394162112, 0.007614893099093081, -0.05214769949556991, -0.09976271402527982, 0.09101524767982062, -0.06477509620347542, -0.07204056381912537, 0.06085460976221057, -0.03224792593457841, 0.0011624654995579997, -0.0346159407082285, 0.06023331741674575, 0.06956590408550001, 0.06231969376502097, -0.03571053621875768, -0.00366237709787986, -0.02939298942537987, -0.05365548309556009, 0.06815917491690861, 0.06654649660001942, 0.04811795140363905, 0.018845376266516528, -0.014771816818468769, 0.047286134837902755, 0.06516849026489378, -0.06667830896792573, 0.037033494637820547, 0.057120391893020574, 0.11449863560675622, -0.13199626210615736, 0.10504352897778263, 0.08353696839049682, -0.04256635393009314, 0.00376723836754672, -0.04000137300229248, -0.07340482026386692, -0.07918035148180458, 0.08077362293183833, -0.06289809016162459, 0.0320268656757216, -0.007342912773494272, -0.04521870313308162, 0.06650457428733335, -0.07975197995012956, 0.07462980527668583, -0.06048782216638037, 0.030553827942582438, -0.009537190337299304, 0.033774567560385625, -0.1385505556236236, -0.22775225515432013, 0.21720951215210224, 0.06305605775048259, 0.03143195260287236, -0.010873459233310831, -0.043895988428427055, -0.056946112542526454, -0.05619132235104068, 0.027612916478459214, 0.0037478244976399747, 0.021260574997628533, -0.045900294697935606, 0.051979143987141395, -0.04571121944440498, 0.02099765114861703, 0.006299572349739447, -0.031154866828336653, 0.05914809847055765, 0.06308968110867488, 0.048804525784717084, 0.01542393258181371, -0.07656778966395493, -0.1405506769391467, 0.16170585672656043, -0.13786359621060715, -0.09738023575656753, 0.033961050644827746, -0.033830600382326145, -0.09375916148539033, -0.13172376217225765, -0.1324318580414225, 0.10882236237254082, -0.05841394445465195, -0.011325900305711631, -0.07855767152820933, -0.12645722758519853, -0.13282181542107777, -0.11979684315351036, 0.0803954205561356, -0.029127781808430734, -0.024431201316338223, -0.07617882900984113, -0.06471436514719799, 0.1413112060836913, -0.22531070253300312, 0.22857484857366298, 0.15404798688234686, 0.09102039718330833, -0.005733590211885494, 0.07267568985463341, 0.13168860068124147, -0.159804758956767, -0.1377560615586063, -0.09535219165477932, -0.02888282104812965, -0.045153708757787896, 0.10813522939996717, -0.14487675796150776, 0.12425341882722073, 0.09547835433475892, 0.04766479901028951, -0.012387422598548154, 0.08983669523839895, + 0.12284353418323521, 0.018833272323789934, 0.12033684903762576, -0.03732918379497261, 0.1149100078714431, -0.05525883341865943, -0.10559041180276754, -0.07217000667653592, 0.09382621027629537, -0.08357627251284705, 0.07702530816145883, -0.09561674250514883, -0.06785153946848915, 0.11158594880456305, 0.05021947648118848, -0.12038916180318666, -0.03188310099546815, -0.12583583386642444, -0.011367966773121987, -0.12489897971974796, -0.007697506639749648, -0.09170431967030951, 0.061504336642867696, -0.033141946115367214, 0.0648353829576167, 0.027568797197837322, 0.06678489908430463, 0.01732230674873675, -0.06828241020301698, 0.008279418099867866, 0.06934941655039187, 0.002879717573027274, 0.0688699709839089, -0.007428800393797857, 0.06770712593778516, -0.021718703862318115, 0.06404819522848805, 0.03108538819791779, -0.05898984087961551, -0.040539469939044226, -0.054370928961741345, -0.04335148324014172, -0.049334304476923795, 0.03591573283323038, 0.14631347328547828, 0.03510925361465158, 0.12519446140324073, -0.050127621571799466, 0.09068281531119049, -0.06631642261359377, -0.05824038280059571, -0.07476792668391649, 0.04567657817456901, 0.07798292746031418, 0.019733406316163795, -0.08153584454052458, -0.004486370805750896, -0.0817881779007797, -0.008056190677586117, -0.07774060521290563, 0.030361198359384875, 0.0713504997369289, -0.04952603372435104, -0.05941352473352611, -0.062190614139939274, -0.03707300517044816, 0.26646989610513544, 0.023794135914989283, 0.20640307172208083, -0.0028434151516356972, -0.08284194840551258, -0.0057876028687928755, 0.059619348745072104, 0.004370542835594023, -0.056801501538424885, -0.0025990104983471506, -0.052073187365076434, 0.005814837498103292, 0.05183786740489358, -0.0042051424190169325, -0.05194411355514715, 0.003657782893864552, 0.05457444671332092, -0.012311607109160409, -0.060450968005786164, -0.009690307820828891, 0.06374695106130814, 0.012057668703086692, -0.17260001853394033, -0.024642891014983136, -0.15831204891141565, 0.042827407074389076, -0.13701007419825678, 0.06382150567169875, -0.11867919392363045, -0.08477085829541865, 0.10322728436395706, 0.09843958354204599, 0.08404368627569757, -0.11016825166599295, -0.08099109067548971, -0.12518532963794932, 0.0630103911906728, 0.1260877773336458, -0.026056434387259353, 0.13088816307762383, -0.006487552808447355, -0.11260540646461938, -0.014806968426760509, 0.07428022160944221, -0.2578786110933582, 0.0019296120119264455, 0.22511464566912848, 0.014798911195210046, -0.17907158722026167, 0.04072922971346388, -0.1528504574774986, -0.06562731891760878, -0.13995269523980614, -0.07931472256967391, 0.12130326800143648, 0.09468259811237018, 0.11249330163279966, -0.10666784775356458, -0.09990110083238292, 0.10203034248368009, -0.05948659807612641, -0.1164930908691714, 0.033316234915752856, -0.06802376306573085, + 0.07446925839473226, -0.11916705137334077, -0.11683671951544351, -0.06765245694824618, -0.00893349041461264, -0.08178799057951502, -0.12039565529175271, 0.10898694496431782, -0.052117645059398664, 0.02423413125726758, -0.08948268182760939, -0.11934722081063813, -0.10862354676393496, -0.04612117686909916, 0.0346271098758465, 0.1012233828615145, 0.12671732152386486, -0.09905107454624026, -0.030270524076690578, -0.048688251418759425, 0.10861270989035332, 0.09373947715239309, -0.0003336138964033456, 0.04339849465009899, 0.06717697028463435, 0.06801958698773673, -0.04297422077776562, -0.0003619703195497301, 0.041132433030274425, -0.06657960042440493, 0.06426898790909578, 0.04114224920208285, -6.541887488533023E-05, 0.04120207362421581, -0.06803895164898231, -0.06360562522098126, 0.03330516013943727, 0.010357159619595832, -0.04985359430771369, 0.06848527240080314, 0.06022053370735249, -0.033028690530020735, 0.008784072714721253, 0.034261112809078086, 0.09800855682976065, -0.14349136861755013, -0.11288345545250558, -0.04386484781066522, -0.024124666833888305, -0.0872430049825264, -0.09187851544375532, 0.06328099752313246, -0.009875789129557267, -0.04873400736765971, -0.07940903848437225, -0.077034497188385, -0.040946009496702435, -0.010132931973526434, 0.05747873778439205, 0.08272953755415619, 0.0635383176611753, 0.020312389979761033, -0.03567531761845344, -0.07530267032573022, 0.08199311968261085, 0.041935679719343276, -0.14360497247832366, 0.244141396910213, 0.17814882089646522, -0.0687597834033517, 0.032126352650395866, 0.01778025735706408, -0.04298096586931788, 0.0571083319861254, -0.04673216516149513, -0.03173687190680578, 0.0008575743186537456, -0.03067977977897212, -0.04622352338936012, -0.052582308471831166, -0.03937888539518984, -0.01658716012425179, 0.019333497156278877, 0.04615704021293485, 0.05760281886665972, -0.05684375044007545, 0.028204779797983713, 0.007423264914277997, -0.10216856715863004, 0.16657785787309262, 0.15863491300714289, 0.09861935830276342, -0.013145930445150375, 0.07790271313936198, -0.12889712424606936, 0.12145594151210069, -0.05837450736340402, -0.027672546240586068, -0.10169770933469043, -0.14052061768798324, -0.14542090340703337, 0.09041021333576975, -0.002720645919236063, -0.08227259790200266, 0.11853948115475248, 0.0936276016978791, 0.020779896109422137, -0.043780571576190544, 0.10271572154779854, -0.10509894672484284, 0.11800638980653086, 0.22901028956419323, 0.22243003375833573, -0.15213934890606792, 0.061899617027119186, -0.05324437201632361, 0.13081626257785944, -0.14961414295536365, -0.09782170569417606, 0.011778565797114945, 0.07784069231567838, -0.14230370287221306, -0.16414867915458725, -0.1349203732765254, -0.062393446345256856, 0.022631062862851867, -0.09069801768566955, 0.10282858571527308, -0.06309700163026352, -0.03127844834753182, + -0.04237171012930691, 0.0798906153817328, 0.10875524045669809, 0.12471706719105508, -0.12591142574043646, -0.11172551876857079, -0.08278915852147839, 0.04290507252092169, 0.0026686354637969175, 0.0485888446492211, -0.08687654909864762, -0.11554799296415857, -0.13768035234116538, -0.13379735232092818, -0.11410741333884597, -0.07929234012212986, -0.03537859054087571, -0.013452714309962987, -0.061420521510666654, 0.10234671178759283, -0.13113793426075615, -0.1086600997230526, -0.052029950724109965, 0.049100257165497097, 0.0394158629554832, 0.026360372427111093, -0.011321413360988766, 0.005177220688266941, 0.02022503290390553, -0.033015100853244335, 0.04139052051118293, 0.04856033504460967, -0.04783764872592398, -0.041887979880142326, 0.033478736158825906, 0.01916032075156105, -0.002540818237385196, -0.014242143407833295, 0.028882802634245437, -0.039648950939966864, -0.04663243219373717, 0.05110888586858294, 0.04894860292121106, 0.031020504183401486, -0.029083713180804518, 0.06739839348366349, 0.08533204652961898, 0.11970491576451493, -0.14829943755569697, -0.16933009810900784, -0.13357967404447482, 0.0841965401674224, -0.02575371665237348, -0.033532386373160805, -0.08203466136780023, -0.11979362735740381, -0.13953210238927544, 0.14737219350011946, -0.13851701680218603, -0.11955414554309327, -0.06785867231632897, -0.010453428273795686, 0.05397774761482331, 0.11104082049110255, -0.15117200039904277, -0.12820303104791422, -0.043306532059429796, 0.035248598472889504, 0.015740808094848815, 0.026652291586744602, -0.053795493122737924, 0.09002017709825649, -0.07711247574689489, 0.05711928464331088, -0.029687745454280306, -0.0059766768618862995, -0.01694368610143001, -0.0376871247145213, -0.049258672654361166, -0.06524150035069995, -0.075953518437775, -0.08639027163237295, -0.06386300040310308, -0.03479283598412858, 0.0028722932082839506, -0.03351606043820745, 0.05987274257630608, -0.06073042784396347, 0.05067682273828631, -0.06953107991380487, -0.0774922668802805, -0.08629406399526394, 0.09188252014116036, 0.08785191044615413, -0.06710823435015631, 0.033930809966898914, 0.005278107451745702, -0.04531057268401715, -0.07928840217641415, -0.10860015071477808, -0.14341213590960508, 0.1603034774057607, -0.16400065592491153, 0.151717884689909, -0.08955794195375978, -0.00646883414688568, 0.09237363650917776, 0.19385318220485093, -0.3111459624306252, 0.3407834750663691, 0.08577293000994954, 0.07514412164621312, 0.0508836589807536, -0.020962833159902, -0.0017980824352409452, -0.025064483188849615, 0.040166487393095, -0.04805237116725771, -0.04666659589982455, 0.043774872999965034, -0.0351951923025481, 0.02491251067456159, 0.014379178608687797, 0.0036111988412104628, -0.00722706532885772, -0.01763711389086149, 0.020449326174631056, -0.01631774526058869, 0.007855517900411595, 0.003331555267029151, + -0.12025632376761412, 0.05293524583282117, -0.09709788539414707, -0.09499089897856859, -0.055472294797191804, -0.1190186474411661, 0.004391966802500536, -0.12102624861134594, 0.0474894957964903, -0.09946207827853668, 0.08689771156854442, -0.06137401328068187, -0.11688848476633117, 0.01859484657513536, 0.12440803231735546, 0.03437746857739992, -0.10835977338231748, 0.08085493725823835, -0.07509782455621206, 0.11297823927036559, 0.026126317451090085, 0.09243021132101764, 0.003914213668684963, 0.04049490521509479, 0.021055604648794357, -0.03278830674528794, 0.03403183897985491, -0.018138561512307916, -0.03982763765736484, -0.00047247758106956655, 0.03987873325584342, 0.02032580652033498, 0.03151927246728334, 0.03444475737884906, 0.014310688236109549, 0.04003213164898161, -0.0031112098634235113, -0.038281667587545684, 0.018719339912443116, 0.03015275059434374, 0.03270888749890768, 0.012520033724547134, 0.03920973754222244, 0.004224159207942072, -0.13001108071621828, 0.06015525886257111, -0.09447642733015596, -0.15056083979330437, -0.019429942708981508, -0.16834747489751042, -0.02024270511116554, -0.17186764092260995, 0.09435630606299154, 0.12083641750559167, 0.12395217925775956, -0.06800489522912549, -0.152154175169147, 0.0037532927262874647, 0.1514463696757745, 0.07819163042955492, -0.13494698068782582, -0.13558826888792935, 0.09112007330853968, 0.16431410063184512, 0.025945001570977216, 0.1265608741319528, 0.0119921880867862, 0.0400929076597778, 0.0210139328655454, 0.08959020469047231, -0.03851966197921591, -0.08116312362906676, 0.03309323205973965, 0.07318733951604432, -0.06228467364714337, 0.03364427721169168, -0.06299140499661093, 0.00694334510950999, 0.06696936742263271, 0.034935663288678004, -0.05172272184035938, -0.06208130010556943, 0.04290900071709158, 0.07775245219490995, -0.018969495643512635, 0.07325058125927877, -0.010720680133157025, -0.04985381119442465, 0.060735820907710354, -0.005642785366621252, 0.05446917644737291, 0.03729696339583197, 0.03333125175993912, 0.05233161313617968, 0.012560044125648283, -0.058487258898689776, 0.010898812818680863, 0.05488881234983015, 0.03330640394962406, -0.03957941633832572, -0.056282761001721915, -0.016530442611409672, 0.06329948673259057, -0.014055881769933453, -0.06019182555495603, -0.03549270478528107, 0.05703074701761958, 0.06609944522261837, 0.025069963585937084, -0.055194711902472035, 0.14531553560778382, 0.09019068749310026, -0.09161950155634431, 0.18910118101133544, -0.005977258229628852, 0.19151111326295597, -0.06548086051995831, -0.1722359885033464, -0.13262523304721102, -0.10987452582471936, 0.17366114514709155, 0.02640202062075758, 0.1878746077678184, 0.06732042284383928, -0.15408609484791988, -0.1512442472430788, -0.12393493960868465, 0.1848601707074189, 0.09492202721261696, 0.1844732516946733, + -0.08757782792442804, -0.12320853275151063, 0.08569947078583774, 0.0021234246847142645, 0.08886212618921743, -0.12285897053255115, 0.08444574596043493, -0.004162422653572328, -0.09019856137202624, 0.11963690134179931, 0.08323226957973782, 0.002903491725784724, -0.08639855992419018, 0.12492639225811959, -0.08943631789599117, 0.0016911154237553693, 0.08641474459746123, 0.12348666557058278, -0.08930271527081224, -0.0022572574269117056, 0.0870923218859376, -0.09184616222721542, 0.03384112149845439, 0.005317327705274639, 0.02560767825429769, -0.042137969106064446, -0.03519522294990242, 0.0073695340250573005, 0.023629774673168714, 0.0403127911029263, 0.03309343922151164, -0.003558246371439297, 0.027361501386536945, -0.04207003795013205, -0.029472299865029992, 0.000938401000585367, -0.0280472893531142, -0.039802485598030846, -0.028747912335487187, -0.0007886690376012334, -0.028976709303141297, -0.03907747519534856, 0.025360752228750998, 0.0028096902127432537, -0.09687677258762792, -0.13346555959066803, 0.08438376532565282, 0.05287580391685431, 0.14535093973610905, -0.15694424960686004, 0.1055732479618003, -0.03247865353561125, -0.14867538334487676, -0.15638496312190567, 0.10083408274063901, 0.015083209246335915, -0.12308221408356186, -0.15388396085951037, -0.09341296305658622, -0.027525116025166427, 0.1416385631738056, -0.1709070073194411, 0.116981261523484, 0.003334973202096139, 0.12825778196780901, -0.12442135386080705, 0.03120669566818812, -0.001654655003271133, 0.02657620495548445, 0.06827794292907739, 0.09268849551121487, 0.06555541869336819, 0.03212435754006636, -0.036805069436999675, -0.08191502917354228, 0.060312104198022506, 0.023714861409060005, 0.027439266559621037, -0.06867710058080284, 0.05753855867196716, -0.01169369369829644, -0.03995108009429388, 0.07988798676737031, -0.07300394182268437, 0.0323845423298855, -0.021297455544915862, -0.06548552722898225, -0.04996605866329787, 0.023369976840964535, 0.056470550574925005, -0.05283683358154297, 0.012058308995954668, -0.030950169855940533, 0.05585421978101192, 0.04921321690833709, 0.01204436718860023, -0.03217523973800445, -0.05674961472061485, 0.05039654282457503, -0.013416575460944793, -0.033053993495537816, -0.06186322131672563, -0.05358298820476907, -0.010572380278270316, 0.03819805569716666, -0.06505740697572146, 0.06641195335391904, -0.022636053893972365, 0.04108600046728798, 0.04793405541834146, -0.12219374065460295, 0.1528865552441359, -0.08380481514604214, 0.07912563248027368, 0.18082619146382556, -0.17817515500924747, -0.08815647337143798, 0.06488815640522852, -0.17973463825175778, -0.1765959237903185, -0.08341590272628349, 0.06188401978894296, -0.16952138961686328, 0.17439744059233053, -0.07398380325991663, -0.07518094705232502, -0.19150654561260708, -0.202977948092134, -0.13600445654558477, -0.09058845939049245, + 0.025619319026630845, 0.050149168575638225, -0.072627904346832, 0.09196374042026395, 0.1068794826591255, -0.1171599818526615, 0.12258867526415271, 0.1223769412604441, 0.11671856617048856, -0.10106063189454918, -0.08563306088179883, 0.06639036251011123, -0.04004341371645827, 0.014429385009288392, 0.011663573651157371, -0.037476507252623754, 0.06113047031384697, 0.0820828409555925, -0.10129719697376863, -0.11464564217558464, -0.12234033213297726, 0.09171496627668732, -0.039953772001790296, -0.0359517570404197, 0.02976226302104993, -0.021023482151964965, -0.012814589155488741, 0.00404465846503598, 0.0044910352901443625, 0.012828247462500419, 0.02056091466923987, -0.026188782003534375, -0.032521439423601584, 0.03742250298290764, 0.03861982919469241, -0.04025166467029668, -0.040191387286943256, -0.03767817216785296, -0.03410890648809263, -0.02911879160735876, 0.02437649824440864, 0.018078216171959576, -0.010448345232098144, 0.0015917797171754334, 0.027533508160816105, 0.053987999060474925, -0.07106233447748604, 0.0840962780181352, 0.11114643154173078, -0.13817075910911297, 0.17828293766049824, 0.18201015268562779, 0.17739386766011822, 0.13691700897387865, -0.11839619017730407, 0.09418231576032364, -0.06886376897816479, -0.03848631913793373, -0.00631365702778989, -0.025428909582110377, 0.06049306347637159, -0.09273531653995024, 0.13770275468469279, -0.16152450908913793, -0.1732841803726801, 0.12401480254009782, -0.04481720496205485, -0.041671952616064885, 0.030695670834041552, -0.006599158846774674, -0.025829004391753722, -0.049027202070604355, -0.08018332094488641, -0.08587413715429422, -0.0875082855813568, 0.06483754809474519, 0.06120884093313908, -0.054432764741393705, 0.055353024960587235, -0.04539396293028898, 0.033412199625462144, -0.014598442625479637, -0.003231756276922183, 0.020276084592886746, -0.04405478836663297, -0.0573157163007983, -0.06601647704085696, -0.050876295479014656, -0.036414328524364305, -0.04572481903316319, 0.05026338352921819, -0.051257635334236495, -0.0551520350506124, 0.0569859810199009, 0.0578935617662724, 0.05438987681691884, 0.04854329695141457, 0.03793304594524993, -0.027858085591104278, 0.0163977005803262, -0.002794058494829648, 0.010565717759859688, 0.02334510132705445, 0.032655556874160115, 0.04348066578451925, -0.052808622363340274, 0.07234494317678089, -0.0791158312245484, -0.07952853211035643, -0.04354424058187194, -0.021027785019940473, 0.052485950675859525, -0.07269851467027412, -0.0934562705663808, -0.12669018741007798, 0.15769031571089887, 0.1896785369087864, 0.199126650093142, -0.19998551237324144, -0.17630323323937236, -0.16116042049889442, -0.13810302656861967, 0.10767246791970504, -0.07298924546636537, 0.03537089970188293, 0.007225863784724111, 0.050048057994756506, 0.09118472788361251, 0.16778621989807554, -0.27477286857770356, + 0.11526218221414834, 0.08131210063666465, 0.058258558054121376, -0.12185258975634926, -0.027342391640934143, -0.10236271094648164, 0.10005256909684423, -0.03151736546132192, -0.12230533524190233, 0.049767399766408246, -0.0843783263243175, 0.10948401712875211, 0.01383250417499092, -0.12109334550293863, 0.0716191410882494, 0.07001336893260843, -0.1199056513359687, -0.015150352471036023, -0.11083758397393158, -0.09084179738298737, 0.04785817563458057, -0.0919425947237609, 0.008756090470360724, -0.03594675558239176, 0.0332965389575109, 0.015255107901145912, 0.04287441821964112, -0.015152308718251899, -0.030349775789625305, -0.0363728057442121, 0.004465440637547854, -0.04003987035631358, -0.026193175751299203, -0.021771467550475723, -0.04013156234843358, 0.008766250610514122, -0.03378723908476167, -0.032134410318925874, 0.010522540875881167, 0.03951307094212851, -0.019018105021899972, 0.024889865956510115, -0.03716325938199349, 0.00035277727864159013, 0.12597787407712804, 0.08719384694060724, 0.0554982826610245, -0.1586488724014979, -0.07574646200329564, -0.11255025395365444, 0.1613122226502419, -0.025264053605443804, -0.17577920721303233, -0.06949163790921045, -0.10717711340743875, 0.14596929623043642, -0.00045879229012411394, 0.14513254772998782, 0.1031985979148711, 0.07619125984530407, -0.17335656669591468, 0.04684960935058675, 0.1528775375571991, -0.1270555673673016, 0.07001386289409488, -0.12507061084541654, 0.015793368335795123, -0.034102456191208025, 0.033210466817423984, -0.07641657468316115, -0.0751256968919763, 0.032026859216668556, 0.08674762048395884, 0.007699669354254349, -0.07828947879349052, 0.045712614064020746, -0.028227199807199115, 0.066240995829683, -0.02988544446494651, -0.04890684005057478, 0.06456220911144156, 0.012234737733455663, -0.08146449645897341, 0.04562297526789702, 0.05355734185666779, 0.06406090715548628, -0.011496879210765061, -0.05254294446575398, -0.060786073549252306, -0.015047034797053455, -0.04701922421497508, 0.050306158416658295, -0.006841485147973138, 0.05539329321712319, 0.03416889249623807, -0.03211115850709442, -0.057480182878738566, -0.005245290941446424, -0.05322714054793693, 0.042011109379393216, 0.028442883785799865, 0.06316975712404409, 0.015508073930974073, -0.050747354193984955, -0.058172034759073954, -0.006781414806962746, 0.07476522739734554, -0.03122539088760798, 0.061717872364142536, 0.0398413061340857, 0.14369068063596982, -0.10424409698519822, -0.0605008183447708, -0.19089062248293917, -0.08996083104264592, -0.1321203492091239, -0.18214291800368596, 0.012285569397578107, -0.19055200796443375, -0.10931290419992246, 0.10389015662442487, 0.18165530761405033, -0.016562494528528884, -0.16990180897310272, 0.13155550534820173, 0.08992989847058387, 0.2113292172665225, 0.0778124139924742, -0.19056642180539093, 0.07683847385724082, + 0.09893352663276522, -0.11853374700459501, -0.0434903706511714, 0.06594101103480886, -0.12252320563317062, -0.0800882754191531, 0.027545504658748002, -0.11280998149967852, 0.10581797975940745, 0.017771390462599422, 0.08448464161872005, 0.11944816114423927, 0.06601469527167751, -0.045839736539864784, -0.12030499755624356, -0.09647272066132624, 0.004389858570632622, -0.10188155956815663, -0.1176901094684976, 0.04139004187796905, 0.06931471540026428, 0.09282410245428926, 0.030822176225729, 0.005137237793329825, 0.03594849246057147, 0.04068465864194284, -0.01346158182012905, 0.02489012725883994, 0.040816390158800064, -0.023908947371568755, -0.01241245085001158, -0.04046257265360619, 0.03380811347653646, 0.00012980548003166772, 0.033431212326727, 0.03825419663549946, -0.012170155403667442, -0.02347530160368643, 0.039589150577577045, -0.023360231125721036, 0.012938746543601788, -0.03769038378197488, -0.03213276906178757, -0.001322661464986035, 0.10590556221425619, -0.12806884622280368, -0.038352563865922305, 0.11341719577895963, -0.1594360705489224, -0.08305484805702344, 0.06385619579854335, -0.1743453719584228, 0.14351579645096854, -0.022806796967914357, 0.11189985073929946, 0.15566415073112336, 0.06887353314572293, 0.07066159987980528, -0.15429104098317042, -0.12075748036007464, 0.031106646456280154, 0.1550246592478834, 0.16124614485945604, 0.06593975232077712, 0.09201815124590418, 0.12837282545301767, 0.028063013846675467, 0.012509220674109041, 0.03318968789206921, -0.08537601192830706, 0.08031605034722729, -0.018064716651664967, -0.047599773941655446, 0.08780194392518939, -0.05530116720504942, 0.009607544262595158, -0.05891381773162125, -0.06003752862652861, -0.003147954139119169, 0.05419194672552846, 0.06993208024699084, 0.039407889959588896, -0.03667373945232031, -0.08068071914705263, -0.059946881133950684, 0.010429702441727653, 0.05245576616284291, -0.055814319674326374, -0.026056115384471883, 0.059922411679178285, 0.04424667150960544, -0.007742106265646337, 0.049449177427689874, 0.05196692386758667, -0.009887284538953253, -0.041395728283104206, 0.05735561985913935, -0.029756496152672843, 0.022102996279218273, 0.057623928702725175, 0.05562998448290215, -0.008082825695660906, -0.04522264215220446, 0.06203705221723568, -0.017230007441845996, 0.042837893003879954, 0.07411587840813001, 0.06450042004716866, -0.007892701711502133, -0.03391001269050835, -0.12557549205587817, -0.15185118510921872, -0.05194504585487103, -0.12831000827929093, 0.19370362203170324, 0.11044867533868015, 0.06295893380191112, -0.1896419891211862, -0.15195703765429036, 0.0004590100034522768, 0.14901964685159624, -0.18877550501140714, -0.09384145296136495, 0.06857984448259759, 0.18019227999323392, 0.1692653740297986, 0.023947204403831072, -0.19074706301185837, 0.2096704616327771, 0.13756087197954425, + -0.008354157079448222, 0.016734200708142306, 0.025276851362758524, 0.03377128495255909, -0.04224214174869138, -0.05049741592275384, -0.05794557068871448, 0.06454038018720908, -0.0700396615270238, -0.07871285253947409, 0.08475070637845977, 0.09127247763215815, 0.10343569456799674, 0.10820507290760978, 0.11283322707914868, 0.11586619540007763, 0.11873155983599559, -0.11932913067893242, -0.1195331734711151, 0.12182215662394057, -0.12351224341958886, -0.0942834639551616, -0.040721387005643046, 0.038999771864400054, 0.036362603181491676, 0.03548904404644058, -0.03540774935810446, -0.03539160725246153, -0.03292000032051569, 0.030042954491848232, -0.026712583110273566, -0.025599484210367902, 0.023410517320386327, 0.021417903064286155, -0.020671561353842113, -0.018721887395195036, 0.016674383298696405, -0.014433843648603997, 0.011508333812373314, -0.008411373210063383, -0.005280278047229444, 0.0027190803572731304, 4.569319983385809E-05, -0.0018987913716599436, -0.009141484608062618, 0.01757196796179637, 0.022694383666403847, 0.03560330267349353, -0.050444575107181006, -0.06923671105095434, -0.07115696352002852, 0.07607972445526769, -0.08068234192108024, 0.10426125431092884, 0.11533065342848668, 0.12452558235713833, 0.12950809646332478, -0.1386904502806629, 0.14854661286199866, 0.1635598473424117, 0.155728401443093, 0.15041751778325424, 0.15066356815703208, 0.17181405508556685, -0.1832494040946259, -0.14420011805007127, -0.04472950555050211, 0.03737782763254586, 0.02107149072834914, -0.0021311850413183245, -0.004330649013703947, 0.01276850475123873, -0.0147240547730876, 0.017791302078844357, -0.020251213463808804, -0.030536068818770974, 0.035188478840113585, 0.03903376568949833, 0.037538543593533966, 0.04408494906525652, 0.05227682751085338, 0.06606331831568554, 0.06305754534973279, 0.060124926823199386, 0.05858099837971634, -0.06910220417943298, 0.07464777606566796, -0.062159482373762044, 0.02932496771131934, -0.030597316697344182, -0.030933106827488153, -0.03515145362248675, 0.04214363144605843, 0.04973420116434055, -0.05312394120194921, 0.05316531638266318, -0.04991976379948968, 0.048972591513225854, 0.047551704794748705, 0.04880709465869945, 0.05833877381702389, -0.0675830832737604, 0.07922131149881075, -0.09168048963637965, 0.0847485426247285, 0.06730768895753698, 0.046396065719989416, 0.04215768896677316, -0.04400806867772183, 0.04224435750958003, 0.0004774847871792117, -0.0107584981951277, -0.019557665337979355, 0.03631885320771419, -0.05652060117033065, -0.08029026950463217, 0.09138823500441806, -0.09551978486775309, -0.09224479284979076, 0.09710821087073176, -0.1007188553209025, 0.11191793420066945, 0.13574894078039043, 0.1733185624842766, 0.22620009688100437, 0.3059736795151418, -0.28974980175451853, 0.20800123731789466, -0.09232447447712384, -0.036977803441635086, + -0.10796106729998627, 0.10465736795343429, -0.006271557004087314, -0.11003045449504462, 0.10030985557649831, -0.013281143175265436, -0.11266920146369387, 0.09458873201868492, 0.022237406148861133, 0.11832651930165479, -0.0877385830676605, 0.03340297841283251, 0.12128361173910934, 0.07550592525926131, -0.047891976385321985, -0.12154604010526274, -0.06978400390832082, -0.05519886527734501, -0.12431981252456156, 0.06692936348745787, 0.06070705391877106, 0.0937231559240158, 0.011572239681526077, 0.03149707583200333, 0.04089757529978231, 0.00916970657390694, 0.03048355350827177, 0.038878011068202475, 0.00512530732674564, 0.034700757861605265, -0.03822505756558686, -0.005006117600038377, -0.03307295103265538, -0.037308596972197065, 0.005234904957791699, -0.03265663021010379, 0.03660223992195574, -0.00272222261441425, -0.034451017126018786, 0.03557686371813382, -0.0010822615010702558, 0.03441520725056073, 0.03247196128590751, -0.001403659686848603, -0.11373318596395499, 0.11050017458652897, -0.009447384805203407, -0.16527060167142002, 0.14188963279316344, -0.02816084615620591, -0.145220098482289, 0.12702907521152706, 0.020887170789109698, -0.1601785620840435, -0.11042616063677627, 0.05515199602630045, 0.16256422899104614, -0.10726545193949334, -0.05919299006041056, -0.16206746029413346, -0.07696029678571628, 0.0840583328575769, 0.1700959621835752, 0.10122841269296494, 0.08267378506547987, 0.1318655235707071, -0.008774517298267578, 0.05589030415419194, 0.03226887474699302, 0.0763290417367862, -0.07897012231060921, 0.005690378633349863, 0.05649224769295193, -0.07286152591648254, 0.013272615059737062, -0.06396585533813176, 0.05858112226483416, -0.008573011161135121, -0.06754667950983757, -0.06951329694922492, -0.0010176491246503805, 0.06391163357458236, 0.049005488888673295, -0.015168939864077965, -0.07274163853361391, 0.0639300617746587, 0.017420092918821045, -0.059935389948027086, 0.053423662029490254, -0.025759115073823027, 0.026105696417110844, 0.059897114343441596, -0.0339912064353583, 0.02694577384827019, -0.05643295610659223, 0.025456057282915306, 0.03298432963709004, -0.06023425363198397, -0.02399430941611085, 0.03648956350111792, 0.06490889075462251, -0.02481793515590213, -0.03970521935132245, 0.06271255968708189, -0.009543023821484033, 0.054002158594668885, 0.06500059826100323, 0.027926752770258807, 0.039755122999962096, -0.052273234553842494, 0.12000858293020672, 0.14082880912594986, 0.016492862118101803, 0.17523020085403546, -0.18039317646509515, -0.003044728047298567, -0.16146488786949367, 0.15674326307518743, -0.01856177968828531, 0.18458721647711632, -0.15291982410362312, -0.029373454158003593, -0.18453350544375377, -0.1626781407391835, 0.01610136407261283, 0.1717975379484484, -0.10255298037414816, -0.0885777233811646, 0.2187528934793067, 0.1772716841480049, + -0.10830907013288778, -0.1031757469437007, -0.010300699694127018, 0.11230997795856575, 0.0964036393306031, 0.020244835942425123, -0.11547793340678882, -0.09001723185981508, 0.02931732462668919, -0.11795298578737824, -0.0877455184601267, -0.03480628927128886, 0.11774535199288197, -0.08559322903421493, -0.035714804670347315, 0.12042511920270146, -0.07806488827092527, 0.0459537555846216, -0.12411984378029858, -0.07045343845144071, 0.05825320306183633, -0.09287426832943313, 0.02985457949440575, -0.014305178905003702, 0.04233309754188061, -0.02500772347212215, 0.01643418394012719, -0.041038195705805164, 0.024373008686676488, -0.019156947602147374, -0.042553088687973514, 0.01836185267352859, -0.02332300174266069, 0.040626088098106417, 0.013150776138191753, 0.027478175819961898, 0.03930459887014906, 0.009658753850871562, -0.03024461110800195, -0.038550724231153896, 0.007532019115911096, -0.02949802020126468, 0.0359307747193449, -0.002864385514216491, -0.11506117701395384, -0.1089734614428431, -0.007413763050766917, 0.15764398181896108, 0.15262141901420698, 0.015950090495112687, -0.15166760351926076, -0.11173598117955952, 0.04339975171083306, 0.15371428835183426, -0.12696594663173988, -0.03303732980261591, 0.16022457954171765, 0.1143710923439677, -0.051893134986637404, 0.15354557494938834, -0.1130970673567496, -0.04308494431198658, 0.17259300813994552, -0.10109467412080483, 0.08449105283628486, -0.12847204479668115, 0.05542701922851132, 0.005390861877838951, 0.039486663889730066, 0.08157843148784868, 0.07057182510478932, -0.02124172882151578, -0.07769811980834485, -0.034929815917427776, 0.04207365504637169, -0.07065241999220333, -0.04459001370222512, -0.028606654771674647, 0.07874433646764403, -0.03292718161920967, -0.04846444495134171, 0.06730596575140277, -0.029741289249757705, -0.0364655223637085, 0.07866080972026196, 0.0286886461551769, -0.057169490032085185, -0.059151787747416064, 0.026101490474438466, 0.05269815736626191, -0.02260003771826967, -0.03933423881816251, -0.05834120773602147, 0.01624717475439457, -0.04019346117098588, -0.05483917219693761, -0.012924852096423285, 0.044657831760023636, -0.057233498102530686, 0.00876851328669824, 0.05012931421652454, 0.05927825194751679, 0.0060499739321052525, -0.05153166990734826, -0.06164660435872125, 0.009777190676775235, 0.06098019812251209, -0.05334432189884567, 0.01763057687134687, 0.04332851147874245, -0.14012232681631745, 0.11393544129822747, 0.026345478597817454, 0.18728301057289967, 0.16133970539156045, 0.036491196086975534, 0.1827930824413487, 0.13260839237043667, 0.05345050043696886, 0.18707501523810321, 0.13726957324084293, -0.06082511912606344, 0.19375064539298117, -0.11908867330149124, -0.0823481707536288, 0.177409511052284, 0.1218633514086976, -0.050514918381834285, -0.22363600785480486, 0.028986266499061462, + -0.009078213378480384, -0.01811858687264849, 0.027115320750256047, -0.03597105758523831, -0.04447827265123363, 0.0527547700366238, -0.06084696263295996, -0.06846713793365906, -0.07564055536485527, 0.07938089766172918, 0.08622296149901723, -0.09262943586449363, 0.09237135691125689, -0.09782627909651385, 0.10285899739239653, -0.10854771552366879, 0.11262965391218413, 0.11594245868648621, -0.12087497355200201, -0.12376019633586835, -0.12517063291364722, 0.09261122893762161, -0.043297121445978054, -0.043722468066437356, 0.04297388259263549, -0.040813130171754856, -0.04062354146804099, 0.04046550091478696, -0.04152324444560627, -0.04062993369184424, -0.0394731147055459, 0.0354576781201372, 0.03393807017990754, -0.032197414593547684, -0.02853868758651009, 0.026280712356238037, 0.02393402365175027, 0.021054879652271215, 0.018374902002307524, 0.01563229412958265, -0.013644662229033376, -0.011255251072350784, 0.008514655869407242, -0.004048836416689933, -0.008084287152532331, -0.01760028374643452, 0.02456656647443641, -0.031697094351699276, -0.04489577827427875, 0.06002198617025724, -0.08256771935121596, -0.09180034051619636, -0.10015851361812446, -0.09298135541333419, 0.10313060053797621, -0.1123941098123593, 0.12483763900038258, 0.13267549236723042, 0.14013615029845936, -0.13216596494404578, 0.13663246485845873, -0.141671007769691, 0.16742444144285168, -0.1775294578553754, -0.18029682779241912, 0.12720944379028465, -0.04963077053464838, -0.05166779354355648, 0.04429977595791829, 0.022026897055140313, 0.0286769584395336, 0.03874595865613924, 0.058443304114704976, 0.061354262567332195, 0.0636991359988837, -0.05117752273425771, -0.055082290731569616, 0.0583267398252516, -0.07244846477256425, 0.07479279171752122, -0.07696864710691702, 0.06427609332506706, -0.0639672968320318, 0.06450217664132055, -0.08012262330239248, -0.08481250446789551, -0.08480300698687611, -0.05954930513090992, -0.02609275649072137, -0.022554666330333005, 0.017998789753277504, -0.011930054081782365, -0.007568529644751631, 0.0031922416196469316, -0.0009396071483904749, -0.005107940873549029, -0.009250040059396732, -0.013004854148936984, 0.017401318693444218, -0.021718206870571848, 0.02417112907286266, 0.02845829589457244, 0.03259349261208653, 0.03366619308584348, 0.03744911647437806, -0.04136802814042989, 0.05448657149639785, -0.060261179049600995, -0.06374857657208022, -0.03867189972386394, 0.022515753376113477, -0.033327566333743036, 0.039287985814635634, 0.04542449315801569, 0.06013681334144744, -0.07613779188525105, -0.09525786051709083, -0.1067861639121605, 0.11769466380396187, 0.11931534660157037, 0.13106091999202146, 0.14180555750955065, -0.15070780226747754, 0.15941129636679088, -0.16761964822043884, 0.14899523520194669, 0.1536109585159013, 0.16046796515151998, 0.21862818567512013, -0.31641997028391156, + 0.09849911088977588, 0.11831157649424134, -0.04344600371710354, -0.06547224067040933, -0.12200268244774087, 0.08117725534701284, 0.02389721225442527, 0.10998766538383686, 0.10840200961072727, -0.015117944730581846, 0.08887267737295362, -0.12201889635585174, 0.04981266564710806, 0.05952370981592193, -0.12092784280419572, 0.08719899191301973, 0.01632126236912869, 0.10705968413122618, -0.11469848444825373, -0.030041236074385025, 0.0798072492020356, -0.09270681703521708, 0.01631364291329692, -0.02294088343831747, 0.04274975746987876, -0.027228870790237097, 0.007947735075954645, -0.03711025891727974, 0.03774076913131741, 0.0066990409680330616, -0.02955416227773474, 0.040654096394515685, 0.022097590289245773, 0.014284617635450858, 0.03826763009343231, -0.033819613024857725, -0.002490272846581357, 0.030540009959715314, 0.04006331776437752, 0.01776098417459053, 0.019334709389323794, 0.03833855472086062, -0.0263123542552818, -0.005253192994180039, 0.10651654299455579, 0.12406105559841588, -0.04095188306778075, -0.11776590293597856, -0.18072633606155347, 0.1011154047555582, 0.0280674509446113, 0.14086160078536775, 0.13979827585384386, -0.0002998641044593452, 0.13249286798156476, -0.15924309915510496, 0.0638776733687671, -0.08411058960960313, -0.16566462398921347, 0.09931964611247743, 0.04145645887217194, -0.14642812751504528, 0.15550211881919546, -0.03490115924678461, 0.12176019865084017, -0.12743210209906222, -0.00339001778904265, -0.04976133167894351, 0.04684968403245203, -0.05468347525447324, -0.09007798741856568, -0.05577545652665343, -0.008929699578092124, 0.05572465075857404, 0.07455597540163598, -0.0130404948078617, 0.04864725425039305, -0.07180784381994293, 0.05034407834081, 0.018600542547087665, -0.07341593344905555, 0.055243453232553696, -0.002183470924221838, -0.050453914826884126, 0.07764417592434167, 0.0345837501093319, -0.04169290105971922, -0.06079211907330507, -0.05285456227377325, -0.032257019240838194, -0.013104715849931751, 0.05380055195533252, 0.05318127623824859, -0.010077437609151248, 0.03882931462282512, 0.05675049309620024, 0.0300143034427246, -0.023385872584142896, 0.05893382276227343, -0.04675858315552354, -0.007613299317265862, -0.05588814466656719, -0.05889728649930522, -0.011575541473119792, 0.044373067836456774, -0.06604764631727378, 0.04534477882985252, 0.012226006147004585, 0.06463895442632195, 0.0349764438024323, 0.11729966865191895, -0.14481515974904904, 0.05158724295908113, -0.13296453127403074, -0.20441827728637338, 0.11335048117864896, -0.04698729598658413, -0.1740438695928762, 0.1644907248467638, 0.006489842707371918, -0.1536696924177765, -0.1895220782344053, 0.06830496272059286, 0.10817612595588225, -0.19599210640594886, 0.09766836226955619, -0.05820413308120493, -0.1691721299954182, -0.2014770772799306, -0.03678812175228496, + 0.11551680685789537, -0.08095730373843961, 0.058748316385298906, 0.12134485868993161, -0.02614304948254326, 0.10301115781973492, 0.09681564900334247, 0.03628172161581796, -0.12164648151696203, -0.05410861667961967, -0.08503790098370896, -0.11421233986644583, -0.0024582589622056377, 0.1135548820548069, 0.08150088903578098, -0.057977757639537955, -0.12140029712057504, 0.02535398194187595, -0.10568957956353454, 0.09961782307747438, 0.03693782691611153, 0.0932930555117265, 0.026001707945395965, 0.02413326647795715, 0.0416863818288237, 0.006219018303877291, 0.03570596592661452, 0.031330615410240674, -0.014880677616144004, 0.04263029775843306, -0.01449584679460706, 0.032176059951020776, -0.034884553928095766, 0.0076504731384453226, -0.040427715336231386, -0.0183284176599703, -0.02757109025707214, 0.037251201971315206, 0.0030320324728048765, -0.039219425552008844, -0.024481422744861876, -0.018740364977504465, -0.038416357268044724, -0.006732792590632021, 0.12079928548289608, -0.08836963967106888, 0.05542526020993373, 0.17927033126636174, -0.06948910926707222, 0.13730115278882704, 0.12494460309450124, 0.04746517438544157, -0.15528724583214382, 0.09360826472112597, -0.09558281503160604, -0.16010753574349015, -0.010737778327271469, -0.15168994318668047, 0.11753440741499893, -0.05799756855594274, -0.15842049938931077, -0.05389480927219771, 0.1366927917318181, 0.15130424700271664, 0.04014312210921044, 0.12953138939474973, 0.053112395512300126, 0.009054702214661078, 0.04642594633144147, -0.0885070979272031, 0.03441972609933157, 0.07191514186022224, -0.04582020223500201, -0.04225936643099561, 0.07245741736039893, 0.029870862855399482, 0.051303873747302296, 0.06547728737173822, -0.01665896895293436, -0.0785706019190812, -0.04021918370265529, 0.04064871462534435, 0.06267902314778777, 0.0035104248339220025, -0.07093929966914123, 0.05940848478465955, 0.03583999328440726, -0.06333562245117928, -0.02822888469111435, 0.052106248762389104, 0.008699485091909298, -0.05316512874730804, 0.04484012771016976, -0.021687998000368414, 0.05657962487109506, -0.016001214040340366, -0.0460723051806452, 0.05143794918823401, -0.011226361959249816, -0.06027316571716072, -0.03946268757705728, -0.03335771747269002, 0.06308569014437483, -0.013642046199223795, -0.05662965439304059, -0.048078851977738674, 0.033613216253523266, 0.0708327413851233, -0.023363338949565195, -0.030420267601191597, -0.1421581354240466, -0.10234650900420417, 0.060421589441060956, -0.20437193203070253, 0.0910487670574816, -0.14280229944899278, 0.16238873077565852, 0.03786611115304153, 0.1863537666491575, -0.10982675228070521, -0.11135831742601825, 0.19523872775483925, 0.04027077474666879, -0.16379621720908558, -0.16413250111283334, 0.0210289867657956, -0.17083524676890438, 0.07055379118705088, 0.17251876215115108, 0.19613106351160417, + 0.02632888333391494, -0.05164192264014253, -0.07529671054233637, -0.09569234135286679, 0.11203088974599616, 0.12314920985324716, 0.1272241465482988, -0.1241369023740626, 0.11381955833748884, 0.1036591046323534, -0.08587473889540212, -0.06489593230266211, -0.04545845685912854, -0.02067978877400852, 0.004853638818473987, 0.030208442001492825, 0.05408704866976147, -0.0747409135367491, -0.09232385691483372, 0.10735702388584527, -0.11752280500881579, -0.09241685387331551, -0.04194312168163149, 0.04056614602229311, 0.036579166100778854, 0.03269079085642637, -0.028303245868325867, -0.022740723297472114, -0.014843437909469768, 0.005998335746187376, 0.0031540303082979336, 0.01264615204583898, -0.02092227226422787, -0.02854034370505394, 0.03656841592209351, 0.04097420548054473, -0.04343351087604106, 0.04352754819087682, -0.03982071898413806, 0.03385131370095777, 0.026591166591485166, -0.02058233907642853, -0.013246896242494203, -0.00424454820019793, 0.025504940488846137, -0.0518038060240021, -0.06627420559615838, -0.09990344671979552, 0.13531000255823747, 0.1751393861365201, 0.16643399823397126, -0.15660887685962938, 0.14006891100868385, -0.14882339098920477, -0.13494504097473353, -0.11313460872857943, -0.08263207879547921, 0.051495589444205146, -0.01823897173195934, 0.013675575708999464, 0.044870089103850166, 0.07415442559176189, 0.1061706591728287, 0.14434840907168012, -0.16948020882395806, -0.1387302510735494, -0.05326289346934949, 0.054159694843144146, 0.03789500386305429, -0.041901185628517246, 0.06284008441562217, -0.09824510205682926, 0.08753278146042712, -0.07612600918173545, 0.059897123979296696, 0.061104836670794846, -0.050477231354232335, -0.03643237782567294, -0.015285515003944514, 0.002713559789533312, 0.020935459840055057, 0.03959974630024547, 0.04732778334517896, 0.05277521407826607, 0.05828056246738133, -0.07217042659289477, 0.07807760824245125, -0.06269552313049913, 0.016262605381563936, -0.0025668136689197766, 0.010432767098575935, 0.026356478545126676, -0.04209733259275536, -0.056713361570340085, 0.06401792273308168, -0.06472032912571664, 0.058768195746519536, -0.05297358005647702, -0.044470486049692344, -0.036512443931495685, -0.033131947754973474, 0.02827739277453778, -0.023328602003928244, 0.018040857562317648, -0.008107210930044115, 0.0030972861585717723, 0.0161411941691088, 0.03144467229832693, -0.05176961111097617, 0.05998436941167356, 0.04729921479900152, 0.08070724816501193, 0.09926338913061823, -0.1426044041281193, 0.1978310860645192, 0.2566170580170625, -0.2664493534813691, 0.24401661278535247, 0.1928156551015785, -0.1481589290392383, 0.09617432906455055, -0.04665979737478251, -0.00019102683119325567, 0.046117710006215284, 0.09440205152769816, 0.1487693075445409, -0.1503172207513753, 0.11183588642675515, -0.051039722954530055, -0.02085252883116909, + -0.08706569410540044, 0.12377658795835163, 0.08944829794292902, 0.0035436714441764777, 0.08460480652409667, 0.12317465426342705, 0.088521038087991, -0.0013025167563605106, -0.08658341726003696, -0.1287293368930463, 0.09163893911224683, 0.0014877142533866864, -0.08866203459679858, -0.12146545768129172, -0.08359549683239748, 0.0042168947830257255, 0.08893723002294272, -0.12069799729337115, -0.0816208067502402, -0.002262806571710645, 0.08572830160259748, 0.0894236622867785, 0.01751159695729089, 0.015772964066399327, 0.03881778658685957, 0.04203371859090748, -0.02166137740672726, 0.011528505647443597, 0.03637956437823033, -0.040303834999762596, 0.020322952323158866, -0.010349586713964562, 0.03408644945996217, 0.03834046126751061, -0.02256038135661865, 0.007695767975920889, -0.033342899847701404, 0.039188472682328855, -0.020586362410115897, -0.010177534355682243, -0.03641837044520259, 0.0428926647459231, 0.023884583880826045, -0.005895182470897304, -0.10082180015505716, 0.14148351532069595, 0.08503929841452555, -0.031652693049693495, 0.11166911776733507, 0.13488860347820808, 0.05413512722662669, 0.06323041923307685, -0.14178579832024107, 0.17157016748151147, 0.08236983589276273, -0.056375161826504455, -0.16104157326713692, 0.17717332481887457, -0.09079407563305568, 0.03934649389348948, 0.14802220435134536, 0.17087339496635676, 0.09389498708633924, -0.011232159754659564, 0.1149811212649135, 0.11172843429215251, -0.040649839655487754, 0.09779892725988931, 0.07104857267844822, 0.0058931083784929394, -0.036037941307805056, 0.05480069229605287, -0.02239193845346641, -0.02720292811570909, 0.058882273975573565, 0.078863428338592, -0.039726521766180835, 0.023745270213236223, 0.07171738122338725, 0.09201616209171332, 0.06152485051908323, 0.006263867489687234, -0.05877759979023253, -0.08758746670003618, -0.06542037006105285, 0.02533935284810808, 0.034967470198139936, -0.05644836481290569, 0.05102843146016908, -0.04834706538763424, -0.01784094916541576, 0.026843036518193097, -0.05423845218493603, -0.05075884696739752, 0.014918543434871267, 0.031041254321850193, -0.05734009070850778, 0.053400746476790335, 0.017676885238306468, -0.027862502519816354, -0.061817098058561476, 0.058792508701540416, -0.023655269758998492, -0.02282525107057894, 0.05211079378490485, 0.04541615660876153, 0.0071892529712089415, -0.027578160638696007, 0.052886843431032844, -0.04421573834462373, 0.12874067648256243, 0.20688706233024728, 0.14881653541711357, 0.006474772567868017, -0.1291830761858942, -0.1847107360447498, 0.11038032838718627, 0.03945030651670503, 0.16333803163349286, -0.21058769363668858, 0.13079531505521744, 0.017965621465334966, 0.1586297587465997, 0.22055311977728345, 0.17110945852001017, 0.050223260022736464, 0.11231621639857824, -0.1855781205279307, 0.13981396925383346, 0.07765260594526856, + -0.12041247390823083, -0.05084096664098892, -0.09934554291063229, 0.09250166644136523, -0.06063945906533094, 0.11812965195164626, 0.009706604439823973, 0.1223908504136136, 0.04274546632979541, 0.1074866798532031, 0.0919973282052471, 0.06915170765200693, -0.1158531282007319, -0.01250179690794514, 0.12054836412984606, -0.04002725643146521, -0.10299515941269577, -0.08438542917685356, -0.0676063312457306, -0.11008476277245079, 0.021783739461685193, -0.08818844281510203, 0.024911678357597406, -0.03005499534829573, 0.03665533817482888, 0.017423929960570256, 0.042735657212323724, -0.0006918590177720238, -0.04112502125571273, -0.017403540709638083, 0.03353270415257466, -0.0296396868855167, 0.018747318334399098, -0.03762377584665032, 0.004872432952973292, -0.04008210174019154, -0.012187000135581591, 0.034631546946775324, 0.02800231676540244, -0.0225077996111485, 0.03984608162146958, -0.006690959307437926, 0.04381834662703629, -0.00778106814534644, -0.1394440035228339, -0.06016292055260353, -0.10049702806745797, 0.11754740931921596, -0.02501563671261554, 0.13495790097223123, -0.05582470126123086, 0.12906679879860386, 0.10872393410731046, -0.10981411821683962, 0.16499154882729516, 0.03973001958794231, -0.18395154791752816, -0.03219666919473543, 0.17146279098575662, -0.08861491823254129, -0.1322246525885365, 0.14183786571215537, 0.07266397726860589, -0.14402342872241228, 0.013953698678175884, -0.1071976440634189, 0.1065895514569686, 0.00468922239062541, 0.08242757197805599, 0.03914961736799145, -0.012171180245505404, -0.050272806130379544, -0.025950067216443103, 0.0524031990296033, 0.04730031189392312, 0.051336842300166385, 0.07558227358310732, 0.01933650821615617, -0.08956968147471593, 0.002741166960305139, 0.0896398846809296, -0.024971941647478315, -0.07983531129354443, 0.05796969449941378, 0.05923603886300252, 0.061322674642457574, -0.03708128973917467, -0.05519325629750621, 0.03936183860437695, 0.04181647852442866, 0.02055268523905229, -0.05654094257741953, -0.005626420608860716, -0.05444374844511156, -0.030542367253821784, 0.04222618968966089, 0.04942974622968131, -0.024740250554735763, 0.06050095592474857, 0.0006940655231167374, -0.06109222398611566, -0.02813328282733973, 0.04903190991715666, 0.04443521400974752, -0.024718811160282184, 0.05591252450672794, -0.0038908898883195184, -0.04712907790005388, -0.02115923359666047, 0.028156334106486075, -0.2062013259832824, 0.06653943017535628, 0.15539329566217974, 0.15356974031689377, -0.05737660646890662, 0.1818914135335348, 0.03780224871097296, -0.17478591544883137, 0.11677175227297674, -0.14258135095976865, -0.18321390838410934, 0.07216983398594633, -0.2109975494723734, 0.00920184473666676, 0.20662187329723855, -0.06413578154754081, 0.16265727929469712, 0.14797206327182807, -0.10606713354789003, 0.0912857585800319, + -0.043052580510408237, -0.08072125971603471, 0.1084029076004056, -0.12251748515756829, -0.12062304106419798, 0.10359484350083328, -0.07385782524059217, -0.034625317068480495, 0.008940094403242005, -0.05152254025255223, -0.08960344434220394, 0.11650069018115324, -0.12085978784503437, 0.11809774394783304, -0.10064823987365981, 0.07159133651497404, -0.03312803489834311, 0.009635730742337091, -0.05203665035803527, -0.0865202888075921, -0.10985203652763992, 0.08779287974571533, -0.04380228932408395, -0.04162771033306453, 0.03350744346812586, -0.019564145716672386, -0.0047476260390006495, -0.010781584979861411, 0.02489392605292481, 0.035132182356528215, 0.040884030088778875, -0.03881332479483664, -0.03475137080895034, 0.026239963106762746, 0.01304946679691361, 0.0011148931972072146, 0.015090135483432542, 0.026778075882036605, 0.03565682256258725, 0.040086807103930734, -0.04196166871119707, -0.03714305559415503, 0.026741943969909428, -0.009070276403637311, -0.04696077839682857, -0.09077741893857372, 0.1122142699601209, -0.11379627130146304, -0.12807332957834566, 0.1302588895616859, -0.13756755501438367, -0.10329623800766859, -0.05658394102383085, 0.009277017106806841, -0.07208458686114241, 0.12587096541551634, -0.16819370034865752, -0.1839380098252576, -0.17687205389097616, 0.13045492216869733, -0.07804519719915626, 0.01786623321369546, 0.04853637890582896, -0.09674453237997607, -0.13163033851533087, 0.10501397000088715, -0.07202252590580695, -0.09495609232623796, 0.08760781672524474, 0.040161096863784156, 0.04470599806716135, 0.04744605293623587, 0.059371668660853354, 0.04568953301957796, 0.02676751375110601, 0.004465230802901303, 0.033348349757573725, -0.0580691260283431, 0.08708725149615897, -0.09110286235722992, 0.08374892680142822, -0.05123736179245675, 0.02048943941238863, 0.011210846413259503, -0.049381168460026395, -0.06974840584038673, -0.07912681785482334, -0.055397410735028185, -0.009659285027154501, 0.009039896391036514, -0.02501841919370143, 0.039187095734098926, 0.051112887749404576, -0.056925267603867305, -0.05711438263898831, -0.04830400874773284, -0.03349045244904102, -0.012258900471474545, -0.009711930797704358, 0.03063822029612541, -0.04523503694534929, -0.05762056218090263, -0.06267141857269079, -0.05467461165158596, -0.044522615561685366, 0.029424988255844324, -0.01361997350088449, -0.002923217415207675, -0.020641908570927993, -0.02156115914141839, 0.08053031536129154, -0.14182364431305206, 0.1653328012740781, 0.16409625110525083, 0.1784567809798093, -0.17359050632099232, -0.15994765817779916, -0.11243876199118702, 0.051164760512142235, -0.023794024186721698, -0.0966835449256246, -0.15766180681532121, 0.19721750967614585, -0.21201479168399118, 0.20000066525503413, -0.13366943831205, -0.07349955487586685, -0.006974475242091995, 0.07722994026114309, -0.1815305335376066, + 0.07388965686153623, 0.11828959691990706, -0.11551636461293281, 0.06695112505174725, -0.008801646436090405, 0.08094653624408271, -0.12084541650363224, -0.11233912089016454, -0.059032013117266885, -0.021103985388665463, -0.09315855464963557, 0.1281284689707416, -0.1033698965683708, 0.04392524661362836, 0.03267893731711257, -0.0968578668371214, 0.12119275092887644, 0.09712669028287389, -0.035214562437900956, 0.03980577854494084, 0.09941405136838, -0.08775567591651814, 0.021796054470051184, -0.005417098788043367, 0.02965029874408321, -0.04241320534848527, -0.03991084755004122, 0.02156646461527109, 0.003886350257238493, 0.028181479015925142, 0.0411486111326468, -0.03495733866394875, -0.017471418725303806, -0.007115298137170741, -0.028319224745892643, 0.039812173573489845, 0.035454477210965604, 0.01650578929211062, -0.008964357962577846, -0.030802919058459305, 0.042779581447279856, 0.0358469948517219, -0.013589785410091315, -0.010368693233583914, 0.0898027850759275, 0.13794867402124278, -0.12032270482381024, 0.025496062757896905, -0.055255051296676225, 0.11910743736302007, -0.15010107883150228, -0.09628781744413516, -0.005241305490001945, 0.09447356462043865, -0.1689055870762746, 0.17571561553770862, -0.11798849129246305, -0.009679853383262077, 0.10317401577008707, -0.16099217669473365, 0.1731768304452546, -0.11797685750267473, 0.022500278505312298, 0.06991758250685354, 0.13673971754764835, -0.1041163768899144, -0.03107507446325896, -0.0862227567413528, 0.08820501083204228, 0.009803051588577185, -0.018359042028786673, -0.04400757734171186, -0.06197362799195475, -0.03696142009399099, 0.001660293354767875, -0.04404658973026729, -0.07806519748156267, 0.08071713445929078, -0.06561601288393969, 0.014584663785686368, 0.04301845118069261, -0.07252413132162702, 0.09012476296249596, -0.07319248843444788, 0.03708082995400276, -0.009313493996948825, -0.05524666809887261, -0.056399625533213385, -0.049173449665057885, -0.04998037535925605, 0.02927527777704341, 0.008788840239013704, 0.04075967549453874, -0.05672554603511451, -0.05166161377282782, -0.024442746782980432, 0.012407983512153772, 0.044729085705802085, -0.06134122042133087, 0.05303097118654642, -0.018605555885693487, 0.021488771031257445, 0.05258445828514204, 0.05774721937894199, 0.045402905032375804, -0.01599750371324953, -0.02257821827665056, 0.044687666641505634, 0.04789828122441175, 0.01617470714409653, 0.12429763743908095, -0.19808742761949083, 0.17242367859704125, 0.04204207296158826, -0.07078078429244719, 0.15893259947774363, 0.18978744978233733, 0.13164658135823937, -0.022111815662837635, 0.10370616561690262, 0.19496361761914405, 0.20686885074926753, -0.13215501138042804, 0.004094279151931137, 0.12514049701935273, -0.1802446099903004, -0.19441612345168666, -0.13913606510975698, -0.04478182711192848, -0.11166675558067571, + 0.1228980844745955, -0.018184953187318477, 0.12049920182564314, 0.03559767000611542, 0.11546482044485988, 0.05217550187978894, -0.10794846318131782, 0.06735378247883926, 0.09850643447418132, 0.08693330240985266, 0.08838506668064858, 0.10055003932874645, -0.06648382008558953, -0.10648439731798809, 0.05067277571854807, 0.11366767472569436, -0.033262757415728914, 0.11849839493912248, -0.01750763041008508, 0.11892902299755713, 8.942468960652776E-05, 0.08810535237263506, 0.020610608762314207, 0.03701151857071499, 0.025276164416939327, -0.03465244690610672, 0.028775775678305672, -0.030786777334354403, -0.030712902096564656, -0.0264759899051035, 0.03427248474748705, -0.019342570934814677, 0.03544528917580652, -0.014021918260057213, 0.038060785117073226, -0.010622809818431342, 0.03944157128860759, 0.004697508283558224, -0.04040721025731451, 0.0008743153620166307, -0.042269707964064034, 0.009086040716771061, -0.0421176816375682, -0.011889595094671076, 0.14192351111632528, -0.027301239091964268, 0.12421682857267084, 0.08193433335298467, 0.0932777586166834, 0.1023713758173519, -0.08726802476640666, 0.13381706615909114, 0.06616496586630842, -0.1651167953237458, 0.06280071159773917, 0.1747369564533929, -0.04327690530747119, 0.18183053669902802, 0.01650977404167523, 0.1777255007582489, -0.01292123071696463, -0.175509613292693, -0.0046224156938176365, 0.15028429482589112, -0.02517732591230945, 0.10454498885978186, 0.10456566053746162, 0.020956273922894217, 0.0838828989140856, -0.028419794679666877, -0.0321160040195114, 0.040441824560532295, 0.032366938837182474, -0.05811830163988077, -0.023651823343841024, -0.07640704234804548, -0.027470185119510715, -0.08092253291401005, 0.029476268486207314, 0.0886358414574285, -0.015200918593991723, -0.08731063835858209, 0.02439842561633467, 0.08714982492706834, -0.022844202646389075, 0.07678035170393152, 0.014515630901601654, -0.05839320219609661, -0.040899669115432274, 0.03639504114343041, -0.03283139225565748, -0.050265418514532235, -0.022749040482358047, -0.0539595183227776, -0.017030228841058256, 0.05711237438385934, 0.010539496812913517, -0.06094737313241842, 0.0034673893212986947, 0.06217474871256604, 0.013673304682588216, 0.06009363971598561, -0.023461786830517268, -0.053066358832587715, 0.023431482642617837, -0.050955538714921755, -0.0306340110070968, 0.03333505679511909, -0.04233853959782049, -0.009740965138349125, -0.20713765831678543, -0.042486900122161816, 0.17537876429695126, -0.11583161064234052, -0.12652370177538533, -0.14029628341584832, -0.10939829270125664, 0.16277532405041642, -0.09194285273340015, 0.19250690035309614, 0.07176157864415389, -0.2084484256979382, 0.028047487570762898, 0.21336889422416538, 0.013291946428678533, -0.1987650034839629, -0.005654936725697696, 0.19590621425563134, 0.008390957939538328, 0.13153207574437611, + 0.058914579995266524, -0.10391037896126065, -0.12495554173183626, -0.11609906535957168, 0.07933486855624554, 0.023298729421107896, -0.038469355291451485, 0.090563546701692, -0.11952472069661457, -0.1253642674432207, 0.09711173729738035, 0.045973176611981775, -0.012795264756407403, -0.068030005325381, -0.10668423019846969, -0.1184182758160095, -0.10178199723965507, 0.05892121795897153, 0.0009201763196032805, 0.056124527312491075, -0.10004937090475843, -0.09013276449693654, -0.044902065155219474, 0.038565815542194716, 0.022465254053299466, 0.0008831334659514774, 0.01999105371466004, 0.03628697590505772, 0.041102362249139185, -0.03577940051678171, 0.021421069142002324, 0.0033787066604370345, 0.015331867725336793, 0.030571565295971017, -0.04018345485031935, -0.037876532768625876, 0.026334854032425532, -0.00835302136374308, -0.012197267809673918, 0.029591527673604602, 0.040865332242328675, -0.04475880108007613, -0.037364828974920716, -0.016220667810425256, 0.060215599047772204, -0.11294696492111683, -0.12047256327812651, -0.12644377457959158, 0.1168023890689194, 0.08444407787730544, 0.019296814374159726, 0.055424647570242826, -0.11541023865918427, 0.17687537795096175, 0.17396622976462128, 0.12664498720911732, 0.04442284659392949, 0.046660815902613374, -0.12731152558435757, -0.18005815524077698, -0.16590421815294595, -0.11511426903391349, -0.03332582445844566, 0.04016224751765335, -0.10558406306833512, -0.10712595127113174, -0.07981393387278883, 0.10174706560536434, 0.07147169345162026, -0.044765257950679795, 0.04595035581530102, -0.045055514142128536, 0.019521813383859214, 0.013813256157866657, -0.042364517633721566, -0.07912117477226693, 0.08158649015486462, 0.06265549831099808, 0.018952729219407403, -0.024164423283793986, -0.06284304230893807, -0.09209732656935012, -0.07615828178431444, -0.0428664342435434, 0.00659310234485418, -0.04634535219089855, 0.07428525039935109, -0.06519452765119703, 0.009584580332375879, 0.014129684219135023, 0.032738114223559656, 0.04978822570666911, -0.05782495294918967, -0.052747285938409876, 0.03153622550840076, -0.0005050863402286333, -0.030683664748121814, 0.05685552747470616, 0.06860165032602003, 0.06763689763410116, 0.061547281908753665, -0.040385632627672925, 0.011220012429050344, 0.019108638994390907, -0.04129590608317703, -0.048636629109664375, -0.04376634026018866, -0.042271076403856134, 0.03625354645870417, -0.023810538848417776, 0.08004630733473721, 0.1554129621158306, 0.1735300428634588, -0.186567672429994, 0.1865859140144951, 0.1504970768006171, -0.06426552246806136, -0.046375519982271254, -0.14223476445650035, 0.2207225210542677, -0.24190502658641228, 0.2222387410883057, 0.17284758349514573, 0.09884742304712434, 0.00981182240227204, -0.0756953420842194, 0.11920584625888284, -0.1081996684068488, 0.05723330816587402, 0.02585888629446111, + -0.05923471763320456, 0.10430649306439436, 0.12503847428937165, 0.11549662444885336, -0.07786222389524183, -0.021094727780821686, 0.040903584426519125, -0.0924965127658593, 0.12020312197467944, 0.12429600266521296, -0.09424686124025286, -0.04170740044754607, 0.017819522942179897, 0.07219970557203892, 0.10880007759501957, 0.11762652452160065, 0.09796117767243122, -0.05277020520923296, 0.006241132816966295, -0.06268552654085645, 0.10421880670316234, 0.09054156199384239, 0.03357143009259374, -0.018152220327617607, 0.0015690090520861701, 0.02231594699375589, -0.03728857314053556, -0.0433893445040701, -0.036045808098677044, 0.019455938311789916, 0.002049968592002835, 0.02370404046114916, -0.03827038223934345, -0.043934818399685896, 0.04149003549578645, 0.026580843545118478, -0.005163209092397967, -0.017342762233823743, 0.035108520789787476, -0.043818200491183096, -0.042501608440093305, 0.034212803614539905, 0.016874389540260718, -0.002832197020248963, -0.06922221094371803, 0.12100985004736253, 0.12455120012005508, 0.12444402198552823, -0.10976199876693497, -0.07308569445469973, -0.008860629408464632, -0.06278230969649447, 0.1178122309973834, -0.1736153802933725, -0.1659907406033893, -0.11549520167417347, -0.03280737312920503, -0.0564385461053672, 0.13277332940916176, 0.17996848961325665, 0.1594565564023443, 0.10344233623068982, 0.018146870214377768, -0.057079925391655746, 0.11904784368491547, 0.11208531864796333, 0.04973611428035522, -0.04698064175231608, -0.022715259261499546, -0.03307283851120827, 0.06389662193406248, -0.09609812813622343, 0.06705591522050802, -0.02053297217076274, -0.029765446507323157, -0.08955599227985075, 0.10845271581368778, 0.09874845981729323, 0.050350332274044084, 0.0016783746917057793, -0.04800073010680089, -0.08904481493906048, -0.08713967882778541, -0.06448912544344214, -0.021999206761439526, -0.012804770620090524, 0.04625642712398347, -0.05227002412582554, 0.04496485024193904, -0.056810496711499694, -0.053274797272550245, -0.04154165057722922, 0.024534734819219767, 0.0017925454647879716, 0.02060584443910192, -0.037169819876191834, 0.04258502937204152, -0.03975616514137517, -0.026853281489391014, -0.008722634622819324, 0.010206724790062679, -0.026405486401339766, 0.03699628327078883, -0.03914057532255104, 0.023739207764512472, -7.625868984976851E-05, -0.028127288668525034, -0.05384483048378016, 0.0764689045673647, -0.07303891066611187, 0.06566046910979872, 0.1421906869551692, 0.16502818260526103, -0.18470281454004916, 0.18965374982891683, 0.1574836420038569, -0.07191266957856028, -0.04065962164560861, -0.14011161780323544, 0.22229291200175327, -0.24607246719601544, 0.22761056822943487, 0.17804708601180258, 0.10261149175832573, 0.011264897346010883, -0.07661372259954126, 0.1217586689623333, -0.11088346356125957, 0.058790781540607844, 0.026603355986224268, + -0.12292388904460362, 0.01746112513847571, -0.12073787988114669, -0.03420111173055649, -0.11611367963921303, -0.050188781545476, 0.10916334042836728, -0.06489239238791807, -0.10044178410556405, -0.08421347998605438, -0.0910975667558694, -0.09768572128381164, 0.0703502842859872, 0.10347992209784915, -0.05556640728305637, -0.11097954505576027, 0.03917492386590864, -0.11638622512660887, 0.024501116770718645, -0.11783278074888626, -0.008019637533940697, -0.08819310743480455, 0.00392513189280604, -0.04092444480236516, -0.0017370486464205696, 0.04337496282770909, -0.007108296086059443, 0.042789982011308764, 0.01054550019403578, 0.04207688454388635, -0.01610090711021554, 0.03947869371095169, -0.019108503379588936, 0.036840331576050295, -0.026233181630086803, 0.03474073404696971, -0.0308960552856147, -0.030019197511780647, 0.03451832682591673, 0.02538236696453845, 0.039323216864509486, 0.016319860856682432, 0.042812763152708336, -0.006577627405385834, -0.1467421312990257, 0.019777010409217314, -0.12941548087880153, -0.07247153765204611, -0.09874339125025644, -0.0926837470386602, 0.09212523725924274, -0.1239866223906122, -0.07307594793067598, 0.15662268682370134, -0.0702352195257242, -0.16682661369254748, 0.05263301013107325, -0.17530828602089513, -0.027935781595032246, -0.1737333657893938, 0.026155059435377197, 0.17342104563262078, -0.011371118813188655, -0.15229750293926922, 0.007659559918953963, -0.10825310254674674, -0.035890660680981006, -0.03339938363970912, -0.030191202871712546, -0.07345576065386732, 0.014815554393417009, 0.0813032823434553, 0.005782080686506269, -0.09643399263266167, 0.006430650197950144, -0.10568150352024193, -0.0034038068262663614, -0.10713469183699205, 0.005669122133889877, 0.10630407376470397, 0.011211720887873663, -0.09620174849868901, -0.0026981587056407897, 0.09204399895178574, 0.008583719891114698, 0.07185320580589662, -0.018400465289709053, -0.05010968546954479, 0.05148220169471522, 0.014565253050189367, 0.05032230618387105, -0.005064002060763857, 0.046422004298287585, 0.001666913532340338, 0.044437825112636796, -0.007180425590594666, -0.04367377662065474, 0.015790106038842493, -0.04168938504459954, -0.023146919982186803, 0.03570055706126872, -0.02649026227830878, -0.031127160952163998, 0.03114888099797786, 0.031894179888333686, 0.033157181607716885, -0.03585763014224899, -0.04040713404421556, -0.02941180596341674, 0.03445037399976655, -0.1997261615637965, -0.05197342076977614, 0.1679129373187697, -0.12549478093131897, -0.11999574348110863, -0.14839619284924568, -0.10396712326511443, 0.16986373346835523, -0.08676590050293582, 0.1982053264843698, 0.06729798420375205, -0.21296312400759315, 0.023907158609767654, 0.2168994011605092, 0.016789253014053332, -0.20121959572602088, -0.0035767465685976026, 0.19827413049486678, 0.0071539352187892655, 0.1324794827350241, + -0.0735974037609536, -0.11808311478161612, 0.11589900257361406, -0.06817747819425808, 0.00698413626536918, -0.07928811879668926, 0.12028163864606967, 0.1135221216980033, 0.06188845068408864, 0.017600510224648834, 0.0903183513488616, -0.1274152999736902, 0.10554612985302657, -0.04866277090012044, -0.027104435414555903, 0.09270677140596127, -0.12046847312821891, -0.10055225323157145, 0.041896141505118514, -0.03250757740383608, -0.09458325009372753, 0.08771380073886272, -0.03659032166445194, -0.018290079815133455, -0.006959446681134419, 0.030868523315319307, 0.04316720709260419, -0.0386266792042014, 0.020634376786254065, -0.00678150662496981, -0.0314132685314837, 0.0418587591520307, 0.038647260108287645, -0.020008555126450712, 0.007514297603599295, -0.032557977164701796, -0.04469829254870089, -0.03842616118140498, -0.01751362770009655, 0.010214405109066259, -0.03571145354530813, -0.04457077678895675, 0.03503767002405761, -0.007958449948552647, -0.08598623803550948, -0.13958058721906666, 0.12655552113882682, -0.03497214695073364, 0.044531327061674016, -0.11139924038264554, 0.14705859298292512, 0.10061860534571827, 0.015431193640478479, -0.08385872078332994, 0.160407536743437, -0.1733336318205643, 0.12324339679256947, 0.020718541391284935, -0.0906527150832118, 0.15346681771491055, -0.1737793879020344, 0.12689804706518515, -0.038517300770090905, -0.05480652076068763, -0.12942791456084063, 0.10703295683146105, -0.01184015413796053, 0.01980413163310571, -0.035312786780823335, -0.051609116898360397, -0.07421257675817312, -0.07295066649715562, -0.07002963997906247, -0.015030444083145137, 0.04386823732515534, -0.0809352967354554, -0.10701460493467548, 0.09027860727361023, -0.05339314837250154, -0.011926978384983487, 0.07335386193444118, -0.08950533566028725, 0.08969275475000421, -0.056512209056045946, 0.005313353837480054, -0.038440330035106156, -0.0683470882254241, -0.050214835471759985, 0.009987704485665909, 0.040156033470213785, -0.05130207686485827, 0.03993521083759271, 0.017816556525346118, 0.011412378543093207, 0.0354155770619554, 0.044839331222999906, 0.036764715998953805, 0.011814191694512059, 0.01704174500169035, -0.03927706934186391, 0.04249038886304157, 0.032082577316678046, 0.009054455177723124, -0.017209011017693513, -0.038628512896958456, 0.045454506029121516, -0.04256329204348504, 0.01950709952701404, -0.015077699163874208, -0.026964190631144518, 0.12994413675791056, -0.19533886878876677, 0.16420472983824816, 0.03138206486291261, -0.08136495130304928, 0.1655822838951062, 0.19135206360599846, 0.1278081093442433, -0.014834255798228103, 0.11098108223878064, 0.2003495897016794, 0.20884784871230788, -0.13064575541102194, 0.00019495880419944604, 0.1298380936957809, -0.18360989261742425, -0.19634153627682788, -0.13961256097832042, -0.043917248343281645, -0.1135177695405983, + 0.04339419512870017, 0.08127143620223452, -0.10892378908374137, 0.1227190067894982, 0.12022307519566644, -0.1023948010920766, 0.07179609888206721, 0.031816618046277105, -0.012205287643428904, 0.054675265547542554, 0.09227475089477623, -0.1181580664275121, 0.1209500666657208, -0.11635114537468731, 0.09705022539121518, -0.06634579258979315, 0.026815162097840815, -0.01627102721341176, 0.058244173125838315, 0.0913450339275109, 0.1124458136152177, -0.08763155566766691, 0.03506844146510114, 0.025324221096622163, -0.012144644440752365, -0.0038657055806411798, -0.018913204083466886, 0.03177898304712172, -0.04139646511423456, -0.04418280446561893, -0.04127404926506196, 0.03018793212680337, 0.017639399193317157, -0.0027534755138019134, 0.012540268752710512, -0.026962594462090178, -0.0379311517611728, -0.04331052287592116, -0.043911434554211384, -0.038974672230686486, 0.03101722111711016, 0.018637730326000596, -0.003131638818501507, -0.009274175468012954, 0.055812088107775444, 0.09970979036434616, -0.11928392518565907, 0.11622976607008478, 0.126793484937045, -0.12490690643392363, 0.1281616261407231, 0.09210011926578195, 0.044864911181882704, -0.018284623880176955, 0.07905322109975947, -0.12972381876152245, 0.16828676494373282, 0.1799208363268318, 0.16884334756886027, -0.12004390597692721, 0.06512452385734374, -0.0038476267316888964, -0.06391241398876826, 0.11029056714571892, 0.14077179029420028, -0.10720144600821578, 0.04836116441867492, 0.050482140019620314, -0.03853381176672614, 0.010595411447719173, 0.036296252106464894, 0.06382426411205523, 0.09768381364021311, 0.09151377472068793, 0.07391323504771984, -0.02652734947120091, 0.011449723993388889, -0.04824046578999417, 0.08901185410759432, -0.10376583849392959, 0.10548741652943319, -0.07459988147420929, 0.047417496129824446, -0.016192884121343315, -0.018904740971475927, -0.043188468189989844, -0.06153200698879721, -0.051087364899889666, -0.04101017485919765, -0.051001989303561625, 0.051606274497995874, -0.04310194021314101, -0.03423542488206657, 0.02111931402954053, 0.006481470704953975, -0.009449558009698912, -0.024191107970050047, -0.03502396536409047, 0.043241076085713676, -0.04582245665948253, 0.03866058761890136, 0.029725870417456224, 0.017097885428536158, 0.0014677822645252415, -0.01441877408039375, 0.02854809870469814, -0.0470672784932554, 0.052562270094959104, 0.049139736915914584, 0.021598065799330754, 0.06749826099761992, -0.1297752334917693, 0.15645789937163881, 0.161098980991259, 0.17958480839947114, -0.17844813079222033, -0.1675884165863428, -0.1210641028640064, 0.05945821519206512, -0.01769845538431846, -0.0929399410641242, -0.15659651893262447, 0.19865318259224118, -0.21534072294785353, 0.20433274447796784, -0.13735504679700786, -0.07641848318475954, -0.008700805575148532, 0.07677574868565057, -0.1825760314234191, + 0.12048937113961099, 0.05017447466305947, 0.0999951147782373, -0.09153603126167788, 0.06222685178198358, -0.11747932489011023, -0.012245960626876183, -0.12275411527274453, -0.03965716561108809, -0.10926795309274304, -0.08912057810701188, -0.07267079018890328, 0.11383585839925613, 0.01770564256297863, -0.12063956395279875, 0.0341443452974012, 0.10573039884972213, 0.07905456869925075, 0.07318863001065752, 0.10670096527397113, -0.029477555868359297, 0.08790201925935691, -0.0007898721951537912, 0.03987038217207865, -0.017036209509200158, -0.03585857124509279, -0.03177692012355175, -0.02278912512355685, 0.04128663062878026, -0.006764204661297637, -0.04398057862666586, 0.00837024374366466, -0.039310678014967154, 0.024667366060660997, -0.03018481057865635, 0.039047015879121336, -0.01370041209846408, -0.044267007150736046, -0.005945213055614545, 0.04161356395912838, -0.025350711419684896, 0.029974539673545384, -0.038567672067916184, -0.010729870777453753, 0.14498091748449995, 0.05414863175338658, 0.10816610286059353, -0.11112304839350733, 0.034937266724160795, -0.13222005297113926, 0.04478222235646392, -0.12984813021514052, -0.09748132126903446, 0.11405727471614786, -0.15611856186924164, -0.048695487513983456, 0.1788537868433222, 0.020239447015669383, -0.17151614575609128, 0.07621832089865282, 0.13960472550809164, -0.13201060445535517, -0.08677012209045777, 0.1392744029848466, -0.03172659118380187, 0.10867071774983064, -0.03888135609556886, 0.023502359270421633, -0.03970401576158264, 0.06464869548463725, 0.04946893194826587, -0.054130299298621606, -0.07473307667276524, 0.04600969315568958, 0.09138425823499394, 0.037553484923376394, 0.10614825173511681, -0.007102884035788993, -0.10528573710135795, 0.03169960420321153, 0.09378498538631308, -0.052570615856590626, -0.06597534665255919, 0.07819893463200032, 0.031570576130418374, 0.07066740239332556, -0.0034512833556026093, -0.05275314557647348, -0.05214238321913517, 0.006077034660204053, -0.05116934251682705, 0.01235197677176413, -0.04126919142791642, 0.029599795140605248, -0.026127134767865434, -0.04124605831737456, 0.007926982579555429, 0.045472488915949336, -0.012750397643371502, -0.04088151114489969, 0.025171733062290938, -0.028741211881968848, -0.036452536226450755, 0.014726950404838873, 0.045096158004943515, -0.006591170648756603, -0.049307191143662686, 0.016148634605258196, -0.04868354595866917, -0.016043065681025433, -0.19869032779355442, 0.07496627310191259, 0.14607197448389622, 0.16070816191938997, -0.04763030614009866, 0.18485046019119228, 0.04711752399069929, -0.1742941179103729, 0.12484737212778559, -0.13997800827954354, -0.18909417000312584, 0.06834121563008762, -0.21506089728717417, 0.013303495068038578, 0.20915575212515794, -0.0675339505691336, 0.1633587328322971, 0.15079491380277973, -0.10606464802378657, 0.09270456992306124, + 0.08680717498996764, -0.12377252041894245, -0.09022140486787615, -0.005017651714920718, -0.083265041253491, -0.1230998664406445, -0.09026409288157329, 0.004206846645432978, 0.08422899979761943, 0.12855836245883487, -0.09427739452107037, -0.0058192778013894855, 0.08486011899467401, 0.12104251653300444, 0.08728477442279634, 0.0017670713704071679, -0.08412954013981032, 0.12029292963265381, 0.0864373584059403, -0.005339442488079996, -0.07975306863015631, -0.08895297073637548, -0.034544145006168966, 0.009014162776369652, -0.021098219127091186, -0.041717327849388974, 0.03837321663924864, 0.012792493692269296, -0.020106797139603616, 0.041943102571374236, -0.03900875455747462, -0.01650240071225302, -0.015870207449968154, -0.03932403414773533, 0.04227262077274237, 0.018378811608105013, 0.01610093341181857, -0.04086741733866227, 0.0405095959951562, -0.016276870304713364, 0.018708248835255452, -0.042260727373267505, -0.0413778345833718, -0.013085928921599056, 0.09782225795555717, -0.14524215346493777, -0.09292335352275416, 0.021205115791711752, -0.10398525872425346, -0.13480261915817202, -0.06133855784252838, -0.05177564116134646, 0.1329902641055564, -0.16951150316866762, -0.08878822225524814, 0.044892438085880094, 0.15173487604972655, -0.17576306646920212, 0.0988850155554324, -0.025974434792525886, -0.13902298733734592, -0.17178780899504884, -0.1060198238658182, -0.0059842970224751255, -0.10347814883428036, -0.11240031906137013, -0.007176436947593416, -0.030166064573376915, -0.03759467132440124, 0.06675606781617913, -0.07338551449112404, 0.04878429071208344, 0.010955531933148317, -0.07458661481935082, 0.0919546435277607, 0.08742056376708901, -0.02039788713254307, 0.059480346868313334, 0.09828780283037339, 0.10025237612508583, 0.047036148613889474, -0.022988711031199177, -0.07872098032105175, -0.0874947093768322, -0.04234376841169424, -0.008280072021617176, 0.057540368360359403, -0.0564206967907158, -0.012341104270878877, 0.04579654769555641, 0.05079187839226895, 0.03058090015157923, 0.002718612378270596, 0.03463945914539439, -0.043253452275351406, 0.024691304751999883, 0.009421455418325855, -0.03951713225158269, -0.046060014062899494, -0.028216563672005087, 0.0016371304241020734, -0.030225562122640225, 0.042131307177936395, -0.030856653966227235, -0.004477992910360594, -0.03652230901033986, -0.05007385068225658, -0.048224731141104496, 0.023630072453762217, 0.003524281506035086, 0.1345864779692223, 0.2030022261567162, 0.1395546273922334, 0.017946332635032095, -0.13792949717827976, -0.1864746336463717, 0.10533881889292845, 0.047895695534186405, 0.16991668260253462, -0.212601120609234, 0.1280078701576719, 0.02361509480938572, 0.16451592351006808, 0.22447537858134414, 0.17205754826313968, 0.04863584704937044, 0.11483521090048657, -0.18751846348279913, 0.14049753654832695, 0.07781103408202944, + -0.02668513751365374, 0.05230661950259287, 0.07618149669297909, 0.09666239267415397, -0.1129216114198546, -0.12377562062915204, -0.12739432691938818, 0.12367899695699598, -0.11260410700138275, -0.10152950919748899, 0.08286655271767926, 0.061008923806467504, 0.040541105300586, 0.015233504819589964, -0.010613449808771089, -0.035946988085199805, -0.05951432333981834, 0.07945160432649431, 0.09598958940224238, -0.10978998272213361, 0.11845524545715533, 0.0918667023697505, 0.036618135034238476, -0.030256049108166698, -0.02205732821439427, -0.013495962802252801, 0.00500134313222029, -0.0037799627173709235, -0.011875745274812811, 0.019513426099074645, -0.02598820842077964, -0.03370228245652861, 0.03840936226151584, 0.041817141565536675, -0.045821712318479195, -0.04520933425394352, 0.042411402718262665, -0.037301711802170144, 0.028831672225621458, -0.01870468748184943, -0.007505797071836632, -0.002772744423497907, -0.013187818080617343, -0.01702503593747244, -0.03380494366769194, 0.05951329862721354, 0.0720372150586431, 0.10405876795989935, -0.13837367085534394, -0.17691867142647352, -0.16642571359836447, 0.15444286159287662, -0.13568836235893977, 0.1410857868521331, 0.12500853262201153, 0.10140808621578563, 0.06986751695197428, -0.03772275469166299, 0.003918210791894563, -0.0284889628080613, -0.057391917412821354, -0.08403462311450897, -0.11296001057697316, -0.14900986243494646, 0.1712142579034607, 0.1377094736623385, 0.04095218154107106, -0.030438454063330848, -0.012559592788335967, -0.02635352908482103, 0.05396704611641828, -0.09540336703818023, 0.09020177478965244, -0.08511451348768972, 0.0742592743460548, 0.08608802829708712, -0.08011577813120044, -0.0687214139924053, -0.04431787032279298, -0.02806498681420777, -0.011361446217557556, 0.003389818601104791, 0.018237193724112376, 0.03171291422882822, 0.04692277665065602, -0.06674318122549686, 0.07966595037989173, -0.06895195934978673, 0.035231254176900755, -0.03801124610262399, -0.03800403729405943, -0.0409000071547028, 0.04544737374116042, 0.04866064394786471, -0.04591127893236178, 0.03822852718766315, -0.026565168531016644, 0.014664161451325706, 0.0020564843314007267, -0.010650448747144702, -0.024772498511402674, 0.03759194014704423, -0.05004588307817531, 0.06073659523057676, -0.056072452049793345, -0.04212674881448941, -0.023404624228570377, -0.013269738776323852, 0.0035343354950449287, 0.003141885653739895, 0.03494119727154542, 0.07103827834238247, 0.09313886679908313, -0.14023001323011236, 0.19796553929219063, 0.2590703663045921, -0.2702832913508102, 0.24848668592868348, 0.19708144236132938, -0.1521532183444063, 0.09948850697797594, -0.049262607050905634, -0.0021962159480175625, 0.04459260616794133, 0.09322598799075511, 0.14770303067197815, -0.14955210579427647, 0.11139167111911866, -0.05088111665575013, -0.020800523426040447, + -0.11564325765203867, 0.08040220469175728, -0.05971538036631632, -0.12113551916431115, 0.02435401097037921, -0.10418113681804193, -0.09525921731372598, -0.03905482666619227, 0.12178288748098623, 0.050722508192595835, 0.08768975355662775, 0.1121906679440269, -0.0023275456406562454, -0.11452490567135631, -0.07677960482876868, 0.06262224259466878, 0.11961291257281984, -0.018807711277828786, 0.10853746363068244, -0.09461854170320763, -0.043851932807206895, -0.09305941776516381, -0.00411578013667215, -0.0396404045090054, -0.03073194653458395, 0.018923200432806205, -0.04225519471352294, -0.010310528996094737, 0.03453778628361021, -0.034980054696790684, -0.010541380646528813, -0.04398386870998994, 0.017562562846018866, -0.03184602580594373, 0.04127088120815783, -0.005632795033762105, 0.044998415366446415, -0.02535415569058913, -0.028718474811429515, 0.04484642667135097, 0.001247847212711874, 0.04110962038855899, 0.030077936705215882, -0.013966637796677481, -0.12338021287222793, 0.0811946669383, -0.062418518400344666, -0.1761950152741438, 0.06089505552848164, -0.14085456506877853, -0.11828477511634253, -0.05741988050595563, 0.15532134426044605, -0.08215962158591868, 0.1023234604513586, 0.1526903655256647, -0.0018325711043460583, 0.15346551033534608, -0.10527735673858774, 0.06937233366072254, 0.15175107082910608, 0.037291481864050735, -0.14142233351346764, -0.13986117783134078, -0.05379591787629846, -0.1282699547060113, 0.0032392734637446863, -0.04834435899079302, -0.020990240606761638, -0.10272363244706284, 0.06916161687517255, 0.058294529980110955, -0.06789417949540785, -0.006910008682161744, 0.07007950109053213, 0.06671556074276046, 0.03242590982856119, 0.08949467291654768, 0.015606800202307468, -0.0735589020352328, -0.0688603998450828, 0.012952470576716134, 0.08036046735959657, 0.041673193749321165, -0.06510236158346722, 0.08519874097358067, 0.012246853967665882, -0.06917785038353258, 0.0443786304185637, 0.00033639389424131375, 0.04178656063118399, 0.034932475382350246, 0.013907046328989705, 0.04487069910599624, -0.014379417880181483, -0.03606530138114577, 0.03789869538834477, 0.008635043415537894, 0.043425396775063116, 0.023225007200494224, -0.024269846853022158, 0.03903140482053629, -0.003855076551448109, -0.03461705380330578, 0.022130240568928393, -0.0210149759639475, -0.04043754842662114, -0.017327061641356292, -0.029907075598155225, 0.031180287444561364, -0.1349598019319698, -0.1131238233805209, 0.04796915129919027, -0.20658632042845174, 0.10145679886813902, -0.13797749540203452, 0.16843614637908422, 0.02957638928025417, 0.18686743388930338, -0.11787455037944987, -0.10724766520262775, 0.19967044800284478, 0.04670898443591619, -0.16355305486816818, -0.16943356162235906, 0.017368786306014232, -0.1743812695920164, 0.07514203300628364, 0.17454007041710412, 0.20014580409356247, + -0.09827950002134603, -0.11851349007429594, 0.044472090623972546, 0.06423290571890626, 0.12184957794336733, -0.08280680911721898, -0.02139267784716254, -0.10870842630106535, -0.10987701065969932, 0.018656206965793558, -0.08586560025328813, 0.12236434960759494, -0.05376082212585252, -0.05458764749146744, 0.11919520983193557, -0.09061256073996878, -0.010115485089521552, -0.1030523662889141, 0.11658322877315756, 0.0367334921310842, -0.0734879837695082, 0.09234361690533371, -0.034941950282316586, 0.0004023899985702694, -0.034448533126766476, 0.041420962980095816, 0.017413415833059713, 0.020639126299645077, -0.04226026963446053, -0.029073508420548066, 0.007056601453204919, -0.03782320619047828, -0.04085587250300483, 0.011274861393685796, -0.0276692729671141, 0.046257463213067014, 0.028208119287181067, -0.012296616216792955, -0.04368632759129691, -0.040513367982028654, 0.0061281512427292465, -0.031055543575391503, 0.04387821021365986, -0.015164399494608016, -0.10080778429132431, -0.1259825137780037, 0.048705516580582225, 0.11004059176467902, 0.17783545281737792, -0.10655583146569661, -0.017982653727319, -0.1357545982974074, -0.1442542275176586, -0.010600814855943337, -0.12205573493113708, 0.15820664895930672, -0.0738329778734622, 0.07110934096394883, 0.16034854127408182, -0.10673505750187325, -0.025331291977359137, 0.13456809576764886, -0.15773204965528512, 0.04815298983558143, -0.10777602167910952, 0.12553861873608668, -0.044998629486078946, -0.008020718697695349, -0.02755025630258014, -0.08818889824527056, -0.10467182331111444, -0.03695424153611079, 0.027770614690845276, 0.0713508700276949, 0.05797198979323793, 0.021120178139144394, 0.08206126626571635, -0.07799003125425351, 0.024908341391470988, 0.05048936463815905, -0.0862764894716844, 0.03853650116969965, 0.036116703007428294, -0.08022298493830778, 0.07753060768897611, 0.010803195024017886, -0.07060541305912586, -0.0681741957064542, 0.007450551395098502, 0.04187620083418461, -0.0404581794107103, 0.001861494002257557, -0.03451116415216446, 0.04366003316002061, 0.020082409944265703, -0.020289539041711022, -0.04479825118705372, -0.031694859814127216, -0.004938028578504193, 0.037931597172165474, -0.037145937849667535, -0.009482026806301697, 0.025459310348448897, 0.037338996671550065, 0.02365120124380311, 0.007909400597829285, -0.039615388277432176, 0.032230284558982344, -0.004905686512656432, -0.024235326106480718, 0.12652900126861913, -0.1395656954827707, 0.038521960595326706, -0.14310740892298457, -0.20697556094139194, 0.10706635189465175, -0.056529463662362625, -0.17897052100887095, 0.1617891957312762, -0.0010032789503630363, -0.16050302845432934, -0.19085112605904517, 0.06393343608680221, 0.11435807624202729, -0.1995016902416226, 0.09630312840009687, -0.06311287170104805, -0.17426046765420003, -0.20448162138426845, -0.038874458912117264, + 0.009441976689836375, 0.018840386385487684, -0.02818498629285762, 0.037370548321073394, 0.04617735706956143, -0.05472413188739846, 0.0630555791799852, 0.07086984097052212, 0.07819034563930038, -0.08192584884994342, -0.08882696529987652, 0.09523903149426069, -0.094758068772432, 0.10009370348863618, -0.10495412258334097, 0.11043609225898063, -0.11423671392633675, -0.11720577109920502, 0.12175327257961753, 0.12419322235370323, 0.12509281735964722, -0.09213452543805707, 0.04131178059008976, 0.039975477256111384, -0.03759622818061298, 0.033847198635182305, 0.03179944496594572, -0.029744251699242132, 0.028628266905392236, 0.026114033162518188, 0.02342625650533386, -0.018987048691891252, -0.015911877265595942, 0.012716471498498779, 0.008773797431893935, -0.005248730061008974, -0.00171462853836505, 0.0018251937684886398, 0.005422103988617814, 0.008984614291334672, -0.013228075163394278, -0.0166874731683075, 0.019820036909958306, -0.01629635560741226, 0.01670095081397965, 0.026438320747598207, -0.032812719307069936, 0.03827834944595853, 0.051655820479950626, -0.06712436054859386, 0.09103334449637825, 0.10014050673967706, 0.10826861455047518, 0.09949645466414014, -0.10928095807529875, 0.1180734732832856, -0.1301494913033579, -0.13736921064409252, -0.14413130315213316, 0.13499888487840522, -0.1384512476897336, 0.14244688883420098, -0.16708729075736897, 0.1761858676975833, 0.17787170772477648, -0.12469267839054074, 0.0441154882816603, 0.041732756954026354, -0.0325835142136335, -0.004157919112030272, 0.004224157896236012, 0.014244324424340093, 0.026232598992052786, 0.031184505938082016, 0.035712538560961335, -0.03229423179974937, -0.03877636767212571, 0.04481189215963954, -0.05929579110690005, 0.0640410663820858, -0.06864987278579576, 0.05979501261566678, -0.06266598126315691, 0.06621032690359695, -0.08571832386100554, -0.09295599148443054, -0.09517291184070589, -0.0684331898264085, -0.03636896990048938, -0.03850065265741923, 0.03836000601921986, -0.03653100175133543, -0.03838692849424621, 0.04026898733799579, 0.042948346708107904, 0.043991723403935264, 0.04478146382281034, 0.043086777776114145, -0.04358364777782802, 0.04375658927579461, -0.040100932496907826, -0.03954837788061464, -0.03883180989564574, -0.03468836298813892, -0.0332557630199644, 0.031961211380596544, -0.03698549416121982, 0.03755919337372169, 0.03637906534470725, 0.019995520029077465, 0.006161377622401433, -0.017631002499180218, 0.02580239788871731, 0.035784261221059065, 0.05151159381337636, -0.06840526673745628, -0.08784288620097418, -0.10032615733169836, 0.11217834502041225, 0.11519930278359293, 0.12792089810901563, 0.1396225038089964, -0.14945074310397616, 0.15901044824446783, -0.16800058823595365, 0.14998570820060966, 0.15529090285520075, 0.16278734439192047, 0.22239376829063387, -0.3222968920443359, + 0.10848254357628968, 0.10277467367793064, 0.011394846780216003, -0.11289283902922159, -0.09527260970215362, -0.022401321649451376, 0.11629753129568277, 0.08803725302532385, -0.03248470427968443, 0.11868091242977524, 0.08470419584329156, 0.03887892224790403, -0.1181259784383938, 0.08126118047422029, 0.040637511689566176, -0.1206231484890213, 0.07274038415809828, -0.05162807105208446, 0.12397024776902148, 0.06411215528309701, -0.06448690191150362, 0.0922812829307767, -0.009106407339208682, 0.03365186583357867, -0.03998153723568319, 0.0018948199297068782, -0.036496012790085824, 0.03679792458089813, -0.0005637023869525092, 0.0370790160757955, 0.035737181550573205, 0.006223893684111371, 0.041433661392582116, -0.03295608378477245, 0.01187437760347242, -0.04499133614549315, -0.03083426601477387, 0.015785367740782333, 0.04657835906545971, 0.028562633419604896, 0.019926218464753273, 0.04418451697835627, -0.021482653193923864, -0.017565576890916694, 0.11845614307580267, 0.10332605618747294, 0.015887451962000504, -0.15819501526894558, -0.1454994294183107, -0.024359262515985504, 0.15425411359937072, 0.10398235067822864, -0.05377772709951833, -0.15356251300257062, 0.11619952468743286, 0.043787782833023495, -0.1598027079592806, -0.10243959678389288, 0.06341129630222102, -0.15154996533704465, 0.09792585093016959, 0.055982161939219954, -0.16970090662905019, 0.08681185616476664, -0.09570057582262047, 0.1253006406859337, -0.0012602756787168795, 0.04384461318170534, -0.03593837370221474, 0.08315761329718875, 0.10181249361830952, 0.008577763663401482, -0.06667518729298043, -0.06077400722546143, 0.0074206105315315265, -0.07393106047432857, -0.07920323922684756, 0.0008309239000967761, 0.08076030629880127, -0.06276644319905017, -0.022441350283206322, 0.07549001366000205, -0.06738569602288323, -0.009008889694421008, 0.08969178607850745, 0.05854806504306101, -0.04034639464066133, -0.06967418393527931, -0.04477618167759314, -0.006996746905074833, -0.035722304535915385, 0.0425854547481455, 0.008234209088311392, 0.03496664250586087, 0.04179733951811132, 0.004035752911790863, -0.03791830738726305, -0.038749471062063875, 0.0006199744414399355, 0.038555575817931835, -0.03322589144451679, 0.0048045789162788205, 0.03738252793738897, 0.02760204825182424, -0.00825891063488873, 0.035546278683860705, -0.0325383608225567, -0.006681599882366773, -0.042049857106931474, -0.016097568468063022, -0.13284289364376303, 0.1232315232953236, 0.012712339928407687, 0.18594519938528176, 0.1700611420206485, 0.02760136086543486, 0.18176992466448397, 0.14002915216248463, 0.045938436900742965, 0.18789562495851206, 0.14450431313662718, -0.05565329283461352, 0.1959623329782055, -0.12524807268834018, -0.07949458351696508, 0.1806240482423338, 0.12745390246358923, -0.048606323635347545, -0.2279577589618138, 0.030836202188663814, + 0.10778476019158413, -0.10504642384090757, 0.005168346597824834, 0.10938036879456589, -0.10135300500363484, 0.011102194931157657, 0.11168811739305967, -0.09640776447231647, -0.01902332404260757, -0.11699883088991064, 0.09030350545775746, -0.029102980194481067, -0.11956239415094351, -0.07891239017792512, 0.04248788573688812, 0.12002158507954075, 0.07429540988829902, 0.04897988917978204, 0.12314217581921809, -0.07251144721568067, -0.05372132003687575, -0.09298497836325484, -0.031752116748179154, -0.011191842916330484, -0.04146404679346954, -0.031668287109137605, -0.009494094097004874, -0.041241662827954134, -0.0277996929940967, -0.01472937458406687, 0.04182793460620558, 0.029455236080869536, 0.01424156934697782, 0.04354876153442419, -0.030544276391888923, 0.01568341983497126, -0.045589235779427514, 0.028369319658789246, 0.019422171248010614, -0.04690913674195022, -0.026100666973517716, -0.017775161104753384, -0.04429044898669675, -0.019342286629328805, 0.10870361927272393, -0.11449101137333345, 0.0010788731082945445, 0.15934837465096227, -0.144124689077924, 0.018809103376719403, 0.14061931351349946, -0.1329390306224521, -0.010042874963151021, 0.1533970799425455, 0.11595199147860374, -0.04244036674394436, -0.15644196550536818, 0.11463256571482972, 0.04526525696192013, 0.15540389572866659, 0.08677480676683932, -0.06763431331684266, -0.1647397559256334, -0.11073731580512472, -0.06733768905766355, -0.12793699875278922, -0.04269516699544977, -0.004270716037747653, -0.03675573283327126, 0.10472199313065472, -0.07665615203403939, -0.029349146401237817, 0.07276934052886455, -0.051612231052803055, -0.021933087746765938, -0.08816745655698136, 0.04501475730658883, -0.04574027156887016, -0.08463625699888454, -0.05341423270939984, 0.032109199568820544, 0.08449571989983108, 0.02914693291667966, -0.053515736218556126, -0.088608388352067, 0.05004072756374425, 0.047634449234259926, -0.07258493531591743, -0.009508117833610177, 0.045090616770552636, 0.03320042186644163, -0.014133983318230613, 0.04386907171154551, 0.02893389138735806, 0.016432141716141963, -0.044925110000855015, 0.025199833691960764, 0.020191220697669883, 0.04418728245690613, 0.024674689015321105, -0.016766138447151586, 0.040253948004723275, -0.023441253848094035, -0.015444906337389055, 0.03606981543817116, 0.016196498207027933, -0.026299994287912278, -0.044081143170670536, 0.02161910369091796, 0.010039799494791921, 0.12926237334496474, 0.1338978435835674, 0.003049210122016149, 0.18354441212327186, -0.17843087319491568, 0.006534858169041119, -0.16746721642066076, 0.15327512814658598, -0.02691814978410938, 0.19010161620004196, -0.15080793228868827, -0.036328247219221906, -0.18994295326214822, -0.16238300573376466, 0.02093409949306739, 0.17683816063362978, -0.10214193936982645, -0.09336836548226417, 0.22352686149089349, 0.18016300344019312, + 0.007990165361625098, -0.016008234141369357, -0.02418817816533005, -0.03233143348611405, 0.040464845926298454, 0.048407602636710415, 0.055595492410018245, -0.06198645930096666, 0.0673494250851267, 0.0757919422132778, -0.08172601841777082, -0.08815943512229009, -0.10007522269808143, -0.10487799129757386, -0.10958408967638689, -0.11278483944202236, -0.11586465783513722, 0.11677745308667739, 0.11735684202832265, -0.12002139573591367, 0.1221476548215446, 0.09361437945866495, 0.041954111926977816, -0.04180784511774323, -0.04064910104900866, -0.04159979833819552, 0.04341316926953302, 0.04534160830803291, 0.04408287178682779, -0.04234337483903474, 0.03997268128115989, 0.0409937356526744, -0.04026395302337004, -0.039899948471121306, 0.04185203659227926, 0.04139551381774599, -0.040725099741192046, 0.03955634563527015, -0.03657924220951225, 0.03305201785508452, 0.02982668722756536, -0.028920817042717636, -0.02759031429354351, -0.019769330327544344, 0.0004699398947175853, -0.00889025158355684, -0.015204558475640721, -0.02783500099129443, 0.0415023210453546, 0.05851985867938246, 0.06116463041856785, -0.0665013518406178, 0.07156377033949975, -0.09354825164145848, -0.10429942534675993, -0.11340003868509631, -0.11871274684077532, 0.12791911760582847, -0.13780210665803966, -0.152490408109771, -0.14598106952690718, -0.14187226399043765, -0.14316174949956303, -0.16422324307088884, 0.17611076265738224, 0.139276040201474, 0.046732834699143244, -0.0431588482899704, -0.028227981803252512, 0.02513827189890563, -0.036573956297717605, 0.0580908654410312, -0.054317829189135566, 0.05288655926389117, -0.05004267022124462, -0.06542941118238162, 0.06944167947412368, 0.0718392810783451, 0.06428912182588864, 0.0706607875647467, 0.079642745521065, 0.09740479336907272, 0.09024516357153056, 0.08333831667139867, 0.0779077324627098, -0.08920439987463666, 0.09392640989935251, -0.07658610695884585, 0.030673183278230834, -0.026394390709609077, -0.021658822029559984, -0.018843510419178526, 0.01798509626839901, 0.017370225307823853, -0.01542457506424001, 0.01246100259220951, -0.00873114053854666, 0.005310025945431703, 0.0018596189388205592, -0.0015192310406042958, -0.005177156482205094, 0.008783201374544247, -0.012679869608759617, 0.016626804012366322, -0.01708482442235553, -0.015418564256802691, -0.01338046290684604, -0.015589491717377103, 0.020443895304097272, -0.02222824895782951, -0.01438732488078461, -0.0240550745944631, -0.030230757112817894, 0.04574703906992045, -0.06669602610980745, -0.09180263107145725, 0.10264350078147484, -0.10562326772718042, -0.10045855503260931, 0.10411773364039371, -0.10649974442099891, 0.11693111790819115, 0.14060229067099395, 0.1785631626286667, 0.23237379944829648, 0.31392509745422803, -0.2971064197790115, 0.21321202235363695, -0.09461295853753543, -0.0378873588030922, + -0.09915055065327658, 0.11832082459474615, 0.04245044736583463, -0.06717057634399526, 0.12263313034762309, 0.07840794116160231, -0.030011705771362755, 0.11390828170865656, -0.104112896949165, -0.014034750214829984, -0.08717988669103552, -0.11852094327318306, -0.06161793927495616, 0.050164423459324016, 0.12084598660501887, 0.09219651182736055, -0.01046171187244613, 0.10472444231442327, 0.11442461512740465, -0.03414442933100691, -0.0748690415056203, -0.09217354451573037, -0.011810404995100197, -0.02790647216548135, -0.043834202489825044, -0.02628241521537477, -0.011180792736884142, -0.03991256139365438, -0.03348659145700379, -0.0004624212134861363, 0.033903297039011536, 0.04313162915839288, -0.015485901730339062, 0.024710943164613884, -0.04613577127799072, -0.027600932583723172, -0.01328601727222302, 0.04298866771516793, -0.03633859313825981, -0.0001048935214291672, -0.038242814415860395, 0.046429358166484525, 0.01641525878936048, -0.0190312652840642, -0.1078490566439359, 0.12171460488517387, 0.029488504717626506, -0.1194288666881414, 0.15850480256204974, 0.07472307700913546, -0.07106708821891111, 0.17443432178880594, -0.13572990323123396, 0.01074970591333501, -0.11712544415945042, -0.14918879715886407, -0.0553684378930143, -0.08103043833368109, 0.15278451571185522, 0.10828072167078327, -0.04368636878627337, -0.1576248679072764, -0.14978503134856663, -0.048826699034161626, -0.10045424300181834, -0.12319349390360267, 0.021286623971915632, -0.06964254682589258, -0.04421856677025409, -0.05731984025822065, 0.08010412700017172, -0.0496801285415304, -0.025228357987425037, 0.0930208689363877, -0.0824671146581081, -0.027943398745808146, -0.04762600687942176, -0.08435748541117052, -0.04027356901039707, 0.02679188864545888, 0.07368122829431197, 0.06952537557852227, -0.011427953757467154, -0.08006630609208867, -0.0882895918092249, 0.046233449092643264, 0.04079355170141569, -0.07121479538336617, 0.03990384520253522, -0.015431840969303286, 0.019761392016665623, 0.04548839400679265, -0.03607370793679744, 0.00229963273687981, -0.03716818883572069, 0.04067123234242323, -0.009267259799084751, -0.03025910745004803, -0.04456321956204691, -0.024809930555782046, 0.01143527710817788, -0.03789053042015959, 0.034685891154844335, -0.005196220160200545, -0.029871080826389753, -0.037599232325025086, -0.011811110173017437, 0.016182596612214568, -0.03542073745162096, 0.02543025777693045, -0.12123206067892314, -0.16220727599129098, -0.06608169496841022, -0.12021719214838972, 0.1949603717541013, 0.11937790318755631, 0.05549368280709675, -0.18995678031086924, -0.1588698873621165, 0.008429181266169792, 0.14662986793556204, -0.19310747283360258, -0.10088216147942748, 0.06441794855535561, 0.18163079430852516, 0.17424821188959644, 0.021635715563480505, -0.19324385539076883, 0.21467077298005863, 0.14139503246875082, + -0.11513270765374735, -0.08185951821273585, -0.057287362935007705, 0.12202863022511072, 0.029115468771958523, 0.10112382082707778, -0.10149689093282158, 0.028692827132682345, 0.12190080694562815, -0.05303570391605758, 0.08125179454278722, -0.11101219577295102, -0.009145916258651934, 0.11904132159116118, -0.0754930454601442, -0.06474820332954881, 0.1204360250819711, 0.02146963108056375, 0.10667334019870903, 0.09476598539727445, -0.040349637340202096, 0.09114758591133636, -0.030734335126409346, 0.020121151432372617, -0.04386467002245959, 0.009237237877364263, -0.03534490761008634, 0.03470703865899659, 0.008364754195536978, 0.04126980499224089, 0.02113257641580178, 0.028522011255492943, 0.04274744533258473, -0.0016777335666829931, 0.04137968800754385, -0.03347281559086565, 0.017370515898676515, 0.04529626767484753, 0.015998075723469004, -0.033699798716527965, 0.04260828138943668, -0.004161461267306141, 0.046798912366045074, -0.020287930414766918, -0.11915613735668505, -0.0911523092821048, -0.046340471440535075, 0.15808326036729034, 0.08359714201686573, 0.10575572242503241, -0.16307600926987756, 0.015902693102970905, 0.17105993553801882, 0.07784419310351272, 0.09520899371531596, -0.14638905891597553, 0.013608200221724714, -0.1366293524338798, -0.11117175866514292, -0.06259218501342721, 0.17068439987109416, -0.05920401182841015, -0.13930246506677932, 0.13075268358852893, -0.052294373686104255, 0.11933177417893319, -0.07253676680181846, -0.0072495139069221805, -0.05288914307633182, -0.0772052112313819, -0.04194192042172856, 0.057458160756428844, 0.08607991518544669, -0.021717525041671813, -0.09837502191400811, 0.022680699138581298, -0.06742611767991998, 0.071267603141452, 0.005668921237797543, -0.07249941845699404, 0.045472940154603625, 0.04396095217513264, -0.09175506216896577, 0.022900957143226146, 0.08630483605037137, 0.062847043814119, -0.047451813126672106, -0.06927019613859355, 0.010323130336728461, 0.04061128573082701, -0.017287458194446083, -0.03503934934918509, -0.04090807234840404, -0.006049013035935816, -0.04376335533440119, -0.025154400393429793, 0.025382088125788873, 0.0429962144972329, -0.007038717749808246, -0.03853021935435482, 0.030336951347715975, -0.014949002041292979, -0.040451695986804356, -0.011339812725468554, 0.03141424020430722, -0.0349952302459724, -0.004839489380432622, 0.032453910351617384, 0.016386612178012887, -0.01585639196805519, 0.15606799973954297, -0.09763928531335285, -0.07496064251503963, -0.19285673273964435, -0.08079698952166571, -0.14020144922228073, -0.18068470300474737, 0.02077229105036328, -0.19540173002907701, -0.10462607067995008, 0.11166281085615833, 0.18285778581829817, -0.010600028983401821, -0.17506213451558889, 0.13010085294637136, 0.09491839313959548, 0.2149302748535194, 0.07685413176511212, -0.19566306574453093, 0.0775838291230531, + -0.02526238419904764, -0.0494814304391847, 0.07173751428775405, -0.09097646520725695, -0.10595430693357896, 0.11646623531979591, -0.12229604667955069, -0.12264839881453621, -0.11769068366806834, 0.10280407048651616, 0.08826982628605937, -0.06991694371594291, 0.04415127935457301, -0.019273609535899405, -0.006267894341906917, 0.031708570740380464, -0.055334352673745306, -0.07658717242750517, 0.09634045264307405, 0.11060224819942162, 0.11956042248726825, -0.09080502948229509, 0.04442488144104212, 0.04513835755166525, -0.04300046244345286, 0.03769544370569898, 0.03295449210921468, -0.02696539858439293, 0.020987377739679784, 0.013104061415170364, 0.0046815647820250255, 0.004439847701379127, 0.013557670690217119, -0.022121333983438757, -0.02848664296391551, 0.03522509408690228, 0.04050670608735538, 0.04331242913585254, 0.045018153729732335, 0.044883644411156796, -0.04555788376884698, -0.04277768906946435, 0.037247846263866784, -0.021377442700760127, -0.018374324811961405, -0.04421792295298037, 0.06198944776611363, -0.07741983581582648, -0.10519267960631794, 0.13319954857918395, -0.1737440865479504, -0.17917141054393143, -0.1765676584903507, -0.13862102943327118, 0.12290481107784888, -0.1014464086895566, 0.07894467467046083, 0.05071635116130667, 0.02025848868144491, 0.011835976090093318, -0.04649109265769409, 0.0788548053833544, -0.12267091704128466, 0.14727612756088848, 0.16122510902999548, -0.11768275161966191, 0.05524402863323426, 0.06407277002930391, -0.058057019829189795, -0.0351612051955623, -0.04950513868562042, -0.06806821167665839, -0.10113427209936565, -0.1011963659806443, -0.09683330883060093, 0.06492591777850394, 0.053090637295537986, -0.03850769506496838, 0.029108432196426844, -0.01426993007831261, -0.0013439394675413292, 0.015639877307243713, -0.033724508810228156, 0.050299827967906684, -0.0792530003615832, -0.09204880452882987, -0.09693917294610005, -0.06901250577606749, -0.02868990502634853, -0.022003280592114746, 0.013754775663465564, -0.0030129130897165045, 0.006570804834627629, -0.0159621145802837, -0.024760014033661005, -0.03184950209268432, -0.03760762835469465, -0.04003663049249791, 0.042998040987065715, -0.04405928595478843, 0.03961586914791063, 0.036773292388576434, 0.032447606069415526, 0.024271804740648946, 0.017059173734599278, -0.00935499711686293, 0.0017997915513030182, 0.004929871434247936, 0.011916605878986845, 0.011038567410595059, -0.03758713502777477, 0.06912028858554511, -0.08716616133811758, -0.10351360000112766, -0.13509047237500635, 0.1643496209315527, 0.19510563811166054, 0.20281018384410868, -0.20201544565910035, -0.1766016357718968, -0.1599871968749708, -0.13569703428011115, 0.10432620445742492, -0.06897178508629084, 0.030939802829205797, 0.011150024023013091, 0.053947048409798595, 0.09503910671550553, 0.17273124095956993, -0.28166409898169137, + 0.08783405878480276, 0.12319800042847509, -0.08490585032098963, -0.003584275137193748, -0.09010248750573957, 0.12276499632834473, -0.08256134847229853, 0.007066724570019842, 0.0923732364686081, -0.11929152176619386, -0.08007193670487028, -0.007346542384196238, 0.08916491835083715, -0.12416500542320061, 0.08509250666537434, 0.004075941836231552, -0.09012257072037481, -0.12255354919015554, 0.08367405004416162, -0.00494845225684868, -0.0915336844746725, 0.090820379422528, -0.01663853996992165, 0.01833433210319916, -0.041263095509476835, 0.03899185219519487, 0.015568383559777771, 0.01735017408001379, -0.039756926258220235, -0.03725844974234331, -0.012580536661114729, -0.02112039809722606, -0.043225362532155094, 0.03942965633986087, 0.009987174506598827, 0.02497920364621345, 0.044967361241190995, 0.03740409797172111, 0.008048454324905979, -0.02599282716029095, 0.04710312716010619, 0.0377718031612635, -0.004709462821809467, -0.022601562761262572, 0.09973265725723086, 0.1290573727591336, -0.07568985789380159, -0.06070311189218682, -0.14947330372917753, 0.15404586548338164, -0.09701664227411819, 0.040938695225836805, 0.15188395537451355, 0.15084563913708482, -0.08862317228521878, -0.027095667664660997, 0.12803296785407914, 0.14816971897024395, 0.07973529471856333, 0.039933804606113975, -0.1463093665861543, 0.16469545110461295, -0.10110302377796207, -0.01794059073396424, -0.13218071180160032, 0.11742711843056118, 0.01461621660910353, 0.06227895853849077, -0.06024554961688316, 0.03426728955403352, 0.07564604783413927, 0.07788404902212466, 0.06380929267271782, -0.012566425432715323, -0.07889191799001812, 0.08349150511888566, 0.06351666695564244, -0.005027442975668327, -0.05744567727818271, 0.07516817147031103, -0.047661646280772456, -0.014018030826906589, 0.0749621127234191, -0.09073154330768196, 0.06829506372296884, 0.005815520050822148, -0.06558905456730281, -0.06974575640641692, -0.039728417199403, -0.020659022072915596, -0.00995262780887878, 0.03860613778966481, 0.04545173669471107, -0.025239254351298233, 0.008080164335010468, 0.03696084285192481, 0.04408556249352086, 0.022468767021723852, 0.011300097854556665, -0.038504025808126154, 0.03913666493233092, 0.01924046682035662, -0.011985150522869912, -0.03399633589883981, -0.039380962179030025, 0.022311451102919523, 0.008310065865726185, -0.028929309879809025, -0.03177569467610037, -0.00677804828380673, -0.11784661101159206, 0.1617007268482149, -0.09798615057241783, 0.06912440914374272, 0.17766602936126866, -0.1831436724545549, -0.0973439255877271, 0.05781416881479922, -0.17864251093088823, -0.18176122328737704, -0.09132858225346133, 0.0564213896105426, -0.16965145218131386, 0.17929003230582122, -0.07989508821576474, -0.07293183939533125, -0.19348912197034757, -0.20729374889766877, -0.14052063518605884, -0.09144139228089768, + 0.12017627318942097, -0.053595794179159696, 0.09641326680739223, 0.09590445112916239, 0.05382951266311262, 0.1195265788528258, -0.0018490312047329711, 0.12044953038321185, -0.05047517687714365, 0.09713804302678564, -0.0894936822620527, 0.057371285526282886, 0.1177881730032744, -0.013544802598522487, -0.1231770603048268, -0.03963430941094279, 0.10459759960352516, -0.08511524354776041, 0.06893335823799825, -0.11477938803499316, -0.018435723075060192, -0.09126984649074084, -0.02675974308199293, -0.029496879045446636, -0.03875038636946574, 0.012027881247048101, -0.04228646283716452, -0.00669165350388703, 0.038456466380017255, -0.024500968873748086, -0.027658515863345935, -0.0396382451526293, -0.011915594974601984, -0.04517318492144918, 0.010726638025761338, -0.04115286811981205, 0.028782474346120582, 0.02803942956591192, -0.04066069820892465, -0.010318229368133404, -0.047184704946073214, 0.013294383058541857, -0.04255971513501601, -0.0242038456459607, 0.12386875877490183, -0.06613957443471552, 0.08645699069022886, 0.1536882324868576, 0.010873369168460186, 0.1676424856118552, 0.02853310239701983, 0.1663554985503854, -0.10104542055113103, -0.10999336079463587, -0.1277813339276335, 0.05471943715096914, 0.15092505383173013, -0.01728459934468274, -0.1441283127188845, -0.08835563127839466, 0.12340486360809784, 0.14116103085365153, -0.07506250021710652, -0.1611898448161858, -0.009391993021473737, -0.11877825586536259, -0.07052201547002325, -0.010685268468617408, -0.058857732618535344, 0.07701717800530172, -0.0029594254618835634, -0.08711897886183927, 0.007087372924070929, 0.09667315421114243, -0.047484583498051354, 0.0713885755776332, -0.05790611351778086, 0.04689360742506966, 0.0734332595966803, 0.00043168108756277447, -0.07421760722089162, -0.043016829480099945, 0.07088024454519284, 0.07166434654670033, -0.053699137406096734, 0.08791704318777674, 0.020082116185328652, -0.07177282365631948, -0.01205977160156215, 0.04087936474201208, 0.0063978640675868914, -0.043870244909461245, 0.02509553378565478, -0.03275906591089241, 0.03645473727156677, 0.017942903807577053, -0.0437634079555243, 0.003398399116881573, -0.04208886152733268, -0.02371815031624594, 0.028566826100307592, -0.03514140566293035, -0.011969050418992306, 0.03937473999426303, 0.0009433607343298485, 0.03945756535219456, 0.014623781177087292, -0.02463666563545705, 0.030368952998191097, 0.0011124515112500054, 0.15763797487295875, 0.08178461897540046, -0.10526606743019593, 0.1874169334622698, 0.004656214580774301, 0.19479959426943216, -0.05790571255822153, -0.1786215566573529, -0.12858123074285208, -0.11797819326816483, 0.1735528668005329, 0.033629469544948234, 0.19166106894216506, 0.06313941383696609, -0.15953940368099828, -0.1512608490197633, -0.12846984030584332, 0.18688754620188397, 0.09873211455643931, 0.1887910101610847, + 0.042028976244964524, -0.07932982042076785, -0.10819894045526546, -0.12444938665491741, 0.12621728798807907, 0.11282262190148806, 0.08475774371252127, -0.04565774036161117, 0.0005911987834952498, -0.045055549322969665, 0.08369353153984618, 0.1132451921737434, 0.13660444322759832, 0.13444065573052286, 0.11665732217330613, 0.0836565206822469, 0.04119729300550977, 0.0068852858150288965, 0.05490957538840469, -0.09664656634951929, 0.12715469452599937, 0.10747085774144613, 0.05946154644660398, -0.06387446667388581, -0.059399023739676635, -0.050654881349663367, 0.03752047777809895, 0.019970643891406948, -0.0006872483921695309, 0.021710542444985267, -0.039826591488108715, -0.0570874321386681, 0.06504679155775277, 0.06606726896751579, -0.06327612630303196, -0.0494874011682036, 0.02977249839813324, -0.0064766783194917564, -0.01811188397182603, 0.04025993358614355, 0.059200607457715694, -0.07444127842087446, -0.08041814878889048, -0.0579708663285809, 0.016372015670960707, -0.05425843637997453, -0.07509761759093855, -0.11250763330133401, 0.14373931337027065, 0.16814589302175612, 0.13606970266504062, -0.0907643840753558, 0.03571900896195257, 0.0188037633612336, 0.06614423839522052, 0.10499772142447142, 0.1282976214529864, -0.14089859754309272, 0.13785701278172846, 0.12478423220745419, 0.07819282527604911, 0.024878167897457303, -0.036250253272029, -0.0900477019793466, 0.1307178593811108, 0.11532704932422808, 0.059821876239898236, -0.07099907237740176, -0.05347940477227467, 0.0666781628951995, -0.09777945219271288, 0.14281695328024166, -0.11323966528978417, 0.07176784917582946, -0.02166946647565514, 0.029464338437966912, -0.06765990674743029, -0.09679298770384034, -0.1018085180008813, -0.11661931474938562, -0.12206432493817493, -0.1280663948867443, -0.0847222404770528, -0.03340035966280907, 0.030101450938484556, -0.08413541494938767, 0.1257074576569858, -0.11760290873759054, 0.07103628226592466, -0.08183069812334051, -0.0806861015642815, -0.07906461737416924, 0.0755423540618049, 0.06422612947506258, -0.041150211003296674, 0.010349550529547658, 0.022275123810356512, -0.05435751971639737, -0.07938361912180936, -0.09981255373326993, -0.1254637482458213, 0.13574417107808137, -0.1351687932939398, 0.12183987939758173, -0.06865322219260381, 0.00040583821375003715, 0.08175360618888892, 0.16646768975782386, -0.2648767970318958, 0.28954703150684136, 0.07236420611518123, 0.0629789751022819, 0.042342647469297036, -0.01692318886117406, -0.0024373435145990693, -0.022171203123034517, 0.034802616976146644, -0.0412296104754283, -0.03978437315483521, 0.03712513677080879, -0.029721512939744107, 0.020939606080325905, 0.011990160589437884, 0.002870534247354189, -0.006296880113097425, -0.015117586956412597, 0.017456645308442157, -0.013902365187308497, 0.006682845434570751, 0.002831331051314319, + -0.07475956763255774, 0.1193629619379824, 0.11643032052062989, 0.0663937777067543, 0.010776606602982396, 0.0834267863257821, 0.12085101837598068, -0.1076362840343875, 0.049142333627374996, -0.027957590540961356, 0.09222934305761092, 0.11968667866096629, 0.10603418179399884, 0.04143073817186586, -0.03966822912683483, -0.10437077500884612, -0.12635015568867666, 0.09486386030088652, 0.02357687275681701, 0.05536775010890084, -0.11234972325472771, -0.09295843310320652, 0.014767417899596565, -0.06626922363988638, -0.08848349726213396, -0.07953946158293894, 0.04045220231755033, -0.015463150738908945, -0.062488828814612325, 0.08456127207203228, -0.07111648056802189, -0.034137277361077065, -0.01757841119579527, -0.06248986140414767, 0.0854033859029737, 0.06872445154770462, -0.023893244028309207, -0.030380861354272048, 0.071534877982864, -0.08254240245240249, -0.060263965523724615, 0.019715859160157317, -0.03033027083173244, -0.050011966798685636, -0.08294340204729943, 0.1126890113771569, 0.08294293129589438, 0.021858469693993573, 0.03369356656344144, 0.08008219069995193, 0.07388350805549511, -0.039826359268937565, -0.009669394227656477, 0.06035643790705226, 0.07743897714131606, 0.06195015948837902, 0.01906121539515779, 0.03078003097602899, -0.06851204328526866, -0.08045240498722689, -0.04815163592226804, 0.002122393323108481, 0.05687649979640324, 0.09009281080988193, -0.08278598138956385, -0.032045269137046105, 0.18726979868543617, -0.3095767269665914, -0.22093674779334474, 0.061395823969879984, -0.0038533233463070443, -0.06345811404609583, 0.06985980544353942, -0.05240821632357266, 0.013360398515900955, -0.03161865150904314, 0.05463587008150803, 0.054435069464967296, 0.023880669814150164, -0.010544037780225342, -0.04145286401540163, -0.059218776143060044, -0.0377078735326654, -0.001946344602265452, 0.04078529054802843, -0.0680422790339678, 0.06398435021853484, -0.027652791021163615, -0.09733063009446358, 0.17521035073883817, 0.17574842723408754, 0.11941771995147635, -0.030341632942085656, 0.07117854329451173, -0.1351260886297637, 0.13752169765552127, -0.07643369417905488, -0.014345224906761557, -0.09856234334536662, -0.1484264541017113, -0.1619685413489711, 0.10811057080109215, -0.014667232739890526, -0.08031534712186984, 0.1276022689467133, 0.10853529028591656, 0.03520926739317194, -0.03130824248699082, 0.095768131669057, -0.10393437095447527, 0.08785224584964618, 0.1773240239235871, 0.17474049210755072, -0.12236355181804483, 0.05269773246025264, -0.0381679152846007, 0.10121188899293286, -0.11856821449484396, -0.0795580086773987, 0.01255366405500022, 0.0586987538881494, -0.11081011253768236, -0.12933422902686895, -0.10713720661060103, -0.0501612084295541, 0.017104346876444798, -0.07145088579557374, 0.08147932814633747, -0.050177973544784975, -0.02492776390953237, + -0.12281450980011671, -0.019555336580469915, -0.12008247528013731, 0.03871502004603084, -0.11421548185457023, 0.0572079497404959, 0.1042453507421574, 0.07451988875604215, -0.09166587191988763, 0.08625673486310884, -0.07385503355220281, 0.09826440170668282, 0.06389476792236931, -0.11374529190448342, -0.04527793038216625, 0.1219980167517415, 0.02602187755123037, 0.12665042322991427, 0.004519537283502495, 0.12477409508935951, 0.015340245885696362, 0.09073764310451644, -0.08483556094432382, 0.028863815376078517, -0.08703756146131264, -0.01978751978970981, -0.0868649998829885, -0.005792255863479392, 0.08545281493200536, 0.006375900530784118, -0.08406827535739345, 0.013789764502207914, -0.07973470933414396, 0.026266260896380334, -0.07650871319687172, 0.04292410521759802, -0.0692297242573613, -0.05326079177319847, 0.059814418006407785, 0.06313171150565702, 0.05066539628210548, 0.06444723225833052, 0.041927498391516244, -0.05066427652749259, -0.1113527296521274, -0.036755028408056306, -0.09343273703783193, 0.05264065827140453, -0.06414606218815298, 0.06546437240899422, 0.034753697528024756, 0.07297576969926158, -0.022498841291262953, -0.07694474052371858, 0.0023059315217190245, 0.07694828940183294, -0.017250881216405917, 0.07446356457239914, 0.029245676933409827, 0.0688974420204316, -0.0507042060455681, -0.05934504589330956, 0.0697346668465638, 0.047793417819114406, 0.08187550446487687, 0.02664458003066374, -0.33455624491927133, -0.03898016361901187, -0.25735669807766554, -0.030261994955462425, 0.09440853965186319, 0.045887285594534324, -0.04944840764931706, -0.05166706748303833, 0.038979607990461136, -0.05328514668035167, 0.014591898583505713, -0.05624178804633803, 0.0034860281802241736, 0.05491899308515698, -0.011568914594252931, -0.051350656343624186, 0.03333999213031181, 0.043748366180862266, -0.05164940515366514, 0.035208893294638104, 0.06206786136258026, -0.020723868361963806, -0.18861095406954537, -0.011584302754246534, -0.17500702759493666, 0.03028308405157142, -0.15401945121302354, 0.05471230624131453, -0.1365389610661438, -0.07927837484629109, 0.12163308746163232, 0.09548327960017633, 0.10232709147081404, -0.11013646251941309, -0.0987225024203683, -0.12927747461669797, 0.0792362813778863, 0.13205187174583152, -0.03994212684126661, 0.14004300352427734, 0.006333993414342138, -0.11992704398339693, -0.0019334542660020275, 0.07812368053854478, -0.2019821105577845, -0.0028285243295625186, 0.17691782803032252, 0.0068424562513692755, -0.141520163218341, 0.02806448014200449, -0.12164219772705824, -0.0483804604141084, -0.11182686210484577, -0.05979383120739953, 0.09730992105866515, 0.07266412390135223, 0.09012456342365717, -0.08282222255453218, -0.07983707562859078, 0.07969631930547968, -0.047792961968063916, -0.09161546252541368, 0.02684357475774182, -0.05345818747904762, + -0.057954358045578865, -0.10233168960901495, 0.12283128396128246, -0.11466148357298932, -0.07896007375666367, 0.024797328097155572, 0.03494568694540741, 0.0864694429241779, 0.11760313077746701, -0.11642254701223398, -0.09309798248784304, 0.04770669869918486, 0.011611122936561207, -0.0694357685629879, 0.11076493019181036, -0.12744232241507186, 0.11305014706558636, 0.07196392893052445, -0.01445459032940683, 0.04543400703067755, 0.09495121788919217, -0.0899328389667427, 0.07525864551600656, 0.09114098179442218, -0.08374301609979384, 0.053157788825573045, 0.014111527828289394, 0.028556018041429924, -0.06438268728757435, -0.08316706432724151, -0.0823333254708744, 0.05634571800195655, 0.02168201937590658, 0.018261547695770725, 0.05266985099026293, -0.077680281993808, -0.0845092508979946, -0.07012908023583186, -0.040273857197017, -0.0011451819150633605, -0.0401058296070564, -0.06819477943168936, 0.07961226001893276, -0.05133138938543379, -0.03515605870366664, -0.08204149912994865, 0.09995106071666215, -0.08631091186123471, -0.07576135634408623, 0.04828968347816621, -0.02116512767158249, 0.01715268813498326, 0.05068903610809058, 0.06594648697850883, -0.07732771407176525, 0.07033584806883934, -0.049070772303190846, -0.014827225095365834, 0.02310243032298782, -0.05184218725001188, 0.07516456704999656, -0.08113096185607226, 0.07876707179864005, -0.05384338761056991, -0.012726027196437586, -0.022744197367547826, 0.1669258896481609, 0.2813053478173275, -0.27222087251287463, -0.0942327006255524, -0.06807542155561348, -0.02550496104133952, 0.003630675686621329, 0.035404540880168714, 0.05785665506302742, -0.05477259904600399, -0.0557990793784857, 0.04334321493474118, -0.028254935188388206, 0.0025738125290186344, 0.024060369001654133, -0.039106692814188, 0.05426678732078498, -0.057250674471858956, 0.058879618119635546, 0.0417934404609819, 0.011139887901724366, -0.01654185977834484, -0.09737011506549463, -0.16144193977434707, 0.17734651572927793, -0.14326266162313134, -0.09313553150202006, 0.021278384650459996, -0.051984160348457153, -0.11276206241629037, -0.14743210434689652, -0.14058174272198234, 0.10835947307362785, -0.04967402590620536, -0.025406841046266386, -0.09575653415889968, -0.1429261187334261, -0.1438303851644397, -0.1240538789464379, 0.07734084693727854, -0.017884617908522343, -0.038959831935552726, -0.09010452476784747, -0.07017696917727577, 0.11498043014862123, -0.17877655135870402, 0.17931567529167008, 0.11864066868414075, 0.0677882031198148, -0.00044571903787806594, 0.060819928184627677, 0.10581575667402499, -0.12628212372821948, -0.107382316746501, -0.07294628215103767, -0.020284191919020686, -0.03765856523386531, 0.0865014446818049, -0.1146067504599674, 0.09769205489675312, 0.07463930932309212, 0.03690800548360452, -0.010375657136836204, 0.07120276849406916, + 0.06018876322584865, 0.1050818587265691, -0.1233611411421352, 0.11042150056122257, 0.0687682581632731, -0.009688578153717363, -0.05164593550539215, -0.09978673334386794, -0.12244178126537925, 0.10889135675021633, 0.07256303168203716, -0.017517350122890574, -0.04266061629837998, 0.09526909924406655, -0.12349639813500125, 0.12172090188808288, -0.08800308307011641, -0.03171582132379289, -0.03305700698486352, -0.08781779296047329, -0.12012344442163746, 0.08953226072272331, 0.004537448940464832, 0.04882070500395329, -0.07869978428555938, 0.08766025229427733, 0.07845763457200887, -0.04951082025408726, 0.010848545297280647, -0.031877914815460796, -0.06632104704055336, 0.0799433220156786, 0.07887579989362067, -0.05753181410352393, -0.01854588148612064, -0.024282787972445805, -0.06082216147019097, -0.08059412258998412, -0.08137554960811817, -0.06162528533922865, 0.02835696646944151, -0.010833694175624034, 0.04815820480122115, -0.05235108859640156, 0.07417613715050785, 0.10704826778549922, -0.10318424937779559, 0.05576310746655519, 0.01661148245622541, 0.02868451851791487, -0.06639260012867651, -0.07838340571997474, -0.07019284791133418, -0.03183372327240294, -0.006502452986403223, 0.04335277339369582, -0.07074058131369175, -0.07780743163103467, -0.06514776662742287, 0.030326562708730187, 0.011257049279754275, -0.04913320748803114, 0.08453275869478773, -0.08891929437257176, -0.06733958359430979, 0.0192148976388804, 0.15956510969499338, 0.28047891739406905, -0.27249706346866576, -0.08429088138469201, -0.047682604969471146, 0.004323398972197622, 0.04385351780164933, 0.06373549534108353, 0.06692174052938757, -0.0362351944176597, -0.010438667461018729, -0.018333308282656627, 0.04669391722406086, -0.0552928050690583, 0.04982896113232482, -0.02336214759446343, -0.0063062223153014085, 0.03333154193216415, -0.06313329518282648, -0.06627730249249245, -0.049055849734020954, -0.012787615936936447, 0.08821799424415334, 0.15799176945777468, -0.17720543411130493, 0.14313332649489338, 0.09018804309456065, -0.014376542936289066, 0.061576875731504985, 0.12134839675161703, 0.1506525857977164, 0.13430962101600605, -0.09109843460246601, 0.023637895552681643, 0.05235196493923298, 0.11833552225991516, 0.15352391811064758, 0.13674037415959545, 0.09742875601675718, -0.03524819867482795, -0.04084709421308741, 0.09204949053678421, 0.11929351594655553, 0.06493028199580876, 0.08512719585654716, -0.1631877943249933, 0.17813268392565632, 0.13365373674708383, 0.0929658270365966, -0.02856116183635686, 0.0349366889949059, 0.08973879482726953, -0.12194496703178842, -0.11427170087475157, -0.08757535114787682, -0.03739739462983301, -0.02308602437446324, 0.07744164306022712, -0.11162279145541196, 0.09946459249305867, 0.07909858464338515, 0.0416406786838968, -0.0061461455155055866, 0.06882315217702113, + 0.12299461316213389, 0.014502474236456658, 0.12165851439479948, -0.028939709157502696, 0.1185343554352071, -0.04326306074070025, -0.11267243256145298, -0.05732442617078843, 0.10530951904108711, -0.06609501121466138, 0.09412815530851024, -0.0773227457409217, -0.08915837321276865, 0.09476732552218063, 0.07736569763386056, -0.10530915532597075, -0.0647779637122173, -0.11377785774769768, -0.05087518221738767, -0.11677633669585036, 0.03762621344524458, -0.0894845345808573, -0.08018573828809122, -0.04952980591774354, -0.072152332846139, 0.0589346887425746, -0.0612773985832579, 0.06694737066512944, 0.048168385968273546, 0.07335892088982558, -0.03880645855856187, 0.07671336361807213, -0.024612447633121773, 0.07983550419290748, -0.019477214698201156, 0.08350848021977864, -0.00921646469384738, -0.08374219984881416, -0.0032065128865352644, 0.08307795556119738, -0.01567269824476217, 0.07683836475304362, -0.02508814659855565, -0.05388346977974409, 0.11356905459991846, -0.009619845008547907, 0.10294824366447264, 0.016331594217461307, 0.08616563098591809, 0.007778212029888454, -0.0782996684304581, 0.007673679101918943, 0.07766418994678442, -0.013466512125238977, 0.07695520592133653, 0.003920594337972438, -0.07792198037744649, -0.0028483691686636524, 0.07807250239805061, -0.00618086372846242, -0.0810657272163444, 0.015419298264246286, 0.08683508860470052, -0.014135017618646861, 0.0898324966168247, -0.015834305876023393, -0.33419376206393203, -0.04052953100856858, -0.25809902256427675, -0.008141203018339517, 0.10086737181884882, 0.016308572860444015, -0.06878922072925064, -0.01377675877776532, 0.06458861346087315, -0.004456753521624628, 0.05656378396187702, -0.011671389106334805, -0.054999924043179965, 0.007876207177030952, 0.05491655803624964, -0.0052294829989483205, -0.05734182342079714, 0.012270788975285628, 0.06420376204468206, 0.0075308579580862876, -0.06844167294573918, -0.009053533250231179, 0.1884128014110405, 0.018154174644526927, 0.174607309140246, -0.029934142235573006, 0.15495268290417444, -0.04806651906378231, 0.14073384816100623, 0.06752275227541486, -0.13078809144731696, -0.07892776832036227, -0.11793315997958843, 0.09054713508105049, 0.11901137772273693, 0.10906503390768432, -0.10673771895658174, -0.11131353220106525, 0.07859773797729373, -0.12487898898931478, -0.06219182906287318, 0.10223777550219451, -0.0655215470941406, -0.06023170305713657, -0.20180799702097818, 0.027211940346187402, 0.17356952119838992, 0.039821734841002696, -0.13456889054050078, 0.05518786517571978, -0.11073324706273154, -0.07058728939139546, -0.09946744595290916, -0.07789503737266609, 0.08453976137804499, 0.08581972043526688, 0.07957025118163635, -0.09135306885545931, -0.07214809824641598, 0.08480441504226809, -0.04158022046316933, -0.09333064263472782, 0.02287787848261954, -0.05482287818493194, + 0.07271978297587293, -0.11790877359550603, -0.11907490514020097, -0.07498134473415742, 0.0021264903925954474, -0.07145363447007388, -0.11658913449138893, 0.11575596598761172, -0.06906313384920171, 0.0016325439605142586, -0.0711295335286624, -0.11408254994211418, -0.12051788897562496, -0.07220652495397588, 0.003398263170535776, 0.07793283664064725, 0.12228895929084463, -0.11796610302443843, -0.06766303437822226, -0.006036548841492415, 0.0781983802140156, 0.09021384286151028, 0.08160113825930312, -0.09210182570340196, -0.06581117155631779, -0.01513950918628748, -0.0388542920560586, -0.07851466972465657, -0.08230229838439337, 0.05398593172351089, -0.004484577753266953, 0.04746538850265134, -0.078474178527906, -0.080256205982413, 0.056123673948914286, 0.0072365328028350835, 0.0442674088370912, -0.07803225700534014, 0.0788941279979211, -0.048588886133905045, 0.0018529388602659923, -0.0485564631569511, -0.0772916394018815, -0.05739815932546639, 0.04608722431012119, -0.09799890816541905, -0.09760989528964727, -0.07642966624865513, 0.03973075264122483, -0.012530273287407127, -0.051543693477994534, 0.0761939937564189, -0.07140823204608183, 0.05427104618472556, 0.011708493078997788, -0.035716357210360226, -0.06849992447286402, 0.07731658521141266, -0.05691208398843397, -0.018601636646017636, 0.03183986497079334, 0.06951079270619515, 0.08484991671256846, 0.07916445710902084, -0.037887864708900765, 0.011857393714255511, 0.19434336518777925, -0.3098297474288391, -0.22165162188084608, 0.07783051903528915, -0.030058905495298965, -0.03146826696501088, 0.05649167279454421, -0.06685666352998856, 0.050133133099178155, 0.02891318178082556, 0.005413001808571795, 0.03787683253397106, 0.05121527391042958, 0.055560910770457245, 0.040399761489312125, 0.01631940002750595, -0.02045430885618768, -0.04807857718930842, -0.06080456956257601, 0.06172011293314114, -0.03382108106936342, -0.0036491567230285647, 0.10677870197132167, -0.17838138073570275, -0.17592128618894376, -0.12085365763410212, 0.03546993235680336, -0.0634839404531842, 0.1301133385726023, -0.14073493148697266, 0.08982287950030053, -0.00691445613350327, 0.07822198190612659, 0.138250474360746, 0.1680410667718994, -0.13196757812585835, 0.050560403373601556, 0.04511769477200846, -0.11562802760625937, -0.12859988338444064, -0.08727216332078228, -0.045011702081649306, -0.013142331790925483, 0.04655919041159909, 0.11959597496190996, 0.19204855374247715, 0.1721076046866778, -0.10144432945139215, 0.024232786707198382, -0.06335407282224742, 0.11200338095286251, -0.11182457137408684, -0.061246334927107696, -0.01034959037188706, 0.07669462863979788, -0.11964903359474997, -0.12932856521042238, -0.10159925683610832, -0.043482774365798574, 0.02206685126261925, -0.07178210571033412, 0.07871843379915208, -0.04729970455932411, -0.023154375396668862, + -0.044413280313944224, 0.08318491867608005, 0.11190215624922333, 0.12595625017477866, -0.12352014719468252, -0.1044613261081907, -0.0703312139393971, 0.026016972070760883, 0.0220457458927382, 0.06877524996882257, -0.1039785709877537, -0.12632708722288652, -0.14003435624317778, -0.12545988232948085, -0.09455702883590682, -0.04988560118806347, 0.0009596442281078268, -0.05177766026146513, -0.0964236730991731, 0.12943375987500708, -0.14527392592563898, -0.10713429604307532, -0.001195450397491889, -0.04673019611552108, -0.08625531303972467, -0.1213989633532501, 0.14192503903813333, 0.14433629673562573, 0.11834074581260969, -0.07516594686151121, 0.021282812218590734, -0.034778669619745455, 0.0839521538543396, 0.1231028351634337, -0.15313239118612473, -0.1544418682803892, 0.13486258775982668, -0.09644264813024038, 0.04068368257864509, 0.02080283236269282, 0.08276326929697739, -0.1361409333888088, -0.17132239632740281, -0.13792454507537513, -0.024286837676289676, -0.009881059410716209, -0.0379587098554073, -0.08038137319798981, 0.11423122920345698, 0.14142513220389205, 0.11842190976471624, -0.08260067552168769, 0.036623632365777835, 0.00872585440700496, 0.04951148084873287, 0.08325443360221726, 0.10346780604453643, -0.1135482203157353, 0.10936619083095453, 0.09577178222269601, 0.0548307518014184, 0.008576015792215976, -0.04347128817904724, -0.08904791794829335, 0.11992174902777544, 0.09993576372402188, 0.02233534887677391, -0.00575648291111157, 0.00954814277461143, -0.07089133315006879, 0.12174743182172128, -0.18977589601822817, 0.1542329282971586, -0.1009963046150889, 0.034010059223123765, -0.03367241209985549, 0.08515654694812447, 0.12403501153358368, 0.13020572912123157, 0.1470149794844147, 0.1498239821938119, 0.1515018317065151, 0.09212180510790872, 0.023235908593315015, -0.060190812419699764, 0.13229592696464595, -0.1818223299790197, 0.16037862068818565, -0.06265732887880814, 0.043729581013872504, 0.019387282137917676, -0.009290374403039611, 0.03497943859244761, 0.05668285774589692, -0.0659524429591173, 0.06271517845587846, -0.04757287183323214, 0.027977206363966875, 0.004557432207956174, -0.019441491660575207, -0.044293319448385576, 0.06290661583470375, -0.07543390871932176, 0.07924761206615492, -0.05617460797801845, -0.019190120122469283, 0.02735208048421604, 0.07188974102425058, -0.12203088266476605, 0.13527713287048282, 0.03558679032827614, 0.03242727819911545, 0.02284577086871215, -0.010894181931975708, 0.0018319436310096767, -0.007628444000760337, 0.01429751432663282, -0.01828349016462623, -0.018515231904603587, 0.017950909508203817, -0.014817565036912485, 0.010783660188530626, 0.006504560790116574, 0.002034538841357186, -0.0025070853449857514, -0.006830144969659515, 0.008125168944492502, -0.006563141837792833, 0.003188607546317946, 0.0013608429128116354, + -0.12071297850545717, 0.04894769891769355, -0.10102877963109953, -0.08925253182079326, -0.06503073206636809, -0.1151990533840587, 0.019528468679840066, -0.12305126754624307, 0.028996193505584265, -0.11148294445653192, 0.0694850813880265, -0.08357341301049134, -0.10785816320843879, 0.048058390741931745, 0.12662223921839455, 0.0013566683402863931, -0.125130659657797, 0.05062082739890975, -0.10699863285660859, 0.09400177658961359, 0.07000230197096252, 0.09125539443636592, -0.13359023382844817, 0.09738498724088589, -0.0917002484007561, -0.14619849461003448, -0.03115833182588539, -0.1601822746314603, -0.024607687799722902, -0.15337718994012597, 0.08502776923905131, -0.1154000698148584, 0.12358869683088745, -0.0651223844781602, 0.15270839820984175, -0.012197904443341609, 0.1570324610710221, -0.05098289648293718, -0.1397376808435082, 0.10580817977241982, -0.10451655012507295, 0.1458711603454955, -0.04782320614088447, -0.12046703362997782, 0.06957136821159722, -0.07730712652736096, 0.036514926699474044, 0.13117197099374814, -0.015595706782493581, 0.13174475309123665, 0.03877391639725331, 0.12318865170919314, -0.08719658724969317, -0.07699000276733174, -0.10191225970700687, 0.03696332022988319, 0.11612236118639617, -0.013728617955951882, -0.11125836802893128, -0.0642426179962156, 0.09920972133910373, 0.10286153886600459, -0.06954813125121885, -0.12258460024069125, -0.025271377085982608, -0.09578440998017854, 0.021692355611748267, -0.04337606304997054, 0.0058394302624138845, -0.15008947757343846, 0.04299035323502293, 0.15009991709087953, -0.03543234753292627, -0.1530454820927017, 0.0924975626091799, -0.1034442745533741, 0.10108506629674457, -0.06455855541492883, -0.12045156038200949, -0.007875494218502364, 0.11870712180563754, 0.07095944580600268, -0.11585088172059929, -0.11314354589517828, 0.09467715783215253, -0.14079170843438454, -0.04728159684921933, 0.11903096645993644, 0.06953279238986816, -0.08959662266669094, 0.029780633733600802, 0.11982116558856849, -0.0207348762598175, 0.11189762946306084, -0.057740248811976036, -0.09178814545605667, 0.09144186991446432, 0.052610260227430726, 0.11059260624120826, -0.004388370371935377, -0.11365139845722774, 0.03739298291668951, 0.09667982194251139, -0.07823800355105613, -0.0787799387669693, -0.10325680676375426, 0.056447653489627, 0.12196854733909485, -0.0029660661830890767, -0.0779506841181941, 0.015559031997405659, 0.029166910405523674, -0.0030544540264746843, 0.04283585974372782, -0.014143304426437284, 0.037884410538423965, -0.02349965596179578, -0.03031684034317764, -0.034253180839126304, -0.014723874157865307, 0.03897503883606227, -0.0027476924427512913, 0.03782857262683477, 0.020249026825248418, -0.02845313816288883, -0.034393512433123954, -0.022831631421655566, 0.03974508937391919, 0.01717800262281167, 0.03703853140701949, + -0.08602972095547518, -0.12318121688062951, 0.09030140822135659, -0.006612508669424446, 0.08104503182927433, -0.12260957140355609, 0.09493454096835463, 0.01320649744367459, -0.07590786564245344, 0.11949934146703542, 0.10020064995549674, -0.02364258458974534, -0.067201201953144, 0.12495455756023197, -0.11168780711676865, 0.036070401851676766, 0.05969797163620255, 0.1217744695749424, -0.11706857020619733, -0.045163619847914935, 0.05357858169664995, -0.08992223504996394, 0.13161524904119512, 0.14618598896411586, -0.07619703772613412, -0.045626873608350826, -0.13883817970011564, 0.15429564296746884, -0.08903200432582146, 0.03193698734073159, 0.134352363740775, -0.15249545880828613, -0.0949067647732821, -0.017194486270944668, -0.1178897717424913, 0.15827551399818202, 0.10901151904944559, -0.002938332546982625, -0.11446867272907757, -0.1610526664657808, 0.12438829905812777, 0.016707896572320104, 0.10395638358704598, -0.11827965730719267, 0.09213236282171115, 0.08274683905369098, -0.025451443318330286, -0.07375636886972246, -0.1299471621346565, 0.11573982978702597, -0.0604639538552338, 0.04519057700925992, 0.12325083799454208, 0.11347386864475088, -0.06145427086855715, -0.025916814329547965, 0.09979615173658468, 0.11362124139869441, 0.06284965064298019, 0.026672626690154484, -0.10866257510288929, 0.1283892967406246, -0.0889064098293971, 0.0008677515752662313, -0.09261795192672298, 0.09385856346253102, -0.04586149221210237, -0.03066953016091779, -0.0001878037444562261, -0.09925944526864536, -0.1525253451315486, -0.12738671609890712, -0.08593839465052555, 0.04052790433201794, 0.13996646426654047, -0.13207616668756475, -0.09064357760774906, -0.00323728754324991, 0.09880829660604817, -0.12059519987014392, 0.0733076831387731, 0.024184267853461353, -0.12042790940139213, 0.1476248720691858, -0.11789136702845421, -0.02049615712005298, 0.09770988729532108, 0.11468256411101624, 0.10095259109319217, 0.08587560715761043, -0.021123269229202914, -0.06818203440907587, -0.117441847957351, 0.10039610602429677, 0.03153094649919014, -0.057258236735078405, -0.11400037174572963, -0.10096926289069925, 0.03579656560380999, 0.05082454970472113, -0.1042094578098537, -0.10549591498729119, -0.04665669162278644, 0.039121292117047936, 0.10764608138756394, -0.11747994997528634, 0.0776927528781302, 0.007121057666885975, 0.09596017152873816, 0.07462220520482624, -0.03063886480477033, 0.021681902544300108, -0.0007338140147486079, 0.02918097558540596, 0.043074744386068176, -0.03293611050086433, -0.008299398841465778, 0.02282709178830189, -0.04114285192770287, -0.03310879578124552, -0.009147811186076448, 0.02046243322209717, -0.03806878991681314, 0.033593785702844436, -0.009714204247269176, -0.019788513199191584, -0.04126246819443998, -0.041166891820328136, -0.02571743971965801, -0.01968389679121247, + 0.027748865294585465, 0.05410445753515229, -0.07782991671562287, 0.0975937726390052, 0.1119164966144298, -0.12052958438893262, 0.12323658378300423, 0.11932831401955145, 0.10920227458547485, -0.08881898193548401, -0.06800580480573976, 0.04360422845571447, -0.01430392772219485, -0.01500034677899089, 0.04340639729599465, -0.07018640097880213, 0.09254799613192372, 0.11008144275348167, -0.12425985457212367, -0.13048426049627698, -0.12917231077908164, 0.0891105687738934, -0.006891898635995278, 0.0273617834885811, -0.058713797582016405, 0.08752082482030556, 0.11514620763942122, -0.13779455686808026, 0.15769592066677895, 0.16329881155468243, 0.16034274839511953, -0.13832131125304972, -0.11977478963348605, 0.09486470295059252, 0.06007646797418046, -0.025383951785492156, 0.010441983770538944, 0.0451981925950017, 0.07874633495823583, 0.10828405680941489, -0.1402269733342448, -0.15843487451670146, 0.1658600601857867, -0.11729173963768298, 0.027855494798956094, 0.006606204424947092, 0.013269890175544276, -0.038588562997786284, -0.06635062701481528, 0.09421970197121611, -0.12922911462265305, -0.13738225702869686, -0.13808982901494607, -0.11003605473365184, 0.09854262952579683, -0.08157600912908032, 0.06304416008598537, 0.03938086511340388, 0.013623262768837734, 0.013131237351031609, -0.042096560566803505, 0.06867053457387878, -0.10437418523068212, 0.12306705872857916, 0.13165314879728812, -0.09324454572254018, 0.02649284981877299, 0.017271055365102463, -0.006360228705742611, 0.029291928516631947, 0.06275097943272281, 0.10325821045451689, 0.16190670203715055, 0.16718878019945266, 0.16352659239694964, -0.11221931256294412, -0.09423244297214445, 0.07056124368062835, -0.05583916033642965, 0.030102127185417566, -0.0025319425331922435, -0.023843934613636028, 0.05613938068838522, -0.08534364184693057, 0.13485849033929678, 0.15571538023529338, 0.16173996097238943, 0.11251783426346114, 0.03425915014347607, 0.011334348980959662, 0.011254117399690832, -0.036458764520174027, -0.06121380503304325, 0.08330930705287454, 0.10266028810850966, 0.11372617622022707, 0.11903801033079309, 0.11234211023655934, -0.10621287286719257, 0.09429278823182619, -0.06964311479571282, -0.04734899751573915, -0.02290756780110162, 0.003544576837011834, 0.030457468895574956, -0.0559677382879783, 0.09459970102146777, -0.11397158758374161, -0.1242258202779232, -0.07359749694067699, 0.01539188501014631, -0.00893234788330597, 0.001987084306814317, -0.007972594992818582, -0.01735335778193657, 0.026423828307647945, 0.03511587709942236, 0.03950048273162195, -0.041876749326659725, -0.03889333228894363, -0.03745623139128733, -0.033910592098273636, 0.02829555141637246, -0.02133268938722469, 0.013332696456158583, -0.0030432673042225535, 0.006759986457456107, 0.016227267854430225, 0.03246243814645472, -0.054637337566932606, + 0.11601527276325302, 0.0779797229556912, 0.06396731331653638, -0.12044281486319197, -0.016624792264892326, -0.10908456371630106, 0.09053672118515917, -0.04799337558686267, -0.12290985756400177, 0.02938184366648991, -0.10111984617995914, 0.09744853148062173, 0.04133245139221013, -0.12896132170083527, 0.04552765844928788, 0.09819595618864332, -0.11041324928202287, 0.02350907963140496, -0.12843749051613468, -0.06078438534978896, 0.08891298801539595, -0.08863003372217064, -0.12432475430583705, -0.12287735105094247, -0.040153464000813925, 0.15770892566548397, 0.06965499258861403, 0.11189183600949316, -0.14685885494331777, 0.018134604628884554, 0.15854796371360674, -0.07770971474932117, 0.09927221022627743, -0.1445520472077137, 0.009789870127205454, -0.15216073989575896, -0.09282324066874989, 0.08927350926900994, 0.15649354377929808, 0.01703107522145273, 0.15178042821997348, 0.10785666780207158, 0.083493803504548, -0.11719790858726926, -0.06270869158571164, -0.08836799063162323, -0.0007115973671169258, 0.12231104883771922, 0.08838645330898189, 0.06805302805198499, -0.13300088969673132, -0.0016115879904141101, 0.1293144350239885, 0.06805637725933388, 0.06673750700517138, -0.11358794046517959, 0.01331356293760906, -0.10466268339534501, -0.08398729903415705, -0.0518075254870183, 0.13073478189069446, -0.03652472408173163, -0.11563672518106018, 0.09339149737262381, -0.05802463376351246, 0.09372898014944028, 0.018069581769007793, 0.04545878000285841, -0.012167292730057297, 0.1351321403033646, 0.10982180504897, -0.07806155233984625, -0.15405581907947072, 0.01612320327680218, 0.15939065867921814, -0.05142932271964354, 0.097586820167416, -0.11815112460132636, 0.0005307032825944795, 0.11494786047438485, -0.07721051255226166, -0.06986775391611535, 0.14837687032930436, -0.03253644664024736, -0.14517270120086528, -0.09564683603254873, 0.09090767376729614, 0.11195319110832926, -0.06591710591595264, -0.0961874611395355, -0.0014310989059383265, 0.11276217486967129, 0.07539586632972925, 0.0625166278252568, 0.11636478007739492, 0.015186983542097415, -0.10586909351695083, -0.08269120518131587, -0.04641044556657608, 0.11395455249852751, -0.01754193803724296, 0.10008254251223332, 0.08320665272481484, -0.046185840225766384, -0.12141538379086336, 0.04127500970630181, 0.10697957770620387, -0.08494025454980783, 0.06465396102267236, 0.07419428814848512, 0.015146670322899257, -0.029964887288048764, 0.004583696578252451, -0.038791956596474206, -0.03060337085318472, -0.019128841621494735, -0.041748596525684724, -0.007498677788032039, -0.036396066492946494, -0.029971287463951998, 0.013894833776113079, 0.03936046600801004, -0.010893539862338705, -0.03225780536904215, 0.0316011102830662, 0.014500772330994997, 0.04385136567764701, 0.018872068675634273, -0.03748041075411044, 0.016658378577865045, + 0.09761777348522811, -0.11972015171561887, -0.049635935996190914, 0.058395859757523254, -0.1212994176727174, -0.08958930657862528, 0.012582167890276537, -0.10494142699320524, 0.11441492723562044, 0.03970866377037488, 0.06652880836338977, 0.12176745534931842, 0.09015059006647602, -0.0183676200196234, -0.11209715866238468, -0.11749708775320034, -0.032124435952287964, -0.0788801005174625, -0.1294679337068835, 0.08169623853802714, 0.030551762443180905, 0.08855702090928397, 0.1399308822272953, -0.13283556587565262, -0.022208193984983377, 0.11266450078790421, -0.15713620768236006, -0.07958533134984476, 0.06143582754603326, -0.1573300444976288, 0.12910554504297506, 0.009566778932432839, 0.11592168680090931, 0.15263577958494015, -0.07977240177474552, 0.05990262329014369, -0.1523954783287137, 0.12528265394183874, 0.004861923412235122, -0.13077646633600903, -0.15878863981806257, 0.07578117179739371, -0.06982916184743554, -0.11833356131445344, -0.09435356030981631, 0.06871293023838718, -0.011287787972286594, -0.11373118955487094, 0.1228322199441333, 0.03979322714399767, -0.07051720440341208, 0.13808312047887575, -0.09797578126835703, -0.0017655255037444173, -0.09445897104495973, -0.11294249550862989, -0.03983816281654546, -0.06256738570736527, 0.11711636500335403, 0.08629253146740566, -0.027001132754285905, -0.11722734791069038, -0.12173052993377542, -0.052880210684647044, -0.06429136664380407, -0.09588019588493081, -0.04544736761441637, 0.021252023988856648, -0.01674100197317921, 0.13297952261610452, -0.14277124574080072, 0.05844942266077801, 0.06450216744311515, -0.1602987971833555, 0.12698927775279906, 0.028422534443044656, 0.08628890882219814, 0.1332646261204557, 0.05674964830274775, -0.04991015464343929, -0.12041438797529692, -0.11167533495999604, 0.016800221525863048, 0.1273432231841096, 0.14688424512514436, -0.08615713979371836, -0.05406744050410872, 0.11394794434748105, -0.10335953997437422, 0.07769711193030442, -0.005702260997716195, -0.09847853547351897, 0.11505920908616243, 0.043333673381021794, 0.06146109169774514, -0.11722050455736137, 0.07619690356188374, 0.02241223110323964, 0.10266950755910936, 0.10838874192409907, 0.046303630968001754, 0.05175814443870229, -0.11040545992016283, 0.08598805472433148, 0.022078213795659496, 0.11010148463995835, 0.11581848897123526, 0.06696246888327896, 0.03262176750898955, -0.07741939170817087, -0.03135837046554759, -0.01962289687843649, 0.006018358127153078, -0.037504516538298685, 0.040577499333491335, 0.013402258442401385, 0.022798868732777762, -0.041462761876359805, -0.025364851360918678, -0.009483363129113971, 0.036221482289313524, -0.03722154557434477, -0.012718199008402861, 0.020525812432177968, 0.039213796249663584, 0.03259336153594202, 0.008181405145000863, -0.04052353882423267, 0.041957827939965324, 0.026903958609078966, + -0.010529056547688013, 0.02106210933604367, 0.031742353746817165, 0.04227635699719637, -0.052665857051613675, -0.06264400060371778, -0.07145235917710224, 0.07901477190940423, -0.08502306652570941, -0.09464378978227489, 0.10084488530659175, 0.10734295803108711, 0.1201957042539713, 0.1241192049847062, 0.1275523190799014, 0.12882875010182354, 0.12958669304001114, -0.12751357397189136, -0.12462607169019882, 0.12363857098468325, -0.12167064236317078, -0.0899413230927232, -0.026953547719483363, 0.013150846619852564, -0.000629522173142375, -0.0153759489171324, 0.029793451388422255, 0.04432062237768193, 0.055216544633948, -0.0656118399942945, 0.07477648868488183, 0.09035097516882269, -0.10157602008792402, -0.11345917079905939, 0.13149435187209538, 0.1415912878296661, -0.15047581118581307, 0.1569450365460726, -0.15587148129721895, 0.15193579103936528, 0.14949510162084678, -0.15736053534700503, -0.16279119635964892, -0.12588029703531017, -0.0399702874969018, 0.02945587284670214, 0.01590777512813886, 0.001271265443185282, 0.010416281645125317, 0.02337851073349238, 0.02980452531225426, -0.03789741885385199, 0.04561817082947703, -0.06425605723086579, -0.07478476922700986, -0.08391223741912511, -0.08998675232238727, 0.09872594795071052, -0.10768912086271201, -0.12003334606448501, -0.11535685211317036, -0.11220965266146135, -0.11295904428332683, -0.12901256849563394, 0.13742952385781365, 0.10776184342803934, 0.030756248407400242, -0.0225259600601699, -0.009647956435731977, -0.01651138606600959, 0.03518499518428069, -0.06460856838565497, 0.06436867343615642, -0.06738748421860365, 0.06823112175409578, 0.09429495699211439, -0.1032856691467459, -0.10958333401681919, -0.1004397903016655, -0.11266729070065033, -0.12872862066460747, -0.1585008909020075, -0.14728289393938737, -0.13600807142250118, -0.12665438524996042, 0.14422944215207706, -0.15066669039097283, 0.12167171859200554, -0.04385370558658857, 0.031681276098235164, 0.019313794221713906, 0.007269091524723348, 0.003044967996119102, 0.013442301471086701, -0.022337213493073268, 0.029896287243601827, -0.03552889104982599, 0.042942328649158264, 0.04977313125173377, 0.05935045037820994, 0.07887690925475793, -0.09773027919967958, 0.11972409965768566, -0.14245958256395444, 0.13472958152521997, 0.10991704195411132, 0.07975180136391963, 0.07721450870183665, -0.0861385621907569, 0.08597046718255372, 0.01790918252531972, 0.01365422012795214, 0.008607388157141165, -0.0034544493538244134, -7.738387341852987E-05, -0.0037105351601142396, 0.006517293150957362, -0.008904604119369296, -0.010571700449951333, 0.013243951963767068, -0.015677149180933728, 0.019270701702120772, 0.024992329708676677, 0.03316948600529917, 0.04418127296301713, 0.060294622695241384, -0.05732872069310785, 0.04124824863327079, -0.01834134477630903, -0.007355504009134289, + -0.10899552054789186, 0.10225506051827467, -0.012853460964982546, -0.1135878522710194, 0.09361717835009825, -0.026195945135633905, -0.11750218159795667, 0.08263636527914967, 0.041039759844683985, 0.12405883316402096, -0.07052628116734413, 0.05812133986518086, 0.12779033087846337, 0.05245247814167056, -0.07821721009328005, -0.1249432767868128, -0.039088800389312825, -0.08912353679001306, -0.12314981729318064, 0.028732066241005647, 0.09749821260506984, 0.08992438292183057, -0.11093630439959948, 0.14650767830775646, 0.025572624936752827, -0.13050693153633683, 0.14439577683818428, 0.004043281232736097, -0.13655628400258052, 0.13383696238340706, 0.01245052602570413, 0.14958928893930637, -0.11905686706601665, 0.03770859914435837, -0.15563285063561091, -0.0992013171769387, -0.06282059146954576, 0.15645616159126374, -0.07782955425786854, -0.08414863911030043, -0.16180305103604398, 0.07767941286841169, -0.09308740238853996, -0.12137186807893284, 0.06303971747229217, -0.10839256751995197, -0.0311533809684269, 0.10809726294894254, -0.11964956966411944, -0.005366416036648972, 0.10187111004476933, -0.11321823147874319, 0.0049084320830259705, 0.11447753190341019, 0.09411739466632457, -0.027781020206026203, -0.1196954950269134, 0.08803008493651994, 0.03753585682031048, 0.12081765514691617, 0.060504172279406646, -0.061520486678025676, -0.12699955179893255, -0.07288846430641036, -0.06658471438060412, -0.09851519353436437, 0.03351870590276579, -0.06690691114637515, -0.01880658022992284, -0.15648598228343666, 0.13817040636724634, 0.021486920068888807, -0.11430825344003653, 0.10547574017418922, 0.0153752042973885, 0.139240528920027, -0.0834122676441622, 0.06342028265386666, 0.13663864098777181, 0.09141032585953912, -0.050017482136828766, -0.13756437004148336, -0.04475636349064218, 0.09128764682405636, 0.14150573770973401, -0.0704259627267729, -0.08779301842360082, 0.11543486641036951, 0.057897849020859246, -0.11374600359283521, -0.048063952015192875, 0.07873496130151804, -0.11709308573296238, -0.0317240841101929, -0.08538522033698362, 0.10966596931483029, -0.012300787744274507, -0.100730780049489, -0.1040104817184884, -0.0004900637338461256, 0.10412785269294242, -0.09494609565506804, -0.012119628973083434, 0.1024578945436323, -0.06589458968484724, 0.04648485218182163, 0.12228741213378229, 0.09609425667559778, 0.028262064867752346, -0.08612569968464776, 0.013900357719148278, 0.0381650853468983, 0.0196867410078485, 0.027824357801022135, -0.04154303183419564, -0.012238306350343167, -0.028204066731818637, 0.03877173844093613, 0.005923935359498478, 0.03450873564344156, -0.036744346219228535, 0.0017325463761359182, -0.0351236309436969, -0.03714026766957568, -0.002120232265391989, 0.03303108961372586, -0.023872765595535052, -0.014462762731237859, 0.044316215100901626, 0.03712730632701565, + -0.10725200561496033, -0.1054978668873588, -0.003744264847060577, 0.10849725124070711, 0.10271338411960282, 0.007241593791515347, -0.10954975113755917, -0.10075524244105659, 0.010027237187124508, -0.11145778371764559, -0.10391216967865032, -0.009644186257812522, 0.111843722800043, -0.10838096710914057, -0.004811923830187755, 0.11357620934833759, -0.10578154122582198, 0.00928484279257939, -0.11681857860458504, -0.10318839795964858, 0.01643519558360125, -0.08829276333239754, 0.149363405072113, 0.10515575007868277, 0.04425161223077251, -0.15582080545276675, -0.11278928894589665, -0.045362882703268693, 0.15532047568209267, 0.10361217536379205, -0.05270570896154768, 0.15456247299425982, 0.1091506974798684, 0.04793386217532889, 0.1527998185424191, -0.11094720917172099, 0.043031557285337536, 0.15153285561982133, 0.10994730841537796, -0.04253610505086815, 0.16001164628043196, 0.1057099768876088, 0.06032071325276648, -0.11841613994172429, 0.10993884302235107, 0.05881484157407276, 0.045198953847845266, -0.1278410649763766, -0.09601074935404025, -0.03719828487202961, 0.12550991625282557, 0.07029589073467876, -0.05464901737855435, -0.12056089123238775, 0.08381787462634137, 0.038398501680907686, -0.12336188527938212, -0.0789621531194135, 0.04618913222561349, -0.11616368978625305, 0.08190089025139703, 0.03353038812167929, -0.12869715153795253, 0.077960506118381, -0.058087498864584405, 0.09568308316039079, -0.06802214955049543, -0.030969491406590353, -0.028199855876371388, -0.14776268578493665, -0.14965201229518954, 0.010576764325495334, 0.12510267591840482, 0.08761454199784384, -0.03556191483827136, 0.12635731101565567, 0.11930907329418278, 0.009572739982901594, -0.13434334321706606, 0.09860831520017622, 0.03919273639316607, -0.12289306892538443, 0.1113939575289323, 0.00909692368558882, -0.14171661077105116, -0.10142645353685005, 0.05141895833485198, 0.1098278774873635, 0.1132915379609827, 0.054156300175422015, 0.056160347318350325, -0.11936221800889746, -0.06737328648732167, -0.053436160183273226, -0.11835937902098248, -0.062033145718325994, 0.05639648943477897, 0.11745028872109939, -0.06435256662429181, -0.05601614772077413, 0.11420054763093028, 0.06341276583011962, -0.051523986955043406, -0.10691531037172294, -0.06624207138881463, -0.03870789294468375, 0.1257160325156225, -0.06327821453633198, 0.0776490107817342, 0.08087757616224578, -0.03806692642737057, 0.012911180415113178, 0.022021358566540146, 0.04201727373625332, 0.02450670253413698, 0.01870271485903486, 0.041356339785221324, 0.02032370588115694, 0.020875681076930316, 0.040690535097956636, 0.022030529020541957, -0.019859046814570364, 0.041010612929570166, -0.0195484191875556, -0.02206999165832204, 0.03646991831910825, 0.021064847316897825, -0.013834966835828128, -0.045975312320905945, 0.004397966668557626, + -0.006901491337599615, -0.013790096197832625, 0.020677328835799265, -0.02750427575984156, -0.03412804362847308, 0.04065296473393012, -0.04712839883482648, -0.05334634506068421, -0.05933784808476447, 0.06277786208903072, 0.06881148448274851, -0.07465850893500293, 0.07529885709192986, -0.08077649403795736, 0.08608574791274226, -0.09214612286614753, 0.09704381485262052, 0.10150409617855936, -0.10764343520971423, -0.11217006501633445, -0.11563924168455002, 0.08736105011272859, -0.048473116898380034, -0.056523644967594044, 0.06297560979024489, -0.06802054284941035, -0.07614617640679397, 0.08458695467309404, -0.09549443464931791, -0.10231930881985105, -0.10867979977640721, 0.10763492424171561, 0.11423839747117245, -0.12040844239802947, -0.11960103658552243, 0.12498610807359228, 0.13017798798011462, 0.13259228429511505, 0.13678528867319611, 0.14075050155470978, -0.15325197988256986, -0.15939092429821392, 0.16207452312754975, -0.11700153439469879, 0.05329951974445334, 0.0583931695489494, -0.05792225125728095, 0.05160115302121282, 0.05870096770306543, -0.06788734026878744, 0.08654451077174237, 0.09101361606140361, 0.09491471793288761, 0.08407326421185314, -0.08932995105038571, 0.09400646658862101, -0.10154460752663173, -0.10557884009072681, -0.10954297919327344, 0.10176544626052234, -0.10370743939872591, 0.10635442387643386, -0.12470071170615378, 0.13177858824347446, 0.13368975452637252, -0.09444541487791687, 0.038097877734832086, 0.04089914589991418, -0.03607987694524573, -0.021952342163784964, -0.03184079427370077, -0.0459945881398607, -0.07112437620131704, -0.07617842373140828, -0.08064945133538728, 0.06669131219467726, 0.07405314430343368, -0.08071697861007061, 0.1026931323542815, -0.10816315030881324, 0.11367012072596419, -0.09731830033002478, 0.10017148902479153, -0.10444044416679668, 0.13399476563203902, 0.14489200498970306, 0.1483319335112642, 0.10694577793453415, 0.05858451249089109, 0.06377944725303385, -0.0652705247623643, 0.06436751017070831, 0.06992305156963655, -0.07573020641342484, -0.08314766388923153, -0.0876618235769948, -0.09190800621016497, -0.0913914655596452, 0.095757873907738, -0.0997129115413648, 0.09524600807583973, 0.0983720191989921, 0.10131639544482283, 0.09538378615416791, 0.09722961030858479, -0.09969746441915517, 0.12335090730346224, -0.1315139392269182, -0.13455648371205103, -0.07903482671168159, 0.024466440874069604, -0.025966759890623532, 0.02461288590806142, 0.021396966375574568, 0.02344956795030104, -0.025958680744977074, -0.029856092454358888, -0.031342955115998224, 0.03272419107815741, 0.031517865375182294, 0.033085256125059206, 0.03446081170428954, -0.03546499839181814, 0.03650945592502689, -0.03752980495536624, 0.03266743687215824, 0.032983624866862855, 0.03386238543838715, 0.045500574228782155, -0.06540637433675599, + 0.09979422224769219, 0.1170177310011579, -0.03724137999031742, -0.07268378887032996, -0.1223553244593297, 0.07091490793424116, 0.038616619862945664, 0.11631555687152875, 0.09800979609355154, 0.006219260858552867, 0.10481091468434965, -0.1167557521562328, 0.024747891279095456, 0.08685408307639264, -0.12628920729781992, 0.06267740818104316, 0.052583216856257095, 0.12467477028155934, -0.09585820561440198, 0.012102275820177434, 0.11111114908421878, -0.08677162891975955, -0.0976635220402012, -0.15330601647272485, 0.08045721584565156, 0.06873833854821296, 0.1585052401503217, -0.11802227593984357, -0.012469973851613752, -0.13499259599966576, -0.14582440793320836, 0.024599739669658303, -0.11325853067155914, 0.15744477264510462, 0.0627541110125259, 0.08078508482361935, 0.157262501015572, 0.10163960168822841, -0.03688479558138508, -0.14466212568050862, 0.14179112073910982, 0.019610883724259884, 0.12279688676101128, -0.11649430710865288, -0.05362545122933356, -0.10882892739678582, 0.0687947581239212, 0.06294032971572036, 0.13275202872584016, -0.09519131407888325, 0.004035195136480678, -0.09917529871603191, -0.11895803225561227, -0.018153919304555767, -0.0886030317708471, 0.12241797201809895, -0.05892074547843346, 0.054882414214424205, 0.12387193265874542, -0.07853698362943475, -0.027524170525462043, 0.10873981501354345, -0.11567405153871042, 0.022989157724834692, -0.09484569512749179, 0.0943103279287809, 0.028078749169885814, 0.06609720019199539, -0.042121951613756065, 0.12094291299022357, 0.17130407884471685, 0.0808692392680489, -0.01967004607696495, -0.1134370263534634, -0.11210599756352312, -0.01729411715681626, -0.12476412642199214, 0.12939536576868824, -0.0486466330595359, -0.07787897005807323, 0.1408112776053222, -0.06267586755028766, -0.06140680724935226, 0.13165456402481696, -0.11968664486010666, -0.006674389238333941, 0.12150180839882392, 0.1055995772468918, -0.053157687098612065, -0.1119331095785209, 0.07347856536524483, 0.04102316134909843, 0.11524423512311763, -0.09446220966230331, -0.0014474076822688555, 0.09443628857760968, 0.11337107326117961, 0.03197672504716138, 0.07381882032778278, -0.1183036408982475, 0.053037902490706654, -0.051746249393707894, -0.11253783839704082, -0.0717459775478653, 0.02130533155921155, -0.0968752177738385, 0.11496092012865312, -0.026352885306544952, 0.09599285656097305, 0.07896682446237605, 0.013349757369406403, -0.03697256422047411, 0.026739683780857417, -0.016486031304335184, -0.04128705998642274, 0.03233356211401384, 0.0012018604260935761, -0.03247113707441238, 0.039719998440157764, 0.010435291864268507, -0.026179843940315393, -0.04096650021214067, 0.020629014092871684, 0.017054083676939738, -0.04022486783235649, 0.023819579081540986, -0.007380617129147798, -0.03251936823510203, -0.04249411373417558, -0.005915129484494357, + 0.11473958812309103, -0.08421690183032413, 0.05287016326857062, 0.12223702817438795, -0.03670539840537919, 0.09534492095165119, 0.10522255824585203, 0.019333501535570487, -0.11902534533035601, -0.07327095875740991, -0.0673651726946288, -0.12324607802615274, -0.030904531267391476, 0.10367959354428179, 0.10635228487840553, -0.027467196215461134, -0.12565509933114027, 0.06300387530910813, -0.08168601136809431, 0.12221735273989187, -0.007241800386995982, 0.08652890562422097, 0.15292874832804884, -0.07445650309677757, 0.09568296625689453, 0.15622524848613553, -0.020042670180081087, 0.14296414447032565, 0.114174764613684, 0.060878633925512037, -0.15761481651076725, -0.06701071205753872, -0.1099784620545136, -0.14866385072067625, 0.007652851847914266, -0.14396901244344243, 0.11223089585205111, 0.06111714326163277, -0.15620019161903562, 0.051525819414181315, -0.1257136223528697, 0.14482215879454063, -0.022256157515076987, -0.11700756813893444, -0.11008630178838584, 0.0346617335149608, -0.07684835532550402, -0.13054005922715636, 0.025383305238245425, -0.11801157103723237, -0.08072389646274343, -0.059832721181224895, 0.12244143405064548, -0.05426859991256179, 0.08425753469201233, 0.11553005721704411, -0.003777382672736771, 0.11799441368125009, -0.08314692635071967, 0.0486161364567009, 0.11817162259995553, 0.038866107138480474, -0.10150353955133747, -0.114548926316313, -0.02449462780384428, -0.09555652530591469, -0.06754207306237162, 0.01554597592434757, -0.04533611178645437, 0.16871919120420353, -0.08838506352771255, -0.11373825823569116, 0.10127673581762509, 0.03747140739683302, -0.1239642245520498, -0.0948403901153286, -0.06436703462654177, -0.1421830074378142, -0.01719365772092673, 0.12287448472477258, 0.11086054394662623, -0.02093848372355535, -0.13024544854915557, -0.0725550979956836, 0.09878999707649071, -0.1403552593600579, -0.005562456409163119, 0.10611848633662785, -0.1140036866967524, 0.038393051341070336, -0.07967104814569138, -0.11537855359651386, 0.011570397147678112, -0.10737157264911941, 0.08149252514519537, 0.05177345437304582, -0.11724212151418192, 0.03951503103018144, -0.08866064380443738, -0.10862643013465983, -0.005953839659774633, -0.10335875874176995, 0.08374782497620017, 0.035800774761947866, -0.10500937393485753, -0.031825687643883514, 0.10064086486401526, 0.11912581244243091, 0.00508204911969419, -0.0809954546261917, -0.038403620463016146, -0.008678067234080164, 0.027896470365885287, -0.04144534770092919, 0.007221238980277989, -0.0370113406338817, 0.02835547208107656, 0.018333351181963126, 0.040705516893604535, -0.01481090701640226, -0.02984902704428445, 0.03853925896841577, 0.0013619582326737083, -0.03732741237624707, -0.03088075000179738, 0.009144719033022624, -0.03467798508618806, 0.010598547261966115, 0.03705607595625529, 0.040088343049624914, + 0.024193905826841198, -0.04763035324286804, -0.06988509541546992, -0.08961955522398868, 0.1062067317772364, 0.1186141176851553, 0.1250901095886201, -0.12543199125387694, 0.11937099350960347, 0.11440470802333545, -0.10180879516384769, -0.08620257753946825, -0.07316248066688431, -0.05220196714143016, -0.029502365106498774, -0.005283407640518728, 0.01894253066983386, -0.04221219246740413, -0.06424358702183255, 0.0847680508966476, -0.102160804069289, -0.08722543824344049, -0.06684065901096095, 0.09258993583855751, 0.11223835998178791, 0.13519958947362606, -0.1554487128098675, -0.1707991490984288, -0.16810271639116, 0.15778861680415332, -0.13968518260690826, -0.128283643492015, 0.10717355080900559, 0.08321978453952703, -0.06135811589706564, -0.03375051259961718, 0.004896108958176785, 0.02390264062911018, -0.05109580302080204, 0.07565676972708346, 0.09975955370440016, -0.1260308154893865, -0.14691343000403667, -0.12177638474461902, -0.06514104802246198, 0.07946802934452715, 0.0788917514598087, 0.09508279868021484, -0.11667369588844206, -0.1424634770976324, -0.13051347835945895, 0.11819473279274838, -0.10175399184391484, 0.10419032319622733, 0.09173655278872375, 0.07454026732733146, 0.05214643469691412, -0.029742315062291, 0.006303216641045016, -0.016128867547286877, -0.03695319080595386, -0.05658468445950593, -0.07846486793299051, -0.10568461323666993, 0.12408167209936172, 0.10221476367531347, 0.04431857277215636, -0.05013210327106708, -0.03930052880638152, 0.0636063160029503, -0.10310484679688138, 0.16799456065031584, -0.15400941731922094, 0.1407215099126362, -0.1192412572853738, -0.1347924165515532, 0.12390730682381844, 0.10567584769403442, 0.06834553537635196, 0.044162785995084525, 0.019672980842311793, -0.001564390592289684, -0.023997104241755243, -0.04471212099983511, -0.06860612576649183, 0.09946614449421395, -0.12100975515927828, 0.10690189033128678, -0.06359862641965279, 0.07770480032258474, 0.08620830346453628, 0.1034939021500212, -0.12493726612405484, -0.14383237980332084, 0.1459180667918479, -0.1337421988594723, 0.10876870414201475, -0.08446192288905516, -0.05654648376246167, -0.02957220089225059, -0.006397538102606358, -0.016786769562514715, 0.03977793071360179, -0.06114143680154021, 0.0676911841564477, 0.06351546354173623, 0.0557693147372608, 0.06372073666358304, -0.07998329730997575, 0.08323721896353269, 0.025488159692041896, 0.029503280429969293, 0.02931287546377766, -0.03443020473924065, 0.04370132059606742, 0.054005719540489154, -0.054564487106627216, 0.04883692967992357, 0.03770300728278324, -0.02807437098464418, 0.01728206580652884, -0.0070445491811251554, 0.0026918573685191845, 0.012576218240235863, 0.023103075882804188, 0.035346802727892875, -0.03529611832550338, 0.026093600914340175, -0.0118500973344736, -0.004824508080893216, + -0.08859554191069319, 0.12371051546562384, 0.08468189143295668, -0.005266971535727576, 0.09220927377707366, 0.12280274777278165, 0.07733012030680103, 0.016023164302276325, -0.09932957710621347, -0.1274266576373037, 0.0739725331263417, -0.024284162052436623, -0.10857674099344514, -0.11968722943003147, -0.058250614969318416, 0.03958787249971052, 0.11280649248251298, -0.11593560255539768, -0.04761945794223038, -0.04712188223542729, 0.11402046542748247, 0.08412060031168242, -0.08672655115799364, 0.1606439594254726, 0.13365092737682463, 0.02766294635158344, 0.09003923853625362, 0.15407722690484477, 0.1143137045310681, -0.003333021432667286, -0.10928460472173135, -0.16647655994085936, 0.11476280374222525, -0.0059854673358955765, 0.12269244260497335, 0.15822571148475217, -0.09711201758280948, -0.02275834107711588, 0.12910603186256459, -0.1552493759385731, -0.08664161465992842, -0.022876178018080433, -0.12127146829346415, -0.10877514233128346, 0.06206085414854911, -0.1307148892455406, -0.10344898808973016, -0.015360890370719789, -0.06327282769406326, -0.10993012660904176, -0.06600509867299136, -0.019479755522864635, 0.09155180199258155, -0.1310288222013688, -0.07542879690957734, 0.027310808451233348, 0.11301945815543316, -0.13369836550691858, 0.07367934454865151, -0.02406543758339739, -0.10911006912382273, -0.12803462475651045, -0.06878899034432091, 0.012337372292247207, -0.08971875388035237, -0.0829897569281342, 0.05251765645614117, -0.10299679591108094, -0.06511623408256177, -0.05256480778931894, 0.09391400044741288, -0.09714539516929757, 0.014973632356040581, 0.0888793713482452, -0.13406303142265336, -0.14548958362893538, 0.046780803606157585, -0.08226211251027665, -0.1525992699562156, -0.1609774167047646, -0.07600297776808482, 0.03832439115348886, 0.12747756582911202, 0.13693510345256005, 0.05661542837711269, 0.028713996728359836, -0.10108586757773504, 0.0865343749497824, 0.06050857465802788, -0.13035851203498638, -0.11716634912893929, -0.038007058071157576, -0.053617742466546235, -0.11367436166478727, 0.09578421702875246, -0.014283815279060351, -0.07664379315400444, 0.1268944093433326, 0.09802381210364455, 0.013887281833290549, -0.07704985791921264, 0.11942829828951883, -0.09305957918975362, 0.015078206193021164, 0.07601249784994854, 0.1124416450956493, 0.07703584299820969, 0.023697633240958735, 0.04694680638240106, -0.06974980417323827, 0.01981952209721506, 0.04886619027092409, 0.04330732909021523, -0.012646948107556741, -0.01746503895581255, -0.03841194730937504, 0.030585706943790078, -0.0016802196494739674, 0.028264658051853637, -0.044638364510130445, 0.0328411930617717, -0.0029774587166215265, 0.028529927284019048, 0.045116882391251806, 0.037743460271379446, 0.013507553839344318, 0.0223781969710056, -0.039892215924773204, 0.03110282411291711, 0.017576787523679478, + -0.11993065699481109, -0.05478813351214112, -0.09529925211664161, 0.0979994904915825, -0.05088517616103721, 0.12123470799482872, -0.005522528042311896, 0.11880226496319013, 0.060504525314650476, 0.0949505814031414, 0.1071241572181354, 0.046473611773464533, -0.1243688541130464, 0.018868497229957877, 0.11510458315629797, -0.07312151761561074, -0.08130809233830227, -0.11103323166471046, -0.029992179701201972, -0.12199252462802936, -0.025502679916594172, -0.08193007317741939, 0.1643981514515814, 0.03599263268545957, 0.14374702502722725, -0.10112864573406329, 0.09010839389296461, -0.14375935847849022, -0.015689491515912334, -0.1538152716581668, -0.055374148068421114, -0.135706672579243, -0.12447400467036084, -0.07970957883123536, -0.1555752465661214, 1.9875775052105756E-05, -0.1550086450818991, -0.0696123529691868, 0.12274164071223546, 0.12629367901055202, 0.06540979050726223, 0.14418345870504676, 0.0013658718004180923, -0.10468600806845867, 0.13771887093646, 0.018989688719553498, 0.11501942332885173, -0.0706657288472846, 0.05678228465317045, -0.10113483279744759, 0.011527075084981662, -0.10591458157399733, -0.05923192168893401, 0.09548684888521253, -0.11338087390824046, -0.04351670658160278, 0.13533361049847162, 0.014123433259028215, -0.12970624927810082, 0.061546881633492166, 0.10089977285428334, -0.10577198255491578, -0.05270419758854424, 0.10868920530401385, -0.004512424186999403, 0.07931377579542259, -0.10871442533455472, -0.019288193739171823, -0.07794362192339147, -0.0916243133993154, -0.02042465360694623, 0.0962986996266577, 0.08550044206215184, -0.08909177313694135, -0.12333947863698937, -0.07562249095527243, -0.16218638011624606, -0.001037918235796257, 0.16797278303414773, -0.04531091670527251, -0.1499098487180349, 0.08477025592171035, 0.10145480008582139, -0.12805733465389535, -0.038026610007350324, -0.11386344884904129, -0.012955391326554003, 0.07958436143328049, 0.1366837995741523, 0.018184826643890845, 0.12031774028909684, -0.07215113319009483, 0.07583822044225469, -0.10717429552343434, 0.019751928554240274, 0.11825974696554797, 0.037144813812643826, -0.10646340030757395, 0.08955573882670832, 0.06841172758748534, -0.1135983388917896, 0.010144586165315871, 0.11694791813535398, 0.03589134019881847, -0.09708216048666994, 0.08513161637182928, 0.060789396635121076, -0.08839093577288278, 0.03208503113643384, 0.06204624231570624, -0.052925804293916606, 0.0036751397486784907, 0.04477111969071302, 0.024455195597703726, -0.024445118859260647, 0.03626374528742848, -0.0031063725252549667, -0.03936058182520456, 0.016044548812586126, -0.035131573422576404, -0.03384589401989758, 0.02103309316135611, -0.04261031813144424, -0.0030698363067648213, 0.04374868144230286, -0.010282080481824513, 0.036205292998517644, 0.03017965767212804, -0.024261047063954305, 0.01906241189751105, + -0.04100207912646154, -0.0773729490906961, 0.10511088816703607, -0.12095557698033894, -0.12246112552501509, 0.1100758842228714, -0.08549362157500906, -0.05095909456264901, -0.010632164785325996, -0.03183370217094037, -0.07178327954609715, 0.10368258353414767, -0.11670277801968759, 0.12433043549807517, -0.11794118878014963, 0.09942903304908589, -0.06888503750133922, -0.030340509792973543, -0.01174705123262393, -0.05153873984330579, -0.08552114654799726, 0.08083281718698271, -0.08859490299557687, -0.12950163040937096, 0.15211854613950554, -0.15424633559845477, -0.14667798123549822, 0.12311271375798293, -0.09088070658006413, -0.04376962748687276, 0.008177021231715192, -0.05978435994632779, -0.10818515488797986, 0.14429238428929642, 0.1558831730427321, -0.15827444601256416, -0.1429228932587393, -0.10906991605255363, -0.06421735401265774, -0.012312528254195322, -0.04282559225352903, -0.08828510779894905, 0.1231856936459442, -0.10274675297125845, 0.08378843375144464, 0.1151654606593203, -0.12192998409343657, 0.102672255038993, 0.10005471127968413, -0.08848285779493065, 0.08292326467604035, 0.05244110011627765, 0.016527102043944406, -0.02615356101498742, 0.06842308688652972, -0.1028676152183703, 0.12914444189499996, 0.1365951555358346, 0.12873950695846179, -0.09385335258358045, 0.05572538807169985, -0.012736686409046044, -0.034528660488136444, 0.06924313561306472, 0.09527324059538032, -0.07739551087921401, 0.062328981289378256, 0.08776598210408312, -0.08515545255242475, -0.05621951873909849, -0.07817384757672145, -0.10021557825327243, -0.13868385674619363, -0.12075034687544041, -0.0897481408950033, 0.022759053947075558, -0.03319132683448948, 0.0856573567460272, -0.14603321478056777, 0.16596205433935216, -0.1673875848681568, 0.11940766298679344, -0.07920803042681229, 0.03315502568677543, 0.017226457051987453, 0.05442261222556412, 0.08544868724533487, 0.0759089983457654, 0.08007576378414577, 0.11232172712984564, -0.12475348736842834, 0.11889823344011767, 0.11212892128482513, -0.09315161835903031, -0.06719420750914697, -0.0309868898739096, 0.008709916485624242, 0.04817660706419673, -0.08458602274066264, 0.11139489000170033, -0.11626401899011235, -0.11720624628671224, -0.1048942644048528, -0.0728417232313252, -0.03850444460680548, 0.0005093366499531338, 0.044235900961343944, -0.07347486771361476, -0.09358257654048735, -0.05937874900429941, 0.03337775534010782, -0.04514788424339951, 0.046350583987691776, 0.03915027212354869, 0.037480412226750366, -0.032110926561368824, -0.02588999313649267, -0.014306084118085372, 0.001156940409786959, -0.012874582004399223, -0.026363888746666366, -0.036853794823624414, 0.04277879486113368, -0.0438720144782055, 0.03996625562512582, -0.02575099995084479, -0.013041090938436415, 0.0006179736723067068, 0.01824788423195511, -0.04021133230486574, + 0.07562362119998088, 0.11943737245021077, -0.11303880292160758, 0.05942925782470143, -0.019613109987920353, 0.09031109818156263, -0.12312986451822827, -0.10398302582594776, -0.04115675203383894, -0.04157175607378773, -0.10804372456844409, 0.12910459864566326, -0.08734054785944671, 0.014222657335705978, 0.06448151380804885, -0.11701605845227597, 0.11909935096164484, 0.0710171980327785, 0.006770618614667228, 0.0801023723246328, 0.1198499194876387, -0.08009314600297851, -0.06984683127166691, -0.1463369920896152, 0.15748512434923692, -0.0962148747610223, -0.002012700353259845, -0.09391723584233763, 0.1516168058032874, 0.14043840459461188, 0.07030997862054501, 0.036133804854060585, 0.1283502403611464, -0.16651622085765075, -0.1253564889439104, 0.038075417102615576, -0.06482928199947777, -0.13858451185992732, -0.1571072885796265, -0.10994010154034188, 0.018991001973933018, -0.07468620399843826, 0.1379279971831165, -0.10168131071241804, -0.049168494757589845, -0.11763449704263318, 0.12488421927748802, -0.05837994659849002, 0.0059118891832937726, -0.07141551816838095, 0.11258268163862073, 0.08926341324504518, 0.02900654094627887, -0.052317800930639126, 0.11708523996195971, -0.13253183415699218, 0.09649478502803165, 0.016977922614630173, -0.07018745205592553, 0.11802548310229394, -0.1301387267571084, 0.0887611418484277, -0.0149967104444889, -0.05564422009076078, -0.10455265588509377, 0.07642635653767552, 0.04337179602882989, 0.09467199883402051, -0.08794349175488303, 0.023012179287019995, 0.07376205760860405, 0.10299801829463731, 0.11995981041870565, 0.04823601986025667, -0.0408798752548932, 0.112850954894823, 0.16466951925741724, -0.14660402082084442, 0.09232847846371728, 0.013673224741043273, -0.11528153097288416, 0.14266207986321675, -0.14106237127516083, 0.08357921444436582, 0.00440615056383195, 0.07323541261381096, 0.11264971442068676, 0.07343907765952794, -0.05430944720967572, -0.11997483679564919, 0.12750847232294377, -0.07228705342183875, 0.0010552659668932058, -0.07431794786130941, -0.11640231928131524, -0.10704734654778311, -0.053269117784177936, 0.027602431489606262, -0.09781459581593216, 0.12657852741636053, -0.09052154901826864, -0.023578782498617036, 0.05264173610941535, 0.09990678900555108, 0.11527626985591105, -0.08462033240273066, 0.025704233144838398, 0.037908314795119025, 0.08920836843264701, 0.05825211182628273, 0.019101036059907067, -0.04554991876594339, 0.04706438763356747, 0.022155817814471915, -0.0024387329467150647, 0.02670025070643761, 0.03993476230220713, 0.0339164667710828, -0.0139160754081143, 0.014196635636783559, 0.03709699092525784, 0.04414897549479726, -0.03175742250387455, 0.00582856605909975, 0.022494369084164523, -0.03676474066563967, -0.04188653953709856, -0.031166971977644446, -0.011355971715473652, -0.02318048615924497, + 0.12272131295135837, -0.02249921654926121, 0.11887337692248351, 0.0438367066956763, 0.11106316048458753, 0.06368712798852087, -0.09974118147097577, 0.0812366168757468, 0.08553493077569611, 0.10155178997034876, 0.07034479504099658, 0.11501441522991052, -0.04151259174858634, -0.12059918821577538, 0.019528021095705693, 0.12434807510132868, 0.0036164447320602726, 0.1240058482563224, 0.025151994220054943, 0.11662911700969934, -0.04682359716211675, 0.07964218154233882, 0.1632806241342757, 0.004704618021728759, 0.15958998370505387, 0.03158142139858333, 0.14767439362977267, 0.05864272358788381, -0.13585462331279624, 0.08676175807784199, 0.12024302057466899, 0.12008292151416296, 0.103479877723954, 0.13999494354734812, 0.06952726411687844, 0.14919874586586312, 0.04271273114319537, -0.15552145710189388, -0.019719828279303186, 0.15844769793746055, 0.005596339675872549, 0.14717632284994941, 0.03313643829891103, -0.10138570915257354, -0.13580630875882177, -0.014425198082913426, -0.12352487836342915, -0.029521663665687193, -0.09629544727646142, -0.05107778469945067, 0.08575515850660524, -0.0807101781612869, -0.0695562777382234, 0.11246978088363468, -0.06197130279050685, -0.12389311841327225, 0.04382519848380052, -0.13281461423277782, -0.01963522667666873, -0.13208643648950935, 0.0126409692816704, 0.13133478060935905, 0.005277124759107089, -0.11184062039961785, 0.024637001082673412, -0.07642439445754118, -0.10778641121635602, -0.006572919152576173, -0.08575704902478493, 0.08449555611811467, 0.02739623068847708, -0.10512145521754013, -0.03872001606330088, 0.13684708638556123, 0.01481023704400189, 0.16156356736874966, 0.020787141976213803, 0.16669789329255932, -0.01773127587200353, -0.16902680990684507, -0.016077149844957325, 0.15283354076551167, 0.008877209411379362, -0.1452742799587144, -0.025865712338338787, -0.10898552129475705, 0.04632855482518358, 0.07201753879971164, -0.1363703085714129, -0.0033783627232227215, -0.1283347694364897, -0.032176378702551814, -0.11096378166062357, -0.05309413551296476, -0.10000163992965473, 0.07043226139146805, 0.08956596587856583, -0.09354155635970669, 0.07493670814652653, 0.11056363121482085, -0.040880914980649344, 0.1152527363216349, 0.017348374526988588, -0.1142921235336993, -0.014340576851916257, -0.11510569552345144, 0.005455233090423386, 0.10081244907103365, -0.023728155130621965, -0.058284372099319734, -0.05300294598281845, 0.00275907978133049, 0.04677559710506665, -0.013202731355773895, -0.0355645640032265, -0.020842544833938163, -0.030799345028455362, 0.027362748892493467, -0.026880897178329394, 0.03602161495084867, 0.021663900448432454, -0.04134871198254747, 0.011521079965157669, 0.043928810860021615, -0.001403522274487162, -0.04214562373222963, -0.003937101014612445, 0.04171044564222396, 0.003513836192722256, 0.028885032783242646, + 0.056989595533588164, -0.10146633298714555, -0.12425544953154151, -0.11936472343111335, 0.08777932599916954, 0.03631975640442215, -0.023583057895205903, 0.07796838762799353, -0.11371946429542266, -0.12947847729172718, 0.11211175184263826, 0.07026138124869905, 0.017606111320886252, -0.04066236411975348, -0.08956778891388394, -0.11742702506118771, -0.11897817010149454, 0.09189736067664846, 0.043389537288696184, 0.01296173419714573, -0.06696856244800711, -0.07938602057102434, -0.10489828491789523, 0.151827325248207, 0.16079408807539997, 0.14173698928974673, -0.09505128010114053, -0.026819380166746246, 0.04703997711826772, -0.11157405536097441, 0.1494723660491383, 0.16725358581905156, -0.1404122733798643, -0.08333899489898816, 0.012936655337734032, -0.06132489456882875, 0.12137476912207114, -0.15262438257918, 0.143341435176987, -0.10011915351700713, -0.03294114882580397, -0.034843693307477566, -0.09628766798120712, -0.10117528262954234, -0.09479603851228142, 0.12844571680500907, 0.11535525724223586, 0.09545290668682378, -0.07001045110030933, -0.031064973851546076, 0.016273269496785283, -0.06474260490264515, 0.09782901069446898, -0.13277917137934261, -0.12221781012425459, -0.08244477416875595, -0.021286149831584472, -0.043685575874069106, 0.09949445947570977, 0.13539489102538896, 0.12307094520379416, 0.08565305730295653, 0.026781138212961783, -0.025938032010938403, 0.07417494946960912, 0.07777927392768656, 0.07105491411761383, -0.09807276565787247, -0.07481474642211323, 0.07714919161314952, -0.09971911443739812, 0.12276782865807793, -0.07414276407432549, 0.004974709693805214, 0.06296911468630491, 0.14748381303660688, -0.16889790425097687, -0.14897991977721967, -0.07350808407805888, 0.0008052413174905199, 0.07596321876828906, 0.13908919799909286, 0.13783275350521132, 0.10634097855723024, 0.045529951427875026, 0.0037940715381882444, -0.0559820362073983, 0.07264695603125709, -0.08892375387356376, 0.1290380985065953, 0.13576615544695642, 0.12708290449941909, -0.10227318227396978, -0.05579366740707006, -0.00521740250313164, 0.06582778605751811, -0.10796606187946958, 0.1322100627189079, 0.12535248001729893, 0.09711552060036746, 0.06301219905568933, -0.014825979795429824, -0.03564749183920615, 0.07695040616440439, -0.0856922798514746, -0.06525540842496902, -0.02426278598596384, 0.009029468915869695, -0.04496451423513477, 0.05828233040972328, 0.03524077961174671, 0.04987231578708076, 0.04807514595203621, -0.04313180233961792, 0.03743791170519157, 0.02498632617079703, -0.00519007779151566, -0.017095764212560184, -0.03426768488570691, 0.04754597567383937, -0.049339489391204756, 0.043612928436245646, 0.0327929930387547, 0.017869175768584593, 0.0005373805199409866, -0.01596027422086039, 0.023879531841542904, -0.021264278221524824, 0.011095725210471228, 0.004968568010865683, + -0.06113809319677773, 0.1065984339039351, 0.12532962845167755, 0.11156522201145291, -0.06872405566860981, -0.007819948145140202, 0.0550353324588094, -0.10292117937189449, 0.12246738217454504, 0.1157166074279109, -0.07525637228389866, -0.015463211232132833, 0.04684338784399256, 0.09407000315894423, 0.11662692512195091, 0.10732950976962055, 0.07031683193835833, -0.013717243689856731, 0.047432970120969246, -0.09599601593959317, 0.11964678938801385, 0.08460606356117191, -0.037561875900699385, 0.1046612689820958, 0.14087324208081334, 0.14905616339599528, -0.12153226054299936, -0.06225624524512237, 0.015310707880533151, -0.09045082044288605, 0.14060007292160753, 0.16688685698858782, -0.14236866496892406, -0.08194413996577302, 0.005430432904603731, -0.07305543513126787, 0.13196386600665103, -0.1548235562743555, 0.1307814615536003, -0.0710299167501007, 0.00986884246116601, -0.08386500642634215, -0.1369291574448188, -0.11539922232994933, -0.005197036082642083, -0.037310889116426486, -0.061585160273131656, -0.09127677678417452, 0.10301935987223099, 0.09368902487452263, 0.04309459867316592, 0.021470772972907226, -0.07919954395689999, 0.1372960073252031, 0.14210425959245943, 0.10781372791735533, 0.04166263673437816, 0.03367757490946685, -0.1008657172693982, -0.14385120008866964, -0.1304847595976104, -0.08573965624750315, -0.015269642051420921, 0.04715785326689648, -0.09782832827224675, -0.09070883450719829, -0.0302258072129096, 0.019917639515975825, 0.002136866591076147, 0.05309391064802641, -0.08799933794921655, 0.12188218121964797, -0.0779788574976012, 0.010741025567799921, 0.057138241112148665, 0.13853027019858852, -0.15541249401595697, -0.12853026372531964, -0.04854526409897676, 0.03171676625842308, 0.10582129511296168, 0.16144682008951639, 0.13485445125746987, 0.07479435192288776, -0.015551328357962987, 0.08779807779638732, -0.13563624370271748, 0.1146913209257751, 0.001952871028299081, -0.0592702658687638, -0.09671270844838395, -0.12455348510430568, 0.12867864245138028, 0.10093944000425367, -0.04107480979318428, -0.032963922912659295, 0.09656771345184864, -0.1413501338004727, -0.14751653580090654, -0.12313083547709146, -0.08673009966557722, 0.02759791670641257, 0.037117532983590065, -0.09045523815811173, 0.10233223349690516, 0.07570710065680597, 0.02153166095573067, -0.024061354125741848, 0.07131873186840688, -0.08426417456243031, -0.006814199611907006, 0.01093550355295627, 0.02289224060987223, -0.03744546427211303, 0.046321817917889106, 0.045515207973641315, -0.027760790122899663, -0.00017082877409702914, -0.0279610836427547, 0.052203662009112195, -0.061738379055270354, 0.05962376690043062, 0.0483116404991042, 0.029115135886773502, 0.004880904887228236, -0.018711483836811246, 0.03152636033919005, -0.02930596847624534, 0.0157644633840971, 0.00720095402972952, + -0.12305570099478863, 0.013121219856682275, -0.12196479836929816, -0.025756089214469285, -0.11945912103450185, -0.0379973328805852, 0.11543793384516304, -0.049462890749256985, -0.11049166994702399, -0.06651969780068567, -0.10523213114501954, -0.07822136115241946, 0.09109704169586871, 0.0821147876250974, -0.0820836493894679, -0.0900279687497069, 0.07167680309449029, -0.09713805376793155, 0.06353140073947205, -0.10274724494496423, -0.053262213866408746, -0.0807549439205075, 0.14542971461398038, -0.053996615969668836, 0.13594006402197586, 0.0779969672255483, 0.1232365304233328, 0.09155946352922162, -0.11486920088252314, 0.10747139527506333, 0.10391946257686292, 0.1288987292998418, 0.09619777549653989, 0.14007841464206477, 0.07297914857980373, 0.14412035988144878, 0.05806907731343306, -0.1489015765150893, -0.04762564859510148, 0.1530363505828746, -0.03680822567933195, 0.1491062114867698, -0.021621098547969394, -0.1098992737758641, 0.06979946877612064, -0.0523841860391685, 0.058979170284107534, 0.09026336369019532, 0.04347611077656794, 0.1008515346336762, -0.04712899030770493, 0.11984968783817022, 0.03373269882237105, -0.13755142556470942, 0.03774618137942488, 0.14197136910529606, -0.027695261689509785, 0.14525986226428128, 0.012295871823775346, 0.14130262835485935, -0.015337186860908887, -0.1396626199985285, 0.008260234026708831, 0.12216099438607769, -0.0027205508447861616, 0.08732289322660479, 0.007170327480035883, 0.030522815714463705, 0.006490595514267124, 0.0915115521988707, -0.0028318588682481327, -0.10502300045261372, -0.022964391631036824, 0.1289786144249693, 0.01054058642014464, 0.14967260936641083, 0.027722571924894128, 0.1537774972047267, -0.037291418692166976, -0.16071157952753645, 0.01793523120866739, 0.15480095814188635, -0.04008522517769969, -0.1524573706580139, 0.04418147655758315, -0.13381797882079904, -0.03558294444394538, 0.10217196811462685, 0.10913942813714374, -0.06648279054595106, 0.09482040097466826, 0.09594668223964328, 0.07661775522493335, 0.10483925943359529, 0.0684061034389239, -0.11274837229249535, -0.06018529546109703, 0.12559838671117227, -0.050611425315768094, -0.13376658771847424, 0.01966565467731766, -0.1336781466986534, -0.00293776397264867, 0.1284757751092354, 0.0089386549623035, 0.1279421512356043, -0.0089964341500857, -0.11247622432967341, 0.01396175688699708, 0.06961715539389884, -0.030939574384027793, -0.0248360743023146, 0.024648079339644136, -0.04145115701768997, -0.01624610792619779, -0.0446331072234236, -0.014717599898205562, 0.04827136177617785, -0.011546607632811639, 0.052904462933758195, 0.008427850074545523, -0.054789442455703226, -0.0007786979685708469, 0.05449188638778321, 0.009008514625751434, -0.04952891120843253, 0.002250535691947658, 0.048850369038989865, -0.00016861777011941494, 0.031770935339583216, + -0.07183646479863151, -0.11676216907641625, 0.11799479066392503, -0.07530637275554097, -0.003904515332943361, -0.06886643610959307, 0.11584539479866304, 0.11925383931121117, 0.07799153426842724, -0.0035527640740666243, 0.07150870930154343, -0.11993971130946468, 0.11524516964245168, -0.07488620479177904, 0.0067891171894445, 0.06402917053375934, -0.10985365581438715, -0.11453656588576049, 0.07795434724822571, 0.012239271299807335, -0.0588786220554843, 0.07957261418778105, -0.11633969434655142, -0.1517259391770913, 0.12737775472267146, -0.04828838480691207, 0.043099656062935095, -0.1193269442658394, 0.153713671645371, 0.12479300053157047, 0.049264120844694115, 0.04999334873644214, 0.13262011342791136, -0.16546863691340888, -0.12711148238643996, 0.0478466884718937, -0.048966638462491316, -0.12579751636449651, -0.1583697669517675, -0.13192506643556173, 0.06074649086918009, -0.030273284730412787, 0.11188161810242284, -0.1081374002737423, 0.07866801628503285, 0.08294169276022814, -0.052066603235721404, -0.01945565156585335, -0.07471286065907258, 0.10598711666683046, -0.11344037141510442, -0.058205051362274364, 0.01768282181016167, 0.08857828765516926, -0.13916514845306163, 0.1373788561959994, -0.08847033527748195, -0.0038164886549856454, 0.08279782960835626, -0.1273611916241638, 0.1389293160221645, -0.09977827173864609, 0.030050415260565295, 0.042830752061700686, 0.10199138446412806, -0.08613354165734394, 0.022796613968572375, 0.005427821529676701, 0.010814007090662976, 0.05336972722814247, 0.08808830673972036, 0.09782093407167583, 0.10427639586103303, 0.03714131709812849, -0.04130065261575813, 0.10304165425606353, 0.15145936938974697, -0.14254774561504033, 0.10544090275396018, -0.013503151182723551, -0.08478360168494617, 0.1306545800180097, -0.1577813309585363, 0.12839828823599023, -0.06904702518931692, 0.009406125510639522, 0.0902089496552553, 0.09797356931170327, 0.10670019122602915, 0.12295619913774697, -0.08823905103609916, 0.008080097540890119, -0.06699135443697962, 0.1175198013862486, 0.1265681441685465, 0.08476511548384073, 0.011614493086620239, -0.06878053098551698, 0.12653242140264487, -0.1362633420001874, 0.08250281086622656, 0.004652572717825976, -0.0741693060257365, -0.11668227104162156, -0.12700978167722343, 0.09232256313119652, -0.03142372629022924, -0.035380936524543466, -0.09321194622304958, -0.06662489135433065, 0.035190978873347864, -0.037132071994694996, 0.02273614584008366, -0.009196795308909851, -0.03351944196307747, 0.046202398067464547, 0.04447046127876749, 0.022532529142087136, 0.007625792670733339, 0.03575196391988024, 0.05309000265048946, 0.05005846984274701, -0.027301726350688938, -0.0057677947722522835, 0.03651558448481493, -0.04685161208601944, -0.04770104882938002, -0.03264715746854004, -0.008799980476682116, -0.028751641054284783, + 0.045428885842556506, 0.08450109437297751, -0.11185741999021045, 0.12356462779984602, 0.11728581513429391, -0.09455837577446326, 0.05885484063034904, 0.01470210317819131, -0.031473909605167855, 0.07243958354182195, 0.1061406999467366, -0.12496559476292902, 0.11785328918410086, -0.10195263452584319, 0.07193060957202906, -0.03247932188750413, -0.011523577353656674, -0.053990284070844635, 0.0904573541250242, 0.11257264694701324, 0.11825452348146372, -0.07880779274607888, -0.02124798139770305, -0.07538204808288462, 0.11605089129967279, -0.13942145604716635, -0.14938679048424644, 0.13917359663872353, -0.11500603450888658, -0.06928124841879257, -0.01393710115249128, -0.04555297623825419, -0.10105506472878933, 0.14238125588159725, 0.15565215635940768, -0.15554501207911833, -0.133830084263712, -0.09130237557490758, -0.03695946282861541, 0.022345262936344062, -0.08265764982487253, -0.12501681143678797, 0.14840232638465872, -0.10737829632204124, 0.013365664428298762, -0.01856654554648974, 0.04326798569303933, -0.06574984207033462, -0.09047536749142522, 0.10607500552619943, -0.12275491194923108, -0.10137955016181786, -0.06606373757249027, -0.008554608867521516, -0.04537770049792723, 0.09303105780737818, -0.13086438728631533, -0.14605917067387061, -0.1409776953497182, 0.10249152539763867, -0.057630169401761425, 0.0063235551189792, 0.05047768268149072, -0.08932829980718895, -0.11423142564934595, 0.08606236143904894, -0.03112008072534533, -0.025956175950414342, 0.014610245467341812, -0.026427693576269135, -0.05777089580154662, -0.08970057860777308, -0.13120759376737648, -0.1166096191813864, -0.08623216542214197, 0.018652050309958645, -0.039102718578941396, 0.09162469419040938, -0.14995473561645026, 0.16279099955821733, -0.15292946999552323, 0.09473846184355043, -0.03851717092729484, -0.02012038351261544, 0.09032371238633644, 0.12664062156945535, 0.14105821168590446, 0.09552289571830822, 0.0006468402263279712, -0.04523151875690626, 0.07988636025451532, -0.10479408113129876, -0.1233260366729034, 0.12521129808081913, 0.11336158193252979, 0.08177600900309889, 0.03882716121917668, -0.012936161105177237, 0.06327927112752155, -0.10493346650152222, 0.12312440085060877, 0.1336583109087772, 0.12536510010095814, 0.08995723027443112, 0.0494188901043711, -0.002873600785750949, -0.05184589645631511, 0.08670070397030682, 0.10829485530392015, 0.06557600414576893, -0.004696061209153295, -0.009708745033181507, 0.02011206752097713, 0.030161925686505983, 0.0406434150762298, -0.04632168796067293, -0.0483757748880039, -0.03977193986166509, 0.025695725904417488, 0.00518800147080801, -0.015265482468733521, -0.03371504919899135, 0.04709079336322312, -0.05382522470341843, 0.05292514973892241, -0.036773695665032545, -0.021764839784979853, -0.004528282779121184, 0.016929620476026606, -0.04341436099996777, + 0.12092712834613904, 0.04615298856308522, 0.10371258663306308, -0.08549782612600222, 0.07142518628292101, -0.11282546606664978, -0.02728737518207152, -0.12349128656299226, -0.020679364725542018, -0.11789155096970633, -0.07011905861519589, -0.0916701878569428, 0.09848964420375558, 0.0477693931278591, -0.11625608554790538, -0.001956955619718647, 0.11612724413451991, 0.043263634365929046, 0.10077099013895575, 0.0791687029795973, -0.07159933527601946, 0.07832922486968588, 0.1390979128084527, 0.08749357737379682, 0.10251039815959816, -0.1301242680709387, 0.04667498477556374, -0.14940951577403644, 0.018297828239807655, -0.14598893248346242, -0.07472340033436767, -0.12588973472451725, -0.1290043797614831, -0.0775208519747157, -0.15339404545114776, -0.010433693188256979, -0.15685895472277772, -0.048462226697295815, 0.1385521620528582, 0.10218639403767642, 0.1020896469178023, 0.12859373962088907, 0.05594172363679166, -0.10744736633903594, -0.06455713351547157, -0.06699271369772716, -0.03311827848175802, 0.10212215165083591, 0.017989610266629125, 0.10094519153283384, -0.07033346231603449, 0.09036458084388024, 0.10313511364412745, -0.07449862769721534, 0.136692160790751, 0.0218769651239463, -0.14646315777135516, -0.029430065362122355, 0.1361102196537464, -0.06874404067553971, -0.10868624957722466, 0.10820696464234815, 0.06890283650121026, -0.11123963121156662, 0.028788415836438867, -0.08703546658799848, 0.009851014167348718, -0.02766757883126531, 0.017599622327275542, -0.08572443458283491, -0.048670221856170696, 0.08072609779283858, 0.09013224505328403, -0.07659773854533539, -0.11647127003695554, -0.07252903397460703, -0.14853416300650132, -0.015372541691303147, 0.16180949957995422, -0.017449372183342277, -0.15748959567372786, 0.04962270264349649, 0.13844137562038045, -0.10107022403929361, -0.10712026335843333, -0.10382374146862096, 0.0744019349861789, 0.09442775300815687, -0.10629402534661454, -0.08201772753445812, -0.07070871361843953, 0.11946648182287348, -0.01776138470239476, 0.12683116038867134, 0.03653774556962576, -0.11476135933120885, -0.08327943533485418, 0.09005961169978151, -0.12048159627110566, -0.04755413807463605, 0.1338969716824118, 0.010587545290485691, -0.1286840209201512, -0.05102700652889449, 0.1036972840018765, -0.09600160976452421, -0.06996222768513556, 0.09488951704885733, -0.04732128893616379, -0.06594384325844853, -0.030572766979367335, 0.028129444490644, 0.017240278484250617, 0.045245375997221796, 0.004283047072113362, 0.04487446830387408, 0.024376307142333273, -0.0378582077339178, 0.03992984812240281, -0.027415266137181347, -0.051304684640009646, 0.009674549610562919, -0.05473615639269858, 0.009132382360137716, 0.051359583120416344, -0.020422727840041816, 0.03836172510785842, 0.03865408392898195, -0.02430201476708021, 0.023334431721322327, + 0.08524552673230634, -0.1236578140012989, -0.09469529003869251, -0.01381613660057542, -0.07487313041417615, -0.12183504421609914, -0.09985048553785444, 0.021467558117940357, 0.06896830286600344, 0.1252223964485021, -0.10790618280092311, -0.031349541482656375, 0.05981034477887501, 0.11425752649551826, 0.10540208171332204, 0.03677086114373761, -0.051561967831373866, 0.11076580511965876, 0.10868455307492747, -0.04906047152242443, -0.03860508787018156, -0.07819408386721627, -0.12761483786899036, 0.1509659866180799, 0.08873668333019619, -0.023939330756023967, 0.11925104325759803, 0.14942464611966308, 0.0878012866286166, 0.024454210657211987, -0.12249030815065882, -0.16452349370239558, 0.10807294817498263, -0.007538468180920586, 0.1186992596091492, 0.1577610614592041, -0.10897329464421808, -0.00011107602707573477, 0.11029890298152034, -0.15785389797866062, -0.11902135379149899, 0.02680568290978069, -0.0833227857075247, -0.1087700036788396, -0.08189037591426174, 0.07547647478799879, 0.022153813462437066, -0.06070673532321174, 0.10189343574027952, 0.09255222560007152, 0.01733565470723456, 0.07340940504876359, -0.12209136061039699, 0.13130858856626604, 0.053981245363446395, -0.05435244818350631, -0.13128450191670912, 0.1398641913462615, -0.07155936549197872, 0.029233304095356554, 0.11517629568264089, 0.13762139465559595, 0.08447428530861026, 0.006110325259496356, 0.08039910305046656, 0.08980856851022008, 0.020608502673742472, 0.002435891817492121, 0.018912206054713318, -0.07576986536595422, 0.09462517330910647, -0.07750067974175867, 0.0007788311939365949, 0.0887712349769463, -0.1249136561839927, -0.1362829571060629, 0.051713251902185224, -0.06336184065729465, -0.13724645939796848, -0.1626002039715144, -0.10284291956487375, -0.0050793054309263026, 0.10463808522803003, 0.15307563086474316, 0.11720045032206262, -0.051644043891496634, -0.0523120046117048, 0.09563597541369101, -0.11180647925631038, 0.12283723378168335, 0.06541159297585308, -0.03306592869809556, 0.10724872810960666, 0.12360499480229152, -0.06363075839816558, -0.03605417928051313, 0.11394127556672831, -0.1358707200176536, -0.08070155543013689, 0.015824576727675472, 0.10668142799420298, -0.1365265786842869, 0.09540105630322795, -0.00693454735018824, -0.08786233274159402, -0.1241548264815753, -0.08810389507972552, -0.03558898599282341, -0.03800554805318629, 0.06858049783342832, 0.03648253102763561, 0.03711696846430058, 0.015954209963105665, 0.02105395262332312, -0.04311350416540947, -0.0435185366134274, 0.015666467354996515, 0.023269773127765958, 0.04771277122033343, -0.050601495685585834, 0.024578703646276522, 0.013810703772155814, 0.046073996264539084, 0.056860729157841565, 0.04063527913053154, 0.00881055065900722, 0.029922343609499278, -0.04575277587659711, 0.03320485077922124, 0.018086643470355615, + -0.028810419029320553, 0.05624224260479532, 0.08134502239447092, 0.10217861901859158, -0.11773262072860739, -0.1267147806770072, -0.12728976063762865, 0.11952161813303241, -0.10369720858539677, -0.08697256729134432, 0.063107343300822, 0.03626452328751514, 0.010077868573957887, -0.017557694235661163, -0.04414187468194162, -0.06794312235456351, -0.08804619799259886, 0.10204543821770937, 0.11066868855535936, -0.11546822633129275, 0.11383755772829382, 0.08023440531288631, -7.245926253825197E-05, 0.036827891500246866, 0.0698298734835372, 0.10510057649199858, -0.13580453429499229, -0.16009205395327616, -0.16458247475917642, 0.15905720619702585, -0.14304898473425634, -0.13155854911641443, 0.10793464110756242, 0.0796466984247635, -0.05208211467685431, -0.018749740015821477, -0.015519779537876175, 0.04847313589283633, -0.07709816357199124, 0.10052214105554833, 0.12115370212692407, -0.14300559050515058, -0.15613712046706715, -0.12099236669852056, -0.025100580111457393, 0.00043126667247384877, -0.021731722959430492, -0.05652859230326715, 0.08879870448904416, 0.12361867432197929, 0.12232866663266026, -0.11951940771875696, 0.11039922788622701, -0.12038540598450616, -0.1107973936804559, -0.09368271384451453, -0.06850577310741282, 0.04216956590124051, -0.013699688025041373, 0.013738424384052081, 0.0400567811435765, 0.06433658679631919, 0.0902113980351881, 0.12071126426447473, -0.13910170383485546, -0.11133444837985264, -0.028052430129822413, 0.014521055493356267, -0.0008290779414515514, 0.05145609863879568, -0.09487534846127339, 0.16093281893428488, -0.14815312325057595, 0.13367957755823714, -0.10933570770790539, -0.11637619622978732, 0.0993353669094064, 0.0746896923850577, 0.034904276597364885, 0.0017709989990366349, -0.03183637064503955, -0.0654536191903385, -0.08059146627573605, -0.091032888016342, -0.10078127982298604, 0.12411661097026022, -0.1325223150797486, 0.10432065332233957, -0.017679249775721797, -0.014949070590333017, -0.044366195889749466, -0.08156294902947489, 0.11853754359599226, 0.15120312584191573, -0.1632720253263162, 0.15689898924697102, -0.13296142582297993, 0.10781082943694599, 0.0762216215328931, 0.04467811342556336, 0.018175784361040746, 0.00905662596734063, -0.035887750274362, 0.060422570793760295, -0.06938834545203641, -0.06623500157792285, -0.058324248874971875, -0.06585958306898616, 0.08074019831857131, -0.08208940622320687, -0.010513695372717517, 0.0013029381031752908, 0.011447623591835435, -0.02753257209114116, 0.04416561720529363, 0.0612899489579152, -0.06590860233786731, 0.06204979027226568, 0.05030762622532664, -0.039874881261118635, 0.027071370550654027, -0.014728791785097317, -0.0032209755414115025, 0.008090229594679268, 0.019659410919227384, 0.032242132015790265, -0.03308076429491375, 0.024814522005888896, -0.011396672730566984, -0.004677055127778202, + -0.11637819840144477, 0.07702497766581255, -0.06539574842916758, -0.1195269077645912, 0.013556243730004976, -0.11047367883895554, -0.08511271085897625, -0.055130671954790045, 0.12078422113333917, 0.029656413991232124, 0.10147273481128145, 0.09727004464608849, -0.030475848998366813, -0.1160762093624278, -0.04598206817053964, 0.08670195161677743, 0.10285891684959972, 0.02017125891435207, 0.11775517719850954, -0.05899104800280405, -0.07994376973043209, -0.08359476561026705, 0.1221447982051619, -0.12046801426116843, 0.041450307567308435, 0.1587624967321197, -0.06241999554688061, 0.11890616556027271, 0.13096647089323613, 0.03317734279561758, -0.1520024976030882, -0.07959651090661334, -0.10170830313412865, -0.14782260909347417, 0.00458319978988394, -0.145531749800552, 0.09985052198201694, 0.07875149406638834, -0.15036345344243215, 0.01896441806472721, -0.14510867891238274, 0.11898341368372485, -0.06993630806697287, -0.12098210744775816, 0.0677331098803245, -0.09403961931940502, 0.007805214216734949, 0.13738027676648296, -0.07597534117263044, 0.09128277006339454, 0.10603550520448173, 0.01700290931033729, -0.11504564370638572, 0.08393606180352033, -0.06608739321955266, -0.12744479363477018, -0.013618313422228995, -0.1175720933821961, 0.09182801526893572, -0.047853144733467974, -0.12336807148603254, -0.034566433710731814, 0.11322593043526029, 0.11245209867051836, 0.046506679586944266, 0.1037097521257894, -0.023710316487023594, 0.053069640939484096, 0.005727424334154062, 0.15688216009450923, -0.08990417489208342, -0.10618216538075881, 0.09345506633500586, 0.042808633693115286, -0.11715288626943787, -0.0720310781225362, -0.07470130185086568, -0.12124766881720561, 0.014760536882012926, 0.13069786194633726, 0.07485576493214591, -0.06389584819698955, -0.10852708153392752, -0.00814737314155741, 0.1217416060668707, -0.09925699521463252, -0.06725081141611773, 0.10795364301124394, 0.07429254192912634, -0.10566145905218685, 0.0022297247850986846, 0.12463204284813778, -0.07968956100302636, 0.07196536752950433, -0.11867950771725078, 0.002074453106228604, 0.11742365149931808, -0.08656799031574838, 0.06193905566565696, 0.130891117709875, 0.042680448296400414, 0.10280261101294133, -0.11224801576897922, -0.021545487350856193, 0.12431573551955177, 0.049706464630749035, -0.1144844242615105, -0.13902266004997138, -0.013474079464870059, 0.09906900590537633, -0.01682647049970736, -0.04003450596189436, -0.008873306926296823, -0.04758989685340533, 0.037851752445983045, -0.022483842222516336, 0.04611668971028425, -0.00640313671659887, 0.0420849797491526, -0.038819438112479634, -0.01748263150415102, 0.05179453336495653, 0.02071889938082361, -0.03660022062369296, -0.04689620167800534, -0.0019040710189511033, -0.04545539717046386, 0.024496034160605022, 0.04327293792762446, 0.052351902480367245, + -0.09694839886884038, -0.11963374752635295, 0.050531410481824766, 0.056638587595288364, 0.12037426231867819, -0.09198637534627642, -0.006256630694554675, -0.09980223260798138, -0.1170303846251617, 0.0393536919619094, -0.06612537934093642, 0.12118440066471, -0.07537897266702846, -0.02363678501713587, 0.10410864817069744, -0.10619990271275428, 0.026434031497323308, -0.07373096592934268, 0.11971724013132658, 0.07250559137284415, -0.0314146228024632, 0.08220584530438392, -0.13656539854173855, -0.12970362675215888, 0.023379182102783162, 0.10941057167484011, 0.15866519152164824, -0.08695406678959251, -0.04460151531710176, -0.14304917986418603, -0.13198062676518163, 0.009154537071154246, -0.11807730352943578, 0.15485680471451893, 0.06456022033458379, 0.07200454918025728, 0.15316992585362638, 0.11488361492806554, -0.009810435931013705, -0.12665461434901212, 0.15583001341321334, 0.061192152873496775, 0.08454600500187003, -0.11846307701451815, 0.10093953123623677, 0.07524464562756893, 0.005486797772291572, -0.11111463227442236, -0.13844997481820068, 0.06015903417073714, 0.0421463931933751, 0.1132316863669135, 0.09685192649514099, -0.013484574558776077, 0.11000955050396274, -0.12251890578251218, 0.04506515154207844, -0.06800009404672008, -0.12955687321637296, 0.07963637079559129, 0.02711396735036082, -0.1109905683874785, 0.12664372768881155, -0.039497397491732256, 0.08440285737382143, -0.10129806983746241, 0.053979935114481944, 0.028830791642603028, 0.013224817475330816, 0.1236829915832103, 0.1603905559228645, 0.07504113087528554, -0.015327422049648154, -0.10331802828776893, -0.11077963827242118, 0.00025627011467031606, -0.09927040463148089, 0.1231750086795905, -0.07419011138304396, -0.04189196351364501, 0.12702286443895242, -0.09046277645342857, -0.0007194287188036531, 0.08776171225192995, -0.13308787850999496, -0.06230865112197072, 0.06570197053709868, 0.10311647411596085, 0.11088759928428331, 0.08322959560634899, 0.007351682523647137, -0.10616434657978373, -0.12525624417820072, 0.0485275405806003, -0.059804353396712334, -0.12292694921118096, -0.09329526102945458, 0.014475222236717798, -0.11122523111394132, 0.12192168605899066, -0.02695772162949853, 0.08578950245247931, 0.1314959459956196, 0.06733665229759953, -0.04217428257724759, 0.12007730655641974, -0.132313659065056, 0.03091467760749265, -0.10775404568517569, -0.09414885284985997, 0.03997416604883517, -0.02115186711201851, -0.011810731415330978, -0.04615161593483828, -0.04849775776737667, 0.013525834689506811, -0.027095604004702064, -0.04696134765546467, 0.03151896233986404, -0.01198467915457238, -0.046592070212721624, -0.044905631162407686, 0.007476190335472736, 0.03567327303884719, -0.050836100710739726, 0.019721660170889686, -0.022230285979171024, -0.04797812333873615, -0.05169871180705183, -0.012246098578066671, + 0.01161531148332757, 0.02314180837605485, -0.03453179530970862, 0.04562298562724, 0.056113399315728826, -0.06611843747860872, 0.07566500334236773, 0.08436222876423001, 0.09221821353132463, -0.09555552877283868, -0.10230342214388019, 0.1081722752576569, -0.10589813985026533, 0.10978922924886335, -0.11283737070820903, 0.11620365073156852, -0.11746888221594635, -0.11751866165972273, 0.11874406907610877, 0.11762144826555246, 0.11464555654240671, -0.0813669069475772, 0.023625559425322858, 0.009677841768263817, 0.004173938041307182, -0.018817445721328097, -0.033652589528630046, 0.048537238659830305, -0.06426089336390814, -0.07705052198091521, -0.0890192283000904, 0.09454980029109866, 0.10615165196090313, -0.11675745388445417, -0.11989560406925179, 0.12856155160737823, 0.1362774594568333, 0.14028635505604845, 0.14538454034461912, 0.14940361523431894, -0.16157441393732613, -0.16618872637618912, 0.16618390132886082, -0.11727709557630263, 0.039040356894547816, 0.02985241540872912, -0.018901757739546617, 0.001817162854867924, -0.011584841209120728, 0.026008330382725073, -0.04263495699094033, -0.05267306225969661, -0.061935271719776905, -0.06161917635461983, 0.0723281177488748, -0.08218326796093665, 0.0940922508075513, 0.10219426800073814, 0.10966189468434984, -0.10461938528062296, 0.10912439836763893, -0.11368734339237506, 0.13449402467942914, -0.1422702775591193, -0.14365280122061305, 0.10040671107429086, -0.03305643835869508, -0.028667243430559503, 0.020139154877663778, -0.006832606415574832, -0.022349791756306112, -0.042028641933417474, -0.06985418145435394, -0.0780647413605422, -0.08513152335205196, 0.07250189788227887, 0.08238059779265497, -0.09102475920479584, 0.11643197053066924, -0.12243852178055215, 0.1277661019477757, -0.10787928259434341, 0.10850438286205227, -0.1101439004008987, 0.13722653069144816, 0.14508116344339053, 0.14437609331643622, 0.10050678188702067, 0.03978913123781952, 0.029540408059812614, -0.01821771227482457, 0.004203481598651938, -0.00814188770050232, 0.020526894323110605, 0.03280408036131484, 0.04391438670316237, 0.0546429573115977, 0.06247074905308942, -0.07322329999476135, 0.08330458137866634, -0.08589912540904311, -0.09477128205270503, -0.1028604244929076, -0.10115050206852397, -0.10717845187498816, 0.11326682827337982, -0.1432653449879635, 0.1541043879910314, 0.15811367694873668, 0.09251319171065549, -0.023515598842661325, 0.020211661820497554, -0.015146117481453147, -0.007126563290790104, -0.00216260187808515, -0.0029142786902543877, -0.00769359676517466, -0.011985592672610575, 0.01615815116585108, 0.019131438563953038, 0.023617983803760276, 0.027869003104464853, -0.031667182742557504, 0.03530466248473442, -0.038700737754051216, 0.0356950464617506, 0.03811726345474139, 0.040952134293288506, 0.05701483088385511, -0.08338027548727991, + 0.10949995802447751, 0.10030151562442617, 0.017915816146239924, -0.11604334608352711, -0.08807841850540434, -0.035126700986738306, 0.12013945810787914, 0.07519627507239124, -0.05087162851175803, 0.12083113810921126, 0.06478612739201714, 0.06195483431184667, -0.11671045524392112, 0.05289228713922079, 0.067724833221518, -0.11606468220043403, 0.0379649714137848, -0.08136056820773334, 0.11488970980762334, 0.022998937453109818, -0.09503891139955795, 0.08083533142732025, 0.11139668704570507, 0.13794902741533072, -0.015069403908979297, -0.1335349914412075, -0.1384410782165923, -0.006830539736064031, 0.1407313655488729, 0.11941274058106131, -0.03063423996797744, 0.14823422242672005, 0.1142653814253448, 0.04430684841675227, 0.1515399005504609, -0.10302583623973978, 0.05651702889145416, 0.15298017880764703, 0.08746581160913768, -0.07205116976597581, 0.1623595702578591, 0.06946258955428115, 0.10321891428116067, -0.11698567489763623, -0.05969597164803292, -0.10079382768382832, 0.031685226663330214, 0.10884750558482802, 0.13119278712027785, -0.009417048258093488, -0.1059770311091704, -0.09652342094087128, 0.016432355532664044, 0.1151547498882184, -0.10613106001693064, -0.018084737082720632, 0.12384933311212101, 0.0913085800711044, -0.04069219197970186, 0.12052679779889176, -0.08433192158069872, -0.041088027730180415, 0.13691738566257997, -0.06948501278605682, 0.0799312618337614, -0.10068592674650834, -0.019314316158092433, -0.05342847238393605, 0.02600486709500998, -0.13208911343467786, -0.14520621602538947, 0.00858945321875879, 0.11889734552826961, 0.07685004035049572, -0.04509623761386264, 0.11830698673647201, 0.09319956680863596, 0.033543982224007604, -0.13328053967355935, 0.06534854761346828, 0.07530556683468734, -0.11522970228474355, 0.05486909848402189, 0.060662452855348076, -0.13461435566047084, -0.045922120136112764, 0.1026142675736655, 0.09931868812519362, -0.07011597574516541, -0.11001184187109467, 0.02872756888034888, 0.10117404001976336, 0.119629565183182, -0.008288226455634807, 0.10709332221912798, 0.10664167739959586, -0.007645029964632882, -0.11663459352778299, 0.10402443632923777, 0.023758827367145602, -0.12400018781977103, -0.09704073502604765, 0.035179731494065655, 0.12218563915581353, 0.09166202831013247, 0.033969643786547245, -0.1472299010200074, 0.07411626332020584, -0.09633469833231777, -0.09291538898495733, -0.016255147332533235, 0.039882908458391673, -0.01814305535458609, 0.03771295446369918, 0.050022443085181584, -0.007712406196690088, 0.03807532578400556, 0.042287906032486444, -0.0015956826901341635, 0.043030813189107106, 0.04365302899300009, -0.004316276275367674, 0.04763833134294222, -0.038100318394059404, -0.013474271415579778, 0.0462207024274762, 0.03799805733393233, -0.00809591432679131, -0.05917281792900214, 0.010005050142049781, + 0.10671084814285185, -0.10729571062249726, -0.0014355075123739323, 0.1051713275343128, -0.10711480171779877, -0.0019793732859727537, 0.10482616019579968, -0.10611778585630961, 0.00040681836470502636, -0.10695555356027536, 0.1035149062011886, -0.002885597234454932, -0.10569868887192856, -0.09605350757728263, 0.009129424467523312, 0.10545690563413426, 0.09650564820173456, 0.010097710426845284, 0.10819045300300434, -0.09929480381832988, -0.009400374162904002, -0.08063862668419448, -0.1427846144184919, 0.10840309617194703, -0.03299471766041885, -0.151520893749606, 0.1177370128278679, -0.03426512512591684, -0.14596541122564344, 0.11342141659933372, 0.033094437227693646, 0.1521874005066148, -0.11125252287307744, 0.040179039315866534, -0.15301938231319062, -0.10472069087214039, -0.048060677642141024, 0.15143051381115516, -0.09837135865754182, -0.05359950374157122, -0.15800623745232742, 0.1130206760264149, -0.04815622704013005, -0.11781086744599445, -0.10229608438281938, 0.05620932028511187, -0.042782579653627535, -0.13784603696186526, 0.09505307739409445, -0.043929171735655866, -0.11661030562593859, 0.0830649025422746, 0.031922256933689164, -0.12803555277067824, -0.07845961722816806, 0.05066335666638177, 0.12807445072986157, -0.08193097952170159, -0.046175194362867746, -0.1263561273399007, -0.06461341133939166, 0.058771526826034114, 0.13321060989549063, 0.08992399170959364, 0.051303048649612236, 0.10259323975560959, 0.05330145511147178, -0.016817227067166454, 0.029854516233745278, -0.15268229400160901, 0.12592567074049557, 0.021402472702229475, -0.10630913588338249, 0.10366937225125553, 0.0024879728104242344, 0.12025680099285638, -0.08973213425500484, 0.03239580902225281, 0.12065090499701919, 0.11186693057937451, -0.006374138591838637, -0.11165148151100655, -0.08094209001306008, 0.028029929671456136, 0.1243228156759199, -0.11173296544262522, -0.023353544015700688, 0.10005536663197562, -0.11288766489843598, 0.07147502627264982, -0.036887000803145845, -0.1268773253495825, 0.09332031082860089, -0.0328382666514169, 0.11975202176357114, -0.08303801085221792, -0.040299786929930664, 0.1285922045239748, 0.08583590319878166, -0.03963123459972284, -0.13211047891218725, 0.08963060628307724, 0.03886091563959923, -0.12530656861715395, 0.06445674238634026, -0.06619357877334492, -0.14458713642456467, -0.11349920371092377, -0.025307721371849612, 0.09616970272515316, 0.04058862534340489, 0.017418337496765742, -0.019902721666387888, 0.05202354669498776, -0.03543078806065937, 0.016176321071677883, -0.04583714316527594, 0.028277436010572362, -0.019007968966059174, 0.05089298950818956, -0.030347295553419237, -0.019144161324898365, -0.05137568598673026, -0.0362576264678508, 0.012462319030272305, 0.04830193738676153, -0.02267694875727232, -0.028978366370506155, 0.05887830249235532, 0.04598487635636483, + 0.005812276600977985, -0.011656402795925084, -0.01764164634564042, -0.02363494242822596, 0.029668031044715246, 0.03562004238784256, 0.04108664212502305, -0.046045698988675964, 0.050331812511568166, 0.05702327136749753, -0.06193808641474172, -0.06735642127307091, -0.07709219945864991, -0.08150633045463365, -0.08600327046979342, -0.08949265997205162, -0.09305558683970051, 0.09506456307351126, 0.0970133645829814, -0.10084752059676164, 0.10444741074390469, 0.08152263032834693, 0.042567343451046666, -0.048657990738059424, -0.05349117612982881, -0.0616417798482053, 0.07091167660172162, 0.08057061767922938, 0.08453426419809855, -0.08788295552156875, 0.09006854018377863, 0.10024493755778886, -0.10621806512456153, -0.11339953558727332, 0.12733596888516027, 0.13422303797055343, -0.1406523332243902, 0.14555003969227298, -0.14418083125752487, 0.1408961291634839, 0.13976472425948716, -0.1488923931502805, -0.15652781565333676, -0.12336244411978581, -0.05097951278228619, 0.052778621610819504, 0.04721894490408312, 0.051854102921947795, -0.06213187232691551, -0.07697785138982116, -0.07394856758305726, 0.07377820378821102, -0.07356809828988642, 0.09057103544395577, 0.09711267762655193, 0.10229236689882037, 0.10424421891992915, -0.10983165602115846, 0.11620465158369961, 0.12693389116097153, 0.12018829226055061, 0.11568868483404732, 0.11572171268128793, 0.13209372469175845, -0.1413176805835206, -0.11173591623133787, -0.03798590161391874, 0.03568428928365296, 0.02391109692384241, -0.024227943329870584, 0.03660837506081007, -0.05930695191907543, 0.05610729657152781, -0.055552198404747954, 0.053587302335095066, 0.07139764234946316, -0.07683337828981156, -0.08064410188321311, -0.07348787300707518, -0.08235505062849795, -0.09445003658160334, -0.11704205040897654, -0.11002472779416227, -0.10346289936989513, -0.09931515379569511, 0.11613765897287642, -0.12480538536173057, 0.10370200104805062, -0.048677827496527694, 0.05065412249717487, 0.051202503275843664, 0.05831065745403084, -0.07014911077682577, -0.08315266992239982, 0.08931158679282399, -0.09005849231643634, 0.08544864230201853, -0.08500814415187717, -0.0839420608548627, -0.087818129605779, -0.10680985434469929, 0.12551764981727268, -0.14895609698407408, 0.17421330135837246, -0.16304688205541354, -0.13202353422003862, -0.09512021269792255, -0.09177455959895142, 0.10252236110459804, -0.10277115972147648, -0.025659034441267877, -0.025376013504189998, -0.022775094108861277, 0.02435516354903694, -0.030166534016790963, -0.03781915406271851, 0.039910803921613065, -0.03892380816622813, -0.035017434954399754, 0.03415317429591882, -0.03297125328597085, 0.03432497833235075, 0.03962826801536575, 0.049044077802115706, 0.0629164382260014, 0.08445618123959951, -0.07969715920678111, 0.0570979806163409, -0.025304322226499285, -0.010123527548289154, + -0.10043007524314818, 0.11696150689223217, 0.036166679889401324, -0.07431466435106658, 0.12272205128731019, 0.06786169925225044, -0.044446374447688244, 0.11911889671562619, -0.0924274315548053, 0.008422087456911793, -0.10120042258468732, -0.10985238983197262, -0.03375088907302927, 0.07373367091942942, 0.11898517594122288, 0.06292675187961357, -0.045168441749790865, 0.11496410946251098, 0.08805025246973201, 0.009923976744531788, -0.10057878987480595, -0.08035341066332963, 0.09901327119906168, -0.15325523331153945, -0.07709973410075714, 0.06730823822856646, -0.1509027688420452, -0.10831985952020008, 0.029078698324366308, -0.14487204372295806, 0.13737948494017257, 0.024602146323125275, 0.10805696608861667, 0.15132916707531593, -0.07659706498429729, 0.06703599530127159, -0.1537860795055797, 0.11052820942529212, 0.030645585137214115, -0.14536614295429576, -0.14066180904693523, 0.030979170678866887, -0.10839742830648133, -0.11616196314793409, 0.06099252055095723, -0.11811402171141704, -0.06468052306292936, 0.058988317536131, -0.11714737885907932, -0.08262717458467152, 0.02951578097849423, -0.12769020740983208, 0.11779734354531392, -0.030947834756228247, 0.0801659684583445, 0.12352493919320277, 0.059181637509563054, 0.052499061809933384, -0.12092820800501235, -0.09351119728016341, 0.028808967642438614, 0.12471433913379, 0.12093942995131227, 0.03833211204062696, 0.08350160235916106, 0.0990641545476061, -0.03540092636585943, 0.07680331755667569, 0.03761476112460546, 0.10801149939113716, -0.12965429210477508, 0.05853346480369223, 0.057717161031765364, -0.14707857169261931, 0.10907773300062468, 0.006443650579610614, 0.09217035259727772, 0.1125314007543217, 0.020858608811935, -0.08160290511584309, -0.11886364873541949, -0.0730260119754088, 0.05889378973980163, 0.13697875291641723, 0.10043736944340992, -0.012893103918753982, -0.09376438518111513, 0.09323630824056951, 0.06737871173933253, -0.12783978100647134, -0.07929529637766114, 0.040576857875607865, -0.11910365892035851, -0.09911446099928693, -0.00815757405338282, 0.11007264200987467, -0.11442616188086709, 0.02715061201293963, -0.08280381871064137, -0.12788520968529407, -0.08511088023732435, -0.029846414601245597, 0.11964188586769946, -0.11120712659762473, -0.011806281910743021, -0.12296563600854082, -0.13583665456163477, -0.07561569458134332, -0.047446612239879386, 0.09638255086704528, -0.01822362562420297, -0.0496226164619765, -0.035436459533285315, -0.01337127647850275, 0.043960367599176896, 0.03972974343681619, 0.0005243787330928614, -0.04219660691745347, -0.04587205204276941, 0.014363247429774476, 0.02899174233647357, -0.05018037912932352, -0.03388232758862031, 0.008002580026565313, 0.043597884939163334, 0.04769411268804056, 0.0012022561990650714, -0.04815463634407785, 0.05719916928978841, 0.03859039877492073, + -0.11433747906574544, -0.08507212708122011, -0.051388259679296694, 0.12272191635761137, 0.03956749972542464, 0.09306471819857351, -0.10919812763757751, 0.011532310389113187, 0.11769355311007137, -0.07147947614124953, 0.06089558641622568, -0.11707670400050378, 0.018782503948561534, 0.10266717147321788, -0.09502354811062559, -0.03101616945696209, 0.11713212770321127, 0.0567595483920265, 0.07563086580730308, 0.11037227750954894, 0.005795108623261878, 0.0786054431919605, -0.1520391024121935, -0.07571553670170213, -0.09278669513226553, 0.149022914166566, 0.023934121596367163, 0.13244169451519833, -0.1263685535707573, 0.04350223903395879, 0.15837411449494354, -0.06322989700637488, 0.10514053214530858, -0.1415276980940828, 0.007340455441600856, -0.14786758477236145, -0.10295953068474953, 0.07101819112389507, 0.15901226709983038, 0.04829823497155128, 0.12810519373475615, 0.13181479936910345, 0.03347764569737903, -0.11278390702750062, 0.11950137597487426, 0.041827796459659325, 0.07806235047347274, -0.11541808910918197, -0.029045222703455807, -0.09965685358272984, 0.11285696925546178, -0.0360278041793112, -0.13716442523591324, -0.04245226686854199, -0.09198967534143375, 0.11154325458085665, 0.005478132820482183, 0.11503593182263419, 0.08037541152827757, 0.05827481642327611, -0.13640678030215073, 0.043732193824066054, 0.11273488558788598, -0.10574160849649315, 0.03887633803242777, -0.09575692338697572, 0.07875971317804197, 0.02259152562001324, 0.04783174391456633, 0.12541842844267465, 0.08743343188899004, -0.07546192666003806, -0.13954912627926175, 0.009999668883755489, 0.14200407181433378, -0.06193201392343625, 0.06820802004831782, -0.11369693695705312, 0.035420047617606754, 0.09090706047494682, -0.10316744570818083, -0.027699484344018022, 0.13913975990867042, -0.07667078287069622, -0.089215571314431, -0.11045332816974125, 0.012155449783448964, 0.08722432346932382, 0.12750158163500025, 0.047711665454155505, 0.08624561823260839, -0.1193207589833783, -0.011359509322283783, -0.11143332512428884, -0.09701602854552988, 0.04083770327412279, 0.12822540894999984, 0.04845418430701079, 0.08947649197542999, -0.11416772510277351, -0.017267963398037472, -0.12679199802294214, -0.07546216041819173, 0.07117543239831217, 0.13865530066921625, -0.038464193152271856, -0.12661044066435462, 0.10051791515011319, -0.06873126185780315, -0.08898574799599916, 0.050985131050823716, -0.010273880926110819, -0.03779298362168277, -0.04419316983565113, -0.003346247080505076, -0.04289703289154948, -0.03718749303715548, 0.017771492788100657, -0.05070911181703084, -0.015873323819588354, 0.037141166160512155, 0.042919407415878796, 0.007032647250690995, -0.04780367095458628, 0.027247881837911003, 0.029581549665752115, 0.05481246771962507, 0.016006428981901234, -0.05300313902899111, 0.018951390646061463, + -0.023123531929596663, -0.045453170523809656, 0.06629745364540236, -0.08481186325235088, -0.0999451346121199, 0.1115588588040573, -0.11945568382861638, -0.1228325769878049, -0.12173825944654453, 0.11127473199979673, 0.1019247231847957, -0.08890733760594201, 0.06699139779042237, -0.047024773749774304, 0.025557068382923487, -0.0033986074473685447, -0.01874584223935675, -0.04024842522224418, 0.06141179198645177, 0.07932729911470017, 0.09407582644395734, -0.07763941842657374, 0.06323003987902685, 0.08828130966730341, -0.10770015003718751, 0.12164609557287265, 0.13696165380467018, -0.14837901478008597, 0.159527298766918, 0.15853890957285607, 0.15176471540626574, -0.12930245103089738, -0.11216873167599037, 0.09086257394894577, 0.06151641328770743, -0.033265044493624815, -0.003992812239819007, 0.025202365858070716, 0.05422809158503271, 0.08132952293230017, -0.1118238532253828, -0.13278299139040026, 0.1469875089605532, -0.11115429848520417, 0.06551512528048611, 0.08278920467252662, -0.08872477685029026, 0.0846811280095012, 0.09871983423264169, -0.11301936810032578, 0.1398029207222985, 0.13880090969467956, 0.13263499977053794, 0.1006280591986635, -0.08569961800235273, 0.06734220336304753, -0.04874224215862799, -0.026962327256231024, -0.004143335906991922, -0.018289494228794678, 0.04324081384290191, -0.06652964113072111, 0.09956358641557879, -0.11801042344716448, -0.1286708917680509, 0.0942256795675006, -0.04764391839423144, -0.05819684428346093, 0.055052293726557004, 0.04254703669555797, 0.06624750320750078, 0.09681882620860911, 0.14757183664868345, 0.15161021930912877, 0.14990817228368014, -0.1073483166186188, -0.0976882154195742, 0.0837651890056071, -0.08228033633860718, 0.06537003170249492, -0.046056077867856295, 0.01786454157205746, 0.009380870326030643, -0.03539116804926059, 0.07285001166482662, 0.09383106682450387, 0.10805976598974251, 0.0839201085254754, 0.06385365844893708, 0.08328144536719466, -0.09450767538238852, 0.10036024487701521, 0.11235866345425216, -0.12110577157160536, -0.1286501842080691, -0.12752591306060168, -0.12193768106946423, -0.10567436975998239, 0.0916945999669941, -0.07411044174897552, 0.04767494676998407, 0.023715951361483, -0.0008132256514716317, -0.02421045938637281, -0.04913301107220472, 0.07266923090116266, -0.11284423258338203, 0.1326351505749098, 0.1438038237183093, 0.08634133000261857, -0.03310444817887785, 0.039778103046954956, -0.04038205282758247, -0.03743491681025511, -0.04196831145946143, 0.045937617332819314, 0.05100933799676125, 0.050263430905715736, -0.04776167154403479, -0.03966551250295073, -0.03386282914409764, -0.026648989114795543, 0.018225255934982143, -0.009245039954328835, -1.2250565594289177E-05, 0.008797373641742968, 0.0185567400890255, 0.02792458345070568, 0.04751586320426593, -0.07565436845236423, + 0.08935008382299219, 0.12304475697642214, -0.08002231508511286, -0.012300561712577998, -0.09709464248888303, 0.12139438497363088, -0.07058713677458497, 0.024284246415213546, 0.10395116339159072, -0.1150493958878537, -0.05954149253890419, -0.0334367811790366, 0.10267746330308965, -0.11518549642730726, 0.05615135325700077, 0.037494293602861745, -0.10687559306804387, -0.10988758237778568, 0.045707967637861266, -0.04594195498140308, -0.10956366041068485, 0.07699309145545774, 0.08457293472063297, 0.15092350115593794, -0.12051129977336475, 0.0067030557115551545, -0.10618366820599276, 0.15415065429855143, -0.11226209216442613, 0.005106744123731789, 0.11885820717523556, -0.1519661942593129, -0.10106005921331068, -0.013398777424310523, -0.11806651250112413, 0.15588582230488682, 0.0969161464670887, -0.022866883246215264, -0.13007961426729422, -0.15647269609742825, 0.09213444271945209, -0.027388508808317332, 0.13263291040526798, -0.11041383608378312, -0.05027423129582713, -0.11274727111365336, 0.09655228562678908, 0.008923578058951602, 0.09085724781776904, -0.12076125814880924, 0.09641464610386234, -0.008011442467895908, -0.1054279196824352, -0.12355828471071775, 0.08740091610941102, 0.0036101216800934295, -0.0929210344184557, -0.12116740877619066, -0.07395449306899475, -0.023272651776243356, 0.11373529988960172, -0.13273423706005938, 0.082385359137489, 0.015343882080822891, 0.10834476386232894, -0.0938094817707561, -0.02881156873211179, -0.07258659189364534, 0.05946193405065119, -0.07342793081978756, -0.13251830523639238, -0.1170795195213881, -0.0791844956348542, 0.041373765159800686, 0.13243689811132658, -0.11361253081857181, -0.061010905945051215, -0.030453114530477866, 0.11107799660248403, -0.10333394270066909, 0.030305738286256545, 0.061580827622065716, -0.13451338354154468, 0.12445054473579234, -0.05290207279291561, 0.04044198706012783, 0.11384646982404627, 0.0818659258783304, -0.06187779952882805, -0.12315046971807861, 0.10153520058442979, -0.0028356065903269194, 0.08835429959013705, -0.12506121218418778, -0.08830028516369004, 0.00625539856183591, 0.0969936373836982, 0.12428464427256626, -0.08027855998605612, -0.015281527943825625, 0.10042577506179995, 0.1294504987266983, 0.07731289105260265, -0.0254476355228224, -0.1162255120015727, 0.13737277265483402, -0.09365130600256197, -0.009960312041533621, -0.11707440875378475, -0.08571999556566301, -0.01749755891951734, 0.04714234726575448, -0.04223413550102691, -0.0004754462695916206, 0.03341013296779998, -0.0474072629590368, -0.03549563761677765, 0.0016845157436304657, -0.037723249202785455, -0.048442810915834, -0.03282356974062693, 0.0040464970008141955, -0.038442928961035044, 0.04833341584526185, -0.02754490931442223, -0.013029573407724518, -0.04732739958958565, -0.05430748007591124, -0.03945804424270147, -0.022314194379330937, + 0.11967564456774515, -0.057505836317110114, 0.09216146795217309, 0.10107983336401338, 0.04377397422424179, 0.12176692582371061, 0.013327496883814462, 0.11560676288063969, -0.06749759663302868, 0.08154668609857905, -0.10287888114195526, 0.03214840060402453, 0.11938794243380504, 0.016606622979067186, -0.11086291805035647, -0.06840349430826342, 0.0772085376581531, -0.10471696441225946, 0.02885139362520528, -0.11673974666740584, 0.026994250264860832, -0.07663184840393952, -0.15366250598115863, 0.040529004329037194, -0.13055495216990348, -0.11355666048183366, -0.07256907499922031, -0.14946515881176828, 0.008285365030723045, -0.15682551053805005, 0.06530233747060743, -0.1235508109959201, 0.11625076043271851, -0.06757155579292547, 0.15159367988514377, -0.0036724287928664194, 0.15279153994021788, -0.06902794907511853, -0.12357103236333837, 0.12665050392433802, -0.06937091725807518, 0.15477004211251152, 0.0036426300584326233, -0.11057319423031732, -0.11872710310320843, 0.013698831299639285, -0.10080254160494632, -0.09602704378955022, -0.04134425475606372, -0.1229135542264982, 0.00458231784290399, -0.13636426885964745, 0.06005932247815777, 0.10301632561331012, 0.09053266123900496, -0.060865665577366966, -0.11813360681985022, -0.0003709619042493624, 0.1190510600005853, 0.06290078003541376, -0.1030373200468921, -0.11077970439189182, 0.06155175599761176, 0.12990231483956122, 0.004195324216594616, 0.09467538815102661, 0.07783803003449175, -0.003949794186155053, 0.06025575302343628, -0.13201180658248288, 0.025799895808953647, 0.13622240094167404, -0.031093148572150377, -0.13718276849224204, 0.09228888342712319, -0.07813954220764253, 0.10230444751436812, -0.030889329861846646, -0.11565652177107409, -0.04657865379965207, 0.0937759742424316, 0.100472861436138, -0.07615588547856096, -0.131691446908923, 0.030087191618008376, -0.12405972501322927, 0.025392265129604758, 0.08107705008833875, -0.1280696218761802, 0.028810500965709578, -0.10652794036202914, -0.09833914385528479, -0.05020239715752919, -0.12322903242889438, 0.0023869807871827924, 0.12431412587400835, -0.05718657736345732, -0.09751038785456682, -0.10072840088702792, 0.04639362942097536, 0.12996131355299007, -0.011685493894834911, -0.12283663550687901, 0.07395233344489276, 0.10091607904419421, 0.11349516353641294, -0.0692251191499026, -0.1433856625497904, 0.011927448759793936, 0.08710655687655387, 0.05123138479560224, 0.004223689679545738, -0.042965859588987555, 0.037477617296738985, 0.017314953501224153, 0.04735894836564237, -0.0009043727956077039, -0.04915902539862686, -0.022061361945202234, -0.03889595560224649, 0.03856740899093217, 0.0189436868986985, 0.049196222967772485, 0.007667905088967723, -0.0449265465442376, -0.03449857966408251, -0.03657862923794044, 0.04595659812564552, 0.0287624433784724, 0.050211084643203376, + 0.03997196960942505, -0.07591919403526554, -0.10469683910759933, -0.12249055727032117, 0.12747762321854075, 0.11864754065585326, 0.09576636542337247, -0.061550525771865025, 0.019990847224162944, -0.023264160625364405, 0.06302872922856004, 0.096739770923555, 0.126223956160364, 0.13367915446251338, 0.1271270741036502, 0.1055397192173936, 0.07310772337833485, -0.031652877914178826, 0.013892984933473088, -0.057343581515822604, 0.09501269714777372, 0.09215346659089907, 0.0947599688868431, -0.13908694687427553, -0.1646977444079996, -0.18307179517900998, 0.18564919889721052, 0.16921958665852904, 0.12441336017926762, -0.06442969266776825, -0.0029605926348895075, -0.0717852115976157, 0.12901884692041468, 0.17418346699933931, -0.2110786434599301, -0.2139290005767648, 0.19345360348396776, -0.1509025473128135, 0.08537170645063767, -0.009898036412769342, 0.07019800397868005, -0.14308470264841142, -0.2011163467544219, -0.17785772961773252, -0.11044035552300674, 0.1385997749887725, 0.13186320669632137, 0.13972130173759864, -0.14891915727091917, -0.15158099587205562, -0.1072639280980682, 0.05213259473107132, 0.0074129032098983125, -0.07156778546687104, -0.11712769708112192, -0.14884459057566704, -0.16016046178103108, 0.1600709600720768, -0.14401741161439505, -0.11965787825352661, -0.06391146526663584, -0.0038304889078805034, 0.06291565380669178, 0.12304665191423864, -0.16594684004157606, -0.1415548865986778, -0.056928793739202205, 0.05680538287391607, 0.0361473495731009, -0.017762321321536545, 0.01754480368370394, -0.019176831020368202, 0.012080979643260228, -0.003221438818962314, -0.005741185228379559, -0.01731279000301722, 0.02334131691137172, 0.026450032243061552, 0.023135738231665124, 0.022431963968316267, 0.020147825057438205, 0.01838804854383652, 0.009558764756306463, 9.636316949256443E-05, -0.010993872294523567, 0.021087379512361316, -0.028025663908995475, 0.024754288466024732, -0.01113741892042129, 0.00989369553760314, 0.007479008581882364, 0.004742314512826052, -0.002188153718323642, 0.0005778585227029249, -0.0031306813232011045, 0.005208175720608353, -0.006432498742664711, 0.007326478802007829, 0.007377192725508577, 0.007066648038369368, 0.007200311918822734, -0.006551569908124848, 0.005467923890466436, -0.0039752175331632285, 0.001214352048608704, -0.001801390674588628, -0.005133657188388272, -0.008988575280740832, 0.0136236621804872, -0.014727995384828243, -0.00353224103882101, -0.002950913936096859, -0.0018911737840633753, 0.0005901459487991081, 0.00041251891437039294, 0.00142066867227242, -0.0020128262578811285, 0.0022629578581261165, 0.002107453312897469, -0.0019092518880809372, 0.0014908142096778329, -0.0010206755052941706, -0.000554575903810123, -8.747634649640141E-05, 0.00037930647233043024, 0.0008338773689464381, -0.000940785846330896, 0.0007408103753375151, -0.00035308110078163986, -0.00014870995703262927, + -0.07648174986761805, 0.12044701492265689, 0.11381117467011626, 0.05868570912946568, 0.021722673125696583, 0.09264518109248553, 0.12247366924477456, -0.09832136289982119, 0.030695124088179503, -0.04959595968293036, 0.10647012837427383, 0.11845105419312249, 0.08731246786781234, 0.012158796756974337, -0.067812895137272, -0.11806417195707038, -0.11760532880445738, 0.06478564126313688, -0.0171425653968944, 0.09046157982472697, -0.12532002088664607, -0.08040522293535515, 0.09969511245551625, -0.19503391726111707, -0.2015986366754821, -0.12962257550745673, 0.008103701025929309, -0.11803361988634228, -0.18287550377454312, 0.16912948688261667, -0.08090943465073593, 0.03748877628144891, -0.13638630032162485, -0.1782996707136665, 0.15412559503106435, 0.05493209514266986, 0.0676478290739985, -0.15958000983371837, 0.17706118075200025, -0.11635219837784656, -0.0023555099523721607, -0.10527748746864259, -0.1692097001291935, -0.12067361031211882, 0.1336895573191416, -0.2596535924573796, -0.23748083810221648, -0.1430913508552675, 0.023476714780559342, -0.11203125260283123, -0.16338363628592711, 0.15522680058129473, -0.08110836493048752, -0.01526901242641096, -0.09820915156523954, -0.13801873633972941, -0.11412995105054531, 0.04529203923579396, 0.04324310966053015, 0.11188945390472778, 0.11953266522284654, 0.077929137222239, -0.0016079031796711, -0.06979192574932441, 0.10743389991970476, 0.07369438841832007, -0.1169115156961597, 0.2100344860499297, 0.15433653365429847, -0.05445927406172073, 0.018795060409524934, 0.027370471472275972, -0.042500392979619654, 0.044005692073364217, -0.025873520809210713, -0.0028991668591320224, -0.01942637511629031, -0.033209507956231156, -0.028171259170671648, -0.01718060506333962, 0.0008197974640383575, 0.017414696141848283, 0.022967083876328002, 0.01860918391711544, 0.004911056554207825, 0.00710546211436661, -0.016446209638265763, 0.014457532445640478, 0.003484822188246783, -0.012740902888715204, -0.01588182665788008, -0.014005068725699708, 0.007551682463762746, -0.0020868880744206626, 0.010315171311551912, -0.0136828811968675, 0.010441870955936374, -0.003070309739291767, 0.0056117925307364695, 0.012252344778304284, 0.0156371016132068, -0.012148585088244783, 0.003920735599357341, 0.005508327956692138, -0.011586472608543959, -0.01138383021745876, -0.00552886753716905, 0.00017772163566575678, -0.006414853224309153, 0.00811217530899597, -0.0019895864022673915, -0.005575155611762491, -0.006061348852744455, 0.004887349410153633, -0.0027386936195253455, 0.0005326136857332969, -0.00322197913672808, 0.004420170473452036, 0.0034212223905725056, -0.0011758180659459357, -0.0015571586746120055, 0.0037579425240885345, 0.004737394436317031, 0.004118674819452047, 0.002070569780123284, -0.00046134700221742153, 0.0026247084121020165, -0.003103874294398663, 0.001954593449946488, 0.0009838618780636105, + -0.12261850123003368, -0.023857619459037287, -0.11836385039620902, 0.046881536518972464, -0.10954760621144564, 0.06846665438821575, 0.09529343050295017, 0.08765875525279884, -0.07745072581886296, 0.10062296115297542, -0.053341764901423123, 0.11134072544085158, 0.03840422029834015, -0.12241416469412507, -0.01421264264354813, 0.12582296188595246, -0.009819575086833933, 0.12411209144759737, -0.03588987308131592, 0.11518949235021413, 0.058735739148071835, 0.07732650876100552, -0.21309686692238183, -0.0038952111929502153, -0.2064522100299263, 0.03791485101533506, -0.1898888932314468, 0.07602144742407457, 0.16569094904510376, 0.10736006381108913, -0.14345646930228964, 0.12729286723098565, -0.10891305761703199, 0.14863040178630804, -0.08759824790002818, 0.1711815192444773, -0.053322528386524265, -0.1796403894946236, 0.013304977908975375, 0.1817865135826989, -0.02750572079581833, 0.16650922919471617, -0.060548998010397675, -0.11297988587341158, 0.2866578505080009, 0.006853921236854707, 0.25523395656373987, -0.025891689385640033, 0.1999500317738537, -0.06545769049682719, -0.15240058154376848, -0.0844708527943494, 0.13306148087774985, 0.0913124276710301, 0.09456219062075244, -0.11080639369081469, -0.06958911246578774, -0.12175887824390859, 0.04626815977734359, -0.12212836827713311, -0.009503503303958674, 0.12111132778047393, -0.022033670757987824, -0.1026649704772023, -0.04460841018407877, -0.06832524137542946, 0.23032842983124072, 0.016933682511098915, 0.17850259081927375, 0.004342453437277929, -0.06971316242155844, -0.01596113350902523, 0.04444489821635152, 0.018643349035276903, -0.039086501619157527, 0.017591178189468013, -0.027785783133946508, 0.02340250445673074, 0.020100238331609552, -0.023082354305554727, -0.016164573918856066, 0.02213186804933933, 0.007647356439150816, -0.02279883208500861, -0.001459708679288096, -0.018439718748129472, -0.002320296993903554, 0.013269843310751575, 0.015995502443565908, -0.00403987848555526, 0.015684220455678403, 0.002578470387895231, 0.014775951272843193, -0.0002636123387878579, 0.014124968378574439, 0.00320065197669584, -0.013413998962281539, -0.005298784014599736, -0.01211384348862484, 0.007409271553518168, 0.011635859836863108, 0.010138501517461387, -0.009709295018978395, -0.011049190709701432, 0.006080433104601017, -0.012533218823239382, -0.0030157346406200665, 0.010742300360965268, -0.002116857167474142, -0.006897876179154145, 0.006827662341948475, 0.001035903750178, -0.006144159271833692, 0.0008064787210416908, 0.0051302440887077, -0.00012069470777497857, 0.00462808682562067, 0.0010095829396531276, 0.004382025972274024, 0.0015716027731573683, -0.00392149540674679, -0.002221817494608237, -0.003625034931625884, 0.0027638118095847904, 0.003179764388627814, -0.0027752601968882374, 0.001964472123495223, 0.003337842446650939, -0.0011221143133894765, 0.0019423597343449324, + -0.05602036804574544, -0.09983618551426626, 0.12200108794597987, -0.11767374581313787, -0.08702840014899753, 0.037448278984338335, 0.020047188630252635, 0.07317737074696729, 0.1102337125344826, -0.11891410230602796, -0.10685162070218696, 0.07127988251802492, -0.015787849393709485, -0.04254071804823332, 0.09134190797169628, -0.12136692945896635, 0.12367554585198802, 0.09884152136572678, -0.0535959163258425, 0.0029555999574564853, 0.05945285444217445, -0.07591756043760091, 0.12737668721317902, 0.19123556824923005, -0.2084575859939198, 0.17393328012273496, 0.11183553544671417, -0.025212064324877135, -0.06329888757810027, -0.13725552370449484, -0.18090824960893143, 0.17331151686469076, 0.140731315441805, -0.07696939848392621, 0.00738941677609593, -0.09080843873574357, -0.15426374356780406, -0.18099829942854725, -0.1714388168914448, -0.12483812947213835, 0.05525073053685561, -0.023618086474881853, 0.09909045304013189, -0.10936973916148242, 0.16996993762098941, 0.255689208689627, -0.26117329914408016, 0.17383304633311897, 0.10698794479477654, -0.015147015679734394, -0.06653996668860288, -0.12871750744158686, -0.1615306062018982, -0.1342748739475147, 0.1045265444462544, -0.051425111386639376, -0.011496592869213638, -0.07132015753325956, -0.11599169590520064, 0.12244390770965488, -0.11459919085661807, 0.08317116335835574, -0.04071440024341548, -0.007106669890245314, -0.05576253043455424, 0.06506182023617875, -0.12691820320182848, -0.19878494740784966, 0.18783468561643335, 0.05770740915975506, 0.034231737414728375, 0.0015664487553844475, -0.022803074767023437, -0.038408983122976435, -0.045181978500558995, 0.03146692126275586, 0.021823713518977682, -0.007168662830357972, -0.008199055055957579, 0.020135960337220447, -0.02781130474235996, 0.02402556872684036, -0.01968659227710321, 0.011637720848976015, -0.002052178251717965, 0.006289554249592852, 0.013585666870798464, 0.012751388416262149, 0.012836394083066452, 0.0163594482600751, -0.015444521484983039, 0.010081826366547097, 0.004025854508872082, 0.0029221045827290543, 0.009055079979146828, 0.013042554310544269, 0.014220087038914224, 0.011563203458517952, -0.007023224537997324, 0.0008609101049356837, 0.005603202170812073, 0.011219219439138655, 0.014330312313854565, 0.013097084483141968, 0.010173199835349287, -0.005210378589382931, -0.0008380548301335916, 0.005768806555192671, 0.009600227990954566, 0.006535377167909334, -0.004811931888874441, 0.006560063875785626, -0.006157285333211203, -0.003609075680649689, -0.0015547892901184596, -0.0008758930652254847, -0.0029620474972900704, -0.004261321997148951, 0.004642722469798132, 0.003636554955221764, 0.002170356391169548, 0.00019293598220832832, 0.0018375375444385292, -0.0034574122234648603, 0.00430755611861012, -0.0035445105509768556, -0.0026164442475013093, -0.001215962298536829, 0.0005196702450030333, -0.0027223716577842037, + 0.06208263316863727, 0.10729525246002235, -0.12343735296277017, 0.10618966151413745, 0.05945184742101735, 0.0033814338968044012, -0.06511174149314305, -0.10905248610539803, -0.1232434331117602, 0.09870684496723149, 0.05187860721335621, 0.009331767939537064, -0.06687329310286655, 0.11108193172701782, -0.12500122312603185, 0.10629775327212328, -0.05796913823836744, 0.0063010417593557175, -0.06998073219367713, -0.112711503749287, -0.12433536325765708, 0.07488899663338197, 0.07712285518665017, 0.16688536436448093, -0.206253794272452, 0.1843844732954529, 0.12277407828075876, -0.027648985063837096, -0.07099497562099802, -0.14948922211417065, -0.18699006470470972, 0.1611260784259259, 0.10366002759457184, -0.017490992534309312, 0.07384231613515813, -0.14937376815497833, -0.1842706284240851, -0.16591506153024504, -0.10491917398081858, -0.015806458636271108, -0.08117221945573976, -0.14769133924022712, 0.17270829668830695, -0.1068349520740378, -0.10698658658891735, -0.22582746045839697, 0.25843933880245845, -0.19238639095788854, -0.13286472982359784, 0.036112380886595685, 0.0526467830960586, 0.1252189659903374, 0.1623232389942055, 0.1301451126895547, -0.0889176736993565, 0.022971563240008458, 0.04880215246616394, 0.1055085767648761, 0.1338954755478447, -0.11219429793330413, 0.06964983206982596, -0.009922362384474243, -0.057656535971457507, 0.09715485388474074, 0.10850821064882742, -0.06266274661652077, -0.09726457783406958, -0.18757707556354203, 0.18712459259746494, 0.06577984815727957, 0.04620771900203674, 0.013216670481745237, -0.010533175017308494, -0.031687175656565716, -0.04359945992779954, 0.03384437164698818, 0.026167749904027888, -0.011114692235376075, -0.005416044423642722, 0.01922933299801151, -0.02795367232413431, 0.023663113834000417, -0.01747780606023834, 0.007165097958660195, 0.005455148594890221, 0.013740025536875967, 0.018183967719590056, 0.012443316879034527, -0.0027915501343146864, -0.010799882744188843, 0.014966255193673422, -0.014755242707731294, -0.012037721992228405, 0.00607633446084184, -0.0010849608039210784, -0.00804508880732083, -0.012846710212807108, -0.013596987202060415, 0.011371549183394457, -0.005946985462644456, -0.001658586938222963, -0.008864966510249797, -0.013585177101000158, -0.013408684865248769, -0.010811965224208926, 0.005481695362372457, 0.0013468015448451272, -0.00671845387230803, -0.010381488477741034, -0.006362703253761693, -0.0019466782284149305, 0.0050551030925844505, -0.0060423911917591045, -0.00507453724239326, -0.004021722078200698, 0.0018894171884770482, -0.0004083087157603629, -0.002670486230090875, 0.004212343081495826, 0.0043219253098779765, 0.00362879673187214, 0.0019023566442179307, 0.0003793109966560189, -0.002549336787624319, 0.004008002259747802, -0.0037227134313828625, -0.003065211580686303, -0.0016926962004773557, 9.316839184217354E-05, -0.0024822727197387363, + 0.1231071477565066, 0.010153126462622342, 0.12263593046296009, -0.02040496030372016, 0.12123328298020786, -0.030782286702620662, -0.11803331699724101, -0.04133646030650621, 0.11413456408798199, -0.0465262461776944, 0.10761343616241253, -0.05542217197512808, -0.10566094492591058, 0.07206198686323603, 0.09904502139312119, -0.08186818513287457, -0.09184980811232869, -0.0904847520208693, -0.0846799402138308, -0.09447810797808256, 0.07778614427665431, -0.07410804497941934, -0.20981571207857938, -0.04898113712799073, -0.19994964521923625, 0.06169318684634993, -0.1855569694838875, 0.07824513660534449, 0.16950368155700596, 0.09137857625865652, -0.16064042460486397, 0.09478630551853695, -0.14468451265461846, 0.10656880152326963, -0.14088268359538672, 0.1266205892230851, -0.1293955885522974, -0.13568760243916045, 0.11528759629685495, 0.14581714273123364, 0.10470463847603612, 0.139719164111056, 0.09638910932543558, -0.1049950447092171, -0.2831036162614615, -0.06223845404732054, -0.24710806023355264, 0.06769439400362794, -0.19036522530682887, 0.08538444023600245, 0.1455188970086877, 0.089101185464235, -0.1352851920709406, -0.08034654474885097, -0.10933421992534975, 0.09054836488831901, 0.09924110965040159, 0.09531567631534349, -0.09198862640770027, 0.09226485681800439, 0.0780275429688325, -0.09640180574979573, -0.07228998762692024, 0.081426697117013, -0.06853873262323115, 0.06098748811315765, 0.22886125354830775, 0.03774567205894578, 0.17631202732298126, 0.02221999387310727, -0.06599352282973261, -0.027456941202322675, 0.03856620876231903, 0.027626513995883964, -0.03460499924217772, 0.0238456682591856, -0.02377103790150099, 0.026247456303230457, 0.01793994569774497, -0.02381385344268814, -0.016551817689246687, 0.021067784342667283, 0.010954316573338198, -0.021236530685692034, -0.008588262212064811, -0.016530055932536206, 0.007657312469507951, 0.012315566251010537, -0.01575357853631863, -0.006569813824970178, -0.014306464221758505, 0.0078022159860534875, -0.012303341562332553, 0.008829944361312061, -0.010636005347595966, -0.010021410544948954, 0.009506741461538603, 0.010665328953784097, 0.008199637857375375, -0.011229126656342743, -0.008700721827892641, -0.012223782517712566, 0.007806039946751074, 0.011942897541880595, -0.005152553613352448, 0.012624983123538562, 0.0035045292309919185, -0.010434803475509957, 0.003951607282509342, 0.006310629086138972, 0.006810773762037201, -0.0018644039743961035, -0.005818998175203724, -0.0024129817003022453, 0.004449108114578083, -0.0027886943095845338, 0.0035518128690902, 0.0032070430300662825, 0.00315560748449215, 0.003372363620534156, -0.002648324214234259, -0.00353597363619266, -0.002568836758425755, 0.0036189587644349167, 0.002407830383606569, -0.003288854388662414, 0.0013392600474772369, 0.0035106209350961237, -0.0007222090428654324, 0.0020800750354575777, + 0.07094751843474331, -0.1165029249475664, -0.12097977693857738, -0.08194540152386263, 0.013190519131808078, -0.06028747662372638, -0.11097069746338094, 0.12019231851365372, -0.0842554630750025, -0.02103953308624666, -0.049977675786146016, -0.10347076245625912, -0.1258463305045774, -0.09378470909760658, -0.02804992617618401, 0.04845180111282158, 0.10696190259208017, -0.1251403792804127, -0.09752340319701325, 0.03728689856811745, 0.03727373368744886, 0.07332398493341456, 0.14724780415711478, -0.21015240102487134, -0.192263843825933, -0.11127668694470717, -0.003985165915200031, -0.11889231478805279, -0.1802230306865894, 0.1761295102509028, -0.10620140226923966, -0.004925695129069761, -0.09674304285349852, -0.16464266427560667, 0.1823655623388478, 0.12373492630678912, -0.020125288665853537, -0.08988633895171311, 0.16461298882034936, -0.17746910892918807, -0.12664364520852825, 0.043302558741599995, -0.058756278892763164, -0.1025194470541272, -0.1932215035893641, 0.27688682480783383, 0.2244900104244928, 0.11047124370359368, 0.007776767206872324, 0.1302553543614089, 0.16714291421717217, -0.15311231047224977, 0.0843081491183448, 0.0011723647907875678, 0.0813947992174291, 0.13138269548765483, 0.12963829159910847, -0.08544162387311881, 0.010389929055149027, -0.06474392240223989, -0.11105266218304052, -0.11811745581808746, -0.08386932808365663, -0.03727074346763678, -0.027765990116099808, -0.0600423751416189, -0.14511214051853488, 0.21592496799302274, 0.15032078871409765, -0.04192833531343697, 0.004763415184101744, 0.039011769748214804, -0.04628922108533639, 0.04037820460134116, -0.01935014033425598, 0.0048153821969913555, -0.024111128186292644, -0.03433927336611574, -0.027350985997071475, -0.016478401742432175, -3.1459315174126555E-06, 0.01540350022356838, 0.022161203401144865, 0.02076679888388508, 0.011151576140420588, -0.0018956056071606575, -0.00896513182253953, 0.0125553765014177, -0.01375804785510085, 0.017399048838321166, 0.014369427600668162, 0.0069106792985785806, 0.0017457947573208815, 0.009834115033794099, -0.013399489648611509, 0.011411430987469927, -0.004665457461290478, -0.003770056482195569, -0.010746604456742512, -0.014452848805768949, -0.015288118771005726, 0.010470722379816035, -0.002293268755851865, -0.006296387525768014, 0.01144010615677907, 0.011131960217641545, 0.006130168355591947, 0.0014846927393806911, 0.00398529438826596, -0.006265114136361703, -0.005038414831818168, -0.006998313315852841, -0.005805575218361451, 0.002842404630126538, 5.532248572940896E-05, 0.003015328384077037, -0.0042908655471897384, 0.003755217749249777, 0.0016046763738872339, 0.0011036561058775833, -0.003353110447349213, 0.004642941909202253, 0.00473865650685623, 0.003564890435887712, 0.0014008891512329014, -0.000959724332734848, 0.0026577969614357214, -0.002825729789733668, 0.001664401916821664, 0.0008049611463729189 + ], + + "WORK_out": [4160, -0.09782768636354167, 0.09289109366734465, 0.10024922819479089, 0.04548149418189272, 0.12148796627301606, 0.010798385548512758, 0.11658081216984428, -0.06476010844404402, 0.08434518748462061, -0.10090754705313713, 0.036494328194719775, 0.11957457030398765, 0.011612778960175128, -0.11349566124784355, -0.06396564314087468, 0.08231773230360095, -0.10218958047466052, 0.03583485771070877, -0.11747451433602817, 0.019610152545804668, -0.07995200303315762, -0.13405666527535967, 0.028595330343554482, -0.11720411556848287, -0.09292443755146984, -0.0698552331563248, -0.12693084485975292, 0.01572899497635851, -0.1373829070067122, 0.04798138168194032, -0.11370539615016, 0.09440566779347297, -0.06884493643162186, 0.13017175108937784, -0.014760862912126114, 0.1366184975090058, -0.04958033844936159, -0.11620359306551188, 0.10314872770695901, -0.07344181046725806, 0.13445391162848236, -0.011170334095961904, -0.10128596287950865, -0.05785999905109065, -0.012711421645860723, -0.05681730130588686, -0.025548966950539872, -0.03541512722994635, -0.045151861564247706, 0.019766560149155874, -0.060701043286343154, 0.009010677558172555, 0.05825250037059807, 0.027284961235025967, -0.045842434654861125, -0.047613061233270366, -0.021657126272812296, 0.05823437794339258, 0.009866872050308813, -0.058064006744752844, -0.037110140225422486, 0.04690403057573008, 0.0579226939759397, 0.022750580870254295, 0.04976609568195127, -0.03868145101075241, 0.03651968375992061, -0.01907582656106288, 0.15505000688344928, -0.04997261201750898, -0.14808398174952742, 0.049550611019802696, 0.13871810468708728, -0.1100130148304663, 0.0658970157081228, -0.11484848581392293, 0.013305377568561469, 0.12275850576117389, 0.06772544617117564, -0.09073063346642275, -0.1179021711987319, 0.06922794158152223, 0.1448362347318114, -0.017036306731443813, 0.12683383274800228, -0.04007098183165561, -0.07756540710117868, 0.16617928511169733, -0.04984449977876658, 0.1326990329804541, 0.1378791010496009, 0.056040278710718594, 0.16547679888463815, -0.013204833444019645, -0.16244656591916343, 0.0838949711265389, 0.1230051924796182, 0.13803579226939222, -0.05366002099244284, -0.17166487694374793, 0.021975889778456888, 0.15911816921145897, -0.10146341651686892, -0.12949285281992776, -0.151438464209356, 0.0872796942167217, 0.18744878770249673, -0.017976075250765198, -0.11271969558681152, -0.07714094566366891, -0.011042347316505533, 0.06274732112492099, -0.06111338563251172, -0.022685947436918635, -0.07425624734529473, 0.005072493585584499, 0.07538457110547561, 0.03708011154666287, 0.057992735402758636, -0.0612859438304727, -0.02660234052913261, -0.07608362166911092, -0.014095626222873374, 0.06837230967458431, 0.054423581207211046, 0.05553897539511679, -0.0714896039930923, -0.04349195791478297, -0.07703895098444176, -0.14595529503594581, 1.127605196970985, -0.08085515279068863, -0.010846191208458027, -0.09597728073657252, 0.12171975687529926, -0.07266965382993615, 0.021430723458555387, 0.1021920033325341, -0.11601575973329527, -0.06315209504614078, -0.02915772913361051, 0.10079657453789644, -0.11720452921698879, 0.06129933779629152, 0.03209600673115767, -0.10475900845603113, -0.11282551411620229, 0.052473657280408106, -0.03945747911403436, -0.10762976722103046, 0.08017975655728501, 0.06822076435281071, 0.1302996127287737, -0.10925089295530473, 0.013528729405157033, -0.0858608211074102, 0.1332031787347847, -0.10328093200662895, -0.004547751377496266, 0.09661379893968501, -0.13283830624292806, -0.09607906673031631, -0.0006397799491954913, -0.09631416439099372, 0.1379032247436852, 0.09442979963889711, -0.008034439674129687, -0.10676386951274124, -0.13958282166464522, 0.09254274099569358, -0.010646070921360757, 0.10996178881982684, -0.1006051363165707, -0.0076225556378158215, -0.05084168687555782, 0.05720432036746645, -0.017018628608105192, 0.02189949896496394, -0.049461931816210274, 0.05319509260019501, 0.014475162245921002, -0.032378473162859384, -0.05608030183353131, 0.05452804998411022, -0.01909243592201157, -0.027723642659540526, -0.05636654629976188, -0.05024614033384866, 0.00926824893757838, 0.03896396908471993, -0.06247914030154337, 0.05519522203260029, -0.012760731769416256, 0.04046251040163414, -0.0484169725886277, 0.044989762763645635, 0.04352447863325055, -0.013898205607898752, 0.10250636980398461, 0.15794484565160266, 0.12303621174380708, 0.06961909810625606, -0.05943166532392667, -0.14792068376401268, 0.11270175329767312, 0.046117740691688766, 0.0498994945370349, -0.12667397268709413, 0.10359508368727681, -0.01531324254332055, -0.07910023175351227, 0.1476542948585125, -0.12618445759880184, 0.0410687636310464, -0.05508417411577946, -0.12178231025005745, -0.07928904130624374, 0.0917727721553647, 0.16257478874338038, -0.12525619413316316, -0.008293395420800691, -0.12537555551163015, 0.16562725998022676, 0.10960046399524191, -0.017882921071894025, -0.13449418053806034, -0.16343181805539106, 0.09936463148698835, 0.02817462318533963, -0.13633050023296459, -0.168971679104337, -0.09645261580110344, 0.03850754582831253, 0.15523590691775763, -0.17963736181733497, 0.11951082851194311, 0.015926071176163667, 0.1539371764603263, 0.11133396396686471, 0.030756208552730407, -0.07204499275930248, 0.06130924030341965, -0.004042636091068745, -0.0551475630776461, 0.07353532796666938, 0.05233438658574884, -0.006072641626708802, 0.06061994396316183, 0.07457966983161526, 0.04835387977584278, -0.00900410815142665, 0.0607959976678965, -0.07410849871425462, 0.0407134618757366, 0.021621940571868253, 0.07370336198972588, 0.08355998887579079, 0.060011887665386995, 0.03474968853177294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "info": 0 +} diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/unblocked.json b/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/unblocked.json new file mode 100644 index 000000000000..49abfbd8b485 --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/test/fixtures/unblocked.json @@ -0,0 +1,119 @@ +{ + "order": "column-major", + + "M": 4, + "N": 6, + "K": 4, + + "A": [ + 1.0, 0.2, -0.1, 0.3, + 0.0, 1.0, 0.4, -0.2, + 0.0, 0.0, 1.0, 0.5, + 0.0, 0.0, 0.0, 1.0, + 0.6, -0.3, 0.8, 0.1, + -0.4, 0.7, 0.2, -0.5 + ], + "strideA1": 1, + "strideA2": 4, + "offsetA": 0, + "LDA": 4, + "A_mat": [ + [ 1, 0, 0, 0, 0.6, -0.4 ], + [ 0.2, 1, 0, 0, -0.3, 0.7 ], + [ -0.1, 0.4, 1, 0, 0.8, 0.2 ], + [ 0.3, -0.2, 0.5, 1.0, 0.1, -0.5 ] + ], + + "TAU": [ 1.2, 0.8, 1.1, 0.95 ], + "strideTAU": 1, + "offsetTAU": 0, + + "WORK": [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], + "strideWORK": 1, + "offsetWORK": 0, + + "LWORK": 64, + + "A_out": [ + -1.99999999999999956E-001, -4.41599999999999993E-001, 4.79424000000000017E-001, 1.46091456000000008E-001, + -0.00000000000000000E+000, 1.99999999999999956E-001, -8.80000000000000226E-002, -2.90472000000000008E-001, + -0.00000000000000000E+000, -0.00000000000000000E+000, -1.00000000000000089E-001, -2.08999999999999880E-002, + -0.00000000000000000E+000, -0.00000000000000000E+000, -0.00000000000000000E+000, 5.00000000000000444E-002, + -7.19999999999999973E-001, -2.49599999999999822E-002, -5.65945600000000049E-001, 6.30764736000000020E-002, + 4.79999999999999982E-001, -3.83359999999999923E-001, -4.73369600000000057E-001, 2.09053017600000002E-001 + ], + "A_out_mat": [ + [ -1.99999999999999956E-001, -0.00000000000000000E+000, -0.00000000000000000E+000, -0.00000000000000000E+000, -7.19999999999999973E-001, 4.79999999999999982E-001 ], + [ -4.41599999999999993E-001, 1.99999999999999956E-001, -0.00000000000000000E+000, -0.00000000000000000E+000, -2.49599999999999822E-002, -3.83359999999999923E-001 ], + [ 4.79424000000000017E-001, -8.80000000000000226E-002, -1.00000000000000089E-001, -0.00000000000000000E+000, -5.65945600000000049E-001, -4.73369600000000057E-001 ], + [ 1.46091456000000008E-001, -2.90472000000000008E-001, -2.08999999999999880E-002, 5.00000000000000444E-002, 6.30764736000000020E-002, 2.09053017600000002E-001 ] + ], + + "WORK_out": [ + 4.0000000000000000000000000, + -0.3995200000000000417621493, + -0.1217428800000000116421361, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000, + 0.0000000000000000000000000 + ], + "info": 0 +} diff --git a/lib/node_modules/@stdlib/lapack/base/dorglq/test/test.dorglq.js b/lib/node_modules/@stdlib/lapack/base/dorglq/test/test.dorglq.js new file mode 100644 index 000000000000..f84c5d60a85c --- /dev/null +++ b/lib/node_modules/@stdlib/lapack/base/dorglq/test/test.dorglq.js @@ -0,0 +1,432 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2026 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var Float64Array = require( '@stdlib/array/float64' ); +var isAlmostEqual = require( '@stdlib/assert/is-almost-equal-float64array' ); +var dlaset = require( '@stdlib/lapack/base/dlaset' ); +var dgetrans = require( '@stdlib/lapack/base/dge-trans' ); +var dgemm = require( '@stdlib/blas/base/dgemm' ).ndarray; +var dorglq = require( './../lib/dorglq.js' ); + + +// FIXTURES // + +var UNBLOCKED = require( './fixtures/unblocked.json' ); +var BLOCKED = require( './fixtures/blocked.json' ); +var BLOCKED_REDUCED_NB = require( './fixtures/blocked_reduced_nb.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof dorglq, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function has an arity of 9', function test( t ) { + t.strictEqual( dorglq.length, 9, 'returns expected value' ); + t.end(); +}); + +tape( 'the function throws an error if provided a first argument which is not a valid order', function test( t ) { + var values; + var WORK; + var TAU; + var A; + var i; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + values = [ + 'foo', + 'bar', + 'beep', + 'boop', + -5, + NaN, + true, + false, + null, + void 0, + [], + {}, + function noop() {} + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[ i ] ), TypeError, 'throws an error when provided ' + values[ i ] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + dorglq( value, 3, 2, 2, A, 3, TAU, WORK, 10 ); + }; + } +}); + +tape( 'the function throws an error if provided a second argument which is smaller than 0', function test( t ) { + var values; + var WORK; + var TAU; + var A; + var i; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + values = [ + -1, + -2, + -3 + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[ i ] ), RangeError, 'throws an error when provided ' + values[ i ] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + dorglq( 'column-major', value, 2, 2, A, 3, TAU, WORK, 10 ); + }; + } +}); + +tape( 'the function throws an error if provided a third argument which is smaller than `M`', function test( t ) { + var values; + var WORK; + var TAU; + var A; + var i; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + values = [ + 2, + 1, + 0, + -1, + -2 + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[ i ] ), RangeError, 'throws an error when provided ' + values[ i ] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + dorglq( 'column-major', 3, value, 2, A, 3, TAU, WORK, 10 ); + }; + } +}); + +tape( 'the function throws an error if provided a fourth argument which is smaller than 0 or greater than `N`', function test( t ) { + var values; + var WORK; + var TAU; + var A; + var i; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + values = [ + 5, + 4, + 3, + -1, + -2, + -3 + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[ i ] ), RangeError, 'throws an error when provided ' + values[ i ] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + dorglq( 'column-major', 3, 2, value, A, 3, TAU, WORK, 10 ); + }; + } +}); + +tape( 'the function throws an error if provided a sixth argument which is not a valid `LDA` (column-major)', function test( t ) { + var values; + var WORK; + var TAU; + var A; + var i; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + values = [ + 2, + 1, + 0 + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[ i ] ), RangeError, 'throws an error when provided ' + values[ i ] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + dorglq( 'column-major', 3, 2, 2, A, value, TAU, WORK, 10 ); + }; + } +}); + +tape( 'the function throws an error if provided a sixth argument which is not a valid `LDA` (row-major)', function test( t ) { + var values; + var WORK; + var TAU; + var A; + var i; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + values = [ + 1, + 0, + -1 + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[ i ] ), RangeError, 'throws an error when provided ' + values[ i ] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + dorglq( 'row-major', 3, 2, 2, A, value, TAU, WORK, 10 ); + }; + } +}); + +tape( 'the function throws an error when `LWORK` is smaller than `N`', function test( t ) { + var values; + var WORK; + var TAU; + var A; + var i; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + values = [ + 1, + 0 + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[ i ] ), RangeError, 'throws an error when provided ' + values[ i ] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + dorglq( 'column-major', 3, 2, 2, A, 3, TAU, WORK, value ); + }; + } +}); + +tape( 'the function quick returns when `LWORK` is equal to -1', function test( t ) { + var expectedWORK; + var expectedA; + var info; + var WORK; + var TAU; + var A; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + expectedA = A; + expectedWORK = WORK; + expectedWORK[ 0 ] = 1; + + info = dorglq( 'column-major', 2, 3, 0, A, 3, TAU, WORK, -1 ); + t.strictEqual( info, 0, 'returns expected value' ); + t.strictEqual( A, expectedA, 'returns expected value' ); + t.strictEqual( WORK, expectedWORK, 'returns expected value' ); + t.end(); +}); + +tape( 'the function quick returns when `M` is equal to 0', function test( t ) { + var expectedWORK; + var expectedA; + var info; + var WORK; + var TAU; + var A; + + A = new Float64Array( [ 1, 0, 0, 0, 1, 0 ] ); + TAU = new Float64Array( [ 2, 2 ] ); + WORK = new Float64Array( 10 ); + + expectedA = A; + expectedWORK = WORK; + + info = dorglq( 'column-major', 0, 3, 0, A, 3, TAU, WORK, 10 ); + t.strictEqual( info, 0, 'returns expected value' ); + t.strictEqual( A, expectedA, 'returns expected value' ); + t.strictEqual( WORK, expectedWORK, 'returns expected value' ); + t.end(); +}); + +tape( 'the function generates an `M-by-N` real matrix `Q` with orthonormal columns (unblocked)', function test( t ) { + var expectedWORK; + var expectedA; + var info; + var data; + var WORK; + var TAU; + var A; + + data = UNBLOCKED; + + A = new Float64Array( data.A ); + TAU = new Float64Array( data.TAU ); + WORK = new Float64Array( data.WORK ); + + expectedA = new Float64Array( data.A_out ); + expectedWORK = new Float64Array( data.WORK_out ); + + info = dorglq( data.order, data.M, data.N, data.K, A, data.LDA, TAU, WORK, data.LWORK ); + t.strictEqual( info, data.info, 'returns expected value' ); + t.strictEqual( isAlmostEqual( A, expectedA, 1 ), true, 'returns expected value' ); + t.strictEqual( isAlmostEqual( WORK, expectedWORK, 1 ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function generates an `M-by-N` real matrix `Q` with orthonormal rows (blocked)', function test( t ) { + var expectedWORK; + var expectedA; + var info; + var data; + var WORK; + var TAU; + var A; + + data = BLOCKED; + + A = new Float64Array( data.A ); + TAU = new Float64Array( data.TAU ); + WORK = new Float64Array( data.WORK ); + + expectedA = new Float64Array( data.A_out ); + expectedWORK = new Float64Array( data.WORK_out ); + + info = dorglq( data.order, data.M, data.N, data.K, A, data.LDA, TAU, WORK, data.LWORK ); + t.strictEqual( info, data.info, 'returns expected value' ); + t.strictEqual( isAlmostEqual( A, expectedA, 98304 ), true, 'returns expected value' ); + t.strictEqual( isAlmostEqual( WORK, expectedWORK, 87040 ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function generates an `M-by-N` real matrix `Q` with orthonormal rows (blocked, reduced nb)', function test( t ) { + var expectedWORK; + var expectedA; + var info; + var data; + var WORK; + var TAU; + var A; + + data = BLOCKED_REDUCED_NB; + + A = new Float64Array( data.A ); + TAU = new Float64Array( data.TAU ); + WORK = new Float64Array( data.WORK ); + + expectedA = new Float64Array( data.A_out ); + expectedWORK = new Float64Array( data.WORK_out ); + + info = dorglq( data.order, data.M, data.N, data.K, A, data.LDA, TAU, WORK, data.LWORK ); + t.strictEqual( info, data.info, 'returns expected value' ); + t.strictEqual( isAlmostEqual( A, expectedA, 7680 ), true, 'returns expected value' ); + t.strictEqual( isAlmostEqual( WORK, expectedWORK, 160 ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function generates an `M-by-N` real matrix `Q` with orthonormal rows (multiple blocks, full nb)', function test( t ) { + var WORK; + var info; + var TAU; + var LDA; + var QT; + var A; + var C; + var M; + var N; + var K; + var i; + var I; + + M = 162; + N = 162; + K = 161; + LDA = M; + + A = new Float64Array( M * N ); + TAU = new Float64Array( K ); + WORK = new Float64Array( ( M * 32 ) + 100 ); + + for ( i = 0; i < N; i++ ) { + A[ i + ( i * LDA ) ] = 1.0; + } + for ( i = 0; i < K; i++ ) { + TAU[ i ] = 2.0; + } + + info = dorglq( 'column-major', M, N, K, A, LDA, TAU, WORK, 2 * N ); + + QT = new Float64Array( N * M ); + dgetrans( 'column-major', M, N, A, LDA, QT, N ); // Compute Q^T + C = new Float64Array( N * N ); // Compute C = Q^T * Q + dgemm( 'no-transpose', 'no-transpose', N, N, M, 1.0, QT, 1, N, 0, A, 1, M, 0, 0.0, C, 1, N, 0 ); // Compute C = Q^T * Q + + I = new Float64Array( N * N ); // Create identity matrix + dlaset( 'column-major', 'all', N, N, 0.0, 1.0, I, N ); + + t.strictEqual( info, 0, 'returns expected value' ); + t.strictEqual( isAlmostEqual( C, I, 1 ), true, 'Q^T * Q equals identity matrix' ); + t.end(); +});