diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..4a67f7c --- /dev/null +++ b/.env.example @@ -0,0 +1,18 @@ +# Base URL of the Django REST backend. +# +# - '/api' same-origin. The Vite dev server proxies +# this prefix to VITE_API_PROXY_TARGET (see +# below); in production your web server +# routes /api to Django. +# - 'http://localhost:8000/api' talk to Django directly. CORS must be +# enabled there. No proxy is registered. +VITE_API_BASE_URL=/api + +# Where the dev server should proxy API requests when VITE_API_BASE_URL is a +# relative path. Ignored for absolute URLs or when mocking. +VITE_API_PROXY_TARGET=http://localhost:8000 + +# When set to 'true', the Vite dev server serves a fake backend from +# mocks/vitePlugin.ts. No Django required. The real backend (if any) is +# ignored in that case. +VITE_USE_MOCK_API=false diff --git a/README.md b/README.md index b5b2950..caa65d4 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,40 @@ -# sv +# leaflet_svelte -Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). +Weather-balloon trajectory planner. Static SvelteKit SPA that talks to a Django +REST backend. -## Creating a project - -If you're seeing this, you've probably already done this step. Congrats! +## Quick start ```bash -# create a new project in the current directory -npx sv create +npm install -# create a new project in my-app -npx sv create my-app -``` - -## Developing - -Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: - -```bash +# dev against a local Django on :8000 (see .env.example) npm run dev -# or start the server and open the app in a new browser tab -npm run dev -- --open -``` +# dev with a fake backend (no Django needed) +VITE_USE_MOCK_API=true npm run dev -## Building - -To create a production version of your app: - -```bash +# type-check + production build (emits static files to ./build) +npm run check npm run build ``` -You can preview the production build with `npm run preview`. +Serve `build/` from any static host. Route fallback is `index.html`. -> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment. +## Documentation + +- [`docs/ARCHITECTURE.md`](docs/ARCHITECTURE.md) — module layout and data flow. +- [`docs/CONVENTIONS.md`](docs/CONVENTIONS.md) — naming, styling, component patterns. +- [`docs/ADDING_A_FEATURE.md`](docs/ADDING_A_FEATURE.md) — walkthrough for adding + a new panel/feature. +- [`mocks/`](mocks/) — Vite dev-server mock backend. + +## Stack + +- **SvelteKit + Vite** (TypeScript, Svelte 5 runes) — built as a pure SPA with + `@sveltejs/adapter-static`. +- **MapLibre GL JS** via the `$map` abstraction — the app never imports + `maplibre-gl` directly outside `src/lib/map/`. +- **Sveltestrap** + Bootstrap 5 for UI chrome. +- **Chart.js** for the ascent/descent profile editor. +- **@vincjo/datatables** for editor tables. diff --git a/build.js b/build.js deleted file mode 100644 index 266cd5a..0000000 --- a/build.js +++ /dev/null @@ -1,390 +0,0 @@ -const compile = require( 'svelte/compiler' ).compile - -const chokidar = require( 'chokidar' ); -const esbuild = require( 'esbuild' ); -const {readdirSync, statSync, existsSync, writeFileSync, readFileSync} = require( 'fs' ); -const {join, basename, resolve, dirname, relative} = require( 'path' ); -const sveltePlugin = require( 'esbuild-svelte' ); -const {sum} = require( 'lodash' ); -const parse5 = require( 'parse5' ); -const notifier = require('node-notifier'); - -process.on('uncaughtException', error => { - notifier.notify({ - title: 'Error occurs', - message: `${error}` - }); -}); - -const [watch, serve, minify, debug, logVars] = ['--watch', '--serve', '--minify', '--debug', '--log-vars'].map( s => - process.argv.includes( s ) -); -const debug_console_log = ( args, returnIndex = 0 ) => (debug && console.log( ...args ), args[ returnIndex ]); - -const ignorePath = new Set( [ - 'node_modules', - '.vscode', - '.idea', - '.git', - '.gitignore', - 'build.js', - 'package-lock.json', - 'package.json', - 'README.md', - 'build.js', - 'pullpush.sh', -] ); - -// find page candidates -function findPages( dir = '.', sink = [] ) { - if( ignorePath.has( dir.replace( './', '' ).replace( '.\\', '' ) ) ) { - debug && console.log( 'skip:', dir ); - return; - } - - const files = readdirSync( dir ).filter( f => f[ 0 ]!=='_' ); - const svelteFiles = files.filter( f => f.endsWith( '.svelte' ) && statSync( join( dir, f ) ).isFile() ); - svelteFiles.forEach( f => sink.push( join( dir, f ) ) ); - - files - .filter( f => !svelteFiles.includes( f ) ) - .map( f => join( dir, f ) ) - .filter( f => statSync( f ).isDirectory() ) - .forEach( f => findPages( f, sink ) ); - return sink; -} - -const _zId_prefix = `z_placeholder_${Math.floor( Math.random() * 1000000000 ).toString( 16 )}_`; -const _zReplacer = s => debug_console_log( ['z-replace:', s, `"${_zId_prefix}${Buffer.from( s ).toString( 'base64' )}"`], 2 ); - -const zPlaceholderReplacer = content => - - content?.replace( /\#\{\s*\w+\s*\}/gs, _zReplacer ) // #{ key } - .replace( /\/\*\!\s*\w+\s*\*\//gs, _zReplacer ) // map /*! mapKey */ - .replace( /\[\s*\/\*\s*\w+\s*\*\/\s*\]/gs, _zReplacer ) // map [/* mapKey */] - .replace( /\{\s*\/\*\s*\w+\s*\*\/\s*\}/gs, _zReplacer ); // map {/* mapKey */} - -global.zPlaceholderReplacer = zPlaceholderReplacer; - -const zPlaceholderRestore = ( content, sink ) => - content?.replace( new RegExp( `("|')${_zId_prefix}(\\w+=*)\\1`, 'g' ), ( _, _2, s ) => { - s = Buffer.from( s, 'base64' ).toString( 'ascii' ); - sink.push( s ); - debug && console.log( 'z-restore', _, s ); - return s; - } ); - -const svelteJsPathResolver = { - name: 'svelteJsPathResolver', - setup( build ) { - const options = {filter: /\.svelte\.(ts)$/}; - - build.onResolve( options, ( {path, resolveDir} ) => ({path: join( resolveDir, path )}) ); - build.onLoad( options, ( {path} ) => { - return { - contents: ` - import App from "./${basename( path ).replace( /\.ts$/, '' )}"; - export const app = new App({ target: document.getElementById("app") }); - `, - loader: 'ts', - resolveDir: dirname( path ), - }; - } ); - }, -}; - -function createBuilder( entryPoints ) { - console.log( 'pages:', entryPoints ); - - return esbuild.build( { - entryPoints: entryPoints.map( s => s + '.ts' ), - bundle: true, - outdir: '.', - write: false, - plugins: [svelteJsPathResolver, sveltePlugin( require( './svelte.config' ) )], - incremental: !!watch, - sourcemap: false, - minify, - } ) -} - -function layoutFor( path, content = {} ) { - path = (() => { - let temp = join( path, '..', '_layout.html' ); - - while( true ) { - if( existsSync( temp ) ) return temp; - if( resolve( __dirname )===resolve( dirname( temp ) ) ) return; - - temp = join( temp, '../..', '_layout.html' ); - } - })(); - - layoutFor.cache = layoutFor.cache || {}; - - const defaultKey = '_DEFAULT_LAYOUT'; - if( !path && layoutFor.cache[ defaultKey ] ) return layoutFor.cache[ defaultKey ]; - - let cache = layoutFor.cache[ path ]; - const m = statSync( path ).mtimeMs; - if( cache && m===cache.m ) return cache; - - const tree = parse5.parse( - path - ? readFileSync( path, 'utf-8' ) - : ` - -
-| Name | -Actions | -
|---|---|
| {curve.name} | -
- |
-
| - |
- Время (сек)
-
- |
-
- Высота (м)
-
- |
-
- Скорость (м/с)
-
- |
- - |
|---|---|---|---|---|
|
-
-
- |
-
- |
- |||
| No points added yet | -||||
| - | - - | -- - | -- - | -
- |
-
Are you sure you want to delete this curve?
-Вы уверены, что хотите удалить этот сценарий?
-| Name | Actions |
|---|---|
| {c.name} | +
+ |
+
| + | t, sec | +alt, m | +rate, m/s | ++ |
|---|---|---|---|---|
|
+ |
+
+ |
+ |||
| No points yet | ||||
| + | + | + | + |
+ |
+
Delete curve "{selectedCurve?.name}"?
+{$t('workspaces.deleteConfirm', { name: toDelete.name })}
+ {/if} +.json`.
+ * 2. Register it in `loaders` below.
+ * 3. Expose it in the `Locale` type.
+ */
+
+export type Locale = 'ru' | 'en';
+
+export const DEFAULT_LOCALE: Locale = 'ru';
+export const SUPPORTED_LOCALES: Locale[] = ['ru', 'en'];
+const STORAGE_KEY = 'locale';
+
+type Messages = Record;
+
+const loaders: Record Promise<{ default: Messages }>> = {
+ ru: () => import('./locales/ru.json'),
+ en: () => import('./locales/en.json'),
+};
+
+const messages = writable>({} as Record);
+const locale = writable(DEFAULT_LOCALE);
+
+async function loadLocale(code: Locale): Promise {
+ const mod = await loaders[code]();
+ messages.update((m) => ({ ...m, [code]: mod.default }));
+}
+
+export async function setLocale(code: Locale): Promise {
+ if (!SUPPORTED_LOCALES.includes(code)) return;
+ await loadLocale(code);
+ locale.set(code);
+ if (browser) localStorage.setItem(STORAGE_KEY, code);
+}
+
+export async function initI18n(): Promise {
+ const stored = browser ? (localStorage.getItem(STORAGE_KEY) as Locale | null) : null;
+ const next = stored && SUPPORTED_LOCALES.includes(stored) ? stored : DEFAULT_LOCALE;
+ await setLocale(next);
+}
+
+function lookup(dict: Messages, key: string): string | undefined {
+ const parts = key.split('.');
+ let node: unknown = dict;
+ for (const p of parts) {
+ if (node && typeof node === 'object' && p in (node as Messages)) {
+ node = (node as Messages)[p];
+ } else {
+ return undefined;
+ }
+ }
+ return typeof node === 'string' ? node : undefined;
+}
+
+function interpolate(template: string, values: Record): string {
+ return template.replace(/\{(\w+)\}/g, (_, name) =>
+ name in values ? String(values[name]) : `{${name}}`,
+ );
+}
+
+export interface Translator {
+ (key: string, values?: Record): string;
+}
+
+export const t: Readable = derived(
+ [locale, messages],
+ ([$locale, $messages]) => {
+ const dict = $messages[$locale];
+ return (key: string, values?: Record) => {
+ const str = dict ? lookup(dict, key) : undefined;
+ if (str === undefined) return key;
+ return values ? interpolate(str, values) : str;
+ };
+ },
+);
+
+export const currentLocale: Readable = { subscribe: locale.subscribe };
diff --git a/src/lib/i18n/locales/en.json b/src/lib/i18n/locales/en.json
new file mode 100644
index 0000000..fcd9967
--- /dev/null
+++ b/src/lib/i18n/locales/en.json
@@ -0,0 +1,172 @@
+{
+ "app": {
+ "title": "Stratospheric Flights | YKS Ltd.",
+ "company": "Yakutsk Space Systems Ltd."
+ },
+ "nav": {
+ "predict": "Predict",
+ "track": "Track",
+ "login": "Log in",
+ "logout": "Log out",
+ "account": "Account",
+ "scenarios": "Saved scenarios",
+ "predictionHistory": "Prediction history",
+ "trackingHistory": "Tracking history",
+ "user": "User"
+ },
+ "login": {
+ "heading": "Sign in to your account",
+ "username": "Username",
+ "password": "Password",
+ "submit": "Sign in",
+ "submitting": "Signing in...",
+ "back": "Back",
+ "invalidCredentials": "Invalid credentials",
+ "fieldsRequired": "Please enter a username and password"
+ },
+ "panel": {
+ "scenario": "Scenario",
+ "conditions": "Conditions",
+ "about": "About",
+ "layers": "Layers",
+ "results": "Results",
+ "settings": "Settings",
+ "workspaces": "Workspaces"
+ },
+ "scenario": {
+ "title": "Prediction scenario",
+ "select": "Scenario",
+ "placeholder": "New scenario...",
+ "searchPlaceholder": "Search scenarios...",
+ "apply": "Apply scenario",
+ "applied": "Scenario applied",
+ "appliedBody": "Scenario \"{name}\" successfully applied.",
+ "notFound": "Scenario not found",
+ "notFoundBody": "The selected scenario does not exist.",
+ "updated": "Scenario updated",
+ "updatedBody": "Scenario \"{name}\" successfully updated.",
+ "updateError": "Scenario update error",
+ "updateErrorBody": "Error updating scenario: {error}",
+ "save": "Save scenario",
+ "update": "Update scenario",
+ "all": "All scenarios",
+ "mode": "Scenario mode",
+ "model": "Atmospheric model",
+ "dataset": "Dataset",
+ "datasetAuto": "Pick automatically",
+ "modified": "modified",
+ "export": "Export result",
+ "exportBtn": "Export"
+ },
+ "predictionMode": {
+ "single": "Single",
+ "hourly": "Hourly",
+ "ensemble": "Ensemble"
+ },
+ "profile": {
+ "standard_profile": "Standard",
+ "float_profile": "Float",
+ "reverse_profile": "Reverse",
+ "custom_profile": "Custom"
+ },
+ "conditions": {
+ "title": "Prediction conditions",
+ "startTime": "Launch time (UTC)",
+ "startDate": "Launch date",
+ "flightProfile": "Flight profile",
+ "startPoint": "Launch point",
+ "pointPlaceholder": "New point...",
+ "pointSearchPlaceholder": "Search points...",
+ "latLng": "Latitude/Longitude",
+ "save": "Save",
+ "launchAlt": "Launch altitude (m)",
+ "burstAlt": "Burst altitude (m)",
+ "ascentRate": "Ascent rate (m/s)",
+ "descentRate": "Descent rate (m/s)",
+ "run": "Run prediction",
+ "profileEdit": "Ascent/descent profiles",
+ "ascentStage": "Ascent stage",
+ "descentStage": "Descent stage",
+ "stageNone": "None",
+ "stageStandard": "Standard",
+ "stageCustom": "Custom",
+ "openCurveEditor": "Open curve editor"
+ },
+ "workspaces": {
+ "title": "Workspaces",
+ "empty": "No workspaces yet.",
+ "add": "Add",
+ "rename": "Rename",
+ "delete": "Delete",
+ "visible": "Show/hide",
+ "color": "Color",
+ "opacity": "Opacity",
+ "run": "Run",
+ "running": "Running...",
+ "edit": "Edit",
+ "defaultName": "Workspace {n}",
+ "deleteConfirm": "Delete workspace \"{name}\"?",
+ "runError": "Run error: {error}"
+ },
+ "timeline": {
+ "title": "Flight timeline",
+ "time": "Time",
+ "altitude": "Altitude",
+ "position": "Position",
+ "play": "Play",
+ "pause": "Pause",
+ "stop": "Reset",
+ "speed": "Speed"
+ },
+ "settings": {
+ "title": "Settings",
+ "language": "Language",
+ "map": "Map",
+ "baseLayer": "Base layer",
+ "showScale": "Show scale",
+ "showNavigation": "Navigation controls",
+ "units": "Units",
+ "metric": "Metric",
+ "imperial": "Imperial",
+ "saved": "Settings saved"
+ },
+ "editor": {
+ "add": "Add",
+ "edit": "Edit",
+ "save": "Save",
+ "update": "Update",
+ "delete": "Delete",
+ "cancel": "Cancel",
+ "close": "Close",
+ "searchPlaceholder": "Search..."
+ },
+ "points": {
+ "item": "point",
+ "itemGenitive": "point",
+ "items": "points",
+ "name": "Point name",
+ "lat": "Latitude",
+ "lon": "Longitude",
+ "alt": "Altitude",
+ "degrees": "Degrees",
+ "metersAsl": "Meters ASL"
+ },
+ "common": {
+ "error": "Error",
+ "success": "Success",
+ "warning": "Warning",
+ "info": "Info",
+ "yes": "Yes",
+ "no": "No"
+ },
+ "selection": {
+ "header": "Coordinate select mode",
+ "body": "Click the map to pick coordinates"
+ },
+ "forecast": {
+ "success": "Forecast request",
+ "successBody": "Forecast request successful!",
+ "error": "Forecast error",
+ "errorBody": "Error running forecast: {error}"
+ }
+}
diff --git a/src/lib/i18n/locales/ru.json b/src/lib/i18n/locales/ru.json
new file mode 100644
index 0000000..eeb2149
--- /dev/null
+++ b/src/lib/i18n/locales/ru.json
@@ -0,0 +1,172 @@
+{
+ "app": {
+ "title": "Стратосферные полеты | ООО ЯКС",
+ "company": "ООО «Якутские Космические Системы»"
+ },
+ "nav": {
+ "predict": "Прогнозирование",
+ "track": "Слежение",
+ "login": "Войти",
+ "logout": "Выйти",
+ "account": "Учетная запись",
+ "scenarios": "Сохраненные сценарии",
+ "predictionHistory": "История прогнозов",
+ "trackingHistory": "История слежения",
+ "user": "Пользователь"
+ },
+ "login": {
+ "heading": "Вход в учетную запись",
+ "username": "Имя пользователя",
+ "password": "Пароль",
+ "submit": "Войти",
+ "submitting": "Вход...",
+ "back": "Назад",
+ "invalidCredentials": "Неверные учетные данные",
+ "fieldsRequired": "Пожалуйста, введите имя пользователя и пароль"
+ },
+ "panel": {
+ "scenario": "Сценарий",
+ "conditions": "Условия",
+ "about": "О проекте",
+ "layers": "Слои",
+ "results": "Результаты",
+ "settings": "Настройки",
+ "workspaces": "Рабочие области"
+ },
+ "scenario": {
+ "title": "Сценарий прогнозирования",
+ "select": "Сценарий",
+ "placeholder": "Новый сценарий...",
+ "searchPlaceholder": "Поиск сценариев...",
+ "apply": "Применить сценарий",
+ "applied": "Сценарий применен",
+ "appliedBody": "Сценарий \"{name}\" успешно применен.",
+ "notFound": "Сценарий не найден",
+ "notFoundBody": "Выбранный сценарий не существует.",
+ "updated": "Сценарий обновлен",
+ "updatedBody": "Сценарий \"{name}\" успешно обновлен.",
+ "updateError": "Ошибка обновления сценария",
+ "updateErrorBody": "Ошибка при обновлении сценария: {error}",
+ "save": "Сохранить сценарий",
+ "update": "Обновить сценарий",
+ "all": "Все сценарии",
+ "mode": "Режим сценария",
+ "model": "Модель атмосферы",
+ "dataset": "Набор данных",
+ "datasetAuto": "Выбрать автоматически",
+ "modified": "изменено",
+ "export": "Экспортировать результат",
+ "exportBtn": "Экспорт"
+ },
+ "predictionMode": {
+ "single": "Разовый",
+ "hourly": "Почасовой",
+ "ensemble": "Ансамблевый"
+ },
+ "profile": {
+ "standard_profile": "Обычный",
+ "float_profile": "Дрейф",
+ "reverse_profile": "Реверсивный",
+ "custom_profile": "Пользовательский"
+ },
+ "conditions": {
+ "title": "Условия прогнозирования",
+ "startTime": "Время старта (UTC)",
+ "startDate": "Дата старта",
+ "flightProfile": "Профиль полета",
+ "startPoint": "Точка старта",
+ "pointPlaceholder": "Новая точка...",
+ "pointSearchPlaceholder": "Поиск по точкам...",
+ "latLng": "Широта/Долгота",
+ "save": "Сохранить",
+ "launchAlt": "Высота старта (м)",
+ "burstAlt": "Высота разрыва (м)",
+ "ascentRate": "Скорость подъема (м/с)",
+ "descentRate": "Скорость спуска (м/с)",
+ "run": "Выполнить прогнозирование",
+ "profileEdit": "Профили подъема и спуска",
+ "ascentStage": "Стадия подъема",
+ "descentStage": "Стадия спуска",
+ "stageNone": "Нет",
+ "stageStandard": "Стандартная",
+ "stageCustom": "Пользовательская",
+ "openCurveEditor": "Открыть редактор кривых"
+ },
+ "workspaces": {
+ "title": "Рабочие области",
+ "empty": "Нет созданных областей.",
+ "add": "Добавить",
+ "rename": "Переименовать",
+ "delete": "Удалить",
+ "visible": "Показать/скрыть",
+ "color": "Цвет",
+ "opacity": "Прозрачность",
+ "run": "Рассчитать",
+ "running": "Расчет...",
+ "edit": "Редактировать",
+ "defaultName": "Рабочая область {n}",
+ "deleteConfirm": "Удалить рабочую область \"{name}\"?",
+ "runError": "Ошибка расчета: {error}"
+ },
+ "timeline": {
+ "title": "Временная шкала",
+ "time": "Время",
+ "altitude": "Высота",
+ "position": "Позиция",
+ "play": "Воспроизвести",
+ "pause": "Пауза",
+ "stop": "Сбросить",
+ "speed": "Скорость"
+ },
+ "settings": {
+ "title": "Настройки",
+ "language": "Язык",
+ "map": "Карта",
+ "baseLayer": "Базовый слой",
+ "showScale": "Показывать масштаб",
+ "showNavigation": "Навигационные элементы",
+ "units": "Единицы измерения",
+ "metric": "Метрические",
+ "imperial": "Имперские",
+ "saved": "Настройки сохранены"
+ },
+ "editor": {
+ "add": "Добавить",
+ "edit": "Редактировать",
+ "save": "Сохранить",
+ "update": "Обновить",
+ "delete": "Удалить",
+ "cancel": "Отмена",
+ "close": "Закрыть",
+ "searchPlaceholder": "Поиск..."
+ },
+ "points": {
+ "item": "точка",
+ "itemGenitive": "точки",
+ "items": "точки",
+ "name": "Название точки",
+ "lat": "Широта",
+ "lon": "Долгота",
+ "alt": "Высота",
+ "degrees": "Градусы",
+ "metersAsl": "Метры над ур. моря"
+ },
+ "common": {
+ "error": "Ошибка",
+ "success": "Успех",
+ "warning": "Предупреждение",
+ "info": "Информация",
+ "yes": "Да",
+ "no": "Нет"
+ },
+ "selection": {
+ "header": "Режим выбора координат",
+ "body": "Кликните на карту, чтобы выбрать координаты"
+ },
+ "forecast": {
+ "success": "Запрос прогноза",
+ "successBody": "Запрос прогноза успешно выполнен!",
+ "error": "Ошибка прогноза",
+ "errorBody": "Ошибка при получении прогноза: {error}"
+ }
+}
diff --git a/src/lib/index.js b/src/lib/index.js
deleted file mode 100644
index 856f2b6..0000000
--- a/src/lib/index.js
+++ /dev/null
@@ -1 +0,0 @@
-// place files you want to import through the `$lib` alias in this folder.
diff --git a/src/lib/map/Map.svelte b/src/lib/map/Map.svelte
new file mode 100644
index 0000000..1a171d7
--- /dev/null
+++ b/src/lib/map/Map.svelte
@@ -0,0 +1,69 @@
+
+
+
+ {#if ready && map}
+ {@render children?.()}
+ {/if}
+
diff --git a/src/lib/map/context.ts b/src/lib/map/context.ts
new file mode 100644
index 0000000..9c71eab
--- /dev/null
+++ b/src/lib/map/context.ts
@@ -0,0 +1,17 @@
+import { getContext, setContext } from 'svelte';
+import type { IMap } from './core';
+
+const KEY = Symbol('lsv-map');
+
+/** Child components fetch the `IMap` instance via `getMap()`. */
+export interface MapContext {
+ get(): IMap | null;
+}
+
+export function setMapContext(getter: () => IMap | null): void {
+ setContext(KEY, { get: getter });
+}
+
+export function getMap(): IMap | null {
+ return getContext(KEY)?.get() ?? null;
+}
diff --git a/src/lib/map/core.ts b/src/lib/map/core.ts
new file mode 100644
index 0000000..37ab14b
--- /dev/null
+++ b/src/lib/map/core.ts
@@ -0,0 +1,121 @@
+import type { LatLngTuple, LngLatTuple } from '$domain';
+
+/**
+ * Map abstraction.
+ *
+ * Goals:
+ * - Isolate all MapLibre-specific types inside src/lib/map/maplibre.ts.
+ * - Expose a small, map-library-agnostic vocabulary (markers, polylines,
+ * icons, events) so features (workspaces, timeline, tools) can be tested
+ * against the interface alone.
+ * - Support "scenes" — named collections of layers owned by a feature so
+ * each workspace/tool can add/remove everything it owns atomically.
+ *
+ * If another library ever replaces MapLibre, implementing IMap is the only
+ * file that changes.
+ */
+
+export type MapEvent = 'click' | 'mousemove' | 'move' | 'zoom' | 'load';
+
+export interface MapClickEvent {
+ lngLat: { lat: number; lng: number };
+ originalEvent: MouseEvent;
+}
+
+export type MapEventPayload = {
+ click: MapClickEvent;
+ mousemove: MapClickEvent;
+ move: { center: LngLatTuple; zoom: number };
+ zoom: { zoom: number };
+ load: undefined;
+};
+
+export type MapEventHandler = (e: MapEventPayload[E]) => void;
+
+export interface MarkerOptions {
+ lngLat: LngLatTuple;
+ iconUrl?: string;
+ iconSize?: [number, number];
+ className?: string;
+ /** Optional HTML shown in a popup on hover. */
+ popupHtml?: string;
+}
+
+export interface LineOptions {
+ coords: LatLngTuple[];
+ color?: string;
+ width?: number;
+ opacity?: number;
+ dashArray?: [number, number];
+}
+
+export interface CircleOptions {
+ center: LngLatTuple;
+ /** Radius in pixels (visual; screen-space, matches MapLibre circle layers). */
+ radiusPx?: number;
+ color?: string;
+ opacity?: number;
+ strokeColor?: string;
+ strokeWidth?: number;
+}
+
+export interface Marker {
+ setLngLat(pos: LngLatTuple): void;
+ remove(): void;
+}
+
+export interface MapLayer {
+ readonly id: string;
+ remove(): void;
+}
+
+export interface Scene {
+ readonly name: string;
+ addLine(id: string, options: LineOptions): MapLayer;
+ addCircle(id: string, options: CircleOptions): MapLayer;
+ addMarker(id: string, options: MarkerOptions): Marker;
+ /** Remove an individual layer in this scene by its id. */
+ remove(id: string): void;
+ /** Remove everything added to this scene. */
+ clear(): void;
+ /** Called by IMap.dispose() to release resources. */
+ dispose(): void;
+}
+
+export interface IMap {
+ ready: Promise;
+
+ on(event: E, handler: MapEventHandler): () => void;
+
+ setCenter(pos: LngLatTuple, zoom?: number): void;
+ panTo(pos: LngLatTuple, durationMs?: number): void;
+ fitBounds(coords: LatLngTuple[], paddingPx?: number): void;
+ getZoom(): number;
+ setZoom(zoom: number): void;
+
+ setCursor(cursor: string | null): void;
+
+ /**
+ * Get or create a named scene. Scenes are the unit of layer ownership:
+ * a feature adds all its layers through a scene and calls `.clear()` to
+ * remove them in one step.
+ */
+ scene(name: string): Scene;
+ disposeScene(name: string): void;
+
+ /** Underlying implementation instance, for code that needs library-specific APIs. Use sparingly. */
+ getRawInstance(): unknown;
+
+ dispose(): void;
+}
+
+export interface MapInit {
+ container: HTMLElement;
+ center: LngLatTuple;
+ zoom: number;
+ baseLayer?: 'osm' | 'satellite';
+ showNavigationControl?: boolean;
+ showScaleControl?: boolean;
+}
+
+export type MapFactory = (init: MapInit) => IMap;
diff --git a/src/lib/map/index.ts b/src/lib/map/index.ts
new file mode 100644
index 0000000..a57319a
--- /dev/null
+++ b/src/lib/map/index.ts
@@ -0,0 +1,9 @@
+export * from './core';
+export { createMapLibreMap } from './maplibre';
+export { plotPrediction, plotTelemetry, plotAnimatedMarker } from './layers';
+export type { TrajectoryStyle } from './layers';
+export { startCoordinateSelection } from './tools/selection';
+export { startMeasure } from './tools/measure';
+export type { MeasureHandle, MeasureOptions } from './tools/measure';
+export { setMapContext, getMap } from './context';
+export { default as Map } from './Map.svelte';
diff --git a/src/lib/map/layers.ts b/src/lib/map/layers.ts
new file mode 100644
index 0000000..2a03e31
--- /dev/null
+++ b/src/lib/map/layers.ts
@@ -0,0 +1,124 @@
+import type { Prediction, Telemetry } from '$domain';
+import { toLngLat } from '$domain';
+import type { IMap, Scene } from './core';
+
+/**
+ * Plot helpers for high-level domain objects. These live outside MapLibreMap
+ * so they can be reused against any IMap implementation.
+ *
+ * Icons are served from /static; pass explicit overrides if a workspace
+ * should use custom markers.
+ */
+
+export interface TrajectoryStyle {
+ color?: string;
+ width?: number;
+ opacity?: number;
+ launchIcon?: string;
+ landingIcon?: string;
+ burstIcon?: string;
+ iconSize?: [number, number];
+}
+
+const DEFAULT_STYLE: Required> &
+ Pick = {
+ color: '#000000',
+ width: 3,
+ opacity: 1,
+ iconSize: [12, 12],
+ launchIcon: '/target-blue.png',
+ landingIcon: '/target-red.png',
+ burstIcon: '/pop-marker.png',
+};
+
+export function plotPrediction(
+ scene: Scene,
+ prediction: Prediction,
+ style: TrajectoryStyle = {},
+): void {
+ const s = { ...DEFAULT_STYLE, ...style };
+ scene.clear();
+
+ scene.addLine('path', {
+ coords: prediction.flight_path,
+ color: s.color,
+ width: s.width,
+ opacity: s.opacity,
+ });
+
+ scene.addMarker('launch', {
+ lngLat: toLngLat(prediction.launch.latlng),
+ iconUrl: s.launchIcon,
+ iconSize: s.iconSize,
+ popupHtml: `Launch
${prediction.launch.latlng.lat.toFixed(6)}, ${prediction.launch.latlng.lng.toFixed(6)}`,
+ });
+
+ scene.addMarker('landing', {
+ lngLat: toLngLat(prediction.landing.latlng),
+ iconUrl: s.landingIcon,
+ iconSize: s.iconSize,
+ popupHtml: `Landing
${prediction.landing.latlng.lat.toFixed(6)}, ${prediction.landing.latlng.lng.toFixed(6)}`,
+ });
+
+ scene.addMarker('burst', {
+ lngLat: toLngLat(prediction.burst.latlng),
+ iconUrl: s.burstIcon,
+ iconSize: [s.iconSize[0] + 4, s.iconSize[1] + 4],
+ popupHtml: `Burst
${prediction.burst.latlng.lat.toFixed(6)}, ${prediction.burst.latlng.lng.toFixed(6)}`,
+ });
+}
+
+export function plotTelemetry(
+ map: IMap,
+ scene: Scene,
+ telemetry: Telemetry,
+ style: TrajectoryStyle = {},
+): void {
+ const s = { ...DEFAULT_STYLE, ...style };
+ scene.clear();
+
+ scene.addLine('path', {
+ coords: telemetry.flight_path,
+ color: s.color,
+ width: s.width,
+ opacity: s.opacity,
+ });
+
+ scene.addMarker('launch', {
+ lngLat: toLngLat(telemetry.launch.latlng),
+ iconUrl: s.launchIcon,
+ iconSize: s.iconSize,
+ });
+
+ telemetry.datapoints.forEach((p, i) => {
+ scene.addMarker(`point-${i}`, {
+ lngLat: [p.longitude, p.latitude],
+ iconUrl: '/marker-sm-red.png',
+ iconSize: [8, 8],
+ popupHtml: `${p.datetime}
${p.latitude.toFixed(6)}, ${p.longitude.toFixed(6)}`,
+ });
+ });
+
+ if (telemetry.flight_path.length > 0) {
+ map.fitBounds(telemetry.flight_path, 50);
+ }
+}
+
+export function plotAnimatedMarker(scene: Scene, lng: number, lat: number): void {
+ scene.clear();
+ scene.addCircle('marker-ring', {
+ center: [lng, lat],
+ radiusPx: 14,
+ color: '#FF6B6B',
+ opacity: 0.3,
+ strokeColor: '#FF1744',
+ strokeWidth: 0,
+ });
+ scene.addCircle('marker-core', {
+ center: [lng, lat],
+ radiusPx: 6,
+ color: '#FF1744',
+ strokeColor: '#ffffff',
+ strokeWidth: 2,
+ });
+}
diff --git a/src/lib/map/maplibre.ts b/src/lib/map/maplibre.ts
new file mode 100644
index 0000000..32adfd5
--- /dev/null
+++ b/src/lib/map/maplibre.ts
@@ -0,0 +1,316 @@
+import maplibregl, {
+ type Map as MLMap,
+ type LngLatLike,
+ type MarkerOptions as MLMarkerOptions,
+} from 'maplibre-gl';
+import 'maplibre-gl/dist/maplibre-gl.css';
+
+import type {
+ CircleOptions,
+ IMap,
+ LineOptions,
+ MapEvent,
+ MapEventHandler,
+ MapEventPayload,
+ MapInit,
+ MapLayer,
+ Marker,
+ MarkerOptions,
+ Scene,
+} from './core';
+import type { LatLngTuple, LngLatTuple } from '$domain';
+
+/** Map common base-layer names to MapLibre style JSON. */
+const BASE_STYLES: Record, maplibregl.StyleSpecification> = {
+ osm: {
+ version: 8,
+ sources: {
+ osm: {
+ type: 'raster',
+ tiles: ['https://a.tile.openstreetmap.org/{z}/{x}/{y}.png'],
+ tileSize: 256,
+ attribution: '© OpenStreetMap',
+ },
+ },
+ layers: [{ id: 'osm', type: 'raster', source: 'osm', minzoom: 0, maxzoom: 19 }],
+ },
+ satellite: {
+ version: 8,
+ sources: {
+ sat: {
+ type: 'raster',
+ tiles: [
+ 'https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',
+ ],
+ tileSize: 256,
+ attribution: 'Tiles © Esri',
+ },
+ },
+ layers: [{ id: 'sat', type: 'raster', source: 'sat', minzoom: 0, maxzoom: 19 }],
+ },
+};
+
+class MapLibreScene implements Scene {
+ private sources = new Set();
+ private layers = new Set();
+ private markers = new Map();
+
+ constructor(
+ public readonly name: string,
+ private map: MLMap,
+ ) {}
+
+ private scopeId(id: string): string {
+ return `${this.name}__${id}`;
+ }
+
+ addLine(id: string, options: LineOptions): MapLayer {
+ const layerId = this.scopeId(id);
+ const coords = options.coords.map<[number, number]>((c) => [c[1], c[0]]);
+
+ if (this.map.getSource(layerId)) this.remove(id);
+
+ this.map.addSource(layerId, {
+ type: 'geojson',
+ data: {
+ type: 'Feature',
+ properties: {},
+ geometry: { type: 'LineString', coordinates: coords },
+ },
+ });
+ this.map.addLayer({
+ id: layerId,
+ type: 'line',
+ source: layerId,
+ layout: { 'line-join': 'round', 'line-cap': 'round' },
+ paint: {
+ 'line-color': options.color ?? '#000',
+ 'line-width': options.width ?? 3,
+ 'line-opacity': options.opacity ?? 1,
+ ...(options.dashArray ? { 'line-dasharray': options.dashArray } : {}),
+ },
+ });
+ this.sources.add(layerId);
+ this.layers.add(layerId);
+
+ return {
+ id: layerId,
+ remove: () => this.remove(id),
+ };
+ }
+
+ addCircle(id: string, options: CircleOptions): MapLayer {
+ const layerId = this.scopeId(id);
+ if (this.map.getSource(layerId)) this.remove(id);
+
+ this.map.addSource(layerId, {
+ type: 'geojson',
+ data: {
+ type: 'Feature',
+ properties: {},
+ geometry: { type: 'Point', coordinates: options.center },
+ },
+ });
+ this.map.addLayer({
+ id: layerId,
+ type: 'circle',
+ source: layerId,
+ paint: {
+ 'circle-radius': options.radiusPx ?? 6,
+ 'circle-color': options.color ?? '#0b5ed7',
+ 'circle-opacity': options.opacity ?? 1,
+ 'circle-stroke-color': options.strokeColor ?? '#ffffff',
+ 'circle-stroke-width': options.strokeWidth ?? 2,
+ },
+ });
+ this.sources.add(layerId);
+ this.layers.add(layerId);
+
+ return {
+ id: layerId,
+ remove: () => this.remove(id),
+ };
+ }
+
+ addMarker(id: string, options: MarkerOptions): Marker {
+ const scoped = this.scopeId(id);
+ const existing = this.markers.get(scoped);
+ if (existing) existing.remove();
+
+ let mlOptions: MLMarkerOptions | undefined;
+ if (options.iconUrl) {
+ const el = document.createElement('div');
+ el.className = options.className ?? 'lsv-marker';
+ el.style.backgroundImage = `url(${options.iconUrl})`;
+ const [w, h] = options.iconSize ?? [12, 12];
+ el.style.width = `${w}px`;
+ el.style.height = `${h}px`;
+ el.style.backgroundSize = '100%';
+ mlOptions = { element: el };
+ }
+
+ const marker = new maplibregl.Marker(mlOptions).setLngLat(options.lngLat as LngLatLike);
+
+ if (options.popupHtml) {
+ const popup = new maplibregl.Popup({ offset: 16, closeButton: false }).setHTML(
+ options.popupHtml,
+ );
+ marker.setPopup(popup);
+ marker.getElement().addEventListener('mouseenter', () => marker.togglePopup());
+ marker.getElement().addEventListener('mouseleave', () => marker.togglePopup());
+ }
+
+ marker.addTo(this.map);
+ this.markers.set(scoped, marker);
+
+ return {
+ setLngLat: (pos) => marker.setLngLat(pos as LngLatLike),
+ remove: () => this.remove(id),
+ };
+ }
+
+ remove(id: string): void {
+ const scoped = this.scopeId(id);
+ if (this.map.getLayer(scoped)) this.map.removeLayer(scoped);
+ if (this.map.getSource(scoped)) this.map.removeSource(scoped);
+ this.layers.delete(scoped);
+ this.sources.delete(scoped);
+ const marker = this.markers.get(scoped);
+ if (marker) {
+ marker.remove();
+ this.markers.delete(scoped);
+ }
+ }
+
+ clear(): void {
+ for (const id of Array.from(this.layers)) {
+ if (this.map.getLayer(id)) this.map.removeLayer(id);
+ }
+ for (const id of Array.from(this.sources)) {
+ if (this.map.getSource(id)) this.map.removeSource(id);
+ }
+ for (const marker of this.markers.values()) marker.remove();
+ this.layers.clear();
+ this.sources.clear();
+ this.markers.clear();
+ }
+
+ dispose(): void {
+ this.clear();
+ }
+}
+
+export class MapLibreMap implements IMap {
+ private map: MLMap;
+ private scenes = new Map();
+ public readonly ready: Promise;
+
+ constructor(init: MapInit) {
+ this.map = new maplibregl.Map({
+ container: init.container,
+ style: BASE_STYLES[init.baseLayer ?? 'osm'],
+ center: init.center,
+ zoom: init.zoom,
+ });
+
+ if (init.showNavigationControl !== false) {
+ this.map.addControl(new maplibregl.NavigationControl(), 'bottom-left');
+ }
+ if (init.showScaleControl !== false) {
+ this.map.addControl(new maplibregl.ScaleControl({ maxWidth: 100, unit: 'metric' }), 'bottom-right');
+ }
+
+ this.ready = new Promise((resolve) => this.map.once('load', () => resolve()));
+ }
+
+ on(event: E, handler: MapEventHandler): () => void {
+ const wrapped = (e: unknown) => {
+ switch (event) {
+ case 'click':
+ case 'mousemove': {
+ const ev = e as maplibregl.MapMouseEvent;
+ (handler as MapEventHandler<'click'>)({
+ lngLat: { lat: ev.lngLat.lat, lng: ev.lngLat.lng },
+ originalEvent: ev.originalEvent,
+ });
+ break;
+ }
+ case 'move':
+ (handler as MapEventHandler<'move'>)({
+ center: [this.map.getCenter().lng, this.map.getCenter().lat],
+ zoom: this.map.getZoom(),
+ });
+ break;
+ case 'zoom':
+ (handler as MapEventHandler<'zoom'>)({ zoom: this.map.getZoom() });
+ break;
+ case 'load':
+ (handler as MapEventHandler<'load'>)(undefined as MapEventPayload['load']);
+ break;
+ }
+ };
+ this.map.on(event as 'click', wrapped);
+ return () => this.map.off(event as 'click', wrapped);
+ }
+
+ setCenter(pos: LngLatTuple, zoom?: number): void {
+ this.map.setCenter(pos);
+ if (zoom !== undefined) this.map.setZoom(zoom);
+ }
+
+ panTo(pos: LngLatTuple, durationMs?: number): void {
+ this.map.panTo(pos, durationMs ? { duration: durationMs } : undefined);
+ }
+
+ fitBounds(coords: LatLngTuple[], paddingPx = 50): void {
+ if (coords.length === 0) return;
+ const first: [number, number] = [coords[0][1], coords[0][0]];
+ const bounds = coords.reduce(
+ (b, c) => b.extend([c[1], c[0]] as [number, number]),
+ new maplibregl.LngLatBounds(first, first),
+ );
+ this.map.fitBounds(bounds, { padding: paddingPx });
+ }
+
+ getZoom(): number {
+ return this.map.getZoom();
+ }
+
+ setZoom(zoom: number): void {
+ this.map.setZoom(zoom);
+ }
+
+ setCursor(cursor: string | null): void {
+ this.map.getCanvas().style.cursor = cursor ?? '';
+ }
+
+ scene(name: string): Scene {
+ let scene = this.scenes.get(name);
+ if (!scene) {
+ scene = new MapLibreScene(name, this.map);
+ this.scenes.set(name, scene);
+ }
+ return scene;
+ }
+
+ disposeScene(name: string): void {
+ const scene = this.scenes.get(name);
+ if (!scene) return;
+ scene.dispose();
+ this.scenes.delete(name);
+ }
+
+ getRawInstance(): MLMap {
+ return this.map;
+ }
+
+ dispose(): void {
+ for (const s of this.scenes.values()) s.dispose();
+ this.scenes.clear();
+ this.map.remove();
+ }
+}
+
+export function createMapLibreMap(init: MapInit): IMap {
+ return new MapLibreMap(init);
+}
diff --git a/src/lib/map/tools/measure.ts b/src/lib/map/tools/measure.ts
new file mode 100644
index 0000000..17a6acf
--- /dev/null
+++ b/src/lib/map/tools/measure.ts
@@ -0,0 +1,75 @@
+import type { IMap } from '../core';
+import type { LatLngTuple } from '$domain';
+import { distHaversine } from '$domain';
+
+/**
+ * Library-agnostic measure tool. Click to drop points; each new point draws
+ * a segment and reports the running total distance in kilometers.
+ *
+ * Returns a disposer that removes all overlays and deactivates listeners.
+ */
+export interface MeasureHandle {
+ dispose(): void;
+ reset(): void;
+}
+
+export interface MeasureOptions {
+ onUpdate?: (totalKm: number, points: LatLngTuple[]) => void;
+ color?: string;
+ width?: number;
+ sceneName?: string;
+}
+
+export function startMeasure(map: IMap, options: MeasureOptions = {}): MeasureHandle {
+ const scene = map.scene(options.sceneName ?? 'measure');
+ const points: LatLngTuple[] = [];
+ let segmentCounter = 0;
+ let pointCounter = 0;
+ let total = 0;
+
+ map.setCursor('crosshair');
+
+ const off = map.on('click', (e) => {
+ const latlng: LatLngTuple = [e.lngLat.lat, e.lngLat.lng];
+ points.push(latlng);
+
+ scene.addMarker(`p-${pointCounter++}`, {
+ lngLat: [e.lngLat.lng, e.lngLat.lat],
+ iconSize: [8, 8],
+ className: 'lsv-measure-dot',
+ });
+
+ if (points.length > 1) {
+ const prev = points[points.length - 2];
+ total += distHaversine(
+ { lat: prev[0], lng: prev[1] },
+ { lat: latlng[0], lng: latlng[1] },
+ );
+ scene.addLine(`seg-${segmentCounter++}`, {
+ coords: [prev, latlng],
+ color: options.color ?? '#2563eb',
+ width: options.width ?? 2,
+ });
+ }
+
+ options.onUpdate?.(total, [...points]);
+ });
+
+ function reset() {
+ scene.clear();
+ points.length = 0;
+ total = 0;
+ segmentCounter = 0;
+ pointCounter = 0;
+ options.onUpdate?.(0, []);
+ }
+
+ return {
+ dispose() {
+ off();
+ map.setCursor(null);
+ map.disposeScene(options.sceneName ?? 'measure');
+ },
+ reset,
+ };
+}
diff --git a/src/lib/map/tools/selection.ts b/src/lib/map/tools/selection.ts
new file mode 100644
index 0000000..e34ca9a
--- /dev/null
+++ b/src/lib/map/tools/selection.ts
@@ -0,0 +1,23 @@
+import type { IMap } from '../core';
+
+/**
+ * One-shot coordinate selection tool: next click reports a lat/lng and the
+ * tool disarms itself.
+ */
+export function startCoordinateSelection(
+ map: IMap,
+ onSelect: (coords: { lat: number; lng: number }) => void,
+): () => void {
+ map.setCursor('crosshair');
+
+ const off = map.on('click', (e) => {
+ map.setCursor(null);
+ off();
+ onSelect(e.lngLat);
+ });
+
+ return () => {
+ map.setCursor(null);
+ off();
+ };
+}
diff --git a/src/lib/mapcore.ts b/src/lib/mapcore.ts
deleted file mode 100644
index be80e3e..0000000
--- a/src/lib/mapcore.ts
+++ /dev/null
@@ -1,196 +0,0 @@
-import maplibregl from 'maplibre-gl';
-import 'maplibre-gl/dist/maplibre-gl.css';
-
-// ─── Generic interfaces ────────────────────────────────────────────────────────
-// Implement these with any map library (Leaflet, OpenLayers, etc.)
-
-export interface IMapPopup {
- setHTML(html: string): this;
-}
-
-export interface IMapMarker {
- setLngLat(lngLat: [number, number]): IMapMarker;
- setPopup(popup: IMapPopup): IMapMarker;
- addTo(core: IMapCore): IMapMarker;
- remove(): void;
- togglePopup(): void;
-}
-
-export interface IMapCore {
- init(container: HTMLElement, options: { center: [number, number]; zoom: number }): void;
- addNavigationControl(position: string): void;
- addScaleControl(options: { maxWidth: number; unit: string }, position: string): void;
- on(event: string, handler: (e: { lngLat: { lat: number; lng: number } }) => void): void;
- hasLayer(id: string): boolean;
- hasSource(id: string): boolean;
- addSource(id: string, source: object): void;
- addLayer(layer: object): void;
- removeLayer(id: string): void;
- removeSource(id: string): void;
- fitBounds(coords: [number, number][], padding: number): void;
- setCenter(lngLat: [number, number]): void;
- setZoom(zoom: number): void;
- panTo(lngLat: [number, number], options?: { duration?: number }): void;
- createMarker(options?: { element?: HTMLElement; anchor?: string }): IMapMarker;
- createPopup(options?: { offset?: number; closeButton?: boolean }): IMapPopup;
- /** Returns the underlying raw map instance (e.g. for library-specific plugins). */
- getInstance(): unknown;
-}
-
-// ─── MapLibre GL implementation ────────────────────────────────────────────────
-
-class MapLibrePopup implements IMapPopup {
- private _popup: maplibregl.Popup;
-
- constructor(options?: { offset?: number; closeButton?: boolean }) {
- this._popup = new maplibregl.Popup(options);
- }
-
- setHTML(html: string): this {
- this._popup.setHTML(html);
- return this;
- }
-
- /** @internal used by MapLibreMarker */
- raw(): maplibregl.Popup {
- return this._popup;
- }
-}
-
-class MapLibreMarker implements IMapMarker {
- private _marker: maplibregl.Marker;
-
- constructor(options?: { element?: HTMLElement; anchor?: string }) {
- this._marker = new maplibregl.Marker(options as maplibregl.MarkerOptions);
- }
-
- setLngLat(lngLat: [number, number]): this {
- this._marker.setLngLat(lngLat);
- return this;
- }
-
- setPopup(popup: IMapPopup): this {
- this._marker.setPopup((popup as MapLibrePopup).raw());
- return this;
- }
-
- addTo(core: IMapCore): this {
- this._marker.addTo(core.getInstance() as maplibregl.Map);
- return this;
- }
-
- remove(): void {
- this._marker.remove();
- }
-
- togglePopup(): void {
- this._marker.togglePopup();
- }
-}
-
-export class MapLibreCore implements IMapCore {
- private _map!: maplibregl.Map;
-
- init(container: HTMLElement, options: { center: [number, number]; zoom: number }): void {
- this._map = new maplibregl.Map({
- container,
- style: {
- version: 8,
- sources: {
- osm: {
- type: 'raster',
- tiles: ['https://a.tile.openstreetmap.org/{z}/{x}/{y}.png'],
- tileSize: 256,
- attribution:
- '© OpenStreetMap contributors',
- },
- },
- layers: [
- {
- id: 'osm',
- type: 'raster',
- source: 'osm',
- minzoom: 0,
- maxzoom: 19,
- },
- ],
- },
- center: options.center,
- zoom: options.zoom,
- });
- }
-
- addNavigationControl(position: string): void {
- this._map.addControl(
- new maplibregl.NavigationControl(),
- position as maplibregl.ControlPosition,
- );
- }
-
- addScaleControl(options: { maxWidth: number; unit: string }, position: string): void {
- this._map.addControl(
- new maplibregl.ScaleControl(options as maplibregl.ScaleControlOptions),
- position as maplibregl.ControlPosition,
- );
- }
-
- on(event: string, handler: (e: { lngLat: { lat: number; lng: number } }) => void): void {
- this._map.on(event as maplibregl.MapEventType, handler as never);
- }
-
- hasLayer(id: string): boolean {
- return !!this._map.getLayer(id);
- }
-
- hasSource(id: string): boolean {
- return !!this._map.getSource(id);
- }
-
- addSource(id: string, source: object): void {
- this._map.addSource(id, source as maplibregl.SourceSpecification);
- }
-
- addLayer(layer: object): void {
- this._map.addLayer(layer as maplibregl.LayerSpecification);
- }
-
- removeLayer(id: string): void {
- this._map.removeLayer(id);
- }
-
- removeSource(id: string): void {
- this._map.removeSource(id);
- }
-
- fitBounds(coords: [number, number][], padding: number): void {
- const bounds = coords.reduce(
- (b, coord) => b.extend(coord),
- new maplibregl.LngLatBounds(coords[0], coords[0]),
- );
- this._map.fitBounds(bounds, { padding });
- }
-
- setCenter(lngLat: [number, number]): void {
- this._map.setCenter(lngLat);
- }
-
- setZoom(zoom: number): void {
- this._map.setZoom(zoom);
- }
-
- panTo(lngLat: [number, number], options?: { duration?: number }): void {
- this._map.panTo(lngLat, options);
- }
-
- createMarker(options?: { element?: HTMLElement; anchor?: string }): IMapMarker {
- return new MapLibreMarker(options);
- }
-
- createPopup(options?: { offset?: number; closeButton?: boolean }): IMapPopup {
- return new MapLibrePopup(options);
- }
-
- getInstance(): maplibregl.Map {
- return this._map;
- }
-}
diff --git a/src/lib/mathutil.ts b/src/lib/mathutil.ts
deleted file mode 100644
index 37b010b..0000000
--- a/src/lib/mathutil.ts
+++ /dev/null
@@ -1,37 +0,0 @@
-export function distHaversine(
- p1: { lat: number; lng: number },
- p2: { lat: number; lng: number },
- precision?: number
-): number {
- const R = 6371; // Earth's mean radius in km
-
- const rad = (x: number): number => (x * Math.PI) / 180;
-
- const dLat = rad(p2.lat - p1.lat);
- const dLong = rad(p2.lng - p1.lng);
-
- const a =
- Math.sin(dLat / 2) * Math.sin(dLat / 2) +
- Math.cos(rad(p1.lat)) * Math.cos(rad(p2.lat)) * Math.sin(dLong / 2) * Math.sin(dLong / 2);
-
- const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
- const d = R * c;
-
- return precision ? parseFloat(d.toFixed(precision)) : d;
-}
-
-export function bearingHaversine(p1: { lat: number; lng: number }, p2: { lat: number; lng: number }): number {
- const rad = (x: number): number => (x * Math.PI) / 180;
-
- const dLong = rad(p2.lng - p1.lng);
- const y = Math.sin(dLong) * Math.cos(rad(p2.lat));
- const x =
- Math.cos(rad(p1.lat)) * Math.sin(rad(p2.lat)) - Math.sin(rad(p1.lat)) * Math.cos(rad(p2.lat)) * Math.cos(dLong);
-
- return (Math.atan2(y, x) * 180) / Math.PI;
-}
-
-export function toFixedNumber(num: number, digits: number, base: number = 10): number {
- const pow = Math.pow(base ?? 10, digits);
- return Math.round(num * pow) / pow;
-}
diff --git a/src/lib/prediction.ts b/src/lib/prediction.ts
deleted file mode 100644
index afd31cc..0000000
--- a/src/lib/prediction.ts
+++ /dev/null
@@ -1,161 +0,0 @@
-import { writable } from "svelte/store";
-import type { LatLngExpression } from "./types";
-
-import { getCsrfToken } from "./auth";
-import type { PredictionStage, RawPrediction, Prediction, Point } from "./types";
-import { PredictionStore, RawPredictionStore, writeLocalStorage } from "./stores";
-
-function getLatestDataset() {
- const now = new Date();
- const hours = now.getUTCHours();
- const minutes = now.getUTCMinutes();
- const seconds = now.getUTCSeconds();
-
- // Round down to the nearest 6-hour interval
- const roundedHours = Math.floor(hours / 6) * 6;
- const roundedDate = new Date(now);
- roundedDate.setUTCHours(roundedHours, 0, 0, 0);
-
- // Subtract 6 hours to account for the lag
- roundedDate.setUTCHours(roundedDate.getUTCHours() - 6);
-
- return roundedDate.toISOString();
-}
-
-function formatLaunchDateTime(dateObj: string | Date, timeStr: string): string {
- // Ensure date is a Date object
- const date = new Date(dateObj);
-
- // Extract date components
- const year = date.getFullYear();
- const month = String(date.getMonth() + 1).padStart(2, "0");
- const day = String(date.getDate()).padStart(2, "0");
-
- // Format time (ensure it has seconds)
- let formattedTime = timeStr;
- if (timeStr.split(":").length === 2) {
- formattedTime += ":00"; // Add seconds if missing
- }
-
- // Combine into ISO string
- const isoString = new Date(`${year}-${month}-${day}T${formattedTime}Z`).toISOString();
-
- return isoString;
-}
-
-export const getForecast = async (
- flightParameters: Record,
- launchDateTime: string
-): Promise => {
- // Create request object
- flightParameters.dataset = getLatestDataset();
- flightParameters.launch_datetime = launchDateTime;
-
- if (flightParameters.start_point === -1) {
- // remove start_point if it is -1
- delete flightParameters.start_point;
- }
-
- console.log("Sending request:", flightParameters);
-
- try {
- // Example POST request - replace with your actual API endpoint
- const csrfToken = await getCsrfToken();
- if (!csrfToken) {
- throw new Error("CSRF token not found");
- }
-
- const response = await fetch("http://localhost:8000/api/predictions/", {
- method: "POST",
- headers: {
- "Content-Type": "application/json",
- "X-CSRFToken": csrfToken,
- },
- body: JSON.stringify(flightParameters),
- credentials: "include",
- });
-
- if (!response.ok) {
- throw new Error(`HTTP error! status: ${response.status}`);
- }
-
- const data = await response.json();
- console.log("Forecast response:", data);
-
- RawPredictionStore.set(data.result as RawPrediction);
- PredictionStore.set(parsePrediction(data.result.prediction) as Prediction);
- writeLocalStorage("rawPrediction", data.result as RawPrediction);
- writeLocalStorage("prediction", parsePrediction(data.result.prediction) as Prediction);
- // Handle the response data as needed
- } catch (error) {
- console.error("Error sending forecast request:", error);
- return Promise.reject(new Error(`${error}`));
- }
-};
-
-export function parsePrediction(prediction: PredictionStage[]): Prediction {
- const flight_path: LatLngExpression[] = [];
- const launch: Point = {} as any;
- const burst: Point = {} as any;
- const landing: Point = {} as any;
-
- const ascent = prediction[0].trajectory;
- const descent = prediction[1].trajectory;
-
- // Add the ascent track to the flight path array.
- ascent.forEach((item) => {
- let lon = item.longitude;
- if (lon > 180.0) {
- lon -= 360.0;
- }
-
- flight_path.push([item.latitude, lon, item.altitude]);
- });
-
- // Add the descent track to the flight path array.
- descent.forEach((item) => {
- let lon = item.longitude;
- if (lon > 180.0) {
- lon -= 360.0;
- }
-
- flight_path.push([item.latitude, lon, item.altitude]);
- });
-
- // Populate the launch, burst, and landing points
- const launchObj = ascent[0];
- let lon = launchObj.longitude;
- if (lon > 180.0) {
- lon -= 360.0;
- }
- launch.latlng = { lat: launchObj.latitude, lng: lon, alt: launchObj.altitude };
- launch.datetime = new Date(launchObj.datetime);
-
- const burstObj = descent[0];
- lon = burstObj.longitude;
- if (lon > 180.0) {
- lon -= 360.0;
- }
- burst.latlng = { lat: burstObj.latitude, lng: lon, alt: burstObj.altitude };
- burst.datetime = new Date(burstObj.datetime);
-
- const landingObj = descent[descent.length - 1];
- lon = landingObj.longitude;
- if (lon > 180.0) {
- lon -= 360.0;
- }
- landing.latlng = { lat: landingObj.latitude, lng: lon, alt: landingObj.altitude };
- landing.datetime = new Date(landingObj.datetime);
-
- const profile = prediction[1].stage === "descent" ? "standard_profile" : "float_profile";
- const flight_time = (new Date(landing.datetime).getTime() - new Date(launch.datetime).getTime()) / 1000;
-
- return {
- flight_path,
- launch,
- burst,
- landing,
- profile,
- flight_time,
- };
-}
diff --git a/src/lib/state/index.ts b/src/lib/state/index.ts
new file mode 100644
index 0000000..9e93089
--- /dev/null
+++ b/src/lib/state/index.ts
@@ -0,0 +1,2 @@
+export { persisted } from './persisted';
+export type { Serializer, PersistedOptions } from './persisted';
diff --git a/src/lib/state/persisted.ts b/src/lib/state/persisted.ts
new file mode 100644
index 0000000..6f4a037
--- /dev/null
+++ b/src/lib/state/persisted.ts
@@ -0,0 +1,131 @@
+import { writable, type Writable, type Updater } from 'svelte/store';
+import { browser } from '$app/environment';
+
+/**
+ * Writable store backed by localStorage, synced across tabs via
+ * BroadcastChannel. The store initializes with a snapshot from storage if
+ * present and falls back to `initial` otherwise. Subsequent writes are
+ * serialized to localStorage and broadcast to other tabs.
+ *
+ * Notes
+ * -----
+ * - Serialization uses JSON by default; pass custom `serializer` for Dates etc.
+ * - Reads on the server (or before hydration) return `initial` — no storage
+ * access happens until the `browser` flag is true.
+ * - Removing the key from storage (via another tab or devtools) resets the
+ * store to `initial` on the next notification.
+ * - A per-store "suppress rebroadcast" flag prevents a ping-pong loop when a
+ * remote update arrives: the incoming `set` must not trigger a new
+ * broadcast or we'd echo forever.
+ */
+
+export interface Serializer {
+ parse: (raw: string) => T;
+ stringify: (value: T) => string;
+}
+
+const json: Serializer = { parse: JSON.parse, stringify: JSON.stringify };
+
+export interface PersistedOptions {
+ serializer?: Serializer;
+ /**
+ * Skip cross-tab sync if multiple stores must not share a channel or if a
+ * store's value is too large to broadcast efficiently.
+ */
+ syncTabs?: boolean;
+}
+
+const CHANNEL = 'leaflet-svelte:store';
+
+let channel: BroadcastChannel | null = null;
+function getChannel(): BroadcastChannel | null {
+ if (!browser) return null;
+ if (typeof BroadcastChannel === 'undefined') return null;
+ channel ??= new BroadcastChannel(CHANNEL);
+ return channel;
+}
+
+export function persisted(
+ key: string,
+ initial: T,
+ options: PersistedOptions = {},
+): Writable {
+ const serializer = (options.serializer ?? (json as Serializer)) as Serializer;
+ const syncTabs = options.syncTabs ?? true;
+
+ const readFromStorage = (): T => {
+ if (!browser) return initial;
+ const raw = localStorage.getItem(key);
+ if (raw === null) return initial;
+ try {
+ return serializer.parse(raw);
+ } catch (e) {
+ console.warn(`[persisted] failed to parse "${key}":`, e);
+ return initial;
+ }
+ };
+
+ const store = writable(readFromStorage());
+
+ const write = (value: T) => {
+ if (!browser) return;
+ try {
+ localStorage.setItem(key, serializer.stringify(value));
+ } catch (e) {
+ console.warn(`[persisted] failed to write "${key}":`, e);
+ }
+ };
+
+ let firstTick = true;
+ let remoteUpdate = false;
+
+ if (browser) {
+ store.subscribe((value) => {
+ // The first subscribe fires synchronously with the initial value. We
+ // already read it from storage, so re-writing it is a no-op; skipping
+ // also avoids a spurious broadcast to other tabs on every page load.
+ if (firstTick) {
+ firstTick = false;
+ return;
+ }
+ write(value);
+ if (syncTabs && !remoteUpdate) {
+ getChannel()?.postMessage({ key, value });
+ }
+ });
+
+ if (syncTabs) {
+ getChannel()?.addEventListener('message', (event) => {
+ if (event.data?.key !== key) return;
+ remoteUpdate = true;
+ try {
+ store.set(event.data.value);
+ } finally {
+ remoteUpdate = false;
+ }
+ });
+ }
+
+ window.addEventListener('storage', (event) => {
+ if (event.storageArea !== localStorage || event.key !== key) return;
+ remoteUpdate = true;
+ try {
+ if (event.newValue === null) {
+ store.set(initial);
+ } else {
+ store.set(serializer.parse(event.newValue));
+ }
+ } catch {
+ // ignore malformed writes from another tab
+ } finally {
+ remoteUpdate = false;
+ }
+ });
+ }
+
+ return {
+ subscribe: store.subscribe,
+ set: store.set,
+ update: (fn: Updater) => store.update(fn),
+ };
+}
diff --git a/src/lib/stores.ts b/src/lib/stores.ts
deleted file mode 100644
index b800b0a..0000000
--- a/src/lib/stores.ts
+++ /dev/null
@@ -1,95 +0,0 @@
-import { writable } from "svelte/store";
-import type { FlightParameters, RawTelemetry, Telemetry } from "./types";
-import type { RawPrediction, Prediction } from "./types";
-import type { SavedPoint, SavedFlightProfile, SavedScenario } from "./types";
-
-export const readLocalStorage = (key: string, defaultValue: T): T => {
- const item = localStorage.getItem(key);
- if (item) {
- try {
- const parsed = JSON.parse(item);
- if (typeof parsed === "object" && parsed !== null) {
- return parsed as T;
- }
- } catch (error) {
- console.error(`Error parsing ${key} from localStorage:`, error);
- }
- }
- return defaultValue;
-};
-
-export const writeLocalStorage = (key: string, value: T): void => {
- try {
- localStorage.setItem(key, JSON.stringify(value));
- } catch (error) {
- console.error(`Error writing ${key} to localStorage:`, error);
- }
-}
-
-export const clearLocalStorage = (key: string): void => {
- try {
- localStorage.removeItem(key);
- }
- catch (error) {
- console.error(`Error clearing ${key} from localStorage:`, error);
- }
-}
-
-export const flightParametersDefaults: FlightParameters = {
- ascent_rate: 5.0,
- burst_altitude: 30000.0,
- dataset: "",
- descent_rate: 5.0,
- format: "json",
- launch_altitude: 0.0,
- launch_latitude: 62.1234,
- launch_longitude: 129.1234,
- profile: "standard_profile",
- version: 2,
-};
-
-export const FlightParametersStore = writable(
- readLocalStorage("flightParameters", flightParametersDefaults)
-);
-
-export const templateDataDefaults = {
- description: "",
- prediction_mode: "",
- model: "",
- dataset: "",
- flight_parameters: flightParametersDefaults,
-};
-
-export const scenarioDefaults: SavedScenario = {
- id: -1,
- name: "Новый сценарий",
- ...templateDataDefaults,
-}
-
-export const ScenarioStore = writable(
- readLocalStorage("scenario", scenarioDefaults as SavedScenario)
-);
-
-export const RawTelemetryStore = writable(
- readLocalStorage("rawTelemetry", {} as RawTelemetry)
-);
-
-export const TelemetryStore = writable(
- readLocalStorage("telemetry", {} as Telemetry)
-);
-
-export const RawPredictionStore = writable(
- readLocalStorage("rawPrediction", {} as RawPrediction)
-);
-
-export const PredictionStore = writable(
- readLocalStorage("prediction", {} as Prediction)
-);
-
-export const SavedPointsStore = writable([]);
-
-// stub
-export const SavedFlightProfilesStore = writable([]);
-
-// stub
-export const SavedScenarioStore = writable([]);
\ No newline at end of file
diff --git a/src/lib/telemetry.ts b/src/lib/telemetry.ts
deleted file mode 100644
index 384493b..0000000
--- a/src/lib/telemetry.ts
+++ /dev/null
@@ -1,22 +0,0 @@
-import { writable } from "svelte/store"
-
-import type { TelemetryPoint, Telemetry } from "./types";
-
-export function parseTelemetry(telemetry: TelemetryPoint[]): Telemetry {
- const flight_path: [number, number, number][] = telemetry.map((point) => [
- point.latitude,
- point.longitude,
- point.altitude
- ]);
-
- const launch = {
- latlng: { lat: telemetry[0].latitude, lng: telemetry[0].longitude },
- datetime: new Date(telemetry[0].datetime)
- };
-
- return {
- flight_path,
- launch,
- datapoints: telemetry
- };
-}
\ No newline at end of file
diff --git a/src/lib/types.ts b/src/lib/types.ts
deleted file mode 100644
index 15b4df1..0000000
--- a/src/lib/types.ts
+++ /dev/null
@@ -1,149 +0,0 @@
-// Define coordinate types (previously from Leaflet)
-export type LatLngTuple = [number, number] | [number, number, number]; // Support 2D and 3D coordinates
-export interface LatLngLiteral {
- lat: number;
- lng: number;
- alt?: number; // Optional altitude
-}
-export type LatLngExpression = LatLngTuple | LatLngLiteral;
-
-export const PROFILE_MAP = {
- "Обычный": "standard_profile",
- "Дрейф": "float_profile",
- "Реверсивный": "reverse_profile",
- "Пользовательский": "custom_profile",
-};
-
-// Map of profile names to their string identifiers
-export const PROFILE_NAMES = {
- standard_profile: "Обычный",
- float_profile: "Дрейф",
- reverse_profile: "Реверсивный",
- custom_profile: "Пользовательский"
-};
-
-export type ProfileName = keyof typeof PROFILE_MAP;
-
-export type ProfileIdentifier = keyof typeof PROFILE_NAMES;
-
-export interface FlightParameters {
- ascent_rate: number;
- burst_altitude: number;
- dataset: string;
- descent_rate: number;
- format: "json";
- launch_altitude: number;
- launch_latitude: number;
- launch_longitude: number;
- profile: (typeof PROFILE_MAP)[ProfileName];
- version: number;
- start_point?: number; // Optional, used for saved points
- rate_profile?: number; // Optional, used for custom profiles
- template?: number; // Optional, used for saved scenarios
-}
-
-export const PREDICTION_MODE_MAP = {
- "Разовый": "single",
- "Почасовой": "hourly",
- "Ансамблевый": "ensemble"
-};
-
-// Map of profile names to their string identifiers
-export const PPREDICTION_MODE_NAMES = {
- single: "Разовый",
- hourly: "Почасовой",
- ensemble: "Ансамблевый"
-};
-
-export interface Point {
- latlng: LatLngLiteral & { alt?: number };
- datetime: Date;
-}
-
-export interface TelemetryPoint {
- altitude: number;
- datetime: string;
- latitude: number;
- longitude: number;
- payload: string;
-}
-
-export interface TelemetryMetadata {
- complete_datetime: string;
- start_datetime: string;
-}
-
-export interface RawTelemetry {
- metadata: TelemetryMetadata;
- telemetry: TelemetryPoint[];
-}
-
-export interface Telemetry {
- flight_path: LatLngExpression[];
- launch: Point;
- datapoints: TelemetryPoint[];
-}
-
-
-export interface TrajectoryPoint {
- altitude: number;
- datetime: string;
- latitude: number;
- longitude: number;
-}
-
-export interface PredictionStage {
- stage: string;
- trajectory: TrajectoryPoint[];
-}
-
-export interface PredictionMetadata {
- complete_datetime: string;
- start_datetime: string;
-}
-
-export interface RawPrediction {
- metadata: PredictionMetadata;
- prediction: PredictionStage[];
-}
-
-export interface Prediction {
- flight_path: LatLngExpression[];
- launch: Point;
- burst: Point;
- landing: Point;
- profile: string;
- flight_time: number;
-}
-
-export interface SavedPoint {
- id: number;
- name: string;
- lat: number;
- lon: number;
- alt: number;
-}
-
-export interface RateCurvePoint {
- order: number; // Order in the curve
- time_constraint: number; // Time in seconds
- alt_constraint: number; // Altitude constraint in meters
- rate: number; // Rate in m/s
-}
-
-export interface SavedFlightProfile {
- id: number;
- name: string;
- type?: string;
- rate_profile_data: RateCurvePoint[];
-}
-
-export interface SavedScenario {
- id: number;
- name: string;
- description: string;
- prediction_mode: string;
- model: string;
- dataset: string;
- flight_parameters: FlightParameters;
-}
\ No newline at end of file
diff --git a/src/lib/ui/CollapsibleCard.svelte b/src/lib/ui/CollapsibleCard.svelte
new file mode 100644
index 0000000..651229c
--- /dev/null
+++ b/src/lib/ui/CollapsibleCard.svelte
@@ -0,0 +1,60 @@
+
+
+
+
+
+ {title}
+
+ {#if headerExtra}{@render headerExtra()}{/if}
+
+
+
+
+
+
+ {#if !collapsed}
+
+ {@render children?.()}
+
+ {/if}
+
diff --git a/src/lib/ui/ConfirmationPrompt.svelte b/src/lib/ui/ConfirmationPrompt.svelte
new file mode 100644
index 0000000..31376a1
--- /dev/null
+++ b/src/lib/ui/ConfirmationPrompt.svelte
@@ -0,0 +1,49 @@
+
+
+
+ {title}
+
+ {#if children}{@render children()}{/if}
+
+
+ {cancelText}
+ {confirmText}
+
+
diff --git a/src/lib/ui/EditableCell.svelte b/src/lib/ui/EditableCell.svelte
new file mode 100644
index 0000000..db405fc
--- /dev/null
+++ b/src/lib/ui/EditableCell.svelte
@@ -0,0 +1,56 @@
+
+
+
+ {#if editing}
+
+ {:else if value === emptyValue || value === null || value === undefined}
+ {emptyPlaceholder}
+ {:else}
+ {valuePrefix}{value}{valueSuffix}
+ {/if}
+
diff --git a/src/lib/ui/LabelGroup.svelte b/src/lib/ui/LabelGroup.svelte
new file mode 100644
index 0000000..811bc2b
--- /dev/null
+++ b/src/lib/ui/LabelGroup.svelte
@@ -0,0 +1,33 @@
+
+
+
+
+
+ {label}
+
+
+
+
+ {@render children?.()}
+
+
+
+
diff --git a/src/lib/ui/PanelContainer.svelte b/src/lib/ui/PanelContainer.svelte
new file mode 100644
index 0000000..3087d42
--- /dev/null
+++ b/src/lib/ui/PanelContainer.svelte
@@ -0,0 +1,38 @@
+
+
+
+
+
+ {@render children?.()}
+
diff --git a/src/lib/ui/SelectSearchable.svelte b/src/lib/ui/SelectSearchable.svelte
new file mode 100644
index 0000000..6056cfc
--- /dev/null
+++ b/src/lib/ui/SelectSearchable.svelte
@@ -0,0 +1,191 @@
+
+
+
+
+ e.key === 'Enter' && toggle()}
+ {...restProps}>
+ {selectedLabel || placeholder}
+
+ {#if clearable && selected != null}
+
+ ✕
+
+ {/if}
+
+ {#if isOpen}
+
+ {/if}
+
+
+
diff --git a/src/lib/components/ui/SpoilerGroup.svelte b/src/lib/ui/SpoilerGroup.svelte
similarity index 73%
rename from src/lib/components/ui/SpoilerGroup.svelte
rename to src/lib/ui/SpoilerGroup.svelte
index 20c4b42..53bff0e 100644
--- a/src/lib/components/ui/SpoilerGroup.svelte
+++ b/src/lib/ui/SpoilerGroup.svelte
@@ -1,31 +1,31 @@
-
+
(expanded = !expanded)}
aria-expanded={expanded}>
-
+
{label}
@@ -35,7 +35,7 @@
{@render children?.()}
{:else}
-
+
{/if}
@@ -46,12 +46,10 @@
.spoiler-content {
padding-top: 0.75em !important;
}
-
.spoiler-icon {
line-height: 1;
padding-bottom: 0.1em;
}
-
.btn:hover .spoiler-icon {
color: var(--bs-dark) !important;
}
diff --git a/src/lib/components/ui/TabComponent.svelte b/src/lib/ui/TabBar.svelte
similarity index 60%
rename from src/lib/components/ui/TabComponent.svelte
rename to src/lib/ui/TabBar.svelte
index 234762f..74e1511 100644
--- a/src/lib/components/ui/TabComponent.svelte
+++ b/src/lib/ui/TabBar.svelte
@@ -1,24 +1,28 @@
-
{#each tabs as tab (tab.id)}
(activeTab = tab.id)}
- type="button">
+ class:active={active === tab.id}
+ onclick={() => (active = tab.id)}>
{tab.label}
@@ -31,10 +35,7 @@
background: var(--bs-body-bg);
}
- .custom-tab.active {
- background-color: var(--bs-primary) !important;
- color: var(--bs-btn-active-color);
- }
+ .custom-tab.active,
.custom-tab:hover {
background-color: var(--bs-primary) !important;
color: var(--bs-btn-active-color);
diff --git a/src/lib/ui/Toast.svelte b/src/lib/ui/Toast.svelte
new file mode 100644
index 0000000..6c4dd27
--- /dev/null
+++ b/src/lib/ui/Toast.svelte
@@ -0,0 +1,40 @@
+
+
+
+ {#each $toasts as toast (toast.id)}
+ removeToast(toast.id)}>
+ removeToast(toast.id)} class={`text-${toast.color}`}>
+
+ {toast.header}
+
+
+ {toast.body}
+
+
+ {/each}
+
+
+
diff --git a/src/lib/components/editors/GenericEditor.svelte b/src/lib/ui/editor/ListEditor.svelte
similarity index 50%
rename from src/lib/components/editors/GenericEditor.svelte
rename to src/lib/ui/editor/ListEditor.svelte
index f8bdec5..6832fa4 100644
--- a/src/lib/components/editors/GenericEditor.svelte
+++ b/src/lib/ui/editor/ListEditor.svelte
@@ -1,9 +1,9 @@
+ class={isConfirmationVisible ? 'modal-tinted' : ''}>
{modalTitle}
@@ -241,7 +225,7 @@
search.set()} />
{#if search.value}
@@ -251,7 +235,7 @@
class="position-absolute top-50 end-0 translate-middle-y me-2 rounded-circle d-flex align-items-center justify-content-center"
style="width: 16px; height: 16px; border: none; background: var(--bs-secondary); color: var(--bs-white);"
onclick={() => {
- search.value = "";
+ search.value = '';
search.set();
}}>
@@ -266,33 +250,30 @@
{#each table.rows as row (row.id)}
- {@render tableRow({ row })}
+ {@render tableRow({ row: row as T })}
handleSelect(row as T)}
- class="p-0 border-0 bg-transparent text-success px-1"
- style="cursor: pointer; font-size: initial;">
-
-
+ color="secondary"
+ onclick={() => handleSelect(row as T)}
+ class="p-0 border-0 bg-transparent text-success px-1">
+
+
handleEdit(row as T)}
- class="p-0 border-0 bg-transparent text-primary px-1"
- style="cursor: pointer; font-size: initial;">
-
-
+ color="primary"
+ onclick={() => handleEdit(row as T)}
+ class="p-0 border-0 bg-transparent text-primary px-1">
+
+
confirmDelete(row as T)}
- class="p-0 border-0 bg-transparent text-danger px-1"
- style="cursor: pointer; font-size: initial;">
-
-
+ size="sm"
+ color="danger"
+ onclick={() => confirmDelete(row as T)}
+ class="p-0 border-0 bg-transparent text-danger px-1">
+
+
@@ -302,7 +283,7 @@
- table.setPage("previous")} />
+ table.setPage('previous')} />
{#each table.pagesWithEllipsis as page}
@@ -310,18 +291,13 @@
{/each}
- table.setPage("next")} />
+ table.setPage('next')} />
+
{/if}
- {#if isTableVisible && (isEditing || currentItem.id)}
{/if}
-
-
- {#if isTableVisible}
- {formTitle}
- {/if}
{alertText}
@@ -336,17 +312,13 @@
{submitButtonText}
{#if isEditing}
resetForm()}>
- {config.labels.cancel}
+ {labels.cancel}
- {/if}
- {#if isEditing}
confirmDelete(currentItem)}>
- {config.labels.delete}
+ {labels.delete}
{:else}
-
- {config.labels.close}
-
+ {labels.close}
{/if}
@@ -355,12 +327,12 @@
(isConfirmationVisible = false)}>
- Вы уверены, что хотите удалить {config.labels.item} "{selectedItem?.name}"?
+ Delete "{selectedItem?.name}"?
diff --git a/src/lib/ui/index.ts b/src/lib/ui/index.ts
new file mode 100644
index 0000000..818b54e
--- /dev/null
+++ b/src/lib/ui/index.ts
@@ -0,0 +1,13 @@
+export { default as CollapsibleCard } from './CollapsibleCard.svelte';
+export { default as PanelContainer } from './PanelContainer.svelte';
+export { default as TabBar } from './TabBar.svelte';
+export { default as Toast } from './Toast.svelte';
+export { default as ConfirmationPrompt } from './ConfirmationPrompt.svelte';
+export { default as SelectSearchable } from './SelectSearchable.svelte';
+export { default as SpoilerGroup } from './SpoilerGroup.svelte';
+export { default as LabelGroup } from './LabelGroup.svelte';
+export { default as EditableCell } from './EditableCell.svelte';
+export { default as ListEditor } from './editor/ListEditor.svelte';
+export type { ListEditorConfig, ListEditorApi } from './editor/ListEditor.svelte';
+export { addToast, removeToast, toasts } from './toasts';
+export type { Toast as ToastMessage, ToastColor, ToastInit } from './toasts';
diff --git a/src/lib/ui/toasts.ts b/src/lib/ui/toasts.ts
new file mode 100644
index 0000000..efb1bda
--- /dev/null
+++ b/src/lib/ui/toasts.ts
@@ -0,0 +1,54 @@
+import { writable } from 'svelte/store';
+
+export type ToastColor =
+ | 'primary'
+ | 'secondary'
+ | 'success'
+ | 'danger'
+ | 'warning'
+ | 'info'
+ | 'light'
+ | 'dark';
+
+export interface Toast {
+ id: string;
+ header: string;
+ body: string;
+ color: ToastColor;
+ persistent: boolean;
+ onRemove?: (id: string) => void;
+}
+
+export interface ToastInit {
+ header: string;
+ body: string;
+ color?: ToastColor;
+ persistent?: boolean;
+ onRemove?: (id: string) => void;
+}
+
+export const toasts = writable([]);
+
+export function addToast(init: ToastInit): string {
+ const id = crypto.randomUUID();
+ toasts.update((all) => [
+ ...all,
+ {
+ id,
+ header: init.header,
+ body: init.body,
+ color: init.color ?? 'info',
+ persistent: init.persistent ?? false,
+ onRemove: init.onRemove,
+ },
+ ]);
+ return id;
+}
+
+export function removeToast(id: string): void {
+ toasts.update((all) => {
+ const t = all.find((x) => x.id === id);
+ t?.onRemove?.(id);
+ return all.filter((x) => x.id !== id);
+ });
+}
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
new file mode 100644
index 0000000..2d80679
--- /dev/null
+++ b/src/routes/+layout.svelte
@@ -0,0 +1,22 @@
+
+
+{#if ready}
+ {@render children?.()}
+{/if}
+
diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts
new file mode 100644
index 0000000..eae1350
--- /dev/null
+++ b/src/routes/+layout.ts
@@ -0,0 +1,5 @@
+// Pure SPA: all rendering happens in the browser against a Django REST backend.
+// Disable SSR and prerender globally so every route is just a client-side chunk.
+export const ssr = false;
+export const prerender = false;
+export const trailingSlash = 'ignore';
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte
index cbb97e2..9beb424 100644
--- a/src/routes/+page.svelte
+++ b/src/routes/+page.svelte
@@ -1,7 +1,22 @@
-
-
-
-
\ No newline at end of file
+
+
+ Loading...
+
+
diff --git a/src/routes/+page.ts b/src/routes/+page.ts
deleted file mode 100644
index b2463b2..0000000
--- a/src/routes/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr =false;
\ No newline at end of file
diff --git a/src/routes/login/+page.svelte b/src/routes/login/+page.svelte
index d027858..186bfed 100644
--- a/src/routes/login/+page.svelte
+++ b/src/routes/login/+page.svelte
@@ -1,97 +1,5 @@
-
-
-
-
-
- Стратосферные полеты | ООО ЯКС
-
-
-
-
-
- Вход в учетную запись
-
- {#if error}
- {error}
- {/if}
-
-
-
-
-
-
-
-
-
+
diff --git a/src/routes/login/+page.ts b/src/routes/login/+page.ts
deleted file mode 100644
index b2463b2..0000000
--- a/src/routes/login/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr =false;
\ No newline at end of file
diff --git a/src/routes/predict/+page.svelte b/src/routes/predict/+page.svelte
index 4f486d3..eb06ae4 100644
--- a/src/routes/predict/+page.svelte
+++ b/src/routes/predict/+page.svelte
@@ -1,130 +1,113 @@
-
-
-
+
+
+
+
+
+
+
+
+ {#if leftTab === 'scenario'}
+
+ {:else if leftTab === 'conditions'}
+
+ {/if}
+
+
+
+
+
+
+ {#if rightTab === 'workspaces'}
+
+ {:else if rightTab === 'settings'}
+
+ {/if}
+
+
+
+
+
diff --git a/src/routes/predict/+page.ts b/src/routes/predict/+page.ts
deleted file mode 100644
index b2463b2..0000000
--- a/src/routes/predict/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr =false;
\ No newline at end of file
diff --git a/src/routes/testVelo.json b/src/routes/testVelo.json
deleted file mode 100644
index 1148c7d..0000000
--- a/src/routes/testVelo.json
+++ /dev/null
@@ -1,130432 +0,0 @@
-[
- {
- "header": {
- "discipline": 0,
- "disciplineName": "Meteorological products",
- "gribEdition": 2,
- "gribLength": 76420,
- "center": 7,
- "centerName": "US National Weather Service - NCEP(WMC)",
- "subcenter": 0,
- "refTime": "2016-04-30T06:00:00.000Z",
- "significanceOfRT": 1,
- "significanceOfRTName": "Start of forecast",
- "productStatus": 0,
- "productStatusName": "Operational products",
- "productType": 1,
- "productTypeName": "Forecast products",
- "productDefinitionTemplate": 0,
- "productDefinitionTemplateName": "Analysis/forecast at horizontal level/layer at a point in time",
- "parameterCategory": 2,
- "parameterCategoryName": "Momentum",
- "parameterNumber": 2,
- "parameterNumberName": "U-component_of_wind",
- "parameterUnit": "m.s-1",
- "genProcessType": 2,
- "genProcessTypeName": "Forecast",
- "forecastTime": 0,
- "surface1Type": 103,
- "surface1TypeName": "Specified height level above ground",
- "surface1Value": 10.0,
- "surface2Type": 255,
- "surface2TypeName": "Missing",
- "surface2Value": 0.0,
- "gridDefinitionTemplate": 0,
- "gridDefinitionTemplateName": "Latitude_Longitude",
- "numberPoints": 65160,
- "shape": 6,
- "shapeName": "Earth spherical with radius of 6,371,229.0 m",
- "gridUnits": "degrees",
- "resolution": 48,
- "winds": "true",
- "scanMode": 0,
- "nx": 360,
- "ny": 181,
- "basicAngle": 0,
- "subDivisions": 0,
- "lo1": 0.0,
- "la1": 90.0,
- "lo2": 359.0,
- "la2": -90.0,
- "dx": 1.0,
- "dy": 1.0
- },
- "data": [
- 4.54,
- 4.52,
- 4.49,
- 4.47,
- 4.44,
- 4.41,
- 4.38,
- 4.34,
- 4.31,
- 4.27,
- 4.24,
- 4.2,
- 4.16,
- 4.12,
- 4.08,
- 4.04,
- 3.99,
- 3.95,
- 3.9,
- 3.85,
- 3.8,
- 3.75,
- 3.7,
- 3.65,
- 3.6,
- 3.54,
- 3.49,
- 3.43,
- 3.37,
- 3.31,
- 3.25,
- 3.19,
- 3.13,
- 3.07,
- 3.0,
- 2.94,
- 2.87,
- 2.81,
- 2.74,
- 2.67,
- 2.6,
- 2.53,
- 2.46,
- 2.39,
- 2.32,
- 2.25,
- 2.17,
- 2.1,
- 2.03,
- 1.95,
- 1.87,
- 1.8,
- 1.72,
- 1.64,
- 1.57,
- 1.49,
- 1.41,
- 1.33,
- 1.25,
- 1.17,
- 1.09,
- 1.01,
- 0.93,
- 0.85,
- 0.76,
- 0.68,
- 0.6,
- 0.52,
- 0.44,
- 0.35,
- 0.27,
- 0.19,
- 0.11,
- 0.02,
- -0.06,
- -0.14,
- -0.23,
- -0.31,
- -0.39,
- -0.47,
- -0.56,
- -0.64,
- -0.72,
- -0.8,
- -0.88,
- -0.96,
- -1.04,
- -1.13,
- -1.21,
- -1.29,
- -1.36,
- -1.44,
- -1.52,
- -1.6,
- -1.68,
- -1.76,
- -1.83,
- -1.91,
- -1.98,
- -2.06,
- -2.13,
- -2.21,
- -2.28,
- -2.35,
- -2.42,
- -2.49,
- -2.56,
- -2.63,
- -2.7,
- -2.77,
- -2.84,
- -2.9,
- -2.97,
- -3.03,
- -3.09,
- -3.16,
- -3.22,
- -3.28,
- -3.34,
- -3.4,
- -3.45,
- -3.51,
- -3.57,
- -3.62,
- -3.67,
- -3.72,
- -3.77,
- -3.82,
- -3.87,
- -3.92,
- -3.97,
- -4.01,
- -4.05,
- -4.1,
- -4.14,
- -4.18,
- -4.22,
- -4.25,
- -4.29,
- -4.32,
- -4.36,
- -4.39,
- -4.42,
- -4.45,
- -4.48,
- -4.5,
- -4.53,
- -4.55,
- -4.58,
- -4.6,
- -4.62,
- -4.64,
- -4.65,
- -4.67,
- -4.68,
- -4.69,
- -4.71,
- -4.72,
- -4.72,
- -4.73,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.73,
- -4.73,
- -4.72,
- -4.71,
- -4.7,
- -4.69,
- -4.68,
- -4.66,
- -4.65,
- -4.63,
- -4.61,
- -4.59,
- -4.57,
- -4.54,
- -4.52,
- -4.49,
- -4.47,
- -4.44,
- -4.41,
- -4.38,
- -4.34,
- -4.31,
- -4.27,
- -4.24,
- -4.2,
- -4.16,
- -4.12,
- -4.08,
- -4.04,
- -3.99,
- -3.95,
- -3.9,
- -3.85,
- -3.8,
- -3.75,
- -3.7,
- -3.65,
- -3.6,
- -3.54,
- -3.49,
- -3.43,
- -3.37,
- -3.31,
- -3.25,
- -3.19,
- -3.13,
- -3.07,
- -3.0,
- -2.94,
- -2.87,
- -2.81,
- -2.74,
- -2.67,
- -2.6,
- -2.53,
- -2.46,
- -2.39,
- -2.32,
- -2.25,
- -2.17,
- -2.1,
- -2.03,
- -1.95,
- -1.87,
- -1.8,
- -1.72,
- -1.64,
- -1.57,
- -1.49,
- -1.41,
- -1.33,
- -1.25,
- -1.17,
- -1.09,
- -1.01,
- -0.93,
- -0.85,
- -0.76,
- -0.68,
- -0.6,
- -0.52,
- -0.44,
- -0.35,
- -0.27,
- -0.19,
- -0.11,
- -0.02,
- 0.06,
- 0.14,
- 0.23,
- 0.31,
- 0.39,
- 0.47,
- 0.56,
- 0.64,
- 0.72,
- 0.8,
- 0.88,
- 0.96,
- 1.04,
- 1.13,
- 1.21,
- 1.29,
- 1.36,
- 1.44,
- 1.52,
- 1.6,
- 1.68,
- 1.76,
- 1.83,
- 1.91,
- 1.98,
- 2.06,
- 2.13,
- 2.21,
- 2.28,
- 2.35,
- 2.42,
- 2.49,
- 2.56,
- 2.63,
- 2.7,
- 2.77,
- 2.84,
- 2.9,
- 2.97,
- 3.03,
- 3.09,
- 3.16,
- 3.22,
- 3.28,
- 3.34,
- 3.4,
- 3.45,
- 3.51,
- 3.57,
- 3.62,
- 3.67,
- 3.72,
- 3.77,
- 3.82,
- 3.87,
- 3.92,
- 3.97,
- 4.01,
- 4.05,
- 4.1,
- 4.14,
- 4.18,
- 4.22,
- 4.25,
- 4.29,
- 4.32,
- 4.36,
- 4.39,
- 4.42,
- 4.45,
- 4.48,
- 4.5,
- 4.53,
- 4.55,
- 4.58,
- 4.6,
- 4.62,
- 4.64,
- 4.65,
- 4.67,
- 4.68,
- 4.69,
- 4.71,
- 4.72,
- 4.72,
- 4.73,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.73,
- 4.73,
- 4.72,
- 4.71,
- 4.7,
- 4.69,
- 4.68,
- 4.66,
- 4.65,
- 4.63,
- 4.61,
- 4.59,
- 4.57,
- 3.51,
- 3.5,
- 3.5,
- 3.5,
- 3.49,
- 3.49,
- 3.48,
- 3.48,
- 3.48,
- 3.47,
- 3.47,
- 3.46,
- 3.46,
- 3.45,
- 3.44,
- 3.43,
- 3.42,
- 3.41,
- 3.4,
- 3.39,
- 3.38,
- 3.37,
- 3.36,
- 3.35,
- 3.33,
- 3.31,
- 3.28,
- 3.26,
- 3.24,
- 3.21,
- 3.18,
- 3.16,
- 3.13,
- 3.1,
- 3.08,
- 3.06,
- 3.03,
- 2.99,
- 2.96,
- 2.92,
- 2.89,
- 2.85,
- 2.81,
- 2.77,
- 2.73,
- 2.69,
- 2.64,
- 2.58,
- 2.54,
- 2.49,
- 2.43,
- 2.38,
- 2.32,
- 2.27,
- 2.21,
- 2.15,
- 2.09,
- 2.02,
- 1.96,
- 1.89,
- 1.82,
- 1.75,
- 1.68,
- 1.61,
- 1.53,
- 1.46,
- 1.38,
- 1.3,
- 1.23,
- 1.14,
- 1.07,
- 0.98,
- 0.9,
- 0.82,
- 0.73,
- 0.64,
- 0.56,
- 0.47,
- 0.38,
- 0.3,
- 0.2,
- 0.12,
- 0.03,
- -0.05,
- -0.14,
- -0.23,
- -0.32,
- -0.41,
- -0.5,
- -0.59,
- -0.69,
- -0.78,
- -0.87,
- -0.96,
- -1.06,
- -1.14,
- -1.24,
- -1.33,
- -1.43,
- -1.52,
- -1.62,
- -1.71,
- -1.8,
- -1.89,
- -1.99,
- -2.08,
- -2.17,
- -2.27,
- -2.36,
- -2.45,
- -2.55,
- -2.63,
- -2.72,
- -2.82,
- -2.91,
- -2.99,
- -3.08,
- -3.17,
- -3.25,
- -3.34,
- -3.42,
- -3.5,
- -3.57,
- -3.65,
- -3.72,
- -3.79,
- -3.86,
- -3.93,
- -3.99,
- -4.05,
- -4.11,
- -4.18,
- -4.22,
- -4.28,
- -4.33,
- -4.38,
- -4.43,
- -4.47,
- -4.52,
- -4.57,
- -4.61,
- -4.64,
- -4.68,
- -4.71,
- -4.75,
- -4.78,
- -4.8,
- -4.82,
- -4.85,
- -4.87,
- -4.89,
- -4.91,
- -4.92,
- -4.94,
- -4.95,
- -4.95,
- -4.96,
- -4.97,
- -4.97,
- -4.97,
- -4.97,
- -4.97,
- -4.96,
- -4.95,
- -4.94,
- -4.93,
- -4.92,
- -4.91,
- -4.89,
- -4.87,
- -4.85,
- -4.83,
- -4.8,
- -4.77,
- -4.74,
- -4.72,
- -4.68,
- -4.65,
- -4.61,
- -4.57,
- -4.54,
- -4.49,
- -4.45,
- -4.41,
- -4.37,
- -4.32,
- -4.27,
- -4.22,
- -4.17,
- -4.12,
- -4.07,
- -4.01,
- -3.95,
- -3.9,
- -3.84,
- -3.77,
- -3.71,
- -3.65,
- -3.59,
- -3.52,
- -3.45,
- -3.38,
- -3.31,
- -3.24,
- -3.17,
- -3.09,
- -3.01,
- -2.93,
- -2.86,
- -2.77,
- -2.7,
- -2.61,
- -2.53,
- -2.44,
- -2.36,
- -2.27,
- -2.19,
- -2.1,
- -2.02,
- -1.93,
- -1.84,
- -1.76,
- -1.67,
- -1.58,
- -1.49,
- -1.41,
- -1.31,
- -1.23,
- -1.14,
- -1.05,
- -0.96,
- -0.88,
- -0.79,
- -0.7,
- -0.61,
- -0.52,
- -0.44,
- -0.35,
- -0.27,
- -0.18,
- -0.1,
- -0.01,
- 0.07,
- 0.16,
- 0.24,
- 0.33,
- 0.41,
- 0.5,
- 0.57,
- 0.66,
- 0.74,
- 0.82,
- 0.9,
- 0.97,
- 1.05,
- 1.12,
- 1.2,
- 1.27,
- 1.34,
- 1.41,
- 1.48,
- 1.55,
- 1.61,
- 1.67,
- 1.74,
- 1.8,
- 1.86,
- 1.91,
- 1.97,
- 2.03,
- 2.08,
- 2.13,
- 2.18,
- 2.22,
- 2.28,
- 2.32,
- 2.37,
- 2.41,
- 2.45,
- 2.5,
- 2.53,
- 2.57,
- 2.61,
- 2.65,
- 2.68,
- 2.72,
- 2.75,
- 2.79,
- 2.82,
- 2.85,
- 2.88,
- 2.9,
- 2.93,
- 2.96,
- 2.99,
- 3.02,
- 3.04,
- 3.07,
- 3.09,
- 3.11,
- 3.13,
- 3.15,
- 3.17,
- 3.19,
- 3.21,
- 3.23,
- 3.25,
- 3.26,
- 3.28,
- 3.29,
- 3.31,
- 3.32,
- 3.33,
- 3.35,
- 3.36,
- 3.38,
- 3.39,
- 3.39,
- 3.4,
- 3.41,
- 3.41,
- 3.42,
- 3.42,
- 3.43,
- 3.43,
- 3.44,
- 3.45,
- 3.45,
- 3.45,
- 3.45,
- 3.46,
- 3.46,
- 3.47,
- 3.47,
- 3.47,
- 3.47,
- 3.48,
- 3.48,
- 3.48,
- 3.48,
- 3.49,
- 3.49,
- 3.49,
- 3.49,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 3.5,
- 1.62,
- 1.67,
- 1.73,
- 1.78,
- 1.83,
- 1.89,
- 1.94,
- 1.99,
- 2.05,
- 2.1,
- 2.15,
- 2.19,
- 2.24,
- 2.28,
- 2.32,
- 2.37,
- 2.4,
- 2.44,
- 2.47,
- 2.5,
- 2.53,
- 2.56,
- 2.59,
- 2.61,
- 2.63,
- 2.65,
- 2.67,
- 2.69,
- 2.7,
- 2.71,
- 2.72,
- 2.72,
- 2.73,
- 2.73,
- 2.73,
- 2.73,
- 2.73,
- 2.72,
- 2.72,
- 2.71,
- 2.7,
- 2.69,
- 2.68,
- 2.67,
- 2.65,
- 2.63,
- 2.62,
- 2.6,
- 2.57,
- 2.55,
- 2.52,
- 2.5,
- 2.47,
- 2.44,
- 2.41,
- 2.37,
- 2.33,
- 2.29,
- 2.25,
- 2.2,
- 2.16,
- 2.1,
- 2.05,
- 1.99,
- 1.94,
- 1.87,
- 1.81,
- 1.74,
- 1.67,
- 1.6,
- 1.52,
- 1.44,
- 1.37,
- 1.29,
- 1.21,
- 1.13,
- 1.05,
- 0.97,
- 0.88,
- 0.81,
- 0.72,
- 0.64,
- 0.55,
- 0.47,
- 0.39,
- 0.31,
- 0.22,
- 0.14,
- 0.06,
- -0.02,
- -0.1,
- -0.18,
- -0.26,
- -0.34,
- -0.42,
- -0.5,
- -0.58,
- -0.66,
- -0.74,
- -0.83,
- -0.91,
- -1.01,
- -1.1,
- -1.21,
- -1.3,
- -1.4,
- -1.52,
- -1.63,
- -1.76,
- -1.87,
- -1.99,
- -2.12,
- -2.25,
- -2.39,
- -2.51,
- -2.64,
- -2.77,
- -2.89,
- -3.02,
- -3.12,
- -3.22,
- -3.32,
- -3.41,
- -3.51,
- -3.6,
- -3.68,
- -3.76,
- -3.83,
- -3.9,
- -3.97,
- -4.02,
- -4.08,
- -4.13,
- -4.17,
- -4.21,
- -4.26,
- -4.33,
- -4.36,
- -4.38,
- -4.4,
- -4.44,
- -4.48,
- -4.5,
- -4.52,
- -4.56,
- -4.58,
- -4.57,
- -4.59,
- -4.63,
- -4.67,
- -4.67,
- -4.65,
- -4.64,
- -4.65,
- -4.67,
- -4.68,
- -4.66,
- -4.64,
- -4.61,
- -4.58,
- -4.56,
- -4.55,
- -4.53,
- -4.51,
- -4.49,
- -4.47,
- -4.46,
- -4.45,
- -4.41,
- -4.37,
- -4.33,
- -4.27,
- -4.22,
- -4.17,
- -4.13,
- -4.08,
- -4.04,
- -4.0,
- -3.96,
- -3.93,
- -3.9,
- -3.85,
- -3.81,
- -3.77,
- -3.72,
- -3.68,
- -3.63,
- -3.57,
- -3.51,
- -3.45,
- -3.39,
- -3.33,
- -3.25,
- -3.19,
- -3.1,
- -3.03,
- -2.94,
- -2.86,
- -2.79,
- -2.7,
- -2.62,
- -2.54,
- -2.45,
- -2.37,
- -2.29,
- -2.2,
- -2.12,
- -2.04,
- -1.97,
- -1.89,
- -1.81,
- -1.74,
- -1.67,
- -1.6,
- -1.52,
- -1.45,
- -1.37,
- -1.29,
- -1.21,
- -1.12,
- -1.03,
- -0.94,
- -0.83,
- -0.73,
- -0.63,
- -0.51,
- -0.41,
- -0.29,
- -0.18,
- -0.07,
- 0.04,
- 0.15,
- 0.25,
- 0.35,
- 0.45,
- 0.55,
- 0.64,
- 0.73,
- 0.82,
- 0.91,
- 0.99,
- 1.08,
- 1.16,
- 1.25,
- 1.33,
- 1.41,
- 1.49,
- 1.58,
- 1.66,
- 1.74,
- 1.82,
- 1.9,
- 1.97,
- 2.04,
- 2.11,
- 2.17,
- 2.23,
- 2.29,
- 2.33,
- 2.37,
- 2.41,
- 2.45,
- 2.48,
- 2.51,
- 2.53,
- 2.55,
- 2.57,
- 2.59,
- 2.6,
- 2.61,
- 2.62,
- 2.63,
- 2.64,
- 2.65,
- 2.65,
- 2.66,
- 2.66,
- 2.67,
- 2.67,
- 2.66,
- 2.66,
- 2.66,
- 2.65,
- 2.64,
- 2.63,
- 2.62,
- 2.6,
- 2.58,
- 2.56,
- 2.53,
- 2.51,
- 2.48,
- 2.45,
- 2.41,
- 2.37,
- 2.32,
- 2.28,
- 2.23,
- 2.18,
- 2.13,
- 2.09,
- 2.03,
- 1.97,
- 1.91,
- 1.85,
- 1.79,
- 1.73,
- 1.67,
- 1.61,
- 1.55,
- 1.5,
- 1.44,
- 1.38,
- 1.32,
- 1.27,
- 1.22,
- 1.17,
- 1.12,
- 1.07,
- 1.03,
- 0.99,
- 0.96,
- 0.92,
- 0.89,
- 0.86,
- 0.83,
- 0.81,
- 0.79,
- 0.77,
- 0.76,
- 0.74,
- 0.74,
- 0.73,
- 0.73,
- 0.73,
- 0.74,
- 0.75,
- 0.76,
- 0.77,
- 0.79,
- 0.8,
- 0.82,
- 0.85,
- 0.87,
- 0.9,
- 0.93,
- 0.97,
- 1.0,
- 1.04,
- 1.08,
- 1.11,
- 1.16,
- 1.21,
- 1.25,
- 1.3,
- 1.35,
- 1.41,
- 1.45,
- 1.51,
- 1.56,
- -1.74,
- -1.58,
- -1.42,
- -1.26,
- -1.09,
- -0.93,
- -0.76,
- -0.6,
- -0.44,
- -0.28,
- -0.13,
- 0.03,
- 0.18,
- 0.33,
- 0.47,
- 0.61,
- 0.76,
- 0.9,
- 1.04,
- 1.18,
- 1.31,
- 1.45,
- 1.58,
- 1.68,
- 1.78,
- 1.88,
- 1.99,
- 2.08,
- 2.16,
- 2.23,
- 2.29,
- 2.35,
- 2.42,
- 2.47,
- 2.52,
- 2.56,
- 2.6,
- 2.63,
- 2.66,
- 2.68,
- 2.7,
- 2.71,
- 2.71,
- 2.71,
- 2.71,
- 2.71,
- 2.7,
- 2.69,
- 2.67,
- 2.65,
- 2.63,
- 2.61,
- 2.59,
- 2.56,
- 2.52,
- 2.48,
- 2.45,
- 2.41,
- 2.37,
- 2.31,
- 2.26,
- 2.2,
- 2.14,
- 2.07,
- 2.0,
- 1.92,
- 1.84,
- 1.75,
- 1.66,
- 1.56,
- 1.47,
- 1.37,
- 1.26,
- 1.16,
- 1.05,
- 0.96,
- 0.87,
- 0.79,
- 0.7,
- 0.63,
- 0.57,
- 0.51,
- 0.45,
- 0.4,
- 0.35,
- 0.29,
- 0.24,
- 0.19,
- 0.14,
- 0.08,
- 0.03,
- -0.02,
- -0.08,
- -0.14,
- -0.21,
- -0.27,
- -0.34,
- -0.41,
- -0.49,
- -0.58,
- -0.66,
- -0.75,
- -0.84,
- -0.95,
- -1.06,
- -1.17,
- -1.27,
- -1.39,
- -1.5,
- -1.62,
- -1.74,
- -1.85,
- -1.97,
- -2.09,
- -2.21,
- -2.33,
- -2.45,
- -2.55,
- -2.65,
- -2.75,
- -2.85,
- -2.95,
- -3.04,
- -3.12,
- -3.2,
- -3.26,
- -3.31,
- -3.38,
- -3.45,
- -3.53,
- -3.59,
- -3.65,
- -3.7,
- -3.74,
- -3.79,
- -3.82,
- -3.83,
- -3.83,
- -3.85,
- -3.86,
- -3.87,
- -3.89,
- -3.9,
- -3.91,
- -3.95,
- -4.05,
- -4.12,
- -4.15,
- -4.24,
- -4.34,
- -4.42,
- -4.51,
- -4.64,
- -4.76,
- -4.86,
- -4.94,
- -5.01,
- -5.08,
- -5.15,
- -5.17,
- -5.17,
- -5.15,
- -5.13,
- -5.09,
- -5.03,
- -4.94,
- -4.87,
- -4.81,
- -4.75,
- -4.7,
- -4.61,
- -4.52,
- -4.44,
- -4.36,
- -4.26,
- -4.17,
- -4.06,
- -3.93,
- -3.8,
- -3.65,
- -3.49,
- -3.34,
- -3.18,
- -3.01,
- -2.85,
- -2.71,
- -2.56,
- -2.42,
- -2.31,
- -2.21,
- -2.13,
- -2.06,
- -2.0,
- -1.95,
- -1.92,
- -1.9,
- -1.88,
- -1.87,
- -1.86,
- -1.84,
- -1.83,
- -1.81,
- -1.78,
- -1.75,
- -1.7,
- -1.65,
- -1.58,
- -1.51,
- -1.42,
- -1.32,
- -1.2,
- -1.08,
- -0.94,
- -0.79,
- -0.63,
- -0.47,
- -0.31,
- -0.16,
- -0.02,
- 0.1,
- 0.22,
- 0.31,
- 0.39,
- 0.46,
- 0.51,
- 0.56,
- 0.61,
- 0.67,
- 0.74,
- 0.81,
- 0.91,
- 1.01,
- 1.12,
- 1.24,
- 1.36,
- 1.49,
- 1.62,
- 1.74,
- 1.86,
- 1.98,
- 2.08,
- 2.18,
- 2.26,
- 2.35,
- 2.42,
- 2.5,
- 2.56,
- 2.64,
- 2.71,
- 2.77,
- 2.84,
- 2.89,
- 2.95,
- 2.99,
- 3.03,
- 3.07,
- 3.08,
- 3.08,
- 3.08,
- 3.07,
- 3.05,
- 3.02,
- 3.0,
- 2.97,
- 2.93,
- 2.89,
- 2.84,
- 2.8,
- 2.75,
- 2.7,
- 2.66,
- 2.61,
- 2.55,
- 2.49,
- 2.44,
- 2.38,
- 2.33,
- 2.26,
- 2.21,
- 2.15,
- 2.09,
- 2.01,
- 1.93,
- 1.85,
- 1.75,
- 1.66,
- 1.56,
- 1.45,
- 1.33,
- 1.22,
- 1.09,
- 0.97,
- 0.84,
- 0.71,
- 0.58,
- 0.44,
- 0.31,
- 0.17,
- 0.04,
- -0.09,
- -0.21,
- -0.33,
- -0.45,
- -0.57,
- -0.68,
- -0.79,
- -0.89,
- -1.0,
- -1.1,
- -1.19,
- -1.27,
- -1.35,
- -1.45,
- -1.54,
- -1.62,
- -1.69,
- -1.74,
- -1.81,
- -1.89,
- -1.96,
- -2.03,
- -2.1,
- -2.19,
- -2.27,
- -2.36,
- -2.45,
- -2.53,
- -2.61,
- -2.68,
- -2.75,
- -2.82,
- -2.88,
- -2.94,
- -2.98,
- -3.03,
- -3.06,
- -3.09,
- -3.11,
- -3.13,
- -3.14,
- -3.15,
- -3.15,
- -3.15,
- -3.13,
- -3.11,
- -3.09,
- -3.05,
- -3.01,
- -2.96,
- -2.91,
- -2.84,
- -2.76,
- -2.68,
- -2.6,
- -2.5,
- -2.39,
- -2.28,
- -2.15,
- -2.02,
- -1.88,
- -4.49,
- -4.35,
- -4.2,
- -4.05,
- -3.89,
- -3.73,
- -3.57,
- -3.41,
- -3.23,
- -3.04,
- -2.83,
- -2.63,
- -2.41,
- -2.16,
- -1.9,
- -1.63,
- -1.35,
- -1.08,
- -0.8,
- -0.52,
- -0.25,
- 0.0,
- 0.23,
- 0.45,
- 0.66,
- 0.86,
- 1.05,
- 1.24,
- 1.41,
- 1.59,
- 1.75,
- 1.9,
- 2.04,
- 2.17,
- 2.29,
- 2.4,
- 2.49,
- 2.58,
- 2.66,
- 2.73,
- 2.79,
- 2.84,
- 2.88,
- 2.91,
- 2.94,
- 2.96,
- 2.97,
- 2.98,
- 2.98,
- 2.98,
- 2.98,
- 2.98,
- 2.97,
- 2.95,
- 2.93,
- 2.9,
- 2.87,
- 2.83,
- 2.79,
- 2.75,
- 2.69,
- 2.64,
- 2.57,
- 2.49,
- 2.4,
- 2.31,
- 2.21,
- 2.09,
- 1.97,
- 1.83,
- 1.69,
- 1.53,
- 1.38,
- 1.22,
- 1.08,
- 0.94,
- 0.82,
- 0.72,
- 0.65,
- 0.59,
- 0.55,
- 0.52,
- 0.5,
- 0.48,
- 0.45,
- 0.42,
- 0.39,
- 0.34,
- 0.28,
- 0.22,
- 0.14,
- 0.06,
- -0.02,
- -0.11,
- -0.2,
- -0.28,
- -0.37,
- -0.45,
- -0.54,
- -0.63,
- -0.72,
- -0.83,
- -0.92,
- -1.02,
- -1.11,
- -1.2,
- -1.3,
- -1.4,
- -1.47,
- -1.53,
- -1.6,
- -1.67,
- -1.72,
- -1.78,
- -1.84,
- -1.9,
- -1.95,
- -2.02,
- -2.1,
- -2.18,
- -2.26,
- -2.34,
- -2.41,
- -2.47,
- -2.54,
- -2.6,
- -2.67,
- -2.73,
- -2.77,
- -2.84,
- -2.91,
- -2.95,
- -3.0,
- -3.05,
- -3.07,
- -3.1,
- -3.12,
- -3.11,
- -3.09,
- -3.07,
- -2.98,
- -2.86,
- -2.74,
- -2.61,
- -2.46,
- -2.32,
- -2.17,
- -2.04,
- -1.93,
- -1.81,
- -1.71,
- -1.62,
- -1.53,
- -1.46,
- -1.4,
- -1.35,
- -1.3,
- -1.27,
- -1.26,
- -1.25,
- -1.24,
- -1.24,
- -1.24,
- -1.25,
- -1.25,
- -1.25,
- -1.24,
- -1.21,
- -1.17,
- -1.11,
- -1.03,
- -0.93,
- -0.83,
- -0.72,
- -0.62,
- -0.54,
- -0.5,
- -0.5,
- -0.58,
- -0.72,
- -0.91,
- -1.2,
- -1.52,
- -1.85,
- -2.19,
- -2.46,
- -2.66,
- -2.78,
- -2.78,
- -2.73,
- -2.62,
- -2.43,
- -2.23,
- -2.03,
- -1.85,
- -1.71,
- -1.59,
- -1.5,
- -1.45,
- -1.41,
- -1.39,
- -1.37,
- -1.33,
- -1.29,
- -1.22,
- -1.14,
- -1.06,
- -0.97,
- -0.89,
- -0.81,
- -0.74,
- -0.67,
- -0.6,
- -0.53,
- -0.44,
- -0.33,
- -0.21,
- -0.05,
- 0.13,
- 0.33,
- 0.55,
- 0.77,
- 1.01,
- 1.23,
- 1.44,
- 1.63,
- 1.8,
- 1.93,
- 2.01,
- 2.08,
- 2.11,
- 2.13,
- 2.16,
- 2.2,
- 2.27,
- 2.35,
- 2.46,
- 2.58,
- 2.72,
- 2.87,
- 3.02,
- 3.14,
- 3.26,
- 3.35,
- 3.42,
- 3.48,
- 3.53,
- 3.57,
- 3.6,
- 3.63,
- 3.65,
- 3.67,
- 3.67,
- 3.67,
- 3.64,
- 3.6,
- 3.54,
- 3.46,
- 3.38,
- 3.28,
- 3.19,
- 3.08,
- 2.97,
- 2.87,
- 2.76,
- 2.65,
- 2.54,
- 2.44,
- 2.33,
- 2.22,
- 2.11,
- 2.02,
- 1.92,
- 1.83,
- 1.74,
- 1.65,
- 1.55,
- 1.45,
- 1.34,
- 1.23,
- 1.12,
- 1.0,
- 0.89,
- 0.78,
- 0.67,
- 0.56,
- 0.47,
- 0.38,
- 0.3,
- 0.23,
- 0.16,
- 0.09,
- 0.02,
- -0.06,
- -0.15,
- -0.28,
- -0.43,
- -0.61,
- -0.83,
- -1.05,
- -1.25,
- -1.41,
- -1.56,
- -1.7,
- -1.82,
- -1.95,
- -2.11,
- -2.27,
- -2.5,
- -2.71,
- -2.9,
- -3.1,
- -3.26,
- -3.41,
- -3.54,
- -3.64,
- -3.73,
- -3.86,
- -3.89,
- -3.89,
- -3.93,
- -4.01,
- -4.13,
- -4.27,
- -4.43,
- -4.58,
- -4.72,
- -4.85,
- -4.96,
- -5.07,
- -5.19,
- -5.27,
- -5.35,
- -5.42,
- -5.44,
- -5.48,
- -5.54,
- -5.58,
- -5.63,
- -5.67,
- -5.71,
- -5.75,
- -5.77,
- -5.79,
- -5.82,
- -5.81,
- -5.77,
- -5.73,
- -5.66,
- -5.58,
- -5.51,
- -5.43,
- -5.35,
- -5.27,
- -5.18,
- -5.08,
- -4.97,
- -4.86,
- -4.74,
- -4.62,
- -5.28,
- -5.12,
- -4.97,
- -4.81,
- -4.66,
- -4.5,
- -4.36,
- -4.22,
- -4.01,
- -3.83,
- -3.65,
- -3.46,
- -3.27,
- -3.07,
- -2.83,
- -2.63,
- -2.4,
- -2.17,
- -1.92,
- -1.65,
- -1.39,
- -1.11,
- -0.83,
- -0.54,
- -0.25,
- 0.02,
- 0.3,
- 0.57,
- 0.83,
- 1.07,
- 1.3,
- 1.53,
- 1.72,
- 1.88,
- 2.02,
- 2.17,
- 2.31,
- 2.4,
- 2.49,
- 2.61,
- 2.71,
- 2.79,
- 2.86,
- 2.92,
- 3.0,
- 3.06,
- 3.11,
- 3.15,
- 3.2,
- 3.24,
- 3.27,
- 3.29,
- 3.31,
- 3.31,
- 3.31,
- 3.3,
- 3.29,
- 3.27,
- 3.24,
- 3.19,
- 3.15,
- 3.08,
- 3.02,
- 2.95,
- 2.87,
- 2.78,
- 2.68,
- 2.58,
- 2.45,
- 2.3,
- 2.15,
- 1.99,
- 1.85,
- 1.73,
- 1.62,
- 1.53,
- 1.43,
- 1.36,
- 1.26,
- 1.16,
- 1.05,
- 0.92,
- 0.77,
- 0.62,
- 0.47,
- 0.35,
- 0.23,
- 0.13,
- 0.03,
- -0.07,
- -0.19,
- -0.32,
- -0.46,
- -0.59,
- -0.71,
- -0.83,
- -0.92,
- -0.99,
- -1.05,
- -1.13,
- -1.21,
- -1.3,
- -1.39,
- -1.5,
- -1.6,
- -1.7,
- -1.81,
- -1.88,
- -1.95,
- -2.01,
- -2.1,
- -2.21,
- -2.32,
- -2.46,
- -2.58,
- -2.67,
- -2.73,
- -2.79,
- -2.81,
- -2.77,
- -2.7,
- -2.58,
- -2.42,
- -2.21,
- -1.97,
- -1.72,
- -1.46,
- -1.21,
- -0.99,
- -0.81,
- -0.66,
- -0.53,
- -0.44,
- -0.37,
- -0.31,
- -0.25,
- -0.2,
- -0.17,
- -0.15,
- -0.13,
- -0.12,
- -0.11,
- -0.09,
- -0.08,
- -0.05,
- -0.03,
- 0.01,
- 0.07,
- 0.14,
- 0.23,
- 0.33,
- 0.43,
- 0.53,
- 0.6,
- 0.63,
- 0.63,
- 0.6,
- 0.53,
- 0.45,
- 0.37,
- 0.29,
- 0.24,
- 0.21,
- 0.19,
- 0.17,
- 0.14,
- 0.1,
- 0.03,
- -0.09,
- -0.25,
- -0.45,
- -0.68,
- -0.93,
- -1.18,
- -1.41,
- -1.58,
- -1.67,
- -1.66,
- -1.53,
- -1.3,
- -0.95,
- -0.56,
- -0.17,
- 0.13,
- 0.28,
- 0.26,
- 0.05,
- -0.35,
- -0.89,
- -1.41,
- -1.86,
- -2.16,
- -2.29,
- -2.27,
- -2.12,
- -1.89,
- -1.66,
- -1.46,
- -1.31,
- -1.22,
- -1.19,
- -1.22,
- -1.24,
- -1.24,
- -1.2,
- -1.12,
- -0.99,
- -0.84,
- -0.68,
- -0.52,
- -0.38,
- -0.27,
- -0.18,
- -0.11,
- -0.06,
- -0.01,
- 0.06,
- 0.16,
- 0.27,
- 0.41,
- 0.58,
- 0.77,
- 0.96,
- 1.18,
- 1.42,
- 1.68,
- 1.95,
- 2.21,
- 2.46,
- 2.67,
- 2.84,
- 2.96,
- 3.03,
- 3.07,
- 3.09,
- 3.12,
- 3.18,
- 3.26,
- 3.37,
- 3.5,
- 3.64,
- 3.78,
- 3.91,
- 3.99,
- 4.05,
- 4.08,
- 4.09,
- 4.07,
- 4.04,
- 4.01,
- 3.97,
- 3.91,
- 3.85,
- 3.76,
- 3.65,
- 3.52,
- 3.37,
- 3.21,
- 3.04,
- 2.86,
- 2.69,
- 2.52,
- 2.35,
- 2.18,
- 2.02,
- 1.86,
- 1.71,
- 1.57,
- 1.44,
- 1.32,
- 1.21,
- 1.11,
- 1.03,
- 0.93,
- 0.85,
- 0.75,
- 0.66,
- 0.59,
- 0.51,
- 0.46,
- 0.41,
- 0.38,
- 0.37,
- 0.38,
- 0.4,
- 0.44,
- 0.48,
- 0.53,
- 0.55,
- 0.54,
- 0.48,
- 0.34,
- 0.15,
- -0.08,
- -0.3,
- -0.5,
- -0.72,
- -0.93,
- -1.14,
- -1.36,
- -1.58,
- -1.8,
- -2.02,
- -2.26,
- -2.5,
- -2.77,
- -3.04,
- -3.32,
- -3.61,
- -3.89,
- -4.16,
- -4.4,
- -4.56,
- -4.65,
- -4.62,
- -4.58,
- -4.54,
- -4.54,
- -4.63,
- -4.84,
- -4.98,
- -5.13,
- -5.3,
- -5.45,
- -5.59,
- -5.72,
- -5.78,
- -5.9,
- -6.01,
- -6.11,
- -6.22,
- -6.33,
- -6.43,
- -6.55,
- -6.67,
- -6.83,
- -6.95,
- -7.02,
- -7.06,
- -7.19,
- -7.23,
- -7.28,
- -7.34,
- -7.37,
- -7.34,
- -7.3,
- -7.25,
- -7.12,
- -7.03,
- -6.95,
- -6.87,
- -6.77,
- -6.64,
- -6.47,
- -6.34,
- -6.15,
- -5.97,
- -5.8,
- -5.63,
- -5.46,
- -1.34,
- -1.42,
- -1.55,
- -1.72,
- -1.88,
- -2.02,
- -2.09,
- -2.1,
- -2.06,
- -1.96,
- -1.87,
- -1.79,
- -1.7,
- -1.61,
- -1.53,
- -1.45,
- -1.35,
- -1.26,
- -1.16,
- -1.04,
- -0.91,
- -0.75,
- -0.58,
- -0.38,
- -0.18,
- 0.03,
- 0.25,
- 0.47,
- 0.71,
- 0.92,
- 1.13,
- 1.4,
- 1.6,
- 1.78,
- 1.97,
- 2.09,
- 2.27,
- 2.43,
- 2.5,
- 2.61,
- 2.69,
- 2.75,
- 2.8,
- 2.87,
- 2.94,
- 2.99,
- 3.04,
- 3.1,
- 3.16,
- 3.24,
- 3.3,
- 3.36,
- 3.4,
- 3.44,
- 3.46,
- 3.47,
- 3.47,
- 3.46,
- 3.45,
- 3.42,
- 3.38,
- 3.34,
- 3.3,
- 3.23,
- 3.16,
- 3.09,
- 2.99,
- 2.89,
- 2.78,
- 2.67,
- 2.56,
- 2.46,
- 2.35,
- 2.24,
- 2.12,
- 1.99,
- 1.86,
- 1.74,
- 1.61,
- 1.5,
- 1.39,
- 1.28,
- 1.15,
- 1.01,
- 0.86,
- 0.7,
- 0.53,
- 0.35,
- 0.16,
- -0.02,
- -0.21,
- -0.38,
- -0.54,
- -0.67,
- -0.78,
- -0.87,
- -0.98,
- -1.13,
- -1.34,
- -1.59,
- -1.87,
- -2.16,
- -2.46,
- -2.71,
- -2.91,
- -3.08,
- -3.17,
- -3.21,
- -3.24,
- -3.2,
- -3.15,
- -3.07,
- -2.97,
- -2.85,
- -2.75,
- -2.66,
- -2.57,
- -2.49,
- -2.39,
- -2.3,
- -2.22,
- -2.12,
- -2.04,
- -1.97,
- -1.9,
- -1.84,
- -1.78,
- -1.73,
- -1.68,
- -1.64,
- -1.6,
- -1.56,
- -1.53,
- -1.51,
- -1.48,
- -1.47,
- -1.45,
- -1.43,
- -1.41,
- -1.38,
- -1.37,
- -1.34,
- -1.29,
- -1.21,
- -1.16,
- -1.12,
- -1.06,
- -1.0,
- -0.91,
- -0.82,
- -0.73,
- -0.65,
- -0.57,
- -0.5,
- -0.42,
- -0.35,
- -0.28,
- -0.2,
- -0.13,
- -0.05,
- 0.03,
- 0.11,
- 0.2,
- 0.28,
- 0.37,
- 0.46,
- 0.55,
- 0.63,
- 0.69,
- 0.76,
- 0.82,
- 0.89,
- 0.99,
- 1.11,
- 1.25,
- 1.41,
- 1.54,
- 1.6,
- 1.55,
- 1.37,
- 1.06,
- 0.64,
- 0.23,
- -0.07,
- -0.2,
- -0.12,
- 0.07,
- 0.27,
- 0.34,
- 0.19,
- -0.19,
- -0.72,
- -1.22,
- -1.59,
- -1.75,
- -1.72,
- -1.55,
- -1.33,
- -1.11,
- -0.94,
- -0.84,
- -0.8,
- -0.8,
- -0.83,
- -0.84,
- -0.81,
- -0.75,
- -0.66,
- -0.55,
- -0.43,
- -0.32,
- -0.24,
- -0.2,
- -0.17,
- -0.14,
- -0.09,
- -0.02,
- 0.09,
- 0.22,
- 0.35,
- 0.48,
- 0.63,
- 0.79,
- 0.98,
- 1.2,
- 1.43,
- 1.68,
- 1.94,
- 2.19,
- 2.44,
- 2.67,
- 2.88,
- 3.05,
- 3.2,
- 3.33,
- 3.45,
- 3.56,
- 3.67,
- 3.77,
- 3.89,
- 4.0,
- 4.12,
- 4.22,
- 4.27,
- 4.28,
- 4.25,
- 4.2,
- 4.12,
- 4.03,
- 3.93,
- 3.82,
- 3.7,
- 3.55,
- 3.38,
- 3.18,
- 2.96,
- 2.73,
- 2.49,
- 2.25,
- 2.01,
- 1.78,
- 1.56,
- 1.35,
- 1.14,
- 0.94,
- 0.76,
- 0.6,
- 0.46,
- 0.32,
- 0.2,
- 0.07,
- -0.05,
- -0.16,
- -0.25,
- -0.32,
- -0.36,
- -0.36,
- -0.33,
- -0.25,
- -0.14,
- 0.01,
- 0.18,
- 0.4,
- 0.64,
- 0.88,
- 1.07,
- 1.22,
- 1.36,
- 1.46,
- 1.54,
- 1.58,
- 1.59,
- 1.53,
- 1.42,
- 1.26,
- 1.04,
- 0.77,
- 0.47,
- 0.12,
- -0.26,
- -0.64,
- -1.02,
- -1.39,
- -1.76,
- -2.13,
- -2.49,
- -2.85,
- -3.2,
- -3.53,
- -3.8,
- -4.0,
- -4.09,
- -4.11,
- -4.05,
- -4.01,
- -4.05,
- -4.18,
- -4.38,
- -4.61,
- -4.92,
- -5.18,
- -5.42,
- -5.61,
- -5.73,
- -5.8,
- -5.83,
- -5.81,
- -5.75,
- -5.69,
- -5.64,
- -5.6,
- -5.61,
- -5.61,
- -5.6,
- -5.61,
- -5.61,
- -5.6,
- -5.59,
- -5.45,
- -5.39,
- -5.28,
- -5.16,
- -5.0,
- -4.81,
- -4.51,
- -4.14,
- -3.72,
- -3.32,
- -2.93,
- -2.59,
- -2.31,
- -2.07,
- -1.84,
- -1.67,
- -1.53,
- -1.43,
- -1.37,
- -1.31,
- -1.31,
- -1.31,
- 2.88,
- 3.17,
- 3.49,
- 3.75,
- 3.88,
- 3.84,
- 3.57,
- 3.09,
- 2.5,
- 2.02,
- 1.63,
- 1.25,
- 0.99,
- 0.77,
- 0.67,
- 0.61,
- 0.6,
- 0.6,
- 0.66,
- 0.72,
- 0.78,
- 0.81,
- 0.82,
- 0.81,
- 0.76,
- 0.73,
- 0.68,
- 0.67,
- 0.74,
- 0.86,
- 1.06,
- 1.32,
- 1.51,
- 1.69,
- 1.85,
- 1.99,
- 2.1,
- 2.23,
- 2.32,
- 2.43,
- 2.52,
- 2.61,
- 2.73,
- 2.82,
- 2.83,
- 2.87,
- 2.95,
- 3.08,
- 3.17,
- 3.22,
- 3.28,
- 3.33,
- 3.38,
- 3.38,
- 3.4,
- 3.48,
- 3.5,
- 3.5,
- 3.47,
- 3.44,
- 3.41,
- 3.38,
- 3.35,
- 3.31,
- 3.26,
- 3.17,
- 3.12,
- 3.04,
- 2.96,
- 2.85,
- 2.73,
- 2.6,
- 2.48,
- 2.36,
- 2.24,
- 2.13,
- 1.99,
- 1.86,
- 1.72,
- 1.57,
- 1.42,
- 1.27,
- 1.12,
- 0.97,
- 0.83,
- 0.68,
- 0.51,
- 0.32,
- 0.11,
- -0.12,
- -0.34,
- -0.53,
- -0.69,
- -0.85,
- -1.05,
- -1.31,
- -1.6,
- -1.96,
- -2.34,
- -2.71,
- -3.01,
- -3.22,
- -3.31,
- -3.35,
- -3.31,
- -3.25,
- -3.15,
- -3.08,
- -3.0,
- -2.95,
- -2.9,
- -2.88,
- -2.84,
- -2.8,
- -2.77,
- -2.73,
- -2.7,
- -2.68,
- -2.67,
- -2.68,
- -2.71,
- -2.75,
- -2.8,
- -2.84,
- -2.86,
- -2.89,
- -2.91,
- -2.93,
- -2.92,
- -2.92,
- -2.9,
- -2.87,
- -2.85,
- -2.81,
- -2.77,
- -2.72,
- -2.7,
- -2.69,
- -2.64,
- -2.59,
- -2.47,
- -2.4,
- -2.38,
- -2.39,
- -2.39,
- -2.38,
- -2.34,
- -2.3,
- -2.24,
- -2.18,
- -2.11,
- -2.03,
- -1.95,
- -1.86,
- -1.77,
- -1.67,
- -1.58,
- -1.47,
- -1.36,
- -1.23,
- -1.11,
- -0.97,
- -0.83,
- -0.67,
- -0.5,
- -0.33,
- -0.16,
- 0.01,
- 0.18,
- 0.35,
- 0.5,
- 0.65,
- 0.8,
- 0.92,
- 1.0,
- 1.05,
- 1.07,
- 1.1,
- 1.19,
- 1.37,
- 1.64,
- 1.94,
- 2.14,
- 2.17,
- 1.98,
- 1.6,
- 1.21,
- 0.93,
- 0.79,
- 0.7,
- 0.54,
- 0.19,
- -0.36,
- -0.95,
- -1.36,
- -1.56,
- -1.52,
- -1.35,
- -1.11,
- -0.95,
- -0.87,
- -0.88,
- -0.93,
- -0.95,
- -0.94,
- -0.9,
- -0.88,
- -0.86,
- -0.83,
- -0.8,
- -0.79,
- -0.78,
- -0.78,
- -0.75,
- -0.68,
- -0.55,
- -0.41,
- -0.27,
- -0.15,
- -0.04,
- 0.06,
- 0.17,
- 0.29,
- 0.45,
- 0.65,
- 0.87,
- 1.11,
- 1.33,
- 1.57,
- 1.81,
- 2.09,
- 2.38,
- 2.66,
- 2.93,
- 3.18,
- 3.39,
- 3.55,
- 3.67,
- 3.78,
- 3.87,
- 3.97,
- 4.07,
- 4.14,
- 4.18,
- 4.16,
- 4.09,
- 3.99,
- 3.87,
- 3.73,
- 3.59,
- 3.43,
- 3.27,
- 3.07,
- 2.84,
- 2.6,
- 2.33,
- 2.07,
- 1.82,
- 1.56,
- 1.3,
- 1.02,
- 0.73,
- 0.44,
- 0.15,
- -0.11,
- -0.34,
- -0.54,
- -0.69,
- -0.83,
- -0.94,
- -1.09,
- -1.3,
- -1.57,
- -1.9,
- -2.24,
- -2.55,
- -2.78,
- -3.02,
- -3.1,
- -2.96,
- -2.75,
- -2.36,
- -2.02,
- -1.97,
- -1.04,
- -0.01,
- 0.92,
- 1.1,
- 1.08,
- 1.18,
- 2.19,
- 3.53,
- 4.1,
- 4.58,
- 5.18,
- 5.88,
- 6.27,
- 6.14,
- 5.53,
- 4.58,
- 3.46,
- 2.32,
- 1.26,
- 0.35,
- -0.36,
- -0.85,
- -1.14,
- -1.28,
- -1.29,
- -1.21,
- -1.1,
- -0.97,
- -0.84,
- -0.65,
- -0.41,
- -0.02,
- 0.3,
- 0.47,
- 0.74,
- 1.76,
- 2.93,
- 3.3,
- 3.04,
- 2.49,
- 2.16,
- 1.84,
- 1.59,
- 1.42,
- 0.47,
- -0.5,
- -1.08,
- -1.37,
- -1.84,
- -1.98,
- -2.18,
- -2.06,
- -2.03,
- -2.54,
- -3.0,
- -3.26,
- -3.41,
- -3.54,
- -3.66,
- -3.65,
- -3.4,
- -2.97,
- -2.42,
- -1.85,
- -1.32,
- -0.91,
- -0.58,
- -0.28,
- 0.05,
- 0.39,
- 0.71,
- 1.12,
- 1.49,
- 1.87,
- 2.2,
- 2.54,
- 3.8,
- 3.99,
- 4.15,
- 4.29,
- 4.39,
- 4.47,
- 4.53,
- 4.59,
- 4.65,
- 4.71,
- 4.82,
- 4.82,
- 4.71,
- 4.53,
- 4.34,
- 4.1,
- 3.69,
- 3.13,
- 2.62,
- 2.22,
- 1.95,
- 1.86,
- 1.89,
- 1.94,
- 2.0,
- 2.07,
- 2.08,
- 2.03,
- 1.95,
- 1.71,
- 1.48,
- 1.35,
- 1.37,
- 1.51,
- 1.69,
- 1.86,
- 2.0,
- 2.15,
- 2.29,
- 2.43,
- 2.55,
- 2.64,
- 2.69,
- 2.68,
- 2.68,
- 2.68,
- 2.74,
- 2.8,
- 2.86,
- 2.92,
- 3.0,
- 3.1,
- 3.17,
- 3.22,
- 3.25,
- 3.26,
- 3.25,
- 3.27,
- 3.46,
- 3.75,
- 3.95,
- 3.88,
- 3.76,
- 3.7,
- 3.63,
- 3.48,
- 3.27,
- 3.09,
- 2.95,
- 2.82,
- 2.69,
- 2.53,
- 2.36,
- 2.19,
- 2.02,
- 1.87,
- 1.74,
- 1.62,
- 1.48,
- 1.32,
- 1.16,
- 0.99,
- 0.82,
- 0.66,
- 0.51,
- 0.36,
- 0.21,
- 0.04,
- -0.17,
- -0.41,
- -0.68,
- -0.98,
- -1.26,
- -1.55,
- -1.89,
- -2.35,
- -2.87,
- -3.28,
- -3.53,
- -3.59,
- -3.5,
- -3.38,
- -3.23,
- -3.13,
- -3.07,
- -3.04,
- -3.1,
- -3.17,
- -3.24,
- -3.27,
- -3.31,
- -3.34,
- -3.43,
- -3.55,
- -3.65,
- -3.77,
- -3.87,
- -3.95,
- -3.99,
- -3.98,
- -3.97,
- -3.94,
- -3.88,
- -3.8,
- -3.75,
- -3.75,
- -3.78,
- -3.8,
- -3.84,
- -3.92,
- -3.91,
- -3.92,
- -3.91,
- -3.92,
- -3.88,
- -3.87,
- -3.76,
- -3.69,
- -3.6,
- -3.57,
- -3.54,
- -3.54,
- -3.53,
- -3.5,
- -3.43,
- -3.38,
- -3.32,
- -3.26,
- -3.2,
- -3.13,
- -3.07,
- -2.99,
- -2.91,
- -2.84,
- -2.76,
- -2.68,
- -2.58,
- -2.48,
- -2.37,
- -2.26,
- -2.13,
- -1.99,
- -1.84,
- -1.69,
- -1.52,
- -1.35,
- -1.18,
- -0.99,
- -0.8,
- -0.61,
- -0.41,
- -0.2,
- 0.0,
- 0.21,
- 0.43,
- 0.65,
- 0.84,
- 1.0,
- 1.09,
- 1.13,
- 1.18,
- 1.3,
- 1.53,
- 1.84,
- 2.11,
- 2.23,
- 2.13,
- 1.87,
- 1.65,
- 1.55,
- 1.45,
- 1.14,
- 0.49,
- -0.46,
- -1.26,
- -1.7,
- -1.68,
- -1.49,
- -1.31,
- -1.26,
- -1.32,
- -1.4,
- -1.43,
- -1.42,
- -1.41,
- -1.46,
- -1.59,
- -1.72,
- -1.77,
- -1.74,
- -1.64,
- -1.51,
- -1.4,
- -1.29,
- -1.21,
- -1.14,
- -1.09,
- -1.04,
- -0.98,
- -0.9,
- -0.81,
- -0.69,
- -0.56,
- -0.41,
- -0.24,
- -0.06,
- 0.14,
- 0.37,
- 0.6,
- 0.87,
- 1.14,
- 1.45,
- 1.79,
- 2.14,
- 2.48,
- 2.77,
- 3.0,
- 3.17,
- 3.28,
- 3.35,
- 3.42,
- 3.5,
- 3.56,
- 3.58,
- 3.54,
- 3.46,
- 3.35,
- 3.22,
- 3.1,
- 2.99,
- 2.88,
- 2.75,
- 2.59,
- 2.39,
- 2.18,
- 1.96,
- 1.76,
- 1.54,
- 1.31,
- 1.08,
- 0.85,
- 0.63,
- 0.43,
- 0.28,
- 0.2,
- 0.12,
- -0.08,
- -0.46,
- -0.86,
- -1.05,
- -1.12,
- -1.25,
- -1.57,
- -2.26,
- -2.37,
- -2.34,
- -1.23,
- 0.3,
- 0.99,
- 1.1,
- 0.41,
- -1.12,
- -2.5,
- -2.62,
- -2.56,
- -2.5,
- -1.93,
- -0.91,
- -0.07,
- 0.38,
- 0.45,
- 0.19,
- -0.35,
- -0.89,
- -1.3,
- -1.56,
- -1.75,
- -1.63,
- -1.53,
- -1.26,
- -0.91,
- -0.69,
- -0.71,
- -0.46,
- 0.5,
- 1.82,
- 2.59,
- 2.52,
- 2.55,
- 2.35,
- 2.09,
- 2.56,
- 3.41,
- 4.16,
- 4.24,
- 2.74,
- 1.38,
- 0.91,
- 1.26,
- 2.21,
- 3.54,
- 4.91,
- 5.49,
- 4.86,
- 3.3,
- 2.14,
- 2.09,
- 2.1,
- 1.41,
- -0.73,
- -3.45,
- -4.72,
- -3.96,
- -1.87,
- -0.11,
- 0.75,
- 0.6,
- -0.4,
- -1.72,
- -3.36,
- -4.73,
- -5.34,
- -5.06,
- -4.13,
- -3.07,
- -2.13,
- -1.43,
- -0.87,
- -0.38,
- 0.03,
- 0.37,
- 0.64,
- 0.92,
- 1.24,
- 1.62,
- 2.06,
- 2.5,
- 2.94,
- 3.27,
- 3.56,
- 3.41,
- 3.55,
- 3.88,
- 4.33,
- 4.54,
- 4.51,
- 4.53,
- 4.85,
- 5.18,
- 5.11,
- 4.74,
- 4.45,
- 4.34,
- 4.41,
- 4.5,
- 4.7,
- 4.77,
- 4.81,
- 4.78,
- 4.84,
- 4.89,
- 4.93,
- 4.65,
- 4.13,
- 3.53,
- 2.95,
- 2.58,
- 2.35,
- 2.31,
- 2.46,
- 2.65,
- 2.65,
- 2.44,
- 2.05,
- 1.65,
- 1.31,
- 1.15,
- 1.21,
- 1.44,
- 1.71,
- 1.9,
- 2.04,
- 2.12,
- 2.21,
- 2.32,
- 2.46,
- 2.68,
- 2.95,
- 3.14,
- 3.27,
- 3.38,
- 3.77,
- 3.83,
- 3.34,
- 2.79,
- 2.38,
- 2.65,
- 2.85,
- 3.09,
- 2.7,
- 3.16,
- 3.54,
- 3.96,
- 3.74,
- 3.83,
- 3.99,
- 3.76,
- 3.0,
- 2.45,
- 2.21,
- 2.07,
- 1.93,
- 1.81,
- 1.67,
- 1.42,
- 1.11,
- 0.8,
- 0.59,
- 0.49,
- 0.49,
- 0.52,
- 0.45,
- 0.26,
- 0.07,
- -0.07,
- -0.2,
- -0.37,
- -0.59,
- -0.84,
- -1.18,
- -1.62,
- -2.02,
- -2.35,
- -2.67,
- -2.98,
- -3.18,
- -3.15,
- -3.07,
- -3.09,
- -3.07,
- -2.98,
- -2.93,
- -2.94,
- -3.01,
- -3.01,
- -2.98,
- -2.91,
- -2.87,
- -2.91,
- -2.99,
- -3.12,
- -3.27,
- -3.41,
- -3.51,
- -3.63,
- -3.77,
- -3.93,
- -4.08,
- -4.2,
- -4.33,
- -4.43,
- -4.47,
- -4.45,
- -4.38,
- -4.3,
- -4.23,
- -4.18,
- -4.18,
- -4.11,
- -4.14,
- -4.14,
- -4.13,
- -4.1,
- -4.11,
- -4.18,
- -4.25,
- -4.26,
- -4.24,
- -4.13,
- -3.92,
- -3.81,
- -3.74,
- -3.68,
- -3.6,
- -3.5,
- -3.42,
- -3.4,
- -3.46,
- -3.47,
- -3.46,
- -3.37,
- -3.29,
- -3.12,
- -3.01,
- -2.95,
- -2.89,
- -2.84,
- -2.76,
- -2.68,
- -2.6,
- -2.51,
- -2.4,
- -2.3,
- -2.18,
- -2.05,
- -1.9,
- -1.74,
- -1.56,
- -1.37,
- -1.16,
- -0.94,
- -0.72,
- -0.5,
- -0.28,
- -0.07,
- 0.14,
- 0.35,
- 0.58,
- 0.8,
- 0.97,
- 1.07,
- 1.09,
- 1.12,
- 1.29,
- 1.6,
- 1.96,
- 2.15,
- 2.12,
- 1.94,
- 1.84,
- 1.82,
- 1.6,
- 0.67,
- -0.68,
- -1.81,
- -2.28,
- -2.11,
- -1.79,
- -1.61,
- -1.6,
- -1.68,
- -1.77,
- -1.88,
- -2.02,
- -2.17,
- -2.31,
- -2.37,
- -2.44,
- -2.47,
- -2.46,
- -2.43,
- -2.4,
- -2.39,
- -2.37,
- -2.35,
- -2.32,
- -2.29,
- -2.24,
- -2.18,
- -2.11,
- -2.04,
- -1.96,
- -1.87,
- -1.76,
- -1.63,
- -1.5,
- -1.36,
- -1.19,
- -0.98,
- -0.72,
- -0.41,
- -0.06,
- 0.32,
- 0.72,
- 1.11,
- 1.46,
- 1.73,
- 1.9,
- 1.99,
- 2.03,
- 2.06,
- 2.11,
- 2.17,
- 2.24,
- 2.28,
- 2.3,
- 2.3,
- 2.28,
- 2.24,
- 2.2,
- 2.16,
- 2.13,
- 2.08,
- 2.02,
- 1.91,
- 1.76,
- 1.56,
- 1.37,
- 1.22,
- 1.13,
- 0.98,
- 0.74,
- 0.48,
- 0.29,
- 0.05,
- -0.17,
- 0.25,
- 1.72,
- 5.4,
- 6.29,
- 4.46,
- 2.8,
- 3.17,
- 2.87,
- 1.16,
- -0.04,
- -0.09,
- -0.16,
- -0.62,
- -0.69,
- -0.07,
- 0.15,
- -0.25,
- -0.47,
- -1.1,
- -2.11,
- -2.92,
- -1.23,
- 0.84,
- 0.89,
- 0.07,
- -0.5,
- -1.07,
- -2.14,
- -3.87,
- -4.77,
- -3.46,
- -1.24,
- -0.2,
- -2.34,
- -6.91,
- -9.56,
- -8.22,
- -4.31,
- -1.13,
- 0.12,
- 0.31,
- -0.11,
- -0.61,
- -0.7,
- -0.36,
- 0.0,
- 0.19,
- 0.44,
- 1.07,
- 1.9,
- 2.22,
- 1.84,
- 1.58,
- 2.72,
- 5.58,
- 8.59,
- 9.94,
- 8.79,
- 6.07,
- 4.15,
- 3.82,
- 4.42,
- 4.41,
- 3.12,
- 1.41,
- -0.08,
- -1.45,
- -2.98,
- -3.28,
- -2.61,
- -0.66,
- 0.11,
- -0.57,
- -1.44,
- -1.07,
- 0.28,
- 1.05,
- 0.47,
- -0.34,
- -0.21,
- 0.35,
- 0.52,
- 0.3,
- 0.22,
- 0.43,
- 0.75,
- 1.1,
- 1.49,
- 1.93,
- 2.31,
- 2.56,
- 2.79,
- 3.05,
- 3.25,
- 2.97,
- 3.05,
- 2.86,
- 2.63,
- 2.46,
- 2.52,
- 2.64,
- 2.62,
- 2.61,
- 2.87,
- 3.44,
- 3.98,
- 3.85,
- 2.85,
- 1.74,
- 1.22,
- 1.09,
- 0.65,
- -0.58,
- -0.67,
- 0.97,
- 2.29,
- 1.5,
- 1.05,
- 2.81,
- 4.75,
- 4.22,
- 2.24,
- 1.0,
- 1.38,
- 2.28,
- 2.83,
- 2.84,
- 2.95,
- 3.01,
- 3.07,
- 3.04,
- 2.79,
- 2.23,
- 1.46,
- 0.96,
- 1.13,
- 1.65,
- 2.11,
- 2.39,
- 2.52,
- 2.53,
- 2.49,
- 2.45,
- 2.41,
- 2.21,
- 2.48,
- 2.71,
- 2.81,
- 2.87,
- 2.76,
- 2.56,
- 2.55,
- 2.36,
- 2.14,
- 2.12,
- 1.97,
- 1.66,
- 1.42,
- 1.33,
- 1.29,
- 1.2,
- 1.05,
- 0.93,
- 0.85,
- 0.81,
- 0.78,
- 0.75,
- 0.64,
- 0.39,
- 0.04,
- -0.26,
- -0.39,
- -0.37,
- -0.34,
- -0.4,
- -0.52,
- -0.65,
- -0.73,
- -0.73,
- -0.69,
- -0.67,
- -0.78,
- -1.01,
- -1.24,
- -1.23,
- -0.8,
- -0.31,
- -0.45,
- -1.48,
- -2.83,
- -4.01,
- -4.45,
- -3.33,
- -2.03,
- -1.6,
- -2.11,
- -2.57,
- -2.59,
- -2.43,
- -2.31,
- -2.27,
- -2.26,
- -2.27,
- -2.31,
- -2.43,
- -2.57,
- -2.68,
- -2.78,
- -2.93,
- -3.22,
- -3.54,
- -3.84,
- -4.1,
- -4.25,
- -4.32,
- -4.39,
- -4.44,
- -4.48,
- -4.5,
- -4.51,
- -4.52,
- -4.45,
- -4.42,
- -4.42,
- -4.41,
- -4.39,
- -4.38,
- -4.36,
- -4.33,
- -4.29,
- -4.26,
- -4.22,
- -4.17,
- -4.11,
- -4.03,
- -3.95,
- -3.76,
- -3.62,
- -3.57,
- -3.43,
- -3.32,
- -3.22,
- -3.15,
- -3.07,
- -2.98,
- -2.87,
- -2.76,
- -2.67,
- -2.61,
- -2.47,
- -2.37,
- -2.29,
- -2.22,
- -2.15,
- -2.09,
- -2.06,
- -2.05,
- -2.04,
- -1.99,
- -1.89,
- -1.77,
- -1.64,
- -1.5,
- -1.34,
- -1.14,
- -0.93,
- -0.69,
- -0.46,
- -0.22,
- 0.02,
- 0.24,
- 0.42,
- 0.59,
- 0.76,
- 0.94,
- 1.08,
- 1.14,
- 1.12,
- 1.14,
- 1.33,
- 1.67,
- 1.99,
- 2.19,
- 2.32,
- 2.55,
- 2.78,
- 2.17,
- 0.16,
- -1.95,
- -2.94,
- -2.82,
- -2.43,
- -2.25,
- -2.28,
- -2.29,
- -2.37,
- -2.54,
- -2.77,
- -2.95,
- -3.09,
- -3.16,
- -3.22,
- -3.31,
- -3.38,
- -3.43,
- -3.45,
- -3.46,
- -3.47,
- -3.47,
- -3.49,
- -3.52,
- -3.54,
- -3.53,
- -3.51,
- -3.47,
- -3.43,
- -3.39,
- -3.35,
- -3.28,
- -3.21,
- -3.15,
- -3.1,
- -3.01,
- -2.87,
- -2.69,
- -2.43,
- -2.1,
- -1.71,
- -1.29,
- -0.89,
- -0.58,
- -0.38,
- -0.24,
- -0.12,
- 0.03,
- 0.23,
- 0.47,
- 0.75,
- 1.04,
- 1.29,
- 1.51,
- 1.68,
- 1.79,
- 1.86,
- 1.89,
- 1.92,
- 1.94,
- 1.95,
- 1.96,
- 1.92,
- 1.84,
- 1.74,
- 1.66,
- 1.5,
- 1.27,
- 1.24,
- 1.32,
- 1.49,
- 1.54,
- 0.36,
- -2.09,
- -3.68,
- -1.65,
- 2.99,
- 5.94,
- 4.91,
- 2.65,
- 2.34,
- 2.4,
- 3.05,
- 2.71,
- 1.78,
- 1.13,
- -0.63,
- -1.99,
- -2.14,
- -1.68,
- -1.23,
- -0.9,
- -0.88,
- -1.09,
- -1.14,
- -1.54,
- -3.01,
- -4.84,
- -5.77,
- -4.87,
- -3.18,
- -2.39,
- -3.52,
- -5.54,
- -6.93,
- -4.88,
- -1.61,
- -0.42,
- -1.11,
- -1.64,
- -1.56,
- -1.09,
- -0.39,
- -0.16,
- -0.31,
- 0.27,
- 2.16,
- 4.14,
- 5.02,
- 4.93,
- 4.44,
- 4.1,
- 3.92,
- 3.86,
- 4.7,
- 6.73,
- 9.07,
- 10.27,
- 10.34,
- 10.22,
- 10.57,
- 11.26,
- 11.94,
- 11.37,
- 9.61,
- 6.23,
- 3.85,
- 3.33,
- 3.51,
- 3.58,
- 3.91,
- 3.63,
- 1.55,
- -2.04,
- -4.76,
- -5.0,
- -2.71,
- -0.41,
- 0.41,
- 0.53,
- 0.08,
- -0.31,
- -0.4,
- -0.43,
- -0.45,
- -0.51,
- -0.52,
- -0.38,
- 0.06,
- 0.65,
- 1.16,
- 1.43,
- 1.55,
- 1.72,
- 2.04,
- 2.4,
- 2.72,
- 0.91,
- 0.95,
- 0.84,
- 0.56,
- 0.23,
- 0.09,
- 0.23,
- 0.37,
- 0.16,
- -0.26,
- -0.58,
- -1.11,
- -1.26,
- -0.29,
- 0.9,
- 0.74,
- -0.31,
- 0.16,
- 1.55,
- 0.67,
- -0.34,
- 0.09,
- 0.61,
- 0.52,
- 0.83,
- 1.39,
- 1.66,
- 1.7,
- 1.72,
- 1.75,
- 1.84,
- 2.0,
- 2.19,
- 2.34,
- 2.51,
- 2.68,
- 2.8,
- 2.83,
- 2.77,
- 2.67,
- 2.5,
- 2.33,
- 2.27,
- 2.3,
- 2.42,
- 2.63,
- 2.84,
- 2.99,
- 3.08,
- 3.09,
- 3.03,
- 2.96,
- 2.94,
- 2.98,
- 3.08,
- 3.2,
- 3.23,
- 3.06,
- 2.73,
- 2.41,
- 2.2,
- 2.14,
- 2.2,
- 1.99,
- 1.63,
- 1.45,
- 1.31,
- 1.11,
- 1.0,
- 0.96,
- 0.9,
- 0.81,
- 0.82,
- 0.92,
- 0.9,
- 0.63,
- 0.24,
- 0.0,
- -0.01,
- 0.04,
- 0.03,
- -0.03,
- -0.07,
- -0.02,
- 0.03,
- 0.0,
- -0.12,
- -0.25,
- -0.41,
- -0.64,
- -0.88,
- -1.0,
- -0.96,
- -0.78,
- -0.79,
- -1.01,
- -1.07,
- -1.46,
- -3.02,
- -4.04,
- -3.38,
- -2.64,
- -1.78,
- -0.59,
- 0.29,
- 0.66,
- 0.24,
- -0.35,
- -0.82,
- -1.28,
- -1.64,
- -1.84,
- -1.99,
- -2.1,
- -2.08,
- -1.96,
- -1.94,
- -2.23,
- -2.82,
- -3.44,
- -3.88,
- -4.13,
- -4.22,
- -4.23,
- -4.2,
- -4.17,
- -4.16,
- -4.15,
- -4.13,
- -4.13,
- -4.15,
- -4.2,
- -4.22,
- -4.24,
- -4.26,
- -4.28,
- -4.3,
- -4.29,
- -4.29,
- -4.27,
- -4.2,
- -4.06,
- -3.91,
- -3.77,
- -3.63,
- -3.54,
- -3.39,
- -3.21,
- -3.07,
- -2.96,
- -2.88,
- -2.8,
- -2.72,
- -2.61,
- -2.46,
- -2.28,
- -2.15,
- -2.05,
- -1.95,
- -1.86,
- -1.76,
- -1.72,
- -1.7,
- -1.72,
- -1.72,
- -1.68,
- -1.59,
- -1.51,
- -1.41,
- -1.31,
- -1.18,
- -1.01,
- -0.8,
- -0.54,
- -0.27,
- 0.01,
- 0.28,
- 0.49,
- 0.67,
- 0.8,
- 0.9,
- 1.01,
- 1.13,
- 1.21,
- 1.18,
- 1.1,
- 1.14,
- 1.35,
- 1.63,
- 1.83,
- 2.09,
- 2.57,
- 2.46,
- 0.78,
- -1.81,
- -3.11,
- -3.08,
- -2.67,
- -2.6,
- -2.78,
- -2.97,
- -3.16,
- -3.24,
- -3.34,
- -3.45,
- -3.63,
- -3.83,
- -4.02,
- -4.18,
- -4.26,
- -4.29,
- -4.32,
- -4.35,
- -4.39,
- -4.46,
- -4.57,
- -4.68,
- -4.76,
- -4.83,
- -4.92,
- -4.98,
- -5.02,
- -5.02,
- -4.99,
- -4.91,
- -4.81,
- -4.69,
- -4.59,
- -4.49,
- -4.43,
- -4.38,
- -4.32,
- -4.3,
- -4.25,
- -3.89,
- -3.48,
- -3.03,
- -2.68,
- -2.48,
- -2.29,
- -1.98,
- -1.55,
- -1.07,
- -0.57,
- -0.06,
- 0.42,
- 0.88,
- 1.26,
- 1.55,
- 1.77,
- 1.96,
- 2.07,
- 2.11,
- 2.16,
- 2.16,
- 1.93,
- 1.8,
- 2.47,
- 3.64,
- 4.33,
- 4.4,
- 4.34,
- 4.58,
- 4.9,
- 4.64,
- 3.57,
- 1.65,
- -0.21,
- -1.01,
- -0.41,
- 0.52,
- 1.87,
- 1.83,
- 0.84,
- 0.5,
- 1.68,
- 1.41,
- 1.67,
- 1.19,
- 0.16,
- 0.85,
- 2.15,
- 1.23,
- 0.3,
- 0.57,
- 0.26,
- -2.09,
- -5.22,
- -6.78,
- -6.19,
- -4.89,
- -3.85,
- -3.08,
- -2.29,
- -1.17,
- -0.11,
- 0.61,
- 0.89,
- 0.64,
- 0.2,
- -0.43,
- -1.19,
- -1.51,
- -0.84,
- 0.16,
- 0.71,
- 0.89,
- 1.21,
- 1.48,
- 1.54,
- 1.59,
- 1.83,
- 2.3,
- 2.86,
- 3.33,
- 3.8,
- 4.65,
- 5.85,
- 6.91,
- 7.43,
- 7.45,
- 7.39,
- 7.67,
- 8.21,
- 8.57,
- 8.63,
- 8.84,
- 9.37,
- 9.6,
- 9.09,
- 8.66,
- 8.86,
- 9.26,
- 8.88,
- 7.52,
- 7.01,
- 8.76,
- 10.39,
- 7.38,
- 1.69,
- -0.91,
- -0.59,
- 0.06,
- -0.08,
- -0.32,
- -0.29,
- -0.31,
- -0.52,
- -0.62,
- -0.4,
- 0.02,
- 0.42,
- 0.64,
- 0.82,
- 1.05,
- 1.31,
- 1.47,
- 1.42,
- 1.2,
- 1.0,
- -2.33,
- -2.31,
- -2.25,
- -2.15,
- -2.22,
- -2.27,
- -2.26,
- -2.16,
- -1.98,
- -1.87,
- -1.87,
- -1.76,
- -1.48,
- -1.14,
- -0.58,
- -0.1,
- 0.4,
- 0.85,
- 0.86,
- 0.2,
- -0.88,
- -0.57,
- 0.93,
- 1.21,
- 0.53,
- 0.18,
- 0.48,
- 0.78,
- 0.86,
- 1.03,
- 1.36,
- 1.64,
- 1.85,
- 1.89,
- 2.14,
- 2.48,
- 2.75,
- 2.9,
- 2.96,
- 2.99,
- 2.94,
- 2.98,
- 2.92,
- 2.84,
- 2.81,
- 2.82,
- 2.87,
- 2.96,
- 3.1,
- 3.24,
- 3.34,
- 3.34,
- 3.47,
- 3.48,
- 3.43,
- 3.4,
- 3.39,
- 3.38,
- 3.34,
- 3.25,
- 3.09,
- 2.89,
- 2.69,
- 2.54,
- 2.46,
- 2.4,
- 2.34,
- 2.24,
- 2.1,
- 1.94,
- 1.78,
- 1.53,
- 1.13,
- 0.76,
- 0.66,
- 0.96,
- 1.14,
- 0.94,
- 0.6,
- 0.4,
- 0.38,
- 0.37,
- 0.31,
- 0.28,
- 0.33,
- 0.41,
- 0.49,
- 0.57,
- 0.59,
- 0.39,
- -0.04,
- -0.47,
- -0.74,
- -1.03,
- -1.51,
- -2.09,
- -2.49,
- -2.54,
- -2.15,
- -1.42,
- -0.76,
- -0.72,
- -1.61,
- -2.95,
- -3.84,
- -3.81,
- -3.04,
- -2.07,
- -1.58,
- -1.53,
- -1.56,
- -1.52,
- -1.48,
- -1.51,
- -1.54,
- -1.56,
- -1.61,
- -1.73,
- -1.94,
- -2.2,
- -2.43,
- -2.62,
- -2.78,
- -2.94,
- -3.15,
- -3.33,
- -3.42,
- -3.35,
- -3.18,
- -2.98,
- -2.79,
- -2.67,
- -2.6,
- -2.5,
- -2.32,
- -2.12,
- -1.96,
- -1.8,
- -1.7,
- -1.67,
- -1.71,
- -1.84,
- -2.07,
- -2.36,
- -2.62,
- -2.77,
- -2.74,
- -2.74,
- -2.7,
- -2.72,
- -2.72,
- -2.67,
- -2.57,
- -2.44,
- -2.32,
- -2.2,
- -2.03,
- -1.85,
- -1.71,
- -1.6,
- -1.55,
- -1.53,
- -1.54,
- -1.53,
- -1.53,
- -1.56,
- -1.58,
- -1.55,
- -1.44,
- -1.29,
- -1.13,
- -0.95,
- -0.76,
- -0.54,
- -0.3,
- -0.04,
- 0.23,
- 0.48,
- 0.69,
- 0.82,
- 0.87,
- 0.89,
- 0.95,
- 1.06,
- 1.11,
- 1.01,
- 0.85,
- 0.83,
- 1.04,
- 1.27,
- 1.56,
- 2.11,
- 2.06,
- 0.22,
- -2.3,
- -3.31,
- -3.12,
- -2.9,
- -3.13,
- -3.35,
- -3.58,
- -3.77,
- -3.84,
- -3.83,
- -3.91,
- -4.04,
- -4.19,
- -4.36,
- -4.58,
- -4.75,
- -4.94,
- -5.12,
- -5.29,
- -5.48,
- -5.66,
- -5.81,
- -5.89,
- -5.96,
- -6.08,
- -6.19,
- -6.25,
- -6.27,
- -6.29,
- -6.3,
- -6.34,
- -6.38,
- -6.4,
- -6.36,
- -6.27,
- -6.14,
- -5.98,
- -5.79,
- -5.56,
- -5.38,
- -5.44,
- -5.9,
- -5.71,
- -4.47,
- -3.9,
- -3.56,
- -3.18,
- -2.69,
- -2.16,
- -1.66,
- -1.17,
- -0.63,
- -0.1,
- 0.39,
- 1.1,
- 1.78,
- 2.01,
- 2.11,
- 2.3,
- 2.58,
- 2.86,
- 3.13,
- 3.4,
- 3.5,
- 3.25,
- 2.91,
- 3.19,
- 3.9,
- 4.2,
- 4.26,
- 4.32,
- 4.42,
- 4.72,
- 4.99,
- 5.0,
- 4.51,
- 3.13,
- 1.64,
- 1.19,
- 2.02,
- 2.37,
- 1.08,
- 1.36,
- 2.43,
- 0.77,
- 0.22,
- 1.56,
- 0.47,
- -0.63,
- -0.37,
- -2.46,
- -6.33,
- -6.97,
- -6.25,
- -5.19,
- -4.85,
- -2.64,
- -2.01,
- -3.31,
- -3.42,
- -2.79,
- -2.07,
- -1.47,
- -1.39,
- -1.77,
- -2.62,
- -3.8,
- -4.65,
- -4.59,
- -3.62,
- -2.29,
- -1.38,
- -1.09,
- -0.88,
- -0.42,
- 0.12,
- 0.55,
- 0.81,
- 1.13,
- 1.82,
- 2.73,
- 3.43,
- 3.8,
- 4.18,
- 4.94,
- 6.03,
- 6.81,
- 6.75,
- 6.51,
- 6.65,
- 7.06,
- 7.49,
- 7.75,
- 7.6,
- 7.38,
- 7.39,
- 7.62,
- 8.09,
- 8.79,
- 9.7,
- 10.34,
- 8.88,
- 6.29,
- 5.32,
- 3.41,
- 1.47,
- 0.72,
- 0.0,
- -0.24,
- 0.06,
- -0.08,
- -0.62,
- -0.91,
- -0.75,
- -0.33,
- -0.02,
- -0.02,
- -0.13,
- -0.3,
- -0.5,
- -0.62,
- -0.69,
- -0.88,
- -1.35,
- -1.86,
- -2.22,
- -3.66,
- -3.8,
- -3.81,
- -3.77,
- -3.8,
- -3.98,
- -4.23,
- -4.4,
- -4.49,
- -4.39,
- -4.1,
- -3.8,
- -3.54,
- -2.99,
- -2.74,
- -2.23,
- -0.32,
- 1.58,
- 2.38,
- 2.87,
- 3.36,
- 2.7,
- 2.0,
- 1.98,
- 2.52,
- 3.31,
- 3.8,
- 3.95,
- 3.87,
- 3.75,
- 3.7,
- 3.72,
- 3.84,
- 4.01,
- 4.15,
- 4.26,
- 4.29,
- 4.29,
- 4.29,
- 4.32,
- 4.34,
- 4.19,
- 3.82,
- 3.5,
- 3.36,
- 3.29,
- 3.21,
- 3.11,
- 3.08,
- 3.13,
- 3.21,
- 3.27,
- 3.31,
- 3.38,
- 3.48,
- 3.63,
- 3.75,
- 3.8,
- 3.86,
- 3.99,
- 4.17,
- 4.31,
- 4.32,
- 4.31,
- 4.26,
- 4.06,
- 3.99,
- 4.8,
- 5.72,
- 5.11,
- 3.78,
- 2.83,
- 2.01,
- 1.25,
- 0.7,
- 0.54,
- 0.59,
- 0.59,
- 0.39,
- 0.17,
- 0.07,
- 0.08,
- 0.08,
- 0.1,
- 0.21,
- 0.42,
- 0.61,
- 0.68,
- 0.53,
- 0.29,
- 0.11,
- 0.2,
- 0.45,
- 0.43,
- -0.31,
- -1.39,
- -1.99,
- -1.89,
- -1.85,
- -2.28,
- -2.68,
- -2.59,
- -2.37,
- -2.19,
- -1.84,
- -1.77,
- -1.58,
- -1.22,
- -0.96,
- -0.69,
- -0.35,
- -0.08,
- -0.05,
- -0.24,
- -0.4,
- -0.53,
- -0.79,
- -1.2,
- -1.5,
- -1.53,
- -1.4,
- -1.31,
- -1.23,
- -1.08,
- -0.86,
- -0.67,
- -0.58,
- -0.57,
- -0.54,
- -0.41,
- -0.3,
- -0.36,
- -0.57,
- -0.74,
- -0.74,
- -0.67,
- -0.74,
- -0.99,
- -1.26,
- -1.41,
- -1.47,
- -1.55,
- -1.69,
- -1.84,
- -1.94,
- -2.0,
- -2.01,
- -2.11,
- -2.37,
- -2.61,
- -2.73,
- -2.71,
- -2.6,
- -2.55,
- -2.47,
- -2.33,
- -2.14,
- -1.85,
- -1.59,
- -1.38,
- -1.28,
- -1.29,
- -1.32,
- -1.35,
- -1.38,
- -1.4,
- -1.37,
- -1.29,
- -1.21,
- -1.14,
- -1.05,
- -0.92,
- -0.75,
- -0.55,
- -0.33,
- -0.08,
- 0.19,
- 0.45,
- 0.62,
- 0.68,
- 0.64,
- 0.57,
- 0.54,
- 0.59,
- 0.63,
- 0.58,
- 0.51,
- 0.52,
- 0.66,
- 0.83,
- 1.19,
- 1.77,
- 1.42,
- -0.76,
- -2.94,
- -3.17,
- -2.73,
- -2.9,
- -3.52,
- -3.82,
- -3.85,
- -4.14,
- -4.31,
- -4.21,
- -4.05,
- -4.09,
- -4.24,
- -4.42,
- -4.6,
- -4.81,
- -5.06,
- -5.43,
- -5.8,
- -6.06,
- -6.16,
- -6.27,
- -6.48,
- -6.85,
- -7.27,
- -7.34,
- -7.27,
- -7.4,
- -7.5,
- -7.53,
- -7.58,
- -7.65,
- -7.78,
- -7.91,
- -7.97,
- -7.88,
- -7.72,
- -7.53,
- -7.36,
- -7.09,
- -6.75,
- -6.57,
- -6.83,
- -6.59,
- -5.61,
- -5.36,
- -5.31,
- -5.14,
- -4.62,
- -3.22,
- -2.0,
- -1.32,
- -0.43,
- 0.38,
- 0.94,
- 1.4,
- 1.86,
- 2.37,
- 2.77,
- 2.91,
- 3.01,
- 3.19,
- 3.41,
- 3.64,
- 3.83,
- 4.08,
- 4.34,
- 4.43,
- 4.26,
- 3.68,
- 3.71,
- 5.99,
- 6.15,
- 5.33,
- 4.83,
- 4.56,
- 3.99,
- 2.92,
- 1.61,
- 0.27,
- 1.14,
- 3.06,
- 2.95,
- 2.53,
- 1.5,
- 2.03,
- 3.37,
- 5.19,
- 6.7,
- 7.52,
- 6.55,
- 4.59,
- 3.42,
- 2.54,
- 0.56,
- -1.75,
- -2.8,
- -2.35,
- 0.07,
- 1.68,
- 0.1,
- -2.13,
- -2.47,
- -2.67,
- -3.79,
- -4.85,
- -5.87,
- -7.18,
- -8.16,
- -8.22,
- -7.87,
- -7.12,
- -6.54,
- -5.6,
- -4.63,
- -4.02,
- -3.06,
- -1.44,
- -0.08,
- 0.89,
- 1.73,
- 2.45,
- 3.18,
- 3.9,
- 4.51,
- 4.89,
- 5.0,
- 4.96,
- 4.97,
- 5.19,
- 5.56,
- 5.46,
- 5.02,
- 5.3,
- 6.25,
- 6.89,
- 6.4,
- 5.18,
- 3.9,
- 4.92,
- 10.85,
- 14.69,
- 7.31,
- -2.09,
- -4.46,
- -0.91,
- 1.17,
- 0.23,
- -0.58,
- -0.75,
- -0.92,
- -0.93,
- -0.73,
- -0.43,
- -0.47,
- -0.84,
- -1.31,
- -1.65,
- -1.8,
- -1.94,
- -2.25,
- -2.42,
- -2.51,
- -2.69,
- -3.01,
- -3.38,
- -5.84,
- -5.93,
- -6.03,
- -6.05,
- -6.14,
- -6.3,
- -6.16,
- -5.96,
- -5.83,
- -5.62,
- -5.38,
- -5.19,
- -5.16,
- -5.09,
- -4.88,
- -4.53,
- -4.16,
- -3.66,
- -3.09,
- -2.51,
- -1.94,
- -1.47,
- -1.07,
- -0.68,
- -0.31,
- 0.01,
- 0.31,
- 0.69,
- 1.27,
- 1.71,
- 1.87,
- 1.72,
- 1.36,
- 1.06,
- 1.11,
- 1.62,
- 2.4,
- 3.15,
- 3.63,
- 3.85,
- 3.95,
- 4.0,
- 3.97,
- 3.89,
- 3.82,
- 3.77,
- 3.7,
- 3.57,
- 3.49,
- 3.48,
- 3.47,
- 3.37,
- 3.26,
- 3.2,
- 3.18,
- 3.21,
- 3.26,
- 3.33,
- 3.42,
- 3.58,
- 4.23,
- 5.38,
- 6.16,
- 7.23,
- 7.64,
- 6.75,
- 4.82,
- 3.59,
- 2.35,
- 1.27,
- 1.33,
- 1.87,
- 1.94,
- 1.58,
- 1.21,
- 0.95,
- 0.74,
- 0.5,
- 0.12,
- -0.28,
- -0.44,
- -0.35,
- -0.25,
- -0.27,
- -0.44,
- -0.52,
- -0.42,
- -0.22,
- -0.05,
- 0.06,
- 0.06,
- -0.05,
- -0.03,
- -0.02,
- -0.08,
- 0.01,
- 0.07,
- 0.03,
- -0.13,
- -0.55,
- -1.17,
- -1.67,
- -1.78,
- -1.72,
- -1.83,
- -2.11,
- -1.87,
- -1.32,
- -0.81,
- -0.9,
- -0.92,
- 0.2,
- 1.85,
- 2.4,
- 0.71,
- -1.22,
- -1.49,
- -1.02,
- -1.1,
- -1.46,
- -1.46,
- -1.21,
- -1.0,
- -0.88,
- -0.8,
- -0.77,
- -0.82,
- -0.88,
- -0.88,
- -0.81,
- -0.76,
- -0.83,
- -1.0,
- -1.16,
- -1.28,
- -1.46,
- -1.67,
- -1.97,
- -2.3,
- -2.46,
- -2.38,
- -2.34,
- -2.47,
- -2.7,
- -2.96,
- -3.12,
- -3.23,
- -3.36,
- -3.4,
- -3.32,
- -3.19,
- -2.97,
- -2.82,
- -2.62,
- -2.4,
- -2.13,
- -1.92,
- -1.75,
- -1.57,
- -1.31,
- -1.05,
- -0.87,
- -0.8,
- -0.85,
- -1.0,
- -1.18,
- -1.23,
- -1.11,
- -0.89,
- -0.68,
- -0.55,
- -0.48,
- -0.47,
- -0.45,
- -0.34,
- -0.14,
- 0.08,
- 0.25,
- 0.32,
- 0.28,
- 0.13,
- 0.01,
- 0.04,
- 0.17,
- 0.23,
- 0.16,
- 0.14,
- 0.26,
- 0.39,
- 0.51,
- 0.95,
- 1.13,
- -0.29,
- -2.29,
- -2.91,
- -2.6,
- -2.68,
- -3.08,
- -3.79,
- -4.09,
- -4.09,
- -4.09,
- -4.19,
- -4.3,
- -4.25,
- -4.08,
- -4.1,
- -4.22,
- -4.37,
- -4.72,
- -5.32,
- -5.56,
- -5.77,
- -6.03,
- -6.24,
- -6.52,
- -6.87,
- -7.27,
- -7.46,
- -7.47,
- -7.8,
- -8.1,
- -8.32,
- -8.52,
- -8.69,
- -9.11,
- -9.48,
- -9.65,
- -9.57,
- -9.4,
- -9.48,
- -9.51,
- -9.33,
- -9.0,
- -8.58,
- -8.21,
- -7.98,
- -7.11,
- -5.95,
- -5.94,
- -5.01,
- -4.55,
- -4.61,
- -5.2,
- -4.55,
- -2.53,
- -1.88,
- -1.46,
- -0.44,
- 0.2,
- 0.57,
- 1.14,
- 2.02,
- 2.63,
- 3.59,
- 3.98,
- 2.98,
- 2.55,
- 2.78,
- 3.34,
- 2.94,
- 4.16,
- 5.07,
- 4.38,
- 4.32,
- 5.24,
- 4.3,
- 3.21,
- 3.03,
- 3.85,
- 3.05,
- 4.31,
- 5.97,
- 7.66,
- 6.82,
- 5.49,
- 6.7,
- 8.87,
- 10.41,
- 10.53,
- 9.74,
- 6.93,
- 6.55,
- 5.04,
- 4.77,
- 4.96,
- 5.52,
- 6.32,
- 6.92,
- 7.55,
- 7.37,
- 5.89,
- 5.28,
- 5.0,
- 3.58,
- 2.04,
- 1.24,
- -0.04,
- -1.11,
- -1.52,
- -1.58,
- -1.88,
- -2.03,
- -1.87,
- -2.73,
- -3.6,
- -3.85,
- -3.87,
- -3.47,
- -3.13,
- -3.43,
- -3.89,
- -3.58,
- -2.66,
- -1.71,
- -0.6,
- 0.55,
- 1.91,
- 3.78,
- 5.45,
- 5.69,
- 4.71,
- 4.06,
- 3.83,
- 3.69,
- 3.58,
- 3.4,
- 3.14,
- 3.72,
- 5.59,
- 6.84,
- 6.57,
- 5.28,
- 4.15,
- 7.98,
- 14.02,
- 13.93,
- 10.01,
- 4.04,
- 1.64,
- 1.75,
- -0.37,
- -0.86,
- -0.46,
- -0.58,
- -0.56,
- -0.53,
- -0.8,
- -1.23,
- -1.77,
- -2.4,
- -3.22,
- -4.39,
- -5.18,
- -5.61,
- -5.82,
- -5.85,
- -5.79,
- -5.79,
- -5.82,
- -8.45,
- -8.43,
- -8.25,
- -8.14,
- -7.96,
- -7.78,
- -7.95,
- -8.37,
- -8.54,
- -8.47,
- -8.42,
- -8.24,
- -8.14,
- -7.87,
- -7.38,
- -6.95,
- -6.71,
- -6.57,
- -6.46,
- -6.09,
- -5.65,
- -5.21,
- -4.75,
- -4.24,
- -3.73,
- -3.32,
- -3.18,
- -2.88,
- -2.42,
- -1.88,
- -1.26,
- -0.57,
- 0.18,
- 0.91,
- 1.48,
- 1.77,
- 1.85,
- 1.96,
- 2.23,
- 2.59,
- 2.93,
- 3.23,
- 3.46,
- 3.62,
- 3.7,
- 3.68,
- 3.55,
- 3.4,
- 3.28,
- 3.12,
- 2.91,
- 2.67,
- 2.3,
- 2.07,
- 2.03,
- 1.47,
- 0.64,
- 1.77,
- 5.4,
- 6.68,
- 4.15,
- 1.75,
- 1.49,
- 2.74,
- 3.76,
- 3.57,
- 2.81,
- 2.83,
- 3.28,
- 3.22,
- 2.8,
- 2.54,
- 2.47,
- 2.2,
- 1.64,
- 1.13,
- 1.04,
- 1.23,
- 1.03,
- 0.07,
- -0.87,
- -0.89,
- -0.49,
- -0.64,
- -1.14,
- -1.32,
- -1.3,
- -1.42,
- -1.45,
- -1.06,
- -0.83,
- -1.0,
- -0.99,
- -1.22,
- -1.5,
- -1.4,
- -0.97,
- -0.54,
- -0.37,
- -0.1,
- 0.12,
- -0.32,
- -0.74,
- -0.65,
- -0.46,
- -0.33,
- -0.04,
- 0.41,
- 0.74,
- 0.1,
- -1.47,
- -2.53,
- -2.45,
- -1.72,
- -1.37,
- -1.5,
- -1.47,
- -1.18,
- -0.91,
- -0.73,
- -0.58,
- -0.35,
- -0.2,
- -0.44,
- -0.94,
- -1.24,
- -1.27,
- -1.32,
- -1.54,
- -1.81,
- -2.03,
- -2.24,
- -2.53,
- -2.84,
- -2.97,
- -3.14,
- -3.34,
- -3.83,
- -4.42,
- -4.41,
- -4.25,
- -4.39,
- -4.63,
- -4.77,
- -4.62,
- -4.64,
- -4.64,
- -4.63,
- -4.44,
- -4.16,
- -3.78,
- -3.38,
- -2.9,
- -2.44,
- -2.03,
- -1.66,
- -1.36,
- -1.17,
- -1.03,
- -0.91,
- -0.81,
- -0.79,
- -0.77,
- -0.69,
- -0.59,
- -0.57,
- -0.68,
- -0.76,
- -0.67,
- -0.5,
- -0.37,
- -0.24,
- -0.1,
- -0.07,
- -0.12,
- -0.09,
- 0.04,
- 0.13,
- 0.13,
- 0.1,
- 0.02,
- -0.06,
- -0.05,
- -0.01,
- -0.05,
- -0.11,
- -0.03,
- 0.12,
- 0.19,
- 0.25,
- 0.74,
- 0.99,
- -0.51,
- -2.29,
- -2.54,
- -2.42,
- -2.76,
- -3.49,
- -3.91,
- -4.16,
- -4.22,
- -4.2,
- -4.2,
- -4.19,
- -4.21,
- -4.29,
- -4.46,
- -4.7,
- -4.89,
- -4.85,
- -5.03,
- -5.23,
- -5.29,
- -5.22,
- -5.21,
- -5.39,
- -6.07,
- -6.56,
- -6.86,
- -7.08,
- -7.47,
- -7.88,
- -8.04,
- -8.41,
- -8.75,
- -9.0,
- -9.23,
- -9.5,
- -9.62,
- -9.77,
- -9.83,
- -9.95,
- -10.08,
- -10.17,
- -10.19,
- -10.27,
- -10.69,
- -10.66,
- -9.47,
- -8.51,
- -8.17,
- -8.21,
- -7.74,
- -6.9,
- -5.61,
- -4.0,
- -4.2,
- -4.38,
- -3.1,
- -2.75,
- -2.14,
- -1.09,
- -0.88,
- 0.18,
- 0.84,
- 1.2,
- 2.28,
- 3.15,
- 3.58,
- 3.79,
- 3.48,
- 2.87,
- 3.38,
- 3.58,
- 3.45,
- 3.5,
- 4.62,
- 4.3,
- 2.83,
- 3.43,
- 4.35,
- 3.88,
- 2.62,
- 2.94,
- 2.97,
- 3.77,
- 2.11,
- -2.16,
- -2.49,
- -0.28,
- -0.33,
- -0.17,
- 1.79,
- 3.93,
- 5.64,
- 6.05,
- 6.13,
- 6.12,
- 6.1,
- 5.87,
- 5.65,
- 5.77,
- 6.22,
- 6.71,
- 7.25,
- 7.59,
- 7.06,
- 6.18,
- 5.4,
- 4.43,
- 3.55,
- 3.41,
- 2.62,
- -1.16,
- -4.33,
- -4.64,
- -4.49,
- -4.68,
- -4.27,
- -3.57,
- -3.79,
- -4.09,
- -3.24,
- -2.66,
- -2.39,
- -1.53,
- 0.02,
- 1.29,
- 2.41,
- 3.24,
- 3.49,
- 3.75,
- 3.94,
- 3.82,
- 3.82,
- 3.87,
- 3.41,
- 3.25,
- 4.19,
- 5.02,
- 5.47,
- 5.79,
- 5.67,
- 4.27,
- 2.74,
- 3.54,
- 6.74,
- 7.19,
- 3.8,
- 2.95,
- 1.0,
- -0.66,
- -0.59,
- -0.73,
- -0.86,
- -0.96,
- -1.6,
- -2.33,
- -3.01,
- -4.16,
- -5.53,
- -5.91,
- -6.19,
- -6.75,
- -7.35,
- -7.74,
- -7.84,
- -7.91,
- -8.11,
- -8.31,
- -7.78,
- -7.58,
- -7.37,
- -7.14,
- -6.99,
- -6.92,
- -6.91,
- -6.92,
- -6.79,
- -6.65,
- -6.64,
- -6.74,
- -6.95,
- -7.14,
- -7.29,
- -7.72,
- -8.11,
- -8.22,
- -7.74,
- -7.16,
- -7.22,
- -7.46,
- -7.48,
- -7.2,
- -6.78,
- -6.31,
- -5.77,
- -5.24,
- -4.75,
- -4.27,
- -3.77,
- -3.25,
- -2.68,
- -2.09,
- -1.52,
- -1.06,
- -0.64,
- -0.07,
- 0.7,
- 1.44,
- 1.93,
- 2.22,
- 2.46,
- 2.73,
- 2.98,
- 3.04,
- 2.91,
- 2.75,
- 2.43,
- 2.01,
- 1.73,
- 1.45,
- 1.27,
- 1.14,
- 0.31,
- 0.43,
- 2.34,
- 3.28,
- 2.94,
- 3.08,
- 3.52,
- 3.72,
- 3.24,
- 2.41,
- 1.8,
- 1.58,
- 1.75,
- 2.13,
- 2.54,
- 2.81,
- 2.99,
- 3.18,
- 3.45,
- 3.75,
- 3.71,
- 2.69,
- 1.24,
- 0.83,
- 1.39,
- 1.54,
- 0.81,
- 0.05,
- -0.32,
- -0.73,
- -1.04,
- -0.94,
- -0.78,
- -0.9,
- -1.23,
- -1.27,
- -0.96,
- -0.7,
- -1.17,
- -1.77,
- -1.33,
- -0.89,
- -0.39,
- -0.6,
- -0.65,
- -0.34,
- -0.02,
- 0.2,
- 0.05,
- -0.02,
- 0.14,
- -0.09,
- -0.54,
- -0.72,
- -0.87,
- -1.04,
- -1.07,
- -0.91,
- -0.74,
- -0.76,
- -0.64,
- -0.54,
- -0.65,
- -0.68,
- -0.57,
- -0.44,
- -0.33,
- -0.23,
- -0.23,
- -0.62,
- -1.2,
- -1.54,
- -1.75,
- -2.12,
- -2.49,
- -2.69,
- -2.95,
- -3.44,
- -4.01,
- -4.46,
- -4.72,
- -5.04,
- -5.35,
- -5.54,
- -5.79,
- -6.07,
- -6.22,
- -6.3,
- -6.52,
- -6.54,
- -6.39,
- -6.16,
- -5.91,
- -5.59,
- -5.22,
- -4.86,
- -4.5,
- -4.11,
- -3.79,
- -3.51,
- -3.24,
- -2.97,
- -2.7,
- -2.45,
- -2.31,
- -2.23,
- -2.12,
- -1.92,
- -1.65,
- -1.41,
- -1.19,
- -0.93,
- -0.64,
- -0.37,
- -0.15,
- 0.08,
- 0.19,
- -0.06,
- 0.0,
- 0.17,
- 0.11,
- 0.05,
- 0.11,
- 0.1,
- -0.04,
- -0.18,
- -0.15,
- 0.1,
- 0.23,
- -0.13,
- -0.53,
- -0.47,
- -0.23,
- -0.05,
- 0.08,
- 0.39,
- 0.73,
- -0.07,
- -1.68,
- -2.23,
- -2.34,
- -2.88,
- -3.32,
- -3.61,
- -3.93,
- -4.18,
- -4.46,
- -4.75,
- -4.91,
- -5.03,
- -5.07,
- -4.99,
- -4.57,
- -4.17,
- -3.9,
- -4.08,
- -4.38,
- -4.85,
- -5.22,
- -5.16,
- -5.02,
- -4.99,
- -5.2,
- -5.35,
- -5.58,
- -5.99,
- -6.28,
- -6.32,
- -6.63,
- -6.97,
- -7.43,
- -7.85,
- -8.29,
- -8.71,
- -9.05,
- -9.45,
- -9.54,
- -9.38,
- -9.28,
- -9.48,
- -9.46,
- -8.76,
- -8.57,
- -9.51,
- -9.14,
- -7.07,
- -4.91,
- -8.29,
- -9.73,
- -5.95,
- -6.2,
- -7.72,
- -7.92,
- -6.86,
- -5.75,
- -5.27,
- -4.92,
- -4.67,
- -4.24,
- -3.68,
- -3.22,
- -2.43,
- -1.4,
- -0.5,
- 0.21,
- 0.95,
- 1.73,
- 2.2,
- 3.24,
- 4.16,
- 3.6,
- 2.74,
- 3.86,
- 4.19,
- 3.95,
- 5.68,
- 6.35,
- 6.08,
- 6.12,
- 6.93,
- 8.36,
- 9.57,
- 9.98,
- 11.1,
- 11.01,
- 10.15,
- 11.04,
- 11.43,
- 11.05,
- 10.24,
- 8.91,
- 7.44,
- 6.42,
- 5.86,
- 5.36,
- 5.09,
- 5.04,
- 5.17,
- 5.15,
- 5.18,
- 5.17,
- 5.22,
- 5.2,
- 4.98,
- 4.66,
- 4.26,
- 3.86,
- 3.56,
- 3.21,
- 3.0,
- 0.61,
- -4.74,
- -8.1,
- -7.72,
- -6.65,
- -5.89,
- -5.05,
- -5.59,
- -6.18,
- -6.0,
- -4.73,
- -3.0,
- -1.57,
- -0.69,
- -0.4,
- -0.06,
- 0.61,
- 1.52,
- 2.32,
- 2.87,
- 3.47,
- 4.3,
- 4.52,
- 4.48,
- 5.08,
- 5.26,
- 5.42,
- 5.95,
- 6.95,
- 5.56,
- 3.45,
- 3.92,
- 2.04,
- 3.14,
- 3.12,
- 3.51,
- 2.42,
- -0.3,
- -1.2,
- -1.71,
- -1.97,
- -2.36,
- -3.05,
- -4.33,
- -5.72,
- -6.18,
- -6.67,
- -7.28,
- -7.61,
- -7.82,
- -7.88,
- -7.75,
- -7.71,
- -7.73,
- -7.78,
- -7.84,
- -6.62,
- -6.39,
- -6.33,
- -6.23,
- -6.2,
- -6.26,
- -6.33,
- -6.39,
- -6.46,
- -6.52,
- -6.42,
- -6.34,
- -6.6,
- -7.35,
- -8.1,
- -8.63,
- -9.03,
- -9.45,
- -9.67,
- -9.59,
- -9.4,
- -9.41,
- -9.49,
- -9.38,
- -9.1,
- -8.7,
- -8.18,
- -7.51,
- -6.73,
- -6.01,
- -5.43,
- -4.91,
- -4.39,
- -3.89,
- -3.45,
- -3.05,
- -2.71,
- -2.39,
- -1.96,
- -1.32,
- -0.58,
- -0.01,
- 0.4,
- 0.74,
- 1.09,
- 1.3,
- 1.34,
- 1.27,
- 1.12,
- 0.86,
- 0.6,
- 0.31,
- -0.32,
- -0.34,
- 1.54,
- 3.1,
- 2.31,
- 1.01,
- 0.92,
- 1.51,
- 2.18,
- 2.52,
- 2.78,
- 3.19,
- 3.67,
- 4.07,
- 4.36,
- 4.55,
- 4.66,
- 4.64,
- 4.56,
- 4.69,
- 4.84,
- 4.45,
- 3.73,
- 3.76,
- 3.4,
- 2.07,
- 1.04,
- 0.78,
- 0.92,
- 0.93,
- 0.93,
- 0.83,
- 0.0,
- -0.56,
- 0.03,
- -0.01,
- -0.57,
- -0.44,
- -0.1,
- 0.06,
- 0.3,
- 0.55,
- 0.52,
- 0.4,
- 0.1,
- -0.23,
- -0.3,
- -0.27,
- -0.44,
- -0.53,
- -0.26,
- -0.25,
- -0.74,
- -1.13,
- -1.03,
- -0.7,
- -0.47,
- -0.22,
- 0.04,
- 0.23,
- 0.34,
- 0.3,
- 0.13,
- 0.0,
- 0.0,
- -0.2,
- -0.67,
- -1.13,
- -1.53,
- -1.81,
- -1.89,
- -1.65,
- -1.24,
- -0.84,
- -0.8,
- -1.18,
- -1.59,
- -1.99,
- -2.77,
- -3.54,
- -4.12,
- -4.63,
- -4.89,
- -5.04,
- -5.28,
- -5.58,
- -5.92,
- -6.21,
- -6.28,
- -6.16,
- -6.06,
- -5.8,
- -5.6,
- -5.65,
- -5.75,
- -5.6,
- -5.29,
- -5.02,
- -4.92,
- -5.02,
- -5.26,
- -5.34,
- -5.09,
- -4.72,
- -4.39,
- -4.1,
- -3.83,
- -3.64,
- -3.46,
- -3.2,
- -2.89,
- -2.53,
- -2.17,
- -1.8,
- -1.4,
- -1.02,
- -0.66,
- -0.41,
- -0.24,
- -0.12,
- -0.05,
- -0.05,
- -0.11,
- -0.15,
- -0.15,
- -0.21,
- -0.41,
- -0.54,
- -0.39,
- -0.05,
- 0.1,
- -0.1,
- -0.33,
- -0.35,
- -0.27,
- -0.15,
- 0.11,
- 0.33,
- 0.36,
- -0.81,
- -1.78,
- -1.63,
- -2.11,
- -2.67,
- -2.87,
- -3.03,
- -3.49,
- -3.96,
- -4.11,
- -4.28,
- -4.53,
- -4.83,
- -5.15,
- -5.28,
- -5.02,
- -4.55,
- -3.92,
- -3.55,
- -3.55,
- -3.82,
- -4.12,
- -4.4,
- -4.58,
- -4.71,
- -4.75,
- -4.53,
- -4.22,
- -4.22,
- -4.4,
- -4.65,
- -4.82,
- -4.87,
- -4.96,
- -4.9,
- -4.96,
- -5.25,
- -5.7,
- -6.18,
- -6.67,
- -7.06,
- -7.94,
- -9.68,
- -9.62,
- -8.82,
- -8.97,
- -8.76,
- -8.57,
- -9.21,
- -9.02,
- -9.51,
- -8.36,
- -6.44,
- -5.92,
- -7.96,
- -6.13,
- -7.26,
- -6.83,
- -5.63,
- -4.13,
- -4.25,
- -4.36,
- -3.16,
- -3.52,
- -3.59,
- -3.23,
- -3.2,
- -2.7,
- -2.14,
- -2.54,
- -1.31,
- -0.55,
- -0.09,
- -0.58,
- -0.37,
- 1.55,
- 0.73,
- 1.86,
- 1.83,
- 1.65,
- 2.13,
- 3.7,
- 3.88,
- 1.75,
- 1.25,
- 2.05,
- 1.88,
- 2.24,
- 2.92,
- 2.18,
- 1.72,
- 2.24,
- 1.57,
- -1.82,
- -1.04,
- 1.6,
- 2.54,
- 3.26,
- 3.68,
- 3.74,
- 3.8,
- 3.95,
- 4.05,
- 4.03,
- 3.89,
- 3.78,
- 3.76,
- 3.76,
- 3.59,
- 3.08,
- 2.99,
- 2.52,
- 2.09,
- 3.34,
- -0.05,
- -6.73,
- -7.48,
- -7.63,
- -7.99,
- -7.21,
- -7.66,
- -7.29,
- -6.91,
- -6.25,
- -5.08,
- -4.3,
- -3.97,
- -3.6,
- -2.7,
- -2.29,
- -1.59,
- 0.08,
- 1.84,
- 2.65,
- 3.18,
- 3.35,
- 3.17,
- 4.4,
- 4.36,
- 5.36,
- 3.41,
- 3.96,
- 2.19,
- 3.3,
- 2.81,
- 1.71,
- 5.47,
- 3.21,
- 0.6,
- -0.54,
- -1.4,
- -1.27,
- -0.99,
- -1.87,
- -3.59,
- -5.13,
- -5.98,
- -7.23,
- -7.87,
- -8.1,
- -8.09,
- -8.33,
- -8.48,
- -8.43,
- -8.19,
- -7.91,
- -7.59,
- -7.29,
- -6.98,
- -4.33,
- -3.72,
- -2.99,
- -2.18,
- -1.27,
- -0.33,
- 0.55,
- 1.21,
- 1.56,
- 1.6,
- 1.46,
- 1.25,
- 0.96,
- 0.42,
- -0.62,
- -2.45,
- -4.53,
- -6.01,
- -6.8,
- -7.52,
- -8.26,
- -8.88,
- -9.59,
- -10.19,
- -10.25,
- -9.99,
- -9.64,
- -9.05,
- -8.14,
- -7.43,
- -7.0,
- -6.46,
- -5.9,
- -5.57,
- -5.25,
- -4.84,
- -4.33,
- -3.78,
- -3.38,
- -3.13,
- -2.74,
- -2.17,
- -1.85,
- -1.68,
- -1.17,
- -0.64,
- -0.39,
- -0.23,
- -0.08,
- -0.02,
- -0.1,
- -0.26,
- 0.31,
- 1.15,
- 1.83,
- 0.86,
- 0.2,
- 0.92,
- 1.44,
- 2.09,
- 2.62,
- 2.97,
- 3.36,
- 3.7,
- 3.85,
- 3.8,
- 3.69,
- 3.59,
- 3.46,
- 3.2,
- 3.41,
- 3.42,
- 3.45,
- 4.04,
- 3.61,
- 2.63,
- 2.69,
- 2.74,
- 2.15,
- 1.08,
- 0.68,
- 1.1,
- 1.55,
- 1.11,
- 0.41,
- 0.69,
- 1.28,
- 1.01,
- 0.38,
- 0.18,
- 0.39,
- 0.67,
- 1.13,
- 1.27,
- 1.0,
- 0.38,
- 0.12,
- 0.17,
- 0.04,
- -0.19,
- -0.04,
- -0.2,
- -0.77,
- -0.88,
- -1.11,
- -1.6,
- -1.48,
- -1.53,
- -1.74,
- -1.93,
- -1.62,
- -1.12,
- -1.01,
- -1.02,
- -0.88,
- -0.81,
- -1.09,
- -1.22,
- -1.28,
- -1.23,
- -1.19,
- -1.14,
- -1.03,
- -0.99,
- -1.3,
- -1.44,
- -1.03,
- -0.93,
- 0.56,
- 1.76,
- 1.64,
- 0.74,
- 0.1,
- -0.26,
- -1.02,
- -1.59,
- -1.71,
- -1.56,
- -1.47,
- -1.58,
- -1.59,
- -1.7,
- -2.05,
- -2.5,
- -2.95,
- -3.4,
- -4.29,
- -4.28,
- -4.26,
- -4.31,
- -4.28,
- -4.93,
- -5.83,
- -5.97,
- -5.55,
- -5.33,
- -5.21,
- -5.01,
- -4.75,
- -4.61,
- -4.45,
- -4.31,
- -4.08,
- -3.8,
- -3.44,
- -3.14,
- -2.87,
- -2.53,
- -2.14,
- -1.74,
- -1.34,
- -1.02,
- -0.83,
- -0.75,
- -0.75,
- -0.79,
- -0.74,
- -0.61,
- -0.55,
- -0.53,
- -0.35,
- -0.06,
- 0.05,
- -0.04,
- -0.18,
- -0.21,
- -0.05,
- 0.4,
- 0.61,
- 0.35,
- -0.23,
- -1.13,
- -1.23,
- -1.21,
- -1.58,
- -1.89,
- -1.92,
- -2.49,
- -3.63,
- -4.03,
- -3.63,
- -3.43,
- -3.74,
- -4.15,
- -4.25,
- -4.33,
- -4.45,
- -4.38,
- -4.37,
- -4.43,
- -4.44,
- -4.34,
- -4.15,
- -3.92,
- -3.56,
- -3.04,
- -2.76,
- -2.52,
- -2.23,
- -2.12,
- -2.16,
- -2.29,
- -2.43,
- -2.49,
- -2.46,
- -2.45,
- -2.57,
- -2.77,
- -2.94,
- -3.19,
- -3.28,
- -3.99,
- -5.11,
- -4.08,
- -4.2,
- -5.62,
- -6.91,
- -7.42,
- -6.99,
- -6.59,
- -5.45,
- -6.47,
- -7.57,
- -7.64,
- -6.62,
- -5.0,
- -3.6,
- -4.53,
- -4.75,
- -6.64,
- -7.09,
- -4.06,
- -3.5,
- -5.59,
- -5.17,
- -3.5,
- -3.89,
- -4.09,
- -4.04,
- -3.75,
- -3.81,
- -3.27,
- -2.45,
- -1.61,
- -1.31,
- -1.5,
- -0.62,
- -0.78,
- 0.56,
- 0.77,
- 0.13,
- 1.33,
- 2.34,
- 3.61,
- 4.18,
- 4.07,
- 2.99,
- 2.98,
- 3.74,
- 2.21,
- 1.71,
- 1.74,
- 0.4,
- 1.48,
- 1.76,
- 0.26,
- -2.71,
- -2.14,
- 0.54,
- 2.22,
- 2.85,
- 2.95,
- 3.06,
- 3.14,
- 3.12,
- 2.98,
- 2.92,
- 2.95,
- 2.99,
- 2.94,
- 2.43,
- 1.98,
- 1.82,
- 0.99,
- 0.15,
- -0.93,
- -0.43,
- -3.07,
- -8.82,
- -9.32,
- -9.3,
- -9.21,
- -9.05,
- -8.36,
- -7.54,
- -6.88,
- -6.29,
- -5.91,
- -5.56,
- -5.18,
- -4.52,
- -3.64,
- -2.67,
- -1.0,
- 0.55,
- 2.13,
- 3.74,
- 4.52,
- 4.96,
- 6.09,
- 7.11,
- 2.92,
- 0.34,
- 0.76,
- 0.64,
- 2.16,
- 3.18,
- 2.87,
- 1.88,
- 0.4,
- -0.13,
- -0.56,
- -0.69,
- -2.1,
- -4.53,
- -6.05,
- -7.14,
- -8.17,
- -8.64,
- -8.76,
- -8.75,
- -8.15,
- -7.67,
- -7.42,
- -7.12,
- -6.66,
- -6.21,
- -5.76,
- -5.3,
- -4.85,
- -7.66,
- -7.35,
- -7.03,
- -6.54,
- -5.93,
- -5.18,
- -4.31,
- -3.27,
- -2.05,
- -0.68,
- 0.6,
- 1.55,
- 1.92,
- 1.82,
- 1.93,
- 2.98,
- 4.37,
- 4.11,
- 1.55,
- -0.82,
- -1.82,
- -2.24,
- -3.41,
- -3.69,
- -3.61,
- -3.88,
- -3.06,
- -3.67,
- -4.16,
- -5.91,
- -6.92,
- -6.82,
- -6.3,
- -6.18,
- -6.08,
- -5.81,
- -5.5,
- -5.13,
- -4.7,
- -4.28,
- -4.01,
- -3.98,
- -3.96,
- -3.53,
- -2.69,
- -2.11,
- -1.86,
- -1.48,
- -0.99,
- -0.59,
- -0.44,
- -0.12,
- 0.75,
- 0.72,
- 0.62,
- 1.43,
- 1.53,
- 0.92,
- 0.64,
- 0.79,
- 0.81,
- 1.04,
- 1.31,
- 1.51,
- 1.63,
- 1.72,
- 1.85,
- 1.69,
- 1.81,
- 2.18,
- 2.36,
- 2.47,
- 2.46,
- 2.35,
- 1.61,
- 1.47,
- 1.48,
- 1.21,
- 1.02,
- 0.58,
- 0.19,
- 0.16,
- 0.38,
- 0.4,
- -0.08,
- -0.12,
- -0.63,
- -0.8,
- -0.57,
- -0.29,
- -0.27,
- -0.48,
- -0.4,
- -0.14,
- 0.16,
- 0.46,
- 0.87,
- 1.1,
- 0.91,
- 0.67,
- 0.8,
- 1.12,
- 0.78,
- 0.1,
- -1.34,
- -2.27,
- -1.86,
- -1.38,
- -2.12,
- -3.23,
- -3.24,
- -2.78,
- -2.0,
- -1.66,
- -1.72,
- -1.68,
- -1.64,
- -1.59,
- -1.83,
- -1.93,
- -1.86,
- -1.75,
- -1.46,
- -2.02,
- -2.24,
- -2.01,
- -2.18,
- -1.87,
- -1.64,
- -1.16,
- 0.21,
- 2.47,
- 3.04,
- 3.55,
- 4.15,
- 4.9,
- 5.05,
- 5.13,
- 5.23,
- 5.15,
- 5.24,
- 4.11,
- 1.21,
- -0.01,
- -0.17,
- -0.37,
- -0.51,
- -0.6,
- -1.09,
- -2.6,
- -3.83,
- -4.31,
- -5.07,
- -5.59,
- -5.05,
- -4.65,
- -4.23,
- -4.1,
- -4.13,
- -4.08,
- -3.94,
- -3.92,
- -3.94,
- -3.94,
- -3.81,
- -3.61,
- -3.48,
- -3.26,
- -2.9,
- -2.56,
- -2.34,
- -2.15,
- -1.95,
- -1.79,
- -1.56,
- -1.26,
- -1.0,
- -0.57,
- -0.13,
- -0.44,
- -0.89,
- -0.54,
- 0.09,
- 0.33,
- 0.39,
- 0.38,
- 0.72,
- 1.3,
- 1.53,
- 0.74,
- -0.65,
- -1.07,
- -1.12,
- -0.84,
- -0.36,
- -0.09,
- 0.06,
- -0.49,
- -1.69,
- -2.56,
- -3.4,
- -3.63,
- -3.45,
- -2.39,
- -2.33,
- -2.72,
- -2.76,
- -2.45,
- -2.01,
- -1.67,
- -1.71,
- -2.2,
- -2.38,
- -2.45,
- -2.67,
- -2.69,
- -2.43,
- -2.03,
- -1.72,
- -1.58,
- -1.57,
- -1.54,
- -1.37,
- -0.99,
- -0.57,
- -0.56,
- -1.07,
- -1.24,
- -0.96,
- -1.26,
- -2.71,
- -4.47,
- -5.09,
- -4.93,
- -5.47,
- -6.76,
- -8.57,
- -8.11,
- -6.87,
- -6.96,
- -6.17,
- -5.64,
- -6.82,
- -7.2,
- -7.2,
- -7.96,
- -6.99,
- -7.57,
- -8.66,
- -8.9,
- -7.13,
- -5.99,
- -6.33,
- -6.32,
- -6.11,
- -5.23,
- -4.55,
- -4.77,
- -4.8,
- -4.68,
- -4.5,
- -4.16,
- -3.36,
- -2.87,
- -1.49,
- -1.35,
- -0.68,
- -0.59,
- -0.38,
- 0.43,
- 0.76,
- 1.1,
- 1.44,
- 2.01,
- 3.45,
- 3.95,
- 4.43,
- 5.17,
- 5.09,
- 4.83,
- 4.56,
- 3.16,
- 2.82,
- 2.25,
- 2.46,
- 2.13,
- 1.08,
- 1.2,
- 0.11,
- -0.9,
- 0.21,
- 2.88,
- 3.56,
- 3.43,
- 3.09,
- 2.97,
- 3.05,
- 3.07,
- 3.05,
- 3.02,
- 2.83,
- 2.53,
- 1.77,
- 1.26,
- -0.56,
- -5.21,
- -7.75,
- -9.15,
- -10.01,
- -11.88,
- -10.65,
- -10.47,
- -11.77,
- -9.07,
- -7.93,
- -7.47,
- -6.55,
- -5.89,
- -5.6,
- -5.1,
- -4.9,
- -4.05,
- -3.25,
- -2.99,
- -3.0,
- -2.92,
- -2.11,
- -1.41,
- 0.34,
- 3.14,
- 3.59,
- 2.64,
- 2.42,
- -0.28,
- 1.96,
- 0.01,
- 0.15,
- 1.58,
- 2.24,
- 2.45,
- 0.63,
- 0.09,
- -1.38,
- -4.4,
- -6.32,
- -7.4,
- -7.84,
- -7.63,
- -7.33,
- -7.78,
- -8.05,
- -8.3,
- -8.02,
- -8.46,
- -9.07,
- -8.9,
- -8.83,
- -8.52,
- -8.21,
- -7.92,
- -9.3,
- -8.96,
- -8.6,
- -8.13,
- -7.46,
- -6.6,
- -5.53,
- -4.37,
- -3.44,
- -2.88,
- -2.35,
- -1.41,
- -0.33,
- -0.04,
- 0.05,
- 0.12,
- -1.33,
- -1.79,
- -0.01,
- 0.89,
- 1.05,
- -1.39,
- -2.58,
- -0.69,
- -0.83,
- 0.11,
- -0.75,
- -0.97,
- -1.74,
- -2.46,
- -3.19,
- -3.63,
- -4.98,
- -6.44,
- -6.87,
- -6.91,
- -6.91,
- -6.76,
- -6.59,
- -6.22,
- -5.71,
- -5.16,
- -4.7,
- -4.4,
- -4.03,
- -3.57,
- -3.07,
- -2.44,
- -1.7,
- -1.03,
- -0.54,
- -0.54,
- -0.67,
- 0.04,
- 1.2,
- 0.87,
- -0.31,
- -0.75,
- -0.37,
- -0.46,
- -0.69,
- -0.55,
- -0.37,
- -0.24,
- -0.21,
- 0.0,
- 0.15,
- -0.59,
- -0.64,
- 0.29,
- 0.38,
- -0.44,
- -0.6,
- -1.14,
- -0.86,
- -0.54,
- -0.5,
- -0.66,
- -0.99,
- -0.78,
- -0.64,
- -0.53,
- -0.57,
- -0.35,
- -0.49,
- -1.02,
- -1.22,
- -1.74,
- -2.43,
- -2.44,
- -1.5,
- -2.53,
- -3.06,
- -2.52,
- -2.08,
- -1.41,
- -0.45,
- 0.0,
- 0.04,
- 0.2,
- 0.14,
- 0.11,
- -0.57,
- -1.28,
- -0.99,
- -0.84,
- -0.68,
- -0.76,
- -1.92,
- -3.94,
- -4.19,
- -3.97,
- -3.26,
- -3.13,
- -3.37,
- -3.26,
- -3.29,
- -3.28,
- -3.43,
- -3.22,
- -3.28,
- -3.25,
- -2.97,
- -2.65,
- -2.6,
- -2.07,
- -1.66,
- -1.02,
- -0.64,
- -0.42,
- -2.0,
- -1.76,
- -1.09,
- -0.75,
- 0.43,
- 1.2,
- 0.73,
- 1.16,
- 1.63,
- 1.89,
- 2.22,
- 1.65,
- 1.65,
- 1.05,
- 0.62,
- 0.24,
- 0.03,
- -0.31,
- -0.53,
- -0.75,
- -1.47,
- -2.78,
- -3.57,
- -3.09,
- -3.68,
- -4.08,
- -4.01,
- -3.72,
- -3.5,
- -3.32,
- -2.8,
- -2.54,
- -2.9,
- -2.96,
- -3.12,
- -3.57,
- -3.53,
- -3.45,
- -3.09,
- -2.14,
- -0.98,
- -0.86,
- -1.96,
- -2.54,
- -2.01,
- -1.49,
- -0.7,
- 0.64,
- 1.74,
- 2.0,
- 1.53,
- 0.7,
- 0.19,
- 0.43,
- 0.78,
- 0.96,
- 1.27,
- 1.73,
- 1.23,
- -0.52,
- -1.05,
- -1.16,
- -1.95,
- -2.39,
- -2.43,
- -2.63,
- -3.02,
- -3.45,
- -2.81,
- -2.54,
- -2.51,
- -2.7,
- -2.67,
- -2.5,
- -2.32,
- -2.2,
- -2.31,
- -2.42,
- -2.29,
- -2.92,
- -2.65,
- -1.84,
- -1.24,
- -1.61,
- -2.38,
- -2.95,
- -3.01,
- -2.96,
- -3.0,
- -2.42,
- -0.91,
- 0.28,
- 0.68,
- 0.19,
- -0.68,
- -0.93,
- -0.7,
- -0.79,
- -0.66,
- -0.76,
- -1.11,
- -1.58,
- -1.54,
- -1.37,
- -2.87,
- -3.75,
- -4.42,
- -5.23,
- -5.8,
- -6.09,
- -5.76,
- -5.8,
- -5.55,
- -5.7,
- -5.96,
- -7.05,
- -7.34,
- -7.52,
- -7.88,
- -7.53,
- -7.92,
- -7.46,
- -7.11,
- -7.24,
- -7.42,
- -5.78,
- -5.12,
- -4.79,
- -4.55,
- -4.42,
- -4.35,
- -4.14,
- -3.89,
- -3.54,
- -4.05,
- -4.18,
- -2.48,
- -2.13,
- -1.71,
- -1.85,
- -1.26,
- -0.5,
- 0.38,
- 1.17,
- 2.07,
- 2.23,
- 2.74,
- 2.94,
- 3.47,
- 3.91,
- 3.95,
- 4.59,
- 3.45,
- 1.32,
- 2.17,
- 0.85,
- -0.02,
- 1.32,
- -0.44,
- -1.05,
- 0.1,
- 0.51,
- 1.23,
- 2.91,
- 3.01,
- 3.27,
- 3.48,
- 3.64,
- 3.76,
- 3.84,
- 3.97,
- 3.96,
- 3.63,
- 3.37,
- 4.42,
- 1.11,
- -4.47,
- -2.94,
- -4.02,
- -2.99,
- -8.5,
- -8.9,
- -8.17,
- -8.18,
- -7.49,
- -7.32,
- -7.51,
- -7.06,
- -6.2,
- -5.65,
- -5.41,
- -4.99,
- -4.17,
- -3.9,
- -4.07,
- -4.04,
- -3.11,
- -2.34,
- 0.1,
- 3.14,
- 5.0,
- 4.83,
- 4.22,
- 2.44,
- 2.35,
- 2.16,
- 3.61,
- 7.74,
- 7.22,
- 2.76,
- 1.08,
- -0.4,
- -3.9,
- -6.23,
- -7.44,
- -7.63,
- -7.64,
- -8.37,
- -9.51,
- -10.53,
- -11.19,
- -11.57,
- -11.81,
- -11.88,
- -11.72,
- -11.42,
- -10.94,
- -10.46,
- -10.05,
- -9.63,
- -10.88,
- -10.28,
- -9.64,
- -8.95,
- -8.29,
- -7.73,
- -7.22,
- -6.79,
- -6.3,
- -5.8,
- -5.22,
- -3.93,
- -1.95,
- -1.23,
- -2.08,
- -1.98,
- -0.92,
- -0.05,
- -0.35,
- -1.23,
- -1.25,
- -0.78,
- -0.65,
- -1.18,
- -2.49,
- -2.61,
- -2.46,
- -1.5,
- -1.57,
- -1.52,
- -1.93,
- -2.12,
- -2.06,
- -2.27,
- -2.95,
- -2.61,
- -3.92,
- -6.39,
- -6.96,
- -6.69,
- -6.66,
- -6.54,
- -6.26,
- -5.8,
- -5.13,
- -4.38,
- -3.85,
- -3.58,
- -2.89,
- -1.88,
- -1.9,
- -1.05,
- 0.5,
- 1.2,
- 0.16,
- -1.07,
- -1.27,
- -1.21,
- -1.16,
- -1.09,
- -1.37,
- -0.86,
- -0.75,
- -0.72,
- -0.31,
- -0.36,
- -0.19,
- -0.11,
- -0.5,
- -0.47,
- -0.7,
- -1.21,
- -1.25,
- -2.12,
- -2.12,
- -1.83,
- -1.7,
- -1.24,
- -1.05,
- -0.76,
- -0.63,
- -0.74,
- -0.86,
- -0.63,
- -0.47,
- -0.63,
- -1.04,
- -1.61,
- -0.18,
- 2.06,
- 0.59,
- 0.03,
- -1.17,
- -1.91,
- -1.15,
- -1.28,
- -1.76,
- -1.02,
- -1.4,
- -0.95,
- 1.04,
- 0.48,
- -0.4,
- 0.34,
- 1.18,
- 1.68,
- 1.35,
- -2.23,
- -3.57,
- -4.18,
- -4.35,
- -4.28,
- -4.4,
- -4.51,
- -3.95,
- -3.94,
- -4.02,
- -4.14,
- -3.97,
- -4.22,
- -4.12,
- -4.05,
- -3.76,
- -3.23,
- -2.4,
- -1.65,
- -1.18,
- -1.57,
- -0.38,
- 1.04,
- -1.99,
- -2.29,
- -1.79,
- -1.03,
- -0.32,
- 0.63,
- 1.4,
- 2.17,
- 3.21,
- 3.35,
- 3.11,
- -0.73,
- -0.32,
- 0.06,
- 0.26,
- 0.25,
- 0.24,
- -0.76,
- -2.5,
- -2.07,
- -1.3,
- -1.84,
- -2.56,
- -3.18,
- -3.08,
- -3.06,
- -3.07,
- -3.07,
- -3.05,
- -3.46,
- -3.65,
- -2.86,
- -2.39,
- -1.37,
- -0.58,
- 0.02,
- -0.02,
- -0.76,
- -1.55,
- -1.95,
- -2.48,
- -1.25,
- -0.87,
- -0.96,
- -0.79,
- -0.51,
- -0.83,
- -0.63,
- 0.0,
- 0.71,
- 2.4,
- 2.26,
- 1.82,
- 1.75,
- 1.72,
- 1.56,
- 1.58,
- 1.59,
- 0.38,
- -0.88,
- -0.94,
- -1.16,
- -2.02,
- -3.42,
- -4.14,
- -3.12,
- -2.33,
- -1.46,
- -1.17,
- -1.69,
- -1.77,
- -1.91,
- -2.2,
- -1.9,
- -1.66,
- -1.9,
- -1.61,
- -2.06,
- -1.9,
- -1.12,
- -1.65,
- -1.39,
- -0.98,
- -0.72,
- -0.18,
- 0.24,
- 0.25,
- -0.38,
- -0.59,
- -0.54,
- -0.95,
- -0.27,
- -0.52,
- -0.18,
- -0.57,
- -0.87,
- -0.81,
- -1.2,
- -1.31,
- -0.92,
- -1.49,
- -2.09,
- -2.63,
- -2.46,
- -1.7,
- -1.22,
- -1.19,
- -1.65,
- -1.67,
- -0.99,
- -1.12,
- -1.62,
- -3.37,
- -4.86,
- -6.25,
- -6.26,
- -6.75,
- -7.61,
- -7.34,
- -7.16,
- -7.34,
- -6.85,
- -6.37,
- -5.79,
- -5.98,
- -5.41,
- -4.92,
- -4.35,
- -3.82,
- -3.27,
- -2.24,
- -1.34,
- -0.93,
- -1.29,
- -2.03,
- -2.47,
- -1.72,
- -0.36,
- -1.45,
- -2.27,
- -2.03,
- -0.78,
- -0.57,
- -0.4,
- 0.45,
- 0.87,
- 2.6,
- 4.72,
- 3.35,
- 4.07,
- 4.25,
- 3.31,
- 4.54,
- 5.35,
- 4.41,
- 3.37,
- 1.43,
- 0.77,
- 1.25,
- 0.1,
- 0.15,
- 0.26,
- 0.92,
- 0.93,
- 2.14,
- 2.95,
- 3.59,
- 4.16,
- 4.45,
- 4.58,
- 4.67,
- 4.76,
- 4.29,
- 3.37,
- 2.9,
- 4.16,
- -0.26,
- -4.97,
- -3.72,
- -5.43,
- -8.85,
- -8.51,
- -6.21,
- -7.01,
- -6.7,
- -5.36,
- -5.11,
- -5.22,
- -5.74,
- -5.47,
- -5.04,
- -4.92,
- -3.84,
- -4.21,
- -0.68,
- 2.37,
- 0.94,
- -4.36,
- -8.23,
- -0.35,
- -2.77,
- 0.25,
- -1.39,
- 0.16,
- 3.48,
- 2.89,
- 0.02,
- -1.61,
- -0.37,
- -0.28,
- -1.45,
- -3.29,
- -5.68,
- -7.04,
- -7.35,
- -7.68,
- -7.91,
- -8.97,
- -10.42,
- -11.52,
- -12.65,
- -13.92,
- -14.86,
- -15.49,
- -15.34,
- -14.35,
- -13.3,
- -12.65,
- -12.15,
- -11.56,
- -10.97,
- -10.44,
- -10.26,
- -9.89,
- -9.35,
- -8.67,
- -8.0,
- -7.49,
- -7.21,
- -7.17,
- -7.33,
- -7.69,
- -7.94,
- -6.79,
- -4.83,
- -2.71,
- -2.26,
- -2.62,
- -1.61,
- 0.8,
- 0.28,
- -0.05,
- 1.33,
- 1.55,
- 0.73,
- 1.59,
- 0.55,
- -1.19,
- -2.07,
- -1.24,
- -0.04,
- -0.45,
- -0.56,
- -1.17,
- -2.06,
- -2.07,
- -3.04,
- -3.09,
- -2.84,
- -3.67,
- -5.43,
- -6.12,
- -6.15,
- -5.49,
- -4.37,
- -3.95,
- -3.37,
- -3.7,
- -3.8,
- -3.06,
- -2.14,
- -1.36,
- -1.15,
- -1.05,
- -1.21,
- -1.1,
- -1.02,
- -0.71,
- -0.66,
- -1.49,
- -1.09,
- -0.49,
- -0.52,
- -0.74,
- -0.98,
- -0.86,
- 0.25,
- 2.01,
- 0.75,
- 0.02,
- 0.06,
- -0.65,
- -1.17,
- -1.41,
- -1.77,
- -1.65,
- -1.45,
- -1.49,
- -1.22,
- -0.94,
- -0.83,
- -0.57,
- -0.65,
- -0.67,
- -0.78,
- -0.96,
- -0.08,
- 1.01,
- -0.2,
- -0.61,
- 0.44,
- -0.74,
- -2.24,
- -1.97,
- -2.23,
- -1.38,
- -1.71,
- -1.23,
- -2.0,
- -1.61,
- -2.51,
- -1.3,
- -0.66,
- -0.22,
- 0.42,
- 1.28,
- 0.09,
- -2.87,
- -2.98,
- -3.6,
- -4.01,
- -4.48,
- -4.38,
- -4.75,
- -4.59,
- -4.5,
- -4.48,
- -4.44,
- -4.77,
- -4.82,
- -4.22,
- -3.84,
- -3.16,
- -2.2,
- -1.59,
- -2.27,
- -2.23,
- -1.73,
- -0.51,
- 0.03,
- -0.09,
- 0.28,
- -0.66,
- -0.71,
- -0.32,
- -0.47,
- -0.35,
- 0.88,
- 2.5,
- 2.14,
- 0.32,
- 0.54,
- 2.29,
- 1.64,
- 0.09,
- -0.68,
- -0.5,
- -0.51,
- 0.09,
- -0.98,
- -1.05,
- -1.28,
- -1.87,
- -2.55,
- -2.8,
- -3.11,
- -2.79,
- -2.64,
- -2.55,
- -1.75,
- -2.43,
- -3.09,
- -2.45,
- -2.36,
- -1.41,
- -1.22,
- -0.81,
- -0.43,
- -0.05,
- -0.59,
- -1.33,
- -0.77,
- 0.0,
- 0.77,
- -0.28,
- -0.32,
- 0.74,
- -0.59,
- -1.76,
- -1.53,
- -1.04,
- -0.66,
- 0.77,
- 1.9,
- 2.19,
- 1.56,
- 1.65,
- 1.23,
- 0.49,
- 0.11,
- -0.03,
- -0.36,
- -0.06,
- 0.69,
- -0.74,
- -1.53,
- -1.17,
- -1.24,
- -1.5,
- -1.17,
- -0.79,
- -0.18,
- -0.57,
- -0.43,
- -0.54,
- -0.83,
- -0.6,
- -0.16,
- -0.17,
- -1.04,
- -0.87,
- -0.86,
- -0.69,
- -0.8,
- -0.21,
- -0.57,
- -1.02,
- -0.61,
- -1.1,
- -0.72,
- -0.26,
- -1.33,
- -1.38,
- -0.84,
- -0.18,
- -0.85,
- -1.01,
- -1.53,
- -1.72,
- -2.3,
- -1.87,
- -1.62,
- -1.92,
- -2.43,
- -2.47,
- -2.44,
- -2.22,
- -1.77,
- -1.9,
- -2.34,
- -2.17,
- -1.19,
- -1.1,
- -2.2,
- -2.04,
- -1.01,
- -1.2,
- -2.56,
- -3.57,
- -3.81,
- -3.84,
- -4.43,
- -4.12,
- -3.66,
- -3.41,
- -3.11,
- -3.31,
- -2.74,
- -1.73,
- -1.12,
- -0.61,
- -0.09,
- 0.12,
- 0.25,
- 0.7,
- 1.46,
- 1.86,
- 2.3,
- 3.3,
- 3.48,
- 2.54,
- 0.16,
- -2.65,
- -0.81,
- 0.26,
- 1.73,
- 1.71,
- 2.81,
- 3.05,
- 2.57,
- 3.58,
- 4.07,
- 3.76,
- 3.78,
- 4.59,
- 4.47,
- 4.13,
- 3.1,
- 1.67,
- 0.72,
- -2.6,
- -2.35,
- -2.55,
- -0.5,
- 1.3,
- 3.81,
- 6.44,
- 6.86,
- 6.53,
- 6.43,
- 6.22,
- 5.61,
- 4.68,
- 3.88,
- 3.18,
- 3.42,
- 2.02,
- 0.37,
- -0.52,
- -6.05,
- -7.22,
- -5.04,
- -7.63,
- -10.12,
- -7.23,
- -5.71,
- -5.48,
- -5.65,
- -5.68,
- -5.1,
- -4.67,
- -3.81,
- -3.25,
- -2.65,
- -0.49,
- 1.06,
- 1.06,
- 3.94,
- 2.53,
- -0.28,
- 1.89,
- 1.48,
- 0.98,
- 1.35,
- -0.08,
- -1.78,
- -3.2,
- -3.85,
- -3.25,
- -2.94,
- -3.79,
- -5.47,
- -7.12,
- -7.04,
- -6.89,
- -6.74,
- -6.59,
- -7.61,
- -9.02,
- -11.19,
- -13.51,
- -14.75,
- -15.55,
- -16.35,
- -16.6,
- -16.49,
- -15.93,
- -14.77,
- -13.43,
- -12.15,
- -10.56,
- -9.19,
- -8.18,
- -8.16,
- -8.59,
- -8.76,
- -8.75,
- -8.71,
- -8.4,
- -7.66,
- -6.87,
- -6.8,
- -5.86,
- -4.36,
- -3.64,
- -2.72,
- -3.09,
- -1.94,
- 0.6,
- 0.92,
- 1.66,
- 1.54,
- 0.46,
- 0.83,
- 0.76,
- 0.94,
- 1.06,
- 1.06,
- 0.44,
- -0.48,
- -0.69,
- -0.53,
- -0.37,
- -0.83,
- -1.12,
- -1.39,
- -1.82,
- -2.0,
- -2.62,
- -2.59,
- -2.27,
- -2.64,
- -4.34,
- -4.43,
- -4.05,
- -3.88,
- -4.2,
- -3.74,
- -3.02,
- -3.37,
- -2.55,
- -2.48,
- -2.32,
- -2.55,
- -2.79,
- -2.44,
- -2.24,
- -2.02,
- -1.65,
- -1.35,
- -0.89,
- -0.98,
- -1.27,
- -0.67,
- -0.02,
- 2.21,
- 1.11,
- -1.42,
- -0.35,
- 0.03,
- 0.12,
- 0.09,
- -0.66,
- -1.29,
- -1.02,
- -0.67,
- -0.49,
- -0.68,
- -0.54,
- -0.41,
- -0.09,
- -0.18,
- -0.41,
- -0.38,
- -0.23,
- 0.1,
- 0.54,
- 0.51,
- 0.22,
- -1.35,
- -1.48,
- 0.17,
- -0.85,
- -1.64,
- -0.8,
- -2.27,
- -1.63,
- -1.07,
- -2.42,
- -2.76,
- -2.66,
- -1.75,
- -1.09,
- -0.47,
- -0.58,
- -1.02,
- -2.04,
- -1.93,
- -2.46,
- -2.8,
- -2.63,
- -3.2,
- -3.32,
- -3.64,
- -3.75,
- -3.5,
- -4.03,
- -3.59,
- -3.17,
- -3.83,
- -4.35,
- -4.07,
- -4.1,
- -2.42,
- -2.13,
- -2.29,
- -2.32,
- -2.39,
- -1.3,
- -0.65,
- -0.87,
- -0.13,
- -0.38,
- -1.19,
- -0.5,
- 0.49,
- -0.19,
- 0.86,
- 0.12,
- 3.33,
- 3.02,
- -2.04,
- -1.75,
- -0.99,
- 2.49,
- 1.01,
- -1.26,
- -2.21,
- -2.2,
- -1.82,
- -1.21,
- -1.28,
- -1.29,
- -1.44,
- -2.32,
- -2.47,
- -2.48,
- -2.74,
- -2.28,
- -2.34,
- -2.93,
- -3.07,
- -2.66,
- -3.0,
- -2.17,
- -1.48,
- -1.09,
- -0.73,
- -0.54,
- 0.14,
- -0.05,
- -0.42,
- 0.44,
- 1.33,
- 1.51,
- 1.14,
- 1.35,
- 0.56,
- -1.41,
- -1.68,
- -2.07,
- -1.96,
- -0.93,
- 0.42,
- 1.06,
- 1.99,
- 1.33,
- 0.54,
- 0.98,
- 1.46,
- 1.2,
- 0.58,
- 1.01,
- 1.7,
- 1.62,
- 1.45,
- 1.23,
- -0.21,
- -0.52,
- -0.67,
- -0.9,
- -1.2,
- -2.0,
- -1.61,
- -1.68,
- -0.87,
- -0.49,
- -0.78,
- -0.86,
- -1.32,
- -1.48,
- -1.16,
- -0.63,
- 0.11,
- -0.16,
- -1.56,
- -1.85,
- -1.08,
- -0.81,
- -0.99,
- -0.46,
- -0.2,
- -0.96,
- -2.91,
- -0.98,
- -0.44,
- -1.28,
- -1.19,
- -1.64,
- -0.89,
- -1.63,
- -1.84,
- -2.18,
- -2.18,
- -2.54,
- -2.62,
- -2.45,
- -2.73,
- -2.01,
- -2.33,
- -2.58,
- -2.05,
- -2.09,
- -1.54,
- -1.24,
- -1.19,
- -0.39,
- -0.05,
- 0.37,
- 0.38,
- 0.03,
- 0.43,
- -1.07,
- -1.92,
- -1.83,
- -1.78,
- -1.46,
- -1.02,
- -0.84,
- -0.42,
- -0.03,
- 0.31,
- 0.8,
- 0.87,
- 0.36,
- 1.23,
- 3.28,
- 2.05,
- 1.91,
- 3.34,
- 3.96,
- 4.32,
- 2.96,
- -0.29,
- 0.99,
- 1.08,
- 0.57,
- 2.2,
- 1.92,
- 1.55,
- 2.4,
- 3.14,
- 3.57,
- 3.96,
- 4.19,
- 4.16,
- 4.14,
- 3.8,
- 3.98,
- 4.4,
- 2.4,
- 2.22,
- 1.68,
- 0.14,
- -0.27,
- 0.32,
- -0.76,
- 0.02,
- 5.41,
- 10.07,
- 8.84,
- 6.51,
- 4.6,
- 4.08,
- 3.46,
- 1.68,
- 0.68,
- 1.09,
- -0.31,
- -3.39,
- -4.53,
- -5.6,
- -7.21,
- -8.01,
- -6.36,
- -7.14,
- -5.88,
- -6.07,
- -6.93,
- -4.9,
- -4.32,
- -3.16,
- -4.91,
- -3.93,
- -3.06,
- -1.57,
- 1.57,
- -1.12,
- -0.78,
- -2.28,
- -5.14,
- -4.95,
- -4.52,
- -6.89,
- -9.07,
- -8.99,
- -8.83,
- -7.27,
- -4.83,
- -3.16,
- -2.96,
- -4.09,
- -5.53,
- -5.93,
- -5.71,
- -5.35,
- -4.91,
- -4.27,
- -5.14,
- -7.59,
- -9.45,
- -11.21,
- -13.2,
- -14.19,
- -13.87,
- -13.33,
- -13.29,
- -13.65,
- -13.47,
- -12.27,
- -9.32,
- -7.08,
- -5.8,
- -4.61,
- -4.49,
- -7.33,
- -8.12,
- -9.29,
- -10.57,
- -9.7,
- -9.3,
- -8.24,
- -6.21,
- -4.35,
- -3.65,
- -2.75,
- -2.9,
- -1.49,
- -0.86,
- -0.43,
- 0.52,
- 0.71,
- 0.46,
- 0.27,
- -0.15,
- -0.41,
- -0.13,
- 0.07,
- -0.13,
- -1.02,
- -1.25,
- -0.85,
- -0.94,
- -0.88,
- -1.31,
- -3.26,
- -3.61,
- -3.2,
- -3.13,
- -4.0,
- -4.57,
- -2.39,
- -0.94,
- -1.35,
- -1.5,
- -1.39,
- -1.29,
- -0.9,
- -0.97,
- -0.86,
- -0.79,
- -1.23,
- -1.65,
- -2.15,
- -2.93,
- -2.97,
- -2.61,
- -2.31,
- -1.84,
- -1.3,
- -1.15,
- -1.33,
- -0.7,
- 2.37,
- 1.21,
- 0.18,
- -2.7,
- -2.0,
- -0.63,
- -0.03,
- 0.31,
- -0.05,
- 0.05,
- 0.37,
- 0.28,
- 0.07,
- 0.43,
- 0.49,
- 0.35,
- 0.16,
- 0.1,
- 0.27,
- 0.36,
- 0.13,
- 0.15,
- 0.21,
- -0.11,
- -0.22,
- 0.09,
- -0.22,
- -1.34,
- -0.66,
- 0.15,
- 0.8,
- -1.87,
- -2.15,
- -1.9,
- -1.96,
- -2.1,
- -1.85,
- -2.04,
- -1.46,
- -1.29,
- -1.1,
- -0.67,
- -1.41,
- -1.96,
- -1.71,
- -2.56,
- -3.78,
- -2.54,
- -2.18,
- -2.6,
- -1.46,
- 0.58,
- 0.02,
- -2.04,
- -2.24,
- -1.92,
- -2.49,
- -3.09,
- -3.4,
- -3.75,
- -2.91,
- -2.08,
- -2.71,
- -3.93,
- -2.79,
- -2.29,
- -1.64,
- -0.91,
- 0.75,
- 0.87,
- -0.46,
- -1.1,
- -0.81,
- 0.45,
- -0.8,
- 0.91,
- 2.18,
- 2.95,
- 2.88,
- 1.12,
- 0.43,
- -1.21,
- -0.96,
- 1.21,
- 2.75,
- 2.52,
- 0.79,
- -0.9,
- -1.07,
- -1.85,
- -1.59,
- -1.72,
- -1.24,
- -0.9,
- -1.54,
- -2.69,
- -1.49,
- -0.81,
- -1.0,
- -1.1,
- -0.91,
- -1.05,
- -0.72,
- -1.05,
- -0.74,
- -0.5,
- -0.53,
- 0.05,
- 0.53,
- 0.2,
- 0.04,
- -0.13,
- 1.21,
- 0.68,
- 0.17,
- -0.6,
- 0.15,
- -0.68,
- -2.99,
- -2.47,
- -2.33,
- -1.77,
- -0.71,
- 0.94,
- 1.04,
- -1.11,
- 0.92,
- 1.76,
- 0.87,
- 0.96,
- 0.82,
- 0.83,
- 1.42,
- 1.31,
- 0.48,
- -0.5,
- -1.06,
- -1.72,
- -1.16,
- -1.12,
- -1.64,
- -1.13,
- -0.63,
- -1.33,
- -0.51,
- -1.0,
- -1.47,
- 0.5,
- 0.27,
- -0.88,
- -0.49,
- 1.12,
- 1.27,
- -0.62,
- -0.63,
- -0.98,
- -1.38,
- -0.38,
- 0.12,
- -1.03,
- -1.46,
- -1.51,
- -1.11,
- -1.06,
- -1.18,
- -1.49,
- -1.31,
- -1.18,
- -0.61,
- -0.5,
- -1.6,
- -2.78,
- -3.02,
- -2.64,
- -2.68,
- -2.61,
- -4.08,
- -4.15,
- -3.68,
- -2.95,
- -1.98,
- -1.86,
- -0.91,
- -1.25,
- -0.97,
- -0.57,
- -0.09,
- 1.0,
- 0.04,
- -1.12,
- -2.12,
- -1.98,
- -1.71,
- -1.56,
- -1.2,
- -0.9,
- -0.72,
- -0.46,
- -0.02,
- 0.37,
- 0.19,
- 0.19,
- 0.67,
- 1.77,
- 2.88,
- 2.86,
- 1.44,
- 1.62,
- 2.37,
- 4.52,
- 3.73,
- 2.4,
- 1.69,
- 1.88,
- 1.8,
- 1.22,
- 1.07,
- 1.46,
- 2.38,
- 3.24,
- 3.76,
- 4.08,
- 4.11,
- 3.84,
- 3.64,
- 5.41,
- 4.67,
- 6.57,
- 8.97,
- 9.93,
- 6.37,
- 1.9,
- -1.28,
- -0.5,
- 2.68,
- 1.01,
- -0.22,
- 2.05,
- 2.46,
- 2.34,
- 2.39,
- 1.57,
- 0.51,
- 1.74,
- -3.88,
- -1.61,
- 1.34,
- -1.36,
- -3.02,
- -5.91,
- -5.08,
- -8.44,
- -9.52,
- -6.85,
- -8.82,
- -6.32,
- -1.63,
- -0.5,
- 2.28,
- 1.35,
- -2.13,
- -1.58,
- -3.82,
- -6.5,
- -6.65,
- -7.35,
- -8.65,
- -11.78,
- -11.89,
- -11.7,
- -11.87,
- -11.55,
- -10.39,
- -6.35,
- -3.54,
- -3.73,
- -1.62,
- -0.75,
- 1.13,
- 3.16,
- 3.27,
- 2.28,
- 1.53,
- 0.88,
- 1.66,
- 2.83,
- 2.15,
- -0.64,
- -5.0,
- -7.98,
- -8.59,
- -8.63,
- -7.41,
- -6.64,
- -7.63,
- -9.31,
- -10.57,
- -5.12,
- -4.25,
- -2.01,
- -0.76,
- -0.85,
- -1.2,
- -4.52,
- -9.65,
- -10.84,
- -10.58,
- -11.23,
- -9.95,
- -6.87,
- -5.38,
- -4.69,
- -3.6,
- -2.38,
- -1.67,
- -1.41,
- -1.46,
- -1.61,
- -0.35,
- -0.06,
- -0.97,
- -1.05,
- 0.06,
- 0.12,
- 0.43,
- 0.38,
- -0.77,
- -1.2,
- -1.23,
- -1.24,
- -1.05,
- -0.7,
- -2.03,
- -2.8,
- -2.43,
- -3.38,
- -3.38,
- -2.2,
- -1.24,
- -0.71,
- -0.37,
- -0.01,
- 0.28,
- 0.29,
- 0.42,
- 0.35,
- 0.21,
- 0.0,
- -0.04,
- 0.21,
- 0.21,
- -0.01,
- 0.15,
- -0.24,
- 0.08,
- -0.2,
- 0.52,
- 1.67,
- -0.24,
- -0.96,
- -0.74,
- -0.34,
- -0.41,
- -2.17,
- -1.18,
- -0.78,
- -0.18,
- -0.12,
- -0.27,
- 0.76,
- 1.21,
- 0.94,
- 0.64,
- 0.74,
- 0.78,
- 0.8,
- 0.45,
- 0.23,
- -0.03,
- -0.39,
- -1.09,
- -1.7,
- -1.98,
- -1.79,
- -1.56,
- -0.96,
- -1.05,
- -1.33,
- -0.43,
- -0.12,
- 0.8,
- 1.64,
- -0.39,
- -1.93,
- -1.06,
- -1.57,
- -0.83,
- -0.62,
- -0.18,
- -0.17,
- -0.34,
- -0.71,
- -0.59,
- 0.49,
- 0.9,
- 1.39,
- 1.0,
- 1.42,
- 1.8,
- 1.54,
- 1.6,
- 1.46,
- 2.0,
- 1.3,
- 0.51,
- 0.27,
- -0.52,
- -0.48,
- -1.62,
- -4.23,
- -5.43,
- -4.93,
- -6.03,
- -5.43,
- -4.95,
- -4.05,
- -3.41,
- -1.8,
- -0.76,
- -1.23,
- -1.6,
- -1.29,
- -0.82,
- -1.09,
- 0.2,
- 1.1,
- 1.38,
- 1.9,
- 1.36,
- 1.79,
- 1.26,
- 2.34,
- 1.64,
- 2.59,
- 0.83,
- 1.64,
- 1.19,
- 0.73,
- -1.99,
- -1.95,
- -1.97,
- -1.59,
- -1.52,
- -1.87,
- -1.64,
- -1.39,
- -1.87,
- -2.53,
- -1.52,
- -0.87,
- -1.05,
- -0.78,
- -0.89,
- -0.77,
- -0.73,
- -0.31,
- 0.22,
- -0.61,
- -0.17,
- 0.49,
- 0.8,
- 2.11,
- 2.8,
- 2.47,
- 1.94,
- 0.35,
- -0.91,
- -0.49,
- -1.11,
- -3.02,
- -3.82,
- -3.7,
- -3.49,
- -2.74,
- 0.76,
- 2.94,
- -0.17,
- -0.51,
- 0.08,
- 0.45,
- -1.07,
- -1.03,
- 0.44,
- 0.65,
- -0.65,
- -0.38,
- 1.09,
- 0.12,
- -0.53,
- -0.03,
- -0.18,
- -0.26,
- -0.11,
- -0.22,
- -0.5,
- -1.98,
- -1.53,
- -0.39,
- 0.03,
- 0.1,
- 0.79,
- -0.07,
- 0.51,
- 0.82,
- 0.22,
- -0.26,
- 0.24,
- -0.03,
- -0.36,
- -0.67,
- -1.22,
- -0.93,
- -0.6,
- -0.83,
- 0.06,
- -0.1,
- 0.41,
- -0.54,
- -0.26,
- 0.19,
- 1.34,
- -1.42,
- -2.63,
- -2.35,
- -2.32,
- -2.94,
- -2.43,
- -2.48,
- -2.21,
- -2.59,
- -2.72,
- -2.46,
- -2.31,
- -1.26,
- -1.43,
- -1.47,
- -1.12,
- -0.6,
- -1.04,
- -0.9,
- -1.87,
- -1.97,
- -1.59,
- -1.71,
- -1.88,
- -1.74,
- -1.8,
- -1.41,
- -1.04,
- -0.56,
- -1.0,
- -0.62,
- -0.73,
- 0.06,
- 1.15,
- 1.94,
- 2.2,
- 2.18,
- 2.77,
- 1.78,
- 1.87,
- 2.17,
- 1.52,
- 2.7,
- 3.08,
- 3.31,
- 3.42,
- 3.18,
- 2.86,
- 2.41,
- 3.56,
- 4.61,
- 4.08,
- 2.99,
- 3.72,
- 5.18,
- 4.91,
- 5.37,
- 5.75,
- 7.56,
- 7.37,
- 6.98,
- 8.98,
- 5.1,
- 2.99,
- -1.08,
- -0.75,
- 0.62,
- -0.08,
- 0.61,
- 0.62,
- 0.48,
- -0.58,
- -4.19,
- -6.0,
- -5.45,
- -5.57,
- -3.59,
- -4.19,
- -8.02,
- -9.25,
- -9.38,
- -7.56,
- -10.25,
- -9.57,
- -6.39,
- -0.2,
- 0.98,
- -3.49,
- -6.98,
- -9.04,
- -8.54,
- -9.72,
- -12.01,
- -11.27,
- -10.66,
- -10.98,
- -11.57,
- -11.94,
- -11.32,
- -9.93,
- -9.36,
- -9.43,
- -8.34,
- -5.37,
- -3.45,
- -1.21,
- 0.76,
- 2.73,
- 3.38,
- 4.49,
- 7.23,
- 6.26,
- 5.32,
- 5.42,
- 4.84,
- 5.96,
- 8.23,
- 8.94,
- 8.26,
- 5.92,
- 3.08,
- 2.06,
- -0.37,
- -1.43,
- -2.48,
- -4.61,
- 2.56,
- 1.99,
- 1.75,
- 1.97,
- 1.63,
- 2.18,
- 3.73,
- -5.06,
- -10.81,
- -10.27,
- -6.57,
- -6.08,
- -5.31,
- -5.03,
- -4.92,
- -4.44,
- -3.29,
- -2.48,
- -1.96,
- -1.28,
- -1.42,
- -3.06,
- -4.18,
- -2.49,
- -1.24,
- -0.79,
- -0.32,
- -0.25,
- -0.82,
- -0.86,
- -1.29,
- -2.36,
- -1.98,
- -1.21,
- -1.33,
- -1.62,
- -1.98,
- -2.63,
- -1.89,
- -1.49,
- -1.45,
- -1.16,
- -0.85,
- -0.41,
- 0.15,
- 0.51,
- 0.88,
- 1.5,
- 1.36,
- 1.37,
- 1.98,
- 1.72,
- 1.49,
- 1.22,
- 1.35,
- 1.51,
- 1.02,
- 0.97,
- 1.63,
- 2.53,
- 3.69,
- -0.56,
- -3.77,
- -2.26,
- 0.04,
- 0.35,
- -0.3,
- -1.17,
- -0.76,
- -0.18,
- 0.19,
- 0.16,
- 0.91,
- 1.45,
- 1.71,
- 1.85,
- 2.09,
- 2.0,
- 1.94,
- 2.04,
- 2.0,
- 1.79,
- 1.5,
- 0.85,
- -0.09,
- -0.19,
- -1.1,
- -1.65,
- -0.91,
- -0.48,
- -1.29,
- -1.17,
- 0.27,
- 1.17,
- 1.5,
- 2.63,
- 3.37,
- 0.52,
- 0.52,
- 0.79,
- 0.76,
- 1.93,
- 1.78,
- 1.95,
- 2.87,
- 3.25,
- 3.91,
- 3.21,
- 3.09,
- 2.81,
- 3.18,
- 2.46,
- 1.11,
- 0.34,
- 1.25,
- 1.23,
- 1.36,
- 1.63,
- 0.95,
- 1.72,
- 0.11,
- -1.11,
- -1.19,
- -2.0,
- -4.67,
- -7.48,
- -7.73,
- -8.5,
- -8.97,
- -8.18,
- -6.1,
- -4.94,
- -3.89,
- -2.3,
- -1.62,
- -1.14,
- -1.75,
- -0.99,
- 0.73,
- 1.6,
- 1.86,
- 0.34,
- 0.42,
- 0.87,
- 2.62,
- -0.85,
- -0.36,
- 2.19,
- 2.41,
- 1.01,
- 1.13,
- 0.7,
- -1.3,
- -0.77,
- -0.71,
- -1.03,
- -1.13,
- 0.0,
- 0.16,
- -1.03,
- -0.8,
- -0.94,
- -1.15,
- -1.18,
- -0.82,
- -0.64,
- -0.94,
- -0.77,
- -0.4,
- -0.32,
- -0.68,
- -0.03,
- 0.77,
- 0.79,
- -0.04,
- 1.18,
- 0.51,
- 0.55,
- 1.5,
- 1.19,
- 0.75,
- 0.14,
- -0.77,
- -0.91,
- -1.38,
- -1.06,
- 0.81,
- -1.45,
- -1.52,
- -0.84,
- -0.27,
- 0.09,
- 1.22,
- 1.62,
- 2.07,
- -0.58,
- -2.33,
- -3.61,
- -2.68,
- -1.5,
- -0.48,
- -0.26,
- 0.55,
- 1.01,
- -0.01,
- -0.24,
- -0.74,
- -1.02,
- -0.83,
- 1.79,
- 0.1,
- -0.66,
- 0.09,
- 1.33,
- 0.37,
- 0.88,
- 1.08,
- 1.79,
- 0.95,
- 0.91,
- 0.76,
- 0.65,
- 0.65,
- -0.67,
- -1.95,
- -1.91,
- -1.19,
- -0.54,
- 0.92,
- 1.92,
- 0.7,
- 1.09,
- 0.81,
- -2.87,
- -1.15,
- -0.86,
- -2.23,
- -1.92,
- -1.98,
- -2.41,
- -3.17,
- -2.99,
- -2.57,
- -3.03,
- -3.24,
- -2.97,
- -3.34,
- -3.21,
- -2.36,
- -1.9,
- -2.11,
- -1.94,
- -1.7,
- -1.67,
- -2.03,
- -1.63,
- -1.44,
- -0.93,
- -1.68,
- -0.92,
- -1.56,
- -1.82,
- -1.36,
- -0.44,
- -0.6,
- -0.82,
- -0.4,
- 0.2,
- 1.14,
- 1.86,
- 1.74,
- 1.89,
- 1.45,
- 1.28,
- 0.39,
- 0.56,
- 0.91,
- 1.14,
- 1.39,
- 1.35,
- 2.01,
- 2.16,
- 3.08,
- 3.03,
- 2.05,
- 2.85,
- 3.31,
- 3.14,
- 1.6,
- 2.45,
- 4.69,
- 5.76,
- 3.59,
- 3.21,
- 4.38,
- 2.0,
- 2.36,
- 5.03,
- 3.65,
- 1.65,
- 0.46,
- -0.27,
- 0.14,
- 0.9,
- 1.61,
- 2.49,
- 0.32,
- -0.82,
- -2.47,
- -3.92,
- -3.93,
- -6.33,
- -12.28,
- -10.18,
- -8.31,
- -11.65,
- -12.02,
- -9.29,
- -6.18,
- 0.45,
- -3.34,
- -8.55,
- -11.96,
- -12.71,
- -13.04,
- -12.65,
- -12.03,
- -11.23,
- -9.99,
- -8.61,
- -7.21,
- -5.88,
- -5.24,
- -5.06,
- -4.39,
- -4.18,
- -4.45,
- -3.89,
- -0.81,
- 1.3,
- -1.62,
- 2.83,
- 1.49,
- -2.73,
- 2.93,
- 5.68,
- 8.45,
- 9.28,
- 9.87,
- 10.84,
- 9.63,
- 6.45,
- 4.3,
- 3.9,
- 4.2,
- 3.2,
- 3.92,
- 4.51,
- 4.26,
- 3.1,
- 6.03,
- 4.12,
- 2.73,
- 1.66,
- 1.87,
- 3.11,
- 5.13,
- 5.53,
- 0.52,
- -2.06,
- -2.36,
- -3.63,
- -3.21,
- -3.55,
- -4.01,
- -3.71,
- -2.9,
- -2.14,
- -1.82,
- -2.09,
- -2.2,
- -0.94,
- -1.54,
- -2.41,
- -1.0,
- -0.06,
- -0.09,
- -0.72,
- -0.79,
- -1.45,
- -1.74,
- -2.7,
- -2.53,
- -1.92,
- -1.77,
- -1.75,
- -1.97,
- -1.79,
- -1.51,
- -0.97,
- -0.64,
- -0.2,
- -0.2,
- 0.12,
- 0.69,
- 1.22,
- 1.5,
- 1.94,
- 2.06,
- 2.08,
- 2.14,
- 2.11,
- 2.24,
- 2.53,
- 2.63,
- 2.78,
- 3.1,
- 3.01,
- 3.45,
- 5.13,
- 4.43,
- 3.83,
- 3.23,
- 1.71,
- 1.05,
- 0.99,
- 1.32,
- 2.16,
- 2.12,
- 1.11,
- 0.44,
- 0.43,
- 1.09,
- 1.67,
- 2.65,
- 3.2,
- 3.67,
- 4.17,
- 4.43,
- 4.59,
- 4.65,
- 5.24,
- 5.17,
- 5.28,
- 5.46,
- 4.78,
- 3.88,
- 3.38,
- 1.92,
- 0.5,
- 0.84,
- 2.14,
- 2.48,
- 2.44,
- 2.28,
- 2.74,
- 3.63,
- 4.77,
- 4.39,
- 2.69,
- 2.73,
- 3.26,
- 3.4,
- 2.91,
- 3.61,
- 4.0,
- 4.39,
- 4.5,
- 3.98,
- 3.51,
- 2.97,
- 3.2,
- 2.73,
- 2.14,
- 2.12,
- 1.78,
- 2.04,
- 2.45,
- 2.33,
- 2.45,
- 2.88,
- 2.08,
- -0.78,
- -1.49,
- -0.97,
- -1.69,
- -3.17,
- -4.72,
- -5.06,
- -5.26,
- -5.66,
- -5.54,
- -4.96,
- -4.74,
- -4.39,
- -3.58,
- -2.77,
- -2.18,
- -1.29,
- -0.05,
- 1.79,
- 0.93,
- -0.48,
- 0.21,
- 0.84,
- 2.55,
- -0.29,
- 0.48,
- 1.79,
- 2.42,
- -0.04,
- 0.73,
- 0.76,
- -0.04,
- -0.13,
- 0.65,
- -1.26,
- -0.12,
- -1.36,
- -0.71,
- -0.65,
- -0.58,
- -0.6,
- 0.03,
- 0.18,
- -0.21,
- -1.24,
- -0.91,
- -0.22,
- -0.59,
- 0.29,
- 0.17,
- -0.32,
- 0.36,
- 0.51,
- 0.79,
- 0.33,
- -0.26,
- 0.02,
- 1.03,
- 1.63,
- 0.75,
- 0.12,
- 0.33,
- 0.52,
- 0.19,
- -0.87,
- -2.02,
- -1.56,
- -1.02,
- -1.11,
- -0.99,
- 0.43,
- 1.37,
- -0.36,
- -1.97,
- -1.2,
- -2.38,
- -3.18,
- -2.18,
- -1.41,
- -1.09,
- -0.78,
- -0.17,
- 1.18,
- -0.96,
- -2.04,
- -1.67,
- -2.23,
- 0.52,
- 1.0,
- -0.64,
- -1.29,
- -2.18,
- -1.72,
- 0.48,
- 1.88,
- 2.39,
- 3.06,
- 1.37,
- 0.52,
- 0.65,
- 1.05,
- 0.79,
- -1.02,
- 0.62,
- 0.72,
- 0.5,
- 1.23,
- 0.92,
- 1.95,
- 2.48,
- 1.98,
- 2.11,
- -0.43,
- -1.08,
- -0.81,
- -1.77,
- -3.36,
- -3.61,
- -3.39,
- -3.28,
- -3.18,
- -2.58,
- -2.76,
- -4.4,
- -4.08,
- -4.34,
- -4.68,
- -2.43,
- -2.85,
- -3.19,
- -2.85,
- -2.18,
- -1.98,
- -1.46,
- -1.42,
- -0.97,
- -2.04,
- -2.76,
- -2.17,
- -1.7,
- -2.18,
- -2.45,
- -1.81,
- -1.2,
- -0.21,
- 0.32,
- -0.18,
- 0.36,
- 0.14,
- -0.08,
- 0.05,
- -0.47,
- -0.17,
- 0.08,
- 0.62,
- -0.84,
- -0.61,
- 0.19,
- 0.6,
- 1.45,
- 1.86,
- 2.68,
- 3.0,
- 2.0,
- 2.12,
- 3.58,
- 4.35,
- 3.09,
- 2.39,
- -0.7,
- 1.35,
- 6.89,
- 3.27,
- 1.55,
- 0.34,
- 2.13,
- 2.6,
- 1.3,
- -0.87,
- -0.28,
- 0.68,
- 1.57,
- 2.04,
- 2.14,
- 3.11,
- 3.76,
- 0.4,
- -4.1,
- -6.02,
- -6.52,
- -10.45,
- -15.59,
- -11.05,
- -13.56,
- -9.63,
- -0.67,
- 0.1,
- -2.7,
- -9.32,
- -12.25,
- -12.51,
- -12.78,
- -12.59,
- -12.18,
- -11.42,
- -10.6,
- -9.67,
- -8.56,
- -7.26,
- -5.96,
- -4.67,
- -3.39,
- -1.92,
- -0.31,
- 0.7,
- 1.69,
- 2.97,
- 2.94,
- 5.23,
- 6.08,
- 7.03,
- 8.43,
- 7.39,
- 7.08,
- 7.71,
- 8.55,
- 9.53,
- 10.47,
- 11.31,
- 12.33,
- 13.54,
- 14.28,
- 14.3,
- 13.74,
- 12.86,
- 11.77,
- 9.9,
- 7.77,
- 1.76,
- 0.12,
- 0.03,
- 0.53,
- 1.61,
- 0.15,
- -1.12,
- -1.79,
- -2.54,
- -2.57,
- -1.46,
- -3.0,
- -4.58,
- -3.36,
- -3.62,
- -3.05,
- -2.98,
- -2.05,
- -3.6,
- -3.48,
- -1.79,
- -0.44,
- -0.11,
- 0.44,
- 0.09,
- 0.33,
- 1.02,
- -0.67,
- -0.46,
- -0.44,
- -1.55,
- -1.71,
- -2.19,
- -2.34,
- -1.96,
- -2.52,
- -1.52,
- -1.63,
- -1.47,
- -0.76,
- -0.37,
- 0.04,
- 0.12,
- 0.76,
- 0.85,
- 0.9,
- 1.27,
- 1.85,
- 2.18,
- 2.31,
- 2.56,
- 2.63,
- 2.84,
- 3.05,
- 3.36,
- 3.6,
- 3.78,
- 3.84,
- 4.15,
- 5.01,
- 5.74,
- 4.42,
- 4.74,
- 5.06,
- 4.66,
- 4.4,
- 3.86,
- 3.94,
- 3.97,
- 3.8,
- 3.92,
- 4.42,
- 3.7,
- 3.61,
- 3.65,
- 4.11,
- 4.62,
- 4.72,
- 4.89,
- 5.14,
- 5.76,
- 5.33,
- 6.09,
- 5.49,
- 6.1,
- 5.72,
- 5.79,
- 5.48,
- 5.18,
- 3.63,
- 2.99,
- 2.32,
- 2.54,
- 3.67,
- 3.83,
- 3.76,
- 4.23,
- 3.93,
- 4.02,
- 4.43,
- 5.12,
- 4.09,
- 3.04,
- 3.63,
- 4.41,
- 4.19,
- 4.26,
- 3.94,
- 2.76,
- 2.75,
- 2.87,
- 3.19,
- 2.46,
- 0.42,
- 0.2,
- 1.85,
- 1.9,
- 2.31,
- 2.7,
- 2.82,
- 2.72,
- 2.53,
- 1.66,
- 0.88,
- -0.37,
- -1.01,
- -1.34,
- -1.25,
- -0.94,
- -1.5,
- -2.81,
- -3.04,
- -3.09,
- -2.87,
- -2.35,
- -1.72,
- -1.37,
- -2.26,
- -1.86,
- -0.73,
- 0.09,
- 1.08,
- 1.23,
- 1.45,
- 0.61,
- 1.97,
- 1.53,
- 0.55,
- 0.42,
- 1.21,
- 1.68,
- 0.79,
- 0.83,
- 1.04,
- -0.49,
- -0.59,
- -1.61,
- -1.12,
- -0.06,
- 0.03,
- -0.9,
- -1.21,
- -1.01,
- -0.98,
- -0.84,
- -0.72,
- -0.91,
- -0.72,
- -0.48,
- 0.34,
- 0.53,
- -0.11,
- -1.61,
- 0.19,
- 0.22,
- 1.01,
- 1.34,
- 1.42,
- 1.76,
- 0.26,
- -0.76,
- -0.05,
- 0.01,
- 0.27,
- 0.07,
- -0.07,
- -1.36,
- -1.38,
- -0.81,
- -0.15,
- -0.23,
- -0.47,
- 0.04,
- -0.44,
- -0.69,
- 0.38,
- -2.94,
- -3.35,
- -3.86,
- -3.32,
- -1.12,
- -0.78,
- -0.16,
- 0.11,
- -0.66,
- -1.35,
- -2.3,
- -1.09,
- -0.63,
- 1.83,
- 1.35,
- 0.38,
- 1.33,
- -0.26,
- -0.66,
- -2.35,
- -0.51,
- -0.36,
- 1.71,
- 2.09,
- 1.35,
- -0.04,
- 0.44,
- 2.01,
- 0.82,
- -0.01,
- 1.92,
- 2.85,
- 2.73,
- 3.21,
- 2.28,
- 2.33,
- 2.66,
- 2.46,
- 1.14,
- 2.26,
- 1.85,
- 1.05,
- 0.6,
- -0.91,
- -0.35,
- -1.02,
- -0.87,
- -1.84,
- -2.88,
- -3.74,
- -5.42,
- -4.51,
- -3.56,
- -3.07,
- -3.22,
- -3.34,
- -3.13,
- -2.81,
- -2.03,
- -1.59,
- -1.69,
- -1.61,
- -1.78,
- -2.07,
- -2.63,
- -2.23,
- -2.59,
- -2.81,
- -2.42,
- -2.06,
- -1.62,
- -1.64,
- -1.72,
- -1.66,
- -1.43,
- -1.2,
- -1.09,
- -0.88,
- -0.58,
- -0.48,
- -0.77,
- -0.98,
- -0.57,
- -0.17,
- 0.39,
- 1.08,
- 1.7,
- 1.95,
- 1.19,
- 2.42,
- 3.04,
- 4.5,
- 4.25,
- 5.78,
- 5.96,
- 6.93,
- 6.92,
- 1.02,
- 0.03,
- 2.94,
- 1.35,
- 1.64,
- 0.19,
- -0.89,
- 0.06,
- 0.6,
- 0.75,
- 0.5,
- 0.34,
- 1.16,
- 2.32,
- 1.9,
- 3.18,
- -1.21,
- -4.07,
- -0.64,
- -9.59,
- -16.73,
- -15.99,
- -16.73,
- -14.26,
- -5.49,
- 0.15,
- -5.64,
- -13.77,
- -14.92,
- -15.73,
- -15.73,
- -15.79,
- -15.62,
- -14.85,
- -13.73,
- -12.42,
- -11.04,
- -9.78,
- -8.62,
- -7.43,
- -6.06,
- -4.38,
- -2.14,
- 0.43,
- 2.64,
- 4.14,
- 5.25,
- 6.48,
- 7.75,
- 8.75,
- 8.83,
- 7.66,
- 7.09,
- 6.76,
- 6.87,
- 5.8,
- 4.68,
- 5.62,
- 6.62,
- 7.08,
- 7.52,
- 8.19,
- 8.55,
- 8.38,
- 7.27,
- 5.26,
- 4.17,
- 0.29,
- -1.44,
- -0.95,
- -1.36,
- -1.41,
- -1.47,
- -1.83,
- -2.01,
- -2.37,
- -0.95,
- -1.41,
- -2.36,
- -3.16,
- -3.66,
- -3.59,
- -2.86,
- -2.44,
- -1.53,
- -3.78,
- -3.28,
- -2.96,
- -1.84,
- -0.6,
- 0.3,
- 1.17,
- 0.71,
- 1.34,
- 1.51,
- -0.27,
- -0.56,
- -1.36,
- -3.81,
- -3.15,
- -1.48,
- -1.08,
- -0.82,
- -1.47,
- -1.58,
- -1.32,
- -0.93,
- -0.71,
- -0.41,
- -0.3,
- 0.1,
- 0.43,
- 0.54,
- 0.47,
- 0.85,
- 1.34,
- 1.9,
- 2.2,
- 2.53,
- 2.87,
- 3.23,
- 3.23,
- 4.38,
- 4.85,
- 3.84,
- 3.81,
- 4.18,
- 4.92,
- 4.24,
- 4.45,
- 5.04,
- 5.81,
- 5.57,
- 5.08,
- 4.92,
- 4.78,
- 4.71,
- 4.86,
- 5.32,
- 5.53,
- 5.96,
- 5.66,
- 5.74,
- 5.72,
- 5.8,
- 5.56,
- 5.93,
- 5.62,
- 5.83,
- 6.09,
- 5.88,
- 5.42,
- 6.2,
- 6.3,
- 6.51,
- 5.81,
- 4.86,
- 3.66,
- 4.46,
- 4.07,
- 3.64,
- 3.94,
- 4.2,
- 4.43,
- 4.23,
- 4.5,
- 4.32,
- 4.27,
- 4.14,
- 4.02,
- 3.81,
- 3.86,
- 3.9,
- 3.6,
- 2.03,
- 1.52,
- 2.43,
- 2.99,
- 3.6,
- 3.46,
- 2.43,
- 0.11,
- 0.06,
- 1.84,
- 2.92,
- 2.46,
- 2.12,
- 2.45,
- 2.44,
- 2.07,
- 2.37,
- 1.78,
- 0.36,
- 0.68,
- -0.53,
- -0.7,
- -0.42,
- -1.34,
- -1.75,
- -1.81,
- -2.69,
- -2.75,
- -2.47,
- -2.6,
- -2.06,
- -1.08,
- -0.88,
- 0.11,
- 0.88,
- 1.27,
- 0.64,
- 1.56,
- 1.02,
- 0.83,
- 1.24,
- 0.86,
- 0.68,
- 1.49,
- 0.84,
- 1.44,
- 0.02,
- -0.15,
- -0.92,
- -1.6,
- -1.35,
- -1.33,
- -1.09,
- 0.51,
- -1.94,
- -3.8,
- -1.66,
- 0.18,
- -0.85,
- -0.58,
- -0.37,
- -0.4,
- 0.34,
- 0.29,
- 0.29,
- -0.36,
- 1.2,
- 0.65,
- -0.84,
- -0.48,
- -0.14,
- -0.78,
- -0.99,
- -0.18,
- 0.05,
- 0.28,
- 0.65,
- 0.62,
- 0.35,
- -0.17,
- -0.18,
- 0.18,
- 0.17,
- 0.15,
- 0.36,
- 1.04,
- 0.99,
- 0.18,
- -0.59,
- -0.58,
- -0.44,
- -0.65,
- -2.86,
- -4.36,
- -2.52,
- -1.4,
- -0.75,
- -1.54,
- -2.99,
- -2.59,
- -2.78,
- -0.89,
- -4.6,
- -3.72,
- -1.5,
- -1.78,
- -0.07,
- 0.18,
- -1.16,
- 1.26,
- -1.41,
- -1.79,
- -1.53,
- 2.49,
- 2.34,
- 0.41,
- 1.8,
- 1.97,
- 0.53,
- 1.24,
- 2.7,
- 4.49,
- 5.65,
- 6.49,
- 5.1,
- 5.92,
- 9.06,
- 7.8,
- 6.08,
- 5.54,
- 0.63,
- 3.67,
- 4.38,
- 3.89,
- 2.61,
- 4.4,
- 3.82,
- 0.94,
- -2.24,
- -2.61,
- -2.12,
- -2.56,
- -3.01,
- -3.07,
- -3.3,
- -3.28,
- -3.24,
- -2.4,
- -1.6,
- -1.71,
- -1.74,
- -1.62,
- -2.0,
- -2.36,
- -2.72,
- -2.65,
- -2.3,
- -2.11,
- -1.91,
- -3.0,
- -3.13,
- -2.7,
- -2.38,
- -1.98,
- -1.59,
- -1.33,
- -0.88,
- -0.6,
- -0.65,
- -0.34,
- 0.07,
- 0.53,
- 0.9,
- 1.39,
- 1.52,
- 1.27,
- 0.73,
- -0.63,
- 0.94,
- 1.61,
- 1.77,
- 1.51,
- 3.8,
- 7.54,
- 7.41,
- 6.49,
- 3.28,
- -0.05,
- 0.59,
- 1.06,
- 2.17,
- 1.84,
- 1.26,
- 0.98,
- 0.31,
- -0.06,
- 1.43,
- 2.42,
- 1.76,
- 1.66,
- 1.12,
- 1.29,
- -0.1,
- -0.81,
- 0.69,
- 0.3,
- -13.28,
- -3.63,
- -15.79,
- -14.6,
- -5.37,
- -7.41,
- -15.51,
- -13.82,
- -10.81,
- -8.24,
- -7.05,
- -7.52,
- -9.45,
- -12.79,
- -16.16,
- -17.87,
- -17.05,
- -15.18,
- -14.09,
- -11.97,
- -10.25,
- -8.55,
- -6.32,
- -3.75,
- -0.7,
- 2.0,
- 3.98,
- 5.26,
- 6.39,
- 6.95,
- 6.73,
- 6.46,
- 6.64,
- 6.47,
- 6.78,
- 7.68,
- 7.08,
- 6.11,
- 5.38,
- 5.27,
- 5.04,
- 4.74,
- 4.79,
- 4.85,
- 4.44,
- 3.66,
- 1.63,
- -0.19,
- -2.02,
- -2.32,
- -2.88,
- -4.52,
- -3.72,
- -2.17,
- -2.51,
- -2.49,
- -0.91,
- -0.78,
- -1.79,
- -3.61,
- -3.9,
- -4.3,
- -3.11,
- -2.76,
- -2.47,
- -1.93,
- -2.09,
- -2.4,
- -3.0,
- -2.07,
- -0.89,
- 0.22,
- 0.7,
- 1.36,
- 2.46,
- 4.16,
- 2.9,
- 0.81,
- 0.02,
- -1.26,
- -1.67,
- -1.73,
- -1.5,
- -0.39,
- -0.4,
- -0.62,
- -0.63,
- -0.54,
- -0.49,
- -0.51,
- -0.38,
- -0.46,
- -0.6,
- -0.34,
- 0.0,
- 0.53,
- 1.06,
- 1.68,
- 2.13,
- 2.58,
- 3.05,
- 3.25,
- 4.03,
- 4.88,
- 3.62,
- 3.32,
- 5.49,
- 4.17,
- 3.52,
- 3.88,
- 4.38,
- 4.57,
- 5.24,
- 5.85,
- 6.09,
- 6.0,
- 5.94,
- 5.51,
- 5.7,
- 5.88,
- 6.16,
- 6.35,
- 6.54,
- 6.75,
- 6.75,
- 6.71,
- 6.53,
- 6.94,
- 6.86,
- 6.94,
- 7.25,
- 7.36,
- 7.19,
- 7.32,
- 6.91,
- 6.2,
- 5.46,
- 4.3,
- 3.67,
- 3.89,
- 4.5,
- 4.2,
- 3.91,
- 3.58,
- 3.67,
- 3.98,
- 4.35,
- 4.34,
- 4.25,
- 4.52,
- 4.52,
- 4.38,
- 4.03,
- 3.52,
- 3.08,
- 1.38,
- 1.85,
- 2.36,
- 2.63,
- 2.4,
- 2.24,
- 3.32,
- 1.88,
- 2.3,
- 1.49,
- 1.87,
- 1.89,
- 1.46,
- 2.26,
- 2.41,
- 1.25,
- 0.2,
- 0.26,
- 0.85,
- 0.53,
- 0.91,
- 0.78,
- -0.68,
- -1.46,
- -1.81,
- -1.8,
- -2.32,
- -2.52,
- -2.12,
- -2.32,
- -1.62,
- -0.38,
- 0.32,
- 1.17,
- 1.52,
- 0.6,
- 1.76,
- 0.82,
- -0.32,
- 0.6,
- 0.58,
- 1.34,
- 1.23,
- 0.24,
- -0.97,
- -0.95,
- -1.42,
- -2.32,
- -2.13,
- -3.54,
- -3.96,
- -3.79,
- -5.71,
- -4.14,
- -2.12,
- -1.39,
- 0.47,
- 1.55,
- 3.32,
- 1.34,
- 1.13,
- 0.57,
- 1.0,
- 0.16,
- 0.42,
- 1.37,
- 2.74,
- 2.76,
- 2.07,
- 1.66,
- 0.7,
- -0.96,
- 0.07,
- 0.98,
- 1.08,
- 1.35,
- 1.22,
- 1.34,
- 0.54,
- 0.78,
- 0.43,
- 0.46,
- 0.32,
- 0.47,
- 0.82,
- 0.43,
- 0.05,
- 1.9,
- 2.37,
- 1.25,
- -0.19,
- -1.23,
- -1.93,
- -3.07,
- -5.92,
- -6.94,
- -6.37,
- -2.26,
- -1.9,
- -2.43,
- -3.21,
- -2.1,
- -5.81,
- -3.7,
- -5.24,
- -8.71,
- -10.3,
- -10.85,
- -9.57,
- -8.93,
- -5.72,
- -2.61,
- -1.48,
- 0.92,
- 0.9,
- -0.41,
- 0.56,
- 2.48,
- 2.23,
- 2.32,
- 2.3,
- 4.58,
- 7.97,
- 5.69,
- 6.11,
- 6.09,
- 5.82,
- 5.99,
- 3.75,
- 3.73,
- 2.9,
- 3.26,
- 2.85,
- 3.7,
- 4.08,
- 4.64,
- 3.13,
- 0.42,
- -0.64,
- -1.21,
- -2.01,
- -2.57,
- -2.95,
- -2.23,
- -2.58,
- -2.74,
- -3.17,
- -1.84,
- -1.02,
- -0.48,
- -1.97,
- -2.29,
- -2.97,
- -2.63,
- -2.25,
- -2.36,
- -2.21,
- -1.9,
- -3.16,
- -3.0,
- -2.94,
- -2.46,
- -1.89,
- -1.13,
- -0.45,
- -0.64,
- -1.21,
- -1.52,
- -1.32,
- -0.27,
- 0.91,
- 1.6,
- 1.87,
- 2.2,
- 2.6,
- 2.55,
- 2.51,
- 1.78,
- 1.84,
- 1.97,
- 2.77,
- 3.48,
- 3.03,
- 3.29,
- 3.14,
- 3.16,
- 2.59,
- 1.53,
- 3.6,
- 4.06,
- 4.32,
- 2.75,
- 1.81,
- 0.1,
- 0.24,
- 2.01,
- 2.17,
- 0.14,
- -2.13,
- -2.76,
- -2.33,
- -0.31,
- -0.96,
- -2.89,
- -4.63,
- -11.9,
- -17.36,
- -12.87,
- -8.72,
- 1.42,
- 8.54,
- 7.83,
- 5.97,
- 7.25,
- 8.53,
- 9.17,
- 9.43,
- 9.37,
- 9.06,
- 9.21,
- 10.26,
- 11.43,
- 7.23,
- -8.98,
- -14.51,
- -12.3,
- -11.32,
- -9.5,
- -7.02,
- -4.23,
- -0.89,
- 2.52,
- 5.21,
- 6.73,
- 7.11,
- 7.07,
- 6.81,
- 6.42,
- 6.66,
- 6.65,
- 6.91,
- 7.69,
- 8.01,
- 7.41,
- 5.89,
- 5.35,
- 4.86,
- 4.33,
- 4.27,
- 4.51,
- 3.3,
- 1.31,
- -1.72,
- -2.54,
- -3.47,
- -7.03,
- -8.16,
- -7.17,
- -6.15,
- -4.57,
- -2.1,
- -2.82,
- -5.04,
- -3.94,
- -2.6,
- -6.46,
- -6.56,
- -3.54,
- -3.57,
- -2.97,
- -3.66,
- -3.32,
- -3.0,
- -3.2,
- -2.76,
- -2.16,
- -0.77,
- 0.51,
- 1.17,
- 1.52,
- 1.76,
- 2.42,
- 1.95,
- 1.12,
- 0.51,
- -1.26,
- -2.48,
- -2.23,
- -2.24,
- -2.3,
- -1.67,
- -1.41,
- -1.53,
- -1.49,
- -1.69,
- -1.73,
- -1.35,
- -1.8,
- -1.54,
- -1.46,
- -1.51,
- -1.34,
- -0.79,
- -0.27,
- 0.62,
- 1.63,
- 1.99,
- 2.41,
- 2.71,
- 2.89,
- 3.3,
- 4.93,
- 4.13,
- 3.71,
- 3.7,
- 4.11,
- 4.42,
- 4.64,
- 5.04,
- 5.42,
- 5.61,
- 5.41,
- 5.89,
- 5.97,
- 5.92,
- 6.0,
- 6.0,
- 6.12,
- 6.4,
- 6.22,
- 6.27,
- 6.2,
- 6.23,
- 5.86,
- 6.23,
- 6.7,
- 6.71,
- 6.72,
- 6.53,
- 6.38,
- 6.08,
- 5.0,
- 4.85,
- 3.89,
- 3.68,
- 4.35,
- 4.37,
- 3.6,
- 3.58,
- 3.52,
- 3.59,
- 3.29,
- 3.64,
- 2.99,
- 3.14,
- 3.16,
- 3.7,
- 4.37,
- 4.76,
- 3.75,
- 3.2,
- 2.45,
- 2.23,
- 2.96,
- 2.49,
- 1.18,
- 2.04,
- 2.41,
- 0.99,
- -0.27,
- -0.7,
- 0.4,
- 1.86,
- 2.55,
- 1.79,
- -0.56,
- 0.69,
- 1.49,
- 1.35,
- 0.79,
- 0.07,
- 0.21,
- -0.78,
- -0.7,
- -1.47,
- -2.23,
- -2.1,
- -1.92,
- -2.29,
- -1.66,
- -0.71,
- -0.03,
- 0.76,
- 0.97,
- 1.79,
- 3.68,
- 5.2,
- 6.06,
- 5.17,
- 4.61,
- 3.81,
- 2.52,
- 1.24,
- 1.75,
- -0.49,
- -0.8,
- -1.62,
- -4.24,
- -4.58,
- -4.56,
- -4.94,
- -4.6,
- -1.09,
- -2.15,
- -1.34,
- -0.17,
- 0.19,
- 0.18,
- 2.24,
- 2.97,
- 2.67,
- 2.52,
- 2.54,
- 2.17,
- 1.15,
- 0.13,
- 0.26,
- 1.09,
- 2.01,
- 3.0,
- 2.76,
- 2.67,
- 1.59,
- 1.79,
- 2.39,
- 2.28,
- 1.87,
- 1.78,
- 1.49,
- 2.21,
- 1.28,
- 1.13,
- 1.24,
- 1.33,
- 2.1,
- 1.67,
- -1.36,
- -1.95,
- -1.86,
- -0.43,
- -1.26,
- -3.38,
- -1.98,
- -2.16,
- -2.93,
- -5.57,
- -5.86,
- -4.49,
- -5.87,
- -13.9,
- -15.67,
- -15.41,
- -13.96,
- -13.2,
- -12.19,
- -10.62,
- -9.83,
- -9.88,
- -9.31,
- -8.97,
- -8.7,
- -7.97,
- -7.35,
- -6.56,
- -1.97,
- -2.52,
- -1.23,
- -1.76,
- 1.48,
- 0.26,
- 1.46,
- 1.96,
- 2.64,
- 2.76,
- 1.94,
- 1.25,
- 4.28,
- 5.08,
- 5.23,
- 3.49,
- 2.3,
- 2.7,
- 2.09,
- 2.68,
- 1.46,
- 1.48,
- 1.77,
- 1.26,
- 1.4,
- 0.19,
- 0.06,
- 0.24,
- -0.17,
- -1.08,
- -1.07,
- -1.38,
- -1.85,
- -2.44,
- -1.6,
- -0.74,
- -1.16,
- -1.47,
- -2.07,
- -2.79,
- -2.74,
- -2.89,
- -2.74,
- -2.27,
- -2.87,
- -2.96,
- -2.81,
- -2.2,
- -1.15,
- -0.09,
- -0.16,
- -0.58,
- -1.67,
- -1.52,
- -0.62,
- -0.72,
- -1.19,
- 0.51,
- 1.48,
- 2.17,
- 2.39,
- 2.36,
- 2.6,
- 2.83,
- 3.46,
- 3.11,
- 3.1,
- 3.05,
- 2.82,
- 3.59,
- 3.62,
- 3.74,
- 2.84,
- 1.81,
- 1.78,
- 3.7,
- 4.55,
- 3.69,
- 3.28,
- 2.43,
- 0.44,
- -1.57,
- -5.11,
- -9.02,
- -11.13,
- -11.29,
- -10.79,
- -8.69,
- -4.73,
- -2.27,
- 0.08,
- 1.32,
- 2.08,
- 3.87,
- 3.48,
- 4.05,
- 4.64,
- 5.07,
- 6.21,
- 7.56,
- 8.54,
- 9.12,
- 9.53,
- 9.86,
- 10.02,
- 10.23,
- 10.57,
- 11.19,
- 11.2,
- 11.32,
- 11.09,
- -4.43,
- -9.77,
- -9.2,
- -8.34,
- -5.99,
- -3.46,
- -0.4,
- 2.35,
- 4.67,
- 6.56,
- 8.16,
- 8.89,
- 8.46,
- 7.54,
- 7.08,
- 7.25,
- 7.0,
- 6.89,
- 7.17,
- 7.23,
- 6.03,
- 5.49,
- 5.72,
- 5.51,
- 4.48,
- 2.21,
- 0.45,
- 0.43,
- -0.84,
- -1.01,
- -5.12,
- -6.68,
- -6.08,
- -6.31,
- -7.18,
- -6.97,
- -6.2,
- -3.86,
- -3.11,
- -3.25,
- -4.93,
- -4.53,
- -4.05,
- -3.16,
- -4.96,
- -5.3,
- -3.75,
- -3.22,
- -2.96,
- -2.22,
- -4.02,
- -2.7,
- -1.01,
- -0.39,
- 0.14,
- 1.33,
- 1.47,
- 1.71,
- 1.58,
- 1.55,
- -0.54,
- -1.38,
- -2.18,
- -2.23,
- -2.77,
- -2.33,
- -2.75,
- -3.01,
- -2.73,
- -2.9,
- -2.44,
- -2.52,
- -3.2,
- -2.77,
- -2.64,
- -2.5,
- -3.44,
- -3.53,
- -2.99,
- -3.11,
- -2.53,
- -1.68,
- -0.58,
- 0.68,
- 1.94,
- 2.92,
- 4.06,
- 4.76,
- 4.79,
- 4.64,
- 4.47,
- 4.57,
- 4.73,
- 4.8,
- 4.93,
- 5.19,
- 5.51,
- 5.78,
- 5.74,
- 6.0,
- 5.92,
- 5.69,
- 5.88,
- 5.63,
- 5.62,
- 5.68,
- 5.69,
- 5.62,
- 5.55,
- 5.52,
- 5.29,
- 5.47,
- 5.55,
- 5.5,
- 5.31,
- 4.88,
- 4.52,
- 4.2,
- 4.06,
- 3.95,
- 3.97,
- 4.01,
- 4.16,
- 4.64,
- 3.76,
- 3.81,
- 4.25,
- 4.74,
- 4.94,
- 5.09,
- 5.36,
- 5.17,
- 4.85,
- 4.91,
- 4.96,
- 3.4,
- 2.65,
- 3.94,
- 2.55,
- 2.42,
- 1.89,
- 3.03,
- 2.4,
- 2.05,
- 2.15,
- -0.98,
- 0.61,
- 1.43,
- 1.83,
- -0.22,
- 0.05,
- -1.23,
- -0.61,
- 1.24,
- 0.82,
- -0.03,
- -0.19,
- 0.71,
- 1.61,
- 0.59,
- -0.47,
- -1.69,
- -2.18,
- -1.79,
- -1.21,
- -0.51,
- 0.41,
- 0.53,
- 0.39,
- 2.27,
- 1.68,
- 1.79,
- 2.01,
- 1.94,
- 1.72,
- 1.42,
- 0.86,
- 0.06,
- -0.84,
- -2.45,
- -3.64,
- -4.2,
- -4.99,
- -6.44,
- -5.9,
- -3.01,
- -1.05,
- -2.06,
- -1.7,
- -1.29,
- -1.67,
- -0.71,
- 0.17,
- 0.95,
- 1.78,
- 2.73,
- 3.26,
- 3.41,
- 3.58,
- 3.55,
- 3.09,
- 2.34,
- 1.89,
- 2.26,
- 1.65,
- 1.72,
- 2.63,
- 3.2,
- 2.75,
- 2.87,
- 3.64,
- 3.24,
- 2.49,
- 2.32,
- 3.26,
- 3.37,
- 2.28,
- 1.95,
- 1.13,
- 1.1,
- 0.9,
- -1.93,
- -3.92,
- -3.29,
- -3.88,
- -4.77,
- -5.19,
- -5.63,
- -5.91,
- -5.0,
- -2.51,
- -2.78,
- -6.85,
- -9.65,
- -6.76,
- -10.47,
- -13.18,
- -14.25,
- -14.45,
- -14.16,
- -13.5,
- -12.74,
- -12.0,
- -11.3,
- -10.59,
- -9.71,
- -8.66,
- -7.79,
- -6.41,
- -6.1,
- -6.18,
- -1.38,
- -3.81,
- -2.81,
- -0.67,
- 1.77,
- 0.57,
- 1.12,
- 1.17,
- 0.68,
- 1.51,
- 0.74,
- 1.72,
- 2.09,
- -0.21,
- 0.19,
- 0.91,
- 0.98,
- 1.8,
- 2.19,
- 1.9,
- 2.59,
- 0.51,
- 1.33,
- 1.03,
- 1.7,
- 0.08,
- -0.02,
- -0.03,
- -0.14,
- -0.82,
- -1.41,
- -2.12,
- -1.11,
- -0.58,
- -0.83,
- -1.84,
- -1.42,
- -2.1,
- -2.9,
- -2.68,
- -2.37,
- -2.13,
- -2.38,
- -2.19,
- -2.45,
- -1.56,
- -0.2,
- 0.31,
- 0.93,
- 0.81,
- -0.18,
- -0.98,
- -1.39,
- -0.87,
- -0.21,
- 0.05,
- -0.01,
- 0.4,
- 0.62,
- 0.72,
- 1.1,
- 2.28,
- 2.82,
- 3.32,
- 2.66,
- 3.13,
- 2.78,
- 2.91,
- 2.89,
- 2.64,
- 2.46,
- 2.32,
- 2.41,
- 1.08,
- 3.5,
- 4.36,
- 4.38,
- 3.68,
- 2.76,
- -1.55,
- -4.18,
- -6.02,
- -6.1,
- -6.14,
- -5.15,
- -4.68,
- -4.29,
- -2.79,
- -1.27,
- -0.52,
- -0.01,
- 0.68,
- 1.59,
- 2.44,
- 3.09,
- 4.0,
- 4.64,
- 5.41,
- 6.35,
- 7.13,
- 7.84,
- 8.51,
- 9.2,
- 9.64,
- 9.75,
- 10.06,
- 10.39,
- 10.81,
- 11.2,
- 11.54,
- 3.47,
- -4.98,
- -6.09,
- -5.49,
- -4.12,
- -2.14,
- 0.54,
- 2.97,
- 4.6,
- 5.94,
- 7.19,
- 8.55,
- 9.54,
- 9.71,
- 8.96,
- 8.68,
- 8.44,
- 7.05,
- 6.64,
- 4.4,
- 4.4,
- 2.61,
- 3.39,
- 6.6,
- 5.29,
- 2.29,
- 4.53,
- 2.27,
- 3.1,
- 2.23,
- -2.79,
- -1.3,
- -2.55,
- -1.87,
- -3.43,
- -4.14,
- -1.66,
- -2.13,
- -5.49,
- -3.65,
- -4.28,
- -4.23,
- -3.21,
- -5.41,
- -5.64,
- -4.57,
- -3.93,
- -2.38,
- -1.7,
- -2.05,
- -2.41,
- -2.36,
- -3.08,
- -2.28,
- -0.71,
- 0.53,
- 1.0,
- 0.63,
- 1.3,
- -0.18,
- 0.66,
- -0.79,
- -2.33,
- -3.26,
- -3.85,
- -3.74,
- -3.44,
- -3.9,
- -4.24,
- -4.16,
- -4.89,
- -3.64,
- -3.1,
- -2.98,
- -3.14,
- -3.2,
- -3.11,
- -3.43,
- -3.27,
- -2.79,
- -2.54,
- -1.85,
- -1.18,
- -0.21,
- 1.53,
- 2.61,
- 3.63,
- 4.19,
- 4.44,
- 4.6,
- 4.75,
- 5.01,
- 4.97,
- 5.2,
- 5.3,
- 5.18,
- 5.17,
- 5.15,
- 5.09,
- 5.12,
- 5.08,
- 5.14,
- 5.14,
- 5.13,
- 5.25,
- 5.24,
- 5.43,
- 5.23,
- 4.88,
- 4.81,
- 4.39,
- 4.78,
- 4.72,
- 4.63,
- 4.64,
- 4.63,
- 4.6,
- 4.62,
- 4.49,
- 4.36,
- 4.31,
- 4.19,
- 4.49,
- 4.89,
- 4.84,
- 4.53,
- 4.33,
- 4.62,
- 4.92,
- 4.85,
- 4.8,
- 4.67,
- 4.68,
- 4.66,
- 2.36,
- 2.97,
- 3.43,
- 1.67,
- 1.46,
- 2.24,
- 1.02,
- 1.7,
- 1.15,
- 1.65,
- 0.27,
- 1.71,
- -1.3,
- -1.82,
- -1.47,
- 0.18,
- -2.3,
- -1.76,
- -1.39,
- -1.16,
- 0.16,
- 1.53,
- -0.24,
- 0.83,
- -0.16,
- -2.04,
- -1.82,
- -1.73,
- -0.69,
- -0.79,
- -0.08,
- -0.08,
- -0.09,
- -0.39,
- -0.45,
- -1.04,
- -1.27,
- -1.33,
- -1.07,
- -1.15,
- -1.18,
- -1.7,
- -2.33,
- -2.68,
- -3.64,
- -4.56,
- -4.86,
- -5.13,
- -3.53,
- -2.43,
- -2.22,
- -1.45,
- -4.36,
- -1.33,
- -1.88,
- -2.29,
- -2.11,
- -1.7,
- -1.0,
- -0.08,
- 1.12,
- 2.25,
- 2.97,
- 3.31,
- 3.35,
- 3.32,
- 3.01,
- 2.49,
- 2.22,
- 2.48,
- 1.06,
- 0.87,
- 2.22,
- 2.74,
- 3.32,
- 3.81,
- 3.59,
- 2.36,
- 2.3,
- 3.06,
- 2.94,
- 2.49,
- 1.78,
- 1.15,
- 1.27,
- 0.92,
- -1.47,
- -3.64,
- -2.97,
- -3.93,
- -4.92,
- -5.28,
- -5.08,
- -3.8,
- -1.98,
- -2.44,
- -7.72,
- -6.86,
- -5.51,
- -10.04,
- -12.2,
- -14.02,
- -15.32,
- -15.99,
- -15.93,
- -15.46,
- -14.83,
- -13.95,
- -12.96,
- -11.97,
- -10.98,
- -9.83,
- -8.66,
- -7.44,
- -6.44,
- -5.35,
- -5.58,
- -1.58,
- -2.89,
- -3.28,
- 0.01,
- 0.83,
- -0.08,
- 0.73,
- 0.67,
- 1.21,
- 2.19,
- 1.42,
- 1.52,
- 2.15,
- 2.55,
- 2.06,
- 2.15,
- 2.98,
- 3.98,
- 2.06,
- 1.64,
- 0.87,
- 0.11,
- 0.35,
- 0.69,
- -0.69,
- 0.4,
- 0.01,
- -0.13,
- -0.86,
- -0.14,
- -0.19,
- 0.19,
- 0.27,
- 0.42,
- 0.88,
- -0.31,
- -2.13,
- -2.41,
- -2.64,
- -2.61,
- -2.89,
- -2.07,
- -1.93,
- -1.83,
- -0.93,
- 0.21,
- 0.61,
- 1.01,
- 1.13,
- 0.68,
- -0.56,
- -1.96,
- -1.89,
- -1.66,
- -1.6,
- -1.69,
- -1.34,
- -0.74,
- 0.43,
- 0.89,
- 1.45,
- 2.32,
- 2.96,
- 2.77,
- 2.65,
- 2.5,
- 2.15,
- 2.07,
- 2.29,
- 2.48,
- 2.82,
- 3.84,
- 1.78,
- 1.83,
- 5.03,
- 4.73,
- 4.05,
- 3.35,
- -1.47,
- -3.31,
- -4.94,
- -5.4,
- -6.01,
- -6.52,
- -5.73,
- -4.69,
- -4.02,
- -3.05,
- -2.04,
- -1.03,
- 0.1,
- 1.29,
- 2.19,
- 3.37,
- 4.32,
- 4.54,
- 4.19,
- 4.07,
- 5.17,
- 6.17,
- 7.16,
- 7.85,
- 8.44,
- 9.04,
- 9.39,
- 9.7,
- 10.06,
- 10.46,
- 10.68,
- 9.6,
- 3.57,
- -1.86,
- -3.14,
- -3.23,
- -2.47,
- -0.81,
- 0.82,
- 2.99,
- 5.05,
- 6.11,
- 6.57,
- 7.34,
- 8.29,
- 8.76,
- 8.82,
- 8.6,
- 7.64,
- 7.18,
- 5.52,
- 2.81,
- 0.93,
- 1.45,
- 3.02,
- 5.77,
- 6.4,
- 6.17,
- 6.32,
- 5.55,
- 7.77,
- 9.59,
- 7.87,
- 6.51,
- 4.66,
- 0.94,
- -1.17,
- -0.71,
- -1.7,
- -3.16,
- -2.92,
- -2.52,
- -5.61,
- -6.44,
- -6.24,
- -6.07,
- -5.13,
- -4.47,
- -2.43,
- -2.18,
- -1.85,
- -1.9,
- -2.96,
- -3.18,
- -3.25,
- -2.34,
- -0.95,
- -0.5,
- -0.11,
- 0.17,
- -0.81,
- 0.22,
- 0.28,
- 0.09,
- -1.51,
- -3.09,
- -3.62,
- -3.6,
- -4.33,
- -4.76,
- -4.29,
- -4.34,
- -3.99,
- -3.07,
- -3.03,
- -2.54,
- -2.72,
- -3.22,
- -3.28,
- -4.16,
- -4.06,
- -3.72,
- -2.76,
- -1.84,
- -1.28,
- -1.03,
- 0.67,
- 1.96,
- 2.52,
- 3.31,
- 4.77,
- 4.65,
- 5.33,
- 5.95,
- 6.14,
- 6.23,
- 5.57,
- 4.86,
- 4.96,
- 5.5,
- 5.67,
- 4.81,
- 4.83,
- 4.94,
- 5.01,
- 5.38,
- 5.85,
- 4.85,
- 4.92,
- 5.07,
- 5.41,
- 4.32,
- 4.48,
- 5.87,
- 5.86,
- 4.84,
- 5.01,
- 5.03,
- 4.79,
- 5.07,
- 5.27,
- 5.21,
- 5.08,
- 5.05,
- 5.14,
- 5.52,
- 5.57,
- 5.42,
- 5.9,
- 6.51,
- 5.66,
- 4.81,
- 5.38,
- 4.68,
- 4.58,
- 1.26,
- 2.37,
- 1.56,
- 2.93,
- 1.94,
- 2.03,
- 2.41,
- 0.14,
- 0.0,
- 1.27,
- 1.47,
- -0.86,
- -0.91,
- -1.61,
- -2.59,
- -3.86,
- -2.51,
- -1.86,
- -2.61,
- -2.01,
- -0.74,
- -0.43,
- 1.4,
- -1.08,
- -0.92,
- -0.25,
- -0.31,
- 0.42,
- -1.05,
- -0.66,
- -1.38,
- -1.56,
- -2.2,
- -2.34,
- -2.87,
- -3.08,
- -3.3,
- -3.15,
- -3.35,
- -3.71,
- -4.14,
- -4.53,
- -4.78,
- -5.0,
- -5.0,
- -4.96,
- -4.89,
- -4.06,
- -1.39,
- 0.7,
- -2.63,
- -2.09,
- -0.75,
- -2.24,
- -1.22,
- -2.49,
- -2.63,
- -3.37,
- -3.46,
- -1.43,
- -0.04,
- 1.35,
- 2.26,
- 2.63,
- 2.53,
- 2.31,
- 2.41,
- 2.38,
- 2.16,
- 2.43,
- 1.33,
- 0.65,
- 1.34,
- 2.06,
- 3.03,
- 3.55,
- 3.07,
- 2.65,
- 2.98,
- 3.63,
- 3.23,
- 3.19,
- 2.15,
- 2.16,
- 1.62,
- 1.5,
- 0.01,
- -1.78,
- -1.48,
- -1.46,
- -0.94,
- -0.22,
- -0.81,
- -2.69,
- -7.27,
- -9.03,
- -11.16,
- -12.96,
- -14.57,
- -15.69,
- -16.32,
- -16.79,
- -17.04,
- -17.0,
- -16.63,
- -16.08,
- -15.72,
- -15.22,
- -14.23,
- -13.54,
- -12.91,
- -11.56,
- -10.31,
- -8.89,
- -7.47,
- -6.1,
- -4.4,
- -4.02,
- -2.99,
- -1.21,
- -1.28,
- -0.88,
- 1.19,
- -0.87,
- 1.08,
- 1.57,
- 1.84,
- 2.16,
- 1.51,
- 1.73,
- 2.19,
- 3.12,
- 3.11,
- 3.73,
- 3.51,
- 2.55,
- 1.47,
- 1.67,
- -0.09,
- -0.35,
- -1.0,
- 0.47,
- 0.02,
- 0.83,
- -0.05,
- -0.58,
- -0.3,
- -0.42,
- -0.28,
- 0.08,
- 1.06,
- 1.47,
- 2.13,
- 1.91,
- -1.6,
- -2.2,
- -2.45,
- -2.1,
- -1.88,
- -1.89,
- -2.03,
- -1.28,
- -1.0,
- -0.71,
- 0.15,
- 0.7,
- 0.74,
- 0.18,
- -2.26,
- -3.06,
- -2.92,
- -2.8,
- -2.27,
- -2.19,
- -1.9,
- -0.99,
- -0.32,
- 0.98,
- 2.03,
- 2.57,
- 4.16,
- 3.11,
- 3.45,
- 3.09,
- 2.6,
- 2.28,
- 2.47,
- 3.05,
- 3.59,
- 4.0,
- 2.92,
- 3.65,
- 3.53,
- 4.34,
- 3.71,
- 0.38,
- -1.64,
- -4.56,
- -5.48,
- -6.54,
- -6.49,
- -6.44,
- -5.76,
- -4.34,
- -2.82,
- -1.34,
- 0.13,
- 1.35,
- 2.17,
- 3.04,
- 4.31,
- 4.88,
- 4.69,
- 4.14,
- 4.64,
- 5.27,
- 5.92,
- 6.36,
- 6.95,
- 7.13,
- 7.16,
- 7.64,
- 8.23,
- 8.84,
- 9.44,
- 9.74,
- 8.97,
- 6.55,
- 3.19,
- 0.28,
- 0.5,
- -1.15,
- -1.75,
- -0.19,
- 1.44,
- 3.03,
- 4.73,
- 6.41,
- 7.72,
- 8.44,
- 9.02,
- 9.26,
- 9.28,
- 7.96,
- 7.11,
- 6.68,
- 3.45,
- 1.98,
- 2.35,
- 2.57,
- 4.61,
- 5.13,
- 5.78,
- 6.49,
- 7.46,
- 7.66,
- 8.22,
- 8.48,
- 7.29,
- 6.76,
- 3.32,
- -0.12,
- 1.34,
- 0.3,
- -1.12,
- -3.26,
- -4.21,
- -3.23,
- -5.43,
- -4.67,
- -5.01,
- -5.38,
- -4.4,
- -3.3,
- -1.87,
- -1.94,
- -2.06,
- -2.37,
- -2.72,
- -2.97,
- -2.86,
- -2.17,
- -1.97,
- -1.34,
- -1.8,
- -2.25,
- -2.1,
- -1.25,
- -2.26,
- -2.27,
- -2.49,
- -2.73,
- -2.65,
- -2.53,
- -2.49,
- -3.06,
- -3.3,
- -4.5,
- -3.75,
- -2.84,
- -2.91,
- -4.13,
- -2.67,
- -2.5,
- -4.01,
- -4.7,
- -5.23,
- -4.32,
- -3.75,
- -3.23,
- -2.29,
- -1.11,
- -0.61,
- 1.45,
- 2.04,
- 3.48,
- 4.1,
- 4.52,
- 5.83,
- 6.51,
- 6.79,
- 6.3,
- 5.03,
- 4.94,
- 5.71,
- 5.24,
- 4.73,
- 4.68,
- 4.8,
- 5.43,
- 6.36,
- 6.23,
- 4.88,
- 4.74,
- 6.24,
- 6.05,
- 4.7,
- 5.25,
- 6.77,
- 5.11,
- 5.16,
- 5.92,
- 4.94,
- 4.43,
- 4.47,
- 5.19,
- 5.55,
- 5.66,
- 5.76,
- 6.28,
- 6.33,
- 5.33,
- 5.2,
- 5.57,
- 5.02,
- 5.02,
- 4.78,
- 3.93,
- 3.91,
- 3.95,
- 1.85,
- 0.89,
- 1.88,
- 1.71,
- 2.48,
- 3.39,
- 2.78,
- 2.89,
- 2.37,
- 1.07,
- 0.81,
- -0.35,
- -0.06,
- -0.57,
- -2.37,
- -2.23,
- -2.95,
- -4.77,
- -5.42,
- -4.42,
- -4.74,
- -4.56,
- -2.24,
- -0.03,
- -1.65,
- -1.56,
- -1.49,
- -2.04,
- -2.64,
- -1.57,
- -1.75,
- -1.91,
- -3.08,
- -3.33,
- -3.0,
- -3.79,
- -4.51,
- -4.87,
- -5.22,
- -5.63,
- -5.91,
- -6.1,
- -6.07,
- -5.86,
- -5.73,
- -5.39,
- -4.47,
- -3.29,
- -1.84,
- -1.81,
- -2.4,
- -2.26,
- -2.27,
- -2.07,
- -1.62,
- -3.32,
- -4.33,
- -3.78,
- -2.26,
- -2.96,
- -2.83,
- -1.99,
- -0.92,
- 0.05,
- 0.66,
- 1.24,
- 1.37,
- 1.65,
- 1.67,
- 2.2,
- 2.96,
- 2.36,
- 1.66,
- 1.34,
- 2.0,
- 2.65,
- 3.17,
- 3.4,
- 3.53,
- 3.57,
- 3.69,
- 3.42,
- 3.37,
- 3.32,
- 2.95,
- 2.4,
- 1.95,
- 0.59,
- 1.03,
- 2.94,
- -0.63,
- -4.17,
- -4.6,
- -6.79,
- -8.46,
- -10.14,
- -12.3,
- -14.54,
- -16.14,
- -16.42,
- -15.88,
- -15.0,
- -14.74,
- -14.49,
- -14.25,
- -14.56,
- -14.63,
- -14.43,
- -13.13,
- -12.18,
- -11.51,
- -11.27,
- -11.06,
- -10.0,
- -8.35,
- -6.59,
- -4.76,
- -3.27,
- -2.96,
- -1.43,
- -2.42,
- -1.57,
- 0.2,
- 1.21,
- 1.58,
- 1.98,
- 1.64,
- 2.17,
- 2.36,
- 1.55,
- 1.75,
- 2.92,
- 3.22,
- 3.12,
- 3.83,
- 3.13,
- 2.38,
- 1.54,
- -0.39,
- -0.46,
- -1.51,
- -1.14,
- -0.36,
- 0.31,
- -0.4,
- -0.74,
- -0.19,
- -0.51,
- -0.69,
- -0.59,
- -0.07,
- 0.81,
- 2.02,
- 2.63,
- 0.4,
- -1.18,
- -1.69,
- -1.68,
- -2.13,
- -1.89,
- -1.57,
- -1.02,
- -1.42,
- -1.55,
- -1.02,
- -0.11,
- 0.11,
- 0.42,
- 0.88,
- -0.85,
- -3.15,
- -3.23,
- -2.74,
- -1.77,
- -0.48,
- -0.3,
- 0.24,
- 0.99,
- 1.42,
- 2.9,
- 2.04,
- 2.99,
- 3.14,
- 2.98,
- 2.84,
- 3.27,
- 2.05,
- 2.47,
- 2.8,
- 3.72,
- 2.97,
- 2.46,
- 2.74,
- 5.09,
- 5.0,
- 1.69,
- 0.3,
- -0.45,
- -2.84,
- -5.3,
- -7.63,
- -6.81,
- -5.14,
- -2.76,
- -0.65,
- 0.59,
- 1.85,
- 2.87,
- 2.88,
- 3.39,
- 4.24,
- 4.78,
- 5.1,
- 4.78,
- 4.25,
- 4.37,
- 4.32,
- 4.77,
- 5.34,
- 5.76,
- 6.21,
- 6.86,
- 7.55,
- 8.1,
- 8.36,
- 8.51,
- 7.89,
- 6.07,
- 5.27,
- 3.64,
- 2.25,
- 3.78,
- 2.71,
- 0.09,
- 1.03,
- 3.02,
- 4.36,
- 5.41,
- 6.25,
- 6.79,
- 7.94,
- 8.7,
- 9.54,
- 8.92,
- 4.62,
- 3.58,
- 5.15,
- 4.84,
- 2.71,
- 1.72,
- 2.52,
- 4.93,
- 4.37,
- 6.35,
- 7.35,
- 7.86,
- 7.44,
- 7.39,
- 7.8,
- 6.26,
- 3.89,
- 0.16,
- 0.79,
- 0.13,
- -1.2,
- -1.92,
- -3.8,
- -3.27,
- -3.35,
- -3.29,
- -2.51,
- -2.09,
- -2.88,
- -2.4,
- -2.64,
- -2.38,
- -2.1,
- -2.67,
- -2.9,
- -3.26,
- -2.64,
- -2.25,
- -2.16,
- -2.03,
- -2.39,
- -3.55,
- -3.47,
- -3.38,
- -2.95,
- -3.19,
- -3.88,
- -4.28,
- -4.58,
- -4.43,
- -2.76,
- -3.25,
- -3.19,
- -3.81,
- -3.9,
- -4.14,
- -4.2,
- -4.2,
- -4.37,
- -4.68,
- -5.8,
- -6.36,
- -6.51,
- -5.36,
- -5.31,
- -4.67,
- -4.55,
- -3.51,
- -3.46,
- -1.97,
- -1.07,
- 0.32,
- 2.37,
- 3.68,
- 4.29,
- 4.84,
- 5.1,
- 5.49,
- 6.0,
- 5.94,
- 6.27,
- 5.82,
- 5.21,
- 5.1,
- 5.19,
- 5.55,
- 5.84,
- 5.98,
- 6.09,
- 5.98,
- 6.03,
- 5.28,
- 4.85,
- 5.12,
- 5.3,
- 3.97,
- 3.92,
- 4.71,
- 5.37,
- 3.98,
- 4.64,
- 4.6,
- 4.35,
- 5.13,
- 3.14,
- 1.62,
- 0.99,
- 2.85,
- 2.72,
- 3.81,
- 3.95,
- 3.93,
- 4.09,
- 4.07,
- 3.09,
- 3.16,
- 2.24,
- -2.43,
- 2.47,
- 5.04,
- 2.95,
- 3.97,
- 2.43,
- 1.76,
- 1.06,
- 1.49,
- -0.28,
- -0.43,
- -1.58,
- -2.69,
- -2.72,
- -3.03,
- -3.51,
- -4.32,
- -3.46,
- -3.03,
- -2.94,
- -2.16,
- -2.59,
- -5.07,
- -3.68,
- -3.96,
- -1.73,
- -2.28,
- -1.33,
- -1.6,
- -0.15,
- -0.45,
- -0.05,
- -2.24,
- -2.13,
- -3.14,
- -4.69,
- -5.55,
- -6.66,
- -7.13,
- -7.06,
- -7.05,
- -7.08,
- -6.91,
- -6.22,
- -4.63,
- -3.23,
- -2.49,
- -2.3,
- -4.31,
- -3.1,
- -3.58,
- -7.51,
- -9.84,
- -8.2,
- -7.26,
- -6.86,
- -6.21,
- -5.7,
- -5.51,
- -4.99,
- -4.54,
- -4.02,
- -3.24,
- -2.44,
- -1.29,
- -0.36,
- 0.99,
- 1.68,
- 2.06,
- 2.45,
- 3.04,
- 2.97,
- 2.95,
- 2.82,
- 3.21,
- 3.69,
- 3.61,
- 3.67,
- 3.38,
- 3.49,
- 3.62,
- 3.74,
- 3.72,
- 4.17,
- 3.5,
- 4.53,
- 4.82,
- 2.8,
- -0.21,
- -0.43,
- -1.99,
- -3.26,
- -4.49,
- -5.34,
- -6.8,
- -8.07,
- -10.61,
- -10.21,
- -6.85,
- -4.46,
- -3.52,
- -3.06,
- -4.12,
- -3.98,
- -5.4,
- -8.48,
- -11.13,
- -12.25,
- -11.79,
- -11.33,
- -10.23,
- -9.47,
- -8.6,
- -7.8,
- -6.76,
- -5.02,
- -3.1,
- -2.35,
- -1.32,
- 0.6,
- -2.54,
- -0.43,
- 0.74,
- 1.59,
- 1.96,
- 2.03,
- 2.45,
- 1.96,
- 2.37,
- 1.08,
- 1.23,
- 1.75,
- 1.3,
- 2.31,
- 1.87,
- 2.39,
- 0.76,
- -0.18,
- 0.1,
- -0.93,
- -1.07,
- -1.54,
- -0.84,
- -0.85,
- -1.78,
- -1.18,
- -0.75,
- -0.89,
- -0.92,
- -1.32,
- -0.68,
- 0.21,
- 1.88,
- 0.67,
- -1.01,
- -1.77,
- -1.7,
- -1.97,
- -2.0,
- -1.92,
- -1.71,
- -1.48,
- -1.48,
- -1.15,
- -0.19,
- -0.42,
- -0.66,
- -0.16,
- 0.16,
- 0.08,
- -0.92,
- -2.23,
- -1.96,
- -2.11,
- -1.71,
- -0.63,
- -0.08,
- 1.08,
- 1.61,
- 1.94,
- 1.89,
- 2.33,
- 2.72,
- 2.53,
- 2.92,
- 2.63,
- 3.47,
- 3.59,
- 3.02,
- 4.19,
- 2.63,
- 2.67,
- 2.77,
- 2.83,
- 3.25,
- 2.92,
- 1.11,
- -2.52,
- -6.3,
- -6.57,
- -5.34,
- -2.65,
- -0.12,
- 1.57,
- 2.39,
- 3.21,
- 3.83,
- 3.42,
- 3.64,
- 4.1,
- 4.89,
- 4.76,
- 4.28,
- 3.94,
- 2.36,
- 2.04,
- 1.98,
- 1.81,
- 2.42,
- 3.06,
- 4.33,
- 5.98,
- 6.97,
- 7.59,
- 8.01,
- 7.07,
- 6.44,
- 6.55,
- 5.21,
- 4.06,
- 4.5,
- 5.29,
- 5.04,
- 2.12,
- 2.78,
- 4.29,
- 5.32,
- 6.28,
- 6.77,
- 7.13,
- 8.42,
- 7.55,
- 3.71,
- 3.63,
- 4.33,
- 6.05,
- 7.05,
- 6.25,
- 3.81,
- 2.93,
- 1.99,
- 3.68,
- 5.28,
- 6.4,
- 7.01,
- 7.76,
- 7.09,
- 3.43,
- 2.07,
- 0.38,
- 0.8,
- 0.72,
- -0.05,
- -2.42,
- -2.01,
- -2.69,
- -3.39,
- -3.7,
- -4.09,
- -3.23,
- -3.3,
- -2.72,
- -1.88,
- -1.81,
- -1.43,
- -0.68,
- -0.35,
- -2.88,
- -3.24,
- -3.74,
- -3.57,
- -2.8,
- -2.13,
- -1.94,
- -3.39,
- -3.0,
- -2.66,
- -2.77,
- -2.95,
- -3.21,
- -4.0,
- -5.45,
- -7.05,
- -3.94,
- -4.23,
- -5.57,
- -4.65,
- -4.75,
- -4.66,
- -4.72,
- -5.42,
- -6.61,
- -6.71,
- -6.56,
- -6.71,
- -7.74,
- -7.43,
- -5.73,
- -5.15,
- -4.78,
- -5.32,
- -5.88,
- -4.82,
- -3.39,
- -2.51,
- -2.13,
- -0.99,
- 0.26,
- 1.57,
- 2.65,
- 3.78,
- 4.76,
- 5.13,
- 5.15,
- 5.0,
- 4.81,
- 4.87,
- 4.62,
- 4.43,
- 4.54,
- 4.47,
- 4.52,
- 4.39,
- 4.74,
- 3.87,
- 3.03,
- 3.36,
- 3.61,
- 3.6,
- 3.83,
- 4.8,
- 6.08,
- 5.69,
- 3.27,
- 2.38,
- 3.85,
- 6.21,
- 5.0,
- 4.4,
- 3.12,
- 2.02,
- 0.57,
- 0.33,
- 0.71,
- 1.9,
- 2.47,
- 3.26,
- 3.1,
- 1.9,
- 2.83,
- 3.57,
- 4.68,
- 4.45,
- 3.18,
- 2.17,
- 1.64,
- 1.24,
- 1.16,
- 1.55,
- 2.36,
- 2.54,
- 1.1,
- 1.27,
- 0.46,
- -0.27,
- -1.0,
- -2.11,
- -3.32,
- -3.14,
- -3.0,
- -3.55,
- -3.75,
- -4.7,
- -3.67,
- -2.98,
- -2.61,
- -1.68,
- -1.58,
- -1.94,
- -0.35,
- 0.66,
- -1.02,
- -0.29,
- -1.63,
- -2.13,
- -4.0,
- -5.69,
- -6.75,
- -7.26,
- -7.68,
- -7.96,
- -8.62,
- -9.31,
- -9.46,
- -9.37,
- -9.49,
- -9.53,
- -7.79,
- -7.86,
- -7.92,
- -11.41,
- -11.52,
- -12.29,
- -12.08,
- -10.98,
- -10.05,
- -9.05,
- -8.12,
- -7.09,
- -6.09,
- -5.37,
- -4.97,
- -4.53,
- -4.04,
- -3.12,
- -2.12,
- -0.8,
- 0.48,
- 1.93,
- 2.35,
- 2.48,
- 2.87,
- 2.46,
- 2.8,
- 3.18,
- 3.08,
- 3.83,
- 4.0,
- 3.87,
- 3.76,
- 3.85,
- 3.82,
- 4.18,
- 4.95,
- 6.65,
- 4.65,
- 4.34,
- 4.31,
- 3.1,
- 0.83,
- 0.14,
- -1.0,
- -1.47,
- -2.09,
- -2.8,
- -3.71,
- -3.21,
- -1.16,
- -0.56,
- -0.99,
- -1.07,
- -0.4,
- -0.19,
- 0.25,
- 1.25,
- -0.27,
- -3.25,
- -7.25,
- -9.65,
- -10.56,
- -10.37,
- -9.94,
- -8.14,
- -6.97,
- -5.95,
- -4.79,
- -3.42,
- -1.94,
- -2.46,
- 0.47,
- 2.99,
- 0.43,
- 0.28,
- 0.98,
- 1.65,
- 1.39,
- 1.79,
- 2.3,
- 2.11,
- 0.68,
- 0.3,
- 0.73,
- 1.34,
- -1.12,
- 1.77,
- 2.65,
- 0.93,
- 0.01,
- -0.47,
- 0.06,
- -0.28,
- -2.17,
- -2.26,
- -2.24,
- -1.81,
- -2.53,
- -1.76,
- -1.96,
- -2.03,
- -0.73,
- -1.71,
- -2.11,
- -1.17,
- -3.12,
- -1.51,
- -2.13,
- -2.18,
- -2.02,
- -2.24,
- -1.7,
- -1.89,
- -1.63,
- -1.33,
- -1.19,
- -1.34,
- -0.7,
- -0.04,
- -0.92,
- -1.57,
- -1.63,
- -0.77,
- -1.21,
- -2.32,
- -2.28,
- -2.11,
- -1.98,
- 0.16,
- 1.13,
- 1.21,
- 1.67,
- 2.24,
- 2.01,
- 1.81,
- 2.47,
- 2.11,
- 2.3,
- 2.38,
- 3.12,
- 4.41,
- 3.84,
- 2.84,
- 3.83,
- 4.03,
- 2.66,
- 1.94,
- 3.62,
- 5.71,
- 1.74,
- -1.63,
- -2.56,
- 0.74,
- 1.78,
- 3.19,
- 3.56,
- 4.25,
- 5.15,
- 5.96,
- 4.57,
- 4.16,
- 4.95,
- 5.88,
- 5.58,
- 5.67,
- 5.85,
- 3.97,
- 0.61,
- 2.18,
- 1.78,
- 0.72,
- 1.57,
- 2.96,
- 5.12,
- 6.58,
- 6.63,
- 7.01,
- 6.98,
- 6.38,
- 5.87,
- 6.07,
- 5.44,
- 5.5,
- 5.38,
- 4.94,
- 3.97,
- 2.98,
- 4.13,
- 5.63,
- 6.78,
- 7.6,
- 7.59,
- 7.37,
- 7.89,
- 3.9,
- 3.5,
- 3.6,
- 5.59,
- 6.4,
- 1.94,
- 3.35,
- 3.79,
- 3.86,
- 2.72,
- 2.51,
- 3.52,
- 3.44,
- 2.74,
- 1.49,
- 1.91,
- 1.43,
- 0.42,
- 0.29,
- -0.08,
- -0.43,
- -1.02,
- -1.06,
- -1.55,
- -2.66,
- -3.0,
- -3.16,
- -3.11,
- -2.84,
- -2.5,
- -2.27,
- -2.47,
- -2.53,
- -3.06,
- 0.03,
- -3.02,
- -2.48,
- -2.85,
- -3.01,
- -2.48,
- -2.39,
- -2.97,
- -3.04,
- -1.84,
- -1.2,
- -1.35,
- -0.9,
- -1.68,
- -2.29,
- -4.04,
- -5.45,
- -6.11,
- -5.17,
- -5.31,
- -4.9,
- -4.86,
- -5.5,
- -6.47,
- -6.47,
- -6.12,
- -6.14,
- -6.79,
- -7.89,
- -6.84,
- -8.43,
- -8.02,
- -8.46,
- -6.09,
- -6.32,
- -7.67,
- -6.88,
- -5.63,
- -4.13,
- -2.94,
- -2.3,
- -1.98,
- -1.25,
- -0.44,
- 0.88,
- 1.8,
- 3.02,
- 3.57,
- 4.09,
- 4.29,
- 4.49,
- 4.29,
- 3.89,
- 3.52,
- 3.29,
- 3.39,
- 3.21,
- 3.22,
- 3.71,
- 3.86,
- 4.28,
- 3.84,
- 4.09,
- 3.28,
- 6.28,
- 4.87,
- 3.51,
- 3.4,
- 2.76,
- 3.12,
- 0.81,
- 0.86,
- 4.29,
- 2.45,
- 1.6,
- -0.51,
- 1.25,
- -0.82,
- -0.8,
- 0.54,
- 2.83,
- 3.56,
- 2.95,
- 2.87,
- 2.94,
- 3.01,
- 2.8,
- 3.22,
- 2.26,
- 1.96,
- 1.35,
- 0.69,
- 2.01,
- 1.25,
- 1.69,
- 1.86,
- 1.45,
- 0.95,
- 1.2,
- 1.94,
- 0.73,
- -1.8,
- -2.71,
- -2.41,
- -1.68,
- -1.34,
- -1.86,
- -2.34,
- -3.06,
- -2.16,
- -1.89,
- -1.19,
- -1.34,
- -1.44,
- -0.38,
- -0.17,
- -1.32,
- -1.4,
- -1.4,
- -3.09,
- -4.78,
- -6.14,
- -7.68,
- -9.41,
- -11.31,
- -12.85,
- -13.64,
- -14.46,
- -14.13,
- -14.04,
- -13.13,
- -11.58,
- -8.73,
- -10.38,
- -15.99,
- -16.4,
- -15.79,
- -14.48,
- -13.02,
- -11.84,
- -10.97,
- -10.1,
- -9.2,
- -8.17,
- -6.83,
- -5.79,
- -5.18,
- -4.14,
- -2.86,
- -3.06,
- -2.04,
- -0.79,
- 0.04,
- 1.65,
- 2.1,
- 2.23,
- 1.99,
- 2.01,
- 2.21,
- 2.23,
- 2.83,
- 4.08,
- 5.09,
- 4.81,
- 5.16,
- 5.02,
- 5.86,
- 6.7,
- 5.5,
- 4.96,
- 4.3,
- 4.6,
- 4.36,
- 2.93,
- 3.25,
- 1.52,
- 1.08,
- 0.47,
- -0.49,
- -0.56,
- 1.31,
- 0.77,
- -0.48,
- -1.08,
- -1.36,
- -0.83,
- -0.34,
- 0.14,
- 0.44,
- 1.34,
- 1.29,
- 1.06,
- -0.63,
- -3.93,
- -6.73,
- -7.85,
- -8.56,
- -8.13,
- -5.97,
- -4.52,
- -3.53,
- -2.24,
- -0.92,
- 0.36,
- 1.77,
- 3.63,
- 3.31,
- 0.95,
- 0.91,
- 1.32,
- 0.6,
- 1.24,
- 0.5,
- 1.22,
- 1.74,
- 1.05,
- 0.59,
- 0.98,
- -1.69,
- 0.41,
- 0.0,
- -1.64,
- -1.04,
- -0.71,
- -0.18,
- 0.11,
- -3.92,
- -3.21,
- -2.93,
- -4.24,
- -3.81,
- -3.25,
- -3.16,
- -2.92,
- -1.99,
- -2.76,
- -2.2,
- -2.7,
- -3.41,
- -2.47,
- -2.41,
- -2.05,
- -1.86,
- -1.44,
- -1.58,
- -1.71,
- -1.48,
- -0.78,
- -0.77,
- -0.74,
- -0.53,
- -0.23,
- -1.57,
- -1.77,
- -1.61,
- -1.9,
- -2.92,
- -1.92,
- -1.49,
- -1.66,
- -1.62,
- 0.3,
- 0.28,
- 1.2,
- 0.92,
- 1.34,
- 1.57,
- 1.46,
- 1.87,
- 2.4,
- 2.41,
- 3.13,
- 3.77,
- 3.88,
- 3.44,
- 3.88,
- 4.83,
- 5.07,
- 3.72,
- 5.08,
- 11.13,
- 12.84,
- 11.16,
- 6.38,
- 5.94,
- 6.44,
- 6.84,
- 6.3,
- 6.62,
- 7.52,
- 7.21,
- 5.14,
- 5.11,
- 5.94,
- 6.43,
- 7.21,
- 7.84,
- 7.33,
- 6.96,
- 7.03,
- 7.16,
- 6.74,
- 6.29,
- 6.06,
- 5.51,
- 5.5,
- 5.09,
- 6.81,
- 6.49,
- 6.04,
- 5.93,
- 5.67,
- 5.6,
- 5.72,
- 5.38,
- 6.01,
- 5.72,
- 4.94,
- 2.95,
- 3.75,
- 4.78,
- 6.23,
- 7.39,
- 6.76,
- 5.99,
- 3.62,
- 2.8,
- 3.15,
- 4.99,
- 5.55,
- 2.86,
- 2.12,
- 2.83,
- 2.18,
- 2.78,
- 0.8,
- 1.37,
- 0.9,
- 0.21,
- 1.18,
- 1.1,
- 0.75,
- 0.97,
- 0.57,
- -0.1,
- -0.56,
- -0.38,
- 0.25,
- -1.13,
- -0.89,
- 0.15,
- -1.58,
- -2.51,
- -2.7,
- -2.63,
- -2.67,
- -2.11,
- -1.65,
- -1.67,
- -2.89,
- -2.03,
- -3.16,
- -3.44,
- -2.52,
- -2.18,
- -2.22,
- -2.83,
- -3.08,
- -2.6,
- -1.64,
- -1.14,
- -0.73,
- -0.6,
- -0.27,
- -0.05,
- -0.19,
- -2.42,
- -4.96,
- -6.13,
- -5.62,
- -5.17,
- -3.98,
- -4.52,
- -5.58,
- -5.22,
- -5.48,
- -5.31,
- -5.61,
- -5.94,
- -6.68,
- -7.22,
- -6.99,
- -6.71,
- -7.83,
- -7.12,
- -8.07,
- -8.01,
- -7.13,
- -5.93,
- -4.79,
- -3.55,
- -2.8,
- -2.29,
- -1.92,
- -1.57,
- -0.66,
- -0.25,
- 0.44,
- 1.69,
- 2.24,
- 3.03,
- 3.8,
- 3.93,
- 4.0,
- 3.99,
- 3.79,
- 3.71,
- 3.64,
- 2.35,
- 1.91,
- 1.96,
- 0.66,
- 2.4,
- 2.38,
- 3.03,
- 1.56,
- 2.9,
- 3.67,
- 0.52,
- 1.89,
- 3.81,
- 2.23,
- 2.56,
- 0.35,
- -1.31,
- -1.28,
- 0.8,
- -0.84,
- -0.98,
- -1.23,
- -0.75,
- -1.02,
- -0.91,
- 0.55,
- 1.14,
- 1.8,
- 2.23,
- 2.13,
- 2.31,
- 2.65,
- 4.78,
- 3.7,
- 1.35,
- -0.98,
- 0.13,
- 1.55,
- 1.48,
- 0.91,
- 0.68,
- 0.31,
- -0.14,
- -0.11,
- -1.49,
- -2.11,
- -1.11,
- -0.99,
- -1.31,
- -1.93,
- -1.31,
- -2.84,
- -1.55,
- -1.0,
- 0.12,
- -2.51,
- -0.73,
- 0.72,
- -0.17,
- -0.78,
- -1.21,
- -0.75,
- -3.52,
- -5.17,
- -7.35,
- -9.85,
- -12.24,
- -14.0,
- -15.11,
- -15.6,
- -16.67,
- -17.75,
- -18.65,
- -19.92,
- -20.5,
- -18.83,
- -18.66,
- -18.49,
- -17.99,
- -16.71,
- -14.94,
- -12.91,
- -11.38,
- -10.29,
- -9.57,
- -8.72,
- -7.67,
- -6.29,
- -4.64,
- -2.92,
- -1.82,
- -1.5,
- -1.05,
- -0.61,
- -0.28,
- -0.07,
- 1.64,
- 2.57,
- 3.26,
- 2.83,
- 2.24,
- 1.71,
- 3.12,
- 4.07,
- 3.86,
- 4.66,
- 4.31,
- 4.72,
- 5.04,
- 5.79,
- 5.69,
- 5.17,
- 4.78,
- 5.04,
- 4.43,
- 4.15,
- 4.0,
- 3.16,
- 2.78,
- 2.76,
- 1.63,
- 2.93,
- 2.29,
- 1.12,
- 0.07,
- -0.78,
- -0.96,
- -0.62,
- -0.51,
- 0.11,
- 1.28,
- 1.56,
- 1.89,
- 2.11,
- 2.32,
- 2.8,
- 1.53,
- -0.75,
- -3.67,
- -5.68,
- -7.05,
- -5.06,
- -2.45,
- -1.84,
- -0.99,
- 0.29,
- 2.1,
- 3.21,
- 3.16,
- 3.25,
- 1.1,
- 1.4,
- 0.28,
- -1.45,
- 0.72,
- 1.73,
- 2.12,
- 1.92,
- 1.02,
- 1.04,
- -0.44,
- -0.32,
- -0.04,
- -0.93,
- -1.59,
- -1.62,
- -1.72,
- 0.92,
- -1.36,
- -3.72,
- -3.27,
- -3.63,
- -5.16,
- -4.55,
- -3.09,
- -2.65,
- -2.26,
- -1.88,
- -2.81,
- -2.59,
- -3.66,
- -2.79,
- -2.71,
- -2.37,
- -2.33,
- -1.88,
- -1.52,
- -1.49,
- -1.54,
- -1.08,
- -0.5,
- 0.09,
- -1.25,
- -1.54,
- -1.89,
- -2.07,
- -1.81,
- -1.3,
- -1.7,
- -1.87,
- -0.76,
- -1.73,
- -1.95,
- -0.54,
- 0.43,
- 0.79,
- 1.08,
- 0.8,
- 1.53,
- 2.09,
- 1.36,
- 0.95,
- 1.7,
- 1.3,
- 2.28,
- 2.27,
- 3.83,
- 3.5,
- 4.66,
- 10.74,
- 10.47,
- 6.12,
- 12.21,
- 12.13,
- 12.14,
- 11.93,
- 12.57,
- 9.25,
- 9.13,
- 9.17,
- 8.91,
- 8.85,
- 7.71,
- 6.64,
- 6.24,
- 6.67,
- 7.26,
- 7.77,
- 8.05,
- 8.1,
- 7.94,
- 7.89,
- 7.51,
- 6.9,
- 6.63,
- 6.81,
- 6.47,
- 5.95,
- 6.5,
- 5.87,
- 5.9,
- 5.93,
- 5.71,
- 5.52,
- 6.01,
- 6.0,
- 6.49,
- 6.54,
- 6.2,
- 4.96,
- 5.09,
- 2.87,
- 3.94,
- 5.41,
- 6.37,
- 6.53,
- 5.0,
- 4.21,
- 3.94,
- 3.52,
- 4.31,
- 4.12,
- 3.12,
- 1.68,
- 1.73,
- 1.61,
- 0.89,
- -1.8,
- -1.4,
- 1.39,
- 1.21,
- -1.87,
- -1.87,
- 0.84,
- 1.11,
- 0.35,
- -0.91,
- -1.73,
- -2.1,
- -1.89,
- -1.24,
- -0.72,
- -1.09,
- -1.51,
- -1.77,
- -1.72,
- -3.57,
- -1.95,
- -0.62,
- 0.58,
- 1.41,
- 2.34,
- 1.63,
- -1.56,
- -3.49,
- -3.14,
- -2.63,
- -2.63,
- -2.43,
- -2.83,
- -2.46,
- -2.49,
- -1.36,
- -1.19,
- -1.13,
- -0.42,
- 0.77,
- 0.95,
- 1.73,
- 0.31,
- -4.12,
- -5.52,
- -5.43,
- -3.24,
- -2.36,
- -2.55,
- -2.62,
- -3.33,
- -3.96,
- -5.04,
- -5.96,
- -5.0,
- -4.95,
- -5.51,
- -6.26,
- -7.54,
- -7.5,
- -7.32,
- -8.44,
- -7.67,
- -7.38,
- -6.27,
- -5.63,
- -5.3,
- -5.32,
- -4.41,
- -3.4,
- -2.97,
- -2.54,
- -1.86,
- -1.36,
- -0.54,
- 0.13,
- 1.68,
- 2.97,
- 3.73,
- 4.01,
- 4.28,
- 4.17,
- 4.13,
- 4.99,
- 2.07,
- 1.27,
- 0.83,
- 1.52,
- 2.13,
- 3.55,
- 5.19,
- 1.32,
- 2.81,
- 0.8,
- 3.04,
- 1.93,
- 1.56,
- 0.59,
- 2.12,
- -1.65,
- -3.39,
- -2.37,
- -1.72,
- -0.22,
- -0.45,
- -2.35,
- -2.96,
- -2.46,
- -1.17,
- -0.04,
- 1.01,
- 1.27,
- 1.4,
- 0.26,
- 4.38,
- 2.89,
- -0.88,
- -3.42,
- -2.08,
- -1.09,
- -0.08,
- 0.52,
- 0.69,
- -0.43,
- 0.9,
- -0.72,
- -0.18,
- -1.18,
- -3.85,
- -3.76,
- -0.76,
- -0.9,
- -1.15,
- -0.71,
- -0.8,
- -2.04,
- -1.75,
- -1.34,
- -0.75,
- -0.69,
- -0.58,
- 0.16,
- 2.55,
- -0.06,
- 0.19,
- -2.88,
- -4.39,
- -6.62,
- -9.5,
- -11.14,
- -13.99,
- -15.57,
- -16.17,
- -17.4,
- -19.18,
- -17.73,
- -20.48,
- -19.97,
- -19.34,
- -18.81,
- -18.33,
- -17.84,
- -17.49,
- -16.99,
- -15.62,
- -13.75,
- -11.7,
- -10.17,
- -9.13,
- -7.95,
- -6.36,
- -5.19,
- -4.16,
- -2.76,
- -1.07,
- 0.3,
- 1.5,
- 1.81,
- 1.45,
- 1.21,
- 2.25,
- 3.47,
- 3.81,
- 3.94,
- 3.53,
- 3.85,
- 4.27,
- 4.58,
- 4.5,
- 4.35,
- 4.54,
- 4.81,
- 5.38,
- 5.95,
- 5.81,
- 5.46,
- 5.42,
- 5.62,
- 5.62,
- 5.57,
- 4.82,
- 5.18,
- 5.51,
- 5.27,
- 5.26,
- 2.95,
- 1.7,
- 0.85,
- -0.01,
- -0.39,
- 0.64,
- 0.9,
- 1.95,
- 2.44,
- 2.56,
- 2.14,
- 2.18,
- 2.52,
- 2.88,
- 2.4,
- 0.48,
- -1.75,
- -3.09,
- -4.23,
- -4.02,
- -2.77,
- -0.79,
- -0.14,
- 0.28,
- 1.7,
- 3.2,
- 3.27,
- 3.16,
- -0.37,
- 1.06,
- 5.02,
- 0.97,
- 0.56,
- 0.03,
- 2.34,
- 3.64,
- 1.76,
- 1.06,
- -0.61,
- 0.17,
- -0.33,
- -0.59,
- -2.07,
- -1.8,
- -1.76,
- -1.19,
- -1.11,
- -1.54,
- -2.52,
- -2.99,
- -4.04,
- -5.98,
- -5.99,
- -3.97,
- -3.82,
- -3.89,
- -3.15,
- -4.49,
- -4.22,
- -2.47,
- -2.08,
- -2.02,
- -2.01,
- -1.87,
- -1.81,
- -1.72,
- -1.38,
- -1.57,
- -0.96,
- 0.11,
- 0.73,
- -1.68,
- -1.91,
- -2.07,
- -2.37,
- -1.87,
- -1.79,
- -2.16,
- -1.32,
- -0.37,
- -1.76,
- -1.52,
- -0.36,
- 0.48,
- 0.98,
- 1.12,
- 1.8,
- 0.83,
- 2.74,
- 3.78,
- 6.49,
- 6.52,
- 9.65,
- 9.39,
- 7.19,
- 8.77,
- 11.67,
- 11.27,
- 6.99,
- 9.09,
- 14.21,
- 15.28,
- 15.77,
- 15.04,
- 12.29,
- 11.13,
- 10.47,
- 10.79,
- 10.03,
- 8.66,
- 8.2,
- 7.78,
- 7.52,
- 7.94,
- 8.64,
- 8.73,
- 8.14,
- 8.07,
- 7.99,
- 7.78,
- 7.71,
- 7.51,
- 7.43,
- 8.08,
- 7.32,
- 7.08,
- 5.86,
- 5.88,
- 5.89,
- 6.09,
- 5.8,
- 5.82,
- 6.28,
- 7.26,
- 7.62,
- 7.1,
- 7.23,
- 7.25,
- 6.14,
- 3.5,
- 2.72,
- 4.07,
- 5.24,
- 5.75,
- 5.1,
- 4.17,
- 4.2,
- 3.29,
- 2.91,
- 2.89,
- 2.3,
- 1.76,
- 0.89,
- -0.5,
- -0.6,
- 1.82,
- 1.38,
- -0.86,
- -1.89,
- -0.53,
- 0.17,
- 1.4,
- 1.05,
- 0.25,
- 0.03,
- 0.34,
- -1.37,
- -1.1,
- -1.05,
- -0.4,
- -3.65,
- -2.35,
- -1.8,
- -0.75,
- -0.52,
- -0.51,
- 0.14,
- -0.17,
- -0.19,
- -0.38,
- 1.15,
- -0.65,
- -1.99,
- -2.0,
- -2.81,
- -3.27,
- -3.28,
- -2.32,
- -2.4,
- -2.63,
- -2.29,
- -1.51,
- -0.56,
- -0.13,
- 0.29,
- 0.38,
- 0.94,
- 1.31,
- 2.24,
- -0.77,
- -3.79,
- -2.74,
- -1.26,
- -0.26,
- 0.32,
- -0.12,
- -0.06,
- -5.89,
- -5.89,
- -5.24,
- -5.83,
- -6.73,
- -7.5,
- -7.14,
- -6.78,
- -7.05,
- -7.71,
- -7.66,
- -7.76,
- -7.53,
- -6.85,
- -6.4,
- -6.63,
- -6.13,
- -5.12,
- -4.41,
- -4.04,
- -3.49,
- -3.51,
- -2.75,
- -2.16,
- -0.84,
- -0.18,
- 0.27,
- 1.29,
- 1.95,
- 2.33,
- 3.48,
- 2.91,
- 1.81,
- 0.45,
- 0.61,
- 0.72,
- 1.86,
- 3.58,
- 3.32,
- 5.8,
- 2.2,
- 2.85,
- 2.53,
- 5.04,
- 4.27,
- 5.07,
- 5.3,
- 2.94,
- 1.22,
- -1.52,
- -3.91,
- -3.84,
- -2.61,
- -3.24,
- -3.08,
- -3.29,
- -1.03,
- 0.73,
- 1.27,
- 0.92,
- -0.01,
- 3.05,
- 2.49,
- -0.01,
- -2.36,
- -5.53,
- -2.97,
- -2.86,
- -1.37,
- 0.26,
- -0.36,
- -1.0,
- 0.79,
- 0.89,
- 0.69,
- 0.61,
- 1.37,
- -3.31,
- -3.61,
- -2.96,
- -2.02,
- -1.98,
- -2.67,
- -2.69,
- -1.64,
- -0.75,
- -0.01,
- 0.09,
- -1.43,
- 0.37,
- 2.14,
- -1.03,
- -0.22,
- -1.14,
- -2.39,
- -4.53,
- -7.41,
- -9.93,
- -12.42,
- -13.63,
- -13.08,
- -11.64,
- -10.39,
- -9.51,
- -9.26,
- -10.44,
- -12.57,
- -16.02,
- -17.57,
- -17.02,
- -17.28,
- -16.58,
- -15.33,
- -14.69,
- -13.75,
- -12.31,
- -9.95,
- -8.45,
- -7.22,
- -5.61,
- -4.19,
- -3.16,
- -2.15,
- -0.71,
- 1.46,
- 3.29,
- 3.63,
- 3.07,
- 2.6,
- 2.5,
- 3.86,
- 4.71,
- 5.51,
- 5.38,
- 5.01,
- 4.56,
- 4.52,
- 4.5,
- 4.49,
- 4.55,
- 4.51,
- 4.29,
- 4.57,
- 5.19,
- 6.0,
- 7.05,
- 7.26,
- 7.63,
- 7.57,
- 8.14,
- 8.58,
- 8.09,
- 6.6,
- 3.35,
- 1.09,
- 0.85,
- 0.75,
- 0.76,
- 1.43,
- 2.63,
- 3.75,
- 3.61,
- 3.06,
- 2.82,
- 2.52,
- 2.7,
- 2.91,
- 2.84,
- 1.8,
- -0.57,
- -1.32,
- -2.04,
- -2.05,
- -1.82,
- -1.09,
- 0.88,
- 1.62,
- 1.72,
- 3.18,
- 4.24,
- 5.68,
- 8.07,
- 7.02,
- -0.33,
- 2.2,
- 0.64,
- -0.51,
- 1.23,
- 2.55,
- 1.53,
- -0.4,
- -0.27,
- -0.15,
- -0.6,
- -0.24,
- -1.02,
- -1.81,
- -3.29,
- -3.92,
- -3.0,
- -2.15,
- -2.21,
- -2.23,
- -3.15,
- -3.26,
- -3.61,
- -4.58,
- -4.93,
- -4.68,
- -4.61,
- -3.12,
- -4.01,
- -3.69,
- -4.97,
- -2.64,
- -2.49,
- -2.59,
- -1.99,
- -1.34,
- -0.35,
- -1.1,
- -1.29,
- -1.05,
- -0.98,
- -1.73,
- -1.93,
- -1.92,
- -1.94,
- -2.24,
- -2.13,
- -1.72,
- -1.38,
- -0.59,
- 0.01,
- -1.64,
- -0.44,
- -0.87,
- -0.48,
- 1.59,
- 1.93,
- 3.44,
- 2.1,
- 1.16,
- 2.36,
- 8.41,
- 6.74,
- 5.1,
- 8.18,
- 10.31,
- 11.07,
- 5.91,
- 7.05,
- 6.9,
- 8.02,
- 8.04,
- 14.17,
- 13.04,
- 11.46,
- 10.19,
- 9.91,
- 10.93,
- 10.1,
- 9.63,
- 8.78,
- 8.33,
- 7.88,
- 8.7,
- 9.64,
- 9.25,
- 7.89,
- 7.87,
- 8.12,
- 7.92,
- 7.87,
- 7.05,
- 7.19,
- 5.4,
- 7.61,
- 6.18,
- 6.33,
- 5.73,
- 5.66,
- 5.85,
- 6.0,
- 6.29,
- 6.34,
- 6.38,
- 7.07,
- 7.45,
- 7.45,
- 7.7,
- 6.84,
- 4.21,
- 2.55,
- 1.82,
- 3.38,
- 4.28,
- 4.39,
- 3.34,
- 3.02,
- 2.62,
- 1.79,
- 1.76,
- 1.19,
- 0.24,
- 0.01,
- -1.85,
- 0.92,
- -0.69,
- -2.15,
- -1.69,
- -1.28,
- -0.22,
- -0.56,
- -0.87,
- 0.15,
- -0.96,
- -0.2,
- 0.28,
- 0.81,
- 0.84,
- -0.68,
- -0.4,
- -0.77,
- 0.58,
- -2.12,
- -0.18,
- -0.16,
- -0.17,
- 0.26,
- 0.87,
- 0.63,
- -0.28,
- -0.69,
- -1.43,
- -1.84,
- -0.63,
- -2.43,
- -2.68,
- -2.76,
- -3.3,
- -2.82,
- -2.27,
- -1.86,
- -1.49,
- -1.31,
- -1.06,
- -1.2,
- -0.74,
- 0.7,
- 2.22,
- 1.62,
- 2.23,
- -0.69,
- -1.43,
- -0.52,
- 0.25,
- 1.18,
- 1.33,
- 1.81,
- 1.82,
- -3.83,
- -2.78,
- -7.8,
- -8.77,
- -6.38,
- -8.61,
- -8.07,
- -9.17,
- -8.87,
- -8.83,
- -8.88,
- -8.32,
- -7.73,
- -9.09,
- -8.58,
- -7.45,
- -6.7,
- -6.1,
- -5.51,
- -5.26,
- -4.91,
- -4.19,
- -4.5,
- -3.89,
- -3.6,
- -2.53,
- -1.89,
- -1.91,
- -1.12,
- 0.98,
- 3.64,
- 5.87,
- 11.22,
- 11.45,
- 8.88,
- 2.79,
- 0.4,
- 3.25,
- 5.33,
- 3.47,
- 6.59,
- 8.31,
- 9.91,
- 10.05,
- 10.61,
- 10.96,
- 2.23,
- -1.45,
- -0.79,
- -5.24,
- -7.38,
- -3.94,
- -2.83,
- -0.3,
- 2.39,
- 1.81,
- 1.24,
- 0.41,
- 3.72,
- 5.02,
- 4.79,
- 3.15,
- 0.67,
- -2.91,
- -3.22,
- -3.41,
- -2.47,
- -0.59,
- 0.7,
- -1.22,
- 0.92,
- 1.3,
- 0.1,
- -0.2,
- -0.72,
- -0.18,
- 1.4,
- -3.74,
- -3.49,
- -3.7,
- -3.69,
- -3.37,
- -2.38,
- -0.43,
- 0.05,
- -0.21,
- -0.19,
- -5.68,
- -0.1,
- 4.05,
- -0.44,
- 1.7,
- 2.02,
- 0.71,
- -0.94,
- -4.01,
- -7.12,
- -7.21,
- -8.39,
- -9.87,
- -10.95,
- -9.96,
- -8.07,
- -6.19,
- -4.45,
- -1.89,
- 0.04,
- 0.37,
- -4.1,
- -9.96,
- -13.16,
- -14.34,
- -14.81,
- -15.53,
- -14.27,
- -12.32,
- -10.3,
- -8.79,
- -7.11,
- -5.53,
- -3.92,
- -2.42,
- -1.41,
- 0.13,
- 2.34,
- 4.28,
- 5.04,
- 4.5,
- 3.31,
- 3.15,
- 4.04,
- 5.25,
- 5.77,
- 5.57,
- 4.66,
- 4.43,
- 4.45,
- 4.63,
- 5.28,
- 5.71,
- 5.51,
- 5.48,
- 5.85,
- 6.96,
- 8.18,
- 9.16,
- 9.59,
- 10.61,
- 10.61,
- 11.13,
- 10.18,
- 9.25,
- 7.67,
- 5.71,
- 4.77,
- 4.22,
- 4.01,
- 4.21,
- 5.11,
- 5.72,
- 5.24,
- 4.16,
- 3.24,
- 2.83,
- 2.9,
- 3.24,
- 2.57,
- 2.16,
- 1.38,
- -0.32,
- -0.94,
- -0.79,
- -0.27,
- -0.24,
- 0.11,
- 2.05,
- 2.81,
- 3.35,
- 4.76,
- 6.21,
- 7.61,
- 8.47,
- 7.62,
- 0.16,
- 2.15,
- -0.7,
- 1.4,
- 2.35,
- 0.74,
- -1.59,
- 0.25,
- 0.48,
- 0.44,
- -0.95,
- -1.86,
- -3.53,
- -5.12,
- -5.67,
- -2.33,
- -2.45,
- -1.73,
- -2.99,
- -3.78,
- -4.07,
- -4.33,
- -4.43,
- -4.29,
- -5.01,
- -5.03,
- -5.35,
- -5.49,
- -4.13,
- -4.24,
- -2.79,
- -2.95,
- -2.56,
- -2.11,
- -0.43,
- -2.12,
- -2.03,
- -3.09,
- -3.08,
- -1.48,
- -1.46,
- -1.79,
- -1.89,
- -1.77,
- -1.98,
- -1.95,
- -1.53,
- -1.27,
- -0.87,
- -0.25,
- 0.49,
- -0.53,
- -0.85,
- 0.94,
- 1.58,
- 1.55,
- 1.73,
- 1.88,
- 5.14,
- 4.24,
- 4.58,
- 5.66,
- 6.82,
- 8.43,
- 10.2,
- 6.88,
- 7.58,
- 7.35,
- 7.5,
- 7.38,
- 8.43,
- 10.01,
- 10.42,
- 10.22,
- 9.94,
- 9.48,
- 8.82,
- 8.65,
- 10.35,
- 9.86,
- 8.12,
- 8.82,
- 9.44,
- 9.21,
- 8.54,
- 8.25,
- 8.19,
- 8.08,
- 7.65,
- 6.6,
- 4.63,
- 3.89,
- 8.47,
- 7.61,
- 7.9,
- 6.94,
- 6.02,
- 5.79,
- 5.67,
- 5.44,
- 5.35,
- 5.46,
- 5.61,
- 6.35,
- 6.69,
- 6.77,
- 6.82,
- 6.55,
- 6.01,
- 2.27,
- 1.02,
- 0.93,
- 2.59,
- 3.13,
- 2.34,
- 1.65,
- 1.88,
- 1.38,
- 1.33,
- 1.04,
- 0.78,
- 1.95,
- 1.02,
- -1.18,
- -3.07,
- -1.88,
- -2.1,
- -1.7,
- -1.49,
- -1.2,
- -1.19,
- -0.5,
- -0.17,
- -0.43,
- -1.78,
- -0.23,
- -0.22,
- 0.66,
- 1.13,
- 1.74,
- 0.95,
- -0.07,
- -0.72,
- -0.59,
- -0.51,
- -0.67,
- -0.35,
- 0.67,
- -0.28,
- -1.33,
- -1.73,
- -0.31,
- -1.4,
- -1.16,
- -1.94,
- -2.98,
- -3.89,
- -3.67,
- -3.11,
- -2.78,
- -2.62,
- -2.75,
- -1.95,
- 0.55,
- 2.19,
- 0.89,
- 0.11,
- -0.35,
- 0.19,
- 0.18,
- -1.15,
- -0.25,
- 0.9,
- 1.33,
- 2.36,
- 1.9,
- 1.03,
- -2.4,
- -4.74,
- -10.69,
- -8.48,
- -6.66,
- -9.08,
- -9.47,
- -9.17,
- -9.42,
- -9.38,
- -9.23,
- -9.29,
- -9.42,
- -10.25,
- -9.69,
- -8.58,
- -7.57,
- -6.84,
- -6.91,
- -7.01,
- -7.02,
- -6.27,
- -6.06,
- -5.43,
- -5.33,
- -4.74,
- -3.54,
- -2.33,
- -1.69,
- -1.88,
- -0.74,
- 0.79,
- 5.54,
- 1.93,
- 8.62,
- 9.43,
- 8.07,
- 5.83,
- 1.71,
- 1.75,
- 5.5,
- 7.52,
- 8.71,
- 10.12,
- 12.61,
- 13.14,
- 13.13,
- 12.96,
- 15.25,
- 11.33,
- -2.85,
- -1.57,
- 1.06,
- 3.58,
- 3.38,
- 4.22,
- 5.97,
- 6.99,
- 8.07,
- 8.01,
- 9.01,
- 6.85,
- 0.98,
- -2.88,
- -0.86,
- -2.73,
- -2.18,
- -1.26,
- 0.17,
- -0.36,
- -0.02,
- 0.45,
- -2.01,
- -2.45,
- -2.52,
- -3.19,
- -0.85,
- -4.59,
- -3.75,
- -3.98,
- -3.77,
- -3.35,
- -1.19,
- 0.89,
- 0.92,
- 0.81,
- 0.8,
- -0.24,
- 0.68,
- 3.25,
- 0.4,
- 3.91,
- 5.72,
- 5.85,
- 4.15,
- 1.73,
- -0.59,
- -3.28,
- -5.47,
- -10.31,
- -11.44,
- -9.41,
- -6.25,
- -3.58,
- -2.31,
- -2.26,
- -0.61,
- 1.88,
- 3.73,
- 2.23,
- -5.3,
- -10.77,
- -12.99,
- -14.79,
- -14.9,
- -14.07,
- -12.26,
- -10.55,
- -8.6,
- -6.8,
- -5.03,
- -3.48,
- -1.67,
- -0.56,
- 0.78,
- 3.08,
- 5.2,
- 6.12,
- 5.45,
- 3.95,
- 3.7,
- 4.33,
- 5.44,
- 6.36,
- 6.17,
- 6.03,
- 6.22,
- 6.27,
- 6.36,
- 6.6,
- 7.16,
- 7.89,
- 8.52,
- 8.64,
- 9.69,
- 10.49,
- 11.57,
- 12.49,
- 12.72,
- 13.11,
- 12.91,
- 13.45,
- 14.17,
- 13.28,
- 10.84,
- 9.63,
- 8.17,
- 7.47,
- 7.52,
- 6.85,
- 5.66,
- 4.29,
- 3.41,
- 3.11,
- 3.35,
- 2.67,
- 2.56,
- 2.39,
- 2.23,
- 1.96,
- -0.16,
- -0.38,
- 0.38,
- 1.11,
- 1.38,
- 1.32,
- 2.67,
- 3.29,
- 4.26,
- 5.55,
- 6.13,
- 6.2,
- 5.62,
- 3.6,
- 1.72,
- -0.08,
- 3.36,
- 2.87,
- 0.92,
- -0.28,
- 1.25,
- 0.49,
- 0.48,
- -0.05,
- -1.96,
- -0.67,
- -2.61,
- -1.3,
- -3.9,
- -4.09,
- -3.15,
- -2.63,
- -4.15,
- -5.39,
- -4.87,
- -4.99,
- -4.89,
- -5.09,
- -5.69,
- -6.73,
- -5.78,
- -4.61,
- -2.82,
- -2.54,
- -3.1,
- -2.64,
- -3.66,
- -5.01,
- -2.57,
- -1.06,
- 0.52,
- 0.76,
- -2.12,
- -1.67,
- -1.33,
- -1.4,
- -1.42,
- -1.58,
- -1.73,
- -1.63,
- -1.36,
- -0.61,
- -0.63,
- -0.01,
- -0.51,
- -0.22,
- 0.14,
- -0.44,
- 0.78,
- 1.22,
- 1.2,
- 2.09,
- 2.28,
- 3.12,
- 3.89,
- 3.82,
- 4.48,
- 6.08,
- 8.82,
- 11.27,
- 11.98,
- 10.39,
- 11.25,
- 8.77,
- 7.56,
- 9.35,
- 9.93,
- 9.83,
- 9.64,
- 9.21,
- 9.08,
- 10.32,
- 9.41,
- 6.13,
- 8.02,
- 7.65,
- 7.53,
- 7.67,
- 6.79,
- 5.52,
- 4.86,
- 3.81,
- 1.23,
- 7.4,
- 8.47,
- 7.84,
- 7.39,
- 7.79,
- 7.39,
- 6.65,
- 6.11,
- 5.74,
- 5.44,
- 5.22,
- 4.39,
- 4.46,
- 5.34,
- 5.83,
- 5.84,
- 6.04,
- 6.1,
- 6.37,
- 7.33,
- 0.19,
- 0.85,
- 0.94,
- 1.95,
- 1.6,
- 0.85,
- 1.34,
- 1.25,
- 0.77,
- 0.84,
- -0.09,
- 0.54,
- -0.71,
- -1.2,
- -2.22,
- -1.23,
- 0.21,
- 0.07,
- 0.82,
- 0.09,
- -0.39,
- -0.66,
- -0.8,
- -0.04,
- -0.98,
- -0.68,
- -0.1,
- 0.02,
- -0.9,
- 0.69,
- 0.15,
- -0.74,
- -0.58,
- -1.02,
- -1.89,
- -0.12,
- 0.92,
- 1.22,
- 0.19,
- -0.45,
- -1.46,
- -1.04,
- -1.6,
- -1.21,
- -1.04,
- -0.05,
- -0.39,
- -0.71,
- -0.26,
- 1.31,
- 1.75,
- 1.97,
- 1.33,
- -0.29,
- -1.19,
- -1.52,
- -0.82,
- -0.06,
- 0.29,
- -0.71,
- -1.04,
- -1.03,
- 1.13,
- 1.3,
- 2.0,
- 2.0,
- 2.08,
- 1.41,
- -1.17,
- -3.1,
- -4.95,
- -7.02,
- -9.79,
- -9.67,
- -8.1,
- -9.42,
- -9.57,
- -9.6,
- -9.9,
- -10.5,
- -10.13,
- -10.74,
- -9.92,
- -8.99,
- -8.88,
- -8.83,
- -9.37,
- -9.11,
- -8.09,
- -7.44,
- -6.96,
- -6.4,
- -5.43,
- -3.55,
- -1.79,
- 5.09,
- 5.53,
- 7.52,
- 8.59,
- 7.49,
- -0.34,
- -4.57,
- 2.94,
- 6.7,
- 9.33,
- 13.34,
- 14.37,
- 13.5,
- 14.7,
- 5.6,
- 7.91,
- 13.52,
- 14.38,
- 15.21,
- 13.38,
- 12.36,
- 12.98,
- 10.23,
- 4.21,
- -3.45,
- 1.06,
- 4.33,
- 6.32,
- 8.63,
- 9.01,
- 10.93,
- 11.43,
- 12.25,
- 12.14,
- 8.51,
- -2.23,
- -1.96,
- -2.0,
- -2.66,
- -1.21,
- -1.55,
- -2.33,
- -2.36,
- -2.0,
- -0.84,
- 0.1,
- -0.69,
- -2.04,
- -3.05,
- -3.6,
- 0.6,
- -1.58,
- -4.07,
- -2.9,
- 0.01,
- 1.5,
- 2.89,
- -3.16,
- -0.92,
- 1.37,
- 3.13,
- 3.97,
- 3.57,
- 6.27,
- 8.28,
- 10.75,
- 10.3,
- 9.09,
- 5.79,
- 2.56,
- 2.21,
- -4.65,
- -7.69,
- -4.87,
- -1.89,
- -0.16,
- 0.42,
- 0.49,
- 0.7,
- 1.52,
- 3.68,
- 5.51,
- 5.49,
- 0.0,
- -6.14,
- -11.64,
- -12.85,
- -14.11,
- -13.33,
- -11.85,
- -9.52,
- -7.5,
- -6.11,
- -4.36,
- -2.57,
- -0.9,
- 0.87,
- 2.24,
- 4.18,
- 5.93,
- 6.97,
- 6.59,
- 5.4,
- 4.29,
- 5.49,
- 6.73,
- 7.78,
- 8.24,
- 7.96,
- 8.23,
- 8.08,
- 8.38,
- 8.09,
- 8.43,
- 9.0,
- 9.93,
- 9.83,
- 10.85,
- 12.22,
- 13.76,
- 14.99,
- 15.95,
- 16.92,
- 17.54,
- 18.19,
- 17.26,
- 14.59,
- 14.28,
- 11.35,
- 9.66,
- 9.54,
- 7.56,
- 5.73,
- 4.18,
- 4.07,
- 3.48,
- 2.75,
- 2.4,
- 2.39,
- 2.58,
- 3.08,
- 3.12,
- 2.14,
- -0.03,
- 0.41,
- 1.28,
- 1.98,
- 2.09,
- 1.83,
- 2.23,
- 2.97,
- 3.81,
- 4.36,
- 3.98,
- 3.81,
- 1.88,
- 2.26,
- 1.87,
- 1.9,
- 4.51,
- 3.58,
- 1.5,
- 0.61,
- -0.1,
- 0.61,
- 0.18,
- -0.27,
- -1.36,
- -2.28,
- -3.56,
- -5.78,
- -6.14,
- -5.74,
- -4.17,
- -1.42,
- -2.2,
- -3.56,
- -3.64,
- -3.92,
- -3.09,
- -2.64,
- -3.65,
- -4.4,
- -5.36,
- -3.48,
- -3.69,
- -3.96,
- -3.08,
- -2.13,
- -2.05,
- -1.84,
- -1.35,
- -0.64,
- -0.84,
- 0.04,
- 0.71,
- 0.36,
- -0.66,
- -0.83,
- -1.25,
- -1.77,
- -0.75,
- -1.03,
- -1.13,
- -0.98,
- -0.74,
- -1.68,
- -0.74,
- -0.28,
- -0.32,
- 0.42,
- 0.57,
- 0.31,
- 0.18,
- 1.32,
- 2.05,
- 2.96,
- 5.86,
- 1.79,
- 3.27,
- 8.11,
- 9.8,
- 10.16,
- 10.33,
- 10.19,
- 9.81,
- 10.43,
- 9.41,
- 9.07,
- 9.48,
- 9.13,
- 6.88,
- 8.86,
- 8.7,
- 8.37,
- 7.76,
- 7.59,
- 7.02,
- 5.37,
- 3.43,
- 1.51,
- 1.72,
- 1.46,
- 5.81,
- 7.72,
- 7.76,
- 7.3,
- 6.54,
- 6.34,
- 6.77,
- 6.56,
- 5.8,
- 5.56,
- 5.4,
- 5.25,
- 4.95,
- 3.85,
- 3.64,
- 4.04,
- 4.61,
- 5.07,
- 5.5,
- 5.9,
- 6.41,
- 7.32,
- 6.2,
- 0.39,
- 0.54,
- 0.87,
- 0.77,
- 0.43,
- 0.69,
- 0.8,
- 0.41,
- 0.43,
- 0.39,
- 1.68,
- 1.87,
- 4.61,
- 1.78,
- 0.93,
- 0.15,
- 3.03,
- 0.6,
- 1.14,
- -1.43,
- 0.05,
- 1.74,
- 0.1,
- -1.9,
- -2.84,
- -1.28,
- -1.61,
- -1.24,
- -2.24,
- 0.05,
- -0.87,
- -2.01,
- -1.02,
- 0.97,
- 1.09,
- 1.46,
- -1.4,
- -1.98,
- -2.56,
- -2.75,
- -2.9,
- -3.23,
- -2.99,
- -2.69,
- -1.54,
- -0.7,
- -1.05,
- -1.42,
- -1.7,
- -2.0,
- -2.34,
- -2.71,
- -2.21,
- -3.04,
- -3.21,
- -3.39,
- -3.27,
- -1.6,
- 0.05,
- 1.2,
- 1.06,
- 1.23,
- 2.36,
- 1.64,
- 1.91,
- 0.66,
- 1.43,
- -0.29,
- -0.38,
- -3.59,
- -7.13,
- -9.32,
- -8.4,
- -10.97,
- -8.05,
- -10.28,
- -10.07,
- -9.56,
- -9.17,
- -10.62,
- -11.28,
- -10.75,
- -9.94,
- -9.78,
- -10.07,
- -9.97,
- -10.8,
- -8.05,
- -7.33,
- -6.66,
- -5.96,
- -4.38,
- -0.88,
- 3.25,
- -2.78,
- -4.24,
- 2.15,
- -2.61,
- 4.32,
- 6.56,
- 8.68,
- 0.78,
- 5.17,
- 8.93,
- 13.38,
- 12.42,
- 11.88,
- 13.31,
- 13.15,
- 16.85,
- 14.34,
- 16.36,
- 14.62,
- 12.12,
- 7.86,
- 8.61,
- 10.31,
- 8.7,
- 10.42,
- 11.0,
- 10.78,
- 11.38,
- 12.95,
- 12.12,
- 11.68,
- 11.72,
- 10.91,
- 11.27,
- 8.56,
- 1.66,
- -0.95,
- -1.34,
- -0.27,
- -1.27,
- -1.88,
- -2.62,
- -2.9,
- -3.18,
- -3.38,
- -2.65,
- -0.99,
- -0.58,
- -1.2,
- -0.71,
- -0.58,
- -2.17,
- 2.91,
- 4.16,
- 3.77,
- 1.96,
- 1.83,
- -3.3,
- -1.89,
- 1.98,
- 4.69,
- 2.81,
- 9.88,
- 8.29,
- 12.04,
- 13.97,
- 14.54,
- 11.98,
- 15.3,
- 13.27,
- 12.25,
- 16.63,
- 12.94,
- 7.6,
- 6.74,
- 4.49,
- 4.31,
- 3.08,
- 2.39,
- 2.45,
- 2.32,
- 4.19,
- 6.32,
- 6.45,
- 2.83,
- -4.5,
- -8.69,
- -12.53,
- -13.04,
- -11.36,
- -10.19,
- -8.47,
- -6.71,
- -4.82,
- -2.43,
- -0.42,
- 0.74,
- 2.15,
- 3.69,
- 5.19,
- 6.62,
- 7.55,
- 8.15,
- 8.28,
- 7.19,
- 7.28,
- 7.98,
- 9.04,
- 9.48,
- 9.69,
- 8.69,
- 8.0,
- 9.53,
- 9.8,
- 8.64,
- 9.27,
- 10.08,
- 9.95,
- 11.35,
- 13.43,
- 15.47,
- 18.33,
- 19.3,
- 19.43,
- 19.13,
- 18.69,
- 16.04,
- 16.31,
- 12.91,
- 11.79,
- 10.53,
- 7.95,
- 5.36,
- 5.4,
- 4.56,
- 3.47,
- 2.04,
- 2.32,
- 2.81,
- 3.02,
- 2.91,
- 3.19,
- 2.93,
- 1.63,
- 0.5,
- 1.4,
- 2.22,
- 1.73,
- 1.18,
- 1.19,
- 1.51,
- 2.2,
- 2.56,
- 2.44,
- 1.89,
- 0.97,
- 1.13,
- 2.19,
- 2.21,
- 3.47,
- 2.38,
- 2.92,
- 0.35,
- -1.0,
- 0.46,
- 1.31,
- 1.62,
- -0.9,
- -1.09,
- -2.09,
- 1.14,
- -1.8,
- -4.86,
- -7.07,
- -6.04,
- -3.17,
- -2.32,
- -2.03,
- -2.56,
- -3.24,
- -3.07,
- -4.05,
- -4.41,
- -4.35,
- -3.67,
- -2.49,
- -2.77,
- -2.31,
- -2.35,
- -2.36,
- -2.53,
- -2.04,
- -3.27,
- -3.71,
- -1.21,
- -0.27,
- -1.39,
- -0.13,
- -2.09,
- -2.28,
- -1.79,
- -1.01,
- -0.52,
- -1.72,
- -2.66,
- -2.89,
- -1.96,
- -0.65,
- -0.22,
- 0.68,
- -0.32,
- 1.28,
- 3.15,
- 4.27,
- 2.11,
- 1.77,
- 1.33,
- 3.44,
- 5.23,
- 5.68,
- 5.25,
- 6.44,
- 7.46,
- 7.58,
- 8.26,
- 7.7,
- 7.23,
- 7.69,
- 8.09,
- 7.6,
- 5.68,
- 7.46,
- 7.26,
- 6.55,
- 5.59,
- 5.02,
- 5.77,
- 5.35,
- 3.85,
- 3.26,
- 1.35,
- 4.36,
- 7.2,
- 6.71,
- 6.27,
- 6.13,
- 6.02,
- 5.88,
- 5.73,
- 5.43,
- 5.07,
- 4.65,
- 4.23,
- 4.09,
- 4.17,
- 4.62,
- 4.48,
- 4.18,
- 4.2,
- 4.02,
- 4.14,
- 4.33,
- 4.39,
- 4.73,
- 5.16,
- 3.14,
- 0.04,
- -0.51,
- -0.68,
- -0.61,
- -0.45,
- 0.3,
- 1.11,
- 1.87,
- 2.49,
- 3.08,
- 4.49,
- 7.82,
- 7.58,
- 3.68,
- 3.2,
- 1.83,
- 4.0,
- -0.03,
- 0.39,
- -0.3,
- -0.85,
- 0.95,
- -1.11,
- -2.22,
- -1.12,
- -0.92,
- -0.52,
- -2.11,
- -3.19,
- -1.36,
- -0.89,
- -0.65,
- -1.14,
- -0.97,
- 0.43,
- 2.8,
- 4.11,
- 1.28,
- -1.43,
- -3.44,
- -3.26,
- -3.96,
- -4.6,
- -4.5,
- -4.32,
- -3.94,
- -3.5,
- -3.21,
- -3.55,
- -4.26,
- -2.02,
- -1.0,
- 0.3,
- -0.28,
- -0.28,
- -0.02,
- -1.66,
- -1.28,
- -0.9,
- 0.54,
- 1.33,
- 3.04,
- 2.11,
- 1.67,
- 0.1,
- -1.62,
- -0.32,
- -2.91,
- 0.33,
- -4.35,
- -6.83,
- -8.26,
- -7.77,
- -7.37,
- -8.99,
- -8.89,
- -8.46,
- -7.96,
- -7.52,
- -6.48,
- -5.62,
- -5.69,
- -8.18,
- -10.2,
- -10.97,
- -11.39,
- -10.23,
- -11.17,
- -7.34,
- -4.11,
- -1.24,
- 2.73,
- 8.97,
- 13.45,
- 10.69,
- 9.63,
- 2.79,
- 1.08,
- -2.4,
- 2.81,
- 6.74,
- 3.25,
- 4.31,
- 8.6,
- 11.19,
- 11.79,
- 11.09,
- 16.75,
- 16.71,
- 16.18,
- 13.83,
- 9.9,
- 9.65,
- 10.14,
- 12.58,
- 11.57,
- 14.29,
- 12.42,
- 13.38,
- 13.43,
- 12.72,
- 11.08,
- 10.6,
- 9.81,
- 11.08,
- 11.87,
- 11.52,
- 11.36,
- 10.8,
- 6.77,
- 3.31,
- -2.19,
- -2.48,
- -1.8,
- -0.57,
- -0.63,
- -0.64,
- -0.68,
- -1.45,
- -1.25,
- -1.64,
- -1.21,
- 0.81,
- 0.85,
- -1.6,
- -0.15,
- 3.88,
- 2.97,
- 1.69,
- 1.5,
- 1.24,
- 2.06,
- -0.74,
- 2.48,
- 5.51,
- 5.87,
- 6.48,
- 4.96,
- 10.65,
- 13.97,
- 17.33,
- 19.48,
- 22.69,
- 23.81,
- 22.82,
- 23.12,
- 20.7,
- 15.83,
- 14.62,
- 9.68,
- 7.74,
- 5.58,
- 5.62,
- 2.59,
- 1.93,
- 3.02,
- 6.26,
- 6.84,
- 7.21,
- 1.19,
- -7.11,
- -10.64,
- -10.63,
- -11.18,
- -9.2,
- -8.64,
- -7.11,
- -5.36,
- -3.56,
- -1.59,
- 0.71,
- 2.14,
- 3.56,
- 4.07,
- 5.59,
- 6.87,
- 7.75,
- 8.9,
- 9.67,
- 9.39,
- 9.96,
- 10.73,
- 10.69,
- 10.07,
- 10.96,
- 10.77,
- 10.13,
- 10.27,
- 10.02,
- 9.81,
- 9.62,
- 9.66,
- 10.76,
- 12.18,
- 14.49,
- 16.56,
- 18.15,
- 19.42,
- 18.98,
- 16.67,
- 17.79,
- 13.78,
- 13.65,
- 12.33,
- 9.89,
- 7.45,
- 5.94,
- 5.74,
- 3.87,
- 2.44,
- 2.96,
- 2.76,
- 2.75,
- 2.75,
- 2.36,
- 2.65,
- 2.54,
- 1.79,
- 1.07,
- 1.54,
- 1.68,
- 0.85,
- 0.3,
- 0.07,
- 0.43,
- 1.18,
- 1.49,
- 1.62,
- 1.1,
- 1.16,
- 1.31,
- 1.84,
- 2.38,
- 3.09,
- 2.46,
- 1.67,
- 4.1,
- -0.61,
- -1.92,
- 1.04,
- 0.64,
- -2.11,
- -2.17,
- -2.06,
- -0.96,
- 0.6,
- -2.91,
- -3.46,
- -3.32,
- -8.79,
- -1.93,
- -3.5,
- -1.79,
- -2.1,
- -3.28,
- -3.09,
- -3.98,
- -4.31,
- -3.46,
- -3.25,
- -3.28,
- -3.05,
- -2.42,
- -3.12,
- -2.64,
- -1.73,
- -2.48,
- -2.22,
- -2.24,
- -2.07,
- -2.07,
- -3.66,
- -1.83,
- 0.5,
- 0.68,
- -0.19,
- -0.49,
- -0.89,
- 0.05,
- -1.04,
- -1.17,
- -0.84,
- -0.06,
- 1.01,
- 3.4,
- 4.48,
- 5.42,
- 1.6,
- 1.31,
- 2.42,
- 3.15,
- 3.43,
- 3.59,
- 3.11,
- 3.29,
- 3.75,
- 4.6,
- 5.25,
- 5.4,
- 5.54,
- 5.34,
- 5.3,
- 5.65,
- 4.55,
- 3.72,
- 5.72,
- 5.47,
- 5.93,
- 4.1,
- 1.98,
- 2.83,
- 1.72,
- 0.27,
- 2.97,
- 7.11,
- 6.15,
- 6.67,
- 4.23,
- 4.24,
- 4.19,
- 4.48,
- 4.67,
- 4.64,
- 4.8,
- 4.34,
- 3.53,
- 3.16,
- 3.08,
- 3.57,
- 3.99,
- 4.38,
- 4.45,
- 4.07,
- 3.56,
- 3.17,
- 3.02,
- 2.52,
- 1.99,
- 2.28,
- 0.14,
- -1.32,
- -2.21,
- -2.47,
- -2.31,
- -2.6,
- -2.46,
- -0.09,
- 2.68,
- 5.1,
- 7.01,
- 8.31,
- 10.05,
- 4.89,
- 1.86,
- 0.73,
- 2.88,
- 5.95,
- -2.18,
- -1.54,
- -1.37,
- -0.02,
- -0.68,
- -0.75,
- -0.8,
- -2.33,
- -1.07,
- -1.78,
- 0.94,
- -0.42,
- -0.14,
- -1.81,
- -1.27,
- -1.34,
- -1.3,
- -0.75,
- 0.53,
- 1.15,
- 0.32,
- 1.34,
- 1.5,
- -0.95,
- -3.54,
- -4.29,
- -4.68,
- -5.33,
- -6.18,
- -6.63,
- -5.25,
- -2.31,
- -1.01,
- -1.75,
- -1.5,
- -0.52,
- 2.86,
- 2.33,
- 0.52,
- 1.44,
- -1.41,
- -1.13,
- -0.61,
- -0.52,
- 2.47,
- 4.33,
- 3.48,
- 2.37,
- -0.56,
- -4.04,
- -0.15,
- -3.64,
- -6.3,
- -7.17,
- -6.9,
- -6.47,
- -7.13,
- -7.28,
- -7.48,
- -6.53,
- -4.01,
- -3.51,
- -3.29,
- -5.31,
- -7.76,
- -6.3,
- -6.04,
- -3.2,
- -7.73,
- -8.61,
- -6.07,
- -3.38,
- 0.7,
- 0.85,
- -0.43,
- 0.41,
- 6.18,
- 4.81,
- -1.6,
- 2.13,
- 1.17,
- 8.32,
- 12.25,
- 6.14,
- 6.27,
- 4.63,
- 0.37,
- 1.94,
- 3.87,
- -1.78,
- 1.65,
- -1.49,
- 6.36,
- 12.02,
- 10.58,
- 13.32,
- 12.05,
- 11.73,
- 11.42,
- 10.75,
- 10.73,
- 10.35,
- 9.2,
- 9.43,
- 9.71,
- 12.36,
- 14.43,
- 14.85,
- 14.48,
- 12.51,
- 11.18,
- 10.73,
- 10.25,
- 6.6,
- 4.64,
- -4.63,
- -3.27,
- -1.05,
- 0.66,
- 0.93,
- 1.74,
- 2.73,
- 1.34,
- -1.29,
- 0.5,
- -1.48,
- -4.0,
- -0.77,
- -0.48,
- 1.56,
- 2.51,
- 4.02,
- 1.69,
- 2.83,
- 3.64,
- 3.06,
- 3.59,
- 4.36,
- 6.66,
- 7.9,
- 5.11,
- 4.19,
- 11.81,
- 17.48,
- 20.31,
- 22.93,
- 24.56,
- 25.61,
- 24.72,
- 22.68,
- 20.75,
- 18.46,
- 15.67,
- 14.03,
- 9.94,
- 7.46,
- 3.49,
- 2.2,
- 2.91,
- 4.78,
- 5.92,
- 7.0,
- 8.06,
- -0.29,
- -5.06,
- -7.23,
- -8.73,
- -9.88,
- -8.4,
- -7.18,
- -5.81,
- -3.36,
- -1.92,
- -0.93,
- 1.56,
- 3.86,
- 5.14,
- 5.45,
- 6.13,
- 7.22,
- 8.59,
- 9.87,
- 10.61,
- 10.68,
- 11.13,
- 11.51,
- 11.85,
- 11.92,
- 11.52,
- 10.55,
- 9.57,
- 9.83,
- 10.37,
- 10.45,
- 10.33,
- 10.54,
- 11.56,
- 12.49,
- 13.72,
- 14.28,
- 14.93,
- 15.3,
- 16.64,
- 14.25,
- 13.53,
- 12.66,
- 10.78,
- 9.2,
- 6.75,
- 7.3,
- 4.35,
- 2.81,
- 3.52,
- 3.29,
- 2.1,
- 2.28,
- 2.34,
- 1.93,
- 1.88,
- 1.36,
- 1.16,
- 1.1,
- 1.22,
- 0.87,
- 0.0,
- -0.13,
- -0.63,
- -0.39,
- 0.43,
- 0.78,
- 0.35,
- 0.02,
- 1.16,
- 1.31,
- 1.2,
- 0.91,
- 2.25,
- 1.34,
- 4.72,
- 2.11,
- 6.65,
- 2.4,
- -1.66,
- -0.15,
- -1.16,
- -0.9,
- -0.5,
- -0.29,
- -3.94,
- -4.64,
- -3.95,
- -4.62,
- -5.45,
- -3.63,
- -5.16,
- -5.44,
- -2.9,
- -3.58,
- -6.01,
- -6.53,
- -6.82,
- -6.05,
- -5.03,
- -4.03,
- -3.8,
- -2.39,
- -3.03,
- -2.51,
- -1.67,
- -2.77,
- -2.95,
- -3.92,
- -3.8,
- -2.06,
- -0.5,
- -0.57,
- -0.88,
- -0.64,
- 0.28,
- 0.24,
- 0.65,
- 1.69,
- 0.75,
- 0.76,
- 0.05,
- 0.42,
- 2.3,
- 1.98,
- 1.56,
- 1.32,
- 0.95,
- 0.8,
- 1.94,
- 1.71,
- 0.35,
- -0.49,
- -0.05,
- 0.01,
- -0.28,
- 0.62,
- 2.01,
- 2.43,
- 2.31,
- 1.73,
- 0.62,
- 1.38,
- 1.88,
- 2.1,
- 2.49,
- 3.23,
- 2.86,
- 0.9,
- -1.35,
- -2.76,
- 3.14,
- 6.98,
- 5.58,
- 6.35,
- 5.21,
- 4.65,
- 4.18,
- 3.69,
- 3.39,
- 3.18,
- 3.28,
- 3.41,
- 3.27,
- 3.19,
- 3.25,
- 3.58,
- 3.73,
- 2.96,
- 2.5,
- 2.24,
- 2.03,
- 1.78,
- 1.37,
- 0.89,
- 0.57,
- -0.12,
- -0.39,
- -0.05,
- -1.73,
- -2.85,
- -4.0,
- -4.25,
- -4.59,
- -2.42,
- -1.46,
- -0.94,
- 0.36,
- 1.04,
- 2.0,
- 4.36,
- 4.63,
- 1.71,
- 2.62,
- -0.13,
- -0.08,
- 1.43,
- 3.85,
- 0.77,
- -0.26,
- -1.05,
- -1.43,
- -1.46,
- 0.24,
- -3.3,
- -3.4,
- -1.84,
- -0.58,
- 0.49,
- 1.53,
- 1.2,
- -0.19,
- -2.7,
- -2.67,
- -1.4,
- 0.96,
- -0.62,
- -1.08,
- 1.45,
- 0.32,
- -1.3,
- -1.27,
- -4.38,
- -4.21,
- -4.17,
- -2.96,
- -2.63,
- -3.42,
- -2.64,
- -2.22,
- -3.04,
- -1.85,
- -1.52,
- -1.12,
- -1.54,
- 0.03,
- -0.64,
- -1.84,
- -1.1,
- 1.07,
- 0.55,
- -1.93,
- 2.96,
- 3.56,
- 3.47,
- 2.71,
- 0.49,
- 3.2,
- 4.8,
- -1.94,
- -5.0,
- -6.67,
- -7.82,
- -8.41,
- -7.5,
- -7.42,
- -6.45,
- -6.05,
- -4.79,
- -3.97,
- -3.11,
- -1.79,
- 0.34,
- 3.35,
- 2.2,
- 0.21,
- -1.78,
- 4.1,
- 5.58,
- 3.18,
- 3.38,
- 4.71,
- 2.44,
- 4.46,
- 3.04,
- 2.9,
- 0.86,
- -0.78,
- -0.13,
- -3.33,
- -9.64,
- -4.32,
- 3.83,
- 3.75,
- -7.98,
- -1.77,
- 3.85,
- -0.73,
- -11.14,
- -5.11,
- 1.43,
- 5.36,
- 7.23,
- 5.81,
- 6.26,
- 8.01,
- 10.88,
- 11.84,
- 12.28,
- 12.48,
- 13.89,
- 14.15,
- 15.33,
- 14.3,
- 13.25,
- 14.01,
- 12.28,
- 10.95,
- 10.1,
- 10.51,
- 4.68,
- 5.79,
- -1.38,
- -0.29,
- -1.1,
- -0.73,
- 0.78,
- 3.23,
- 5.12,
- 3.25,
- 2.05,
- 3.6,
- 1.95,
- -1.17,
- -2.59,
- -2.29,
- -1.32,
- -0.05,
- 0.57,
- 0.62,
- 2.34,
- 4.07,
- 5.97,
- 7.55,
- 8.33,
- 11.25,
- 11.5,
- 8.75,
- 12.78,
- 8.79,
- 10.48,
- 15.7,
- 19.48,
- 21.96,
- 23.37,
- 23.71,
- 22.94,
- 20.57,
- 18.48,
- 17.66,
- 15.68,
- 10.58,
- 8.99,
- 5.08,
- 3.12,
- 3.2,
- 4.49,
- 5.27,
- 6.91,
- 8.07,
- 6.2,
- -0.73,
- -5.79,
- -8.29,
- -8.93,
- -7.52,
- -7.14,
- -6.4,
- -4.23,
- -2.33,
- -1.26,
- -0.72,
- 1.86,
- 4.68,
- 6.51,
- 6.57,
- 6.73,
- 7.73,
- 8.75,
- 9.64,
- 10.34,
- 10.83,
- 10.65,
- 10.66,
- 11.05,
- 11.19,
- 11.46,
- 10.31,
- 10.86,
- 10.84,
- 11.03,
- 11.16,
- 11.03,
- 11.73,
- 12.42,
- 12.97,
- 13.11,
- 12.66,
- 14.31,
- 12.76,
- 11.18,
- 11.18,
- 10.37,
- 9.77,
- 7.71,
- 8.1,
- 5.38,
- 3.3,
- 3.71,
- 3.36,
- 2.55,
- 2.38,
- 2.13,
- 2.37,
- 1.84,
- 1.68,
- 0.6,
- 0.62,
- 0.29,
- -0.04,
- -0.61,
- -1.11,
- -0.91,
- -1.08,
- -1.1,
- -0.26,
- -0.12,
- -1.04,
- 0.02,
- -1.69,
- 0.64,
- 0.77,
- 0.72,
- -1.78,
- 0.23,
- 0.46,
- 2.6,
- -0.45,
- 3.41,
- 2.38,
- 1.36,
- -1.23,
- -1.04,
- -1.51,
- -4.46,
- -2.74,
- -2.84,
- -2.49,
- -1.41,
- -3.91,
- -3.41,
- -2.74,
- -6.06,
- -4.62,
- -4.85,
- -7.16,
- -7.75,
- -7.57,
- -8.66,
- -7.56,
- -7.28,
- -6.35,
- -5.96,
- -5.3,
- -4.19,
- -2.12,
- -4.45,
- -3.09,
- -3.33,
- -2.23,
- -2.21,
- -0.85,
- -0.01,
- -0.72,
- -0.27,
- -0.99,
- -0.06,
- -0.13,
- 0.46,
- 0.43,
- 1.08,
- 1.33,
- 1.44,
- 1.06,
- -1.22,
- -2.15,
- -2.84,
- -3.09,
- -2.95,
- -2.31,
- -2.11,
- -2.49,
- -3.0,
- -4.25,
- -3.74,
- -3.6,
- -3.02,
- -2.8,
- -1.89,
- -3.18,
- -4.29,
- -3.55,
- -3.49,
- -1.93,
- -1.18,
- -3.01,
- -1.81,
- -0.74,
- -0.34,
- 4.88,
- 5.91,
- 5.35,
- 4.55,
- 5.37,
- 4.27,
- 3.95,
- 3.65,
- 3.04,
- 2.39,
- 1.81,
- 1.83,
- 1.41,
- 1.22,
- 1.62,
- 2.06,
- 2.32,
- 1.98,
- 1.47,
- 0.62,
- -0.3,
- -0.66,
- -0.66,
- -0.59,
- -0.45,
- -0.57,
- -0.9,
- -1.67,
- -2.08,
- -2.25,
- -3.39,
- -4.56,
- -5.7,
- -6.17,
- -6.15,
- -4.34,
- -1.35,
- -0.57,
- -0.89,
- 0.5,
- -3.39,
- -0.78,
- 3.85,
- 6.35,
- 5.81,
- 1.53,
- 2.2,
- 4.23,
- 3.58,
- 0.36,
- -1.45,
- -2.27,
- -2.83,
- -2.26,
- -0.14,
- 1.58,
- 1.28,
- -2.8,
- -2.71,
- -1.93,
- 0.08,
- 0.99,
- 1.37,
- -1.53,
- -1.54,
- -1.73,
- 0.53,
- -0.74,
- -1.25,
- -2.78,
- -2.67,
- -4.12,
- -5.45,
- -4.25,
- -1.47,
- 1.0,
- 1.19,
- 1.18,
- 1.05,
- -1.12,
- -0.41,
- -0.16,
- 0.23,
- -0.79,
- -1.96,
- 0.41,
- 1.02,
- -0.09,
- 0.92,
- -1.58,
- -2.69,
- -0.6,
- 2.84,
- -1.09,
- 5.33,
- 3.48,
- 3.11,
- 2.83,
- 4.62,
- 7.88,
- 4.26,
- -1.5,
- -4.1,
- -6.49,
- -8.22,
- -9.19,
- -9.06,
- -8.31,
- -8.25,
- -7.71,
- -7.24,
- -3.52,
- -1.33,
- -1.26,
- 0.98,
- -1.18,
- -2.12,
- -1.35,
- 5.03,
- 3.94,
- 1.53,
- 4.18,
- 2.13,
- 4.38,
- -2.77,
- -4.7,
- -5.11,
- -3.52,
- -4.53,
- -5.54,
- -1.73,
- -0.86,
- -8.06,
- -6.9,
- -5.23,
- -6.59,
- -6.31,
- -1.37,
- 3.19,
- 10.28,
- 14.0,
- 16.02,
- 14.81,
- 14.3,
- 6.17,
- 3.59,
- 6.77,
- 9.7,
- 10.93,
- 11.93,
- 11.93,
- 11.42,
- 10.55,
- 9.3,
- 9.5,
- 10.01,
- 7.82,
- 9.54,
- 10.34,
- 5.65,
- 5.49,
- 2.58,
- 0.24,
- 0.15,
- -1.12,
- -2.11,
- 0.43,
- 2.46,
- 5.88,
- 6.14,
- 4.78,
- 6.66,
- 6.08,
- -0.61,
- -1.62,
- -4.68,
- -4.29,
- -3.82,
- -3.19,
- -2.35,
- -1.5,
- -0.03,
- 2.7,
- 5.24,
- 8.62,
- 10.92,
- 12.53,
- 12.25,
- 14.04,
- 16.64,
- 15.65,
- 13.6,
- 11.08,
- 16.43,
- 18.79,
- 19.97,
- 21.71,
- 21.46,
- 20.37,
- 18.76,
- 17.46,
- 16.04,
- 12.04,
- 9.83,
- 7.81,
- 4.22,
- 4.19,
- 4.46,
- 5.33,
- 6.77,
- 7.52,
- 7.94,
- 4.41,
- -1.03,
- -5.02,
- -7.38,
- -7.8,
- -6.0,
- -6.27,
- -4.44,
- -3.29,
- -1.6,
- -0.58,
- -0.7,
- 2.57,
- 4.81,
- 6.28,
- 6.87,
- 6.95,
- 7.44,
- 8.35,
- 9.36,
- 10.06,
- 10.38,
- 10.87,
- 10.5,
- 10.87,
- 11.04,
- 11.33,
- 11.23,
- 10.82,
- 11.09,
- 11.26,
- 11.28,
- 11.53,
- 11.73,
- 12.03,
- 11.75,
- 12.7,
- 11.66,
- 11.59,
- 9.82,
- 9.32,
- 9.12,
- 8.64,
- 7.7,
- 6.23,
- 3.99,
- 3.88,
- 3.28,
- 2.31,
- 2.08,
- 2.42,
- 2.97,
- 2.4,
- 2.0,
- 1.48,
- 0.26,
- -0.08,
- -0.68,
- -1.28,
- -1.66,
- -1.86,
- -1.67,
- -1.7,
- -1.58,
- -0.83,
- -0.44,
- -0.66,
- 1.23,
- -0.11,
- -0.92,
- -0.9,
- -0.32,
- -2.05,
- -0.21,
- -0.28,
- 0.49,
- -2.14,
- -2.76,
- 1.02,
- -1.03,
- -0.41,
- -0.82,
- 0.95,
- 1.76,
- 0.3,
- -1.91,
- -1.78,
- -2.23,
- -3.34,
- -1.72,
- -4.41,
- -5.53,
- -6.19,
- -5.26,
- -6.7,
- -8.88,
- -7.72,
- -9.27,
- -7.49,
- -7.25,
- -7.63,
- -7.4,
- -6.91,
- -5.36,
- -3.57,
- -3.71,
- -4.58,
- -4.24,
- -3.45,
- -2.2,
- -0.97,
- -0.9,
- -0.7,
- 0.18,
- -0.48,
- -0.79,
- 0.02,
- 0.18,
- -0.34,
- -1.38,
- -4.14,
- -2.87,
- -3.74,
- -4.36,
- -5.15,
- -5.41,
- -4.48,
- -4.0,
- -3.83,
- -4.16,
- -4.67,
- -6.89,
- -7.97,
- -7.42,
- -7.64,
- -6.77,
- -5.82,
- -5.94,
- -6.53,
- -7.18,
- -7.56,
- -7.12,
- -6.81,
- -6.87,
- -6.03,
- -3.62,
- 4.12,
- 6.41,
- 4.66,
- 4.61,
- 5.14,
- 4.05,
- 3.44,
- 2.87,
- 2.35,
- 1.69,
- 0.95,
- 0.23,
- 0.01,
- 0.19,
- 0.05,
- 0.55,
- -0.33,
- -0.34,
- -0.69,
- -1.18,
- -1.68,
- -2.13,
- -2.61,
- -2.86,
- -2.98,
- -3.02,
- -3.11,
- -2.69,
- -2.58,
- -2.8,
- -3.03,
- -3.43,
- -4.36,
- -5.75,
- -7.19,
- -7.88,
- -7.45,
- -3.55,
- -1.76,
- 0.01,
- -3.81,
- 0.26,
- 1.33,
- 0.57,
- -0.22,
- 1.57,
- 0.24,
- 0.45,
- 0.3,
- -1.3,
- -1.21,
- -2.43,
- -3.73,
- -4.36,
- -3.02,
- -2.26,
- -1.99,
- -1.49,
- -0.2,
- 0.61,
- 0.85,
- -1.91,
- -1.82,
- -0.54,
- -0.92,
- 0.62,
- -1.91,
- -1.92,
- -0.93,
- 0.96,
- -2.29,
- -5.9,
- -5.35,
- -3.37,
- -1.69,
- -0.9,
- -0.54,
- 2.0,
- 2.62,
- 4.99,
- 4.49,
- 5.29,
- 3.28,
- 3.11,
- 0.92,
- 1.59,
- 1.37,
- 1.57,
- 0.86,
- 1.39,
- -2.24,
- 1.99,
- 0.06,
- -2.62,
- -2.81,
- 1.57,
- -0.56,
- 1.55,
- 2.1,
- 1.69,
- 1.72,
- 3.74,
- 3.14,
- 1.47,
- 0.17,
- -3.04,
- -5.89,
- -7.08,
- -7.01,
- -7.65,
- -5.94,
- -3.81,
- -4.99,
- -5.16,
- -1.66,
- -0.02,
- 1.49,
- 1.53,
- 0.45,
- 0.62,
- 5.09,
- 9.73,
- 11.62,
- 7.88,
- 7.86,
- 0.06,
- 0.23,
- -0.82,
- 1.29,
- 4.21,
- 7.34,
- 9.99,
- 10.89,
- 9.47,
- 5.0,
- -6.57,
- -9.95,
- -2.05,
- 8.98,
- 12.07,
- 12.48,
- 12.58,
- 14.03,
- 14.46,
- 13.35,
- 11.02,
- 9.61,
- 8.85,
- 8.33,
- 9.32,
- 8.94,
- 9.7,
- 9.68,
- 10.64,
- 10.17,
- 11.57,
- 10.87,
- 8.64,
- 7.37,
- 8.15,
- 7.77,
- 7.24,
- -1.57,
- -2.2,
- -1.57,
- -5.36,
- -4.99,
- -4.04,
- 0.92,
- 3.2,
- 1.21,
- 1.22,
- 1.87,
- 3.53,
- -1.06,
- -0.67,
- 2.84,
- 2.16,
- -1.78,
- -5.5,
- -4.96,
- -2.77,
- -1.08,
- -0.38,
- 2.27,
- 4.89,
- 5.62,
- 5.46,
- 5.22,
- 9.52,
- 12.66,
- 14.86,
- 16.42,
- 17.13,
- 16.22,
- 15.62,
- 15.18,
- 16.56,
- 17.63,
- 17.83,
- 17.52,
- 16.57,
- 16.23,
- 16.9,
- 14.37,
- 12.59,
- 8.43,
- 4.47,
- 4.22,
- 4.41,
- 5.45,
- 6.39,
- 8.12,
- 8.4,
- 6.81,
- 4.27,
- -1.19,
- -4.86,
- -5.84,
- -4.44,
- -4.51,
- -4.26,
- -3.07,
- -1.74,
- -0.36,
- 0.44,
- 1.46,
- 3.36,
- 4.77,
- 5.88,
- 6.72,
- 6.94,
- 7.44,
- 8.58,
- 9.42,
- 9.76,
- 9.81,
- 10.0,
- 10.54,
- 10.85,
- 10.68,
- 10.86,
- 10.85,
- 10.98,
- 11.1,
- 10.97,
- 10.72,
- 10.71,
- 11.44,
- 11.95,
- 10.3,
- 9.6,
- 8.64,
- 9.57,
- 8.41,
- 8.4,
- 6.93,
- 6.86,
- 4.1,
- 3.34,
- 2.9,
- 2.02,
- 2.03,
- 1.77,
- 2.04,
- 2.28,
- 1.58,
- 2.35,
- 1.76,
- -0.89,
- -1.12,
- -1.73,
- -2.18,
- -2.33,
- -2.52,
- -2.15,
- -2.01,
- -1.76,
- -0.88,
- 0.05,
- 0.34,
- 0.84,
- 0.72,
- -1.44,
- 1.55,
- -0.96,
- 1.18,
- 0.21,
- -1.54,
- -2.13,
- 0.55,
- -1.11,
- -1.81,
- 2.51,
- -1.09,
- 0.82,
- -1.17,
- -2.48,
- 0.26,
- 1.3,
- -0.15,
- -0.91,
- -0.16,
- -0.19,
- -1.73,
- -3.48,
- -5.52,
- -4.87,
- -5.9,
- -6.95,
- -8.16,
- -8.75,
- -7.24,
- -7.35,
- -6.32,
- -6.76,
- -6.71,
- -7.32,
- -6.2,
- -5.5,
- -5.61,
- -6.04,
- -4.8,
- -3.12,
- -0.78,
- -0.71,
- 0.04,
- 1.22,
- 0.23,
- -1.5,
- -0.93,
- -0.8,
- -5.81,
- -7.76,
- -7.69,
- -8.52,
- -6.86,
- -6.48,
- -8.32,
- -8.77,
- -8.4,
- -6.95,
- -6.1,
- -5.25,
- -6.32,
- -10.2,
- -10.22,
- -10.15,
- -9.98,
- -9.44,
- -9.43,
- -9.08,
- -9.05,
- -11.13,
- -4.99,
- 3.32,
- 3.21,
- 6.41,
- 5.99,
- 3.89,
- 5.67,
- 5.3,
- 3.78,
- 4.99,
- 4.51,
- 2.68,
- 1.95,
- 1.39,
- 0.74,
- -0.23,
- -0.93,
- -1.11,
- -0.92,
- -0.88,
- -0.89,
- -0.99,
- -2.01,
- -2.66,
- -3.23,
- -3.76,
- -3.9,
- -3.97,
- -4.03,
- -4.11,
- -4.68,
- -4.5,
- -4.18,
- -4.07,
- -4.03,
- -3.98,
- -4.27,
- -4.37,
- -4.61,
- -5.49,
- -6.48,
- -7.01,
- -5.07,
- -2.35,
- -0.46,
- 0.3,
- 0.39,
- -0.55,
- 0.81,
- 1.77,
- 1.14,
- 1.42,
- 0.67,
- -1.97,
- -3.56,
- -3.7,
- -4.88,
- -5.67,
- -5.39,
- -4.83,
- -4.17,
- -3.42,
- -4.01,
- -3.02,
- -1.95,
- -0.94,
- -1.39,
- -1.05,
- -0.03,
- -1.98,
- -0.85,
- 0.59,
- 0.59,
- -2.48,
- -1.58,
- -0.75,
- -1.14,
- -4.31,
- -3.17,
- -4.61,
- -1.57,
- -1.44,
- 0.15,
- 1.22,
- 2.15,
- 4.7,
- 6.05,
- 4.8,
- 6.5,
- 6.47,
- 2.4,
- 2.43,
- 1.09,
- 2.47,
- 2.64,
- -0.48,
- 4.26,
- -1.14,
- -0.69,
- 0.61,
- -1.37,
- -3.55,
- -2.89,
- -0.9,
- 1.63,
- 3.27,
- 3.1,
- 3.88,
- 3.6,
- 6.62,
- 4.06,
- 0.89,
- -0.59,
- -1.31,
- 1.72,
- 0.77,
- 0.47,
- -0.34,
- -0.19,
- -0.19,
- 0.31,
- -0.23,
- -2.35,
- 0.61,
- 1.9,
- 1.37,
- 1.4,
- 3.48,
- 2.31,
- 7.89,
- 12.25,
- 12.41,
- 14.25,
- 12.75,
- 11.81,
- 12.53,
- 13.86,
- 13.8,
- 13.29,
- 13.07,
- 11.61,
- 10.66,
- 8.43,
- 9.54,
- 8.2,
- 5.34,
- 7.13,
- 9.93,
- 8.03,
- 8.38,
- 6.02,
- 4.0,
- -0.46,
- 7.03,
- 6.21,
- 5.88,
- 7.23,
- 7.13,
- 4.52,
- 4.78,
- 9.17,
- 9.36,
- 8.76,
- 6.32,
- 8.74,
- 2.94,
- -1.17,
- -1.39,
- -2.58,
- -4.07,
- -1.52,
- -2.38,
- -1.27,
- 1.17,
- 2.87,
- 6.1,
- 3.96,
- 2.78,
- 4.45,
- 3.9,
- 0.69,
- -0.82,
- 2.08,
- 5.38,
- 3.81,
- 4.44,
- 1.57,
- -4.71,
- -3.37,
- 2.56,
- 1.3,
- 2.38,
- 4.29,
- 5.39,
- 8.25,
- 5.35,
- 7.58,
- 12.46,
- 15.27,
- 17.05,
- 17.96,
- 17.89,
- 17.81,
- 17.17,
- 16.49,
- 15.77,
- 15.44,
- 15.68,
- 16.74,
- 17.42,
- 15.92,
- 11.36,
- 8.22,
- 6.24,
- 5.35,
- 4.88,
- 5.42,
- 7.04,
- 7.47,
- 7.24,
- 7.1,
- 4.3,
- 1.42,
- -2.77,
- -3.6,
- -2.62,
- -1.68,
- -1.39,
- -2.59,
- -2.21,
- -0.97,
- 0.06,
- 0.69,
- 2.23,
- 4.0,
- 4.44,
- 5.42,
- 6.71,
- 6.85,
- 7.59,
- 8.52,
- 9.04,
- 9.26,
- 8.75,
- 9.19,
- 10.21,
- 10.7,
- 10.82,
- 10.46,
- 10.09,
- 10.11,
- 9.9,
- 10.05,
- 10.2,
- 10.18,
- 10.02,
- 10.05,
- 7.72,
- 8.36,
- 7.59,
- 7.77,
- 6.11,
- 7.28,
- 4.62,
- 3.28,
- 2.5,
- 1.84,
- 1.58,
- 1.63,
- 1.63,
- 1.51,
- 1.9,
- 1.13,
- 1.75,
- 1.38,
- -2.43,
- -2.04,
- -2.66,
- -3.05,
- -2.96,
- -2.84,
- -2.66,
- -2.28,
- -1.72,
- -0.72,
- 0.07,
- 0.99,
- 2.56,
- 6.3,
- 0.09,
- 1.79,
- 0.47,
- 0.2,
- 3.27,
- 3.42,
- 2.82,
- -1.07,
- -0.95,
- -2.15,
- -1.44,
- -1.22,
- 1.5,
- -2.26,
- 0.21,
- -0.29,
- 1.35,
- 0.09,
- 1.63,
- 1.32,
- 0.89,
- 1.48,
- 0.38,
- -3.06,
- -2.5,
- -1.87,
- -4.87,
- -8.33,
- -6.54,
- -6.05,
- -4.6,
- -3.95,
- -3.61,
- -5.13,
- -4.81,
- -4.5,
- -4.59,
- -4.62,
- -5.08,
- -5.21,
- -2.92,
- -1.48,
- -0.99,
- 0.29,
- -0.28,
- -0.1,
- -1.66,
- -1.62,
- -2.65,
- -4.86,
- -6.89,
- -9.51,
- -8.66,
- -7.59,
- -9.19,
- -10.67,
- -10.58,
- -10.26,
- -8.63,
- -8.58,
- -6.03,
- -4.5,
- -7.91,
- -10.1,
- -11.81,
- -9.73,
- 0.25,
- 4.64,
- 1.81,
- 6.16,
- 8.03,
- 6.87,
- 7.76,
- 6.75,
- 5.57,
- 4.72,
- 3.06,
- 3.75,
- 4.02,
- 4.16,
- 3.65,
- 2.39,
- 1.47,
- 0.79,
- -0.07,
- -0.99,
- -1.47,
- -2.01,
- -1.93,
- -1.68,
- -1.89,
- -2.52,
- -3.47,
- -3.92,
- -3.84,
- -4.3,
- -4.95,
- -5.44,
- -5.36,
- -5.35,
- -5.35,
- -5.1,
- -4.97,
- -4.99,
- -5.13,
- -5.08,
- -5.09,
- -5.13,
- -4.87,
- -4.58,
- -4.54,
- -4.42,
- -3.82,
- -2.49,
- 1.46,
- 1.37,
- 0.42,
- 1.69,
- 0.52,
- 1.5,
- 2.07,
- 3.45,
- 2.52,
- -0.49,
- -1.25,
- -1.83,
- -3.2,
- -4.85,
- -5.55,
- -5.21,
- -4.64,
- -5.67,
- -6.66,
- -5.22,
- -4.0,
- -2.86,
- -1.09,
- 0.1,
- 0.62,
- -2.01,
- -4.44,
- -1.52,
- 0.32,
- 0.89,
- -1.42,
- -3.28,
- -0.58,
- -1.29,
- -1.43,
- -4.48,
- -2.7,
- -2.44,
- -1.94,
- -2.09,
- -0.34,
- -0.02,
- 1.6,
- 1.74,
- 2.63,
- 1.54,
- 1.0,
- -0.16,
- -0.62,
- -0.47,
- -1.85,
- -0.8,
- 1.83,
- 1.53,
- -2.03,
- 0.8,
- 1.14,
- 0.38,
- -3.1,
- -2.31,
- -0.15,
- 1.82,
- 2.73,
- 3.46,
- 3.01,
- 2.46,
- -1.56,
- -1.74,
- 3.75,
- 4.28,
- 3.62,
- 3.91,
- 3.03,
- -0.18,
- 0.99,
- 1.32,
- -1.98,
- -1.15,
- 0.36,
- 2.09,
- 0.23,
- 1.09,
- 1.67,
- 0.83,
- 2.26,
- 2.93,
- -1.62,
- 3.23,
- 6.72,
- 8.72,
- 9.75,
- 10.51,
- 10.81,
- 11.47,
- 11.76,
- 9.42,
- 3.54,
- 5.21,
- 7.37,
- 5.28,
- 4.68,
- 5.19,
- 6.44,
- 5.41,
- 5.38,
- 7.07,
- 7.22,
- 9.21,
- 9.22,
- 5.77,
- 2.17,
- 3.07,
- 0.36,
- 1.11,
- -0.44,
- 0.54,
- -0.82,
- 4.07,
- 6.98,
- 4.47,
- 2.52,
- 3.86,
- 4.24,
- -3.18,
- -1.58,
- -0.41,
- -0.21,
- -2.21,
- -4.74,
- -0.77,
- -3.07,
- -2.22,
- 1.92,
- 5.01,
- 4.13,
- 5.08,
- 4.59,
- 7.12,
- 2.63,
- 0.42,
- 3.15,
- 5.71,
- 6.55,
- 7.85,
- 3.89,
- 2.36,
- 3.2,
- 1.14,
- 2.68,
- 4.19,
- 2.47,
- 6.43,
- 10.02,
- 11.86,
- 11.33,
- 11.21,
- 13.67,
- 15.88,
- 17.5,
- 17.85,
- 17.62,
- 17.83,
- 17.45,
- 16.86,
- 15.87,
- 16.04,
- 15.8,
- 13.94,
- 9.54,
- 7.51,
- 7.18,
- 6.31,
- 5.96,
- 6.86,
- 6.89,
- 6.89,
- 6.62,
- 4.33,
- 2.81,
- 1.22,
- -0.8,
- -2.24,
- -1.59,
- -1.07,
- -0.1,
- -1.11,
- -1.92,
- -1.25,
- -0.8,
- 0.2,
- 0.98,
- 2.93,
- 3.84,
- 4.85,
- 5.45,
- 5.95,
- 6.23,
- 6.76,
- 7.32,
- 7.87,
- 8.4,
- 8.59,
- 9.0,
- 9.66,
- 10.11,
- 9.99,
- 9.42,
- 8.64,
- 8.86,
- 8.69,
- 8.22,
- 8.27,
- 8.61,
- 8.02,
- 6.62,
- 6.41,
- 6.69,
- 5.57,
- 6.82,
- 4.98,
- 3.35,
- 2.31,
- 1.84,
- 1.18,
- 1.02,
- 1.32,
- 1.08,
- 0.79,
- 1.78,
- 0.43,
- -0.12,
- 0.1,
- -2.94,
- -2.79,
- -3.04,
- -3.48,
- -3.51,
- -3.16,
- -2.72,
- -2.4,
- -1.82,
- -0.61,
- 0.65,
- 1.87,
- 4.66,
- 7.89,
- 8.33,
- 1.62,
- 1.07,
- -0.09,
- 3.65,
- 4.6,
- 5.77,
- -1.65,
- 0.32,
- -1.49,
- -0.44,
- 0.56,
- 1.41,
- 1.07,
- -0.84,
- -0.24,
- 2.17,
- 0.59,
- 1.75,
- 2.75,
- 3.24,
- 2.49,
- 3.04,
- 3.03,
- 2.63,
- 2.98,
- -1.7,
- -3.38,
- -3.17,
- -5.53,
- -3.39,
- -2.59,
- -2.64,
- -3.63,
- -3.85,
- -4.2,
- -2.67,
- -2.66,
- -4.03,
- -4.01,
- -3.29,
- -1.86,
- -0.91,
- -0.16,
- -1.16,
- -1.4,
- -1.28,
- -2.91,
- -2.32,
- -1.25,
- -1.98,
- -6.49,
- -5.04,
- -9.42,
- -10.31,
- -12.96,
- -11.56,
- -10.99,
- -9.85,
- -8.63,
- -9.98,
- -8.87,
- -3.55,
- 6.13,
- 9.59,
- 8.91,
- 7.74,
- 6.3,
- 5.62,
- 5.58,
- 5.11,
- 4.47,
- 4.51,
- 4.48,
- 4.36,
- 3.76,
- 3.41,
- 4.16,
- 3.08,
- 2.39,
- 1.02,
- 0.57,
- -0.54,
- -1.09,
- -1.86,
- -2.52,
- -2.92,
- -2.93,
- -2.95,
- -3.16,
- -3.26,
- -4.1,
- -4.91,
- -5.66,
- -6.13,
- -5.19,
- -5.3,
- -5.68,
- -6.16,
- -6.28,
- -6.03,
- -5.7,
- -5.53,
- -6.01,
- -6.01,
- -5.79,
- -5.89,
- -5.5,
- -5.36,
- -4.99,
- -4.34,
- -3.73,
- -2.8,
- -1.34,
- -0.36,
- 1.13,
- 0.02,
- 1.31,
- 0.8,
- 0.31,
- 0.5,
- 1.05,
- 1.7,
- -2.26,
- -2.38,
- -1.85,
- -0.63,
- 1.08,
- 0.84,
- -1.07,
- -0.22,
- -1.6,
- -1.64,
- -1.31,
- -1.97,
- -1.77,
- -4.99,
- -1.35,
- -1.32,
- -4.65,
- -3.74,
- -2.21,
- -0.11,
- 0.62,
- 0.47,
- -2.17,
- -0.73,
- -4.39,
- -2.44,
- -4.01,
- -2.52,
- -2.34,
- -0.37,
- 0.31,
- 1.0,
- 0.74,
- -0.62,
- 1.74,
- -0.65,
- 1.08,
- 1.81,
- 1.04,
- 0.53,
- 2.51,
- 1.23,
- -0.39,
- -0.35,
- -1.15,
- 2.2,
- 0.92,
- 3.17,
- 0.78,
- -3.15,
- 0.4,
- 0.27,
- 4.17,
- 5.05,
- 3.83,
- 2.12,
- 0.81,
- -4.34,
- -2.76,
- -5.42,
- -0.65,
- 2.57,
- 2.91,
- 0.12,
- -4.76,
- -4.56,
- -5.74,
- -3.71,
- -2.27,
- 1.03,
- -0.08,
- 1.78,
- 1.68,
- 1.78,
- 1.17,
- 1.43,
- 1.77,
- 1.4,
- -1.18,
- -1.47,
- 1.57,
- 4.87,
- 6.24,
- 6.65,
- 6.87,
- 4.26,
- 5.42,
- 4.92,
- 7.71,
- 8.02,
- 7.16,
- 8.19,
- 5.11,
- 3.47,
- 3.97,
- 5.9,
- 9.34,
- 10.68,
- 9.4,
- 11.68,
- 5.6,
- 8.74,
- 2.96,
- 3.02,
- -1.36,
- -1.14,
- 1.06,
- 1.44,
- 3.65,
- 5.09,
- 3.9,
- 5.29,
- 4.78,
- 3.78,
- -1.44,
- -1.52,
- 1.06,
- 3.4,
- 4.16,
- 3.47,
- 2.5,
- 0.62,
- 3.23,
- 3.87,
- 4.98,
- 4.78,
- 3.18,
- 7.51,
- 9.35,
- 9.01,
- 3.26,
- 5.33,
- 9.45,
- 9.7,
- 9.27,
- 4.14,
- 2.85,
- 3.94,
- 1.6,
- 0.46,
- 3.76,
- 2.96,
- -0.66,
- 4.72,
- 9.37,
- 10.64,
- 11.2,
- 11.03,
- 11.99,
- 13.95,
- 15.26,
- 15.38,
- 15.37,
- 15.1,
- 14.6,
- 14.34,
- 14.55,
- 14.22,
- 10.72,
- 7.82,
- 6.94,
- 5.95,
- 5.98,
- 6.86,
- 6.35,
- 6.54,
- 7.3,
- 5.29,
- 3.21,
- 2.42,
- 1.3,
- -0.21,
- -1.29,
- -1.51,
- -0.81,
- -0.02,
- -0.75,
- -1.88,
- -1.46,
- -1.06,
- 0.31,
- 0.84,
- 1.62,
- 2.74,
- 3.53,
- 4.24,
- 4.53,
- 4.66,
- 5.11,
- 5.55,
- 5.98,
- 6.53,
- 7.05,
- 7.72,
- 8.65,
- 8.94,
- 8.88,
- 8.71,
- 8.05,
- 7.44,
- 7.04,
- 6.92,
- 6.95,
- 6.27,
- 5.82,
- 4.94,
- 4.97,
- 4.74,
- 6.4,
- 4.05,
- 3.05,
- 2.4,
- 1.77,
- 1.41,
- 0.9,
- 0.65,
- 0.44,
- -0.12,
- 0.08,
- 0.5,
- -0.96,
- -1.85,
- -3.08,
- -3.42,
- -3.22,
- -3.03,
- -3.26,
- -3.32,
- -3.24,
- -3.03,
- -2.51,
- -1.48,
- -0.35,
- 1.09,
- 2.75,
- 5.91,
- 8.83,
- 10.22,
- 5.13,
- 5.02,
- 5.79,
- 1.11,
- 1.45,
- 0.95,
- 1.17,
- 0.66,
- -4.62,
- 0.2,
- 5.32,
- 3.03,
- 1.94,
- -0.05,
- 0.79,
- -0.68,
- 0.73,
- 2.02,
- 2.53,
- 3.88,
- 2.64,
- 2.08,
- 3.67,
- 3.69,
- 4.94,
- 3.89,
- -2.52,
- -3.15,
- -6.61,
- -3.48,
- -4.59,
- -4.62,
- -4.28,
- -3.29,
- -3.78,
- -3.11,
- -2.83,
- -3.09,
- -2.72,
- -2.04,
- -0.97,
- -0.66,
- -3.31,
- -3.25,
- -2.42,
- -1.22,
- -2.37,
- -0.48,
- 0.94,
- 0.52,
- -1.59,
- -2.61,
- -3.34,
- -1.49,
- -0.45,
- 0.28,
- 0.29,
- 5.7,
- 6.92,
- 5.45,
- 5.07,
- 5.71,
- 6.37,
- 6.99,
- 6.41,
- 5.55,
- 4.81,
- 4.54,
- 3.73,
- 2.93,
- 2.42,
- 2.2,
- 1.65,
- 1.63,
- 1.72,
- 2.84,
- 2.26,
- 0.42,
- -0.1,
- -1.29,
- -2.0,
- -2.39,
- -2.8,
- -3.46,
- -3.93,
- -4.05,
- -4.44,
- -4.88,
- -4.99,
- -4.61,
- -5.8,
- -6.83,
- -7.26,
- -7.49,
- -7.55,
- -7.41,
- -7.33,
- -7.1,
- -6.91,
- -6.91,
- -6.79,
- -6.75,
- -6.86,
- -6.68,
- -6.49,
- -6.31,
- -5.95,
- -5.71,
- -5.28,
- -4.71,
- -3.89,
- -2.8,
- -1.96,
- -0.91,
- -0.57,
- 0.22,
- -0.09,
- 0.67,
- 0.72,
- 0.99,
- -0.47,
- -2.4,
- -0.82,
- 1.21,
- 1.45,
- -0.09,
- -1.69,
- 1.15,
- 0.46,
- -1.6,
- -1.24,
- -0.95,
- -1.14,
- -2.85,
- -1.91,
- -1.0,
- -4.75,
- -4.26,
- -3.99,
- -3.51,
- -2.37,
- -0.78,
- 0.78,
- 0.14,
- -1.86,
- -8.16,
- -7.25,
- -6.27,
- -8.74,
- -6.82,
- -5.0,
- -6.65,
- -4.7,
- -1.47,
- -1.03,
- -3.58,
- -1.4,
- 1.04,
- 2.2,
- 3.87,
- 5.9,
- 5.84,
- 6.27,
- 4.26,
- 3.68,
- 0.76,
- -2.44,
- -0.08,
- 2.71,
- 3.13,
- 1.92,
- 3.12,
- 1.85,
- 4.0,
- 1.55,
- -0.48,
- -0.45,
- -3.01,
- -2.71,
- -5.86,
- -2.73,
- -7.23,
- -4.07,
- -2.12,
- 0.05,
- 0.28,
- -5.02,
- -1.67,
- -2.08,
- -0.24,
- -1.2,
- 3.29,
- 1.27,
- 2.74,
- 1.59,
- 0.8,
- 0.34,
- 2.26,
- 1.77,
- 2.16,
- 1.03,
- 0.64,
- 0.88,
- 0.25,
- 0.03,
- 4.13,
- 3.22,
- 5.1,
- 5.3,
- 4.9,
- 6.89,
- 6.01,
- 5.11,
- 4.46,
- 3.84,
- 3.21,
- 0.93,
- 3.81,
- 4.77,
- 4.66,
- 7.35,
- 11.59,
- 6.76,
- 6.75,
- 3.61,
- 2.65,
- -1.81,
- -0.78,
- 3.12,
- -0.94,
- 3.0,
- 3.02,
- 2.41,
- 3.16,
- 4.76,
- 3.97,
- -2.08,
- 1.6,
- 3.3,
- 4.16,
- 6.29,
- 5.17,
- 0.32,
- 0.91,
- 1.73,
- 3.37,
- 4.31,
- 4.12,
- 2.38,
- 6.07,
- 7.9,
- 6.38,
- 3.98,
- 9.08,
- 10.17,
- 12.03,
- 10.71,
- 0.51,
- -1.09,
- 2.15,
- 3.2,
- -4.73,
- 2.3,
- -4.06,
- -0.01,
- 3.69,
- 6.14,
- 7.54,
- 9.11,
- 10.7,
- 11.59,
- 12.51,
- 13.3,
- 13.27,
- 13.49,
- 13.68,
- 13.92,
- 13.62,
- 11.81,
- 7.91,
- 6.18,
- 6.1,
- 5.25,
- 5.45,
- 7.1,
- 6.47,
- 6.31,
- 7.18,
- 7.17,
- 4.77,
- 3.17,
- 3.19,
- 1.73,
- 0.67,
- -0.74,
- -1.45,
- -1.15,
- -0.52,
- -0.17,
- -0.87,
- -1.46,
- -1.53,
- -1.14,
- 0.03,
- 0.71,
- 1.45,
- 1.69,
- 2.65,
- 3.16,
- 3.6,
- 4.05,
- 4.37,
- 4.51,
- 5.18,
- 5.67,
- 5.95,
- 6.98,
- 7.26,
- 6.9,
- 6.53,
- 6.11,
- 5.95,
- 5.94,
- 5.91,
- 5.13,
- 4.28,
- 3.39,
- 2.95,
- 4.12,
- 5.66,
- 4.46,
- 3.03,
- 2.03,
- 1.54,
- 0.85,
- 0.24,
- 0.02,
- -0.23,
- -0.63,
- -1.02,
- -0.99,
- -0.89,
- -1.73,
- -2.75,
- -3.8,
- -4.21,
- -3.82,
- -3.2,
- -2.94,
- -2.66,
- -2.32,
- -2.27,
- -2.16,
- -1.33,
- -0.05,
- 1.37,
- 3.04,
- 5.5,
- 7.65,
- 9.9,
- 4.78,
- 0.23,
- 3.56,
- 2.05,
- 5.42,
- 1.29,
- -0.46,
- 2.75,
- -2.69,
- 0.53,
- 3.23,
- 1.42,
- 2.94,
- 6.23,
- 4.47,
- 2.07,
- -0.92,
- 0.43,
- 2.54,
- -0.11,
- 1.58,
- 2.41,
- 4.26,
- 3.56,
- 5.16,
- 5.33,
- 4.12,
- -1.08,
- 1.55,
- -2.46,
- -3.27,
- -2.31,
- -2.2,
- -2.87,
- -2.64,
- -2.08,
- -1.61,
- -1.78,
- -1.25,
- -1.87,
- 0.4,
- -0.77,
- -0.62,
- -3.22,
- -3.63,
- -2.36,
- -1.26,
- 0.9,
- 1.53,
- 2.68,
- 4.75,
- 7.6,
- 7.38,
- 6.82,
- 7.01,
- 6.87,
- 6.43,
- 6.04,
- 5.94,
- 5.37,
- 4.89,
- 4.56,
- 4.93,
- 4.83,
- 4.36,
- 3.91,
- 3.96,
- 3.32,
- 2.38,
- 1.69,
- 0.94,
- -0.34,
- -0.37,
- 0.22,
- 1.2,
- 1.07,
- -0.3,
- -1.29,
- -2.31,
- -3.1,
- -3.49,
- -3.45,
- -3.93,
- -4.52,
- -5.04,
- -5.45,
- -6.14,
- -6.4,
- -6.35,
- -6.25,
- -6.96,
- -7.47,
- -7.59,
- -7.83,
- -8.4,
- -8.73,
- -8.71,
- -8.16,
- -7.6,
- -7.49,
- -7.53,
- -7.61,
- -7.6,
- -7.3,
- -6.79,
- -6.37,
- -5.69,
- -5.48,
- -5.15,
- -4.26,
- -3.15,
- -2.08,
- -1.62,
- -1.59,
- -4.93,
- -4.49,
- -2.82,
- -2.43,
- -2.97,
- -3.18,
- -3.25,
- -3.39,
- 1.12,
- 0.95,
- 0.59,
- 0.43,
- -1.58,
- -3.45,
- -1.99,
- -0.66,
- -4.81,
- -3.16,
- -3.19,
- -3.66,
- -3.38,
- -3.52,
- -4.72,
- -3.67,
- -3.31,
- -3.48,
- -2.57,
- -1.14,
- -0.29,
- -0.23,
- -3.93,
- -4.22,
- -3.46,
- -4.31,
- -1.86,
- -4.74,
- -5.97,
- -4.81,
- -3.76,
- -2.81,
- -1.62,
- -3.43,
- -1.64,
- -0.82,
- 1.35,
- 3.0,
- 3.81,
- 3.66,
- 4.19,
- 2.8,
- 3.24,
- 3.2,
- 2.26,
- 0.68,
- 1.55,
- 1.87,
- 2.68,
- 1.5,
- 5.86,
- 4.22,
- 3.28,
- 1.0,
- 0.73,
- -1.45,
- -3.17,
- -5.31,
- -8.9,
- -5.47,
- -4.33,
- -3.08,
- -2.27,
- -1.02,
- -1.19,
- -0.89,
- 0.06,
- 0.38,
- 0.56,
- 1.06,
- 0.69,
- 0.08,
- 1.43,
- -0.02,
- -0.23,
- -0.82,
- -0.75,
- 0.1,
- 1.57,
- 1.27,
- 0.13,
- 2.71,
- 2.74,
- 3.02,
- 2.67,
- 2.22,
- 3.19,
- 3.96,
- 2.02,
- 1.52,
- 1.32,
- 3.48,
- 2.96,
- 4.24,
- 4.84,
- 5.23,
- 5.84,
- 6.09,
- 5.24,
- 2.89,
- 3.83,
- 5.6,
- 3.76,
- 0.58,
- 2.07,
- -0.93,
- 2.11,
- 2.93,
- 0.63,
- 0.93,
- 0.92,
- 1.0,
- 1.75,
- 1.62,
- 2.08,
- 3.55,
- 5.13,
- 5.07,
- 4.82,
- 4.73,
- 1.04,
- -0.05,
- 1.69,
- 2.94,
- 3.46,
- 3.53,
- 2.52,
- 4.52,
- 1.76,
- 4.17,
- 5.55,
- 6.99,
- 7.54,
- 3.56,
- 2.52,
- 2.65,
- 2.17,
- 1.79,
- 5.01,
- 0.14,
- 3.97,
- 5.62,
- 1.65,
- 2.23,
- 3.48,
- 4.84,
- 6.91,
- 8.69,
- 10.41,
- 11.63,
- 12.94,
- 13.55,
- 13.85,
- 13.71,
- 13.12,
- 12.45,
- 11.8,
- 9.34,
- 6.48,
- 4.25,
- 5.65,
- 7.83,
- 6.33,
- 5.96,
- 7.7,
- 6.89,
- 5.96,
- 3.47,
- 2.18,
- 2.15,
- 1.12,
- 0.04,
- -0.84,
- -1.68,
- -1.97,
- -1.75,
- -1.57,
- -1.18,
- -1.11,
- -1.86,
- -2.15,
- -1.56,
- -0.9,
- 0.0,
- 0.28,
- 0.77,
- 1.55,
- 2.14,
- 2.74,
- 2.88,
- 3.05,
- 3.41,
- 3.97,
- 4.48,
- 4.7,
- 4.53,
- 4.12,
- 3.79,
- 3.95,
- 4.4,
- 4.13,
- 3.34,
- 2.72,
- 2.32,
- 1.29,
- 4.03,
- 4.86,
- 3.47,
- 3.01,
- 2.3,
- 1.54,
- 0.99,
- 0.53,
- -0.1,
- -0.54,
- -1.08,
- -1.27,
- -1.71,
- -1.84,
- -1.93,
- -2.31,
- -3.09,
- -4.16,
- -4.58,
- -4.23,
- -3.8,
- -3.4,
- -2.5,
- -1.56,
- -1.0,
- -0.89,
- -0.65,
- 0.3,
- 1.63,
- 2.93,
- 4.77,
- 6.04,
- 7.17,
- 6.43,
- 7.08,
- -0.61,
- 1.86,
- 5.55,
- 12.9,
- 7.72,
- 9.68,
- 2.77,
- 1.3,
- -0.51,
- 4.76,
- 6.06,
- 5.89,
- 7.78,
- 5.5,
- 4.52,
- 2.18,
- -4.27,
- -1.23,
- 1.79,
- 2.59,
- 4.46,
- 2.65,
- 4.25,
- 1.61,
- 2.75,
- -0.04,
- -2.0,
- -2.45,
- -2.93,
- -0.32,
- -2.25,
- -2.77,
- -2.97,
- -1.77,
- -1.57,
- -0.88,
- -1.23,
- -0.86,
- -1.58,
- -0.42,
- 0.19,
- -0.58,
- -1.87,
- -2.09,
- -2.57,
- -0.83,
- 1.02,
- 3.51,
- 6.04,
- 6.3,
- 6.67,
- 5.71,
- 5.21,
- 5.29,
- 4.71,
- 3.89,
- 4.0,
- 4.2,
- 3.94,
- 3.99,
- 3.51,
- 3.04,
- 2.84,
- 2.87,
- 2.27,
- 1.64,
- 1.39,
- 1.16,
- 0.19,
- -0.62,
- -0.91,
- -0.77,
- -0.87,
- -1.47,
- -2.44,
- -3.11,
- -3.82,
- -4.15,
- -4.12,
- -4.38,
- -5.04,
- -5.39,
- -6.53,
- -6.81,
- -7.4,
- -7.64,
- -7.88,
- -7.77,
- -8.1,
- -8.16,
- -7.84,
- -7.67,
- -8.18,
- -8.99,
- -9.58,
- -9.42,
- -8.87,
- -7.98,
- -7.76,
- -7.69,
- -8.1,
- -7.66,
- -7.01,
- -6.34,
- -5.39,
- -5.11,
- -4.09,
- -3.51,
- -2.23,
- -0.86,
- 0.34,
- -0.03,
- -3.24,
- -2.46,
- -0.51,
- -0.08,
- 0.65,
- -0.06,
- 0.9,
- 1.73,
- -0.22,
- 0.62,
- -1.25,
- -3.87,
- -5.59,
- -5.81,
- -7.16,
- -9.54,
- -9.44,
- -8.53,
- -6.91,
- -6.22,
- -5.2,
- -4.92,
- -5.37,
- -4.08,
- -2.61,
- -2.52,
- -1.79,
- -1.22,
- -1.08,
- -1.03,
- 0.78,
- 2.61,
- 6.2,
- 2.7,
- -3.04,
- -3.41,
- -4.28,
- -3.93,
- -2.09,
- -2.1,
- -3.72,
- -3.33,
- -2.32,
- -0.57,
- 1.87,
- -0.08,
- 1.41,
- 2.6,
- 0.11,
- -0.09,
- 2.02,
- 2.08,
- 1.11,
- 0.39,
- 1.34,
- 0.61,
- 2.04,
- 3.27,
- 2.53,
- 1.8,
- 2.67,
- 3.43,
- 1.66,
- 1.34,
- 4.61,
- 2.45,
- -1.33,
- -1.07,
- -4.85,
- -3.39,
- -1.5,
- -0.18,
- 1.11,
- 0.55,
- -0.44,
- 0.31,
- 1.01,
- -0.05,
- -0.03,
- -0.72,
- 0.8,
- 1.11,
- -0.21,
- 0.32,
- -1.08,
- -0.45,
- 1.36,
- 1.23,
- 1.43,
- 0.76,
- 0.55,
- 1.08,
- 2.27,
- 1.5,
- -0.64,
- -1.27,
- -1.02,
- 0.46,
- 1.7,
- -0.64,
- -0.27,
- 1.52,
- 1.3,
- 2.6,
- 2.05,
- 4.38,
- 2.86,
- 5.64,
- 1.94,
- 2.18,
- 4.48,
- 0.5,
- 0.25,
- -1.08,
- 0.32,
- 1.2,
- -0.83,
- -0.07,
- -0.48,
- 1.27,
- 0.2,
- 0.42,
- 3.61,
- 4.45,
- 5.18,
- 5.06,
- 4.39,
- 3.49,
- 4.15,
- -1.4,
- 0.91,
- 1.79,
- 2.2,
- 2.6,
- 3.24,
- 0.49,
- 2.77,
- 2.33,
- 5.32,
- 1.87,
- 0.99,
- 3.66,
- 2.07,
- 0.48,
- 2.1,
- 2.91,
- 7.62,
- 6.81,
- 4.03,
- 0.34,
- 1.93,
- 1.05,
- 2.64,
- 3.64,
- 5.01,
- 6.48,
- 8.13,
- 9.43,
- 10.43,
- 11.11,
- 11.48,
- 11.5,
- 10.79,
- 10.19,
- 9.86,
- 9.44,
- 6.97,
- 6.63,
- 7.38,
- 6.38,
- 6.53,
- 7.13,
- 6.71,
- 6.6,
- 5.19,
- 2.28,
- 1.89,
- 1.33,
- 0.11,
- -1.2,
- -2.26,
- -2.72,
- -2.72,
- -2.69,
- -2.76,
- -2.44,
- -2.67,
- -2.65,
- -2.92,
- -2.84,
- -2.33,
- -1.79,
- -0.98,
- -0.74,
- -0.21,
- 0.19,
- 0.54,
- 0.73,
- 1.18,
- 1.66,
- 1.95,
- 1.86,
- 1.83,
- 1.88,
- 1.99,
- 1.8,
- 2.2,
- 2.18,
- 1.48,
- 1.33,
- 0.53,
- 0.33,
- 4.59,
- 4.79,
- 2.81,
- 2.41,
- 2.51,
- 1.69,
- 0.85,
- 0.17,
- 0.85,
- -0.48,
- -1.27,
- -2.69,
- -1.24,
- -2.3,
- -2.37,
- -3.27,
- -3.57,
- -3.79,
- -4.63,
- -4.37,
- -3.72,
- -3.19,
- -2.99,
- -3.15,
- -2.95,
- -1.35,
- -0.39,
- -0.06,
- 0.66,
- 1.74,
- 2.33,
- 3.86,
- 5.33,
- 6.44,
- 7.02,
- 7.14,
- 10.46,
- 0.28,
- -0.58,
- 1.91,
- 2.66,
- 2.4,
- 2.77,
- -0.06,
- 0.37,
- -0.01,
- 0.26,
- 3.16,
- 1.49,
- 1.9,
- 4.13,
- 3.9,
- -0.01,
- -5.4,
- -0.83,
- 0.4,
- 2.2,
- 3.22,
- 3.16,
- 2.76,
- 0.51,
- -2.13,
- -3.15,
- -2.3,
- 0.0,
- -0.58,
- -0.97,
- -0.94,
- -2.77,
- -2.41,
- -1.89,
- -1.31,
- 0.45,
- 1.52,
- -0.41,
- 0.31,
- 0.22,
- -0.86,
- -2.21,
- -3.91,
- -3.23,
- -1.89,
- 0.2,
- 2.18,
- 3.62,
- 4.09,
- 4.75,
- 4.3,
- 4.23,
- 3.69,
- 2.85,
- 1.87,
- 1.89,
- 2.95,
- 3.41,
- 2.79,
- 2.28,
- 1.67,
- 0.87,
- 0.35,
- 0.83,
- 1.42,
- 1.84,
- 1.58,
- 0.16,
- -1.16,
- -1.86,
- -2.31,
- -2.51,
- -3.9,
- -3.93,
- -4.25,
- -4.26,
- -4.53,
- -4.71,
- -5.47,
- -5.9,
- -6.36,
- -6.96,
- -7.85,
- -8.36,
- -8.69,
- -9.32,
- -9.68,
- -9.63,
- -9.25,
- -8.73,
- -8.4,
- -8.37,
- -8.45,
- -8.66,
- -9.58,
- -9.87,
- -9.23,
- -7.98,
- -7.47,
- -7.33,
- -7.1,
- -6.7,
- -6.0,
- -5.3,
- -4.36,
- -3.29,
- -2.32,
- -1.09,
- -0.26,
- 0.42,
- 0.75,
- 1.71,
- 1.29,
- 1.1,
- 1.35,
- 1.7,
- 0.9,
- 1.49,
- 1.05,
- 1.03,
- -0.38,
- -4.29,
- -5.75,
- -5.55,
- -5.79,
- -6.68,
- -8.03,
- -7.6,
- -6.88,
- -9.65,
- -4.34,
- -5.4,
- -6.8,
- -6.15,
- -4.85,
- -2.0,
- -2.48,
- -2.38,
- -2.3,
- -2.19,
- -0.68,
- 5.91,
- 10.71,
- 10.26,
- 5.0,
- -1.51,
- -4.37,
- -4.64,
- -3.82,
- -2.98,
- -3.05,
- -3.62,
- -2.11,
- -1.25,
- -0.77,
- 0.98,
- -0.26,
- -0.51,
- 0.62,
- 0.95,
- 2.56,
- 3.18,
- 2.91,
- 2.83,
- 2.14,
- 2.91,
- 0.22,
- -0.11,
- 0.69,
- 2.46,
- 3.15,
- 5.63,
- 0.53,
- 0.47,
- 3.79,
- 2.19,
- -0.94,
- 0.24,
- 1.22,
- -2.58,
- 0.51,
- -1.15,
- -1.16,
- 1.75,
- -0.25,
- 0.11,
- 0.99,
- 2.14,
- 4.89,
- -1.35,
- -0.51,
- -1.78,
- 0.61,
- 1.3,
- 1.4,
- 1.43,
- -1.45,
- 2.32,
- 0.71,
- -1.08,
- 0.43,
- 0.93,
- 1.11,
- 1.39,
- 0.51,
- -0.72,
- -2.87,
- -1.91,
- -2.13,
- 0.4,
- 0.38,
- -0.3,
- 0.42,
- -0.11,
- -0.43,
- 1.39,
- 1.57,
- 3.1,
- 5.03,
- 4.23,
- 0.55,
- 1.12,
- 3.09,
- -0.5,
- -1.05,
- 1.5,
- 0.87,
- 0.79,
- 2.17,
- 0.59,
- 2.15,
- 2.47,
- 3.51,
- 3.75,
- 3.12,
- 4.2,
- 4.18,
- 3.16,
- 2.22,
- 3.05,
- -1.02,
- -1.19,
- 0.26,
- 0.71,
- 1.52,
- 1.1,
- 3.14,
- 2.28,
- 1.32,
- 1.24,
- 1.79,
- -2.56,
- 2.58,
- 4.0,
- 4.82,
- 6.55,
- 4.46,
- 4.44,
- 4.47,
- 3.59,
- -0.3,
- -0.65,
- 0.83,
- 0.84,
- 1.49,
- 2.81,
- 4.0,
- 5.41,
- 6.63,
- 7.36,
- 7.72,
- 7.97,
- 7.56,
- 5.47,
- 5.12,
- 6.7,
- 6.7,
- 7.19,
- 6.41,
- 5.23,
- 5.42,
- 6.96,
- 7.06,
- 7.21,
- 6.81,
- 3.6,
- 2.3,
- 1.3,
- 0.38,
- -1.1,
- -1.84,
- -3.24,
- -3.49,
- -3.62,
- -3.99,
- -3.9,
- -3.84,
- -3.69,
- -4.1,
- -3.85,
- -4.08,
- -3.8,
- -3.27,
- -2.74,
- -2.26,
- -2.17,
- -2.22,
- -1.86,
- -1.19,
- -0.62,
- -0.33,
- -0.51,
- -0.79,
- -0.68,
- -0.42,
- -0.58,
- -0.38,
- -0.2,
- 0.0,
- -0.28,
- -0.8,
- 0.31,
- 4.68,
- 4.45,
- 3.14,
- 1.6,
- 1.87,
- 1.72,
- 1.06,
- 0.15,
- 0.26,
- 1.02,
- -1.05,
- -2.46,
- -2.65,
- -3.37,
- -3.83,
- -3.9,
- -4.1,
- -4.09,
- -4.61,
- -4.54,
- -4.4,
- -3.51,
- -2.72,
- -2.2,
- -1.42,
- -1.35,
- -0.48,
- 0.37,
- 1.02,
- 1.04,
- 1.21,
- 1.88,
- 3.13,
- 4.5,
- 6.03,
- 7.04,
- 8.1,
- 8.68,
- 7.65,
- 3.8,
- -0.49,
- 4.53,
- 2.55,
- 2.24,
- 3.15,
- 2.84,
- 1.23,
- 0.51,
- 0.78,
- 2.3,
- 2.0,
- -2.56,
- 4.41,
- 1.38,
- -3.03,
- -5.71,
- -3.81,
- -1.74,
- 0.39,
- 1.97,
- 3.31,
- 1.23,
- -2.5,
- -2.96,
- -1.04,
- 0.01,
- -0.59,
- -0.94,
- -0.46,
- -1.63,
- -1.96,
- -1.72,
- -0.25,
- -0.24,
- -2.25,
- -1.86,
- -0.29,
- -0.48,
- -2.35,
- -4.4,
- -4.52,
- -4.23,
- -2.0,
- -0.19,
- 1.66,
- 2.58,
- 4.05,
- 2.88,
- 3.8,
- 2.87,
- 2.65,
- 1.37,
- 0.05,
- 0.22,
- 2.04,
- 2.28,
- 0.97,
- 0.53,
- -0.49,
- -1.36,
- -2.05,
- -1.07,
- -0.5,
- -0.02,
- -0.25,
- -1.36,
- -2.26,
- -2.9,
- -4.05,
- -4.63,
- -4.82,
- -4.64,
- -4.34,
- -4.66,
- -5.03,
- -5.42,
- -6.02,
- -6.35,
- -6.98,
- -7.46,
- -8.28,
- -9.4,
- -10.54,
- -11.09,
- -11.1,
- -11.11,
- -10.84,
- -10.4,
- -9.74,
- -9.09,
- -8.85,
- -8.64,
- -8.39,
- -8.48,
- -9.24,
- -9.2,
- -8.44,
- -7.78,
- -7.2,
- -6.86,
- -5.32,
- -4.57,
- -3.63,
- -2.83,
- -2.19,
- -1.71,
- -1.3,
- -1.15,
- -1.08,
- -0.14,
- -0.63,
- 0.27,
- 1.82,
- -1.0,
- 0.49,
- 0.11,
- -0.65,
- -1.15,
- 1.69,
- 2.91,
- -1.82,
- -3.14,
- -5.0,
- -5.23,
- -4.71,
- -4.71,
- -5.15,
- -7.34,
- -2.01,
- -2.24,
- -4.04,
- -2.94,
- -2.74,
- -1.69,
- -1.72,
- -2.59,
- -2.42,
- -1.22,
- 1.29,
- 3.37,
- 3.03,
- 7.43,
- 6.0,
- -0.34,
- -5.05,
- -5.03,
- -4.51,
- -3.7,
- -4.61,
- -4.25,
- -3.47,
- -3.07,
- -0.2,
- 1.29,
- -0.85,
- -1.38,
- 0.18,
- 0.3,
- -1.17,
- 1.53,
- 3.53,
- 2.47,
- 3.43,
- 3.83,
- 4.33,
- 2.44,
- 0.39,
- 1.96,
- 2.64,
- 2.38,
- 3.56,
- -0.72,
- -0.11,
- 5.24,
- 0.08,
- -0.33,
- -0.46,
- -1.96,
- -1.42,
- -4.24,
- -3.68,
- -4.78,
- 0.28,
- 1.19,
- 4.08,
- 5.61,
- 4.13,
- -0.02,
- -1.58,
- 0.75,
- 0.01,
- 0.49,
- 0.44,
- 3.16,
- 1.35,
- -2.31,
- 0.73,
- -0.75,
- 0.0,
- -0.08,
- 1.71,
- 3.43,
- 3.77,
- 0.81,
- 2.43,
- -1.79,
- 3.46,
- 3.51,
- 2.66,
- 0.88,
- -0.8,
- 0.93,
- 0.32,
- -0.46,
- 0.43,
- 0.86,
- 3.27,
- 6.66,
- 6.9,
- 3.36,
- 2.36,
- -3.63,
- -1.41,
- 0.49,
- 0.81,
- 1.78,
- -0.45,
- -1.94,
- -3.19,
- -0.65,
- 2.95,
- 3.83,
- 3.04,
- 3.07,
- 0.82,
- 2.16,
- 1.44,
- 0.55,
- 1.45,
- -2.26,
- -0.67,
- -0.09,
- 0.64,
- 0.78,
- 0.82,
- 1.64,
- 1.25,
- 3.62,
- 1.05,
- 0.03,
- 2.27,
- 3.56,
- 2.17,
- 2.6,
- 3.04,
- 2.91,
- 3.14,
- 1.57,
- -0.37,
- -3.38,
- -4.38,
- -3.32,
- -1.48,
- -0.35,
- 0.96,
- 2.16,
- 3.18,
- 3.96,
- 4.22,
- 4.26,
- 3.76,
- 2.58,
- 3.32,
- 4.41,
- 6.84,
- 6.3,
- 4.03,
- 4.54,
- 6.59,
- 6.91,
- 6.7,
- 5.64,
- 4.7,
- 3.65,
- 2.06,
- 0.5,
- -0.91,
- -2.56,
- -3.77,
- -4.43,
- -4.41,
- -4.82,
- -4.87,
- -4.98,
- -4.55,
- -4.67,
- -4.83,
- -5.44,
- -5.37,
- -5.14,
- -4.81,
- -4.5,
- -4.19,
- -3.87,
- -3.59,
- -3.11,
- -2.69,
- -2.38,
- -2.38,
- -2.67,
- -2.75,
- -2.66,
- -2.7,
- -2.62,
- -2.15,
- -1.84,
- -2.1,
- -1.3,
- 0.76,
- 5.43,
- 3.61,
- 2.72,
- 1.69,
- 0.94,
- 0.62,
- 0.48,
- -0.04,
- -0.96,
- -1.82,
- -2.58,
- -2.39,
- -4.03,
- -4.01,
- -4.41,
- -4.88,
- -5.4,
- -5.48,
- -4.68,
- -4.25,
- -4.09,
- -4.37,
- -3.93,
- -3.18,
- -2.2,
- -2.28,
- -3.28,
- -2.76,
- -2.1,
- -1.22,
- -0.11,
- 0.9,
- 1.38,
- 2.22,
- 3.87,
- 5.41,
- 6.18,
- 7.32,
- 7.91,
- 7.99,
- 6.21,
- 3.61,
- 5.09,
- 0.01,
- 0.09,
- 0.28,
- 1.46,
- 1.91,
- 2.43,
- 1.7,
- 2.24,
- 1.36,
- 3.08,
- 2.38,
- 3.3,
- 5.61,
- 3.29,
- -1.56,
- -4.13,
- -1.48,
- 1.15,
- 3.09,
- 2.24,
- 0.46,
- -0.79,
- -2.3,
- 2.07,
- -2.1,
- -1.37,
- -1.03,
- -0.96,
- -1.08,
- 0.0,
- 0.44,
- 0.21,
- -5.36,
- -1.37,
- -0.41,
- -2.04,
- -3.66,
- -5.24,
- -5.06,
- -4.03,
- -2.21,
- -1.02,
- 2.42,
- 3.53,
- 1.92,
- 2.53,
- 2.41,
- 2.22,
- 2.29,
- 2.27,
- 0.8,
- -0.12,
- 0.19,
- -0.4,
- -0.64,
- -0.64,
- -0.7,
- -0.97,
- -3.47,
- -4.27,
- -3.04,
- -2.33,
- -3.19,
- -3.33,
- -3.77,
- -4.19,
- -4.79,
- -5.17,
- -5.13,
- -4.77,
- -5.01,
- -5.53,
- -5.49,
- -5.64,
- -6.41,
- -6.48,
- -6.86,
- -7.85,
- -9.79,
- -10.86,
- -11.64,
- -12.15,
- -12.57,
- -12.6,
- -12.46,
- -11.88,
- -11.31,
- -10.88,
- -9.75,
- -9.07,
- -8.93,
- -8.35,
- -7.84,
- -7.86,
- -8.07,
- -8.3,
- -7.94,
- -6.39,
- -7.48,
- -5.56,
- -4.42,
- -3.35,
- -2.72,
- -2.37,
- -2.64,
- -3.96,
- -1.8,
- -0.93,
- 0.98,
- -0.55,
- 0.53,
- -0.61,
- -0.97,
- -1.39,
- -0.55,
- 3.91,
- 3.18,
- 2.66,
- 1.97,
- 2.84,
- 1.54,
- -1.9,
- -0.86,
- -6.34,
- -4.59,
- -4.41,
- -7.46,
- -6.03,
- -5.19,
- -2.96,
- -1.75,
- -0.88,
- -0.26,
- 0.36,
- 0.6,
- 1.74,
- 3.19,
- 4.2,
- 5.8,
- 5.73,
- 4.29,
- -0.27,
- -1.29,
- -2.75,
- -4.33,
- -3.06,
- -1.78,
- -2.94,
- -4.91,
- -1.77,
- -0.65,
- 1.61,
- 0.8,
- 0.98,
- -1.28,
- -2.83,
- -3.65,
- -0.6,
- -1.21,
- -0.4,
- 1.36,
- 2.67,
- 3.91,
- 4.44,
- 3.32,
- 1.96,
- 1.86,
- 3.26,
- 2.69,
- 3.12,
- 7.29,
- 0.26,
- 4.46,
- -2.04,
- -1.15,
- -2.92,
- -2.55,
- -1.38,
- -2.63,
- -1.06,
- -0.55,
- -0.04,
- 2.41,
- 4.21,
- 2.58,
- 0.7,
- 0.15,
- 1.33,
- 3.53,
- 3.24,
- 1.03,
- 1.01,
- 4.66,
- 1.94,
- 0.56,
- -0.93,
- -0.88,
- -0.03,
- 0.97,
- 0.57,
- 5.61,
- 6.73,
- 4.85,
- 4.96,
- 4.4,
- 5.56,
- 5.47,
- 0.96,
- -0.23,
- 0.97,
- 1.27,
- 2.05,
- 1.3,
- 2.8,
- 3.6,
- 3.55,
- 2.38,
- 2.28,
- -0.17,
- -0.76,
- 0.12,
- 0.74,
- 0.49,
- 0.08,
- 0.81,
- -1.63,
- -2.13,
- 0.94,
- 2.21,
- 3.01,
- 2.16,
- 3.27,
- 1.78,
- 2.17,
- 1.26,
- -1.42,
- -0.6,
- -2.42,
- -0.66,
- -0.52,
- 0.27,
- 0.83,
- -0.62,
- 0.13,
- 0.22,
- 2.88,
- -0.33,
- 0.7,
- 1.35,
- 0.69,
- 0.36,
- 1.03,
- 1.85,
- 2.2,
- 3.24,
- 3.32,
- 2.6,
- 2.39,
- -1.17,
- -4.95,
- -5.1,
- -4.15,
- -3.0,
- -1.58,
- -0.32,
- 0.62,
- 1.08,
- 1.4,
- 1.58,
- 2.11,
- 4.09,
- 5.11,
- 4.91,
- 3.97,
- 4.95,
- 5.69,
- 7.03,
- 7.24,
- 5.51,
- 4.68,
- 3.73,
- 3.06,
- 2.36,
- 0.69,
- -1.55,
- -3.34,
- -4.46,
- -5.43,
- -6.0,
- -5.96,
- -5.96,
- -5.78,
- -5.69,
- -5.78,
- -6.37,
- -6.71,
- -6.79,
- -6.65,
- -6.42,
- -6.11,
- -5.76,
- -5.42,
- -5.17,
- -4.94,
- -4.7,
- -4.5,
- -4.41,
- -4.34,
- -4.38,
- -4.39,
- -3.96,
- -3.62,
- -3.52,
- -2.72,
- -1.17,
- 2.85,
- 5.09,
- 2.62,
- 1.92,
- 1.78,
- 0.77,
- -0.19,
- -0.38,
- -0.21,
- -1.11,
- -2.09,
- -2.89,
- -4.05,
- -3.58,
- -4.9,
- -5.15,
- -5.53,
- -5.83,
- -5.72,
- -5.67,
- -5.28,
- -5.21,
- -5.0,
- -4.86,
- -5.27,
- -4.82,
- -4.36,
- -4.4,
- -4.37,
- -4.14,
- -3.5,
- -2.94,
- -2.09,
- -0.96,
- 0.28,
- 1.81,
- 3.93,
- 4.76,
- 5.39,
- 6.36,
- 7.29,
- 7.55,
- 7.42,
- 5.2,
- 0.92,
- -0.54,
- -0.82,
- -1.15,
- 0.98,
- 1.26,
- 3.37,
- 2.14,
- 4.49,
- 5.96,
- 4.72,
- 3.12,
- 5.75,
- 2.6,
- 3.65,
- 2.42,
- 2.1,
- 1.59,
- 1.6,
- 1.52,
- 1.97,
- 0.76,
- -1.37,
- 0.73,
- -2.66,
- -1.46,
- -1.37,
- -2.24,
- -2.01,
- -1.1,
- -0.17,
- 1.5,
- 1.05,
- 0.55,
- -1.13,
- -0.12,
- -2.07,
- -2.34,
- -2.76,
- -3.43,
- -2.39,
- 1.01,
- 3.32,
- 2.69,
- 1.13,
- 1.17,
- 1.8,
- 1.64,
- 1.65,
- 1.12,
- 0.75,
- -0.66,
- -1.05,
- -1.6,
- -1.84,
- -1.18,
- -0.3,
- 0.34,
- 1.36,
- -0.77,
- -4.99,
- -4.36,
- -4.39,
- -4.51,
- -4.67,
- -4.6,
- -4.97,
- -4.7,
- -5.39,
- -5.49,
- -5.01,
- -5.6,
- -5.64,
- -5.51,
- -5.64,
- -6.86,
- -5.89,
- -7.11,
- -8.84,
- -10.33,
- -11.1,
- -11.53,
- -11.86,
- -11.95,
- -12.21,
- -11.99,
- -10.63,
- -8.75,
- -10.39,
- -10.54,
- -9.63,
- -9.36,
- -9.14,
- -8.62,
- -7.54,
- -6.72,
- -6.32,
- -6.06,
- -6.91,
- -6.26,
- -6.55,
- -5.47,
- -3.97,
- -3.14,
- -2.76,
- -2.7,
- -1.7,
- -2.37,
- -0.83,
- 1.19,
- 0.47,
- -0.25,
- -0.88,
- 1.92,
- 2.45,
- 3.64,
- 4.38,
- 3.16,
- 1.22,
- 0.87,
- 1.89,
- -0.62,
- -2.93,
- -5.56,
- -3.78,
- -5.5,
- -5.93,
- -7.62,
- -6.42,
- -5.92,
- -3.35,
- -2.57,
- -1.97,
- 0.07,
- 0.23,
- 1.85,
- 2.67,
- 3.56,
- 4.33,
- 6.24,
- 3.9,
- 0.58,
- -2.62,
- -3.67,
- -3.94,
- -4.1,
- -3.7,
- -2.29,
- -0.87,
- -3.42,
- -0.58,
- -0.3,
- -1.55,
- -1.72,
- 1.62,
- 2.03,
- -0.19,
- -0.91,
- -3.43,
- -2.39,
- -0.14,
- 1.4,
- 2.12,
- 2.92,
- 4.03,
- 4.12,
- 4.27,
- 0.12,
- 2.7,
- 2.16,
- 3.0,
- 0.62,
- 3.68,
- 1.82,
- -1.38,
- -3.91,
- 0.58,
- -1.76,
- 2.1,
- 1.08,
- 1.49,
- -0.33,
- 1.5,
- 0.68,
- 2.21,
- 2.74,
- 2.13,
- 2.63,
- 2.39,
- 3.06,
- 2.58,
- 2.53,
- 1.55,
- 2.54,
- 2.13,
- 1.26,
- 1.33,
- 0.16,
- 2.84,
- -1.71,
- 2.5,
- 4.16,
- 3.64,
- 4.49,
- 2.65,
- 1.29,
- 2.71,
- 1.42,
- 2.48,
- 0.41,
- 0.84,
- -1.36,
- 2.49,
- 0.01,
- 3.05,
- 0.46,
- 2.96,
- 1.89,
- 0.12,
- -2.17,
- -0.74,
- -0.68,
- -0.55,
- 0.99,
- 1.01,
- -0.29,
- -0.01,
- -0.38,
- 0.52,
- 1.14,
- 1.5,
- -0.22,
- -0.07,
- 2.23,
- 1.98,
- 1.19,
- 0.78,
- -0.37,
- -3.01,
- -0.81,
- -0.71,
- -0.31,
- 0.41,
- 0.97,
- -0.29,
- 0.27,
- 0.67,
- 1.13,
- -0.01,
- -0.05,
- -0.39,
- -0.08,
- 0.36,
- 0.46,
- 1.63,
- 3.09,
- 4.27,
- 4.49,
- 4.04,
- 4.09,
- 3.36,
- 1.0,
- -0.19,
- -0.33,
- 0.24,
- 1.03,
- 1.51,
- 2.01,
- 2.77,
- 3.95,
- 4.74,
- 3.87,
- 3.67,
- 4.21,
- 7.55,
- 7.59,
- 6.57,
- 5.84,
- 6.05,
- 5.17,
- 4.35,
- 3.31,
- 2.96,
- 2.23,
- 1.68,
- -0.28,
- -2.81,
- -4.76,
- -6.2,
- -6.91,
- -6.94,
- -7.08,
- -7.32,
- -7.74,
- -7.78,
- -7.54,
- -7.74,
- -7.61,
- -7.58,
- -7.43,
- -7.27,
- -7.16,
- -6.93,
- -6.71,
- -6.56,
- -6.41,
- -6.22,
- -5.99,
- -5.67,
- -5.2,
- -5.0,
- -4.75,
- -3.51,
- -1.36,
- 2.36,
- 3.76,
- 3.58,
- 2.41,
- 2.68,
- 2.06,
- 0.55,
- -0.41,
- -0.92,
- -0.91,
- -0.76,
- -1.5,
- -2.43,
- -4.2,
- -5.06,
- -5.23,
- -5.77,
- -6.39,
- -6.42,
- -6.18,
- -6.06,
- -5.76,
- -5.56,
- -5.53,
- -5.42,
- -5.35,
- -5.54,
- -5.0,
- -4.75,
- -4.46,
- -4.51,
- -4.38,
- -4.07,
- -3.75,
- -2.85,
- -2.04,
- -0.73,
- 0.72,
- 2.16,
- 3.22,
- 4.23,
- 5.47,
- 5.9,
- 6.28,
- 7.45,
- 5.6,
- 4.8,
- 6.43,
- 3.86,
- -1.16,
- 1.18,
- 1.22,
- 1.33,
- -0.88,
- 4.11,
- 3.66,
- 6.67,
- 5.15,
- 2.95,
- 2.46,
- 2.63,
- -0.31,
- -1.22,
- 0.0,
- -0.41,
- 0.84,
- -1.69,
- 0.43,
- -1.59,
- -2.75,
- -2.84,
- -2.11,
- -3.3,
- -5.27,
- -5.12,
- -3.25,
- -1.75,
- 0.17,
- 0.85,
- 0.04,
- -0.73,
- 0.86,
- -0.9,
- -1.16,
- -0.35,
- 1.16,
- 2.2,
- 2.75,
- 1.97,
- 0.56,
- 0.05,
- 0.31,
- -0.11,
- 0.08,
- -0.57,
- -0.65,
- -1.22,
- -1.62,
- -2.16,
- -2.77,
- -2.61,
- -1.75,
- -0.48,
- 0.8,
- 1.47,
- 1.65,
- -4.87,
- -5.15,
- -5.02,
- -4.55,
- -4.55,
- -4.55,
- -5.19,
- -4.64,
- -5.13,
- -5.47,
- -5.33,
- -5.86,
- -5.65,
- -5.36,
- -5.44,
- -6.37,
- -5.67,
- -6.62,
- -8.63,
- -9.63,
- -10.55,
- -10.74,
- -10.88,
- -10.76,
- -9.56,
- -8.77,
- -7.97,
- -7.66,
- -8.6,
- -8.81,
- -9.99,
- -8.5,
- -7.68,
- -8.01,
- -7.69,
- -6.93,
- -5.77,
- -5.79,
- -5.93,
- -5.56,
- -5.81,
- -5.4,
- -4.42,
- -3.41,
- -2.51,
- -1.82,
- 0.12,
- -0.27,
- 1.0,
- 0.51,
- 1.65,
- 3.77,
- 2.1,
- 3.67,
- 2.17,
- 3.79,
- 1.94,
- 2.34,
- -0.92,
- 0.93,
- -1.5,
- -3.39,
- -1.64,
- -3.38,
- -6.49,
- -6.99,
- -6.99,
- -7.78,
- -7.88,
- -7.52,
- -5.46,
- -2.89,
- 0.27,
- -2.57,
- -1.66,
- -1.2,
- 0.47,
- 2.1,
- 2.66,
- 4.92,
- 2.87,
- 0.14,
- -2.01,
- -1.44,
- -2.69,
- -2.04,
- -1.04,
- 1.13,
- -2.86,
- 2.76,
- -1.27,
- -0.63,
- 1.1,
- -3.3,
- -0.83,
- 0.18,
- 0.33,
- -2.62,
- -2.8,
- -1.57,
- -0.63,
- 1.89,
- 0.14,
- -0.59,
- 5.15,
- 3.43,
- 4.25,
- 3.21,
- 0.41,
- 0.09,
- 0.31,
- 2.7,
- 3.83,
- 3.47,
- 3.63,
- 0.7,
- 1.22,
- 1.32,
- 1.82,
- 1.02,
- 0.82,
- 1.22,
- 2.58,
- -1.09,
- -0.81,
- 1.69,
- 1.68,
- 1.6,
- 1.96,
- 0.93,
- -0.23,
- 2.38,
- 2.9,
- 2.14,
- 0.96,
- 1.46,
- 2.89,
- 0.12,
- 1.27,
- 3.49,
- 1.96,
- 0.92,
- 5.2,
- 5.06,
- 3.67,
- 1.92,
- 3.94,
- 2.3,
- 2.31,
- -0.54,
- -0.62,
- 1.57,
- 1.42,
- 1.62,
- 2.84,
- 1.57,
- 4.11,
- 1.72,
- -0.92,
- -2.12,
- -1.39,
- -0.45,
- 0.39,
- 1.33,
- -0.31,
- -0.62,
- 0.32,
- 0.88,
- -1.14,
- 0.41,
- 0.48,
- 0.13,
- 0.68,
- 1.15,
- 1.24,
- 1.14,
- 0.29,
- -1.98,
- -1.92,
- -1.63,
- -1.61,
- -1.65,
- -0.7,
- 0.48,
- 0.18,
- 0.38,
- 0.22,
- 0.13,
- -1.1,
- -1.7,
- -1.2,
- -1.21,
- -0.13,
- 0.13,
- 0.09,
- 1.31,
- 2.67,
- 3.49,
- 3.91,
- 3.55,
- 3.02,
- 2.49,
- 2.28,
- 2.22,
- 1.95,
- 2.31,
- 3.01,
- 3.57,
- 4.01,
- 3.34,
- 3.17,
- 3.47,
- 6.11,
- 9.98,
- 6.31,
- 5.56,
- 5.74,
- 5.17,
- 4.6,
- 4.21,
- 3.75,
- 2.9,
- 2.82,
- 1.91,
- 1.35,
- 1.11,
- -0.83,
- -3.85,
- -5.93,
- -7.43,
- -7.74,
- -7.32,
- -7.83,
- -8.34,
- -8.61,
- -8.42,
- -8.25,
- -8.01,
- -7.05,
- -7.14,
- -6.94,
- -7.58,
- -7.7,
- -7.33,
- -7.06,
- -7.1,
- -6.77,
- -6.39,
- -6.55,
- -5.8,
- -4.05,
- -1.42,
- 1.71,
- 3.66,
- 3.54,
- 3.14,
- 1.92,
- 1.31,
- 2.07,
- 0.92,
- 0.35,
- -0.95,
- -1.36,
- -1.39,
- -2.19,
- -2.59,
- -3.68,
- -5.31,
- -6.17,
- -6.36,
- -6.37,
- -7.33,
- -6.79,
- -6.67,
- -6.72,
- -6.65,
- -6.61,
- -6.68,
- -6.67,
- -6.37,
- -6.14,
- -5.68,
- -5.64,
- -5.3,
- -5.11,
- -5.08,
- -4.86,
- -4.23,
- -3.31,
- -2.46,
- -1.4,
- 0.17,
- 1.41,
- 2.46,
- 3.03,
- 3.66,
- 4.56,
- 5.52,
- 6.65,
- 5.66,
- 5.43,
- 6.67,
- 2.55,
- 3.08,
- 1.25,
- 2.11,
- 2.35,
- -0.3,
- 1.59,
- 3.14,
- 5.73,
- 3.78,
- 4.5,
- 2.67,
- 1.32,
- 1.53,
- -1.19,
- -2.63,
- -2.21,
- -1.35,
- -2.49,
- -1.53,
- -3.62,
- -5.34,
- -5.35,
- -4.72,
- -4.68,
- -4.62,
- -5.0,
- -3.63,
- -2.78,
- -0.88,
- -0.68,
- -1.23,
- -1.76,
- 0.35,
- -0.65,
- -1.13,
- 0.66,
- 1.22,
- 0.97,
- -0.11,
- -0.86,
- -1.35,
- -1.15,
- -1.65,
- -1.86,
- -2.85,
- -2.41,
- -2.49,
- -2.48,
- -2.77,
- -3.06,
- -3.31,
- -3.27,
- -2.11,
- -0.19,
- 0.22,
- 0.04,
- -0.21,
- -2.52,
- -5.73,
- -4.8,
- -4.17,
- -3.26,
- -3.81,
- -5.22,
- -4.83,
- -5.14,
- -5.7,
- -5.29,
- -5.16,
- -5.45,
- -5.97,
- -4.73,
- -6.02,
- -5.06,
- -5.63,
- -6.93,
- -8.31,
- -10.04,
- -9.6,
- -8.97,
- -8.56,
- -9.4,
- -7.83,
- -5.75,
- -5.7,
- -5.49,
- -8.62,
- -7.16,
- -8.34,
- -7.32,
- -7.11,
- -6.68,
- -6.54,
- -5.91,
- -6.41,
- -7.71,
- -5.96,
- -5.3,
- -4.9,
- -4.69,
- -3.6,
- -2.65,
- -1.71,
- 1.93,
- 2.35,
- 3.52,
- 3.26,
- 4.07,
- 2.42,
- 1.79,
- 1.33,
- 2.53,
- 3.68,
- 2.51,
- -0.22,
- -0.86,
- -3.08,
- -4.25,
- -2.22,
- 0.84,
- -4.41,
- -3.83,
- -2.66,
- -5.43,
- -8.1,
- -5.94,
- -6.79,
- -5.28,
- -5.53,
- -5.76,
- -2.0,
- 0.05,
- -0.92,
- 0.43,
- 1.87,
- 2.74,
- 1.68,
- 0.26,
- -0.21,
- -1.62,
- -1.83,
- -1.9,
- -1.23,
- -0.47,
- 0.27,
- -3.09,
- 1.49,
- 2.48,
- 0.38,
- -3.74,
- -4.97,
- -4.03,
- -1.84,
- 0.98,
- 1.25,
- 1.94,
- -0.29,
- 2.23,
- 1.32,
- 1.79,
- -0.89,
- 4.42,
- 2.67,
- 3.99,
- 4.12,
- 1.93,
- 1.13,
- 2.68,
- 0.36,
- 2.91,
- 2.14,
- 1.64,
- 5.18,
- 2.12,
- 3.14,
- 2.07,
- -0.96,
- 0.44,
- 0.65,
- -0.2,
- -0.44,
- -1.13,
- -1.15,
- 0.16,
- 0.97,
- 0.24,
- 1.11,
- 0.61,
- 1.76,
- 4.12,
- 3.76,
- 3.21,
- 3.19,
- 2.32,
- 2.28,
- 4.77,
- 6.34,
- -1.46,
- 3.38,
- 1.46,
- 0.91,
- 2.21,
- 1.99,
- 0.17,
- -1.76,
- 3.85,
- -3.2,
- -2.55,
- -1.11,
- -1.09,
- 2.22,
- 1.26,
- 2.52,
- 3.8,
- 2.25,
- -0.74,
- 0.05,
- -2.86,
- -0.57,
- -0.89,
- 0.67,
- 0.65,
- 0.08,
- 1.19,
- -0.32,
- 0.82,
- 0.91,
- 0.69,
- 0.51,
- 0.05,
- 1.38,
- 0.17,
- 1.7,
- -1.81,
- -1.42,
- -2.06,
- -2.04,
- -2.49,
- -2.3,
- -1.56,
- -1.15,
- -0.62,
- 0.2,
- -0.94,
- -0.8,
- -1.94,
- -2.43,
- -2.43,
- -2.0,
- -1.4,
- -0.06,
- 0.72,
- 0.91,
- 0.76,
- 0.61,
- 0.84,
- 0.93,
- 0.87,
- 0.85,
- 0.71,
- 0.63,
- 0.18,
- 0.06,
- 0.45,
- 0.12,
- 0.7,
- 1.45,
- 3.67,
- 9.84,
- 7.46,
- 6.55,
- 5.41,
- 4.91,
- 4.76,
- 4.39,
- 3.62,
- 3.11,
- 2.98,
- 2.68,
- 2.59,
- 1.9,
- 1.3,
- 0.86,
- 0.79,
- 1.06,
- -1.16,
- -5.93,
- -7.69,
- -7.05,
- -6.95,
- -7.47,
- -8.71,
- -9.48,
- -9.57,
- -9.53,
- -8.79,
- -8.63,
- -8.36,
- -8.1,
- -7.73,
- -7.16,
- -7.16,
- -7.62,
- -7.51,
- -6.06,
- -3.35,
- -0.71,
- 0.85,
- 1.8,
- 2.09,
- 2.23,
- 1.77,
- 1.09,
- 0.68,
- 0.37,
- 0.29,
- -0.01,
- -0.7,
- -1.69,
- -2.07,
- -2.77,
- -3.25,
- -3.62,
- -4.52,
- -6.34,
- -6.76,
- -7.09,
- -7.22,
- -7.52,
- -7.2,
- -7.14,
- -7.35,
- -7.72,
- -7.36,
- -7.39,
- -7.32,
- -7.02,
- -6.93,
- -6.61,
- -6.31,
- -6.13,
- -5.7,
- -5.62,
- -5.44,
- -4.54,
- -4.14,
- -3.37,
- -2.32,
- -1.13,
- -0.01,
- 1.28,
- 1.99,
- 2.65,
- 3.84,
- 5.1,
- 5.89,
- 5.36,
- 5.43,
- 4.43,
- 5.52,
- 4.0,
- 2.64,
- 0.98,
- 0.16,
- 0.52,
- 1.63,
- 3.46,
- 5.15,
- 3.33,
- 4.04,
- 4.39,
- 2.55,
- 0.05,
- 0.51,
- -0.87,
- -1.18,
- -2.66,
- -2.81,
- -3.19,
- -5.32,
- -7.03,
- -6.65,
- -6.69,
- -6.15,
- -5.66,
- -5.06,
- -4.32,
- -4.48,
- -3.68,
- -3.55,
- -1.89,
- -2.0,
- -0.29,
- -1.63,
- -3.3,
- -2.27,
- -1.8,
- -2.11,
- -2.53,
- -2.76,
- -2.44,
- -2.55,
- -2.76,
- -2.37,
- -3.8,
- -3.92,
- -3.68,
- -3.66,
- -3.8,
- -3.95,
- -3.82,
- -3.39,
- -2.51,
- -2.16,
- -1.63,
- -0.84,
- 0.07,
- -1.35,
- -5.07,
- -4.79,
- -3.77,
- -3.2,
- -3.63,
- -4.76,
- -4.93,
- -4.94,
- -5.83,
- -5.16,
- -5.13,
- -5.93,
- -6.46,
- -5.34,
- -5.79,
- -4.58,
- -4.24,
- -4.43,
- -5.86,
- -7.42,
- -8.21,
- -7.05,
- -6.44,
- -6.02,
- -5.67,
- -5.0,
- -4.32,
- -5.28,
- -7.32,
- -6.93,
- -6.58,
- -6.61,
- -6.39,
- -6.46,
- -6.33,
- -6.52,
- -4.49,
- -8.35,
- -1.78,
- -4.43,
- -4.17,
- -5.33,
- -4.57,
- -2.33,
- -0.19,
- 3.52,
- 4.46,
- 4.33,
- 3.57,
- 2.87,
- 1.2,
- 1.48,
- 1.87,
- 2.97,
- 3.93,
- -1.93,
- -2.84,
- -3.9,
- -4.43,
- -4.86,
- -0.98,
- 1.85,
- 2.15,
- 0.09,
- -1.14,
- -2.66,
- -4.46,
- -5.62,
- -5.63,
- -4.69,
- -4.27,
- -3.93,
- -2.83,
- 1.29,
- 4.05,
- 3.45,
- 2.28,
- 2.07,
- 0.17,
- -0.84,
- -0.86,
- -0.6,
- -0.71,
- -0.12,
- -1.09,
- 0.12,
- 1.06,
- -1.86,
- -0.66,
- 4.3,
- 2.88,
- -2.45,
- -2.49,
- -2.57,
- -3.43,
- -1.33,
- 0.97,
- 1.3,
- 1.57,
- 3.5,
- 4.85,
- -0.65,
- -1.39,
- 1.83,
- 2.29,
- 4.01,
- 4.66,
- 6.15,
- 6.24,
- 1.98,
- -0.06,
- -1.3,
- 1.88,
- 7.12,
- 1.09,
- 1.21,
- 3.39,
- 4.95,
- 4.6,
- 4.57,
- 4.95,
- 1.85,
- 1.15,
- 0.51,
- -0.55,
- 1.29,
- 4.02,
- 4.22,
- 1.21,
- -0.34,
- 1.31,
- 3.39,
- 4.09,
- 4.61,
- 6.56,
- 6.84,
- 6.49,
- 5.66,
- 5.9,
- 6.85,
- 3.44,
- 2.75,
- 1.24,
- 1.16,
- 0.93,
- -0.95,
- 1.07,
- 0.63,
- -1.46,
- -2.03,
- -0.87,
- -0.1,
- 1.94,
- 1.47,
- 2.99,
- 3.49,
- 5.14,
- 1.0,
- 3.11,
- 2.52,
- -2.19,
- -0.83,
- 0.31,
- 1.7,
- -0.58,
- 1.0,
- -0.46,
- 0.54,
- 0.9,
- 2.64,
- 0.83,
- 0.58,
- 1.41,
- -0.15,
- 0.65,
- -0.73,
- -1.69,
- -3.49,
- -2.37,
- -1.44,
- -1.5,
- -1.89,
- -1.52,
- -2.17,
- -1.98,
- -2.08,
- -1.39,
- -2.02,
- -2.57,
- -2.73,
- -2.85,
- -2.7,
- -1.8,
- -0.7,
- 0.16,
- 0.54,
- 0.67,
- 0.43,
- 0.59,
- 0.8,
- 0.8,
- 0.71,
- 0.52,
- 0.07,
- 0.27,
- -0.24,
- 0.65,
- 0.82,
- 8.23,
- 7.55,
- 5.5,
- 5.52,
- 4.77,
- 4.6,
- 4.07,
- 3.76,
- 3.42,
- 2.97,
- 2.44,
- 2.09,
- 1.91,
- 2.21,
- 1.7,
- 1.15,
- 1.57,
- 2.18,
- 2.68,
- 2.9,
- 2.88,
- 2.16,
- 0.77,
- 0.87,
- 0.77,
- 1.22,
- -1.34,
- -5.7,
- -6.32,
- -5.32,
- -5.93,
- -7.8,
- -7.65,
- -6.63,
- -5.89,
- -4.27,
- -2.24,
- -1.06,
- -0.87,
- -0.87,
- -0.66,
- -0.45,
- -0.21,
- -0.91,
- -0.8,
- -0.45,
- -1.14,
- -1.2,
- -1.4,
- -2.03,
- -2.36,
- -2.78,
- -3.67,
- -4.01,
- -4.24,
- -4.31,
- -4.51,
- -4.99,
- -6.6,
- -7.27,
- -7.71,
- -8.04,
- -8.03,
- -7.6,
- -7.62,
- -8.03,
- -8.0,
- -7.96,
- -8.03,
- -7.78,
- -7.85,
- -7.73,
- -7.18,
- -6.9,
- -6.69,
- -6.6,
- -5.91,
- -5.77,
- -4.98,
- -4.54,
- -3.92,
- -3.31,
- -2.52,
- -1.94,
- -0.7,
- 0.69,
- 2.22,
- 2.97,
- 4.24,
- 4.88,
- 4.87,
- 4.79,
- 5.5,
- 2.22,
- 2.81,
- 0.18,
- 3.35,
- 1.62,
- -0.08,
- 1.7,
- 3.45,
- 2.72,
- 6.56,
- 6.67,
- 3.99,
- 4.22,
- -0.92,
- -2.25,
- -2.2,
- -1.59,
- -1.65,
- -2.44,
- -4.52,
- -6.71,
- -8.65,
- -8.14,
- -8.05,
- -7.74,
- -6.72,
- -5.9,
- -5.17,
- -5.72,
- -5.68,
- -5.24,
- -4.1,
- -2.03,
- -1.99,
- -1.96,
- -4.37,
- -4.41,
- -4.18,
- -4.21,
- -4.09,
- -3.96,
- -3.58,
- -3.16,
- -2.26,
- -3.03,
- -4.1,
- -4.24,
- -4.46,
- -4.04,
- -3.83,
- -3.8,
- -3.33,
- -2.93,
- -3.03,
- -3.18,
- -2.26,
- -2.27,
- -1.24,
- -1.06,
- -2.62,
- -4.54,
- -3.9,
- -3.27,
- -3.05,
- -4.77,
- -5.26,
- -4.83,
- -5.57,
- -4.59,
- -5.27,
- -6.34,
- -6.85,
- -6.07,
- -5.14,
- -4.44,
- -3.03,
- -2.09,
- -1.73,
- -1.79,
- -3.43,
- -4.06,
- -3.81,
- -3.25,
- -3.66,
- -4.09,
- -3.61,
- -4.74,
- -5.37,
- -6.69,
- -6.16,
- -6.24,
- -6.25,
- -6.35,
- -6.22,
- -5.15,
- -5.1,
- -3.92,
- -7.95,
- -5.96,
- -5.78,
- -5.62,
- -2.77,
- -1.35,
- 1.64,
- 1.68,
- 2.96,
- 3.48,
- 2.3,
- 1.63,
- -0.39,
- 1.06,
- 0.99,
- 2.0,
- 0.93,
- -3.04,
- -3.42,
- -4.37,
- -6.31,
- -1.08,
- 3.51,
- 1.95,
- 1.0,
- 1.75,
- 1.41,
- 3.22,
- 0.61,
- 1.8,
- -2.07,
- -2.3,
- 0.48,
- -1.04,
- -0.66,
- -0.31,
- 2.0,
- 1.12,
- 1.15,
- 0.6,
- -1.67,
- -0.53,
- -1.06,
- -1.69,
- -1.59,
- -0.71,
- -1.58,
- -0.23,
- -0.24,
- 1.39,
- 1.25,
- -1.19,
- 4.07,
- -0.96,
- -2.1,
- -2.35,
- -0.89,
- -0.78,
- 0.45,
- -0.8,
- -0.43,
- 1.39,
- 1.77,
- -1.05,
- -3.15,
- 1.69,
- 2.94,
- 2.79,
- 2.37,
- 3.64,
- 4.65,
- 4.79,
- 5.02,
- 3.83,
- 0.53,
- 0.81,
- 0.23,
- 3.4,
- 3.91,
- 3.92,
- 3.35,
- 4.84,
- 1.75,
- 1.13,
- 2.37,
- -0.12,
- 2.62,
- 4.04,
- 5.38,
- 4.54,
- 5.72,
- 6.19,
- 1.34,
- 1.01,
- 1.56,
- 1.79,
- 0.36,
- 0.24,
- 0.56,
- 1.5,
- 2.75,
- 3.91,
- 4.46,
- 4.3,
- 1.32,
- -1.56,
- -3.47,
- 0.18,
- 0.09,
- 0.65,
- -1.38,
- 1.36,
- 2.17,
- 0.04,
- 1.23,
- -0.78,
- 4.28,
- 4.11,
- 4.1,
- 3.26,
- 4.3,
- 4.76,
- -2.19,
- -0.14,
- 0.06,
- -0.32,
- -0.19,
- 0.5,
- 0.52,
- 0.2,
- 0.78,
- 1.39,
- 1.48,
- 0.15,
- 0.45,
- -0.2,
- -0.97,
- -0.39,
- -3.76,
- -4.12,
- -3.11,
- -1.75,
- -1.55,
- -1.92,
- -2.2,
- -2.23,
- -3.23,
- -3.12,
- -2.38,
- -2.82,
- -3.11,
- -2.92,
- -2.56,
- -2.98,
- -3.27,
- -2.67,
- -1.66,
- -0.94,
- -0.72,
- -0.77,
- -0.18,
- 0.23,
- 0.69,
- 1.08,
- 0.59,
- -0.63,
- -0.79,
- -0.54,
- 5.21,
- 7.27,
- 6.47,
- 4.11,
- 4.15,
- 4.12,
- 4.36,
- 3.8,
- 3.11,
- 2.45,
- 2.31,
- 1.87,
- 1.22,
- 0.9,
- 0.71,
- 0.43,
- 0.16,
- 0.04,
- 0.36,
- 0.98,
- 1.66,
- 2.15,
- 2.45,
- 2.24,
- 2.09,
- 2.2,
- 2.18,
- 1.82,
- 2.33,
- 3.65,
- 3.55,
- 3.01,
- 2.25,
- 2.14,
- 2.96,
- 0.75,
- 0.28,
- -0.96,
- -1.43,
- -1.81,
- -2.32,
- -2.56,
- -2.51,
- -2.28,
- -2.44,
- -2.91,
- -2.5,
- -2.86,
- -3.1,
- -3.45,
- -3.64,
- -4.05,
- -4.32,
- -4.71,
- -5.33,
- -5.49,
- -5.45,
- -5.32,
- -5.26,
- -5.79,
- -6.17,
- -7.12,
- -7.67,
- -8.34,
- -8.4,
- -7.93,
- -8.25,
- -8.34,
- -8.28,
- -8.46,
- -8.39,
- -8.49,
- -8.33,
- -7.93,
- -7.55,
- -7.3,
- -6.98,
- -6.77,
- -6.11,
- -5.71,
- -5.27,
- -4.84,
- -4.26,
- -3.8,
- -3.23,
- -2.59,
- -1.48,
- -0.02,
- 0.98,
- 1.72,
- 2.62,
- 3.44,
- 3.48,
- 3.94,
- 4.55,
- 6.0,
- 6.24,
- 3.25,
- 0.93,
- 2.39,
- 0.15,
- 0.65,
- -0.6,
- 2.78,
- 4.3,
- 3.43,
- 6.88,
- 2.52,
- 0.4,
- -0.98,
- -2.56,
- -1.47,
- -1.29,
- -2.83,
- -4.55,
- -7.16,
- -8.83,
- -8.9,
- -8.59,
- -8.29,
- -8.04,
- -7.04,
- -6.73,
- -6.65,
- -7.05,
- -6.72,
- -5.41,
- -3.2,
- -2.39,
- -4.63,
- -5.32,
- -5.8,
- -5.27,
- -5.21,
- -5.07,
- -4.78,
- -3.95,
- -2.51,
- -2.88,
- -3.92,
- -4.6,
- -4.89,
- -4.86,
- -4.43,
- -3.95,
- -3.49,
- -2.7,
- -2.36,
- -0.48,
- 1.11,
- -1.15,
- -2.17,
- -1.52,
- -2.39,
- -2.43,
- -4.22,
- -3.79,
- -3.27,
- -2.84,
- -4.48,
- -5.71,
- -5.76,
- -4.95,
- -4.56,
- -5.02,
- -5.93,
- -6.29,
- -6.15,
- -5.01,
- -4.05,
- -2.6,
- -0.93,
- 0.58,
- 1.67,
- 0.37,
- -0.43,
- -0.96,
- -1.18,
- -2.45,
- -2.85,
- -3.2,
- -3.73,
- -5.12,
- -5.69,
- -5.71,
- -6.15,
- -6.23,
- -6.04,
- -5.31,
- -5.26,
- -4.87,
- -6.03,
- -6.21,
- -6.59,
- -6.6,
- -2.99,
- -3.66,
- -1.77,
- 2.61,
- 3.01,
- 1.32,
- 0.66,
- -0.19,
- -0.71,
- -0.3,
- -1.96,
- -0.51,
- -1.6,
- -2.41,
- -4.52,
- -7.28,
- -4.52,
- -3.17,
- -1.23,
- -0.6,
- 1.36,
- 3.23,
- 1.42,
- 1.66,
- 1.24,
- 0.56,
- 1.12,
- -0.44,
- 0.05,
- -1.35,
- -1.08,
- -0.57,
- -0.8,
- 0.24,
- -0.02,
- 0.32,
- -1.48,
- -2.96,
- -0.39,
- -1.62,
- -1.37,
- -1.24,
- -0.26,
- 0.6,
- -1.49,
- -2.11,
- -1.33,
- -0.63,
- -1.66,
- 2.01,
- 2.49,
- 0.8,
- -2.81,
- -2.01,
- -3.83,
- -1.96,
- 1.0,
- 2.48,
- 1.39,
- -0.85,
- -2.47,
- -3.55,
- 1.13,
- 5.26,
- 4.12,
- 4.97,
- 0.1,
- 0.13,
- 3.22,
- 5.28,
- 4.3,
- -0.43,
- -2.02,
- -1.51,
- 0.29,
- 3.43,
- 5.28,
- 5.43,
- 4.93,
- 4.27,
- 4.72,
- 5.63,
- 6.4,
- 5.84,
- 3.63,
- 2.84,
- 3.99,
- 4.93,
- 4.72,
- 2.57,
- 1.18,
- 1.97,
- 1.34,
- 0.66,
- -0.67,
- -2.96,
- -2.32,
- -1.83,
- -0.77,
- 2.6,
- 4.95,
- 5.96,
- 3.64,
- 1.56,
- -2.91,
- -2.82,
- -1.08,
- 0.56,
- 0.83,
- -2.24,
- 0.03,
- 0.65,
- 4.5,
- 4.62,
- 5.69,
- 5.27,
- 4.03,
- 6.71,
- 4.25,
- -0.24,
- -0.66,
- -1.57,
- -0.72,
- -0.48,
- -1.6,
- -1.54,
- -0.73,
- -0.22,
- 1.44,
- 0.0,
- -1.61,
- -0.7,
- 0.53,
- -0.67,
- 0.32,
- 1.7,
- -4.17,
- -2.78,
- -2.92,
- -3.04,
- -2.86,
- -3.38,
- -3.8,
- -3.92,
- -3.79,
- -3.8,
- -3.98,
- -4.0,
- -3.63,
- -3.24,
- -3.14,
- -3.3,
- -3.29,
- -2.87,
- -2.57,
- -2.66,
- -2.28,
- -1.78,
- -1.29,
- -1.07,
- -1.4,
- -1.8,
- -2.5,
- 1.01,
- 7.53,
- 5.95,
- 5.37,
- 4.08,
- 3.67,
- 3.66,
- 3.63,
- 3.3,
- 2.68,
- 1.47,
- 1.08,
- 0.73,
- 0.08,
- -0.72,
- -1.16,
- -1.55,
- -1.87,
- -2.13,
- -2.28,
- -2.35,
- -2.13,
- -1.93,
- -1.72,
- -1.35,
- -0.79,
- -0.25,
- 0.16,
- 0.48,
- 0.61,
- 0.58,
- 0.3,
- 0.04,
- -0.04,
- -0.06,
- 0.37,
- 0.34,
- 0.3,
- -1.6,
- -2.38,
- -2.76,
- -3.16,
- -3.84,
- -3.71,
- -3.54,
- -3.66,
- -3.78,
- -4.23,
- -3.95,
- -3.86,
- -4.68,
- -5.02,
- -5.41,
- -5.74,
- -6.28,
- -6.19,
- -6.47,
- -6.59,
- -6.48,
- -6.27,
- -6.19,
- -6.04,
- -6.59,
- -7.2,
- -7.51,
- -8.19,
- -8.69,
- -8.54,
- -8.65,
- -8.68,
- -8.82,
- -8.75,
- -8.68,
- -8.59,
- -8.35,
- -8.15,
- -7.75,
- -7.62,
- -7.34,
- -7.02,
- -6.57,
- -5.95,
- -5.57,
- -5.04,
- -4.78,
- -3.91,
- -3.51,
- -3.06,
- -2.1,
- -1.19,
- -0.24,
- 0.02,
- 0.84,
- 1.65,
- 1.92,
- 2.82,
- 3.61,
- 4.79,
- 5.06,
- 3.38,
- 2.37,
- 2.53,
- 1.16,
- 0.89,
- 0.21,
- 0.99,
- 2.97,
- 3.07,
- 3.88,
- 3.88,
- 2.62,
- 2.28,
- 0.4,
- -1.26,
- -1.22,
- -2.06,
- -5.26,
- -7.95,
- -8.65,
- -9.72,
- -9.47,
- -9.09,
- -8.5,
- -7.47,
- -6.95,
- -6.9,
- -7.69,
- -8.56,
- -7.05,
- -6.13,
- -4.21,
- -6.27,
- -6.44,
- -4.81,
- -5.64,
- -5.41,
- -5.26,
- -4.12,
- -3.14,
- -2.92,
- -3.58,
- -4.19,
- -4.55,
- -4.66,
- -4.34,
- -3.71,
- -3.18,
- -2.86,
- -2.0,
- 0.07,
- 0.91,
- 0.53,
- -0.24,
- -2.64,
- -2.6,
- -2.48,
- -2.8,
- -4.54,
- -4.05,
- -3.15,
- -2.81,
- -3.48,
- -5.31,
- -5.61,
- -5.37,
- -4.69,
- -4.78,
- -5.33,
- -5.52,
- -5.43,
- -4.81,
- -4.02,
- -2.58,
- -0.94,
- 0.57,
- 1.78,
- 1.98,
- 1.68,
- 0.78,
- 1.46,
- -1.07,
- -1.96,
- -2.19,
- -4.08,
- -5.03,
- -5.25,
- -5.49,
- -5.95,
- -6.03,
- -5.75,
- -5.27,
- -5.08,
- -5.1,
- -5.33,
- -6.05,
- -5.64,
- -4.42,
- -3.35,
- -1.56,
- -1.47,
- -0.36,
- -0.03,
- -1.22,
- -0.66,
- -0.8,
- -0.64,
- -0.99,
- -2.29,
- -3.49,
- -4.44,
- -4.8,
- -5.35,
- -7.64,
- -5.69,
- -2.24,
- -2.27,
- -1.66,
- 0.95,
- 2.86,
- 3.5,
- 1.65,
- -0.2,
- 0.17,
- 1.3,
- 1.66,
- 0.56,
- 0.11,
- -0.71,
- -0.21,
- 0.19,
- -2.84,
- -0.06,
- 1.4,
- -1.75,
- -3.23,
- -1.62,
- -3.55,
- -2.66,
- -1.1,
- 0.05,
- -0.69,
- -0.97,
- -1.34,
- -2.75,
- -1.64,
- -0.85,
- -2.03,
- 2.21,
- 0.75,
- -0.39,
- -1.87,
- -3.99,
- -4.0,
- -2.25,
- 1.4,
- 0.76,
- -2.32,
- -4.24,
- -1.16,
- -0.64,
- 3.18,
- 5.31,
- 9.67,
- 7.67,
- 7.67,
- 7.1,
- 6.92,
- 3.67,
- 1.55,
- 0.24,
- 2.96,
- 2.26,
- -1.09,
- 1.29,
- 3.88,
- 4.14,
- 4.84,
- 5.36,
- 4.42,
- 4.95,
- 6.16,
- 3.54,
- 3.44,
- 3.76,
- 4.12,
- 1.68,
- 4.36,
- 3.18,
- 2.63,
- 3.46,
- 2.1,
- 3.23,
- 3.55,
- 2.92,
- 2.17,
- -1.37,
- 0.66,
- 3.11,
- 5.48,
- 3.69,
- 1.6,
- -0.83,
- -0.26,
- 0.56,
- 1.1,
- 1.02,
- 0.94,
- 0.51,
- 0.89,
- 4.1,
- 4.19,
- 3.85,
- 2.63,
- 2.51,
- 4.55,
- 3.57,
- 2.1,
- -1.7,
- -1.23,
- -0.05,
- -2.39,
- -1.46,
- -1.07,
- -1.34,
- -1.16,
- 0.74,
- 0.11,
- -1.05,
- -1.34,
- -3.74,
- -2.27,
- 2.0,
- 3.44,
- -1.39,
- -3.71,
- -3.93,
- -4.42,
- -4.4,
- -4.29,
- -4.47,
- -4.86,
- -5.37,
- -5.29,
- -5.25,
- -4.81,
- -4.59,
- -4.36,
- -4.1,
- -4.01,
- -3.85,
- -3.81,
- -3.72,
- -4.03,
- -3.98,
- -3.74,
- -3.97,
- -3.56,
- -3.72,
- -2.13,
- 6.3,
- 5.09,
- 5.05,
- 4.42,
- 3.51,
- 2.59,
- 2.49,
- 1.94,
- 1.84,
- 1.78,
- 1.22,
- 0.12,
- -0.23,
- -1.16,
- -1.72,
- -2.26,
- -2.79,
- -3.23,
- -3.61,
- -3.98,
- -3.98,
- -4.0,
- -3.94,
- -3.73,
- -3.67,
- -3.5,
- -3.12,
- -2.81,
- -2.64,
- -2.56,
- -2.44,
- -2.24,
- -2.1,
- -2.07,
- -1.88,
- -1.39,
- -0.82,
- -1.01,
- -2.61,
- -3.18,
- -3.34,
- -3.39,
- -4.61,
- -3.92,
- -3.31,
- -4.09,
- -4.22,
- -4.72,
- -5.05,
- -4.39,
- -5.08,
- -5.89,
- -6.0,
- -6.17,
- -7.11,
- -7.64,
- -7.55,
- -7.55,
- -7.63,
- -7.39,
- -7.17,
- -7.18,
- -6.82,
- -6.85,
- -7.22,
- -7.67,
- -8.16,
- -9.05,
- -9.45,
- -9.06,
- -8.96,
- -9.06,
- -8.97,
- -9.03,
- -8.83,
- -8.61,
- -8.38,
- -7.9,
- -7.7,
- -7.57,
- -7.34,
- -7.05,
- -6.5,
- -6.06,
- -5.49,
- -5.36,
- -4.62,
- -4.09,
- -3.64,
- -2.77,
- -2.28,
- -1.71,
- -1.1,
- -0.42,
- 0.4,
- 0.71,
- 1.59,
- 2.5,
- 3.48,
- 4.02,
- 4.57,
- 4.19,
- 1.26,
- 2.38,
- -0.67,
- 1.12,
- -0.45,
- 3.72,
- 1.17,
- 3.3,
- 3.43,
- 6.06,
- 3.25,
- -0.86,
- -1.51,
- -0.94,
- -2.19,
- -6.29,
- -8.0,
- -9.31,
- -10.72,
- -10.42,
- -10.22,
- -8.92,
- -7.34,
- -6.14,
- -5.93,
- -7.67,
- -9.12,
- -8.43,
- -7.43,
- -6.79,
- -6.63,
- -7.07,
- -6.01,
- -5.91,
- -5.01,
- -4.73,
- -4.16,
- -3.8,
- -3.68,
- -3.58,
- -4.55,
- -4.57,
- -4.31,
- -4.4,
- -4.47,
- -3.61,
- -3.05,
- -1.82,
- -0.63,
- -0.66,
- -0.69,
- -1.34,
- -0.76,
- -2.06,
- -3.24,
- -4.12,
- -4.93,
- -4.57,
- -3.27,
- -2.99,
- -2.64,
- -3.87,
- -5.17,
- -5.21,
- -5.03,
- -4.53,
- -4.76,
- -4.87,
- -4.63,
- -4.34,
- -3.72,
- -2.32,
- -1.15,
- 0.44,
- 1.56,
- 3.16,
- 4.23,
- 2.86,
- 1.4,
- 0.11,
- -0.35,
- -1.09,
- -3.38,
- -4.92,
- -4.96,
- -5.26,
- -5.37,
- -5.63,
- -5.47,
- -5.17,
- -4.81,
- -4.83,
- -5.15,
- -5.01,
- -4.42,
- -1.36,
- -2.45,
- -0.5,
- -2.88,
- -3.19,
- 0.75,
- 0.32,
- -1.47,
- -0.78,
- -0.17,
- -1.05,
- -3.43,
- -4.01,
- -5.33,
- -5.33,
- -5.23,
- -5.84,
- -3.62,
- -1.14,
- -1.3,
- -2.28,
- 2.25,
- 1.63,
- 1.79,
- 3.59,
- 2.92,
- 0.37,
- 1.13,
- 3.23,
- 0.39,
- -0.3,
- 2.91,
- 1.05,
- -2.25,
- -1.08,
- 0.42,
- -0.64,
- -2.29,
- -3.95,
- -3.35,
- -2.37,
- -3.15,
- -1.28,
- -0.06,
- -0.15,
- -1.06,
- 0.09,
- -2.45,
- 0.61,
- -1.6,
- -2.98,
- 0.72,
- 1.48,
- 2.91,
- 0.73,
- -1.27,
- -5.02,
- -2.31,
- 0.11,
- 0.68,
- -1.33,
- -0.52,
- -2.34,
- 0.16,
- 4.43,
- 5.84,
- 7.2,
- 6.85,
- 6.22,
- 5.29,
- 5.31,
- 3.45,
- 0.8,
- 4.12,
- 4.15,
- 0.42,
- 3.23,
- 2.19,
- 3.2,
- 4.08,
- 5.15,
- 5.65,
- 5.85,
- 5.35,
- 5.28,
- 3.85,
- 3.81,
- 2.53,
- 2.67,
- 3.38,
- 4.78,
- 4.16,
- 3.93,
- 4.39,
- 4.84,
- 3.26,
- 3.51,
- 1.87,
- 3.27,
- 3.75,
- 2.8,
- 3.22,
- 2.37,
- 0.78,
- 2.47,
- 1.34,
- -1.09,
- 0.1,
- 1.27,
- -3.38,
- -0.93,
- 1.23,
- 2.61,
- 2.53,
- 2.53,
- 4.01,
- 3.19,
- 1.74,
- 1.28,
- 2.36,
- -0.22,
- 0.73,
- -1.55,
- -2.66,
- -1.53,
- -2.84,
- -1.39,
- -1.89,
- -1.39,
- -2.75,
- -1.17,
- -3.38,
- -6.27,
- -4.5,
- -2.95,
- 5.12,
- 0.08,
- -4.27,
- -4.88,
- -5.26,
- -5.27,
- -5.18,
- -5.03,
- -4.58,
- -5.01,
- -5.37,
- -5.56,
- -5.46,
- -5.44,
- -5.42,
- -5.45,
- -5.56,
- -5.3,
- -4.95,
- -5.03,
- -5.03,
- -4.55,
- -4.12,
- -3.81,
- -3.9,
- -2.02,
- 5.41,
- 4.77,
- 4.51,
- 3.72,
- 3.01,
- 2.16,
- 1.34,
- 1.16,
- 0.31,
- 0.05,
- 0.3,
- -0.03,
- -0.68,
- -1.1,
- -1.78,
- -2.51,
- -3.16,
- -3.67,
- -4.09,
- -4.19,
- -4.26,
- -4.73,
- -4.91,
- -4.57,
- -4.45,
- -4.77,
- -4.98,
- -4.87,
- -4.93,
- -4.48,
- -4.27,
- -4.32,
- -4.31,
- -4.02,
- -3.68,
- -3.51,
- -3.41,
- -3.58,
- -3.66,
- -3.9,
- -4.06,
- -4.11,
- -4.14,
- -4.33,
- -4.42,
- -4.1,
- -4.46,
- -4.31,
- -4.31,
- -4.43,
- -5.82,
- -5.23,
- -6.01,
- -7.35,
- -7.01,
- -7.31,
- -8.62,
- -8.62,
- -8.97,
- -8.19,
- -8.22,
- -8.02,
- -7.83,
- -7.94,
- -7.73,
- -7.56,
- -7.41,
- -7.62,
- -7.98,
- -8.88,
- -9.55,
- -9.28,
- -9.22,
- -9.1,
- -9.05,
- -9.01,
- -8.9,
- -8.77,
- -8.39,
- -8.19,
- -8.01,
- -7.87,
- -7.68,
- -7.16,
- -6.93,
- -6.69,
- -6.17,
- -6.02,
- -5.34,
- -4.75,
- -4.04,
- -3.39,
- -3.08,
- -2.69,
- -1.98,
- -1.37,
- -0.87,
- -0.43,
- 0.34,
- 1.22,
- 2.63,
- 3.67,
- 4.03,
- 3.73,
- 3.35,
- 0.22,
- 0.07,
- 0.93,
- 1.37,
- -0.28,
- 1.02,
- 3.0,
- 5.37,
- 6.65,
- 1.27,
- 0.16,
- 1.77,
- -1.49,
- -4.52,
- -6.7,
- -8.26,
- -9.13,
- -10.44,
- -10.01,
- -10.14,
- -9.16,
- -7.27,
- -6.27,
- -5.46,
- -4.36,
- -4.03,
- -3.57,
- -1.92,
- -2.11,
- -5.6,
- -7.16,
- -6.9,
- -6.35,
- -5.14,
- -4.49,
- -4.27,
- -4.24,
- -3.65,
- -3.96,
- -4.5,
- -4.62,
- -4.98,
- -5.07,
- -3.71,
- -2.24,
- -1.34,
- -0.45,
- -0.07,
- -1.52,
- -2.58,
- -2.88,
- -2.66,
- -1.89,
- -1.6,
- -4.14,
- -5.84,
- -5.02,
- -3.74,
- -3.06,
- -3.09,
- -2.54,
- -3.37,
- -4.63,
- -4.3,
- -4.03,
- -3.99,
- -4.01,
- -3.84,
- -3.48,
- -2.53,
- -1.62,
- -0.47,
- 1.14,
- 3.3,
- 5.03,
- 4.09,
- 4.54,
- 2.19,
- 0.36,
- 0.19,
- -1.27,
- -3.56,
- -4.23,
- -4.46,
- -4.74,
- -4.84,
- -4.75,
- -4.9,
- -4.84,
- -4.64,
- -4.58,
- -4.64,
- -3.91,
- -2.15,
- -0.36,
- -0.87,
- -2.84,
- -2.65,
- -1.13,
- 0.45,
- 0.14,
- 0.01,
- -0.28,
- -2.15,
- -2.17,
- -2.87,
- -3.49,
- -5.4,
- -5.6,
- -4.71,
- -3.19,
- 1.53,
- 1.16,
- 1.86,
- -2.48,
- -2.75,
- -0.85,
- -0.42,
- 2.77,
- 1.14,
- 1.39,
- 0.99,
- 0.14,
- 0.27,
- -1.63,
- 1.54,
- 0.3,
- -0.69,
- -1.68,
- 0.29,
- -1.73,
- -4.28,
- -3.99,
- -4.68,
- -2.22,
- -3.6,
- -1.63,
- -0.31,
- -0.48,
- -1.25,
- 0.73,
- 0.08,
- 0.1,
- -0.95,
- -0.97,
- -0.43,
- 1.68,
- 2.82,
- 1.71,
- -2.09,
- -2.82,
- -3.13,
- -1.91,
- 0.51,
- 1.32,
- -0.09,
- -1.15,
- 1.48,
- 4.04,
- 3.4,
- 3.33,
- 4.65,
- 3.22,
- 1.75,
- 1.75,
- 1.94,
- 3.36,
- 2.53,
- 4.18,
- 4.63,
- 6.21,
- 4.77,
- 3.98,
- 4.33,
- 5.16,
- 5.74,
- 5.85,
- 5.47,
- 5.47,
- 4.29,
- 3.02,
- -0.75,
- 3.29,
- 4.84,
- 4.2,
- 5.25,
- 3.36,
- 3.54,
- 3.35,
- 1.47,
- 1.34,
- 2.59,
- 4.18,
- 4.39,
- 4.16,
- 4.37,
- 2.5,
- -0.21,
- 1.49,
- 1.66,
- 1.03,
- 3.66,
- 0.94,
- -2.48,
- 0.46,
- 0.66,
- 1.32,
- 1.21,
- 2.63,
- 3.89,
- 2.74,
- 2.1,
- 1.9,
- 2.92,
- -1.33,
- 0.59,
- 0.87,
- -1.39,
- -1.46,
- -4.68,
- -3.23,
- -1.55,
- -3.35,
- -7.39,
- -6.93,
- -5.97,
- -5.58,
- -6.92,
- -7.39,
- -7.42,
- -7.64,
- -5.95,
- -5.74,
- -5.7,
- -5.33,
- -5.21,
- -5.31,
- -4.97,
- -4.85,
- -5.05,
- -5.26,
- -5.02,
- -5.21,
- -5.15,
- -5.42,
- -5.69,
- -5.56,
- -5.43,
- -5.22,
- -4.58,
- -4.27,
- -3.51,
- 0.72,
- 4.85,
- 5.42,
- 4.13,
- 3.54,
- 2.82,
- 1.6,
- 1.0,
- 0.15,
- -0.33,
- -0.75,
- -1.73,
- -1.55,
- -1.41,
- -1.66,
- -2.32,
- -2.57,
- -3.03,
- -3.68,
- -4.33,
- -4.73,
- -4.85,
- -4.84,
- -5.11,
- -5.12,
- -5.37,
- -5.31,
- -5.41,
- -5.59,
- -5.57,
- -5.17,
- -5.12,
- -5.25,
- -5.19,
- -5.17,
- -5.35,
- -5.42,
- -5.43,
- -5.47,
- -5.3,
- -5.14,
- -5.29,
- -5.27,
- -5.05,
- -5.1,
- -5.09,
- -5.29,
- -5.14,
- -5.24,
- -5.1,
- -4.9,
- -4.94,
- -4.53,
- -4.12,
- -3.54,
- -3.32,
- -3.96,
- -3.88,
- -9.08,
- -9.64,
- -9.31,
- -9.9,
- -8.8,
- -8.68,
- -8.54,
- -7.99,
- -8.23,
- -8.31,
- -8.07,
- -7.84,
- -7.81,
- -7.95,
- -8.9,
- -9.24,
- -9.37,
- -9.53,
- -9.4,
- -9.27,
- -9.16,
- -8.95,
- -8.71,
- -8.52,
- -8.37,
- -8.09,
- -7.78,
- -7.59,
- -7.62,
- -7.41,
- -7.18,
- -6.78,
- -6.22,
- -5.71,
- -4.99,
- -4.15,
- -3.56,
- -3.38,
- -2.88,
- -2.38,
- -2.1,
- -1.63,
- -0.91,
- -0.53,
- 0.16,
- 1.68,
- 3.5,
- 4.12,
- 3.96,
- 4.76,
- 4.33,
- 0.98,
- -0.1,
- 0.85,
- -0.53,
- 0.93,
- 1.63,
- 2.16,
- 3.42,
- 0.31,
- -0.99,
- -1.32,
- -3.78,
- -5.49,
- -6.22,
- -7.91,
- -8.96,
- -9.72,
- -10.36,
- -9.68,
- -8.51,
- -7.29,
- -5.76,
- -6.17,
- -4.47,
- -2.11,
- -3.99,
- -5.84,
- -4.25,
- -1.19,
- -1.03,
- -4.11,
- -6.54,
- -5.43,
- -4.45,
- -4.02,
- -3.86,
- -4.36,
- -4.36,
- -4.89,
- -4.87,
- -4.91,
- -4.68,
- -4.49,
- -4.77,
- -3.81,
- -2.27,
- -1.72,
- -3.06,
- -3.59,
- -3.57,
- -4.46,
- -4.42,
- -2.78,
- -2.07,
- -5.81,
- -5.13,
- -3.94,
- -3.08,
- -3.19,
- -2.9,
- -2.6,
- -2.48,
- -3.68,
- -3.19,
- -3.01,
- -2.9,
- -2.84,
- -2.15,
- -1.13,
- 0.09,
- 1.74,
- 3.12,
- 4.04,
- 4.39,
- 4.55,
- 3.84,
- 1.65,
- 1.44,
- -0.39,
- -1.02,
- -3.13,
- -4.21,
- -4.38,
- -4.49,
- -4.35,
- -4.37,
- -4.49,
- -4.55,
- -4.39,
- -4.18,
- -3.94,
- -3.49,
- -1.31,
- -1.15,
- -0.23,
- -0.28,
- -0.91,
- 0.34,
- 0.42,
- -0.24,
- -0.16,
- -3.98,
- -2.65,
- -3.16,
- -2.91,
- -2.84,
- -5.29,
- -5.97,
- -1.32,
- 0.61,
- 0.76,
- 1.45,
- -0.92,
- -2.79,
- -0.13,
- 0.24,
- 1.07,
- 0.67,
- 1.65,
- 1.49,
- -0.15,
- -2.11,
- -0.25,
- -0.36,
- -1.85,
- -1.89,
- -1.14,
- 1.22,
- 0.05,
- -3.31,
- -4.46,
- -2.52,
- -4.23,
- -5.08,
- -4.18,
- -2.25,
- -1.12,
- -0.93,
- -1.18,
- -0.33,
- 0.49,
- -0.74,
- -3.01,
- -4.69,
- -1.92,
- -0.58,
- 1.2,
- -0.67,
- -0.5,
- -2.67,
- -3.16,
- -3.03,
- -1.32,
- -0.18,
- -0.9,
- 0.52,
- 0.69,
- -0.71,
- 1.17,
- 1.28,
- 1.05,
- -0.49,
- 0.99,
- 0.5,
- 3.07,
- 3.1,
- 2.67,
- 2.34,
- 4.96,
- 5.36,
- 5.43,
- 5.23,
- 4.45,
- 4.66,
- 5.33,
- 5.43,
- 5.09,
- 5.15,
- 4.93,
- 3.64,
- 1.9,
- 4.01,
- 4.55,
- 4.01,
- 4.66,
- 3.28,
- 4.19,
- 3.46,
- 2.15,
- 2.84,
- 4.43,
- 6.36,
- 5.95,
- 5.41,
- 5.6,
- -1.34,
- 2.02,
- 2.16,
- 1.41,
- 1.49,
- 1.94,
- 1.16,
- 0.52,
- 0.56,
- 1.3,
- 3.46,
- 2.72,
- 3.4,
- 2.75,
- 3.09,
- 2.43,
- 2.21,
- 2.21,
- -1.06,
- -2.4,
- -1.04,
- 0.35,
- -0.05,
- 0.37,
- -4.85,
- -2.06,
- -1.39,
- -2.46,
- -3.65,
- -4.54,
- -5.87,
- -7.1,
- -8.13,
- -9.09,
- -8.36,
- -6.84,
- -6.0,
- -5.76,
- -5.54,
- -5.36,
- -5.23,
- -5.2,
- -5.06,
- -4.66,
- -4.63,
- -4.96,
- -4.86,
- -4.88,
- -5.15,
- -4.7,
- -4.2,
- -3.61,
- -1.3,
- 3.04,
- 4.85,
- 5.28,
- 5.16,
- 4.09,
- 2.72,
- 2.51,
- 1.58,
- 0.6,
- 0.21,
- -0.6,
- -1.56,
- -1.36,
- -2.35,
- -3.3,
- -2.7,
- -2.93,
- -2.9,
- -3.65,
- -3.6,
- -4.1,
- -4.78,
- -5.05,
- -5.17,
- -5.36,
- -5.74,
- -5.64,
- -5.84,
- -5.67,
- -5.86,
- -6.09,
- -6.37,
- -6.07,
- -5.9,
- -5.85,
- -5.92,
- -5.67,
- -5.79,
- -5.97,
- -6.18,
- -6.37,
- -6.47,
- -6.54,
- -6.46,
- -6.35,
- -6.14,
- -5.76,
- -5.73,
- -5.86,
- -6.17,
- -5.96,
- -5.7,
- -5.74,
- -5.62,
- -5.43,
- -5.42,
- -5.41,
- -5.17,
- -4.41,
- -4.18,
- -4.08,
- -2.29,
- -3.28,
- -2.85,
- -7.87,
- -8.5,
- -9.02,
- -9.02,
- -8.74,
- -8.67,
- -8.84,
- -8.74,
- -8.32,
- -8.28,
- -8.38,
- -8.66,
- -9.16,
- -9.09,
- -9.33,
- -9.45,
- -9.33,
- -9.17,
- -8.98,
- -8.78,
- -8.39,
- -8.09,
- -8.08,
- -7.89,
- -7.64,
- -7.6,
- -7.53,
- -7.45,
- -7.28,
- -6.79,
- -6.1,
- -5.41,
- -4.84,
- -4.3,
- -3.89,
- -3.17,
- -2.56,
- -2.14,
- -1.76,
- -0.98,
- -0.73,
- -0.08,
- 1.37,
- 2.77,
- 3.6,
- 3.3,
- 4.06,
- 4.26,
- 3.44,
- 1.16,
- -0.28,
- -1.45,
- 1.0,
- 1.82,
- 3.17,
- 3.8,
- 1.58,
- 1.21,
- -1.31,
- -6.72,
- -6.4,
- -5.09,
- -8.0,
- -8.95,
- -7.53,
- -9.63,
- -7.86,
- -5.97,
- -3.76,
- -3.09,
- -6.72,
- -6.05,
- -4.84,
- -4.81,
- -6.08,
- -8.01,
- -8.47,
- -7.61,
- -1.73,
- -1.1,
- -1.8,
- -4.36,
- -3.84,
- -3.71,
- -4.48,
- -4.12,
- -4.01,
- -3.77,
- -4.58,
- -4.9,
- -5.53,
- -5.61,
- -4.29,
- -4.15,
- -3.21,
- -4.24,
- -3.53,
- -3.57,
- -3.86,
- -4.68,
- -4.41,
- -3.69,
- -4.71,
- -5.15,
- -4.28,
- -3.26,
- -2.78,
- -2.74,
- -2.54,
- -2.11,
- -1.8,
- -2.66,
- -2.74,
- -2.16,
- -1.7,
- -1.21,
- -0.5,
- 0.34,
- 1.83,
- 3.09,
- 3.86,
- 4.13,
- 3.83,
- 2.03,
- 1.91,
- 0.06,
- 1.03,
- -1.39,
- -2.9,
- -3.85,
- -3.97,
- -4.0,
- -4.15,
- -4.21,
- -4.16,
- -4.02,
- -3.84,
- -3.44,
- -2.47,
- -0.77,
- -1.65,
- -1.89,
- 0.96,
- -1.43,
- 0.73,
- -0.8,
- -0.38,
- -1.03,
- -1.38,
- -2.02,
- -3.16,
- -4.07,
- -3.29,
- -3.18,
- -4.51,
- -4.3,
- -0.18,
- 0.9,
- -1.76,
- -0.39,
- -3.0,
- -2.96,
- -1.3,
- 0.27,
- -1.29,
- 2.24,
- 1.29,
- 0.29,
- -0.91,
- -1.58,
- -0.99,
- -2.83,
- -1.65,
- 0.36,
- 0.19,
- 2.8,
- -1.46,
- -4.3,
- -5.28,
- -5.8,
- -5.1,
- -5.2,
- -4.42,
- -3.16,
- -1.43,
- -0.79,
- -1.13,
- -0.55,
- -2.42,
- -2.5,
- -5.04,
- -6.07,
- -2.62,
- -1.72,
- -0.38,
- -3.8,
- -5.54,
- -2.07,
- -3.21,
- -1.2,
- -2.46,
- -1.03,
- -0.79,
- -0.62,
- -3.24,
- -2.8,
- 0.94,
- 1.53,
- 0.03,
- -3.25,
- -3.7,
- -1.7,
- 1.64,
- 3.79,
- 1.04,
- 3.38,
- 3.6,
- 4.29,
- 4.68,
- 4.8,
- 4.73,
- 4.4,
- 4.53,
- 4.6,
- 4.51,
- 4.32,
- 4.48,
- 2.93,
- 1.52,
- 1.77,
- 2.26,
- 2.74,
- 1.97,
- 3.1,
- 2.77,
- 2.25,
- 0.54,
- 1.67,
- 2.17,
- 3.04,
- 5.6,
- 4.6,
- 5.63,
- 7.39,
- 4.91,
- 3.11,
- 1.62,
- 1.52,
- 2.07,
- 2.94,
- 3.06,
- 0.33,
- 1.27,
- 4.0,
- 3.45,
- 1.98,
- 1.85,
- 1.8,
- 1.84,
- 2.28,
- 2.52,
- -0.67,
- -1.84,
- -0.1,
- 1.62,
- 5.4,
- 2.51,
- -1.18,
- -1.64,
- -0.45,
- -0.95,
- -3.36,
- -4.51,
- -5.0,
- -6.68,
- -8.5,
- -9.57,
- -8.72,
- -7.14,
- -6.7,
- -5.85,
- -5.79,
- -5.48,
- -5.04,
- -5.13,
- -4.88,
- -4.59,
- -4.55,
- -4.68,
- -3.47,
- -0.9,
- -0.87,
- 0.28,
- 2.83,
- 4.64,
- 3.44,
- 2.69,
- 2.8,
- 2.95,
- 2.78,
- 1.91,
- 0.83,
- 0.38,
- 0.04,
- -0.65,
- -0.91,
- -2.1,
- -2.57,
- -2.3,
- -3.61,
- -4.07,
- -3.5,
- -4.03,
- -4.13,
- -4.51,
- -4.44,
- -4.92,
- -5.51,
- -5.42,
- -5.88,
- -6.27,
- -6.05,
- -6.01,
- -6.04,
- -6.28,
- -6.35,
- -6.4,
- -6.49,
- -6.36,
- -6.61,
- -6.4,
- -6.42,
- -6.24,
- -6.43,
- -6.68,
- -6.93,
- -7.2,
- -7.24,
- -7.14,
- -7.03,
- -6.9,
- -6.81,
- -6.6,
- -6.45,
- -6.25,
- -6.3,
- -6.25,
- -6.19,
- -6.93,
- -6.84,
- -6.4,
- -5.5,
- -5.04,
- -4.75,
- -4.67,
- -4.35,
- -4.07,
- -3.81,
- -1.27,
- -6.02,
- -0.89,
- -3.32,
- -7.73,
- -9.17,
- -9.05,
- -9.18,
- -9.35,
- -9.44,
- -9.19,
- -9.06,
- -8.99,
- -9.04,
- -9.12,
- -9.47,
- -9.63,
- -9.69,
- -9.39,
- -9.14,
- -8.98,
- -8.94,
- -8.68,
- -8.42,
- -8.47,
- -8.0,
- -7.78,
- -7.68,
- -7.35,
- -7.38,
- -7.45,
- -7.15,
- -6.62,
- -6.11,
- -5.81,
- -5.14,
- -4.58,
- -3.83,
- -3.03,
- -2.41,
- -2.05,
- -1.5,
- -0.85,
- -0.41,
- 0.37,
- 1.56,
- 2.4,
- 2.77,
- 3.61,
- 3.94,
- 3.9,
- 2.52,
- 1.76,
- -0.84,
- -0.67,
- 1.01,
- 1.15,
- -0.31,
- -0.25,
- -1.17,
- 3.61,
- 0.48,
- -6.1,
- -4.44,
- -7.32,
- -10.04,
- -9.61,
- -8.09,
- -3.65,
- -2.82,
- -1.9,
- -8.23,
- -7.73,
- -7.14,
- -6.63,
- -4.86,
- -5.11,
- -4.97,
- -5.64,
- -8.09,
- -6.9,
- -1.06,
- -0.14,
- -0.87,
- -4.03,
- -4.0,
- -2.04,
- -2.77,
- -3.85,
- -4.21,
- -3.22,
- -3.98,
- -4.86,
- -5.0,
- -5.47,
- -5.28,
- -5.55,
- -4.95,
- -4.78,
- -5.29,
- -4.56,
- -4.57,
- -5.02,
- -5.06,
- -5.39,
- -5.69,
- -5.18,
- -3.92,
- -3.33,
- -2.81,
- -2.5,
- -1.92,
- -1.76,
- -1.19,
- -1.05,
- -1.36,
- -1.34,
- -0.8,
- 0.04,
- 0.98,
- 1.94,
- 2.83,
- 3.1,
- 2.71,
- 1.74,
- 1.83,
- -0.17,
- 1.35,
- -0.61,
- -1.68,
- -3.02,
- -3.66,
- -3.81,
- -3.75,
- -3.78,
- -3.9,
- -3.73,
- -3.48,
- -3.17,
- -2.43,
- -1.13,
- 1.39,
- 1.55,
- -0.57,
- -0.32,
- 0.06,
- -0.28,
- -0.91,
- 0.09,
- -0.56,
- -1.6,
- -2.02,
- -0.59,
- -1.25,
- -1.57,
- -1.75,
- -0.62,
- -0.98,
- -2.19,
- -1.24,
- -2.41,
- -2.45,
- -2.21,
- -2.34,
- -0.44,
- 0.87,
- -3.05,
- 0.36,
- 1.29,
- -0.24,
- -2.19,
- -1.67,
- -2.13,
- -5.12,
- -4.23,
- -6.58,
- -8.43,
- -3.97,
- -3.69,
- -6.21,
- -5.07,
- -6.22,
- -4.85,
- -4.1,
- -4.02,
- -4.42,
- -0.47,
- 0.12,
- -0.8,
- -1.44,
- -3.86,
- -3.8,
- -4.07,
- -5.24,
- -3.79,
- -3.29,
- -0.98,
- -3.58,
- -4.61,
- -4.02,
- -0.08,
- -0.63,
- -0.36,
- -0.94,
- -1.96,
- -1.28,
- -3.33,
- -4.49,
- -3.39,
- -2.1,
- -4.65,
- -4.79,
- -1.85,
- -0.53,
- 1.25,
- 2.27,
- 2.79,
- 2.83,
- 3.03,
- 3.2,
- 3.39,
- 3.71,
- 4.05,
- 4.04,
- 3.89,
- 3.88,
- 3.64,
- 3.36,
- 2.88,
- 0.58,
- 0.29,
- 1.45,
- 0.36,
- 0.77,
- 1.48,
- 0.27,
- 1.41,
- 2.13,
- 0.73,
- 0.55,
- -0.05,
- 1.87,
- 3.33,
- 3.15,
- 7.73,
- 7.58,
- 5.24,
- 4.6,
- 3.03,
- 2.98,
- 2.79,
- 3.51,
- 3.44,
- 0.58,
- 0.76,
- 2.31,
- 2.15,
- -0.31,
- 0.74,
- 1.54,
- -0.14,
- 1.21,
- 1.08,
- 3.1,
- -3.75,
- -0.63,
- -0.46,
- 1.53,
- 1.07,
- 1.81,
- -0.94,
- -0.39,
- -0.89,
- -2.13,
- -4.5,
- -4.86,
- -6.26,
- -7.79,
- -8.81,
- -9.5,
- -7.27,
- -6.3,
- -5.67,
- -5.41,
- -5.02,
- -4.46,
- -4.4,
- -3.64,
- -2.35,
- 0.21,
- 1.23,
- 0.84,
- 1.81,
- 1.91,
- 2.95,
- 2.78,
- 2.03,
- 1.32,
- 0.86,
- 0.76,
- 0.8,
- 0.59,
- -0.01,
- -0.68,
- -0.99,
- -1.25,
- -0.96,
- -1.82,
- -2.89,
- -3.14,
- -3.38,
- -4.59,
- -4.79,
- -4.45,
- -4.71,
- -5.15,
- -5.19,
- -5.47,
- -5.87,
- -6.31,
- -6.44,
- -6.73,
- -6.62,
- -6.44,
- -6.48,
- -6.64,
- -6.73,
- -6.81,
- -6.77,
- -6.73,
- -6.68,
- -6.95,
- -6.9,
- -6.91,
- -7.01,
- -7.19,
- -7.47,
- -7.62,
- -7.8,
- -7.86,
- -7.81,
- -7.91,
- -7.92,
- -7.69,
- -7.39,
- -7.24,
- -6.99,
- -5.86,
- -6.35,
- -6.84,
- -7.5,
- -7.7,
- -7.12,
- -6.64,
- -5.68,
- -5.36,
- -5.34,
- -4.96,
- -4.98,
- -5.45,
- -4.35,
- -5.5,
- -3.87,
- -5.47,
- -7.38,
- -8.83,
- -9.23,
- -9.48,
- -9.55,
- -9.63,
- -9.46,
- -9.02,
- -8.94,
- -9.07,
- -9.44,
- -10.12,
- -10.57,
- -10.26,
- -9.95,
- -9.6,
- -9.22,
- -8.98,
- -8.71,
- -8.27,
- -8.12,
- -7.93,
- -7.77,
- -7.65,
- -7.51,
- -7.31,
- -7.15,
- -7.15,
- -7.01,
- -6.87,
- -6.61,
- -5.93,
- -5.11,
- -4.58,
- -4.16,
- -3.45,
- -2.74,
- -2.09,
- -1.88,
- -1.5,
- -1.01,
- 0.14,
- 1.33,
- 2.04,
- 2.82,
- 3.77,
- 3.98,
- 3.53,
- 3.41,
- 4.24,
- 0.51,
- 1.9,
- -1.71,
- 0.89,
- 0.07,
- -2.09,
- -0.3,
- 2.0,
- -1.61,
- -2.93,
- -1.88,
- -4.69,
- -8.25,
- -3.6,
- -3.01,
- -1.64,
- -2.06,
- -8.95,
- -9.0,
- -8.31,
- -7.2,
- -6.48,
- -6.23,
- -5.38,
- -5.4,
- -6.72,
- -6.3,
- -6.1,
- -7.7,
- -7.04,
- -3.37,
- -2.88,
- -0.49,
- 0.08,
- 0.89,
- -1.24,
- -0.88,
- -2.34,
- -3.3,
- -3.76,
- -5.68,
- -5.28,
- -5.81,
- -5.66,
- -5.82,
- -5.4,
- -5.23,
- -5.12,
- -4.77,
- -4.49,
- -4.98,
- -6.12,
- -6.17,
- -5.02,
- -4.16,
- -2.86,
- -2.79,
- -1.94,
- -1.61,
- -1.36,
- -1.1,
- -0.61,
- -0.17,
- 0.14,
- 0.49,
- 0.77,
- 1.11,
- 1.38,
- 1.28,
- 1.17,
- 0.88,
- 0.59,
- 0.8,
- -1.2,
- -1.5,
- -2.48,
- -3.34,
- -3.77,
- -3.76,
- -3.52,
- -3.47,
- -3.55,
- -3.37,
- -3.01,
- -2.58,
- -1.92,
- 0.73,
- 2.68,
- 2.85,
- 2.2,
- 0.59,
- 1.03,
- -1.33,
- -0.44,
- 0.86,
- -2.67,
- -3.43,
- -1.82,
- -2.7,
- -1.55,
- 0.59,
- -1.14,
- 0.21,
- -2.28,
- -2.98,
- -2.37,
- -3.11,
- -3.9,
- -2.62,
- -3.37,
- -0.59,
- 0.54,
- -5.08,
- -0.33,
- 1.37,
- -1.53,
- -4.28,
- -3.48,
- -2.8,
- -5.09,
- -4.76,
- -6.86,
- -6.81,
- -4.91,
- -6.12,
- -7.69,
- -6.78,
- -5.85,
- -5.0,
- -3.4,
- -3.38,
- -3.99,
- -0.94,
- -0.89,
- 0.19,
- -0.82,
- -3.26,
- -3.85,
- -2.86,
- -5.04,
- -5.1,
- -4.56,
- -2.31,
- -0.1,
- -2.56,
- -6.5,
- -2.95,
- 0.36,
- -0.96,
- 0.31,
- -0.94,
- 0.64,
- 0.76,
- -1.68,
- -2.29,
- -2.0,
- -0.2,
- 1.65,
- 1.65,
- -0.38,
- 1.6,
- 2.62,
- 2.04,
- 1.57,
- 1.73,
- 1.69,
- 1.86,
- 2.09,
- 2.42,
- 2.99,
- 3.19,
- 3.02,
- 2.51,
- 2.32,
- 0.14,
- 0.06,
- 0.23,
- 2.85,
- -1.27,
- -0.25,
- -0.61,
- 0.83,
- 0.29,
- 0.28,
- 0.17,
- -0.79,
- -0.26,
- -2.78,
- 0.98,
- 5.26,
- 5.76,
- 5.97,
- 5.1,
- 4.86,
- 4.2,
- 4.16,
- 3.91,
- 3.42,
- 2.95,
- 0.7,
- 0.52,
- -0.12,
- 1.39,
- -0.66,
- -0.48,
- 0.38,
- -1.77,
- 0.2,
- 0.61,
- 2.21,
- 1.83,
- -2.37,
- -1.48,
- -0.62,
- 2.59,
- 1.6,
- -0.13,
- -0.91,
- -0.31,
- -1.5,
- -3.11,
- -2.99,
- -1.64,
- 0.32,
- 1.12,
- -0.28,
- -2.54,
- -3.16,
- -2.38,
- -1.9,
- -0.42,
- -0.51,
- 0.11,
- 0.92,
- 1.57,
- 1.52,
- 0.64,
- 0.9,
- 0.95,
- 0.41,
- 0.36,
- 0.27,
- -0.27,
- -0.78,
- -0.97,
- -1.2,
- -1.17,
- -1.73,
- -2.34,
- -2.55,
- -2.47,
- -2.06,
- -2.32,
- -3.28,
- -3.58,
- -3.89,
- -4.51,
- -5.44,
- -5.57,
- -5.63,
- -5.67,
- -5.69,
- -5.89,
- -6.5,
- -6.93,
- -7.14,
- -7.37,
- -7.24,
- -6.92,
- -7.17,
- -7.06,
- -7.24,
- -7.08,
- -7.03,
- -7.05,
- -6.8,
- -6.92,
- -7.39,
- -7.42,
- -7.49,
- -7.7,
- -7.85,
- -7.95,
- -8.06,
- -8.11,
- -7.97,
- -8.09,
- -8.16,
- -8.18,
- -8.1,
- -7.91,
- -7.44,
- -7.1,
- -6.73,
- -6.39,
- -7.0,
- -7.58,
- -8.29,
- -8.03,
- -7.66,
- -6.93,
- -6.03,
- -6.29,
- -6.08,
- -6.15,
- -6.31,
- -7.14,
- -6.92,
- -8.32,
- -7.5,
- -7.47,
- -8.83,
- -9.34,
- -9.75,
- -9.98,
- -9.92,
- -9.55,
- -9.04,
- -8.73,
- -9.13,
- -9.41,
- -10.09,
- -10.52,
- -10.27,
- -10.1,
- -9.84,
- -9.71,
- -9.38,
- -9.03,
- -8.62,
- -8.32,
- -8.07,
- -7.58,
- -7.14,
- -7.14,
- -7.37,
- -7.84,
- -7.92,
- -8.09,
- -7.49,
- -7.07,
- -6.39,
- -5.95,
- -5.34,
- -4.69,
- -4.47,
- -4.0,
- -3.51,
- -3.33,
- -2.76,
- -1.87,
- -0.64,
- 0.27,
- 1.21,
- 2.04,
- 2.99,
- 3.87,
- 4.06,
- 3.91,
- 4.57,
- 5.63,
- 5.71,
- -0.63,
- 1.31,
- 0.82,
- 0.27,
- -1.3,
- 2.48,
- -1.06,
- -1.3,
- 0.34,
- 0.14,
- -3.42,
- -3.0,
- -3.65,
- -2.34,
- -8.21,
- -9.77,
- -9.45,
- -8.45,
- -7.83,
- -6.78,
- -6.17,
- -5.47,
- -3.98,
- -2.12,
- -1.22,
- 0.05,
- -5.81,
- -4.48,
- -2.71,
- -2.05,
- -2.96,
- -2.24,
- -2.94,
- -3.58,
- -4.57,
- -1.52,
- -0.84,
- -2.6,
- -5.85,
- -5.26,
- -6.8,
- -6.09,
- -6.32,
- -6.52,
- -5.9,
- -5.52,
- -5.33,
- -4.98,
- -4.77,
- -5.67,
- -6.52,
- -5.51,
- -4.73,
- -3.99,
- -3.4,
- -2.78,
- -2.08,
- -1.78,
- -1.42,
- -0.9,
- -0.48,
- -0.16,
- 0.17,
- 0.27,
- 0.1,
- 0.19,
- 0.33,
- -0.33,
- 0.13,
- -0.17,
- -1.07,
- -1.87,
- -2.47,
- -3.13,
- -3.62,
- -4.05,
- -4.0,
- -3.64,
- -3.35,
- -3.41,
- -3.33,
- -3.01,
- -2.48,
- -0.21,
- 1.73,
- 3.27,
- 3.69,
- 1.96,
- 2.5,
- 2.03,
- -0.22,
- 0.07,
- 0.07,
- -3.71,
- -2.76,
- -2.51,
- -3.46,
- -1.43,
- -2.15,
- 1.09,
- 1.57,
- -3.19,
- -1.49,
- -2.86,
- -3.94,
- -4.32,
- -3.41,
- -3.28,
- -1.69,
- -3.98,
- -5.62,
- -2.37,
- -0.33,
- -4.29,
- -4.05,
- -4.34,
- -3.16,
- -4.69,
- -5.79,
- -6.87,
- -6.65,
- -7.25,
- -7.73,
- -6.69,
- -9.99,
- -8.25,
- -4.33,
- -3.03,
- -2.8,
- -2.36,
- -0.87,
- -1.42,
- -1.0,
- -0.94,
- -1.9,
- -4.3,
- -3.56,
- -7.2,
- -7.71,
- -4.69,
- -2.03,
- 0.99,
- -2.49,
- -5.5,
- -2.89,
- 1.47,
- -1.14,
- -0.25,
- -1.34,
- 0.76,
- 3.39,
- 1.04,
- -1.11,
- -1.76,
- -0.07,
- -0.27,
- -0.04,
- 3.86,
- 2.49,
- 1.79,
- 0.78,
- 0.06,
- -0.01,
- 0.04,
- 0.29,
- 0.6,
- 1.02,
- 1.62,
- 2.3,
- 2.29,
- 1.48,
- 0.39,
- -0.49,
- 0.24,
- 0.57,
- 1.58,
- 0.57,
- -1.43,
- -0.72,
- -1.69,
- 0.09,
- -0.48,
- 0.24,
- 0.0,
- -0.08,
- 0.36,
- 2.93,
- 4.79,
- 4.71,
- 4.68,
- 4.82,
- 4.58,
- 4.71,
- 4.79,
- 4.58,
- 4.1,
- 3.77,
- 5.81,
- 2.56,
- 0.92,
- 1.49,
- 0.2,
- -1.24,
- -0.48,
- -2.29,
- -2.52,
- -0.09,
- 2.52,
- 3.01,
- -0.32,
- -2.73,
- -1.4,
- 1.05,
- 0.05,
- -0.97,
- -0.55,
- -1.85,
- -1.29,
- -1.74,
- -1.54,
- 1.48,
- 2.75,
- 5.95,
- -0.27,
- -2.12,
- -0.19,
- -1.16,
- -1.44,
- -0.2,
- -0.78,
- -0.33,
- 0.47,
- 0.31,
- 0.01,
- 0.02,
- -0.02,
- -1.02,
- -1.1,
- -1.2,
- -1.76,
- -2.32,
- -2.3,
- -2.42,
- -2.47,
- -3.25,
- -4.03,
- -4.38,
- -4.32,
- -3.94,
- -3.48,
- -3.87,
- -4.36,
- -4.36,
- -4.96,
- -5.43,
- -6.18,
- -6.39,
- -6.39,
- -6.16,
- -6.42,
- -6.81,
- -7.24,
- -7.51,
- -7.85,
- -8.04,
- -7.79,
- -7.63,
- -7.79,
- -7.61,
- -7.56,
- -7.44,
- -7.09,
- -6.96,
- -6.87,
- -7.58,
- -7.83,
- -8.02,
- -8.08,
- -8.15,
- -8.08,
- -7.91,
- -8.04,
- -8.21,
- -8.37,
- -8.31,
- -7.92,
- -8.05,
- -8.07,
- -7.97,
- -7.19,
- -7.39,
- -7.37,
- -7.3,
- -7.69,
- -7.82,
- -7.54,
- -8.2,
- -8.12,
- -7.54,
- -7.19,
- -7.13,
- -6.9,
- -6.99,
- -7.33,
- -7.76,
- -8.06,
- -8.03,
- -8.0,
- -8.24,
- -8.83,
- -9.55,
- -10.07,
- -10.13,
- -10.23,
- -10.04,
- -9.76,
- -9.31,
- -9.28,
- -9.45,
- -9.52,
- -10.02,
- -10.1,
- -9.91,
- -9.7,
- -9.62,
- -9.21,
- -9.23,
- -8.93,
- -8.53,
- -8.22,
- -7.7,
- -6.71,
- -6.61,
- -7.93,
- -7.91,
- -8.21,
- -8.28,
- -7.72,
- -7.06,
- -6.55,
- -6.17,
- -6.02,
- -5.6,
- -5.38,
- -5.03,
- -4.34,
- -4.5,
- -3.42,
- -2.43,
- -1.72,
- -0.26,
- 0.71,
- 1.74,
- 2.8,
- 3.56,
- 3.73,
- 3.57,
- 4.19,
- 5.68,
- 6.79,
- 6.07,
- 5.99,
- 0.54,
- -1.06,
- -0.7,
- 1.69,
- 2.58,
- -0.48,
- -0.01,
- -0.17,
- 0.32,
- -1.5,
- -2.69,
- -2.54,
- -7.63,
- -11.43,
- -10.55,
- -8.37,
- -7.91,
- -6.94,
- -6.1,
- -6.51,
- -6.48,
- -7.35,
- -8.07,
- -8.02,
- -6.15,
- -5.6,
- -5.33,
- -5.21,
- -5.8,
- -5.6,
- -5.34,
- -5.28,
- -5.34,
- -4.62,
- -4.16,
- -4.15,
- -5.22,
- -6.2,
- -7.37,
- -7.22,
- -6.98,
- -6.86,
- -6.54,
- -6.23,
- -6.08,
- -5.71,
- -5.34,
- -5.61,
- -6.5,
- -6.4,
- -5.4,
- -4.88,
- -4.27,
- -3.81,
- -3.21,
- -2.52,
- -2.13,
- -1.84,
- -1.47,
- -1.17,
- -0.84,
- -0.74,
- -0.57,
- -0.52,
- -0.19,
- -0.44,
- -1.11,
- -1.76,
- -2.27,
- -2.69,
- -3.2,
- -3.64,
- -3.83,
- -3.99,
- -3.72,
- -2.72,
- -3.39,
- -3.72,
- -3.45,
- -2.95,
- -1.26,
- 0.18,
- 1.75,
- 3.11,
- 2.91,
- 1.78,
- 2.42,
- 3.6,
- 1.88,
- 0.59,
- 0.5,
- -0.77,
- -1.69,
- -0.63,
- 0.83,
- -1.11,
- -0.44,
- -0.38,
- -1.77,
- -1.39,
- 1.55,
- 2.41,
- 1.5,
- -2.96,
- -2.71,
- -2.08,
- -4.08,
- -4.08,
- -4.86,
- -3.04,
- -3.35,
- -4.47,
- -3.4,
- -4.18,
- -3.67,
- -5.5,
- -5.07,
- -7.38,
- -6.43,
- -7.33,
- -7.77,
- -8.41,
- -8.2,
- -6.91,
- -4.4,
- -3.6,
- -2.94,
- -1.65,
- -0.67,
- -0.86,
- -1.3,
- -1.94,
- -0.97,
- -4.13,
- -4.73,
- -5.79,
- -4.66,
- -3.06,
- -1.39,
- -0.88,
- 0.85,
- 0.03,
- -2.94,
- 0.41,
- -1.02,
- 2.29,
- -1.6,
- -0.89,
- 1.82,
- -0.43,
- -2.17,
- -1.9,
- -1.43,
- 0.74,
- 1.33,
- 1.82,
- 1.16,
- 0.01,
- -0.61,
- -0.8,
- -1.11,
- -1.31,
- -0.81,
- -0.47,
- -0.21,
- 0.53,
- 1.38,
- 1.44,
- 0.37,
- -0.71,
- -0.51,
- -0.05,
- 0.35,
- 0.4,
- 1.77,
- -0.46,
- 0.06,
- 0.07,
- 0.12,
- -0.25,
- 0.19,
- 1.78,
- 3.06,
- 2.89,
- 3.27,
- 4.2,
- 4.24,
- 4.17,
- 4.4,
- 4.5,
- 4.71,
- 4.8,
- 4.57,
- 4.2,
- 4.44,
- 4.85,
- -0.75,
- 2.43,
- 2.04,
- 0.1,
- -1.92,
- -1.64,
- -3.1,
- -3.84,
- -1.32,
- 2.17,
- 3.04,
- 2.11,
- -2.8,
- -2.58,
- -0.15,
- -0.14,
- -0.12,
- -0.86,
- -1.85,
- -2.27,
- -1.76,
- -0.44,
- 0.52,
- 1.86,
- 5.04,
- -1.29,
- -2.58,
- -2.09,
- -1.4,
- -1.81,
- -1.56,
- -0.73,
- -0.62,
- -0.96,
- -1.2,
- -1.0,
- -1.15,
- -2.04,
- -2.05,
- -2.08,
- -2.62,
- -3.14,
- -3.36,
- -3.29,
- -3.33,
- -4.03,
- -4.78,
- -5.1,
- -5.15,
- -5.53,
- -4.71,
- -4.74,
- -4.91,
- -5.28,
- -4.9,
- -5.74,
- -6.06,
- -6.59,
- -6.88,
- -6.87,
- -6.64,
- -6.82,
- -6.92,
- -7.46,
- -7.88,
- -8.16,
- -8.17,
- -8.09,
- -8.09,
- -7.98,
- -8.01,
- -7.91,
- -7.55,
- -7.28,
- -7.06,
- -7.56,
- -7.88,
- -8.35,
- -8.46,
- -8.51,
- -8.5,
- -8.38,
- -8.5,
- -8.45,
- -8.45,
- -8.37,
- -8.29,
- -8.22,
- -8.15,
- -7.69,
- -7.56,
- -7.37,
- -7.37,
- -7.67,
- -7.52,
- -7.48,
- -6.88,
- -7.16,
- -7.67,
- -8.02,
- -7.61,
- -7.48,
- -7.47,
- -7.43,
- -7.3,
- -7.2,
- -7.23,
- -7.64,
- -7.53,
- -7.53,
- -8.08,
- -8.49,
- -9.43,
- -10.26,
- -10.3,
- -10.11,
- -9.83,
- -10.03,
- -9.59,
- -9.43,
- -9.59,
- -9.45,
- -9.74,
- -9.84,
- -9.84,
- -9.68,
- -9.51,
- -8.98,
- -8.98,
- -8.51,
- -8.02,
- -7.56,
- -6.69,
- -6.16,
- -6.16,
- -7.98,
- -7.7,
- -7.92,
- -7.7,
- -7.6,
- -7.22,
- -6.91,
- -6.19,
- -6.14,
- -5.96,
- -5.65,
- -5.46,
- -4.87,
- -4.77,
- -3.74,
- -2.74,
- -1.62,
- -1.07,
- 0.32,
- 1.57,
- 2.68,
- 3.25,
- 3.12,
- 3.09,
- 3.73,
- 4.75,
- 6.11,
- 6.41,
- 6.1,
- 6.2,
- 4.83,
- 2.77,
- 0.77,
- 1.57,
- 4.6,
- -2.48,
- 0.8,
- 0.66,
- 0.06,
- -3.11,
- -1.43,
- -5.72,
- -5.72,
- -6.42,
- -4.88,
- -6.91,
- -7.16,
- -6.41,
- -6.17,
- -6.25,
- -6.88,
- -7.28,
- -7.17,
- -6.49,
- -6.57,
- -6.57,
- -7.02,
- -6.96,
- -6.87,
- -6.55,
- -6.63,
- -6.67,
- -5.69,
- -5.53,
- -5.46,
- -7.29,
- -7.62,
- -6.77,
- -7.98,
- -7.65,
- -7.33,
- -7.08,
- -6.69,
- -6.53,
- -6.28,
- -6.09,
- -6.15,
- -6.17,
- -6.51,
- -6.14,
- -5.5,
- -4.8,
- -4.24,
- -3.85,
- -3.53,
- -3.21,
- -2.85,
- -2.57,
- -2.22,
- -1.88,
- -1.72,
- -1.33,
- -1.27,
- -1.33,
- -1.97,
- -2.52,
- -2.8,
- -3.01,
- -3.38,
- -3.69,
- -3.98,
- -4.19,
- -3.52,
- -3.86,
- -4.07,
- -4.08,
- -3.66,
- -3.15,
- -2.19,
- -1.35,
- 0.07,
- 1.5,
- 2.64,
- 2.08,
- 1.74,
- 2.26,
- 3.51,
- 2.3,
- 2.98,
- 2.16,
- 1.22,
- -0.53,
- -1.07,
- 3.42,
- 3.63,
- 2.06,
- 2.37,
- 1.71,
- 0.14,
- 2.48,
- 2.98,
- 3.48,
- -1.67,
- -2.48,
- -1.88,
- -3.96,
- -4.83,
- -3.91,
- -2.95,
- -4.86,
- -3.11,
- -2.75,
- -5.5,
- -5.55,
- -5.07,
- -5.98,
- -7.74,
- -8.1,
- -8.74,
- -8.7,
- -8.17,
- -8.47,
- -5.36,
- -5.08,
- -4.5,
- 0.31,
- -2.61,
- -0.76,
- -0.73,
- 0.03,
- -2.6,
- -0.12,
- -2.26,
- -4.86,
- -4.11,
- -0.69,
- -1.07,
- -1.79,
- -2.46,
- -0.85,
- -2.56,
- -2.64,
- -0.03,
- 0.49,
- -0.21,
- -0.11,
- 1.35,
- 0.6,
- -1.79,
- -0.34,
- 0.48,
- 0.71,
- -0.08,
- -0.38,
- -0.65,
- -0.82,
- -1.31,
- -1.63,
- -1.72,
- -2.07,
- -2.11,
- -1.54,
- -1.14,
- -1.03,
- -0.26,
- 0.79,
- 0.79,
- 0.2,
- -0.39,
- -0.18,
- 0.25,
- 0.54,
- 1.97,
- 3.36,
- 0.75,
- 0.47,
- 1.38,
- 1.14,
- 0.38,
- -0.88,
- 3.94,
- 4.08,
- 3.47,
- 3.08,
- 3.37,
- 3.82,
- 3.79,
- 3.77,
- 3.91,
- 3.99,
- 4.05,
- 3.87,
- 3.45,
- 2.96,
- 2.17,
- 1.95,
- 2.42,
- 2.95,
- 0.81,
- -0.7,
- -0.9,
- -3.77,
- -3.09,
- -1.72,
- 1.42,
- 2.47,
- 2.44,
- 1.84,
- -6.67,
- -0.57,
- -0.57,
- -1.65,
- -2.48,
- -2.99,
- -2.49,
- -2.5,
- -1.42,
- -0.49,
- -1.01,
- 3.17,
- -1.48,
- -0.35,
- -2.75,
- -3.19,
- -2.18,
- -2.43,
- -1.56,
- -1.82,
- -2.47,
- -2.08,
- -2.2,
- -2.88,
- -2.6,
- -2.79,
- -3.27,
- -3.76,
- -4.06,
- -4.06,
- -4.06,
- -4.09,
- -5.05,
- -5.15,
- -4.77,
- -4.25,
- -4.19,
- -5.04,
- -5.53,
- -6.54,
- -5.89,
- -5.41,
- -6.2,
- -6.53,
- -6.84,
- -6.91,
- -7.06,
- -6.86,
- -6.56,
- -6.8,
- -6.76,
- -7.26,
- -8.17,
- -8.34,
- -8.49,
- -8.22,
- -8.2,
- -8.24,
- -8.13,
- -8.02,
- -7.92,
- -7.59,
- -7.55,
- -7.99,
- -8.66,
- -8.65,
- -8.68,
- -8.67,
- -8.65,
- -8.8,
- -8.63,
- -8.53,
- -8.58,
- -8.58,
- -8.38,
- -8.28,
- -7.3,
- -6.31,
- -5.06,
- -7.08,
- -7.06,
- -6.65,
- -7.14,
- -6.97,
- -7.41,
- -7.39,
- -8.29,
- -8.0,
- -8.01,
- -8.1,
- -8.15,
- -8.04,
- -7.72,
- -7.67,
- -7.95,
- -7.84,
- -7.58,
- -7.78,
- -7.99,
- -8.64,
- -9.34,
- -9.29,
- -9.17,
- -9.46,
- -9.26,
- -8.94,
- -8.94,
- -8.95,
- -8.94,
- -9.13,
- -9.32,
- -9.43,
- -9.18,
- -8.76,
- -8.76,
- -8.48,
- -7.87,
- -7.3,
- -6.75,
- -6.71,
- -5.91,
- -6.3,
- -6.22,
- -6.71,
- -7.0,
- -7.42,
- -7.76,
- -7.77,
- -7.45,
- -6.07,
- -6.43,
- -6.09,
- -5.99,
- -5.62,
- -5.28,
- -5.08,
- -3.77,
- -2.87,
- -1.97,
- -1.28,
- -0.2,
- 0.91,
- 2.05,
- 2.61,
- 2.48,
- 2.44,
- 3.07,
- 4.26,
- 5.02,
- 5.27,
- 5.06,
- 5.47,
- 5.87,
- 6.04,
- 6.21,
- 6.07,
- 4.43,
- 1.59,
- -2.03,
- -0.03,
- 1.14,
- -0.15,
- 0.7,
- 0.66,
- -1.82,
- -1.54,
- -0.48,
- -0.65,
- -6.68,
- -6.18,
- -5.97,
- -6.29,
- -6.31,
- -6.57,
- -6.6,
- -6.72,
- -7.03,
- -7.21,
- -7.46,
- -7.71,
- -7.66,
- -7.62,
- -7.85,
- -7.92,
- -7.46,
- -6.71,
- -7.22,
- -7.88,
- -7.74,
- -8.05,
- -7.66,
- -7.83,
- -7.62,
- -7.38,
- -6.98,
- -6.76,
- -6.77,
- -6.53,
- -6.57,
- -6.51,
- -6.47,
- -6.29,
- -6.08,
- -5.55,
- -5.21,
- -4.7,
- -4.43,
- -4.08,
- -3.79,
- -3.44,
- -3.22,
- -3.05,
- -2.91,
- -2.57,
- -2.64,
- -2.77,
- -3.1,
- -3.27,
- -3.4,
- -3.7,
- -3.96,
- -4.26,
- -4.11,
- -3.77,
- -4.08,
- -4.34,
- -5.04,
- -2.5,
- -3.13,
- -2.31,
- -1.7,
- -1.04,
- -0.09,
- 1.06,
- 1.0,
- 1.52,
- 1.61,
- 1.44,
- 2.22,
- 3.41,
- 2.26,
- 2.53,
- 1.46,
- -0.16,
- 0.15,
- 1.6,
- 2.44,
- 1.86,
- 0.63,
- 1.48,
- 2.28,
- 2.67,
- 3.71,
- 3.08,
- 0.04,
- -0.38,
- -2.55,
- -2.36,
- -2.14,
- -3.81,
- -3.6,
- -4.32,
- -3.82,
- -5.21,
- -6.59,
- -6.37,
- -7.54,
- -6.84,
- -7.58,
- -7.79,
- -6.27,
- -5.72,
- -10.14,
- -10.17,
- -5.07,
- -5.71,
- -1.58,
- -4.36,
- -2.43,
- -3.15,
- -1.11,
- -0.58,
- -0.12,
- 1.09,
- 0.64,
- 0.51,
- 1.56,
- 1.17,
- 1.34,
- -1.33,
- -1.91,
- -1.56,
- 0.22,
- -3.82,
- 0.54,
- 0.82,
- -0.94,
- -0.93,
- -0.23,
- -1.24,
- -2.64,
- -2.24,
- -1.83,
- -1.3,
- -1.02,
- -1.32,
- -1.86,
- -1.71,
- -1.76,
- -2.09,
- -2.25,
- -2.63,
- -2.53,
- -1.98,
- -1.75,
- -1.7,
- -0.92,
- 0.04,
- 0.24,
- 0.11,
- -0.28,
- -0.3,
- 0.13,
- 0.11,
- 0.47,
- 0.49,
- 1.27,
- 1.47,
- 1.82,
- 0.58,
- -0.01,
- -0.18,
- 3.46,
- 3.39,
- 2.69,
- 2.8,
- 3.08,
- 3.18,
- 2.97,
- 2.72,
- 2.99,
- 3.41,
- 3.35,
- 2.9,
- 2.46,
- 2.02,
- 1.43,
- 1.23,
- 2.38,
- 4.5,
- 0.83,
- -0.31,
- -1.44,
- 0.91,
- 1.18,
- -1.27,
- 0.48,
- 2.34,
- 2.12,
- 2.41,
- -2.83,
- 0.0,
- -1.22,
- -1.91,
- -2.89,
- -3.11,
- -3.03,
- -2.74,
- -1.74,
- -0.63,
- -0.81,
- -0.18,
- -1.09,
- -0.67,
- -1.01,
- -2.66,
- -3.06,
- -3.05,
- -2.63,
- -2.51,
- -3.27,
- -2.98,
- -3.55,
- -3.27,
- -3.35,
- -3.67,
- -4.08,
- -4.4,
- -4.57,
- -4.6,
- -4.49,
- -5.09,
- -5.2,
- -4.92,
- -4.28,
- -4.11,
- -3.16,
- -4.67,
- -7.37,
- -6.61,
- -6.3,
- -6.13,
- -6.49,
- -6.72,
- -6.9,
- -7.0,
- -7.01,
- -6.81,
- -6.39,
- -6.29,
- -6.5,
- -6.9,
- -7.47,
- -8.2,
- -8.25,
- -7.99,
- -8.54,
- -8.73,
- -7.83,
- -8.51,
- -8.11,
- -7.98,
- -7.66,
- -8.01,
- -8.35,
- -8.58,
- -8.68,
- -8.7,
- -8.72,
- -8.86,
- -8.89,
- -9.05,
- -8.99,
- -8.48,
- -7.03,
- -8.35,
- -7.49,
- -6.52,
- -5.69,
- -5.96,
- -6.73,
- -6.51,
- -6.86,
- -7.1,
- -7.25,
- -7.64,
- -7.98,
- -8.25,
- -7.91,
- -8.05,
- -8.08,
- -8.17,
- -7.82,
- -8.03,
- -8.36,
- -8.41,
- -8.45,
- -7.83,
- -7.39,
- -7.67,
- -7.89,
- -8.27,
- -8.59,
- -8.79,
- -8.86,
- -8.58,
- -8.59,
- -8.62,
- -8.65,
- -8.7,
- -9.08,
- -8.98,
- -8.53,
- -7.9,
- -7.26,
- -7.42,
- -7.44,
- -7.25,
- -6.66,
- -6.59,
- -6.39,
- -5.67,
- -5.99,
- -6.31,
- -7.02,
- -7.13,
- -7.3,
- -7.53,
- -7.31,
- -6.55,
- -6.74,
- -6.26,
- -6.09,
- -5.58,
- -5.57,
- -5.2,
- -3.82,
- -2.83,
- -2.36,
- -1.68,
- -1.03,
- 0.26,
- 1.23,
- 1.64,
- 1.51,
- 2.29,
- 3.13,
- 3.38,
- 3.53,
- 3.84,
- 4.02,
- 4.35,
- 5.03,
- 5.35,
- 5.0,
- 4.2,
- 3.03,
- 1.29,
- 1.5,
- 1.07,
- -0.23,
- 0.67,
- 0.3,
- 0.69,
- 0.69,
- -1.66,
- -0.55,
- -0.6,
- -5.93,
- -5.57,
- -5.52,
- -5.42,
- -5.54,
- -5.57,
- -5.77,
- -6.4,
- -7.03,
- -7.37,
- -8.06,
- -8.18,
- -8.35,
- -8.87,
- -9.13,
- -8.92,
- -8.66,
- -7.91,
- -8.0,
- -7.88,
- -8.91,
- -8.86,
- -6.6,
- -7.9,
- -7.69,
- -7.66,
- -7.21,
- -6.88,
- -6.88,
- -6.96,
- -6.9,
- -7.03,
- -7.05,
- -6.71,
- -6.52,
- -6.23,
- -5.91,
- -5.69,
- -5.53,
- -5.25,
- -4.98,
- -4.81,
- -4.8,
- -4.52,
- -4.17,
- -3.97,
- -3.97,
- -4.03,
- -4.1,
- -4.05,
- -4.02,
- -4.19,
- -4.32,
- -4.32,
- -4.26,
- -4.47,
- -4.2,
- -4.23,
- -3.42,
- -4.18,
- -2.91,
- -1.63,
- -0.93,
- -0.39,
- 0.17,
- 0.83,
- 1.3,
- 1.23,
- 1.43,
- 1.62,
- 1.59,
- 0.35,
- 1.39,
- 1.63,
- 1.35,
- -0.41,
- 0.88,
- 1.21,
- 2.6,
- 1.74,
- 0.87,
- 2.24,
- 2.69,
- 2.44,
- 2.63,
- 2.95,
- 1.41,
- 1.22,
- 1.04,
- 0.28,
- 0.08,
- -0.59,
- -0.53,
- -3.01,
- -2.25,
- -2.3,
- -4.27,
- -5.65,
- -6.36,
- -6.78,
- -6.43,
- -5.95,
- -4.12,
- -5.16,
- -6.62,
- -7.32,
- -2.74,
- -2.88,
- 1.77,
- -2.13,
- -3.18,
- -2.77,
- -2.27,
- -0.1,
- 1.85,
- 3.52,
- 2.2,
- 2.54,
- 1.99,
- 1.34,
- -0.54,
- -0.31,
- 0.21,
- -0.74,
- 2.22,
- 0.74,
- -4.03,
- -4.92,
- -5.44,
- -6.47,
- -4.92,
- -4.21,
- -4.32,
- -4.67,
- -2.93,
- -1.5,
- -1.09,
- -2.23,
- -2.2,
- -2.29,
- -2.65,
- -2.74,
- -2.86,
- -2.86,
- -2.79,
- -2.34,
- -2.29,
- -2.3,
- -1.74,
- -1.06,
- -0.95,
- -0.94,
- -1.15,
- -1.25,
- -0.85,
- -0.64,
- -0.04,
- 0.75,
- 2.48,
- -0.88,
- -0.08,
- -0.97,
- -1.09,
- 0.5,
- 2.68,
- 1.97,
- 2.16,
- 2.13,
- 2.2,
- 2.37,
- 2.2,
- 2.24,
- 2.28,
- 2.3,
- 2.0,
- 1.11,
- -0.28,
- 1.18,
- 1.21,
- 1.61,
- 1.65,
- -0.36,
- 2.53,
- -4.2,
- 2.82,
- 0.74,
- 1.92,
- 1.55,
- 0.65,
- 1.44,
- 2.12,
- 0.42,
- -2.41,
- -0.28,
- -2.18,
- -1.74,
- -1.74,
- -2.14,
- -3.92,
- -3.51,
- -2.18,
- -0.81,
- -0.1,
- 1.43,
- 1.04,
- -4.11,
- 2.11,
- -3.57,
- -7.23,
- -3.75,
- -3.37,
- -3.35,
- -3.25,
- -3.77,
- -3.88,
- -3.95,
- -4.07,
- -4.36,
- -4.5,
- -4.7,
- -4.96,
- -4.94,
- -5.04,
- -5.31,
- -4.96,
- -5.05,
- -4.48,
- -3.08,
- -3.38,
- -5.67,
- -6.62,
- -6.85,
- -6.77,
- -6.77,
- -6.68,
- -6.66,
- -6.82,
- -6.98,
- -7.0,
- -6.93,
- -6.76,
- -6.48,
- -6.53,
- -6.83,
- -7.26,
- -7.76,
- -8.01,
- -7.86,
- -7.9,
- -8.29,
- -8.13,
- -8.6,
- -8.37,
- -8.23,
- -7.93,
- -7.94,
- -7.86,
- -8.1,
- -8.37,
- -8.31,
- -8.11,
- -8.35,
- -8.2,
- -8.23,
- -9.11,
- -8.1,
- -7.8,
- -7.67,
- -7.38,
- -6.75,
- -6.13,
- -5.71,
- -5.75,
- -6.19,
- -6.51,
- -7.07,
- -7.92,
- -7.83,
- -7.98,
- -8.52,
- -8.36,
- -8.16,
- -8.1,
- -8.07,
- -7.99,
- -8.07,
- -8.52,
- -8.76,
- -8.59,
- -8.39,
- -7.89,
- -7.79,
- -8.05,
- -8.37,
- -8.73,
- -8.66,
- -8.57,
- -8.48,
- -8.47,
- -8.5,
- -8.59,
- -8.56,
- -8.73,
- -8.34,
- -7.49,
- -6.59,
- -6.77,
- -7.13,
- -7.19,
- -7.27,
- -6.89,
- -6.34,
- -5.97,
- -6.1,
- -5.97,
- -6.26,
- -6.41,
- -6.34,
- -6.51,
- -7.1,
- -7.41,
- -6.7,
- -6.38,
- -5.82,
- -5.5,
- -5.75,
- -5.73,
- -5.21,
- -4.66,
- -3.29,
- -2.71,
- -2.2,
- -1.88,
- -0.5,
- -0.22,
- 0.58,
- 1.26,
- 1.94,
- 2.33,
- 2.28,
- 2.28,
- 2.23,
- 2.35,
- 3.15,
- 4.14,
- 4.51,
- 3.88,
- 2.68,
- 0.98,
- 0.53,
- 0.96,
- 1.09,
- -0.46,
- 0.27,
- 1.83,
- 3.6,
- 0.74,
- -2.06,
- -0.62,
- -0.64,
- -5.36,
- -4.96,
- -4.95,
- -4.72,
- -4.72,
- -4.66,
- -4.87,
- -5.9,
- -7.25,
- -7.13,
- -7.74,
- -7.75,
- -8.61,
- -9.78,
- -9.71,
- -9.16,
- -9.28,
- -8.8,
- -8.25,
- -8.42,
- -8.78,
- -8.28,
- -7.85,
- -7.73,
- -7.93,
- -7.71,
- -7.47,
- -7.11,
- -7.23,
- -7.29,
- -7.0,
- -6.91,
- -7.2,
- -7.05,
- -6.91,
- -6.7,
- -6.51,
- -6.42,
- -6.3,
- -6.26,
- -6.11,
- -5.95,
- -5.86,
- -5.6,
- -5.26,
- -5.01,
- -4.96,
- -4.92,
- -4.81,
- -4.7,
- -4.61,
- -4.38,
- -4.43,
- -4.2,
- -4.3,
- -4.21,
- -4.15,
- -3.22,
- -3.79,
- -3.81,
- -2.48,
- -1.34,
- -0.31,
- 0.42,
- 0.5,
- 1.26,
- 1.43,
- 1.2,
- 0.37,
- 0.9,
- 2.02,
- 2.47,
- 1.55,
- 1.3,
- 0.79,
- -0.54,
- 0.02,
- 1.56,
- 1.74,
- 0.85,
- 0.59,
- 2.26,
- 2.02,
- 2.73,
- 1.52,
- 2.6,
- 1.63,
- 0.52,
- 1.31,
- 0.41,
- 0.89,
- 2.56,
- 2.55,
- 2.05,
- -0.16,
- 0.91,
- 0.5,
- 0.05,
- -2.37,
- -3.25,
- -3.15,
- -2.94,
- -2.85,
- -4.09,
- -3.79,
- -2.18,
- 1.64,
- -2.23,
- -4.08,
- -1.81,
- -2.09,
- -3.1,
- -3.17,
- 0.51,
- 1.08,
- 3.37,
- 3.4,
- 3.65,
- 0.88,
- -0.14,
- -0.99,
- -1.7,
- -0.62,
- -0.61,
- 0.66,
- -3.17,
- 0.82,
- -0.79,
- -5.49,
- -4.39,
- -4.4,
- -4.14,
- -3.2,
- -2.18,
- -2.98,
- -1.01,
- -2.24,
- -3.05,
- -2.69,
- -3.0,
- -3.43,
- -3.68,
- -3.81,
- -3.54,
- -3.27,
- -2.97,
- -3.05,
- -3.12,
- -2.72,
- -2.06,
- -1.78,
- -1.84,
- -1.84,
- -1.61,
- -1.33,
- -0.92,
- -0.16,
- 1.21,
- 3.81,
- -0.28,
- -1.4,
- -0.24,
- -0.94,
- -2.01,
- 0.53,
- 0.37,
- 0.31,
- 0.55,
- 1.04,
- 1.38,
- 1.65,
- 1.84,
- 2.01,
- 1.88,
- 1.1,
- 0.16,
- -3.42,
- 0.14,
- 1.42,
- 1.5,
- 1.43,
- 0.82,
- 1.9,
- -1.66,
- 0.02,
- -3.98,
- -1.17,
- 1.11,
- 1.52,
- 1.13,
- 1.26,
- 1.48,
- -2.28,
- -0.3,
- -2.75,
- -3.51,
- -3.14,
- -2.84,
- -3.67,
- -3.55,
- -2.7,
- -1.69,
- -0.88,
- -0.48,
- -3.85,
- -4.57,
- -1.66,
- -0.81,
- -1.68,
- -3.01,
- -3.51,
- -3.84,
- -4.01,
- -4.3,
- -4.55,
- -4.84,
- -5.03,
- -4.94,
- -4.89,
- -5.01,
- -5.15,
- -5.26,
- -5.53,
- -5.65,
- -5.37,
- -5.35,
- -4.89,
- -4.13,
- -4.02,
- -5.73,
- -6.8,
- -7.16,
- -7.18,
- -7.1,
- -6.78,
- -6.4,
- -6.53,
- -6.94,
- -7.13,
- -7.09,
- -7.12,
- -7.05,
- -6.85,
- -6.97,
- -7.19,
- -7.51,
- -7.59,
- -7.46,
- -7.55,
- -8.09,
- -8.28,
- -8.39,
- -8.79,
- -8.64,
- -8.28,
- -7.98,
- -7.79,
- -7.23,
- -7.8,
- -7.74,
- -7.57,
- -7.73,
- -6.85,
- -7.99,
- -8.39,
- -8.06,
- -8.0,
- -7.63,
- -7.14,
- -6.87,
- -6.34,
- -5.94,
- -5.8,
- -5.94,
- -6.36,
- -7.02,
- -7.78,
- -8.16,
- -7.88,
- -8.38,
- -8.36,
- -8.23,
- -8.06,
- -7.89,
- -8.01,
- -7.95,
- -7.84,
- -8.02,
- -8.05,
- -8.21,
- -8.13,
- -7.82,
- -7.99,
- -8.09,
- -8.19,
- -8.42,
- -8.6,
- -8.6,
- -8.21,
- -8.18,
- -8.16,
- -7.83,
- -7.34,
- -7.39,
- -7.05,
- -6.65,
- -6.77,
- -6.59,
- -6.7,
- -6.87,
- -6.63,
- -6.87,
- -6.65,
- -6.22,
- -6.31,
- -6.12,
- -5.7,
- -5.91,
- -5.96,
- -6.06,
- -6.83,
- -6.29,
- -5.83,
- -5.8,
- -5.36,
- -6.07,
- -5.77,
- -5.42,
- -5.04,
- -3.94,
- -3.46,
- -2.67,
- -1.87,
- -1.23,
- -0.56,
- 0.32,
- 0.55,
- 1.45,
- 1.13,
- 1.42,
- 1.28,
- 1.03,
- 1.52,
- 2.48,
- 3.29,
- 3.18,
- 2.16,
- 0.7,
- -0.16,
- -0.44,
- -1.13,
- -1.13,
- -1.21,
- -0.9,
- 0.58,
- 2.63,
- 1.35,
- -1.24,
- -1.43,
- -0.95,
- -4.88,
- -4.81,
- -4.4,
- -4.75,
- -4.52,
- -4.39,
- -4.32,
- -4.93,
- -5.93,
- -6.2,
- -6.37,
- -4.03,
- -8.22,
- -6.88,
- -9.79,
- -9.76,
- -9.33,
- -9.3,
- -8.64,
- -8.59,
- -8.59,
- -8.84,
- -8.33,
- -8.17,
- -7.91,
- -7.85,
- -7.64,
- -7.48,
- -7.4,
- -7.69,
- -7.66,
- -7.19,
- -7.23,
- -7.25,
- -7.22,
- -7.27,
- -6.91,
- -6.81,
- -6.83,
- -6.7,
- -6.64,
- -6.88,
- -6.51,
- -6.34,
- -6.15,
- -5.84,
- -5.52,
- -5.23,
- -5.13,
- -4.72,
- -4.48,
- -4.4,
- -4.13,
- -4.01,
- -3.89,
- -3.76,
- -3.5,
- -3.51,
- -3.56,
- -2.97,
- -2.35,
- -1.38,
- -0.07,
- 1.07,
- 1.11,
- 1.3,
- 2.9,
- 1.9,
- 0.87,
- 0.6,
- 0.93,
- 1.71,
- 1.39,
- 0.28,
- 0.58,
- 0.46,
- 0.4,
- 1.36,
- 0.57,
- 1.11,
- 0.72,
- 1.69,
- 2.38,
- 2.51,
- 1.34,
- 1.15,
- 1.49,
- 0.84,
- 1.18,
- 0.14,
- 1.21,
- 1.38,
- 2.39,
- 1.79,
- 1.17,
- 2.79,
- 1.97,
- 2.9,
- -0.11,
- 0.03,
- 2.36,
- -0.26,
- -2.08,
- -0.95,
- -1.59,
- -3.64,
- -1.94,
- -4.98,
- -3.46,
- -1.74,
- -1.37,
- -3.07,
- -1.79,
- -0.4,
- 1.67,
- 2.19,
- 2.92,
- 1.57,
- -0.35,
- -0.15,
- -1.08,
- -1.07,
- -0.17,
- -1.07,
- -1.73,
- -5.56,
- -2.7,
- -1.3,
- -5.05,
- -3.16,
- -0.55,
- -0.22,
- -1.05,
- -1.58,
- -0.99,
- -0.73,
- -2.03,
- -2.88,
- -3.05,
- -3.55,
- -4.08,
- -4.27,
- -4.25,
- -4.01,
- -3.86,
- -3.7,
- -3.87,
- -4.02,
- -3.61,
- -3.13,
- -2.9,
- -2.56,
- -2.02,
- -1.33,
- -0.87,
- -0.92,
- -0.71,
- -0.06,
- 0.73,
- 2.15,
- -0.75,
- -0.75,
- -0.65,
- -3.84,
- -0.46,
- -0.47,
- -0.37,
- -0.32,
- -0.27,
- 0.02,
- 0.35,
- 0.74,
- 1.18,
- 0.89,
- 0.53,
- 0.29,
- -0.67,
- -0.31,
- 0.81,
- 1.21,
- 0.75,
- -0.41,
- 0.45,
- -0.34,
- -1.21,
- -1.06,
- 0.84,
- 1.15,
- 0.28,
- -0.02,
- 0.46,
- -2.32,
- -3.0,
- -1.75,
- -2.86,
- -3.7,
- -3.23,
- -3.56,
- -3.05,
- -2.83,
- -2.75,
- -1.82,
- 4.01,
- -3.16,
- -0.35,
- 4.61,
- -3.99,
- -1.06,
- -5.54,
- -3.71,
- -3.94,
- -4.2,
- -4.53,
- -4.89,
- -5.21,
- -5.44,
- -5.72,
- -5.48,
- -5.25,
- -4.88,
- -5.12,
- -5.85,
- -5.89,
- -5.69,
- -5.67,
- -5.66,
- -5.32,
- -5.03,
- -4.65,
- -6.32,
- -6.92,
- -7.23,
- -7.46,
- -7.3,
- -6.76,
- -6.25,
- -6.28,
- -6.65,
- -7.11,
- -7.16,
- -7.15,
- -7.17,
- -7.18,
- -7.29,
- -7.45,
- -7.61,
- -7.54,
- -7.42,
- -7.6,
- -7.93,
- -8.26,
- -8.47,
- -8.82,
- -8.78,
- -8.42,
- -7.9,
- -7.54,
- -7.24,
- -7.4,
- -7.17,
- -6.96,
- -7.01,
- -7.04,
- -7.76,
- -7.93,
- -7.8,
- -7.77,
- -7.51,
- -7.25,
- -7.25,
- -6.95,
- -6.57,
- -6.37,
- -6.39,
- -6.57,
- -7.12,
- -8.19,
- -8.39,
- -8.08,
- -8.44,
- -8.23,
- -8.2,
- -8.26,
- -7.95,
- -8.01,
- -7.88,
- -7.68,
- -7.5,
- -7.31,
- -7.35,
- -7.7,
- -7.69,
- -7.63,
- -7.64,
- -7.86,
- -8.2,
- -8.52,
- -8.5,
- -8.15,
- -7.93,
- -7.37,
- -7.2,
- -7.44,
- -7.49,
- -7.64,
- -7.32,
- -6.62,
- -6.3,
- -6.78,
- -6.89,
- -6.54,
- -6.69,
- -6.82,
- -6.23,
- -5.84,
- -5.4,
- -5.86,
- -5.96,
- -5.83,
- -6.24,
- -6.09,
- -5.91,
- -5.9,
- -5.82,
- -5.46,
- -5.79,
- -5.95,
- -5.59,
- -5.22,
- -4.7,
- -4.32,
- -3.37,
- -2.29,
- -1.35,
- -0.83,
- -0.05,
- 0.36,
- 0.17,
- 0.16,
- 0.48,
- 0.62,
- 0.63,
- 0.93,
- 1.31,
- 1.49,
- 1.37,
- 0.72,
- -0.39,
- -0.33,
- -1.08,
- -1.76,
- -1.11,
- -1.42,
- -1.16,
- -0.3,
- 2.14,
- 2.44,
- -0.43,
- -3.99,
- -1.45,
- -3.82,
- -3.72,
- -4.03,
- -4.37,
- -4.22,
- -3.58,
- -3.93,
- -4.06,
- -4.09,
- -1.44,
- 0.14,
- -1.0,
- -2.35,
- -1.85,
- -0.09,
- -3.43,
- -4.84,
- -6.47,
- -7.58,
- -5.08,
- -5.72,
- -7.51,
- -8.44,
- -7.89,
- -8.05,
- -7.65,
- -7.69,
- -7.61,
- -7.61,
- -7.72,
- -7.91,
- -7.48,
- -7.65,
- -7.71,
- -7.42,
- -7.37,
- -7.18,
- -7.13,
- -7.24,
- -7.2,
- -7.17,
- -7.17,
- -7.0,
- -6.9,
- -6.63,
- -6.08,
- -5.64,
- -5.28,
- -4.92,
- -4.6,
- -4.38,
- -4.16,
- -4.09,
- -3.95,
- -3.73,
- -3.44,
- -3.48,
- -3.49,
- -3.11,
- -2.63,
- -2.12,
- -1.21,
- 0.04,
- 1.24,
- 1.27,
- 1.51,
- 3.64,
- 4.95,
- 1.96,
- -0.29,
- 0.4,
- 1.5,
- 1.24,
- 1.86,
- 2.08,
- 0.9,
- 1.33,
- 1.4,
- 0.87,
- 0.62,
- 0.66,
- 1.29,
- 2.07,
- 1.46,
- 0.98,
- 0.69,
- 1.88,
- 1.63,
- 1.15,
- 0.11,
- -0.02,
- 0.39,
- 2.5,
- 0.97,
- 2.84,
- 1.13,
- 2.58,
- 2.01,
- 3.61,
- 4.23,
- 3.92,
- 2.22,
- 2.09,
- 1.13,
- 1.66,
- -1.35,
- -1.46,
- -3.26,
- -2.45,
- -0.9,
- 0.34,
- 1.57,
- 1.39,
- 1.25,
- 1.82,
- 2.02,
- 0.85,
- -0.96,
- 0.41,
- -0.26,
- -1.81,
- -0.08,
- 0.65,
- -1.7,
- -2.0,
- -1.4,
- -3.36,
- -1.26,
- -0.15,
- 0.07,
- -1.84,
- -0.52,
- -1.0,
- -0.96,
- -1.45,
- -1.03,
- -1.81,
- -2.85,
- -3.13,
- -3.84,
- -4.22,
- -4.34,
- -4.38,
- -4.36,
- -4.34,
- -4.49,
- -4.63,
- -4.24,
- -4.45,
- -4.14,
- -3.63,
- -3.36,
- -3.06,
- -2.35,
- -2.07,
- -1.8,
- -1.43,
- -0.82,
- 0.38,
- 3.53,
- -0.03,
- -1.86,
- -2.53,
- 0.92,
- -0.08,
- -1.41,
- -1.05,
- -1.56,
- -1.71,
- -1.28,
- -1.05,
- -0.28,
- -0.19,
- -0.93,
- -0.93,
- -1.55,
- -1.03,
- -0.51,
- 0.38,
- 0.66,
- 0.53,
- -0.27,
- -2.81,
- -1.26,
- -1.91,
- -2.1,
- -0.94,
- -1.79,
- 2.83,
- -3.65,
- -4.2,
- -3.3,
- -2.55,
- -1.56,
- -2.82,
- -2.78,
- -2.64,
- -2.84,
- -3.17,
- -3.03,
- -1.97,
- 2.17,
- -1.78,
- -0.22,
- -1.51,
- 1.72,
- -2.42,
- -2.4,
- -5.66,
- -4.19,
- -4.25,
- -4.48,
- -4.84,
- -5.23,
- -5.33,
- -5.69,
- -6.3,
- -5.7,
- -5.15,
- -5.08,
- -5.3,
- -5.65,
- -5.68,
- -5.8,
- -6.11,
- -5.99,
- -5.42,
- -5.44,
- -5.1,
- -6.52,
- -6.86,
- -7.15,
- -7.51,
- -7.37,
- -6.71,
- -6.29,
- -6.19,
- -6.67,
- -7.22,
- -7.03,
- -6.9,
- -7.2,
- -7.48,
- -7.66,
- -7.62,
- -7.69,
- -7.58,
- -7.46,
- -7.62,
- -7.87,
- -8.17,
- -8.38,
- -8.67,
- -8.66,
- -8.35,
- -7.82,
- -7.57,
- -7.25,
- -7.09,
- -6.92,
- -6.7,
- -6.64,
- -6.98,
- -7.05,
- -7.03,
- -7.17,
- -7.32,
- -7.15,
- -7.47,
- -7.57,
- -7.58,
- -7.08,
- -7.47,
- -7.25,
- -7.27,
- -7.45,
- -8.06,
- -8.08,
- -8.35,
- -8.38,
- -8.42,
- -8.38,
- -8.14,
- -8.21,
- -8.02,
- -7.91,
- -7.61,
- -7.1,
- -6.67,
- -6.61,
- -6.82,
- -7.13,
- -7.5,
- -7.48,
- -7.71,
- -7.9,
- -8.01,
- -8.28,
- -8.02,
- -7.68,
- -7.66,
- -7.19,
- -7.0,
- -7.52,
- -7.63,
- -7.28,
- -6.83,
- -6.49,
- -6.52,
- -6.78,
- -6.04,
- -6.34,
- -6.16,
- -5.81,
- -5.28,
- -5.71,
- -5.94,
- -5.78,
- -6.6,
- -6.38,
- -6.17,
- -5.68,
- -5.77,
- -5.57,
- -4.87,
- -6.63,
- -6.25,
- -6.44,
- -5.49,
- -5.27,
- -4.72,
- -3.89,
- -3.0,
- -3.13,
- -0.86,
- -0.44,
- -0.52,
- -0.62,
- 0.07,
- 0.87,
- 0.59,
- -0.8,
- -0.23,
- 0.48,
- 0.03,
- 0.42,
- 1.0,
- 0.1,
- -0.32,
- -0.27,
- -1.94,
- -1.31,
- -1.3,
- -0.51,
- 0.49,
- 1.43,
- 2.29,
- 0.63,
- -0.46,
- -1.79,
- 0.55,
- -2.43,
- -2.95,
- -3.39,
- -2.35,
- -1.87,
- -2.24,
- -1.87,
- 0.69,
- 0.07,
- -0.8,
- 1.28,
- -0.96,
- -0.68,
- -0.73,
- 0.09,
- 0.58,
- 1.11,
- 1.26,
- -1.46,
- -0.11,
- -5.77,
- -7.52,
- -7.51,
- -7.91,
- -7.27,
- -7.23,
- -7.4,
- -7.75,
- -7.77,
- -8.06,
- -7.86,
- -7.84,
- -7.55,
- -7.48,
- -7.52,
- -7.3,
- -7.32,
- -7.37,
- -7.32,
- -7.35,
- -7.23,
- -6.95,
- -6.78,
- -6.43,
- -5.9,
- -5.37,
- -4.98,
- -4.86,
- -4.56,
- -4.38,
- -4.4,
- -4.2,
- -3.91,
- -3.57,
- -3.3,
- -3.47,
- -3.25,
- -2.87,
- -2.52,
- -1.8,
- -1.0,
- 0.22,
- 1.35,
- 1.5,
- 1.86,
- 3.35,
- 4.44,
- 3.64,
- 1.29,
- 0.83,
- 0.07,
- 1.79,
- 2.15,
- 1.75,
- 1.61,
- 1.23,
- 1.35,
- -0.46,
- 0.01,
- 1.17,
- 1.37,
- 1.63,
- 1.22,
- 0.7,
- 0.27,
- 0.75,
- 1.83,
- 1.09,
- 0.91,
- -0.52,
- 1.1,
- 2.97,
- 4.26,
- 2.9,
- 3.37,
- 1.84,
- 3.37,
- 3.4,
- 4.25,
- 2.67,
- 3.8,
- 1.08,
- 0.93,
- 0.79,
- 0.1,
- 0.11,
- 2.46,
- 3.39,
- 2.65,
- 2.41,
- 2.35,
- 3.07,
- 1.59,
- 2.05,
- 0.05,
- -0.61,
- -0.05,
- 0.33,
- -1.65,
- -1.06,
- -1.63,
- -1.25,
- -1.28,
- -1.8,
- -0.63,
- -1.6,
- -2.2,
- -0.42,
- 0.35,
- -0.47,
- -1.79,
- -1.41,
- -1.16,
- -1.26,
- -1.26,
- -2.08,
- -2.6,
- -2.96,
- -3.46,
- -3.61,
- -3.71,
- -4.35,
- -4.27,
- -4.49,
- -4.91,
- -5.11,
- -4.79,
- -4.78,
- -4.78,
- -4.59,
- -4.74,
- -4.11,
- -3.49,
- -3.06,
- -2.69,
- -1.98,
- -1.01,
- 0.12,
- 1.42,
- 0.0,
- -2.04,
- 0.97,
- 2.97,
- -4.0,
- -1.04,
- -1.67,
- -2.75,
- -2.61,
- -2.09,
- -1.72,
- -1.46,
- -1.83,
- -1.6,
- -1.74,
- -1.94,
- -1.18,
- -0.46,
- 0.02,
- 0.32,
- 0.59,
- 1.37,
- -1.78,
- -4.78,
- -2.06,
- -2.23,
- -1.93,
- -1.05,
- -0.33,
- -3.17,
- -3.42,
- -3.17,
- -2.34,
- -2.36,
- -2.88,
- -2.94,
- -3.08,
- -3.18,
- -3.39,
- -2.57,
- 3.19,
- -2.45,
- -0.33,
- -0.99,
- -0.22,
- -1.32,
- -3.37,
- -2.96,
- 0.38,
- -2.64,
- -3.31,
- -4.42,
- -4.81,
- -4.8,
- -4.96,
- -5.58,
- -6.32,
- -5.6,
- -5.7,
- -5.25,
- -5.62,
- -6.3,
- -5.5,
- -6.05,
- -5.95,
- -5.82,
- -5.41,
- -5.1,
- -5.28,
- -6.3,
- -6.68,
- -7.07,
- -7.32,
- -7.41,
- -6.79,
- -6.38,
- -6.16,
- -6.72,
- -7.08,
- -6.78,
- -6.84,
- -6.91,
- -7.39,
- -7.71,
- -7.71,
- -7.77,
- -7.77,
- -7.61,
- -7.64,
- -7.81,
- -8.13,
- -8.48,
- -8.58,
- -8.43,
- -8.1,
- -7.65,
- -7.4,
- -7.26,
- -7.15,
- -6.93,
- -6.69,
- -6.48,
- -6.48,
- -6.47,
- -6.52,
- -6.44,
- -6.92,
- -7.03,
- -6.76,
- -7.6,
- -7.27,
- -7.51,
- -8.3,
- -7.79,
- -7.68,
- -7.76,
- -7.68,
- -7.98,
- -8.29,
- -8.26,
- -8.54,
- -8.49,
- -8.38,
- -8.09,
- -7.73,
- -7.68,
- -7.32,
- -7.04,
- -6.53,
- -6.36,
- -6.3,
- -6.76,
- -7.2,
- -7.46,
- -7.53,
- -7.55,
- -7.68,
- -7.58,
- -7.61,
- -7.8,
- -7.58,
- -7.36,
- -6.66,
- -6.57,
- -7.66,
- -6.86,
- -6.57,
- -8.0,
- -5.58,
- -5.11,
- -6.34,
- -5.78,
- -6.0,
- -5.35,
- -5.46,
- -5.77,
- -5.3,
- -4.99,
- -6.03,
- -5.82,
- -5.89,
- -5.24,
- -4.95,
- -5.61,
- -5.09,
- -6.49,
- -6.42,
- -5.29,
- -4.9,
- -5.74,
- -5.18,
- -4.31,
- -3.62,
- -3.05,
- -2.2,
- -1.44,
- -1.06,
- -0.1,
- 0.53,
- 1.0,
- -0.2,
- -2.04,
- -0.3,
- 1.15,
- 1.28,
- 1.98,
- 2.09,
- 1.89,
- 1.61,
- 0.45,
- 1.29,
- 1.27,
- 1.74,
- 1.81,
- 1.82,
- 2.65,
- 2.82,
- 2.54,
- 1.21,
- -1.02,
- 0.04,
- 0.63,
- 0.36,
- 0.17,
- -0.61,
- 0.5,
- 1.21,
- 0.23,
- 1.21,
- 0.8,
- 0.93,
- 0.79,
- 0.38,
- 0.64,
- -0.73,
- -0.76,
- 0.97,
- 1.76,
- 1.16,
- -3.87,
- -1.8,
- -0.96,
- -1.47,
- -7.07,
- -6.89,
- -7.46,
- -5.95,
- -7.32,
- -7.81,
- -7.83,
- -7.84,
- -7.85,
- -7.62,
- -7.4,
- -7.4,
- -7.34,
- -7.33,
- -7.29,
- -7.33,
- -7.25,
- -7.06,
- -7.11,
- -6.79,
- -6.4,
- -5.78,
- -5.72,
- -5.61,
- -5.53,
- -5.44,
- -5.01,
- -5.2,
- -4.81,
- -4.39,
- -3.94,
- -3.75,
- -3.54,
- -3.27,
- -2.83,
- -2.49,
- -2.24,
- -1.76,
- -0.95,
- 0.23,
- 1.29,
- 1.79,
- 2.29,
- 2.94,
- 3.58,
- 4.27,
- 3.47,
- 1.38,
- 0.33,
- 0.61,
- 0.69,
- 0.79,
- 0.91,
- 0.77,
- 0.85,
- 0.15,
- 0.1,
- 1.48,
- 1.63,
- 1.07,
- 0.8,
- 1.03,
- 0.44,
- 0.18,
- 0.35,
- 1.64,
- 1.22,
- 1.26,
- 1.68,
- 2.71,
- 2.79,
- 0.57,
- 2.02,
- 0.43,
- 0.84,
- 2.13,
- 1.74,
- 2.32,
- 1.9,
- 0.57,
- -0.09,
- 1.0,
- 0.44,
- 1.2,
- 2.14,
- 2.72,
- 2.41,
- 2.15,
- 1.2,
- 2.85,
- 1.12,
- 0.69,
- -0.41,
- -1.4,
- -0.66,
- -1.31,
- -0.96,
- -0.27,
- -0.79,
- -0.12,
- 1.23,
- -1.33,
- -1.43,
- -2.29,
- -2.01,
- -1.64,
- -0.73,
- -0.34,
- -1.41,
- -1.32,
- -1.89,
- -1.3,
- -1.71,
- -2.29,
- -2.49,
- -2.56,
- -2.93,
- -3.11,
- -3.08,
- -3.15,
- -3.46,
- -4.24,
- -5.25,
- -5.34,
- -5.52,
- -4.5,
- -5.23,
- -5.09,
- -4.96,
- -4.83,
- -3.98,
- -3.67,
- -3.43,
- -2.68,
- -1.66,
- -1.05,
- 0.03,
- 2.37,
- 1.69,
- 0.27,
- 1.08,
- -1.36,
- -0.46,
- -2.13,
- -3.62,
- -3.31,
- -2.5,
- -2.33,
- -2.28,
- -2.23,
- -1.09,
- -0.6,
- -1.1,
- -0.48,
- -0.1,
- -0.55,
- 0.35,
- 0.39,
- 0.39,
- 1.67,
- -2.33,
- -0.53,
- -2.07,
- -1.98,
- -1.41,
- -1.98,
- -3.25,
- -2.99,
- -3.03,
- -3.08,
- -3.31,
- -3.59,
- -3.4,
- -3.63,
- -3.13,
- -2.82,
- -3.38,
- -4.0,
- -2.61,
- -2.2,
- -2.08,
- -1.91,
- 1.74,
- 1.28,
- 0.74,
- -2.59,
- -2.32,
- -0.99,
- -3.75,
- -4.76,
- -3.74,
- -3.5,
- -4.31,
- -6.88,
- -5.99,
- -6.43,
- -5.63,
- -5.41,
- -5.72,
- -5.44,
- -5.34,
- -5.15,
- -5.1,
- -4.92,
- -4.55,
- -5.26,
- -5.71,
- -6.38,
- -7.25,
- -7.42,
- -7.28,
- -7.15,
- -6.37,
- -5.77,
- -6.25,
- -6.51,
- -6.59,
- -6.59,
- -6.53,
- -7.14,
- -7.64,
- -7.51,
- -7.48,
- -7.9,
- -8.06,
- -7.72,
- -7.79,
- -7.91,
- -8.25,
- -8.42,
- -8.28,
- -7.95,
- -7.67,
- -7.38,
- -7.28,
- -7.01,
- -6.77,
- -6.74,
- -6.73,
- -6.47,
- -5.9,
- -5.8,
- -5.93,
- -6.22,
- -6.67,
- -6.89,
- -7.4,
- -7.6,
- -8.04,
- -8.14,
- -7.91,
- -7.42,
- -7.24,
- -7.47,
- -8.0,
- -8.19,
- -7.81,
- -8.12,
- -8.67,
- -8.38,
- -8.29,
- -7.77,
- -7.48,
- -7.17,
- -6.59,
- -6.08,
- -6.11,
- -6.14,
- -6.37,
- -7.11,
- -7.39,
- -7.45,
- -7.54,
- -7.07,
- -6.83,
- -7.7,
- -7.43,
- -8.3,
- -6.98,
- -7.31,
- -6.85,
- -6.43,
- -7.05,
- -5.58,
- -6.27,
- -5.49,
- -4.38,
- -5.21,
- -5.54,
- -5.88,
- -5.47,
- -5.34,
- -5.02,
- -4.88,
- -4.28,
- -5.22,
- -4.81,
- -4.41,
- -5.03,
- -4.47,
- -3.75,
- -3.98,
- -2.09,
- -2.84,
- -3.81,
- -3.92,
- -5.05,
- -5.95,
- -4.83,
- -4.39,
- -3.71,
- -2.8,
- -1.11,
- -0.45,
- 0.44,
- 1.31,
- 1.12,
- 1.95,
- 1.43,
- 2.72,
- 3.78,
- 3.08,
- 2.35,
- 1.95,
- 2.14,
- 2.88,
- 3.49,
- 4.98,
- 4.57,
- 4.26,
- 3.03,
- 2.37,
- 2.79,
- 2.68,
- 3.18,
- 2.22,
- 2.36,
- 1.61,
- -0.15,
- 0.01,
- -0.71,
- -0.06,
- 0.29,
- 0.23,
- 0.83,
- -0.06,
- 0.55,
- 0.38,
- -1.01,
- 1.13,
- -0.2,
- -0.35,
- 0.3,
- 0.34,
- 2.01,
- 1.31,
- -2.9,
- -1.12,
- -1.26,
- -1.03,
- -0.12,
- -5.36,
- -5.83,
- -6.25,
- -6.99,
- -7.19,
- -7.18,
- -7.68,
- -7.69,
- -7.62,
- -7.7,
- -7.2,
- -7.11,
- -7.12,
- -7.08,
- -7.09,
- -7.09,
- -6.93,
- -6.59,
- -6.27,
- -5.55,
- -5.6,
- -5.78,
- -5.93,
- -5.97,
- -5.77,
- -5.58,
- -5.41,
- -4.86,
- -4.34,
- -4.19,
- -4.06,
- -3.7,
- -3.06,
- -2.26,
- -2.12,
- -2.18,
- -1.86,
- -1.24,
- -0.06,
- 1.13,
- 1.94,
- 2.66,
- 3.15,
- 3.39,
- 3.87,
- 3.64,
- 2.68,
- 0.71,
- 0.8,
- 1.3,
- 0.98,
- 0.96,
- 0.49,
- 0.58,
- 0.7,
- 0.5,
- 0.99,
- 1.22,
- 1.11,
- 0.28,
- 1.35,
- 1.22,
- 0.77,
- 0.19,
- 0.48,
- 1.47,
- 1.67,
- 2.08,
- 2.58,
- -0.07,
- -1.08,
- 0.5,
- 1.94,
- 1.14,
- 1.92,
- 3.1,
- 3.27,
- 1.33,
- 0.2,
- 0.89,
- 1.41,
- 0.47,
- 0.78,
- 1.45,
- 2.07,
- 2.16,
- 2.27,
- 1.51,
- 2.03,
- 1.32,
- 0.53,
- 1.01,
- -0.84,
- -1.52,
- -1.21,
- -1.14,
- -0.61,
- -0.59,
- -1.48,
- -1.06,
- -1.39,
- -0.94,
- -1.5,
- -1.67,
- -0.61,
- -0.9,
- -1.24,
- -1.69,
- -1.27,
- -1.43,
- -1.27,
- -2.05,
- -2.15,
- -2.35,
- -2.21,
- -2.42,
- -2.56,
- -2.19,
- -2.26,
- -2.83,
- -4.6,
- -4.72,
- -5.67,
- -5.33,
- -5.42,
- -4.96,
- -4.53,
- -3.98,
- -4.35,
- -4.38,
- -4.01,
- -3.82,
- -3.12,
- -2.75,
- -1.9,
- -0.98,
- 0.05,
- 0.09,
- -0.2,
- 0.82,
- -2.08,
- -3.56,
- -0.91,
- -3.63,
- -3.87,
- -3.11,
- -2.9,
- -2.98,
- -2.57,
- -2.07,
- -1.03,
- -0.26,
- 0.09,
- -0.68,
- 0.21,
- 0.5,
- 0.78,
- 0.68,
- -1.57,
- 0.57,
- -2.32,
- -2.5,
- -2.11,
- -1.69,
- -2.14,
- -2.53,
- -2.86,
- -3.09,
- -3.07,
- -3.27,
- -3.37,
- -3.28,
- -3.32,
- -3.11,
- -3.42,
- -2.45,
- -5.18,
- -2.47,
- -2.03,
- -1.72,
- 0.32,
- 0.66,
- 1.6,
- 4.53,
- -0.98,
- 0.88,
- -1.59,
- -3.16,
- -2.4,
- -3.14,
- -2.62,
- -1.04,
- -5.73,
- -5.86,
- -5.4,
- -5.99,
- -5.79,
- -4.78,
- -4.84,
- -4.55,
- -4.75,
- -4.63,
- -4.49,
- -3.74,
- -5.29,
- -5.28,
- -6.27,
- -7.4,
- -7.56,
- -7.72,
- -7.65,
- -6.77,
- -4.79,
- -4.44,
- -5.44,
- -6.04,
- -5.75,
- -5.98,
- -6.95,
- -7.54,
- -7.62,
- -7.56,
- -7.5,
- -8.08,
- -7.87,
- -7.88,
- -7.88,
- -8.14,
- -8.09,
- -8.16,
- -7.94,
- -7.45,
- -7.34,
- -6.95,
- -6.82,
- -6.78,
- -6.8,
- -6.79,
- -6.31,
- -5.66,
- -5.05,
- -5.51,
- -5.57,
- -6.21,
- -6.59,
- -6.98,
- -7.35,
- -7.56,
- -7.18,
- -7.36,
- -7.23,
- -7.47,
- -7.85,
- -7.75,
- -7.39,
- -6.81,
- -7.4,
- -7.05,
- -8.14,
- -7.86,
- -7.72,
- -7.37,
- -6.94,
- -6.71,
- -6.56,
- -6.2,
- -5.89,
- -5.57,
- -6.55,
- -7.74,
- -7.22,
- -7.67,
- -6.65,
- -6.74,
- -6.62,
- -9.28,
- -8.02,
- -7.7,
- -6.87,
- -6.64,
- -5.8,
- -5.69,
- -5.65,
- -5.46,
- -4.6,
- -4.28,
- -4.8,
- -4.69,
- -4.65,
- -4.68,
- -3.66,
- -3.57,
- -4.04,
- -3.93,
- -3.88,
- -3.14,
- -2.95,
- -2.21,
- -2.74,
- -1.37,
- 1.19,
- 1.42,
- 1.05,
- 1.37,
- -0.57,
- -0.99,
- -0.51,
- 1.25,
- -0.17,
- 0.36,
- -0.45,
- 0.27,
- 0.62,
- 2.37,
- 1.29,
- 0.47,
- 2.58,
- 4.23,
- 4.65,
- 4.53,
- 3.28,
- 2.27,
- 2.51,
- 3.0,
- 4.27,
- 4.82,
- 5.34,
- 5.41,
- 4.55,
- 3.77,
- 3.15,
- 2.91,
- 2.52,
- 3.22,
- 2.03,
- 2.55,
- 2.39,
- 0.94,
- 0.26,
- 0.55,
- 0.9,
- 1.13,
- 0.97,
- -0.06,
- 0.81,
- 0.29,
- -0.51,
- -0.2,
- -1.13,
- -0.76,
- 0.42,
- 1.76,
- 0.98,
- 0.35,
- 0.04,
- 0.18,
- -1.52,
- -2.34,
- -1.04,
- -0.39,
- -1.19,
- -4.58,
- -6.46,
- -6.81,
- -6.56,
- -6.85,
- -7.28,
- -7.35,
- -7.13,
- -7.33,
- -6.97,
- -6.83,
- -6.61,
- -6.51,
- -6.49,
- -6.49,
- -6.53,
- -6.26,
- -5.92,
- -6.15,
- -5.67,
- -6.31,
- -6.26,
- -6.48,
- -5.77,
- -5.52,
- -5.51,
- -5.2,
- -4.87,
- -4.42,
- -4.3,
- -3.44,
- -2.93,
- -2.21,
- -1.89,
- -2.26,
- -2.08,
- -1.66,
- -0.54,
- 0.84,
- 2.07,
- 2.82,
- 3.22,
- 3.15,
- 3.32,
- 3.81,
- 4.05,
- 3.38,
- 0.69,
- 0.78,
- 0.73,
- 0.65,
- 0.49,
- 0.65,
- 0.88,
- 0.63,
- 0.64,
- 0.49,
- 1.12,
- 1.81,
- 2.81,
- 4.74,
- 4.48,
- 3.7,
- 1.61,
- 0.17,
- 1.02,
- 0.64,
- 0.08,
- -0.63,
- 1.48,
- 1.52,
- 0.72,
- 1.32,
- 1.33,
- 2.64,
- 2.35,
- 0.73,
- 0.63,
- 1.41,
- 0.81,
- 0.46,
- 0.61,
- 1.33,
- 1.91,
- 1.45,
- 1.57,
- 0.93,
- 1.4,
- 1.9,
- 0.65,
- 0.69,
- -1.35,
- -1.54,
- -1.93,
- 0.44,
- 0.1,
- 0.31,
- -1.2,
- -1.34,
- -1.15,
- -0.02,
- 0.01,
- -0.54,
- 0.91,
- -0.17,
- -0.78,
- -0.98,
- -2.04,
- -1.28,
- -1.35,
- -1.86,
- -1.85,
- -1.9,
- -1.67,
- -1.91,
- -1.71,
- -1.85,
- -2.13,
- -1.86,
- -2.72,
- -2.88,
- -4.94,
- -4.94,
- -5.16,
- -4.91,
- -4.1,
- -3.94,
- -4.14,
- -4.28,
- -4.14,
- -3.65,
- -2.83,
- -2.67,
- -2.15,
- -1.39,
- -0.52,
- -0.57,
- -0.52,
- -0.75,
- -2.14,
- -0.36,
- -1.28,
- -2.22,
- -3.21,
- -2.84,
- -2.84,
- -3.42,
- -2.83,
- -2.81,
- -2.0,
- -0.86,
- -0.32,
- -0.48,
- -0.03,
- 1.46,
- 1.94,
- 1.8,
- -0.29,
- 1.33,
- 0.45,
- -1.46,
- -2.36,
- -1.66,
- -1.85,
- -2.44,
- -3.45,
- -3.62,
- -3.42,
- -3.5,
- -3.27,
- -3.33,
- -2.88,
- -2.1,
- 0.88,
- 4.28,
- -1.42,
- -3.55,
- -2.28,
- -1.47,
- -0.93,
- -1.81,
- -1.74,
- 1.36,
- -0.31,
- -2.21,
- -0.56,
- -3.55,
- -2.8,
- -2.42,
- -1.52,
- -2.37,
- -3.06,
- -5.4,
- -5.45,
- -4.49,
- -4.94,
- -4.48,
- -4.09,
- -4.53,
- -4.18,
- -4.26,
- -3.79,
- -4.36,
- -4.15,
- -4.23,
- -5.83,
- -6.88,
- -8.12,
- -7.72,
- -8.87,
- -7.7,
- -5.4,
- -2.95,
- -3.6,
- -4.12,
- -4.47,
- -4.93,
- -6.03,
- -6.99,
- -7.27,
- -6.85,
- -7.33,
- -6.83,
- -7.82,
- -8.53,
- -9.03,
- -7.3,
- -7.33,
- -8.28,
- -7.76,
- -6.94,
- -7.31,
- -6.96,
- -6.76,
- -6.61,
- -6.49,
- -6.4,
- -5.97,
- -5.18,
- -4.94,
- -5.05,
- -5.8,
- -6.26,
- -6.69,
- -6.77,
- -6.62,
- -6.47,
- -6.95,
- -6.88,
- -7.18,
- -6.73,
- -7.49,
- -7.18,
- -6.68,
- -6.41,
- -6.33,
- -6.6,
- -7.51,
- -7.53,
- -7.67,
- -7.48,
- -7.17,
- -7.16,
- -6.71,
- -6.29,
- -5.9,
- -5.59,
- -5.79,
- -6.19,
- -6.55,
- -6.6,
- -6.14,
- -7.46,
- -7.1,
- -7.21,
- -6.03,
- -6.98,
- -6.84,
- -6.83,
- -6.61,
- -4.84,
- -3.76,
- -2.8,
- -2.8,
- -3.93,
- -3.35,
- -2.96,
- -2.89,
- -3.07,
- -3.08,
- -2.73,
- -2.55,
- -4.38,
- -3.29,
- -1.24,
- -0.31,
- 0.67,
- 0.27,
- 1.19,
- 2.02,
- 1.17,
- 2.39,
- 2.19,
- 3.27,
- 2.27,
- 3.3,
- 2.65,
- 1.55,
- 1.09,
- -0.07,
- 1.54,
- 2.54,
- 2.23,
- 2.54,
- 4.05,
- 5.05,
- 4.63,
- 3.78,
- 4.18,
- 4.24,
- 2.04,
- 3.03,
- 3.26,
- 3.26,
- 3.77,
- 4.46,
- 4.87,
- 5.32,
- 4.79,
- 3.96,
- 2.45,
- 3.03,
- 3.22,
- 2.06,
- 2.25,
- 2.21,
- 2.13,
- 1.08,
- 1.12,
- 2.02,
- 2.35,
- 0.96,
- -0.22,
- 1.1,
- -1.0,
- -0.5,
- 0.76,
- -0.38,
- -0.13,
- 0.76,
- 1.24,
- 0.89,
- 0.14,
- 0.74,
- -0.17,
- 0.1,
- -0.13,
- -3.02,
- -0.59,
- -0.88,
- -0.97,
- -3.63,
- -5.48,
- -4.05,
- -6.22,
- -6.54,
- -7.0,
- -6.9,
- -6.45,
- -6.62,
- -6.51,
- -6.75,
- -6.71,
- -6.63,
- -6.48,
- -6.26,
- -6.09,
- -6.44,
- -6.57,
- -6.29,
- -6.27,
- -6.09,
- -6.14,
- -5.3,
- -4.96,
- -5.13,
- -5.19,
- -4.99,
- -4.68,
- -4.15,
- -2.81,
- -2.94,
- -2.76,
- -2.52,
- -2.28,
- -2.34,
- -2.33,
- -1.56,
- -0.03,
- 1.26,
- 2.2,
- 2.65,
- 2.81,
- 2.69,
- 3.12,
- 3.3,
- 3.01,
- 2.62,
- 0.87,
- 0.54,
- 0.7,
- 0.59,
- 0.67,
- 0.99,
- 0.81,
- 0.61,
- 0.62,
- 0.65,
- 4.18,
- 4.47,
- 4.87,
- 4.71,
- 3.87,
- 3.12,
- 0.58,
- 1.28,
- -0.28,
- -0.97,
- 0.37,
- 1.2,
- 1.42,
- 1.59,
- 1.63,
- 1.68,
- 0.84,
- 1.1,
- 1.39,
- 0.92,
- 0.64,
- 0.4,
- 0.05,
- 0.61,
- 0.92,
- 1.7,
- 0.98,
- 0.06,
- 0.96,
- 1.07,
- 0.76,
- 0.9,
- 0.54,
- 0.29,
- -2.86,
- -2.09,
- -1.83,
- -0.54,
- -0.99,
- -1.06,
- -2.29,
- -0.37,
- -0.57,
- 0.38,
- 1.21,
- -0.35,
- 0.0,
- -0.67,
- -1.82,
- -1.35,
- -1.21,
- -0.87,
- -0.76,
- -1.14,
- -1.42,
- -1.11,
- -0.9,
- -0.94,
- -0.68,
- -0.18,
- -0.15,
- -1.23,
- -0.93,
- -1.86,
- -2.76,
- -5.12,
- -4.63,
- -5.05,
- -4.77,
- -4.29,
- -4.26,
- -4.0,
- -3.46,
- -3.15,
- -3.39,
- -2.52,
- -1.75,
- -0.94,
- -1.61,
- -0.92,
- -1.19,
- -0.24,
- 0.36,
- -2.34,
- -2.01,
- -2.23,
- -0.55,
- 0.13,
- -2.4,
- -2.48,
- -2.5,
- -1.86,
- -1.08,
- -0.84,
- -0.81,
- 2.22,
- -0.28,
- 0.28,
- 2.5,
- 3.12,
- 2.19,
- 1.18,
- -1.35,
- -2.11,
- -0.23,
- -1.17,
- -2.29,
- -3.84,
- -3.24,
- -3.79,
- -3.07,
- -3.03,
- -2.38,
- -2.11,
- 0.05,
- 1.65,
- -0.74,
- -0.93,
- -1.94,
- -2.38,
- -2.45,
- -2.17,
- -2.73,
- -3.12,
- -4.04,
- -5.57,
- -2.8,
- -1.67,
- -2.3,
- -2.25,
- -1.89,
- -1.75,
- -1.7,
- -2.08,
- -3.55,
- -2.41,
- -3.56,
- -3.49,
- -3.7,
- -3.52,
- -4.77,
- -4.06,
- -3.86,
- -3.87,
- -3.61,
- -2.86,
- -3.34,
- -3.99,
- -5.09,
- -6.58,
- -7.34,
- -8.66,
- -7.5,
- -5.55,
- -3.4,
- -2.4,
- -1.81,
- -3.19,
- -4.6,
- -4.2,
- -5.0,
- -6.97,
- -5.8,
- -5.91,
- -6.41,
- -5.27,
- -8.16,
- -7.05,
- -6.94,
- -5.07,
- -6.53,
- -8.33,
- -7.25,
- -7.31,
- -7.23,
- -6.89,
- -6.52,
- -6.32,
- -5.91,
- -5.65,
- -4.97,
- -5.0,
- -5.13,
- -5.64,
- -5.91,
- -6.29,
- -5.87,
- -5.88,
- -6.0,
- -6.14,
- -6.62,
- -6.66,
- -6.1,
- -7.29,
- -6.85,
- -6.33,
- -5.93,
- -5.75,
- -6.28,
- -6.71,
- -7.1,
- -7.92,
- -7.73,
- -7.7,
- -7.26,
- -6.72,
- -6.19,
- -5.71,
- -5.39,
- -5.13,
- -5.41,
- -6.08,
- -5.68,
- -6.22,
- -6.04,
- -5.93,
- -4.27,
- -4.01,
- -4.81,
- -4.78,
- -4.96,
- -4.06,
- -2.11,
- -2.33,
- -1.9,
- -2.01,
- -2.1,
- -1.74,
- -1.3,
- -1.82,
- -2.24,
- -2.27,
- -1.67,
- -2.04,
- -2.41,
- -0.94,
- -0.31,
- -0.21,
- -0.81,
- -0.89,
- -0.85,
- 0.0,
- 0.85,
- 2.13,
- 1.92,
- 1.41,
- 0.72,
- 1.06,
- 1.14,
- 0.39,
- 0.74,
- 1.65,
- 1.7,
- 1.82,
- 2.83,
- 4.38,
- 4.79,
- 5.23,
- 4.22,
- 2.49,
- 2.64,
- 3.36,
- 3.29,
- 2.42,
- 2.03,
- 2.18,
- 3.03,
- 3.4,
- 3.59,
- 4.11,
- 5.06,
- 2.99,
- 2.31,
- 3.3,
- 2.77,
- 2.13,
- 2.78,
- 2.78,
- 2.63,
- 1.49,
- 1.37,
- 2.16,
- 2.57,
- 0.37,
- 0.28,
- 0.41,
- -0.63,
- 0.44,
- 0.56,
- 0.64,
- 0.58,
- 0.65,
- 0.33,
- -0.66,
- 0.35,
- 0.51,
- -0.91,
- 0.25,
- 0.62,
- 0.15,
- -1.44,
- -0.27,
- 0.04,
- -0.72,
- -1.06,
- -1.75,
- -0.89,
- -0.52,
- -4.72,
- -7.17,
- -5.92,
- -6.2,
- -5.86,
- -5.87,
- -6.78,
- -6.88,
- -7.05,
- -6.12,
- -7.12,
- -6.98,
- -6.23,
- -5.73,
- -6.0,
- -6.34,
- -5.36,
- -4.62,
- -4.12,
- -4.24,
- -4.88,
- -4.75,
- -5.11,
- -4.25,
- -2.67,
- -2.58,
- -2.1,
- -2.59,
- -2.89,
- -2.07,
- -3.7,
- -2.5,
- -1.45,
- -0.83,
- -0.14,
- 1.04,
- 1.94,
- 2.34,
- 2.69,
- 3.05,
- 3.05,
- 2.81,
- 2.44,
- 1.71,
- 0.73,
- 0.96,
- 2.14,
- 3.18,
- 2.86,
- 2.56,
- 1.17,
- 3.21,
- 3.6,
- 3.92,
- 4.23,
- 3.9,
- 3.69,
- 3.81,
- 2.8,
- 2.0,
- 1.13,
- 1.84,
- -0.59,
- 0.0,
- 0.81,
- 1.06,
- 1.43,
- 0.76,
- 0.49,
- 0.61,
- 1.35,
- 0.77,
- 1.36,
- 0.33,
- 0.76,
- 0.88,
- 0.75,
- 0.96,
- 0.2,
- -0.58,
- 0.72,
- 0.19,
- 0.79,
- 0.45,
- -0.57,
- -0.4,
- -0.6,
- -3.37,
- -6.84,
- -5.18,
- -3.51,
- -0.64,
- -0.09,
- 1.45,
- 0.74,
- 0.19,
- 0.47,
- 0.5,
- 0.44,
- -0.74,
- -1.6,
- -1.48,
- -0.79,
- -0.41,
- 0.2,
- 0.54,
- 0.06,
- -0.71,
- -0.45,
- -0.23,
- 0.28,
- 0.61,
- 0.19,
- 0.23,
- 0.49,
- -0.65,
- -1.69,
- -2.29,
- -4.64,
- -4.17,
- -4.63,
- -4.31,
- -4.0,
- -4.06,
- -3.31,
- -2.39,
- -2.65,
- -2.61,
- -2.26,
- -1.52,
- -0.75,
- -0.38,
- -1.35,
- -0.06,
- -0.01,
- 0.35,
- -2.75,
- -2.33,
- -0.93,
- -1.83,
- -1.7,
- -1.42,
- -1.67,
- -1.83,
- -0.91,
- -1.02,
- -0.85,
- -1.07,
- 2.76,
- 1.54,
- -0.19,
- 4.45,
- 2.37,
- 1.81,
- -0.24,
- -1.24,
- -0.67,
- -0.71,
- -1.65,
- -2.49,
- -1.25,
- -3.44,
- -2.9,
- -2.14,
- -2.12,
- -1.87,
- 1.02,
- -0.53,
- -1.25,
- -0.3,
- -4.48,
- -2.32,
- -2.57,
- -2.72,
- -3.0,
- -3.1,
- -3.49,
- -3.61,
- -1.31,
- -2.56,
- -1.29,
- -1.26,
- -1.07,
- -0.83,
- -0.42,
- 0.29,
- -0.77,
- -0.37,
- -1.54,
- -1.93,
- -3.51,
- -3.94,
- -3.71,
- -3.95,
- -3.61,
- -3.48,
- -2.86,
- -1.94,
- -2.25,
- -2.48,
- -3.12,
- -4.45,
- -5.45,
- -6.11,
- -7.28,
- -5.05,
- -1.93,
- -1.16,
- -2.99,
- -2.48,
- -3.04,
- -3.05,
- -2.66,
- -3.0,
- -4.07,
- -4.29,
- -4.37,
- -3.8,
- -3.58,
- -3.45,
- -6.21,
- -6.26,
- -4.19,
- -4.63,
- -7.06,
- -6.22,
- -6.76,
- -7.17,
- -6.52,
- -5.99,
- -5.68,
- -5.31,
- -5.07,
- -5.2,
- -5.11,
- -5.23,
- -5.62,
- -5.63,
- -5.41,
- -5.18,
- -5.48,
- -6.65,
- -5.86,
- -6.26,
- -6.2,
- -6.14,
- -6.1,
- -5.67,
- -5.68,
- -5.83,
- -5.89,
- -6.08,
- -6.33,
- -7.26,
- -7.54,
- -7.47,
- -7.05,
- -6.35,
- -5.97,
- -5.24,
- -4.74,
- -4.38,
- -4.5,
- -5.46,
- -4.99,
- -5.12,
- -4.45,
- -3.84,
- -3.34,
- -2.86,
- -2.86,
- -3.55,
- -3.7,
- -2.81,
- -3.02,
- -3.33,
- -3.59,
- -3.11,
- -2.29,
- -1.75,
- -2.25,
- -2.05,
- -2.35,
- -2.22,
- -1.99,
- -2.54,
- -2.14,
- -2.21,
- -1.95,
- -1.95,
- -2.4,
- -2.44,
- -2.12,
- -1.16,
- 0.02,
- 1.66,
- -0.27,
- -0.34,
- -1.29,
- -0.28,
- 0.65,
- -0.03,
- -0.08,
- 0.89,
- 0.27,
- 1.38,
- 2.37,
- 3.54,
- 5.16,
- 2.78,
- 2.38,
- 0.73,
- 1.44,
- 2.28,
- 2.2,
- 1.72,
- 1.28,
- 1.34,
- 1.85,
- 2.33,
- 2.81,
- 3.35,
- 3.97,
- 2.71,
- 2.42,
- 2.97,
- 3.19,
- 2.65,
- 3.36,
- 2.9,
- 2.64,
- 2.44,
- 1.98,
- 1.99,
- 2.1,
- 0.13,
- -0.11,
- 0.58,
- -0.55,
- 0.67,
- -0.03,
- 0.46,
- 0.46,
- 0.56,
- 0.55,
- 0.75,
- 0.19,
- 0.58,
- 0.01,
- 0.2,
- 1.13,
- 1.41,
- -0.08,
- -0.72,
- 0.19,
- -1.09,
- -0.32,
- -0.72,
- -0.75,
- -0.62,
- -0.39,
- -3.41,
- -5.89,
- -6.87,
- -3.75,
- -6.6,
- -5.45,
- -6.51,
- -5.75,
- -5.73,
- -5.43,
- -5.51,
- -4.01,
- -3.47,
- -4.52,
- -4.8,
- -3.69,
- -2.36,
- -3.36,
- -3.41,
- -3.6,
- -3.84,
- -4.09,
- -4.54,
- -2.33,
- -1.94,
- -0.21,
- 0.5,
- -1.64,
- 0.0,
- -3.32,
- -2.87,
- -1.77,
- -0.08,
- 1.25,
- 1.6,
- 2.21,
- 2.36,
- 2.18,
- 2.15,
- 1.69,
- 1.5,
- 2.22,
- 2.28,
- 2.38,
- 2.45,
- 3.49,
- 2.79,
- 2.4,
- 1.97,
- 2.66,
- 3.54,
- 2.5,
- 2.77,
- 3.19,
- 3.05,
- 3.83,
- 3.56,
- 1.75,
- 0.61,
- 0.08,
- 2.61,
- -0.83,
- 0.9,
- 0.92,
- 0.92,
- 1.01,
- 0.33,
- 0.17,
- 0.65,
- 0.62,
- 0.59,
- 1.4,
- 0.8,
- 0.61,
- 0.74,
- 0.92,
- 0.03,
- -0.04,
- -0.55,
- 0.0,
- -0.09,
- 0.5,
- 0.96,
- 0.22,
- -0.6,
- 0.4,
- -1.26,
- -4.21,
- -5.98,
- -5.19,
- -2.23,
- 0.1,
- 0.81,
- 1.1,
- 0.34,
- 0.67,
- 1.18,
- 0.3,
- -0.43,
- -1.15,
- -1.4,
- -0.41,
- -0.22,
- 0.54,
- 0.73,
- 1.12,
- -0.01,
- 0.08,
- 1.58,
- 1.84,
- 0.84,
- 0.18,
- -0.31,
- -0.79,
- -0.28,
- -0.63,
- -1.32,
- -2.71,
- -3.23,
- -4.27,
- -3.99,
- -2.91,
- -2.37,
- -2.56,
- -2.21,
- -2.16,
- -2.06,
- -2.48,
- -1.41,
- -0.98,
- -0.27,
- -0.85,
- -1.2,
- 0.37,
- -1.09,
- -2.01,
- -1.62,
- -0.25,
- -1.54,
- -1.81,
- -3.17,
- -2.37,
- -1.44,
- -1.06,
- -0.99,
- -1.25,
- -1.6,
- -0.22,
- 2.63,
- 0.8,
- -0.58,
- 1.75,
- 2.79,
- 0.75,
- -0.28,
- -0.55,
- -0.34,
- -0.35,
- -0.92,
- -2.14,
- -2.48,
- -2.85,
- -1.74,
- -0.83,
- 0.01,
- -0.61,
- -0.61,
- -1.47,
- -1.17,
- -2.1,
- -2.71,
- -2.76,
- -3.31,
- -3.49,
- -2.89,
- -2.51,
- -1.3,
- -1.67,
- -0.66,
- -0.23,
- -0.37,
- -0.25,
- -0.06,
- 0.26,
- 1.05,
- 1.11,
- 0.41,
- -0.73,
- -1.86,
- -3.21,
- -3.53,
- -3.53,
- -3.96,
- -3.5,
- -2.98,
- -2.43,
- -1.44,
- -0.66,
- -0.05,
- -0.98,
- -1.71,
- -4.93,
- -4.73,
- -5.28,
- -3.23,
- -1.7,
- 0.27,
- -4.37,
- -0.43,
- -2.15,
- -3.08,
- -3.86,
- -3.26,
- -2.54,
- -3.04,
- -3.6,
- -3.77,
- -2.86,
- -2.42,
- -2.28,
- -1.95,
- -3.59,
- -2.84,
- -5.67,
- -5.86,
- -5.7,
- -6.52,
- -6.1,
- -5.86,
- -5.46,
- -5.28,
- -5.17,
- -4.97,
- -5.0,
- -5.39,
- -5.14,
- -4.79,
- -5.25,
- -4.9,
- -5.3,
- -6.64,
- -6.06,
- -5.8,
- -5.73,
- -5.76,
- -5.46,
- -5.55,
- -5.66,
- -5.33,
- -5.27,
- -5.28,
- -5.88,
- -6.33,
- -7.16,
- -6.67,
- -5.97,
- -5.54,
- -5.2,
- -4.36,
- -3.94,
- -3.86,
- -3.83,
- -4.23,
- -3.78,
- -3.68,
- -3.12,
- -3.62,
- -3.52,
- -3.2,
- -3.56,
- -4.12,
- -4.48,
- -4.25,
- -4.26,
- -4.31,
- -3.86,
- -3.48,
- -2.81,
- -2.72,
- -2.59,
- -3.08,
- -2.76,
- -2.34,
- -2.45,
- -2.85,
- -2.77,
- -2.63,
- -2.82,
- -3.3,
- -3.71,
- -3.66,
- -3.05,
- -2.05,
- -1.18,
- -0.71,
- -1.03,
- -1.97,
- -2.19,
- -1.13,
- -0.47,
- -0.38,
- -0.64,
- -1.4,
- -0.9,
- 0.22,
- 1.14,
- 2.24,
- 2.74,
- 1.53,
- -0.99,
- -0.17,
- 0.71,
- 1.39,
- 1.38,
- 0.75,
- 0.61,
- 0.5,
- 0.82,
- 1.56,
- 2.5,
- 2.91,
- 2.95,
- 2.53,
- 2.48,
- 3.02,
- 2.94,
- 3.05,
- 3.43,
- 3.15,
- 2.83,
- 3.31,
- 2.26,
- 1.69,
- 1.76,
- 0.14,
- -0.15,
- -1.41,
- 0.5,
- 0.91,
- 0.68,
- 0.64,
- 0.44,
- 0.54,
- 0.42,
- 0.8,
- 0.85,
- 0.95,
- 1.0,
- 0.0,
- 0.57,
- 1.02,
- 0.78,
- 1.39,
- 1.29,
- -1.11,
- -0.12,
- -0.91,
- -0.45,
- -0.9,
- -0.58,
- 0.62,
- -5.11,
- -5.11,
- -4.8,
- -4.84,
- -4.94,
- -5.13,
- -5.42,
- -5.28,
- -5.12,
- -4.91,
- -4.85,
- -4.81,
- -4.36,
- -4.17,
- -3.85,
- -3.17,
- -3.31,
- -2.26,
- -2.74,
- -2.77,
- -1.96,
- -2.62,
- -1.75,
- -0.4,
- 1.49,
- 2.22,
- 2.29,
- 3.28,
- 2.54,
- -0.71,
- -1.68,
- -1.55,
- -0.29,
- -1.23,
- -0.44,
- -0.05,
- -0.53,
- 0.0,
- -0.45,
- 1.02,
- 1.62,
- 1.38,
- 1.43,
- 2.04,
- 1.92,
- 1.68,
- 1.44,
- 1.67,
- 2.17,
- 2.52,
- 1.45,
- 2.08,
- 1.81,
- 1.64,
- 1.48,
- 0.97,
- 0.37,
- -1.0,
- -0.38,
- 0.09,
- 0.42,
- 0.75,
- 1.14,
- 1.03,
- 0.74,
- 0.25,
- 0.21,
- 0.44,
- 0.45,
- 0.57,
- 1.35,
- 0.81,
- 0.58,
- 0.99,
- 1.08,
- 1.14,
- -0.09,
- -0.09,
- -0.56,
- -0.12,
- -0.1,
- 1.44,
- 0.5,
- -0.64,
- -0.21,
- -0.34,
- -1.11,
- -1.83,
- -4.26,
- -1.22,
- 0.12,
- 1.33,
- 1.45,
- 1.14,
- 0.86,
- 0.9,
- 0.62,
- -0.92,
- -0.94,
- -1.0,
- -0.09,
- 0.09,
- 0.84,
- 1.81,
- 1.87,
- 1.69,
- 1.57,
- 2.13,
- 2.61,
- 2.47,
- 0.57,
- -0.05,
- 0.0,
- -0.07,
- -0.52,
- -0.32,
- -0.21,
- -0.61,
- -2.09,
- -2.32,
- -1.65,
- -1.12,
- -1.75,
- -2.17,
- -2.11,
- -1.39,
- -2.22,
- -1.63,
- -0.9,
- -0.65,
- -1.2,
- -1.41,
- -0.18,
- -0.96,
- -1.09,
- -0.92,
- -0.78,
- -0.81,
- -1.69,
- -2.77,
- -3.01,
- -1.44,
- -0.91,
- -1.23,
- -1.42,
- -2.14,
- 0.05,
- -0.05,
- 2.33,
- -0.19,
- -0.38,
- 0.11,
- -0.4,
- 1.05,
- -2.17,
- 0.26,
- 0.1,
- -0.23,
- -0.39,
- -0.93,
- -2.68,
- 1.43,
- -0.39,
- -1.24,
- -0.3,
- -1.26,
- -1.03,
- -0.65,
- -3.19,
- -3.62,
- -3.45,
- -3.88,
- -3.46,
- -2.85,
- -2.97,
- -3.29,
- -1.36,
- -0.42,
- -0.44,
- -1.43,
- 0.17,
- 0.39,
- 0.68,
- 1.1,
- 1.0,
- 1.08,
- -0.31,
- -1.64,
- -2.46,
- -2.98,
- -3.4,
- -3.67,
- -3.45,
- -2.62,
- -2.01,
- -0.85,
- -0.1,
- 1.88,
- 0.48,
- -0.27,
- -1.46,
- -3.26,
- -2.58,
- -2.65,
- 2.25,
- -0.95,
- -2.67,
- -2.53,
- -2.37,
- -3.51,
- -3.43,
- -2.84,
- -2.27,
- -2.56,
- -3.25,
- -2.88,
- -2.27,
- -2.65,
- -2.6,
- -2.16,
- -2.17,
- -1.94,
- -5.05,
- -5.13,
- -4.56,
- -4.8,
- -5.62,
- -5.83,
- -5.4,
- -4.89,
- -5.13,
- -4.87,
- -4.53,
- -4.93,
- -4.93,
- -4.5,
- -5.24,
- -5.46,
- -5.58,
- -6.09,
- -5.92,
- -5.44,
- -5.21,
- -5.11,
- -4.99,
- -4.85,
- -5.38,
- -4.74,
- -4.45,
- -3.91,
- -4.28,
- -5.85,
- -5.52,
- -5.12,
- -4.87,
- -4.68,
- -4.51,
- -3.85,
- -3.62,
- -3.35,
- -3.0,
- -3.55,
- -2.99,
- -2.65,
- -2.97,
- -3.71,
- -3.99,
- -4.15,
- -4.5,
- -4.86,
- -5.03,
- -4.75,
- -4.64,
- -4.5,
- -3.74,
- -3.31,
- -3.22,
- -2.48,
- -2.43,
- -3.25,
- -2.92,
- -2.71,
- -3.02,
- -3.0,
- -2.4,
- -2.74,
- -3.44,
- -3.73,
- -4.1,
- -4.32,
- -3.65,
- -2.72,
- -1.59,
- -1.73,
- -2.15,
- -2.73,
- -3.05,
- -2.5,
- -1.97,
- -1.45,
- -1.63,
- -1.9,
- -1.16,
- -0.3,
- 0.2,
- 0.74,
- 0.26,
- -1.08,
- -1.38,
- -0.45,
- 0.04,
- 0.2,
- 0.15,
- -0.21,
- -0.61,
- -0.47,
- -0.12,
- 1.03,
- 2.22,
- 2.21,
- 1.77,
- 1.43,
- 1.97,
- 2.24,
- 2.52,
- 2.69,
- 2.97,
- 3.29,
- 3.21,
- 3.28,
- 1.81,
- 1.0,
- -0.43,
- -1.08,
- 1.3,
- 0.87,
- 0.91,
- 1.14,
- 0.65,
- 0.67,
- 0.67,
- 0.78,
- 0.65,
- 1.22,
- 1.42,
- -0.16,
- -0.34,
- 1.11,
- 0.96,
- 0.95,
- 0.85,
- 1.12,
- 0.3,
- 0.5,
- -0.64,
- 0.2,
- -0.79,
- -0.84,
- -0.41,
- 0.68,
- -3.22,
- -5.44,
- -4.97,
- -5.31,
- -5.09,
- -4.89,
- -5.46,
- -5.66,
- -5.86,
- -6.16,
- -6.0,
- -5.65,
- -5.28,
- -4.88,
- -4.38,
- -4.07,
- -3.73,
- -3.59,
- -2.85,
- -2.61,
- -2.29,
- -1.96,
- -1.36,
- -0.3,
- 0.2,
- 0.76,
- 0.81,
- 0.91,
- -0.1,
- -2.27,
- -2.27,
- -1.91,
- -0.87,
- -2.78,
- -2.87,
- -2.83,
- -2.36,
- -1.82,
- -1.08,
- -0.68,
- -0.38,
- 0.43,
- 1.51,
- 0.29,
- -0.36,
- 0.46,
- 0.12,
- 0.94,
- 1.6,
- 1.45,
- 0.3,
- 1.2,
- 0.92,
- 0.58,
- -0.51,
- -0.71,
- -0.43,
- -1.96,
- -1.74,
- -0.67,
- -0.03,
- 1.1,
- 0.76,
- 0.76,
- 0.82,
- 0.17,
- 0.09,
- 0.11,
- 0.63,
- 1.04,
- 0.85,
- 0.77,
- 0.57,
- 1.15,
- 0.94,
- 0.81,
- 0.79,
- 0.28,
- -0.14,
- -0.53,
- 1.25,
- 3.09,
- 0.84,
- -0.72,
- -0.33,
- -1.55,
- -0.27,
- 0.84,
- -1.3,
- -0.14,
- 0.38,
- 1.07,
- 1.95,
- 1.36,
- 0.4,
- 1.29,
- 0.47,
- -0.45,
- -1.13,
- -0.67,
- 0.32,
- 0.95,
- 1.47,
- 2.54,
- 3.31,
- 3.02,
- 2.7,
- 3.31,
- 3.15,
- 2.86,
- 1.62,
- 1.13,
- 1.07,
- 0.61,
- 0.8,
- 0.88,
- 1.39,
- 0.75,
- -0.31,
- -0.57,
- -0.79,
- -0.81,
- -1.6,
- -1.84,
- -2.1,
- -1.75,
- -1.89,
- -1.69,
- -0.94,
- -1.09,
- -1.12,
- -0.59,
- -0.55,
- -0.25,
- -1.1,
- -1.18,
- -0.09,
- -1.19,
- -0.5,
- -2.75,
- -2.75,
- -1.6,
- -1.89,
- -0.29,
- -0.86,
- -0.62,
- -0.84,
- -0.01,
- -2.0,
- 1.64,
- -0.74,
- -0.02,
- -0.25,
- -0.51,
- 1.23,
- -0.26,
- 0.54,
- 0.6,
- 0.73,
- 2.06,
- -0.38,
- -0.6,
- -0.73,
- 0.0,
- -1.2,
- -1.02,
- -0.66,
- -0.26,
- -0.99,
- -2.63,
- -1.23,
- 0.01,
- -1.4,
- -1.5,
- 0.44,
- -3.62,
- -0.72,
- 1.83,
- 0.13,
- -3.11,
- 0.3,
- 0.88,
- 0.76,
- 1.01,
- 1.66,
- 1.67,
- 1.82,
- -0.45,
- -1.95,
- -2.47,
- -3.25,
- -3.41,
- -3.02,
- -2.45,
- -1.61,
- 0.13,
- 1.42,
- 2.03,
- 3.36,
- 1.69,
- 1.01,
- 0.41,
- 0.39,
- -0.42,
- 0.1,
- -0.51,
- -3.41,
- -2.82,
- -3.13,
- -3.16,
- -2.86,
- -2.17,
- -1.66,
- -2.05,
- -2.81,
- -2.15,
- -2.06,
- -2.47,
- -2.43,
- -2.46,
- -2.34,
- -2.28,
- -4.59,
- -4.1,
- -4.7,
- -4.66,
- -4.88,
- -5.22,
- -5.45,
- -4.75,
- -4.64,
- -4.45,
- -4.36,
- -4.48,
- -3.76,
- -4.56,
- -5.18,
- -5.42,
- -5.15,
- -5.63,
- -5.55,
- -5.12,
- -4.98,
- -4.4,
- -4.68,
- -4.25,
- -4.89,
- -4.49,
- -4.13,
- -3.7,
- -3.34,
- -3.92,
- -4.22,
- -3.49,
- -3.65,
- -3.96,
- -3.57,
- -3.4,
- -3.05,
- -2.72,
- -2.8,
- -2.93,
- -2.71,
- -2.65,
- -3.0,
- -3.37,
- -3.68,
- -3.93,
- -4.37,
- -4.77,
- -5.08,
- -5.09,
- -5.04,
- -4.67,
- -3.97,
- -3.49,
- -2.94,
- -2.35,
- -2.6,
- -3.36,
- -2.97,
- -3.17,
- -3.25,
- -3.08,
- -1.57,
- -2.28,
- -3.94,
- -3.36,
- -3.72,
- -3.78,
- -3.25,
- -3.01,
- -2.17,
- -2.12,
- -2.7,
- -3.46,
- -3.6,
- -3.12,
- -3.01,
- -2.76,
- -2.07,
- -1.82,
- -1.66,
- -0.34,
- -0.57,
- -1.1,
- -1.57,
- -1.86,
- -1.36,
- -0.83,
- -0.41,
- -0.48,
- -0.79,
- -1.06,
- -1.53,
- -1.44,
- -0.75,
- 0.63,
- 1.41,
- 1.42,
- -0.58,
- -0.03,
- 0.73,
- 1.08,
- 1.44,
- 1.52,
- 2.1,
- 2.97,
- 3.41,
- 2.89,
- 2.46,
- -0.01,
- -1.88,
- 0.21,
- 0.6,
- -0.07,
- -0.05,
- 0.68,
- 0.55,
- 0.71,
- 1.03,
- 0.89,
- 0.67,
- 0.74,
- -0.14,
- 0.08,
- 0.37,
- 0.81,
- 1.05,
- 0.64,
- 0.51,
- 0.89,
- 1.17,
- 0.41,
- 0.48,
- 0.67,
- -0.95,
- -0.94,
- -0.72,
- -0.55,
- -1.83,
- -5.07,
- -5.21,
- -5.64,
- -5.81,
- -5.9,
- -6.39,
- -6.17,
- -6.36,
- -6.76,
- -6.32,
- -6.01,
- -5.64,
- -5.04,
- -4.63,
- -4.23,
- -3.96,
- -3.55,
- -3.38,
- -2.86,
- -2.36,
- -1.93,
- -1.59,
- -1.41,
- -0.92,
- -0.35,
- -1.53,
- -1.12,
- -1.8,
- -1.99,
- -2.86,
- -2.92,
- -3.02,
- -3.57,
- -3.85,
- -3.68,
- -2.92,
- -2.24,
- -1.46,
- -1.23,
- -0.84,
- -0.09,
- 0.04,
- -0.89,
- -1.2,
- -0.6,
- -0.14,
- 0.04,
- 0.43,
- 1.06,
- -0.62,
- -0.1,
- -0.33,
- -0.4,
- -1.13,
- -1.14,
- -2.87,
- -1.95,
- -1.6,
- -0.89,
- 0.12,
- 0.84,
- 0.98,
- 1.21,
- 0.52,
- -0.27,
- -0.17,
- 0.08,
- 0.58,
- 0.77,
- 0.59,
- 0.46,
- 0.59,
- 0.77,
- 1.0,
- 0.67,
- 0.13,
- 0.17,
- -0.11,
- 0.38,
- 0.39,
- 2.13,
- 2.7,
- -1.26,
- -1.69,
- -1.41,
- -0.72,
- 1.06,
- 0.07,
- 0.88,
- 0.59,
- 1.09,
- 1.68,
- 1.13,
- -1.28,
- -0.3,
- -0.91,
- -0.23,
- -1.28,
- -1.53,
- -0.35,
- 1.1,
- 1.94,
- 3.06,
- 3.72,
- 4.41,
- 3.75,
- 4.13,
- 4.58,
- 3.64,
- 3.09,
- 2.53,
- 2.8,
- 1.53,
- 1.78,
- 1.32,
- 1.48,
- 1.23,
- 0.78,
- 0.47,
- -1.17,
- -0.99,
- -1.23,
- -1.32,
- -1.32,
- -0.95,
- -1.02,
- -1.2,
- -0.82,
- -0.78,
- -0.38,
- -0.72,
- -0.35,
- -0.26,
- -0.91,
- -1.07,
- -1.21,
- -1.79,
- -1.17,
- -1.45,
- -2.01,
- -2.27,
- -2.07,
- -0.97,
- -0.75,
- 0.38,
- 0.25,
- 0.48,
- -0.18,
- 2.68,
- 1.53,
- -0.71,
- 0.0,
- 0.28,
- -1.31,
- 0.3,
- 0.09,
- 0.27,
- 1.28,
- 4.01,
- -0.98,
- 0.03,
- -0.07,
- -0.35,
- -1.24,
- -0.88,
- -0.03,
- 0.07,
- -1.79,
- -2.78,
- -2.3,
- -1.71,
- -3.13,
- -4.12,
- -2.97,
- -1.43,
- -0.23,
- 2.02,
- -2.88,
- -1.79,
- 1.09,
- 0.33,
- 0.84,
- 1.18,
- 0.96,
- 1.27,
- 0.87,
- -0.09,
- -1.94,
- -2.18,
- -2.64,
- -3.17,
- -2.86,
- -2.19,
- -1.58,
- -0.3,
- 2.2,
- 2.4,
- 2.28,
- 2.15,
- 2.7,
- 2.16,
- 1.84,
- 0.46,
- -1.02,
- -1.28,
- -3.16,
- -2.65,
- -3.55,
- -3.37,
- -2.91,
- -1.44,
- -1.66,
- -1.33,
- -2.42,
- -1.94,
- -1.16,
- -1.6,
- -2.49,
- -1.73,
- -1.93,
- -3.11,
- -3.55,
- -3.81,
- -4.02,
- -3.48,
- -4.98,
- -4.77,
- -4.37,
- -4.04,
- -3.87,
- -3.54,
- -3.96,
- -3.45,
- -2.89,
- -3.32,
- -3.48,
- -4.87,
- -3.89,
- -5.25,
- -4.99,
- -4.97,
- -4.49,
- -3.98,
- -3.92,
- -4.1,
- -4.63,
- -4.38,
- -3.64,
- -3.38,
- -3.18,
- -3.3,
- -3.06,
- -2.89,
- -3.03,
- -3.59,
- -3.17,
- -2.93,
- -2.81,
- -2.83,
- -2.52,
- -2.5,
- -2.56,
- -2.45,
- -2.71,
- -3.16,
- -3.37,
- -3.96,
- -4.56,
- -4.84,
- -5.29,
- -5.56,
- -5.33,
- -4.93,
- -4.36,
- -3.72,
- -3.13,
- -2.83,
- -3.03,
- -3.73,
- -3.29,
- -3.34,
- -3.28,
- -2.58,
- -1.8,
- -2.83,
- -3.67,
- -3.15,
- -3.57,
- -3.41,
- -2.69,
- -2.82,
- -2.77,
- -2.6,
- -3.0,
- -3.11,
- -3.55,
- -3.3,
- -3.09,
- -2.82,
- -2.18,
- -2.07,
- -1.63,
- -1.32,
- -1.48,
- -0.94,
- -1.51,
- -1.85,
- -1.52,
- -0.9,
- -0.79,
- -0.64,
- -1.15,
- -1.49,
- -1.91,
- -2.09,
- -1.51,
- -0.59,
- 0.1,
- -1.5,
- -0.23,
- -0.17,
- 0.16,
- 0.03,
- 0.36,
- 0.42,
- 1.44,
- 2.36,
- 3.01,
- 2.61,
- 0.9,
- 0.4,
- -1.39,
- 0.19,
- -0.37,
- -0.29,
- -0.26,
- 0.46,
- 0.84,
- 0.7,
- 1.11,
- 0.75,
- 0.49,
- 0.52,
- 0.7,
- 0.94,
- 0.72,
- 0.74,
- 0.64,
- 0.62,
- 0.84,
- 1.01,
- 1.27,
- 0.7,
- 0.68,
- -0.04,
- -0.43,
- -0.69,
- -0.7,
- -1.93,
- -1.83,
- -4.72,
- -5.89,
- -6.16,
- -6.49,
- -6.23,
- -6.82,
- -6.95,
- -7.12,
- -7.1,
- -6.87,
- -6.23,
- -5.89,
- -5.35,
- -4.96,
- -4.34,
- -3.86,
- -3.28,
- -3.08,
- -3.15,
- -2.83,
- -2.22,
- -2.57,
- -2.39,
- -2.15,
- -1.42,
- -1.89,
- -2.02,
- -2.24,
- -3.56,
- -3.91,
- -3.63,
- -4.53,
- -4.45,
- -3.99,
- -3.75,
- -3.3,
- -2.78,
- -2.01,
- -1.67,
- -1.51,
- -1.48,
- -1.58,
- -1.96,
- -1.68,
- -1.34,
- -1.21,
- -0.71,
- -0.22,
- 0.3,
- -1.22,
- -0.65,
- -1.08,
- -1.45,
- -0.44,
- -1.46,
- -3.43,
- -2.55,
- -1.89,
- -1.23,
- -0.53,
- 0.17,
- 1.33,
- 1.03,
- 0.58,
- -0.33,
- -0.17,
- -0.2,
- 0.11,
- 0.7,
- 0.61,
- 0.06,
- 0.35,
- 0.47,
- 0.56,
- -0.12,
- -0.08,
- -0.68,
- -0.46,
- 0.9,
- 0.28,
- 1.6,
- 1.09,
- -1.77,
- -1.13,
- -2.39,
- 1.35,
- -0.99,
- 0.88,
- 0.7,
- 0.39,
- 1.49,
- 1.13,
- -0.56,
- -2.05,
- -1.64,
- -1.03,
- -0.94,
- -3.38,
- -1.84,
- -1.24,
- 0.36,
- 1.87,
- 2.85,
- 3.9,
- 4.43,
- 4.49,
- 4.04,
- 4.65,
- 4.67,
- 3.47,
- 3.26,
- 2.74,
- 2.65,
- 1.69,
- 1.32,
- 1.48,
- 0.68,
- 0.42,
- 0.33,
- -0.56,
- -0.4,
- -1.06,
- -1.31,
- -0.76,
- -0.8,
- -0.32,
- -0.97,
- -1.12,
- -0.88,
- -0.95,
- -0.41,
- -0.77,
- -0.37,
- -0.37,
- -2.09,
- -1.93,
- -2.16,
- -2.33,
- -2.25,
- -2.13,
- -1.98,
- -1.79,
- -1.53,
- -0.95,
- -0.4,
- 0.91,
- 0.87,
- 1.14,
- 1.33,
- 1.89,
- -0.7,
- -0.71,
- 0.03,
- 0.43,
- 0.98,
- -0.96,
- -0.12,
- 0.01,
- 1.58,
- 0.24,
- 0.15,
- -0.37,
- -0.37,
- -1.08,
- -0.08,
- -0.63,
- -0.26,
- 0.41,
- 0.74,
- -1.2,
- 0.0,
- -0.27,
- -1.08,
- -0.91,
- -1.24,
- 0.13,
- 1.59,
- -0.36,
- -0.93,
- 0.63,
- 0.9,
- 1.98,
- 0.52,
- -1.54,
- 1.08,
- -0.86,
- -0.13,
- -3.05,
- -2.81,
- -1.51,
- -1.21,
- -1.13,
- -1.5,
- -1.29,
- -0.34,
- 1.77,
- 3.11,
- 2.56,
- 1.82,
- 2.32,
- 1.1,
- 1.49,
- -1.29,
- -3.2,
- -2.25,
- -2.63,
- -3.2,
- -3.58,
- -3.32,
- -2.92,
- -2.15,
- -1.97,
- -2.28,
- -1.95,
- -1.72,
- -1.16,
- -1.01,
- -2.71,
- -1.94,
- -1.32,
- -2.61,
- -2.72,
- -2.55,
- -2.85,
- -2.32,
- -3.31,
- -3.22,
- -3.68,
- -2.97,
- -3.68,
- -2.58,
- -1.55,
- -1.4,
- -1.03,
- -1.13,
- -1.53,
- -1.48,
- -1.85,
- -3.48,
- -5.84,
- -4.76,
- -4.0,
- -3.45,
- -3.57,
- -4.12,
- -4.18,
- -4.0,
- -3.49,
- -3.03,
- -2.95,
- -2.72,
- -2.74,
- -3.0,
- -3.33,
- -3.84,
- -3.6,
- -2.68,
- -2.93,
- -2.94,
- -2.71,
- -2.59,
- -2.61,
- -2.67,
- -2.9,
- -3.06,
- -3.35,
- -3.92,
- -4.49,
- -4.9,
- -5.43,
- -5.62,
- -5.66,
- -5.34,
- -4.37,
- -3.89,
- -3.39,
- -2.93,
- -3.31,
- -3.89,
- -3.59,
- -3.71,
- -3.27,
- -2.64,
- -2.62,
- -3.49,
- -3.77,
- -3.51,
- -3.25,
- -2.65,
- -2.41,
- -2.51,
- -3.02,
- -2.97,
- -3.44,
- -3.43,
- -3.42,
- -3.62,
- -3.68,
- -3.42,
- -2.81,
- -2.4,
- -2.14,
- -2.07,
- -2.13,
- -1.82,
- -1.78,
- -1.87,
- -1.47,
- -1.2,
- -1.53,
- -1.1,
- -1.18,
- -1.58,
- -1.58,
- -2.16,
- -2.39,
- -2.36,
- -2.88,
- 0.02,
- 0.48,
- 0.23,
- -0.73,
- -0.46,
- -0.05,
- 0.06,
- 0.91,
- 1.94,
- 2.26,
- 1.68,
- 0.84,
- -1.29,
- 0.2,
- -0.33,
- -0.56,
- -0.47,
- -0.49,
- -0.13,
- 1.06,
- 1.06,
- 1.08,
- 0.9,
- 0.74,
- 0.77,
- 1.11,
- 0.81,
- 0.7,
- 0.56,
- 0.84,
- 0.66,
- 0.99,
- 1.03,
- 1.0,
- 1.17,
- 0.95,
- 0.93,
- 0.23,
- -0.54,
- -0.58,
- -0.86,
- -0.85,
- -1.2,
- -0.93,
- -0.52,
- -6.07,
- -6.73,
- -7.36,
- -7.62,
- -7.84,
- -7.87,
- -7.6,
- -7.06,
- -6.59,
- -5.79,
- -4.97,
- -4.81,
- -4.04,
- -3.49,
- -2.88,
- -2.99,
- -3.53,
- -3.35,
- -3.23,
- -3.31,
- -3.27,
- -2.58,
- -1.89,
- -1.74,
- -1.99,
- -6.5,
- -5.22,
- -5.57,
- -5.52,
- -4.94,
- -4.44,
- -3.98,
- -3.83,
- -3.42,
- -2.74,
- -2.16,
- -2.46,
- -2.24,
- -2.32,
- -2.85,
- -2.06,
- -1.52,
- -2.21,
- -1.61,
- -1.61,
- -0.74,
- -1.4,
- -1.28,
- -1.63,
- -1.71,
- -1.21,
- -1.17,
- -0.79,
- -3.05,
- -2.78,
- -2.32,
- -1.21,
- 0.07,
- 0.8,
- 1.22,
- 0.81,
- -0.31,
- -0.54,
- -0.56,
- 0.43,
- 0.84,
- 0.63,
- -0.06,
- -0.13,
- 0.26,
- 0.21,
- -0.12,
- -0.58,
- -0.59,
- 0.14,
- 0.83,
- -0.02,
- 1.28,
- 0.96,
- -1.27,
- -0.74,
- -1.05,
- -0.86,
- -1.27,
- -0.7,
- 0.07,
- -0.49,
- 0.82,
- -1.41,
- -2.3,
- -2.3,
- -2.57,
- -2.0,
- -2.26,
- -2.72,
- -2.33,
- -2.05,
- -1.07,
- -0.23,
- 1.57,
- 2.61,
- 3.48,
- 4.35,
- 5.04,
- 5.01,
- 4.88,
- 4.96,
- 3.19,
- 3.14,
- 2.97,
- 2.83,
- 1.52,
- 1.06,
- 0.76,
- 0.28,
- -0.31,
- 0.47,
- 0.25,
- -0.01,
- -0.84,
- -0.17,
- -0.8,
- -0.39,
- -0.54,
- -1.19,
- -1.29,
- -0.96,
- -0.58,
- -0.8,
- -1.46,
- -1.21,
- -1.85,
- -2.37,
- -2.7,
- -2.89,
- -2.74,
- -2.99,
- -2.49,
- -2.37,
- -2.34,
- -1.18,
- -0.61,
- 0.26,
- 0.91,
- 0.66,
- 2.17,
- 0.43,
- 2.11,
- -1.01,
- 0.16,
- -0.55,
- 0.3,
- -0.76,
- -1.24,
- -0.5,
- -1.88,
- 2.45,
- -0.46,
- -0.77,
- -0.69,
- -1.42,
- -0.54,
- -0.86,
- 0.37,
- -0.53,
- 1.58,
- -0.19,
- -1.63,
- -3.46,
- -0.21,
- 0.15,
- -0.96,
- -1.43,
- -0.36,
- -1.74,
- -0.19,
- 1.08,
- 1.38,
- 4.06,
- 1.2,
- -1.84,
- 0.95,
- 3.7,
- 2.26,
- -0.25,
- -1.8,
- -2.12,
- -0.5,
- 0.07,
- -0.13,
- -0.23,
- 0.18,
- 1.74,
- 0.81,
- 1.83,
- 1.86,
- 2.66,
- 1.27,
- -0.49,
- -2.29,
- -4.33,
- -3.47,
- -4.04,
- -3.87,
- -3.52,
- -3.56,
- -2.89,
- -2.59,
- -2.89,
- -1.92,
- -1.44,
- -1.85,
- -1.6,
- -1.39,
- -1.86,
- -1.95,
- -2.73,
- -2.31,
- -2.28,
- -1.61,
- -1.99,
- -1.07,
- -0.06,
- -1.49,
- -0.49,
- -2.38,
- -0.68,
- -0.63,
- 0.56,
- 0.43,
- 1.06,
- 0.56,
- -0.19,
- -0.92,
- -0.85,
- -1.92,
- -4.01,
- -4.03,
- -3.31,
- -3.3,
- -3.26,
- -3.98,
- -3.75,
- -3.07,
- -3.1,
- -2.65,
- -2.55,
- -2.27,
- -1.94,
- -2.43,
- -2.78,
- -2.7,
- -3.02,
- -2.47,
- -3.11,
- -3.08,
- -2.97,
- -2.72,
- -2.67,
- -2.83,
- -2.93,
- -3.08,
- -2.99,
- -3.22,
- -3.92,
- -4.88,
- -5.53,
- -5.74,
- -6.04,
- -5.44,
- -4.33,
- -3.61,
- -2.97,
- -2.8,
- -3.81,
- -4.1,
- -4.3,
- -4.12,
- -3.78,
- -3.7,
- -3.71,
- -3.75,
- -3.97,
- -3.89,
- -3.41,
- -3.08,
- -3.12,
- -3.62,
- -3.99,
- -4.0,
- -3.98,
- -4.41,
- -4.47,
- -4.74,
- -4.81,
- -4.36,
- -3.82,
- -3.28,
- -3.2,
- -3.09,
- -2.6,
- -2.43,
- -2.01,
- -1.71,
- -1.06,
- -1.32,
- -1.87,
- -1.71,
- -1.64,
- -1.32,
- -1.84,
- -3.07,
- -3.82,
- -3.11,
- -2.47,
- -1.39,
- -0.77,
- -0.83,
- -1.47,
- -1.23,
- -0.11,
- -0.14,
- 0.37,
- 1.24,
- 1.77,
- 2.03,
- 0.23,
- -1.54,
- -0.15,
- -0.63,
- -0.53,
- -0.49,
- -0.67,
- -0.06,
- 0.93,
- 1.02,
- 0.75,
- 0.95,
- 1.15,
- 1.06,
- 1.01,
- 0.8,
- 0.84,
- 0.92,
- 0.81,
- 0.67,
- 0.99,
- 1.15,
- 0.97,
- 0.96,
- 2.08,
- 1.57,
- 0.5,
- 0.1,
- -0.68,
- -0.84,
- -0.46,
- -0.55,
- -0.79,
- -0.12,
- -0.93,
- -1.18,
- -7.13,
- -7.6,
- -8.26,
- -8.48,
- -8.26,
- -8.13,
- -7.28,
- -6.26,
- -5.16,
- -4.95,
- -4.49,
- -3.85,
- -3.02,
- -2.72,
- -3.77,
- -4.35,
- -4.2,
- -4.23,
- -3.91,
- -2.75,
- -2.01,
- -2.47,
- -4.35,
- -8.26,
- -6.95,
- -6.49,
- -5.97,
- -5.49,
- -5.05,
- -4.7,
- -4.4,
- -3.77,
- -3.77,
- -3.53,
- -3.17,
- -2.22,
- -2.19,
- -2.82,
- -3.2,
- -2.63,
- -2.74,
- -2.89,
- -2.59,
- -1.75,
- -1.73,
- -1.61,
- -1.58,
- -1.6,
- -1.41,
- -0.91,
- -0.46,
- -1.37,
- -2.04,
- -2.88,
- -2.72,
- -1.0,
- 0.71,
- 0.78,
- 1.16,
- 0.24,
- 0.31,
- -0.53,
- 0.06,
- 0.46,
- 0.53,
- -0.27,
- -0.29,
- -0.07,
- 0.33,
- 0.11,
- -0.61,
- -0.5,
- -0.58,
- -1.1,
- 0.49,
- 0.15,
- 0.47,
- 0.35,
- -0.28,
- -2.13,
- -1.13,
- -0.12,
- -0.22,
- -1.1,
- -0.92,
- -1.23,
- -1.64,
- -2.52,
- -3.08,
- -2.4,
- -3.01,
- -3.69,
- -2.74,
- -3.29,
- -2.04,
- -0.87,
- -0.2,
- -0.54,
- -0.91,
- 1.38,
- 3.84,
- 4.59,
- 4.2,
- 4.95,
- 5.17,
- 4.45,
- 3.36,
- 3.88,
- 3.09,
- 2.46,
- 1.68,
- 1.17,
- 0.27,
- -0.15,
- 0.32,
- 0.51,
- 1.06,
- 0.04,
- -0.13,
- -0.16,
- 0.4,
- 0.09,
- -0.31,
- -0.79,
- -0.77,
- -0.26,
- -0.59,
- -1.46,
- -1.33,
- -1.94,
- -1.84,
- -2.32,
- -3.52,
- -3.1,
- -3.5,
- -3.14,
- -2.88,
- -2.77,
- -1.72,
- -0.69,
- -0.09,
- 0.23,
- 0.34,
- 0.52,
- 1.71,
- 1.44,
- 1.25,
- -0.44,
- -0.1,
- -0.77,
- -0.61,
- -0.76,
- -1.66,
- -2.82,
- -2.3,
- -2.01,
- -1.16,
- -1.39,
- -1.06,
- -1.42,
- -1.49,
- -2.05,
- -1.81,
- 0.61,
- -1.84,
- 3.45,
- -1.87,
- -1.99,
- -3.42,
- -1.6,
- 0.81,
- -4.45,
- 2.2,
- 0.04,
- -2.26,
- -0.97,
- 2.43,
- 0.91,
- 0.46,
- -1.9,
- 1.36,
- -0.53,
- -1.0,
- -1.35,
- -1.29,
- -1.19,
- -1.23,
- -0.97,
- -0.49,
- -0.35,
- 0.02,
- 0.93,
- 0.94,
- 2.02,
- 2.6,
- 2.14,
- 0.39,
- -3.49,
- -3.32,
- -5.1,
- -4.28,
- -3.5,
- -4.49,
- -3.97,
- -3.54,
- -3.43,
- -2.84,
- -1.43,
- -1.83,
- -1.04,
- -2.19,
- -2.08,
- -1.91,
- -2.85,
- -3.75,
- -2.8,
- -2.39,
- -2.63,
- -1.38,
- 0.87,
- 1.02,
- 1.85,
- 2.23,
- 1.08,
- 2.19,
- 2.62,
- 3.12,
- 2.35,
- 2.93,
- 2.67,
- 2.31,
- 1.45,
- -0.31,
- -2.06,
- -2.04,
- -3.0,
- -2.9,
- -2.56,
- -2.84,
- -3.33,
- -3.69,
- -2.54,
- -2.54,
- -2.38,
- -2.38,
- -1.9,
- -1.72,
- -0.95,
- -0.82,
- -1.88,
- -1.33,
- -2.01,
- -2.15,
- -2.55,
- -2.33,
- -2.52,
- -2.4,
- -2.55,
- -2.64,
- -2.36,
- -2.34,
- -2.67,
- -3.47,
- -3.85,
- -4.67,
- -5.93,
- -5.95,
- -5.55,
- -4.23,
- -2.98,
- -2.1,
- -2.28,
- -3.68,
- -4.16,
- -4.53,
- -4.29,
- -4.18,
- -4.61,
- -4.29,
- -4.29,
- -4.57,
- -3.87,
- -3.6,
- -3.71,
- -4.01,
- -4.47,
- -4.57,
- -5.01,
- -4.78,
- -5.18,
- -5.21,
- -5.47,
- -5.59,
- -4.98,
- -4.53,
- -4.06,
- -3.75,
- -3.66,
- -3.41,
- -2.5,
- -1.98,
- -1.51,
- -1.13,
- -1.06,
- -1.3,
- -1.84,
- -2.06,
- -2.09,
- -1.82,
- -3.44,
- -4.03,
- -3.86,
- -3.68,
- -2.52,
- -1.97,
- -1.65,
- -1.89,
- -1.46,
- -0.79,
- -0.43,
- -0.26,
- 0.11,
- 1.58,
- 4.02,
- 2.75,
- -0.69,
- -0.37,
- 0.22,
- -0.41,
- -0.4,
- -0.48,
- 0.36,
- 0.81,
- 1.13,
- 0.75,
- 0.41,
- 1.13,
- 1.09,
- 0.99,
- 0.84,
- 0.76,
- 0.85,
- 0.9,
- 0.45,
- 1.09,
- 1.25,
- 1.18,
- 0.87,
- 0.73,
- 0.45,
- 0.36,
- 0.47,
- 0.5,
- 0.54,
- 0.66,
- -0.65,
- 0.12,
- -0.08,
- -0.73,
- -0.71,
- -1.13,
- -1.49,
- -4.4,
- -3.91,
- -4.24,
- -8.59,
- -8.1,
- -6.69,
- -5.59,
- -5.08,
- -5.08,
- -4.23,
- -3.63,
- -3.31,
- -3.87,
- -4.55,
- -4.84,
- -4.97,
- -4.59,
- -3.37,
- -1.65,
- -6.54,
- -9.0,
- -8.21,
- -7.46,
- -7.11,
- -6.47,
- -6.03,
- -5.79,
- -5.44,
- -4.89,
- -4.18,
- -4.23,
- -4.44,
- -3.87,
- -3.48,
- -3.11,
- -2.84,
- -3.54,
- -3.74,
- -3.38,
- -3.22,
- -3.0,
- -2.52,
- -2.17,
- -1.9,
- -2.0,
- -1.6,
- -1.55,
- -0.51,
- -0.15,
- -0.9,
- -1.23,
- -1.93,
- -2.22,
- -1.45,
- 0.17,
- 0.45,
- 1.33,
- -0.07,
- -0.47,
- 0.71,
- -0.22,
- -0.63,
- -0.04,
- -0.3,
- -0.48,
- -0.06,
- 0.25,
- 0.06,
- -0.43,
- -0.42,
- -0.93,
- -1.32,
- 0.0,
- 0.64,
- 0.39,
- -1.47,
- -1.28,
- -1.67,
- 0.07,
- -1.3,
- 0.52,
- -0.47,
- 0.06,
- -3.57,
- -3.5,
- -3.46,
- -3.04,
- -2.96,
- -3.03,
- -3.02,
- -2.95,
- -3.98,
- -2.82,
- -1.52,
- -0.71,
- -0.21,
- -0.41,
- 1.06,
- 1.92,
- 2.81,
- 4.06,
- 4.79,
- 4.47,
- 4.3,
- 4.45,
- 4.13,
- 3.64,
- 2.88,
- 2.43,
- 1.74,
- 1.84,
- 0.97,
- 1.16,
- 1.12,
- 1.56,
- 1.41,
- 0.48,
- 0.28,
- 0.8,
- 1.03,
- 0.49,
- -0.03,
- -0.25,
- 0.13,
- -0.21,
- -0.65,
- -0.71,
- -1.57,
- -1.62,
- -1.96,
- -2.13,
- -3.4,
- -3.12,
- -3.27,
- -2.57,
- -2.35,
- -2.33,
- -1.13,
- -0.67,
- -0.21,
- -0.57,
- -1.12,
- -0.98,
- -0.36,
- 2.72,
- 0.83,
- -1.07,
- -0.95,
- -1.61,
- -2.75,
- -3.35,
- -4.59,
- -4.82,
- -5.05,
- -5.53,
- -5.69,
- -4.73,
- -3.35,
- -4.07,
- -3.95,
- -4.18,
- -2.21,
- -2.35,
- 5.2,
- -2.15,
- -3.56,
- -4.65,
- -4.57,
- -4.4,
- -3.98,
- -3.18,
- -1.96,
- -1.63,
- -0.6,
- -0.07,
- 0.23,
- 1.07,
- 0.79,
- -0.61,
- 0.06,
- -0.08,
- -1.16,
- -0.63,
- -0.98,
- -0.24,
- -1.03,
- -1.12,
- -2.66,
- -1.36,
- -0.1,
- 0.54,
- 2.6,
- 3.33,
- 2.98,
- -0.06,
- -2.08,
- -3.22,
- -4.99,
- -4.62,
- -3.95,
- -5.11,
- -4.35,
- -4.12,
- -3.66,
- -2.64,
- -2.18,
- -2.18,
- -2.72,
- -2.92,
- -3.49,
- -4.52,
- -4.34,
- -3.54,
- -3.56,
- -3.47,
- -2.64,
- -1.62,
- -0.6,
- 1.14,
- 1.53,
- 2.2,
- 1.89,
- 1.06,
- -0.38,
- 0.59,
- 2.37,
- 2.98,
- 3.27,
- 3.3,
- 1.53,
- -1.7,
- -0.89,
- -0.21,
- -1.98,
- -2.19,
- -2.16,
- -2.04,
- -3.05,
- -2.46,
- -2.5,
- -2.27,
- -2.35,
- -1.76,
- -1.63,
- -0.71,
- -0.18,
- 1.33,
- 0.59,
- -1.19,
- -0.83,
- -1.38,
- -1.97,
- -1.52,
- -1.9,
- -1.7,
- -1.27,
- -2.47,
- -3.03,
- -2.61,
- -2.26,
- -3.25,
- -3.58,
- -3.61,
- -5.44,
- -6.11,
- -5.64,
- -4.64,
- -3.43,
- -3.18,
- -3.56,
- -4.04,
- -3.46,
- -4.73,
- -4.46,
- -4.61,
- -4.52,
- -4.3,
- -4.12,
- -3.63,
- -3.52,
- -3.91,
- -4.3,
- -4.5,
- -5.28,
- -5.79,
- -5.34,
- -5.32,
- -5.47,
- -5.74,
- -5.91,
- -5.92,
- -5.38,
- -4.86,
- -4.85,
- -4.2,
- -3.9,
- -3.8,
- -3.23,
- -2.61,
- -2.15,
- -1.48,
- -0.8,
- -1.16,
- -2.1,
- -2.67,
- -2.62,
- -2.48,
- -3.49,
- -3.93,
- -4.47,
- -4.23,
- -3.71,
- -2.96,
- -2.52,
- -1.94,
- -1.89,
- -0.82,
- -0.88,
- -1.67,
- -1.47,
- -0.4,
- 1.99,
- -0.28,
- -0.38,
- 0.04,
- 0.47,
- 0.04,
- 0.15,
- -0.13,
- 0.02,
- 0.27,
- 0.88,
- 0.87,
- 0.44,
- 0.63,
- 0.87,
- 1.2,
- -0.32,
- 0.59,
- 0.78,
- 0.98,
- 0.09,
- 1.5,
- 1.27,
- 0.91,
- 0.56,
- 0.38,
- 0.04,
- 0.18,
- 0.38,
- 0.64,
- 0.69,
- 0.89,
- -0.58,
- 0.07,
- 0.36,
- 0.18,
- 0.07,
- -0.07,
- 0.09,
- -1.09,
- -5.85,
- -2.43,
- -2.34,
- -8.18,
- -7.14,
- -6.32,
- -5.25,
- -5.0,
- -4.99,
- -3.83,
- -3.49,
- -3.81,
- -4.42,
- -5.4,
- -5.55,
- -5.47,
- -4.66,
- -6.67,
- -9.89,
- -8.72,
- -7.98,
- -7.83,
- -7.72,
- -7.11,
- -6.68,
- -6.39,
- -5.83,
- -5.3,
- -4.67,
- -4.89,
- -4.78,
- -4.26,
- -4.41,
- -4.13,
- -3.59,
- -3.51,
- -3.89,
- -3.9,
- -3.77,
- -3.45,
- -2.76,
- -2.4,
- -2.15,
- -2.14,
- -1.92,
- -1.03,
- -0.85,
- -0.63,
- -0.47,
- -0.92,
- -1.03,
- -1.25,
- -0.99,
- -0.99,
- 0.29,
- 0.35,
- -0.47,
- -0.48,
- 0.48,
- 0.09,
- -0.94,
- -0.39,
- -0.25,
- -0.31,
- -0.05,
- -0.13,
- 0.02,
- -0.07,
- -0.4,
- -0.61,
- -0.74,
- -1.08,
- 0.64,
- -1.08,
- -2.72,
- -2.13,
- -3.78,
- -2.49,
- -1.97,
- -0.42,
- 1.32,
- -0.09,
- -5.56,
- -5.2,
- -4.65,
- -4.28,
- -3.85,
- -3.5,
- -3.16,
- -3.3,
- -4.16,
- -3.07,
- -2.06,
- -0.94,
- -0.45,
- -0.87,
- 0.22,
- 1.47,
- 3.14,
- 4.26,
- 5.09,
- 5.1,
- 4.31,
- 4.19,
- 4.29,
- 4.25,
- 3.85,
- 3.25,
- 2.79,
- 2.93,
- 2.79,
- 2.41,
- 2.19,
- 1.88,
- 1.96,
- 1.57,
- 1.73,
- 1.94,
- 1.4,
- 0.96,
- 0.98,
- 0.61,
- 0.96,
- 0.29,
- 0.41,
- 0.16,
- -1.02,
- -1.1,
- -1.65,
- -1.62,
- -3.38,
- -2.41,
- -3.48,
- -2.46,
- -2.78,
- -3.42,
- -2.45,
- -2.33,
- -1.51,
- -2.1,
- -2.65,
- -2.03,
- -2.06,
- 0.1,
- -0.26,
- -0.19,
- -1.83,
- -3.38,
- -3.3,
- -4.3,
- -5.64,
- -5.59,
- -5.95,
- -6.79,
- -6.56,
- -6.3,
- -6.97,
- -6.75,
- -5.19,
- -3.49,
- 0.44,
- -2.89,
- -2.77,
- -3.4,
- -4.87,
- -4.66,
- -4.92,
- -4.57,
- -4.55,
- -2.45,
- -2.14,
- -2.55,
- -2.31,
- -2.58,
- -1.15,
- 0.35,
- 0.51,
- 2.17,
- 2.28,
- 1.23,
- -0.9,
- 0.29,
- -0.23,
- -0.19,
- 0.02,
- -0.26,
- 0.38,
- -2.95,
- -2.04,
- 0.16,
- 2.34,
- 3.68,
- 1.83,
- -1.88,
- -1.98,
- 0.86,
- -5.41,
- -4.26,
- -4.98,
- -5.25,
- -4.78,
- -4.48,
- -4.26,
- -3.92,
- -3.93,
- -2.93,
- -2.91,
- -4.17,
- -4.7,
- -4.59,
- -4.62,
- -3.94,
- -4.01,
- -2.8,
- -2.71,
- -3.0,
- -2.13,
- -2.04,
- -1.55,
- -1.22,
- -0.49,
- -0.59,
- -0.57,
- 1.5,
- 2.78,
- 3.44,
- 3.38,
- 3.71,
- 2.33,
- 0.62,
- -0.26,
- -0.19,
- -1.48,
- -1.65,
- -2.38,
- -1.76,
- -1.72,
- -2.16,
- -2.14,
- -1.72,
- -2.28,
- -1.78,
- -1.56,
- -0.31,
- 0.29,
- 1.33,
- -0.13,
- -1.39,
- -1.68,
- -1.45,
- -1.51,
- -1.37,
- -1.2,
- -0.85,
- -0.85,
- -2.14,
- -3.2,
- -2.5,
- -2.19,
- -3.34,
- -4.14,
- -4.08,
- -5.11,
- -5.45,
- -5.77,
- -5.2,
- -4.12,
- -3.8,
- -4.27,
- -5.2,
- -5.36,
- -4.05,
- -4.86,
- -4.76,
- -4.33,
- -3.93,
- -3.91,
- -3.59,
- -3.84,
- -4.35,
- -5.05,
- -5.78,
- -6.54,
- -5.76,
- -4.95,
- -5.54,
- -5.95,
- -6.06,
- -6.11,
- -5.89,
- -5.4,
- -5.16,
- -4.65,
- -4.33,
- -4.03,
- -3.95,
- -3.42,
- -2.86,
- -2.57,
- -2.35,
- -1.33,
- -0.97,
- -2.17,
- -2.99,
- -3.17,
- -3.13,
- -3.56,
- -4.2,
- -4.98,
- -4.78,
- -4.24,
- -3.85,
- -3.25,
- -2.57,
- -1.41,
- -1.09,
- 0.14,
- -1.35,
- -2.1,
- -1.64,
- 0.41,
- -0.32,
- 1.48,
- -0.15,
- 0.91,
- 1.05,
- 0.65,
- -0.1,
- -0.11,
- 0.74,
- 0.73,
- 1.07,
- 0.23,
- 0.88,
- 1.07,
- 0.38,
- -0.35,
- 0.35,
- 0.94,
- 0.99,
- 0.5,
- -0.34,
- 1.27,
- -0.15,
- 0.45,
- -0.32,
- 0.0,
- 0.24,
- 0.7,
- 0.81,
- 0.72,
- 0.83,
- -0.38,
- -0.13,
- 0.86,
- 0.97,
- 0.47,
- 0.93,
- 1.01,
- -0.17,
- -4.27,
- -5.42,
- -2.66,
- -3.29,
- -5.03,
- -4.22,
- -5.75,
- -5.06,
- -5.24,
- -5.01,
- -5.04,
- -4.54,
- -5.01,
- -5.61,
- -6.63,
- -6.9,
- -6.7,
- -8.89,
- -8.79,
- -8.44,
- -8.19,
- -8.31,
- -8.15,
- -7.59,
- -7.18,
- -6.79,
- -6.46,
- -5.96,
- -5.4,
- -5.08,
- -4.62,
- -4.82,
- -4.82,
- -4.61,
- -4.49,
- -4.06,
- -3.89,
- -4.26,
- -4.05,
- -3.68,
- -3.22,
- -2.95,
- -2.32,
- -1.67,
- -1.53,
- -1.61,
- -1.07,
- -0.69,
- -0.41,
- -0.33,
- 0.02,
- -0.04,
- -0.43,
- -0.7,
- 0.38,
- 0.06,
- -0.87,
- 0.18,
- -0.19,
- 0.06,
- 0.63,
- 0.15,
- -0.04,
- -0.16,
- -0.68,
- -0.35,
- -0.82,
- 0.14,
- -0.11,
- -0.88,
- -0.64,
- -0.53,
- -0.27,
- -1.72,
- -1.82,
- -3.31,
- -1.37,
- -2.34,
- -1.83,
- 0.73,
- 3.92,
- -1.2,
- -5.1,
- -6.48,
- -5.69,
- -5.28,
- -4.77,
- -4.08,
- -3.87,
- -3.93,
- -4.02,
- -3.29,
- -2.1,
- -1.46,
- -1.17,
- -0.93,
- 0.24,
- 0.83,
- 2.69,
- 3.81,
- 4.87,
- 4.44,
- 4.64,
- 3.93,
- 2.83,
- 3.52,
- 3.97,
- 4.04,
- 4.18,
- 3.67,
- 3.89,
- 3.82,
- 3.55,
- 3.41,
- 3.0,
- 2.32,
- 1.84,
- 1.62,
- 1.86,
- 1.82,
- 1.66,
- 1.18,
- 1.47,
- 1.17,
- 1.38,
- 0.7,
- -0.46,
- -0.71,
- -1.31,
- -1.64,
- -2.16,
- -1.76,
- -3.02,
- -2.1,
- -3.47,
- -3.84,
- -3.57,
- -3.26,
- -3.11,
- -3.4,
- -3.77,
- -3.52,
- -3.29,
- -1.96,
- -3.86,
- -3.12,
- -3.54,
- -1.15,
- -1.68,
- -4.97,
- -4.52,
- -4.53,
- -5.59,
- -6.09,
- -6.57,
- -6.08,
- -6.37,
- -6.77,
- -7.22,
- -6.68,
- -6.37,
- -5.9,
- -5.45,
- -5.14,
- -5.03,
- -4.44,
- -5.2,
- -4.85,
- -4.04,
- -2.52,
- -1.93,
- -3.08,
- -3.52,
- -4.15,
- -2.47,
- 2.15,
- -2.6,
- 0.87,
- 1.71,
- 4.69,
- -1.56,
- -0.32,
- -0.45,
- -0.56,
- 0.87,
- -1.46,
- 0.07,
- 0.63,
- -1.22,
- -5.42,
- -1.2,
- -0.74,
- -2.68,
- -1.18,
- -1.62,
- -2.14,
- 0.16,
- -4.93,
- -5.39,
- -5.25,
- -5.06,
- -5.0,
- -4.78,
- -5.03,
- -4.47,
- -3.79,
- -3.83,
- -4.59,
- -4.89,
- -5.1,
- -4.96,
- -4.65,
- -4.33,
- -3.9,
- -3.46,
- -3.07,
- -2.36,
- -1.51,
- -0.98,
- -0.68,
- -0.36,
- 0.36,
- 0.94,
- 1.9,
- 2.9,
- 4.47,
- 5.12,
- 4.3,
- 3.2,
- 1.63,
- 1.06,
- -0.24,
- -1.5,
- -1.47,
- -1.09,
- -1.3,
- -0.59,
- 0.32,
- -0.48,
- -0.54,
- -0.51,
- -0.75,
- -0.29,
- 0.26,
- 0.68,
- 1.02,
- 1.12,
- -1.39,
- -1.16,
- -1.66,
- -1.69,
- -2.3,
- -1.3,
- -0.33,
- -1.08,
- -2.13,
- -3.02,
- -2.82,
- -2.91,
- -4.92,
- -5.29,
- -5.11,
- -6.4,
- -5.96,
- -6.09,
- -5.27,
- -4.48,
- -4.08,
- -4.41,
- -4.84,
- -6.04,
- -4.53,
- -4.06,
- -4.27,
- -4.21,
- -3.68,
- -3.59,
- -3.68,
- -4.11,
- -4.7,
- -6.2,
- -6.63,
- -6.49,
- -5.74,
- -6.09,
- -6.14,
- -6.54,
- -6.48,
- -6.55,
- -5.81,
- -5.25,
- -5.02,
- -4.58,
- -4.22,
- -4.12,
- -3.97,
- -3.19,
- -2.76,
- -2.74,
- -2.42,
- -1.61,
- -1.95,
- -2.38,
- -3.23,
- -4.02,
- -3.2,
- -4.45,
- -4.9,
- -5.47,
- -5.38,
- -4.63,
- -4.09,
- -3.41,
- -3.27,
- -1.98,
- -1.24,
- -0.81,
- -1.08,
- -1.33,
- -2.21,
- -1.23,
- 1.47,
- -0.76,
- -0.62,
- -0.05,
- 0.65,
- 0.91,
- -0.5,
- -0.07,
- -0.16,
- -0.17,
- -0.36,
- -0.53,
- 0.28,
- 0.15,
- -0.37,
- -0.68,
- 0.47,
- 0.87,
- 1.07,
- 0.6,
- -0.01,
- -0.03,
- 0.55,
- -0.53,
- -0.03,
- 0.27,
- 0.44,
- 0.73,
- 0.89,
- 0.28,
- 0.21,
- 0.27,
- 0.39,
- 0.54,
- 1.48,
- 1.33,
- 0.71,
- -0.16,
- -1.44,
- -5.72,
- -4.76,
- -1.35,
- -3.4,
- -2.39,
- -1.08,
- -4.05,
- -5.25,
- -5.43,
- -5.7,
- -5.69,
- -6.9,
- -6.64,
- -7.49,
- -7.9,
- -8.47,
- -8.69,
- -8.82,
- -8.67,
- -8.53,
- -8.6,
- -8.51,
- -8.22,
- -7.91,
- -7.39,
- -7.19,
- -6.82,
- -6.67,
- -6.22,
- -5.84,
- -5.64,
- -5.18,
- -5.25,
- -5.47,
- -5.28,
- -5.01,
- -4.45,
- -4.58,
- -4.64,
- -4.21,
- -3.71,
- -3.78,
- -3.09,
- -2.1,
- -1.23,
- -1.16,
- -1.16,
- -0.58,
- -0.01,
- 0.33,
- 0.26,
- 0.23,
- 0.12,
- -0.17,
- -0.99,
- -0.11,
- -1.04,
- 0.21,
- -0.58,
- -0.36,
- 0.42,
- 0.37,
- 0.14,
- -0.2,
- -0.53,
- -0.28,
- -0.68,
- 0.42,
- 0.24,
- -0.04,
- 0.82,
- -1.46,
- -1.26,
- -0.39,
- -2.2,
- -2.31,
- -1.22,
- -0.61,
- -0.27,
- 0.38,
- 1.24,
- -1.68,
- -4.22,
- -7.18,
- -6.63,
- -6.57,
- -5.69,
- -5.16,
- -4.73,
- -4.41,
- -4.06,
- -3.65,
- -2.84,
- -1.86,
- -1.37,
- -1.25,
- -0.41,
- -0.02,
- 1.39,
- 1.75,
- 4.25,
- 4.4,
- 2.93,
- 3.78,
- 3.55,
- 2.95,
- 2.71,
- 2.55,
- 3.37,
- 3.68,
- 4.03,
- 4.06,
- 3.14,
- 3.15,
- 3.14,
- 2.86,
- 2.65,
- 2.95,
- 2.82,
- 2.79,
- 2.22,
- 1.34,
- 0.97,
- 1.07,
- 1.78,
- 0.48,
- -0.03,
- -0.68,
- -1.12,
- -0.87,
- -1.14,
- -1.52,
- -1.98,
- -2.55,
- -4.1,
- -4.29,
- -4.68,
- -4.17,
- -4.36,
- -4.27,
- -4.68,
- -6.48,
- -4.94,
- -4.18,
- -4.92,
- -4.13,
- -0.64,
- 1.28,
- -0.73,
- -3.14,
- -1.74,
- -3.08,
- -2.58,
- -2.78,
- -2.47,
- -5.18,
- -4.6,
- -4.74,
- -5.57,
- -6.15,
- -5.67,
- -5.41,
- -5.51,
- -4.83,
- -3.78,
- -3.47,
- -3.06,
- -5.54,
- -4.97,
- -3.72,
- -3.61,
- -2.42,
- -2.72,
- -3.49,
- -2.21,
- -2.59,
- -1.51,
- 0.03,
- 1.07,
- 3.1,
- 0.05,
- -0.17,
- 0.07,
- -0.25,
- -0.36,
- 0.0,
- -0.83,
- -1.97,
- -2.87,
- -4.65,
- -3.9,
- -3.67,
- -2.83,
- -2.33,
- -2.4,
- -2.45,
- -4.41,
- -2.38,
- -2.53,
- -5.46,
- -5.25,
- -5.49,
- -5.47,
- -4.93,
- -4.44,
- -4.45,
- -4.08,
- -4.87,
- -4.99,
- -4.97,
- -5.13,
- -4.97,
- -4.53,
- -4.18,
- -4.21,
- -3.7,
- -3.5,
- -3.17,
- -2.95,
- -2.41,
- -1.67,
- -1.2,
- -0.34,
- 0.43,
- 1.62,
- 4.06,
- 5.7,
- 4.92,
- 3.07,
- 2.25,
- 3.0,
- 0.15,
- -0.53,
- -0.08,
- 0.12,
- -0.24,
- 0.41,
- 1.56,
- 0.56,
- 1.27,
- 1.1,
- 0.82,
- 0.88,
- 0.67,
- 0.81,
- 0.88,
- 2.02,
- -0.79,
- -1.27,
- -0.98,
- -1.41,
- -2.33,
- -2.48,
- -1.57,
- -0.29,
- -2.79,
- -2.65,
- -2.34,
- -4.82,
- -5.91,
- -4.84,
- -5.73,
- -6.31,
- -5.7,
- -5.59,
- -5.2,
- -4.79,
- -4.22,
- -4.23,
- -4.25,
- -5.47,
- -6.28,
- -4.95,
- -3.76,
- -3.99,
- -4.77,
- -5.03,
- -5.37,
- -5.08,
- -5.81,
- -6.82,
- -6.27,
- -5.98,
- -5.87,
- -5.94,
- -6.0,
- -6.32,
- -6.19,
- -6.27,
- -5.51,
- -5.09,
- -5.01,
- -4.58,
- -3.91,
- -3.71,
- -3.47,
- -2.86,
- -2.84,
- -2.54,
- -2.51,
- -2.35,
- -2.65,
- -2.88,
- -3.54,
- -3.97,
- -4.21,
- -5.44,
- -6.03,
- -5.94,
- -5.6,
- -4.95,
- -4.9,
- -4.38,
- -3.88,
- -3.51,
- -2.4,
- -1.72,
- -1.37,
- -1.76,
- -2.12,
- -1.05,
- -1.38,
- -1.37,
- -0.58,
- 0.53,
- -0.3,
- 0.55,
- -0.93,
- -0.7,
- -0.74,
- 0.06,
- -0.63,
- -0.46,
- -0.27,
- 0.19,
- 0.21,
- -0.42,
- 0.29,
- 0.93,
- 0.75,
- 0.22,
- -0.26,
- -0.53,
- 0.0,
- 0.17,
- -0.35,
- 0.47,
- 0.74,
- 0.98,
- 0.6,
- 0.1,
- 0.19,
- 0.48,
- 0.83,
- -0.1,
- 1.45,
- 1.55,
- 1.35,
- -0.22,
- -2.32,
- -4.1,
- -3.1,
- -1.05,
- -1.25,
- -5.53,
- -3.09,
- -0.44,
- -5.44,
- -5.61,
- -6.54,
- -6.99,
- -6.58,
- -7.68,
- -8.6,
- -9.14,
- -9.19,
- -9.41,
- -9.17,
- -8.84,
- -8.77,
- -8.78,
- -8.64,
- -8.5,
- -8.11,
- -8.1,
- -7.86,
- -7.66,
- -7.16,
- -7.16,
- -6.74,
- -6.58,
- -6.42,
- -6.32,
- -6.31,
- -6.23,
- -6.2,
- -5.8,
- -5.43,
- -5.25,
- -4.38,
- -4.21,
- -4.33,
- -3.82,
- -2.99,
- -2.06,
- -1.42,
- -0.9,
- -0.35,
- 0.16,
- 0.23,
- -0.16,
- -0.45,
- 0.18,
- 0.06,
- -2.35,
- -0.71,
- -0.83,
- -0.24,
- -0.08,
- -0.52,
- 0.63,
- 0.88,
- 0.36,
- 0.01,
- -0.26,
- -0.08,
- -0.48,
- -0.07,
- 0.55,
- -0.2,
- 0.21,
- 0.77,
- 1.2,
- -1.41,
- -2.85,
- -1.93,
- -2.11,
- -2.76,
- 0.05,
- 0.44,
- -0.02,
- -2.55,
- -4.59,
- -6.44,
- -6.36,
- -6.7,
- -6.51,
- -6.27,
- -5.87,
- -4.86,
- -4.18,
- -3.93,
- -3.43,
- -2.49,
- -1.59,
- -1.54,
- -1.69,
- -0.99,
- -0.35,
- -0.36,
- -1.19,
- -0.35,
- 1.82,
- 1.9,
- 2.24,
- 2.12,
- 2.64,
- 3.37,
- 3.08,
- 3.42,
- 3.58,
- 3.79,
- 3.29,
- 3.23,
- 3.17,
- 2.65,
- 2.63,
- 3.4,
- 3.53,
- 2.02,
- 1.68,
- 0.48,
- 0.43,
- 0.04,
- 0.59,
- 0.12,
- -0.38,
- -0.68,
- -1.19,
- -0.82,
- -0.97,
- -1.65,
- -2.47,
- -3.82,
- -4.79,
- -5.17,
- -5.22,
- -5.08,
- -5.14,
- -5.11,
- -5.99,
- -6.83,
- -5.54,
- -6.35,
- -5.62,
- -6.1,
- -4.73,
- -6.68,
- -7.37,
- -7.47,
- -6.75,
- -5.62,
- -2.98,
- -1.73,
- -1.94,
- -0.16,
- -1.91,
- -1.67,
- -3.89,
- -3.49,
- -4.52,
- -1.77,
- -4.12,
- -2.29,
- -2.56,
- -2.49,
- -4.08,
- -3.68,
- -5.0,
- -4.04,
- -3.47,
- -3.66,
- -4.27,
- -2.59,
- -3.06,
- -3.55,
- -3.05,
- -1.97,
- 0.39,
- 1.31,
- -0.49,
- 0.15,
- -0.61,
- -0.47,
- 0.51,
- -0.92,
- 3.44,
- 2.14,
- -1.39,
- -4.14,
- -4.57,
- -4.06,
- -2.64,
- -2.0,
- -2.66,
- -3.51,
- -4.12,
- -2.2,
- -1.45,
- -3.71,
- -1.5,
- -4.13,
- -5.12,
- -5.35,
- -4.99,
- -4.88,
- -5.5,
- -5.9,
- -5.97,
- -5.28,
- -6.61,
- -6.39,
- -5.89,
- -5.42,
- -4.73,
- -5.15,
- -4.81,
- -4.43,
- -4.21,
- -3.89,
- -3.24,
- -2.55,
- -1.75,
- -0.49,
- 0.65,
- 0.82,
- -1.31,
- 1.73,
- 1.66,
- 1.25,
- 1.2,
- -0.31,
- 0.26,
- 0.79,
- 1.14,
- 1.52,
- 3.94,
- 1.25,
- -0.08,
- 1.35,
- 1.34,
- 1.63,
- 1.61,
- 0.89,
- 0.81,
- -0.04,
- 0.0,
- -2.35,
- -1.41,
- -1.24,
- -1.63,
- -2.76,
- -3.21,
- -1.85,
- -1.18,
- -3.18,
- -3.83,
- -3.44,
- -5.79,
- -6.03,
- -6.66,
- -6.69,
- -6.5,
- -5.83,
- -5.14,
- -4.51,
- -4.6,
- -4.14,
- -4.11,
- -4.31,
- -4.44,
- -6.03,
- -5.92,
- -5.27,
- -4.85,
- -6.2,
- -6.09,
- -6.41,
- -6.25,
- -6.19,
- -6.35,
- -5.88,
- -5.57,
- -6.0,
- -5.87,
- -5.62,
- -5.64,
- -5.85,
- -5.48,
- -5.29,
- -4.95,
- -4.6,
- -4.27,
- -3.76,
- -3.45,
- -3.22,
- -2.96,
- -2.89,
- -2.46,
- -2.14,
- -2.75,
- -3.24,
- -3.33,
- -3.89,
- -4.38,
- -4.89,
- -6.32,
- -6.25,
- -5.94,
- -5.17,
- -4.53,
- -4.34,
- -4.56,
- -4.36,
- -4.02,
- -3.89,
- -2.79,
- -2.22,
- -2.2,
- -2.34,
- -1.46,
- -1.74,
- 0.17,
- -2.28,
- 0.88,
- -0.35,
- -0.45,
- -0.91,
- -0.95,
- -0.77,
- -0.73,
- -1.03,
- -0.56,
- -0.34,
- -0.05,
- 0.17,
- 0.19,
- 0.12,
- 0.36,
- 0.47,
- 0.56,
- -0.28,
- -0.7,
- 0.35,
- -0.56,
- 0.8,
- 0.77,
- 1.19,
- 0.03,
- 0.27,
- -0.24,
- 0.75,
- 0.42,
- 0.1,
- -0.08,
- 0.99,
- 1.27,
- 0.69,
- -0.22,
- -3.21,
- -5.41,
- -3.28,
- -2.69,
- -3.76,
- -2.92,
- -1.44,
- -1.42,
- -5.6,
- -5.97,
- -6.75,
- -7.5,
- -7.73,
- -7.96,
- -8.3,
- -9.07,
- -9.83,
- -9.37,
- -9.18,
- -9.06,
- -8.57,
- -8.71,
- -8.95,
- -8.5,
- -8.48,
- -8.48,
- -8.51,
- -8.23,
- -7.47,
- -7.74,
- -7.36,
- -7.33,
- -6.8,
- -6.8,
- -6.98,
- -6.76,
- -6.81,
- -6.49,
- -6.1,
- -5.88,
- -5.15,
- -4.74,
- -4.67,
- -4.47,
- -3.67,
- -2.94,
- -2.13,
- -1.12,
- -0.4,
- -0.13,
- -0.14,
- -0.26,
- -0.47,
- -0.49,
- -0.36,
- -1.31,
- -1.34,
- -0.87,
- -0.36,
- -0.2,
- -0.59,
- 0.14,
- 0.73,
- 0.22,
- 0.48,
- 0.37,
- -0.15,
- -0.64,
- -0.13,
- -0.72,
- 0.66,
- 0.44,
- -0.43,
- -1.29,
- -0.56,
- -1.49,
- -0.9,
- -3.09,
- 0.73,
- -0.58,
- -0.61,
- -0.14,
- -2.46,
- -3.94,
- -5.32,
- -5.57,
- -6.19,
- -6.67,
- -6.86,
- -6.63,
- -6.06,
- -5.1,
- -4.06,
- -3.67,
- -2.88,
- -1.94,
- -1.87,
- -2.27,
- -1.77,
- -1.42,
- -2.17,
- -2.7,
- -2.24,
- -1.04,
- -0.08,
- 1.28,
- 2.27,
- 2.96,
- 3.25,
- 3.29,
- 2.77,
- 2.97,
- 3.39,
- 2.99,
- 3.06,
- 3.22,
- 2.64,
- 2.33,
- 3.01,
- 0.01,
- -0.64,
- -0.78,
- -0.09,
- -1.32,
- -1.58,
- -0.17,
- 0.04,
- -0.72,
- -0.98,
- -1.03,
- -1.59,
- -1.59,
- -2.09,
- -3.69,
- -4.33,
- -5.03,
- -5.74,
- -5.85,
- -5.65,
- -5.44,
- -5.71,
- -6.8,
- -7.67,
- -8.23,
- -6.94,
- -6.59,
- -7.06,
- -7.34,
- -8.55,
- -8.28,
- -7.66,
- -7.28,
- -6.63,
- -6.17,
- -5.73,
- -5.12,
- -4.9,
- -4.41,
- -4.62,
- -2.89,
- -3.91,
- -3.83,
- -5.87,
- -2.47,
- -1.08,
- -0.04,
- 2.19,
- 0.91,
- -2.9,
- -3.23,
- -3.21,
- -2.58,
- -2.76,
- -3.19,
- -2.7,
- -3.73,
- -4.5,
- -4.06,
- -4.11,
- -3.84,
- -3.99,
- -3.97,
- -1.53,
- -1.35,
- -0.82,
- -1.55,
- 0.38,
- 3.16,
- 3.74,
- 2.15,
- -1.0,
- -3.31,
- -3.0,
- -3.2,
- -1.6,
- -3.49,
- -4.49,
- -5.04,
- -4.45,
- -5.01,
- -3.78,
- -0.84,
- -5.56,
- -1.83,
- -5.55,
- -5.56,
- -5.53,
- -5.88,
- -6.29,
- -6.85,
- -7.32,
- -7.01,
- -7.19,
- -6.72,
- -6.37,
- -5.63,
- -5.49,
- -5.0,
- -4.52,
- -4.27,
- -3.97,
- -3.52,
- -2.89,
- -2.11,
- -1.56,
- -1.28,
- -1.8,
- -3.99,
- -2.39,
- 0.5,
- 0.2,
- 0.3,
- -0.75,
- -0.19,
- -0.05,
- 0.21,
- 0.26,
- -0.98,
- -0.99,
- 0.1,
- 1.23,
- 1.53,
- 1.3,
- 0.8,
- 1.42,
- 0.99,
- -0.36,
- -2.23,
- -2.16,
- -1.96,
- -1.67,
- -1.23,
- -3.06,
- -3.31,
- -2.45,
- -2.84,
- -3.47,
- -5.03,
- -4.77,
- -5.63,
- -6.7,
- -6.19,
- -6.32,
- -5.55,
- -5.41,
- -4.94,
- -4.36,
- -3.98,
- -3.77,
- -3.65,
- -3.95,
- -4.33,
- -4.53,
- -5.48,
- -5.48,
- -5.76,
- -5.87,
- -6.31,
- -6.28,
- -6.43,
- -5.76,
- -6.06,
- -5.87,
- -5.49,
- -5.85,
- -5.75,
- -5.53,
- -5.26,
- -5.43,
- -5.31,
- -5.12,
- -4.58,
- -4.35,
- -4.24,
- -3.88,
- -3.7,
- -3.55,
- -3.47,
- -3.42,
- -3.15,
- -2.77,
- -3.0,
- -3.19,
- -3.74,
- -4.51,
- -5.24,
- -5.83,
- -6.97,
- -6.31,
- -6.32,
- -5.11,
- -4.31,
- -4.14,
- -3.88,
- -3.92,
- -3.93,
- -4.43,
- -3.85,
- -3.11,
- -2.91,
- -2.72,
- -2.38,
- -1.91,
- -2.15,
- 0.17,
- -0.78,
- -1.09,
- 0.05,
- -0.99,
- -0.83,
- -0.82,
- -1.04,
- -0.82,
- -0.66,
- -0.47,
- -0.01,
- -0.21,
- -0.13,
- 0.03,
- -0.04,
- 0.1,
- -0.01,
- 0.25,
- -0.68,
- -0.36,
- -0.44,
- -0.04,
- 1.2,
- 0.48,
- 0.09,
- 0.18,
- -0.17,
- 0.0,
- -0.16,
- 0.88,
- -0.46,
- 0.27,
- 0.6,
- -0.39,
- -2.06,
- -6.58,
- -5.16,
- -3.41,
- -5.68,
- -3.3,
- -2.49,
- -0.89,
- -5.58,
- -6.09,
- -6.31,
- -6.77,
- -7.44,
- -8.06,
- -8.38,
- -9.0,
- -9.59,
- -9.38,
- -9.2,
- -8.95,
- -8.66,
- -8.81,
- -8.98,
- -8.89,
- -9.05,
- -8.83,
- -8.7,
- -8.68,
- -8.58,
- -8.31,
- -7.98,
- -7.83,
- -7.68,
- -7.7,
- -7.42,
- -7.49,
- -7.33,
- -7.22,
- -6.81,
- -6.38,
- -6.04,
- -5.63,
- -5.21,
- -5.32,
- -4.66,
- -4.13,
- -3.43,
- -2.72,
- -1.7,
- -1.18,
- -0.72,
- -0.85,
- -0.37,
- -0.19,
- -0.66,
- -0.94,
- -0.8,
- 0.24,
- -1.26,
- 0.06,
- 0.27,
- -0.11,
- -0.39,
- 0.4,
- 0.55,
- 0.85,
- 0.03,
- 0.46,
- -0.17,
- -0.84,
- 0.32,
- -0.09,
- -0.71,
- -0.31,
- -1.48,
- -1.22,
- -2.08,
- -0.23,
- -1.69,
- -1.1,
- -0.69,
- -0.39,
- -0.76,
- -0.66,
- -3.55,
- -4.56,
- -4.69,
- -5.53,
- -6.54,
- -7.27,
- -7.59,
- -7.32,
- -6.57,
- -4.97,
- -3.5,
- -2.55,
- -2.11,
- -1.81,
- -2.04,
- -1.77,
- -2.18,
- -2.25,
- -2.16,
- -1.65,
- -1.19,
- -0.69,
- 0.33,
- 1.11,
- 1.8,
- 2.48,
- 2.97,
- 3.01,
- 3.11,
- 2.98,
- 3.16,
- 3.46,
- 3.61,
- 3.27,
- 2.75,
- 2.1,
- -0.5,
- -2.82,
- -2.63,
- -2.56,
- -2.41,
- -2.1,
- -0.6,
- -0.05,
- -0.66,
- -0.25,
- -0.68,
- -1.63,
- -2.11,
- -2.96,
- -4.2,
- -4.84,
- -5.25,
- -5.57,
- -6.21,
- -6.1,
- -6.63,
- -6.4,
- -7.39,
- -8.82,
- -8.49,
- -8.0,
- -8.08,
- -7.9,
- -7.53,
- -7.65,
- -7.43,
- -7.08,
- -6.83,
- -6.52,
- -5.94,
- -5.88,
- -5.22,
- -5.19,
- -5.41,
- -5.49,
- -5.41,
- -4.78,
- -3.97,
- -0.63,
- -3.88,
- -3.69,
- 1.24,
- -1.55,
- -2.96,
- -2.27,
- -2.36,
- -2.37,
- -1.45,
- -1.8,
- -2.31,
- -2.82,
- -4.41,
- -5.3,
- -5.1,
- -4.85,
- -5.41,
- -5.72,
- -5.79,
- -5.57,
- -5.0,
- -5.63,
- -4.88,
- -3.7,
- -4.52,
- -5.68,
- -4.08,
- -1.72,
- -0.13,
- -3.46,
- -1.93,
- -2.51,
- -4.03,
- -4.21,
- -5.54,
- -5.69,
- -6.04,
- -5.88,
- -6.27,
- -5.23,
- -3.93,
- -6.13,
- -5.97,
- -6.15,
- -6.43,
- -6.59,
- -7.18,
- -7.18,
- -7.29,
- -7.15,
- -6.74,
- -6.41,
- -6.05,
- -5.84,
- -5.63,
- -5.23,
- -4.79,
- -4.35,
- -3.87,
- -3.21,
- -2.92,
- -2.31,
- -2.04,
- -3.08,
- -4.27,
- -4.06,
- -1.36,
- 0.75,
- 0.59,
- -0.66,
- -0.54,
- -0.64,
- -1.12,
- -1.16,
- -0.71,
- -0.17,
- 0.31,
- 1.32,
- 1.59,
- 1.87,
- 2.02,
- 2.32,
- 1.93,
- 0.34,
- -1.79,
- -1.94,
- -1.79,
- -0.36,
- -2.8,
- -2.18,
- -2.86,
- -2.27,
- -3.38,
- -4.38,
- -4.99,
- -4.5,
- -5.73,
- -5.87,
- -5.69,
- -5.16,
- -5.34,
- -5.31,
- -4.87,
- -4.2,
- -3.68,
- -3.44,
- -3.21,
- -3.44,
- -3.8,
- -4.27,
- -4.6,
- -4.78,
- -4.82,
- -5.24,
- -5.41,
- -5.51,
- -5.83,
- -5.87,
- -5.51,
- -5.05,
- -5.2,
- -5.52,
- -5.4,
- -5.83,
- -5.34,
- -5.18,
- -5.38,
- -5.16,
- -4.79,
- -4.22,
- -4.39,
- -3.95,
- -3.88,
- -4.04,
- -3.99,
- -3.85,
- -3.87,
- -3.5,
- -2.99,
- -3.38,
- -4.41,
- -4.86,
- -6.08,
- -6.41,
- -6.91,
- -6.26,
- -6.16,
- -5.23,
- -4.49,
- -4.29,
- -3.33,
- -3.47,
- -3.71,
- -3.71,
- -4.17,
- -3.6,
- -3.07,
- -3.19,
- -3.36,
- -2.4,
- -2.36,
- 1.22,
- -2.94,
- -0.79,
- 0.04,
- -0.37,
- -0.86,
- -0.5,
- -0.86,
- -0.74,
- -1.02,
- -0.97,
- -0.58,
- -0.24,
- 0.04,
- -0.34,
- -0.38,
- 0.16,
- 0.09,
- -0.05,
- -0.69,
- -0.74,
- -0.28,
- 0.26,
- 0.5,
- 0.15,
- 0.62,
- 0.13,
- 0.66,
- 0.24,
- -0.33,
- -0.08,
- -0.62,
- 0.23,
- 0.99,
- -0.35,
- -2.78,
- -3.11,
- -1.61,
- -1.46,
- -4.56,
- -2.99,
- -1.75,
- -4.0,
- -6.04,
- -6.38,
- -6.53,
- -6.85,
- -7.56,
- -7.94,
- -8.6,
- -9.2,
- -9.21,
- -8.95,
- -8.82,
- -8.86,
- -8.63,
- -8.78,
- -9.02,
- -9.29,
- -9.39,
- -9.22,
- -9.2,
- -8.94,
- -9.06,
- -8.48,
- -8.41,
- -8.17,
- -8.27,
- -8.25,
- -8.04,
- -8.06,
- -7.57,
- -7.36,
- -7.04,
- -6.6,
- -6.33,
- -6.12,
- -5.76,
- -5.82,
- -5.31,
- -4.7,
- -4.1,
- -3.25,
- -2.51,
- -2.1,
- -1.83,
- -1.37,
- -0.65,
- -0.15,
- -0.36,
- -0.51,
- -0.32,
- 0.23,
- -1.1,
- 0.09,
- 0.22,
- -0.7,
- -0.26,
- 0.31,
- -0.19,
- 0.4,
- -0.33,
- -0.24,
- -0.37,
- -0.67,
- -0.82,
- -0.2,
- -1.55,
- -2.62,
- -1.27,
- -1.04,
- 0.05,
- -2.0,
- -1.24,
- -0.83,
- -1.35,
- -0.66,
- -0.14,
- -0.48,
- -3.19,
- -3.43,
- -4.05,
- -3.76,
- -4.66,
- -5.15,
- -6.44,
- -7.83,
- -7.18,
- -5.72,
- -3.57,
- -2.1,
- -1.83,
- -1.43,
- -1.78,
- -1.8,
- -2.26,
- -2.85,
- -3.12,
- -1.84,
- -0.85,
- 0.05,
- 0.1,
- 0.46,
- 1.31,
- 2.25,
- 2.72,
- 3.1,
- 3.11,
- 3.25,
- 3.85,
- 4.54,
- 5.1,
- 4.94,
- 3.94,
- 2.54,
- 0.32,
- -2.82,
- -3.53,
- -3.33,
- -3.29,
- -2.51,
- -1.49,
- -0.91,
- -1.46,
- -1.06,
- -1.62,
- -1.91,
- -3.0,
- -4.05,
- -4.86,
- -5.52,
- -5.38,
- -5.11,
- -6.26,
- -6.43,
- -7.09,
- -7.14,
- -8.33,
- -8.97,
- -8.92,
- -8.44,
- -8.56,
- -8.86,
- -8.21,
- -7.76,
- -7.85,
- -7.17,
- -6.55,
- -5.99,
- -5.83,
- -5.94,
- -5.21,
- -4.8,
- -5.46,
- -5.06,
- -5.49,
- -5.02,
- -4.85,
- -4.73,
- -4.02,
- -3.95,
- -4.97,
- -4.23,
- -2.44,
- -1.3,
- -1.42,
- -1.13,
- -0.54,
- 1.19,
- -1.33,
- -3.14,
- -5.67,
- -5.7,
- -5.25,
- -5.71,
- -6.07,
- -6.45,
- -6.75,
- -6.38,
- -5.25,
- -6.31,
- -6.33,
- -5.23,
- -5.57,
- -5.93,
- -6.09,
- -6.35,
- -6.91,
- -7.49,
- -3.63,
- -3.32,
- -4.32,
- -6.0,
- -6.46,
- -6.51,
- -6.69,
- -6.58,
- -6.37,
- -5.9,
- -7.49,
- -5.8,
- -6.48,
- -6.82,
- -6.78,
- -6.48,
- -6.51,
- -6.87,
- -7.22,
- -7.25,
- -6.92,
- -6.73,
- -6.35,
- -6.18,
- -6.12,
- -5.65,
- -5.3,
- -4.84,
- -4.45,
- -4.25,
- -3.64,
- -3.3,
- -3.11,
- -3.61,
- -4.26,
- -4.75,
- -4.19,
- -3.09,
- -0.73,
- -1.29,
- -0.9,
- -0.54,
- -0.92,
- -0.44,
- -0.22,
- -0.62,
- -1.05,
- 0.0,
- 1.52,
- 2.46,
- 3.27,
- 2.89,
- 1.85,
- 0.66,
- -0.49,
- -0.77,
- -0.19,
- 0.12,
- -1.31,
- -1.73,
- -1.53,
- -2.22,
- -3.16,
- -3.69,
- -4.15,
- -4.61,
- -4.72,
- -4.67,
- -4.38,
- -4.19,
- -4.27,
- -4.14,
- -4.38,
- -4.04,
- -3.47,
- -3.0,
- -3.01,
- -3.23,
- -3.1,
- -3.34,
- -3.81,
- -4.04,
- -3.85,
- -4.44,
- -4.99,
- -5.01,
- -5.05,
- -4.92,
- -4.74,
- -4.58,
- -4.43,
- -5.39,
- -5.4,
- -5.61,
- -5.52,
- -4.97,
- -4.52,
- -4.25,
- -4.94,
- -4.43,
- -4.36,
- -4.26,
- -3.89,
- -4.05,
- -4.12,
- -4.23,
- -4.26,
- -3.74,
- -4.12,
- -4.09,
- -4.84,
- -5.36,
- -6.07,
- -6.2,
- -6.69,
- -6.27,
- -6.01,
- -5.6,
- -5.26,
- -4.42,
- -3.73,
- -4.15,
- -4.16,
- -4.06,
- -4.26,
- -3.86,
- -3.55,
- -3.37,
- -3.72,
- -3.14,
- -2.78,
- -1.41,
- -2.03,
- -0.13,
- -0.81,
- 0.07,
- -0.36,
- -1.18,
- -0.92,
- -1.48,
- -1.14,
- -1.11,
- -0.8,
- -0.53,
- -0.59,
- -0.7,
- 0.28,
- 0.02,
- 0.19,
- -0.38,
- -0.53,
- -0.89,
- 0.02,
- 0.24,
- 0.47,
- 0.43,
- 0.33,
- -0.17,
- 0.53,
- 0.65,
- 0.67,
- 0.05,
- -1.29,
- -0.06,
- 1.28,
- -0.24,
- -7.54,
- -4.81,
- -3.77,
- -1.04,
- -2.82,
- -2.13,
- -4.05,
- -6.41,
- -6.4,
- -6.55,
- -6.59,
- -6.77,
- -7.39,
- -7.99,
- -8.19,
- -8.94,
- -9.06,
- -8.85,
- -8.76,
- -8.66,
- -8.55,
- -8.72,
- -8.81,
- -9.31,
- -9.53,
- -9.33,
- -9.32,
- -9.26,
- -9.02,
- -8.7,
- -8.86,
- -8.46,
- -8.81,
- -8.85,
- -8.54,
- -8.09,
- -7.84,
- -7.53,
- -7.26,
- -7.03,
- -6.67,
- -6.45,
- -6.22,
- -6.52,
- -6.06,
- -5.58,
- -4.88,
- -4.1,
- -3.46,
- -2.99,
- -2.58,
- -1.78,
- -1.27,
- -0.33,
- 0.27,
- 0.53,
- 0.28,
- -1.51,
- -1.03,
- 0.17,
- 1.59,
- -0.31,
- 0.09,
- 0.54,
- -0.8,
- -2.39,
- -2.11,
- -1.36,
- 0.13,
- 0.0,
- -1.44,
- -1.09,
- -1.47,
- -1.64,
- -1.98,
- 0.7,
- -0.06,
- -0.86,
- -2.08,
- -1.07,
- -1.15,
- -1.04,
- -1.42,
- 0.03,
- -2.82,
- -3.1,
- -2.91,
- -1.72,
- -1.5,
- -1.44,
- -1.15,
- -1.92,
- -5.03,
- -4.99,
- -3.76,
- -1.75,
- -1.19,
- -1.41,
- -1.36,
- -2.14,
- -2.72,
- -3.34,
- -4.27,
- -3.43,
- -2.34,
- -1.52,
- -1.44,
- -0.9,
- -0.72,
- -0.99,
- -0.72,
- -0.24,
- -0.72,
- 0.86,
- 2.0,
- 3.23,
- 4.3,
- 4.42,
- 3.83,
- 2.5,
- -0.22,
- -3.16,
- -3.76,
- -3.13,
- -3.23,
- -2.88,
- -2.42,
- -2.5,
- -2.08,
- -1.31,
- -2.0,
- -3.0,
- -3.88,
- -5.08,
- -5.84,
- -6.08,
- -5.87,
- -6.62,
- -7.61,
- -8.94,
- -8.84,
- -10.04,
- -9.0,
- -8.88,
- -8.92,
- -8.82,
- -8.72,
- -8.68,
- -8.37,
- -7.99,
- -7.7,
- -7.34,
- -6.7,
- -6.38,
- -5.77,
- -5.02,
- -4.53,
- -4.28,
- -4.69,
- -4.49,
- -5.16,
- -5.12,
- -4.85,
- -4.5,
- -3.62,
- -3.45,
- -3.95,
- -3.04,
- -1.57,
- -0.54,
- -0.19,
- -0.3,
- 0.34,
- 1.3,
- 0.19,
- 4.2,
- -3.01,
- -4.2,
- -5.57,
- -6.45,
- -6.01,
- -6.62,
- -6.59,
- -4.53,
- -0.18,
- -4.79,
- -5.18,
- -5.38,
- -5.67,
- -5.73,
- -5.53,
- -5.79,
- -6.1,
- -5.39,
- -4.47,
- -4.82,
- -5.92,
- -6.91,
- -6.16,
- -6.31,
- -6.7,
- -6.64,
- -6.02,
- -5.77,
- -5.72,
- -6.1,
- -6.62,
- -6.83,
- -6.94,
- -7.18,
- -7.34,
- -7.11,
- -7.26,
- -7.16,
- -7.05,
- -6.88,
- -6.63,
- -6.52,
- -6.27,
- -6.08,
- -5.63,
- -5.37,
- -4.82,
- -4.43,
- -4.06,
- -4.41,
- -4.04,
- -4.45,
- -4.17,
- -4.88,
- -5.12,
- -5.64,
- -4.68,
- -3.37,
- -1.4,
- -2.34,
- -1.77,
- -1.43,
- -1.02,
- -0.34,
- -0.08,
- 0.46,
- 1.21,
- 1.88,
- 2.81,
- 1.99,
- 4.0,
- 1.45,
- 0.47,
- 0.44,
- 0.51,
- 0.84,
- 0.03,
- -0.75,
- -1.24,
- -1.11,
- -3.03,
- -2.99,
- -3.4,
- -3.59,
- -3.57,
- -3.3,
- -3.28,
- -3.2,
- -2.96,
- -3.07,
- -3.13,
- -3.46,
- -3.2,
- -2.79,
- -2.42,
- -2.7,
- -2.64,
- -2.35,
- -2.59,
- -2.97,
- -3.06,
- -3.26,
- -3.88,
- -3.84,
- -4.09,
- -4.35,
- -4.54,
- -4.08,
- -4.58,
- -4.95,
- -5.45,
- -5.61,
- -5.01,
- -4.58,
- -4.48,
- -3.98,
- -4.33,
- -4.27,
- -4.44,
- -4.23,
- -3.71,
- -3.86,
- -3.77,
- -4.33,
- -4.48,
- -4.23,
- -4.16,
- -4.96,
- -5.39,
- -5.44,
- -6.01,
- -6.32,
- -6.38,
- -6.58,
- -6.56,
- -5.96,
- -5.15,
- -4.84,
- -4.72,
- -4.48,
- -4.36,
- -4.19,
- -4.46,
- -4.45,
- -4.26,
- -3.79,
- -4.06,
- -3.74,
- -3.34,
- -2.12,
- -0.35,
- -1.69,
- -1.04,
- 0.42,
- 0.18,
- -1.43,
- -0.59,
- -1.52,
- -1.19,
- -1.07,
- -0.83,
- -0.48,
- -0.27,
- -0.27,
- -0.03,
- -0.27,
- -0.15,
- -1.07,
- -0.32,
- -0.54,
- -0.4,
- 0.37,
- 0.73,
- 0.61,
- 0.33,
- -0.37,
- 1.07,
- 0.65,
- 0.89,
- -0.4,
- 0.46,
- 0.86,
- 1.1,
- 0.38,
- -1.46,
- -3.4,
- -2.75,
- -1.42,
- -1.91,
- -0.96,
- -5.87,
- -7.09,
- -6.54,
- -6.76,
- -6.64,
- -6.63,
- -7.27,
- -7.65,
- -7.91,
- -8.29,
- -8.93,
- -8.82,
- -8.62,
- -8.58,
- -8.51,
- -8.69,
- -8.67,
- -9.4,
- -9.12,
- -9.38,
- -9.4,
- -9.1,
- -9.13,
- -9.13,
- -9.2,
- -9.01,
- -9.07,
- -9.35,
- -9.11,
- -8.55,
- -8.1,
- -7.8,
- -7.75,
- -7.58,
- -7.27,
- -7.1,
- -6.88,
- -7.14,
- -6.79,
- -6.29,
- -5.75,
- -4.93,
- -4.21,
- -3.71,
- -3.09,
- -2.19,
- -1.12,
- -0.18,
- 0.64,
- 1.37,
- -0.21,
- -1.6,
- -0.85,
- -0.28,
- 2.04,
- 0.74,
- -0.36,
- 0.06,
- -0.03,
- -1.37,
- -1.86,
- -1.48,
- -1.1,
- -0.56,
- -1.03,
- -1.51,
- -1.05,
- -1.14,
- -0.84,
- -0.6,
- -2.27,
- -1.24,
- -0.99,
- -0.76,
- -1.49,
- -0.94,
- -0.95,
- -0.41,
- -2.79,
- -2.73,
- -2.66,
- -2.38,
- -0.71,
- 0.25,
- 0.74,
- -2.57,
- -1.59,
- -2.82,
- -3.16,
- -1.55,
- -0.89,
- -1.32,
- -1.49,
- -3.19,
- -3.71,
- -4.46,
- -5.56,
- -5.17,
- -4.29,
- -3.83,
- -3.72,
- -4.29,
- -5.01,
- -4.89,
- -4.76,
- -4.47,
- -3.57,
- -2.51,
- -1.3,
- 0.34,
- 1.97,
- 3.67,
- 3.74,
- 1.53,
- -0.81,
- -3.22,
- -3.54,
- -3.14,
- -3.35,
- -2.53,
- -2.16,
- -2.34,
- -3.38,
- -3.09,
- -3.16,
- -3.58,
- -4.73,
- -5.99,
- -6.67,
- -7.35,
- -8.25,
- -8.24,
- -9.09,
- -10.48,
- -10.68,
- -9.25,
- -9.51,
- -9.43,
- -9.33,
- -8.97,
- -8.75,
- -8.42,
- -8.22,
- -7.97,
- -7.05,
- -6.63,
- -6.07,
- -5.79,
- -5.54,
- -5.14,
- -4.23,
- -3.77,
- -3.43,
- -3.63,
- -4.18,
- -4.74,
- -4.4,
- -4.17,
- -4.06,
- -4.15,
- -3.66,
- -2.28,
- -0.43,
- 0.83,
- 0.76,
- 0.04,
- 0.91,
- 5.2,
- -1.19,
- -1.86,
- -4.08,
- -3.65,
- -3.55,
- -3.97,
- -5.82,
- -6.34,
- -5.77,
- -3.88,
- 1.1,
- -3.49,
- -4.85,
- -5.52,
- -6.21,
- -5.87,
- -5.7,
- -5.43,
- -5.46,
- -4.93,
- -4.82,
- -5.36,
- -6.06,
- -6.69,
- -6.34,
- -6.56,
- -6.8,
- -6.48,
- -6.37,
- -6.23,
- -6.48,
- -6.35,
- -6.54,
- -6.94,
- -6.61,
- -7.05,
- -7.54,
- -6.76,
- -6.97,
- -6.84,
- -6.65,
- -6.5,
- -6.73,
- -6.93,
- -6.74,
- -6.48,
- -6.24,
- -5.71,
- -5.55,
- -4.98,
- -4.7,
- -4.52,
- -4.7,
- -4.81,
- -4.78,
- -4.43,
- -4.31,
- -4.85,
- -5.47,
- -5.33,
- -4.23,
- -2.76,
- -2.22,
- -1.79,
- -1.91,
- -0.17,
- 1.15,
- 0.84,
- -0.37,
- 0.89,
- 2.23,
- 1.84,
- 0.63,
- -1.0,
- 0.57,
- 1.68,
- 1.78,
- 2.27,
- 1.57,
- -0.36,
- -1.21,
- -0.88,
- -1.72,
- -2.42,
- -2.52,
- -2.42,
- -2.47,
- -2.52,
- -2.56,
- -2.29,
- -1.81,
- -1.88,
- -2.0,
- -2.16,
- -2.46,
- -2.35,
- -1.87,
- -1.85,
- -1.81,
- -1.62,
- -1.65,
- -1.74,
- -2.05,
- -2.38,
- -2.58,
- -2.71,
- -2.95,
- -3.46,
- -3.69,
- -4.17,
- -4.81,
- -5.1,
- -5.03,
- -4.68,
- -4.4,
- -3.9,
- -3.83,
- -3.38,
- -4.24,
- -4.34,
- -4.45,
- -4.02,
- -3.53,
- -3.72,
- -4.09,
- -4.78,
- -4.85,
- -4.59,
- -4.7,
- -5.64,
- -5.43,
- -5.3,
- -5.75,
- -6.28,
- -6.29,
- -6.51,
- -6.75,
- -6.24,
- -5.57,
- -5.32,
- -5.28,
- -4.2,
- -4.17,
- -4.43,
- -4.74,
- -4.86,
- -4.73,
- -4.34,
- -4.55,
- -4.08,
- -3.53,
- -2.27,
- -1.09,
- 1.07,
- -0.32,
- -0.92,
- 0.02,
- -0.11,
- -0.94,
- -0.72,
- -1.79,
- -1.4,
- -1.23,
- -1.12,
- -0.6,
- -0.62,
- -0.29,
- -0.85,
- -0.9,
- -0.72,
- -0.71,
- -0.69,
- 0.03,
- 0.72,
- 0.86,
- 0.69,
- 0.26,
- -0.22,
- 0.41,
- 0.02,
- 0.55,
- 0.04,
- -0.04,
- 1.2,
- 0.65,
- -1.53,
- -3.77,
- -4.16,
- 0.51,
- -2.29,
- -0.54,
- -5.61,
- -6.45,
- -5.94,
- -6.49,
- -6.44,
- -6.75,
- -6.56,
- -6.97,
- -7.12,
- -7.69,
- -8.4,
- -8.6,
- -8.4,
- -8.26,
- -8.18,
- -8.15,
- -8.48,
- -8.45,
- -9.0,
- -8.87,
- -9.28,
- -9.31,
- -9.18,
- -9.16,
- -8.94,
- -9.19,
- -9.05,
- -9.12,
- -9.31,
- -9.02,
- -8.65,
- -8.4,
- -8.29,
- -8.23,
- -8.09,
- -7.96,
- -7.81,
- -7.34,
- -7.52,
- -7.49,
- -6.88,
- -6.56,
- -5.59,
- -4.95,
- -4.32,
- -3.63,
- -2.51,
- -0.96,
- 0.49,
- 0.73,
- 1.9,
- -2.55,
- -1.3,
- 0.53,
- 0.79,
- 0.66,
- 0.04,
- -0.32,
- 0.42,
- 0.52,
- -0.17,
- -0.76,
- -1.52,
- -1.32,
- -0.88,
- -1.7,
- -2.02,
- -1.01,
- -0.74,
- -1.27,
- -0.28,
- -1.44,
- -1.19,
- 1.19,
- -0.47,
- -0.29,
- -0.94,
- 0.07,
- -0.09,
- -1.53,
- -2.44,
- -2.56,
- -2.11,
- -1.74,
- -1.08,
- -0.82,
- -0.43,
- -0.43,
- -0.37,
- -1.91,
- -1.2,
- -0.55,
- -1.71,
- -2.22,
- -4.3,
- -4.84,
- -5.25,
- -5.76,
- -6.57,
- -6.14,
- -5.67,
- -5.66,
- -5.41,
- -6.06,
- -6.06,
- -6.0,
- -5.78,
- -5.14,
- -4.86,
- -4.96,
- -4.61,
- -4.61,
- -4.63,
- -2.41,
- -0.78,
- -0.99,
- -4.34,
- -3.58,
- -2.91,
- -2.52,
- -2.3,
- -2.89,
- -4.41,
- -3.98,
- -4.23,
- -3.92,
- -3.89,
- -5.28,
- -5.84,
- -8.06,
- -8.17,
- -9.85,
- -9.34,
- -11.34,
- -10.58,
- -10.54,
- -10.43,
- -9.74,
- -9.58,
- -9.3,
- -8.74,
- -8.41,
- -8.14,
- -7.94,
- -7.51,
- -7.06,
- -6.58,
- -5.49,
- -4.45,
- -4.04,
- -3.75,
- -4.02,
- -4.06,
- -2.95,
- -2.77,
- -3.14,
- -3.61,
- -3.05,
- -3.36,
- -3.81,
- -3.22,
- -2.25,
- -1.45,
- 1.05,
- 3.81,
- -1.91,
- -1.6,
- 1.71,
- 0.63,
- -1.59,
- -2.56,
- -4.35,
- -4.28,
- -5.26,
- -4.87,
- -5.75,
- -6.4,
- -5.8,
- -3.6,
- -0.07,
- -3.59,
- -4.83,
- -8.98,
- -6.97,
- -6.09,
- -5.95,
- -6.17,
- -6.19,
- -6.01,
- -6.02,
- -6.62,
- -6.61,
- -6.8,
- -6.93,
- -7.12,
- -6.83,
- -6.48,
- -6.99,
- -6.91,
- -5.94,
- -5.56,
- -5.35,
- -5.42,
- -6.77,
- -8.59,
- -6.24,
- -6.22,
- -6.98,
- -6.88,
- -6.57,
- -6.8,
- -6.99,
- -6.96,
- -7.32,
- -6.64,
- -6.37,
- -6.1,
- -5.82,
- -5.21,
- -4.96,
- -5.08,
- -4.78,
- -5.07,
- -5.06,
- -4.97,
- -5.75,
- -3.9,
- -5.53,
- -5.74,
- -6.4,
- -6.54,
- -6.25,
- -5.65,
- -6.5,
- -6.2,
- -6.98,
- -7.68,
- -6.75,
- -7.91,
- -8.12,
- -8.81,
- -7.42,
- -5.48,
- -2.71,
- 1.55,
- 2.82,
- 4.02,
- 2.23,
- 0.76,
- -0.88,
- -0.37,
- -1.2,
- -1.47,
- -1.7,
- -1.41,
- -1.38,
- -1.5,
- -1.62,
- -1.55,
- -0.97,
- -0.92,
- -0.93,
- -0.94,
- -1.16,
- -1.49,
- -1.72,
- -1.32,
- -1.14,
- -0.79,
- -0.6,
- -0.9,
- -1.2,
- -1.93,
- -1.66,
- -1.94,
- -2.43,
- -2.75,
- -3.14,
- -4.13,
- -4.21,
- -4.65,
- -4.6,
- -4.26,
- -4.07,
- -3.86,
- -3.33,
- -3.62,
- -3.92,
- -3.96,
- -3.85,
- -3.58,
- -3.4,
- -3.67,
- -4.09,
- -4.66,
- -4.93,
- -5.7,
- -5.84,
- -5.93,
- -5.36,
- -5.17,
- -5.42,
- -5.61,
- -5.92,
- -6.14,
- -7.05,
- -6.25,
- -6.0,
- -5.35,
- -4.86,
- -4.67,
- -5.03,
- -5.14,
- -5.02,
- -5.06,
- -5.02,
- -4.75,
- -4.79,
- -4.43,
- -4.02,
- -3.4,
- -2.77,
- 0.4,
- -1.1,
- -1.36,
- -0.36,
- 0.52,
- 0.93,
- 0.63,
- -0.42,
- 0.04,
- -1.88,
- -1.63,
- -0.94,
- -1.19,
- -1.09,
- -0.01,
- -0.46,
- -0.63,
- -1.19,
- -0.82,
- 0.61,
- 0.46,
- 1.2,
- 0.56,
- 0.44,
- 0.6,
- 0.77,
- 0.44,
- 1.23,
- 0.22,
- 1.47,
- -0.97,
- -0.52,
- -0.23,
- -3.1,
- -1.58,
- -1.27,
- -0.71,
- -0.51,
- -5.74,
- -5.94,
- -5.41,
- -6.48,
- -5.84,
- -6.15,
- -6.72,
- -6.71,
- -6.95,
- -7.31,
- -7.51,
- -8.19,
- -7.81,
- -7.8,
- -7.82,
- -7.77,
- -8.06,
- -8.43,
- -8.22,
- -8.35,
- -8.91,
- -9.25,
- -8.97,
- -9.25,
- -9.02,
- -9.28,
- -9.45,
- -9.27,
- -9.06,
- -9.08,
- -8.88,
- -8.72,
- -8.59,
- -8.47,
- -8.6,
- -8.54,
- -8.23,
- -7.95,
- -7.95,
- -7.7,
- -7.13,
- -6.96,
- -6.26,
- -5.55,
- -5.18,
- -4.45,
- -3.25,
- -1.33,
- -0.03,
- 1.15,
- 1.24,
- -0.64,
- -0.2,
- 0.87,
- 1.81,
- 0.93,
- 0.24,
- 0.0,
- -0.52,
- -0.43,
- 1.15,
- 0.77,
- -0.67,
- -0.2,
- -0.29,
- -0.63,
- -1.15,
- 0.22,
- 0.13,
- -0.12,
- -0.03,
- 0.76,
- -0.02,
- -0.18,
- -0.89,
- -0.22,
- 0.38,
- 0.39,
- 0.21,
- -1.32,
- -2.35,
- -2.34,
- -1.91,
- -3.0,
- -6.28,
- -5.43,
- -0.92,
- -1.34,
- 0.81,
- -0.61,
- -0.88,
- -0.96,
- -2.17,
- -3.04,
- -5.06,
- -5.86,
- -6.4,
- -6.73,
- -7.04,
- -7.09,
- -6.8,
- -6.28,
- -6.32,
- -6.88,
- -6.86,
- -6.66,
- -6.63,
- -6.63,
- -6.78,
- -7.23,
- -7.86,
- -9.13,
- -8.99,
- -7.27,
- -5.31,
- -5.04,
- -5.55,
- -3.17,
- -2.82,
- -2.12,
- -2.55,
- -4.36,
- -4.34,
- -4.51,
- -6.81,
- -7.26,
- -7.76,
- -8.37,
- -8.89,
- -9.27,
- -8.63,
- -10.69,
- -10.67,
- -10.67,
- -11.25,
- -10.82,
- -10.45,
- -9.99,
- -9.65,
- -9.28,
- -8.79,
- -8.46,
- -8.05,
- -7.73,
- -7.17,
- -6.68,
- -6.03,
- -4.91,
- -4.07,
- -3.02,
- -2.7,
- -2.71,
- -2.74,
- -2.96,
- -2.02,
- -2.32,
- -2.37,
- -1.67,
- -2.33,
- -2.3,
- -1.81,
- -0.85,
- 1.31,
- 7.49,
- -1.93,
- -2.22,
- -3.43,
- -1.65,
- -2.22,
- -1.43,
- -1.97,
- -3.91,
- -3.71,
- -6.52,
- -5.82,
- -4.88,
- -5.91,
- -5.69,
- -4.17,
- 1.25,
- -4.32,
- -4.33,
- -4.84,
- -4.6,
- -5.33,
- -6.19,
- -6.5,
- -6.56,
- -5.94,
- -6.15,
- -6.17,
- -6.28,
- -6.99,
- -7.02,
- -7.04,
- -6.7,
- -6.72,
- -6.88,
- -7.02,
- -7.76,
- -7.57,
- -6.89,
- -6.93,
- -6.36,
- -3.44,
- -3.89,
- -6.88,
- -6.53,
- -7.08,
- -7.06,
- -7.03,
- -6.79,
- -6.98,
- -6.82,
- -5.92,
- -5.55,
- -6.14,
- -5.82,
- -5.61,
- -4.95,
- -5.23,
- -5.36,
- -5.61,
- -5.38,
- -5.6,
- -5.87,
- -5.9,
- -6.72,
- -7.35,
- -7.95,
- -8.14,
- -7.82,
- -8.58,
- -8.4,
- -8.75,
- -9.7,
- -9.44,
- -9.19,
- -9.6,
- -9.72,
- -8.33,
- -8.76,
- -7.5,
- -8.15,
- -8.08,
- -2.37,
- 1.28,
- 2.24,
- 1.5,
- 0.17,
- 0.18,
- -0.3,
- -0.46,
- -0.15,
- -0.32,
- -0.1,
- -0.19,
- -0.3,
- -0.43,
- -0.48,
- 0.12,
- 0.09,
- 0.08,
- -0.16,
- -0.24,
- -0.12,
- 0.13,
- 0.23,
- 0.49,
- 0.64,
- 0.32,
- -0.96,
- -1.01,
- -1.06,
- -1.31,
- -1.54,
- -1.81,
- -2.66,
- -3.1,
- -3.41,
- -3.5,
- -3.53,
- -3.22,
- -3.06,
- -3.02,
- -3.64,
- -4.3,
- -3.95,
- -3.65,
- -3.13,
- -3.24,
- -3.08,
- -3.33,
- -4.19,
- -4.36,
- -4.86,
- -5.92,
- -5.88,
- -5.92,
- -5.07,
- -4.75,
- -4.96,
- -5.15,
- -5.57,
- -6.37,
- -6.65,
- -6.38,
- -6.32,
- -5.4,
- -5.36,
- -5.13,
- -5.31,
- -5.47,
- -5.28,
- -5.57,
- -5.25,
- -5.47,
- -5.02,
- -4.96,
- -4.97,
- -4.87,
- -3.98,
- -4.93,
- 0.0,
- 0.5,
- -0.44,
- 0.11,
- 1.26,
- 0.09,
- 0.5,
- 0.1,
- 0.67,
- -1.96,
- -0.84,
- -1.78,
- -1.68,
- -0.81,
- -0.78,
- -0.02,
- -1.28,
- 1.0,
- 0.14,
- 0.93,
- -0.12,
- 1.75,
- 1.58,
- 0.43,
- -0.08,
- -1.63,
- -0.26,
- -0.11,
- -0.11,
- -1.07,
- -0.49,
- -0.51,
- -3.0,
- -1.12,
- -2.01,
- 0.01,
- 0.5,
- -4.64,
- -5.32,
- -5.18,
- -5.23,
- -5.47,
- -5.63,
- -6.38,
- -6.46,
- -6.68,
- -7.29,
- -7.07,
- -7.11,
- -6.98,
- -7.22,
- -7.3,
- -7.24,
- -7.68,
- -7.86,
- -7.98,
- -7.59,
- -8.52,
- -9.11,
- -8.98,
- -9.05,
- -8.81,
- -8.96,
- -9.37,
- -9.17,
- -8.93,
- -9.35,
- -9.16,
- -8.79,
- -8.58,
- -8.82,
- -9.03,
- -8.89,
- -8.67,
- -8.2,
- -8.02,
- -7.77,
- -7.58,
- -7.12,
- -6.8,
- -6.4,
- -6.02,
- -5.39,
- -4.02,
- -2.54,
- -1.78,
- -0.73,
- 0.4,
- -2.71,
- -0.8,
- 1.14,
- 1.65,
- -1.16,
- -0.86,
- 0.18,
- 0.62,
- -1.1,
- -0.72,
- -0.15,
- 0.37,
- 1.22,
- 0.87,
- -0.83,
- -0.7,
- -0.41,
- -0.02,
- -0.16,
- 0.86,
- 0.61,
- 0.75,
- -0.39,
- 0.35,
- 1.23,
- 0.3,
- -0.32,
- 0.13,
- -1.96,
- -2.55,
- -2.45,
- -2.01,
- -3.73,
- -2.14,
- -1.77,
- -1.99,
- -2.29,
- 2.5,
- -0.62,
- -0.61,
- -1.45,
- -2.68,
- -4.53,
- -6.05,
- -6.52,
- -6.7,
- -7.1,
- -7.25,
- -6.86,
- -7.32,
- -6.97,
- -7.07,
- -7.12,
- -7.52,
- -7.72,
- -7.74,
- -8.06,
- -8.29,
- -8.79,
- -9.01,
- -9.93,
- -10.24,
- -10.79,
- -10.39,
- -8.94,
- -6.87,
- -5.05,
- -2.01,
- -2.03,
- -2.53,
- -4.79,
- -6.08,
- -6.74,
- -8.35,
- -9.05,
- -9.75,
- -9.49,
- -11.38,
- -10.4,
- -10.95,
- -10.47,
- -10.43,
- -11.48,
- -11.2,
- -11.13,
- -10.22,
- -9.77,
- -9.54,
- -9.26,
- -8.74,
- -8.49,
- -8.08,
- -7.55,
- -7.0,
- -6.35,
- -5.62,
- -4.53,
- -3.96,
- -3.22,
- -2.23,
- -1.58,
- -1.48,
- -1.36,
- -1.22,
- -0.8,
- -0.92,
- -0.72,
- -1.3,
- -1.22,
- -0.87,
- 0.85,
- 4.31,
- -0.83,
- -2.62,
- -2.91,
- -2.76,
- -1.92,
- -1.75,
- -1.93,
- -2.47,
- -2.28,
- -3.55,
- -2.91,
- -4.45,
- -4.39,
- -4.83,
- -5.43,
- -2.86,
- 5.02,
- -3.25,
- -3.29,
- -2.78,
- -3.6,
- -4.25,
- -5.6,
- -5.83,
- -5.65,
- -5.62,
- -4.93,
- -5.64,
- -6.52,
- -7.21,
- -6.69,
- -6.76,
- -7.09,
- -7.57,
- -7.58,
- -8.05,
- -8.18,
- -7.92,
- -8.08,
- -8.42,
- -8.43,
- -8.2,
- -6.01,
- -6.18,
- -7.24,
- -6.94,
- -6.85,
- -6.71,
- -6.42,
- -5.98,
- -6.12,
- -5.93,
- -5.67,
- -4.88,
- -6.12,
- -5.77,
- -5.41,
- -4.94,
- -5.65,
- -6.13,
- -6.44,
- -6.11,
- -6.91,
- -7.71,
- -7.67,
- -7.94,
- -9.07,
- -9.41,
- -10.39,
- -10.17,
- -10.14,
- -10.24,
- -10.44,
- -10.25,
- -9.81,
- -9.53,
- -8.74,
- -8.65,
- -8.28,
- -7.67,
- -6.95,
- -5.93,
- -6.23,
- -5.89,
- -3.87,
- -2.93,
- -0.04,
- 0.93,
- 0.75,
- 1.45,
- 1.52,
- 0.85,
- 1.28,
- 1.25,
- 0.93,
- 0.63,
- 0.72,
- 0.38,
- 0.33,
- 0.38,
- 0.44,
- 0.19,
- 0.61,
- 0.9,
- 1.28,
- 1.78,
- 1.72,
- 1.27,
- 0.81,
- 0.83,
- 0.37,
- -0.16,
- -0.42,
- -0.93,
- -1.66,
- -2.03,
- -1.95,
- -2.24,
- -2.39,
- -2.54,
- -2.95,
- -3.14,
- -3.89,
- -4.02,
- -3.79,
- -2.97,
- -3.12,
- -2.73,
- -3.02,
- -3.14,
- -3.97,
- -3.88,
- -4.91,
- -5.45,
- -5.43,
- -4.95,
- -4.69,
- -4.57,
- -4.84,
- -4.8,
- -5.18,
- -6.09,
- -6.04,
- -6.12,
- -5.85,
- -5.45,
- -5.49,
- -5.36,
- -5.17,
- -5.25,
- -5.47,
- -5.49,
- -5.46,
- -5.59,
- -5.3,
- -5.83,
- -6.0,
- -5.69,
- -5.44,
- -5.28,
- -6.54,
- -2.89,
- 0.53,
- -0.73,
- -0.31,
- -1.32,
- -1.18,
- 0.06,
- -0.56,
- 1.42,
- 0.26,
- -1.92,
- -1.83,
- -1.48,
- -0.8,
- -0.22,
- 0.33,
- 0.8,
- 0.58,
- 0.43,
- 1.44,
- 1.14,
- 1.27,
- -0.06,
- -1.5,
- -1.56,
- -0.96,
- 0.63,
- 1.28,
- -1.13,
- -1.0,
- -0.02,
- -2.54,
- -1.67,
- -0.49,
- -0.23,
- 1.07,
- -3.51,
- -4.54,
- -4.2,
- -4.79,
- -5.08,
- -4.85,
- -5.94,
- -6.06,
- -6.33,
- -7.22,
- -7.31,
- -6.69,
- -6.72,
- -6.77,
- -6.92,
- -6.3,
- -6.78,
- -7.11,
- -7.14,
- -7.74,
- -7.7,
- -8.55,
- -8.78,
- -8.29,
- -8.83,
- -9.18,
- -9.4,
- -9.03,
- -9.17,
- -9.35,
- -8.99,
- -8.64,
- -8.46,
- -8.95,
- -9.13,
- -9.14,
- -8.6,
- -8.26,
- -8.31,
- -8.08,
- -7.73,
- -7.43,
- -7.37,
- -6.97,
- -6.79,
- -6.33,
- -4.4,
- -3.58,
- -3.05,
- -3.68,
- 0.96,
- -1.23,
- -0.52,
- 0.82,
- -1.46,
- -1.47,
- -1.63,
- -1.69,
- -1.89,
- -0.86,
- -1.45,
- -0.16,
- 0.03,
- 0.19,
- 0.16,
- 1.99,
- -1.34,
- -0.14,
- 0.02,
- 1.38,
- 0.84,
- 0.54,
- 0.92,
- 0.66,
- 0.61,
- -0.22,
- -0.55,
- -1.16,
- -1.12,
- -1.84,
- -2.6,
- -2.91,
- -1.93,
- -2.4,
- -2.72,
- -2.56,
- -2.54,
- -1.29,
- 3.03,
- -0.64,
- -0.6,
- -2.13,
- -3.36,
- -5.18,
- -5.93,
- -6.45,
- -6.53,
- -7.03,
- -7.82,
- -7.46,
- -7.61,
- -7.69,
- -8.13,
- -8.33,
- -8.53,
- -8.99,
- -9.51,
- -9.39,
- -9.59,
- -9.67,
- -9.59,
- -10.15,
- -10.22,
- -10.29,
- -10.0,
- -9.37,
- -8.36,
- -7.66,
- -6.68,
- -5.56,
- -6.44,
- -6.91,
- -8.08,
- -8.69,
- -9.33,
- -9.88,
- -10.4,
- -12.41,
- -11.4,
- -11.01,
- -10.47,
- -9.86,
- -10.38,
- -11.43,
- -11.74,
- -10.76,
- -9.85,
- -9.59,
- -9.43,
- -9.21,
- -8.81,
- -8.48,
- -8.05,
- -7.38,
- -6.72,
- -6.29,
- -5.65,
- -4.96,
- -4.44,
- -3.66,
- -2.83,
- -1.93,
- -0.76,
- -0.31,
- 0.02,
- -0.19,
- 0.11,
- -0.61,
- -1.23,
- -0.87,
- 3.69,
- -2.37,
- 0.58,
- -0.82,
- -1.1,
- -1.56,
- -3.36,
- -2.02,
- -3.13,
- -3.1,
- -3.01,
- -2.78,
- -3.15,
- -2.33,
- -2.6,
- -3.31,
- -2.74,
- -4.48,
- 0.38,
- 4.09,
- -2.58,
- -2.41,
- -2.57,
- -3.56,
- -2.48,
- -4.78,
- -5.72,
- -5.54,
- -5.55,
- -5.4,
- -5.84,
- -6.0,
- -6.43,
- -7.62,
- -8.35,
- -8.52,
- -8.5,
- -8.14,
- -8.45,
- -8.66,
- -8.63,
- -8.97,
- -8.85,
- -8.84,
- -8.36,
- -8.16,
- -7.56,
- -7.4,
- -7.59,
- -7.43,
- -7.23,
- -6.95,
- -6.18,
- -5.48,
- -3.58,
- -1.41,
- -7.91,
- -5.69,
- -5.51,
- -6.17,
- -5.78,
- -6.37,
- -6.63,
- -6.85,
- -7.4,
- -7.97,
- -8.71,
- -8.87,
- -9.32,
- -10.37,
- -10.35,
- -10.56,
- -10.39,
- -10.49,
- -10.53,
- -10.17,
- -9.84,
- -9.8,
- -9.47,
- -8.87,
- -8.54,
- -8.42,
- -7.91,
- -7.31,
- -6.82,
- -6.3,
- -7.2,
- -7.24,
- -7.17,
- -5.3,
- -2.54,
- -1.3,
- 1.15,
- 2.02,
- 2.59,
- 2.57,
- 2.15,
- 1.94,
- 2.04,
- 1.98,
- 1.79,
- 1.28,
- 1.33,
- 1.84,
- 2.88,
- 3.02,
- 2.93,
- 2.65,
- 2.59,
- 2.68,
- 3.08,
- 2.95,
- 2.46,
- 2.4,
- 2.29,
- 0.79,
- 0.39,
- -0.83,
- -1.07,
- -1.75,
- -1.93,
- -2.59,
- -2.28,
- -2.72,
- -3.36,
- -3.33,
- -3.13,
- -3.07,
- -2.52,
- -2.74,
- -2.5,
- -2.56,
- -2.34,
- -3.35,
- -3.56,
- -4.14,
- -4.74,
- -4.81,
- -4.85,
- -4.95,
- -4.82,
- -4.57,
- -4.45,
- -5.32,
- -5.39,
- -5.51,
- -5.37,
- -5.73,
- -5.5,
- -5.77,
- -5.56,
- -4.89,
- -5.2,
- -5.77,
- -5.76,
- -5.46,
- -5.54,
- -5.38,
- -5.77,
- -6.52,
- -6.29,
- -5.57,
- -5.27,
- -5.46,
- -5.38,
- -5.54,
- -2.52,
- 0.53,
- -0.87,
- 0.34,
- -0.05,
- 1.53,
- -0.17,
- 1.0,
- -4.26,
- -1.79,
- -1.56,
- -0.1,
- -0.03,
- 0.46,
- 0.37,
- 0.74,
- 0.58,
- 0.37,
- -0.42,
- 0.4,
- -0.84,
- -1.05,
- -0.05,
- -0.47,
- 0.35,
- 1.36,
- 0.18,
- -1.19,
- -1.77,
- -0.67,
- -1.73,
- -0.35,
- -0.11,
- 1.98,
- -0.68,
- -2.5,
- -3.3,
- -3.93,
- -4.0,
- -3.63,
- -5.42,
- -5.81,
- -6.07,
- -6.71,
- -7.08,
- -6.47,
- -6.47,
- -6.41,
- -6.3,
- -6.33,
- -6.31,
- -6.44,
- -6.75,
- -7.3,
- -7.55,
- -7.74,
- -8.45,
- -8.37,
- -8.67,
- -9.15,
- -9.1,
- -8.94,
- -9.39,
- -9.33,
- -8.76,
- -8.63,
- -8.76,
- -8.88,
- -9.06,
- -8.94,
- -8.76,
- -8.35,
- -8.73,
- -8.44,
- -8.07,
- -7.91,
- -7.83,
- -7.29,
- -7.04,
- -6.76,
- -5.37,
- -4.77,
- -4.81,
- -5.59,
- -2.54,
- -0.93,
- 0.45,
- 0.56,
- -1.39,
- -2.39,
- -2.31,
- -0.58,
- -0.33,
- 0.19,
- -1.04,
- -0.93,
- -0.06,
- 0.78,
- 0.88,
- 0.92,
- 0.24,
- 0.01,
- 0.37,
- 1.92,
- 1.58,
- 1.57,
- 1.1,
- 0.71,
- -0.09,
- -0.82,
- -1.57,
- -1.36,
- -1.75,
- -1.96,
- -2.74,
- -3.15,
- -2.21,
- -2.49,
- -1.73,
- -2.1,
- -1.49,
- -0.34,
- 1.61,
- -0.88,
- -1.0,
- -3.04,
- -4.28,
- -5.04,
- -5.72,
- -5.96,
- -6.95,
- -7.64,
- -7.68,
- -8.08,
- -8.28,
- -8.61,
- -9.27,
- -9.73,
- -10.32,
- -10.88,
- -10.98,
- -11.24,
- -10.97,
- -11.16,
- -10.84,
- -11.15,
- -10.69,
- -11.4,
- -10.72,
- -10.97,
- -10.48,
- -10.25,
- -10.08,
- -9.11,
- -8.55,
- -11.0,
- -9.88,
- -9.78,
- -9.93,
- -10.31,
- -11.39,
- -11.5,
- -10.71,
- -10.99,
- -10.0,
- -8.95,
- -11.01,
- -12.6,
- -12.15,
- -10.71,
- -10.13,
- -9.58,
- -9.58,
- -9.18,
- -8.91,
- -8.55,
- -7.92,
- -7.33,
- -6.74,
- -6.3,
- -5.85,
- -5.2,
- -4.73,
- -3.97,
- -3.29,
- -2.41,
- -1.24,
- 0.17,
- 0.73,
- 0.79,
- 0.65,
- 0.39,
- -0.22,
- -0.29,
- 6.19,
- -0.71,
- -0.24,
- -0.34,
- -0.71,
- 0.15,
- -2.14,
- -0.43,
- -2.62,
- -2.42,
- -2.46,
- -2.75,
- -2.11,
- -2.32,
- -1.43,
- -2.74,
- -3.53,
- -2.83,
- -0.77,
- -3.14,
- -2.67,
- -1.87,
- -2.4,
- -3.06,
- -2.41,
- -5.46,
- -5.42,
- -5.27,
- -5.32,
- -5.52,
- -6.17,
- -6.59,
- -7.05,
- -7.64,
- -8.12,
- -8.87,
- -8.85,
- -8.68,
- -9.01,
- -8.91,
- -9.0,
- -9.4,
- -9.04,
- -8.84,
- -8.32,
- -7.78,
- -7.74,
- -7.72,
- -7.01,
- -7.03,
- -6.91,
- -6.73,
- -6.15,
- -5.59,
- -5.63,
- -7.43,
- -1.63,
- -5.52,
- -6.13,
- -6.76,
- -6.4,
- -6.88,
- -7.55,
- -7.88,
- -8.64,
- -8.91,
- -9.97,
- -10.25,
- -11.46,
- -11.33,
- -10.99,
- -10.42,
- -9.87,
- -9.22,
- -8.97,
- -9.13,
- -9.17,
- -9.18,
- -8.68,
- -8.42,
- -8.34,
- -8.22,
- -8.26,
- -7.96,
- -7.73,
- -7.53,
- -7.8,
- -8.58,
- -8.77,
- -7.68,
- -6.84,
- -7.1,
- -5.76,
- -4.51,
- 0.11,
- 2.38,
- 2.42,
- 3.42,
- 3.7,
- 2.78,
- 3.26,
- 2.79,
- 3.17,
- 3.22,
- 3.94,
- 3.86,
- 4.67,
- 4.14,
- 4.35,
- 4.41,
- 4.37,
- 4.33,
- 4.79,
- 4.62,
- 3.86,
- 2.52,
- -0.76,
- -0.04,
- -0.47,
- -0.87,
- -1.98,
- -2.5,
- -1.98,
- -1.56,
- -1.81,
- -1.97,
- -1.86,
- -1.45,
- -2.29,
- -2.89,
- -2.28,
- -2.32,
- -1.71,
- -2.41,
- -2.45,
- -3.25,
- -4.14,
- -4.15,
- -4.28,
- -4.47,
- -4.55,
- -3.94,
- -4.36,
- -5.24,
- -4.9,
- -5.02,
- -4.82,
- -5.42,
- -5.58,
- -5.47,
- -5.1,
- -4.84,
- -5.13,
- -5.57,
- -5.73,
- -5.62,
- -5.49,
- -5.12,
- -5.48,
- -6.33,
- -6.19,
- -5.82,
- -5.27,
- -4.86,
- -4.75,
- -4.51,
- -3.9,
- -2.58,
- -0.14,
- -0.51,
- 1.03,
- -2.33,
- -0.5,
- -0.59,
- 0.57,
- -0.28,
- -0.92,
- -0.59,
- -0.37,
- 0.66,
- 0.55,
- 1.46,
- 1.07,
- -0.05,
- 0.37,
- -1.32,
- -0.29,
- 0.78,
- 0.24,
- 0.74,
- 0.13,
- 0.93,
- -1.05,
- 1.49,
- -2.33,
- -0.85,
- -0.95,
- -0.67,
- 0.43,
- 1.64,
- 1.99,
- -0.21,
- -2.58,
- -2.86,
- -3.35,
- -2.91,
- -3.97,
- -5.41,
- -6.26,
- -6.39,
- -7.04,
- -6.38,
- -6.36,
- -6.33,
- -6.39,
- -6.66,
- -6.7,
- -6.52,
- -6.72,
- -7.18,
- -7.27,
- -7.43,
- -7.68,
- -8.27,
- -8.4,
- -8.85,
- -8.88,
- -9.03,
- -9.16,
- -9.09,
- -8.78,
- -8.74,
- -8.79,
- -8.99,
- -9.11,
- -9.12,
- -9.08,
- -8.81,
- -8.8,
- -8.47,
- -8.36,
- -8.15,
- -7.9,
- -7.25,
- -6.99,
- -6.81,
- -6.59,
- -5.89,
- -5.17,
- -5.34,
- -5.42,
- 0.55,
- 0.7,
- -0.43,
- -0.26,
- -1.75,
- -2.61,
- 0.92,
- 2.52,
- 1.12,
- 0.9,
- -0.94,
- -0.08,
- 0.28,
- 0.6,
- 0.21,
- 0.29,
- 1.83,
- 1.98,
- 3.3,
- 0.36,
- 1.64,
- 1.46,
- 0.69,
- -0.33,
- -0.96,
- -0.65,
- -1.3,
- -1.64,
- -1.66,
- -2.29,
- -2.87,
- -2.92,
- -1.22,
- -1.08,
- -1.99,
- -0.69,
- 0.97,
- 0.0,
- -1.04,
- -1.89,
- -3.84,
- -5.11,
- -5.83,
- -5.87,
- -6.06,
- -6.53,
- -8.23,
- -8.08,
- -8.35,
- -8.6,
- -9.33,
- -10.07,
- -11.05,
- -11.58,
- -12.04,
- -12.65,
- -12.57,
- -12.19,
- -12.23,
- -12.11,
- -11.92,
- -11.39,
- -11.78,
- -11.44,
- -11.77,
- -11.33,
- -11.9,
- -12.0,
- -11.9,
- -11.86,
- -11.13,
- -11.5,
- -11.7,
- -11.93,
- -12.13,
- -12.19,
- -12.39,
- -12.38,
- -12.7,
- -12.96,
- -11.73,
- -12.67,
- -12.2,
- -11.64,
- -11.23,
- -10.81,
- -10.17,
- -9.75,
- -9.0,
- -8.71,
- -8.54,
- -7.76,
- -7.08,
- -6.69,
- -6.53,
- -6.12,
- -5.59,
- -4.96,
- -4.29,
- -3.19,
- -1.92,
- -1.28,
- 0.01,
- 0.62,
- 0.83,
- 1.13,
- 1.57,
- 1.08,
- 1.53,
- 1.47,
- 0.49,
- 0.79,
- 0.55,
- -0.41,
- 0.7,
- 0.76,
- -0.46,
- -1.23,
- -0.9,
- -1.59,
- -1.85,
- -1.66,
- -2.34,
- -2.56,
- -1.81,
- -2.86,
- -2.09,
- -2.17,
- -2.38,
- -2.07,
- -2.86,
- -3.47,
- -3.96,
- -3.7,
- -6.07,
- -5.68,
- -4.87,
- -5.02,
- -5.65,
- -6.54,
- -6.86,
- -7.03,
- -7.67,
- -8.12,
- -8.08,
- -8.72,
- -9.07,
- -8.95,
- -9.14,
- -9.14,
- -9.06,
- -9.39,
- -9.06,
- -8.43,
- -7.71,
- -6.75,
- -5.86,
- -6.1,
- -6.36,
- -6.87,
- -6.63,
- -6.5,
- -6.5,
- -6.92,
- -7.11,
- -6.39,
- -6.43,
- -6.75,
- -7.64,
- -7.94,
- -7.71,
- -9.0,
- -9.17,
- -9.5,
- -10.16,
- -10.36,
- -10.94,
- -11.27,
- -10.35,
- -10.19,
- -9.52,
- -9.13,
- -8.45,
- -8.66,
- -8.35,
- -8.3,
- -8.24,
- -7.99,
- -7.65,
- -7.26,
- -7.23,
- -7.49,
- -7.96,
- -8.32,
- -8.09,
- -8.3,
- -8.8,
- -8.78,
- -8.17,
- -7.12,
- -6.19,
- -5.83,
- -5.71,
- -6.2,
- -6.07,
- -4.51,
- -4.39,
- -2.91,
- 0.64,
- 1.7,
- 1.73,
- 2.97,
- 4.19,
- 4.53,
- 5.31,
- 6.22,
- 5.67,
- 4.51,
- 4.4,
- 5.59,
- 6.41,
- 6.47,
- 6.61,
- 4.61,
- 3.1,
- -0.06,
- 0.64,
- 0.7,
- 0.87,
- 0.72,
- -1.17,
- -0.62,
- -0.29,
- -1.55,
- -1.68,
- -0.44,
- 1.1,
- 0.58,
- -1.34,
- -1.82,
- -1.85,
- -0.56,
- -0.66,
- -1.22,
- -1.79,
- -2.67,
- -2.97,
- -3.39,
- -3.41,
- -3.66,
- -3.51,
- -3.74,
- -4.88,
- -4.8,
- -4.74,
- -4.09,
- -4.53,
- -5.78,
- -5.22,
- -4.68,
- -5.31,
- -5.21,
- -5.28,
- -5.57,
- -5.18,
- -5.21,
- -4.58,
- -4.89,
- -5.37,
- -5.44,
- -5.37,
- -5.01,
- -4.78,
- -4.26,
- -3.19,
- -2.3,
- -1.13,
- 1.11,
- 0.85,
- -1.11,
- -0.96,
- 0.34,
- -0.95,
- 0.08,
- -0.16,
- -0.56,
- -0.21,
- -0.04,
- 0.67,
- 1.22,
- 1.58,
- 1.52,
- -0.73,
- -0.99,
- -1.13,
- 0.55,
- 0.63,
- 0.2,
- -0.34,
- -0.52,
- 0.22,
- -0.12,
- 1.66,
- -1.43,
- -0.74,
- 0.37,
- 0.23,
- 0.94,
- 3.74,
- 2.5,
- 2.1,
- -2.35,
- -2.0,
- -2.95,
- -2.2,
- -3.23,
- -5.51,
- -5.96,
- -5.57,
- -6.6,
- -6.24,
- -6.1,
- -6.02,
- -6.67,
- -7.12,
- -6.95,
- -6.91,
- -7.14,
- -7.01,
- -7.22,
- -7.35,
- -7.03,
- -8.02,
- -8.24,
- -8.42,
- -8.7,
- -8.76,
- -8.98,
- -8.87,
- -8.8,
- -8.9,
- -9.02,
- -9.14,
- -9.19,
- -9.1,
- -9.13,
- -8.78,
- -8.53,
- -8.77,
- -8.0,
- -7.55,
- -7.42,
- -7.07,
- -6.86,
- -6.64,
- -6.44,
- -6.5,
- -6.04,
- -4.53,
- -3.95,
- -2.83,
- -0.98,
- -0.28,
- 0.21,
- -0.97,
- 0.75,
- 1.1,
- 2.31,
- 2.49,
- 2.42,
- 1.66,
- 0.21,
- 0.72,
- 0.35,
- -0.68,
- 0.5,
- 2.64,
- 2.71,
- 3.05,
- 0.94,
- 1.86,
- 0.0,
- -0.1,
- 0.78,
- -0.01,
- -0.42,
- -1.16,
- -1.61,
- -1.51,
- -1.5,
- -2.35,
- -2.94,
- -1.47,
- -1.37,
- -0.7,
- -0.31,
- 2.9,
- 0.05,
- -1.19,
- -2.17,
- -3.15,
- -5.51,
- -5.71,
- -5.73,
- -6.11,
- -6.75,
- -8.24,
- -8.42,
- -8.22,
- -9.32,
- -11.13,
- -11.26,
- -11.71,
- -12.01,
- -12.62,
- -13.02,
- -12.92,
- -12.65,
- -12.32,
- -12.9,
- -12.49,
- -12.37,
- -12.35,
- -12.33,
- -12.5,
- -13.41,
- -13.25,
- -13.6,
- -14.1,
- -13.26,
- -13.13,
- -13.37,
- -13.39,
- -13.18,
- -13.14,
- -13.06,
- -12.69,
- -12.64,
- -12.32,
- -12.14,
- -11.77,
- -11.64,
- -11.67,
- -11.71,
- -11.37,
- -10.91,
- -10.35,
- -9.82,
- -8.97,
- -8.6,
- -7.97,
- -7.61,
- -7.14,
- -6.32,
- -6.36,
- -6.28,
- -5.77,
- -5.38,
- -4.74,
- -3.41,
- -2.15,
- -0.97,
- -0.23,
- -0.77,
- -0.41,
- 0.79,
- 2.97,
- 2.49,
- 1.61,
- 0.39,
- 1.19,
- 1.55,
- 1.86,
- 1.16,
- 1.24,
- 1.03,
- 1.34,
- -0.01,
- -0.14,
- -0.04,
- -0.66,
- -0.47,
- -0.64,
- -1.08,
- -1.1,
- -1.4,
- -1.59,
- -1.09,
- -1.48,
- -0.73,
- 0.72,
- -2.81,
- -3.33,
- -3.54,
- -2.78,
- -4.15,
- -4.5,
- -4.45,
- -5.16,
- -6.18,
- -6.38,
- -6.62,
- -6.81,
- -7.48,
- -7.71,
- -7.91,
- -7.38,
- -6.93,
- -6.66,
- -5.61,
- -5.34,
- -8.94,
- -8.28,
- -7.8,
- -7.44,
- -6.31,
- -5.95,
- -5.6,
- -6.39,
- -6.47,
- -6.82,
- -6.69,
- -7.0,
- -7.61,
- -7.73,
- -7.7,
- -8.03,
- -9.47,
- -9.69,
- -9.01,
- -9.41,
- -10.05,
- -9.85,
- -9.41,
- -10.22,
- -10.24,
- -10.3,
- -9.89,
- -9.4,
- -8.86,
- -8.43,
- -8.1,
- -8.1,
- -8.26,
- -8.3,
- -8.05,
- -7.66,
- -7.71,
- -7.35,
- -6.98,
- -6.59,
- -6.57,
- -6.8,
- -7.65,
- -8.31,
- -8.22,
- -8.4,
- -8.7,
- -8.41,
- -8.08,
- -7.37,
- -5.97,
- -5.21,
- -4.96,
- -4.68,
- -5.32,
- -4.75,
- -4.27,
- -4.71,
- -3.86,
- -3.41,
- -3.31,
- -2.5,
- 0.65,
- 3.86,
- 5.08,
- 6.08,
- 5.3,
- 5.46,
- 5.42,
- 6.09,
- 8.02,
- 7.69,
- 6.05,
- 3.09,
- 1.72,
- 0.94,
- 2.14,
- 0.99,
- -1.91,
- -3.69,
- -4.32,
- -4.14,
- -3.89,
- -5.59,
- -5.26,
- -5.39,
- -4.8,
- 0.38,
- -0.43,
- -0.86,
- 0.35,
- 1.01,
- 0.06,
- -0.84,
- -0.72,
- -1.6,
- -2.36,
- -2.54,
- -2.83,
- -3.25,
- -3.6,
- -4.08,
- -4.63,
- -4.56,
- -4.33,
- -3.62,
- -4.66,
- -5.05,
- -4.44,
- -5.09,
- -4.97,
- -5.14,
- -5.31,
- -5.02,
- -4.88,
- -4.42,
- -4.58,
- -4.87,
- -4.78,
- -4.37,
- -4.22,
- -4.02,
- -3.73,
- -2.82,
- -1.89,
- -1.01,
- -0.1,
- 0.19,
- 1.76,
- 0.64,
- -1.71,
- -0.36,
- 1.0,
- 1.4,
- 0.78,
- 0.63,
- 0.2,
- 0.99,
- 0.94,
- 0.99,
- 0.0,
- 0.11,
- -0.17,
- 0.67,
- 0.84,
- 0.95,
- 0.66,
- 0.4,
- 0.81,
- -0.84,
- 1.31,
- -0.54,
- -1.01,
- 0.07,
- 0.59,
- 1.09,
- 1.79,
- 4.23,
- 1.1,
- 1.97,
- -1.26,
- -0.8,
- -2.16,
- -1.76,
- -3.14,
- -5.32,
- -5.35,
- -6.14,
- -6.7,
- -6.23,
- -6.0,
- -6.25,
- -6.77,
- -6.91,
- -7.19,
- -7.82,
- -7.65,
- -7.56,
- -7.28,
- -7.16,
- -7.5,
- -7.33,
- -8.01,
- -8.36,
- -8.44,
- -8.56,
- -8.78,
- -8.66,
- -8.86,
- -8.94,
- -8.8,
- -8.74,
- -8.49,
- -8.46,
- -8.35,
- -8.41,
- -8.4,
- -7.72,
- -7.53,
- -7.13,
- -6.87,
- -6.45,
- -6.56,
- -6.58,
- -6.52,
- -6.39,
- -6.31,
- -5.37,
- -3.75,
- -3.37,
- 0.27,
- -0.56,
- -1.01,
- 0.71,
- 0.27,
- 1.16,
- 1.78,
- 2.09,
- 1.9,
- 3.49,
- 2.38,
- 2.72,
- 2.33,
- 2.42,
- 3.17,
- 2.3,
- 2.46,
- 2.36,
- 2.22,
- 0.45,
- -0.02,
- 0.62,
- 1.18,
- 0.63,
- -0.26,
- -0.97,
- -1.17,
- -1.69,
- -1.28,
- -2.22,
- -0.96,
- -1.81,
- -1.43,
- -0.79,
- -0.02,
- 1.74,
- 0.35,
- -1.99,
- -2.05,
- -2.19,
- -1.43,
- 0.75,
- -3.46,
- -7.08,
- -7.13,
- -8.22,
- -8.54,
- -8.86,
- -9.67,
- -10.13,
- -10.59,
- -11.99,
- -12.27,
- -12.26,
- -12.61,
- -12.98,
- -13.08,
- -12.66,
- -12.92,
- -13.23,
- -13.3,
- -13.43,
- -13.35,
- -13.73,
- -14.14,
- -14.31,
- -14.12,
- -13.92,
- -13.52,
- -13.33,
- -13.25,
- -12.64,
- -12.3,
- -12.07,
- -12.07,
- -11.78,
- -11.91,
- -11.76,
- -11.68,
- -11.79,
- -11.39,
- -11.58,
- -11.06,
- -10.85,
- -10.5,
- -9.88,
- -9.47,
- -8.84,
- -8.27,
- -7.76,
- -7.29,
- -6.8,
- -6.37,
- -6.28,
- -6.48,
- -5.91,
- -5.6,
- -5.33,
- -4.14,
- -2.27,
- -1.13,
- 0.37,
- -2.54,
- -1.75,
- 0.54,
- 0.43,
- 0.73,
- 0.97,
- 1.12,
- 0.05,
- -0.3,
- 0.37,
- 1.08,
- 2.05,
- 1.24,
- 2.75,
- 1.76,
- 0.97,
- 1.49,
- 1.78,
- -0.96,
- 0.45,
- 0.19,
- -0.92,
- 0.51,
- 0.33,
- -0.98,
- -0.96,
- -0.98,
- -1.71,
- -3.16,
- -3.77,
- -2.92,
- -0.91,
- -2.42,
- -2.65,
- -4.29,
- -4.56,
- -5.09,
- -5.33,
- -5.61,
- -6.33,
- -6.99,
- -7.54,
- -7.7,
- -8.16,
- -8.08,
- -7.66,
- -6.96,
- -5.86,
- -6.89,
- -2.96,
- -9.23,
- -6.04,
- -6.67,
- -6.14,
- -5.67,
- -6.27,
- -6.48,
- -6.54,
- -7.09,
- -7.29,
- -7.69,
- -8.07,
- -8.25,
- -9.14,
- -9.0,
- -8.86,
- -8.81,
- -9.27,
- -9.94,
- -9.76,
- -8.94,
- -9.19,
- -8.79,
- -9.09,
- -8.75,
- -8.54,
- -8.06,
- -7.78,
- -7.73,
- -8.23,
- -8.57,
- -8.25,
- -7.47,
- -7.14,
- -7.26,
- -7.56,
- -7.79,
- -7.7,
- -6.65,
- -6.37,
- -6.09,
- -7.06,
- -7.85,
- -7.9,
- -8.31,
- -8.06,
- -7.59,
- -7.07,
- -6.87,
- -6.59,
- -5.29,
- -3.98,
- -2.83,
- -2.26,
- -1.83,
- -0.93,
- -0.02,
- 2.54,
- 1.89,
- -0.41,
- -2.19,
- -2.95,
- -1.08,
- 4.2,
- 4.68,
- 5.46,
- 5.83,
- 6.22,
- 7.58,
- 8.11,
- 4.61,
- 4.12,
- 1.47,
- 1.91,
- 2.08,
- -0.45,
- -2.6,
- -4.02,
- -4.4,
- -3.75,
- -4.42,
- -4.63,
- -3.78,
- -4.01,
- -4.48,
- -4.42,
- -3.35,
- -0.41,
- 1.68,
- 2.62,
- 1.73,
- 0.95,
- 0.56,
- -0.29,
- -1.57,
- -1.65,
- -1.55,
- -2.18,
- -2.82,
- -3.22,
- -3.71,
- -3.58,
- -4.21,
- -3.78,
- -2.88,
- -3.98,
- -3.79,
- -4.66,
- -4.61,
- -4.77,
- -4.88,
- -5.22,
- -4.62,
- -4.59,
- -3.97,
- -4.17,
- -4.24,
- -4.04,
- -3.92,
- -3.8,
- -3.43,
- -2.48,
- -1.01,
- -0.55,
- -0.7,
- -0.57,
- 1.78,
- -2.62,
- -0.97,
- -1.02,
- -1.34,
- 1.8,
- 1.07,
- 0.35,
- 0.56,
- 0.55,
- 0.68,
- -1.2,
- 0.77,
- -0.76,
- 1.17,
- 0.7,
- 1.64,
- 1.3,
- 1.41,
- 0.6,
- 0.61,
- 0.34,
- 0.26,
- -0.31,
- -1.23,
- 0.65,
- -0.54,
- 1.4,
- 6.57,
- 6.48,
- 1.98,
- 0.34,
- -0.21,
- -0.1,
- -1.02,
- -1.03,
- -2.65,
- -4.69,
- -4.76,
- -6.52,
- -6.48,
- -6.23,
- -6.06,
- -6.49,
- -6.56,
- -6.3,
- -7.12,
- -7.88,
- -7.68,
- -7.82,
- -7.82,
- -7.58,
- -7.49,
- -7.77,
- -7.97,
- -8.14,
- -8.34,
- -8.33,
- -8.51,
- -8.57,
- -8.75,
- -8.33,
- -8.5,
- -8.49,
- -8.37,
- -7.6,
- -8.43,
- -8.36,
- -7.94,
- -7.43,
- -6.8,
- -6.52,
- -6.45,
- -5.92,
- -5.69,
- -5.88,
- -5.97,
- -5.69,
- -5.67,
- -5.1,
- -4.17,
- -3.06,
- -1.76,
- 0.3,
- -0.36,
- 0.14,
- -0.66,
- 1.28,
- 1.78,
- 3.04,
- 3.82,
- 2.38,
- 3.57,
- 3.06,
- 2.47,
- 3.94,
- 4.52,
- 5.65,
- 5.82,
- 4.39,
- 4.59,
- 0.61,
- 0.42,
- 0.86,
- 1.72,
- 0.95,
- 0.97,
- 0.41,
- -0.69,
- -1.25,
- -1.32,
- -1.67,
- -1.41,
- -1.83,
- -1.57,
- -0.82,
- 0.33,
- 0.8,
- -0.87,
- -2.28,
- -2.98,
- -3.44,
- -4.38,
- -6.81,
- -6.52,
- -7.13,
- -7.17,
- -8.43,
- -8.64,
- -9.34,
- -9.61,
- -9.75,
- -10.82,
- -11.91,
- -12.16,
- -12.17,
- -12.17,
- -12.32,
- -12.45,
- -12.69,
- -12.76,
- -13.04,
- -13.54,
- -14.17,
- -14.57,
- -14.26,
- -13.94,
- -13.72,
- -13.49,
- -12.98,
- -12.72,
- -12.47,
- -12.17,
- -11.83,
- -11.89,
- -11.4,
- -11.11,
- -10.98,
- -10.9,
- -10.91,
- -10.85,
- -10.8,
- -11.07,
- -10.59,
- -10.5,
- -10.19,
- -10.02,
- -9.66,
- -9.1,
- -8.49,
- -7.82,
- -7.25,
- -6.98,
- -6.63,
- -6.24,
- -6.04,
- -6.12,
- -6.13,
- -5.99,
- -6.17,
- -4.97,
- -2.59,
- -4.01,
- -4.32,
- -3.43,
- -3.73,
- -3.2,
- -1.66,
- -1.44,
- -0.66,
- -2.2,
- -3.55,
- -5.04,
- -4.27,
- -3.39,
- -3.01,
- -1.58,
- 1.18,
- 4.02,
- 3.37,
- 2.49,
- 2.37,
- 1.04,
- 1.02,
- -0.21,
- 0.59,
- 1.6,
- 0.94,
- -0.71,
- -2.12,
- -1.89,
- -2.38,
- -2.93,
- -2.9,
- -2.49,
- -3.04,
- -2.57,
- -2.81,
- -5.43,
- -4.01,
- -4.05,
- -3.92,
- -3.96,
- -5.06,
- -7.51,
- -8.2,
- -8.34,
- -8.44,
- -8.11,
- -8.19,
- -8.19,
- -8.3,
- -8.27,
- -9.2,
- -5.68,
- -6.21,
- -6.95,
- -6.68,
- -6.23,
- -7.1,
- -7.22,
- -7.07,
- -7.04,
- -7.48,
- -7.49,
- -8.26,
- -8.31,
- -9.06,
- -8.93,
- -8.64,
- -8.32,
- -8.23,
- -9.63,
- -9.49,
- -8.22,
- -7.9,
- -7.55,
- -7.6,
- -7.94,
- -8.07,
- -8.21,
- -7.45,
- -7.42,
- -7.89,
- -8.14,
- -7.84,
- -7.47,
- -7.15,
- -7.05,
- -7.02,
- -6.94,
- -7.15,
- -7.1,
- -6.63,
- -6.66,
- -5.21,
- -6.26,
- -6.95,
- -7.45,
- -7.75,
- -7.23,
- -6.69,
- -6.34,
- -6.2,
- -5.98,
- -5.65,
- -5.75,
- -3.12,
- 0.21,
- 1.03,
- 2.2,
- 3.21,
- 3.81,
- 4.05,
- 3.4,
- 1.52,
- -0.3,
- -1.19,
- 1.06,
- 4.14,
- 5.34,
- 6.48,
- 7.11,
- 8.06,
- 6.05,
- 3.82,
- 1.63,
- 1.9,
- 1.38,
- -1.16,
- -2.36,
- -3.14,
- -3.49,
- -3.1,
- -4.26,
- -4.83,
- -3.63,
- -2.43,
- -3.17,
- -2.71,
- -2.25,
- -2.93,
- -2.53,
- 0.23,
- 3.54,
- 1.6,
- 1.43,
- 0.99,
- -0.84,
- -1.35,
- -0.9,
- -1.08,
- -1.77,
- -1.61,
- -2.5,
- -2.54,
- -3.38,
- -3.68,
- -3.96,
- -2.7,
- -2.93,
- -4.48,
- -4.06,
- -4.18,
- -4.48,
- -4.57,
- -4.57,
- -4.13,
- -3.59,
- -3.33,
- -3.15,
- -3.2,
- -3.69,
- -3.68,
- -3.32,
- -2.17,
- -0.56,
- 1.04,
- -1.42,
- -0.97,
- 0.86,
- -0.8,
- -0.88,
- -0.04,
- 1.46,
- 1.73,
- -0.35,
- 0.17,
- 0.42,
- 0.36,
- 0.0,
- -0.16,
- -0.89,
- 0.63,
- 0.85,
- 1.27,
- 1.13,
- 1.32,
- 1.2,
- 0.69,
- 0.51,
- 0.25,
- 0.96,
- -0.46,
- 0.21,
- -0.05,
- 1.15,
- 2.51,
- 6.55,
- 2.25,
- 4.37,
- -0.34,
- 0.46,
- 0.31,
- -0.91,
- -1.71,
- -2.83,
- -4.56,
- -4.73,
- -5.75,
- -6.57,
- -6.08,
- -5.82,
- -5.75,
- -5.58,
- -6.47,
- -7.36,
- -8.06,
- -7.91,
- -7.74,
- -8.12,
- -8.03,
- -8.08,
- -8.28,
- -8.05,
- -8.22,
- -7.8,
- -7.85,
- -8.35,
- -8.34,
- -8.29,
- -8.23,
- -8.29,
- -8.24,
- -7.97,
- -7.99,
- -8.43,
- -8.24,
- -7.4,
- -7.03,
- -6.1,
- -5.7,
- -4.97,
- -4.61,
- -4.3,
- -4.05,
- -3.98,
- -4.64,
- -4.7,
- -5.16,
- -3.72,
- -2.02,
- -1.0,
- 0.59,
- -0.51,
- 0.15,
- -0.43,
- -0.83,
- -0.53,
- -0.57,
- -0.03,
- 0.93,
- 2.05,
- 2.86,
- 3.79,
- 2.94,
- 1.84,
- 2.29,
- 1.58,
- 2.22,
- 2.16,
- 1.06,
- 0.93,
- 0.99,
- 2.86,
- 2.72,
- 2.84,
- 2.55,
- 0.99,
- -0.78,
- -1.08,
- -0.92,
- -0.35,
- -0.95,
- -1.9,
- 0.65,
- 2.03,
- -0.35,
- -1.8,
- -2.98,
- -4.1,
- -4.4,
- -4.63,
- -6.36,
- -6.82,
- -6.7,
- -7.59,
- -8.42,
- -9.08,
- -9.23,
- -9.25,
- -10.01,
- -10.11,
- -11.37,
- -11.7,
- -12.16,
- -12.16,
- -11.95,
- -12.0,
- -12.03,
- -12.09,
- -12.34,
- -12.94,
- -13.17,
- -13.32,
- -13.25,
- -12.81,
- -12.79,
- -12.48,
- -12.2,
- -12.33,
- -12.22,
- -11.55,
- -11.65,
- -12.13,
- -10.82,
- -10.7,
- -10.69,
- -10.55,
- -10.36,
- -10.34,
- -10.42,
- -10.44,
- -10.32,
- -10.15,
- -9.94,
- -9.61,
- -9.22,
- -8.66,
- -7.8,
- -6.88,
- -6.87,
- -6.68,
- -6.26,
- -5.88,
- -5.67,
- -5.78,
- -5.62,
- -5.62,
- -6.34,
- -5.75,
- -3.15,
- -4.73,
- -5.5,
- -6.41,
- -4.59,
- -4.63,
- -5.11,
- -3.37,
- -3.58,
- -3.88,
- -3.16,
- -4.05,
- -3.98,
- -2.61,
- -1.26,
- 0.02,
- 1.14,
- 2.59,
- 6.07,
- 4.85,
- 4.06,
- 3.35,
- 1.8,
- 1.75,
- 1.87,
- 0.76,
- 1.21,
- -0.59,
- -1.35,
- -2.81,
- -2.53,
- -2.72,
- -2.58,
- -2.66,
- -3.24,
- -2.13,
- -2.12,
- -3.45,
- -4.68,
- -2.75,
- -1.66,
- -2.66,
- -5.39,
- -8.29,
- -8.32,
- -8.34,
- -8.29,
- -8.18,
- -8.11,
- -7.98,
- -7.72,
- -7.82,
- -8.01,
- -7.85,
- -8.0,
- -8.46,
- -8.57,
- -7.92,
- -8.64,
- -7.34,
- -7.37,
- -7.32,
- -7.41,
- -7.72,
- -8.67,
- -8.03,
- -8.47,
- -8.33,
- -8.17,
- -8.11,
- -7.74,
- -8.54,
- -9.06,
- -7.43,
- -7.04,
- -7.32,
- -7.56,
- -7.74,
- -7.99,
- -7.71,
- -7.43,
- -6.91,
- -7.01,
- -7.26,
- -7.31,
- -7.27,
- -7.44,
- -7.54,
- -7.2,
- -6.95,
- -7.38,
- -6.93,
- -6.8,
- -6.2,
- -6.42,
- -5.95,
- -5.52,
- -5.64,
- -5.97,
- -6.12,
- -5.05,
- -4.94,
- -5.17,
- -5.22,
- -4.88,
- -5.41,
- -5.85,
- -4.57,
- -0.49,
- 3.1,
- 4.27,
- 4.68,
- 5.06,
- 5.4,
- 5.41,
- 4.77,
- 1.53,
- -1.34,
- -1.15,
- 2.69,
- 6.13,
- 6.79,
- 7.68,
- 6.84,
- 3.44,
- 2.31,
- 2.36,
- 0.96,
- -0.18,
- -1.71,
- -2.58,
- -1.39,
- -2.06,
- -1.7,
- -1.62,
- -1.88,
- -2.43,
- -2.41,
- -3.1,
- -3.25,
- -3.0,
- -3.25,
- -2.66,
- 0.12,
- 2.84,
- 2.21,
- 1.25,
- -0.51,
- -1.14,
- -0.62,
- -0.33,
- 0.32,
- 0.21,
- -0.63,
- -0.86,
- -1.64,
- -2.87,
- -3.69,
- -3.22,
- -2.2,
- -3.47,
- -3.44,
- -3.49,
- -3.84,
- -4.01,
- -4.16,
- -3.53,
- -3.11,
- -2.84,
- -2.71,
- -2.81,
- -2.96,
- -2.98,
- -2.49,
- -1.48,
- -0.43,
- 0.32,
- -0.33,
- -1.18,
- -0.62,
- 1.44,
- -1.4,
- 0.89,
- 1.56,
- 0.3,
- -0.7,
- -0.05,
- 0.35,
- 0.44,
- 0.2,
- 0.14,
- -0.43,
- 0.85,
- 1.3,
- 1.22,
- 0.64,
- 1.11,
- 0.38,
- -1.43,
- 0.06,
- -1.23,
- -0.13,
- -0.89,
- 1.47,
- 2.16,
- 3.93,
- -1.47,
- -0.71,
- -7.89,
- -1.47,
- 0.99,
- 0.32,
- 0.35,
- 0.78,
- -1.9,
- -1.93,
- -2.76,
- -4.58,
- -5.78,
- -5.62,
- -5.43,
- -5.48,
- -5.41,
- -5.44,
- -6.82,
- -7.44,
- -7.69,
- -7.99,
- -7.81,
- -7.75,
- -8.09,
- -8.05,
- -8.13,
- -8.4,
- -7.21,
- -8.25,
- -7.56,
- -7.81,
- -8.03,
- -7.97,
- -7.95,
- -7.98,
- -8.0,
- -8.1,
- -8.04,
- -7.94,
- -7.63,
- -6.45,
- -6.19,
- -4.94,
- -3.93,
- -3.89,
- -3.74,
- -3.68,
- -3.63,
- -3.83,
- -4.41,
- -5.29,
- -5.92,
- -4.74,
- -2.33,
- -1.5,
- 0.4,
- -1.33,
- -3.63,
- -2.06,
- -2.87,
- -1.84,
- -0.45,
- 0.29,
- 0.75,
- 0.08,
- 1.38,
- 3.99,
- 1.39,
- 1.38,
- 0.8,
- 1.86,
- -0.62,
- -1.41,
- 2.13,
- 2.27,
- 1.6,
- 3.93,
- 3.63,
- 3.56,
- 3.42,
- 2.32,
- 0.53,
- -0.48,
- -0.78,
- -1.18,
- -2.42,
- -0.38,
- 0.39,
- 1.2,
- -1.09,
- -1.75,
- -3.43,
- -4.62,
- -5.12,
- -5.41,
- -6.21,
- -6.57,
- -6.81,
- -8.61,
- -8.87,
- -9.28,
- -9.17,
- -9.13,
- -9.96,
- -9.92,
- -11.25,
- -11.56,
- -12.54,
- -12.28,
- -12.03,
- -12.02,
- -11.95,
- -11.82,
- -12.11,
- -12.48,
- -12.91,
- -12.99,
- -12.68,
- -12.23,
- -11.64,
- -11.02,
- -11.44,
- -11.44,
- -11.48,
- -11.52,
- -11.63,
- -11.48,
- -10.79,
- -10.67,
- -10.04,
- -9.91,
- -9.67,
- -9.79,
- -9.89,
- -10.15,
- -10.36,
- -10.04,
- -9.54,
- -8.8,
- -8.27,
- -7.46,
- -6.53,
- -6.21,
- -6.33,
- -6.14,
- -5.77,
- -5.48,
- -5.31,
- -5.27,
- -5.17,
- -5.02,
- -5.62,
- -6.19,
- -2.61,
- -5.38,
- -5.59,
- -5.07,
- -6.23,
- -5.82,
- -5.33,
- -5.74,
- -4.13,
- -3.82,
- -1.44,
- -1.45,
- -1.47,
- -1.95,
- -0.9,
- 0.63,
- 0.9,
- 0.93,
- 3.74,
- 7.79,
- 5.26,
- 5.96,
- 2.78,
- 1.01,
- 2.76,
- 1.48,
- 1.51,
- 0.03,
- -0.31,
- -2.65,
- -2.89,
- -2.31,
- -2.22,
- -0.89,
- -2.59,
- -1.62,
- -2.09,
- -2.4,
- -2.88,
- -5.06,
- -3.53,
- -4.01,
- -7.19,
- -8.14,
- -8.45,
- -8.04,
- -7.72,
- -7.86,
- -7.69,
- -7.49,
- -7.25,
- -7.41,
- -7.65,
- -8.46,
- -8.79,
- -8.91,
- -9.23,
- -9.52,
- -9.36,
- -8.39,
- -8.08,
- -8.34,
- -8.11,
- -8.55,
- -8.68,
- -8.19,
- -7.81,
- -7.44,
- -7.35,
- -7.2,
- -7.41,
- -7.38,
- -7.37,
- -6.94,
- -6.82,
- -6.74,
- -6.94,
- -7.22,
- -7.48,
- -7.47,
- -7.16,
- -7.31,
- -8.18,
- -8.24,
- -7.91,
- -7.53,
- -7.04,
- -6.58,
- -5.8,
- -6.99,
- -6.58,
- -6.28,
- -5.94,
- -5.89,
- -5.77,
- -5.83,
- -6.18,
- -5.9,
- -4.82,
- -3.72,
- -4.23,
- -3.92,
- -4.02,
- -3.95,
- -3.76,
- -3.81,
- -3.43,
- -3.04,
- -3.59,
- -2.72,
- -0.24,
- 3.73,
- 6.71,
- 7.29,
- 6.66,
- 5.35,
- 3.22,
- 0.91,
- -0.39,
- -0.71,
- 0.68,
- 5.03,
- 7.93,
- 6.7,
- 3.7,
- 2.53,
- 1.82,
- 2.42,
- 0.33,
- -0.47,
- -1.58,
- -0.91,
- -0.53,
- -1.27,
- -1.25,
- -0.69,
- -1.93,
- -1.16,
- -1.63,
- -2.82,
- -3.45,
- -3.74,
- -3.77,
- -5.16,
- -1.49,
- 2.2,
- 1.75,
- 0.21,
- -0.17,
- 0.9,
- 1.09,
- 1.45,
- 2.23,
- 2.17,
- 1.51,
- 0.09,
- -1.57,
- -2.96,
- -2.9,
- -2.15,
- -1.19,
- -1.9,
- -2.83,
- -3.06,
- -3.3,
- -3.42,
- -3.46,
- -3.33,
- -3.15,
- -3.21,
- -3.07,
- -2.95,
- -2.49,
- -1.84,
- -0.92,
- 0.21,
- 1.98,
- -0.73,
- -1.22,
- 0.31,
- 0.75,
- -2.15,
- 1.83,
- 0.08,
- -0.8,
- -0.56,
- -0.14,
- 0.28,
- 0.21,
- 0.05,
- -0.24,
- -0.32,
- 0.29,
- 0.31,
- -0.23,
- -0.19,
- 0.3,
- 0.18,
- -0.61,
- -0.66,
- 0.68,
- 3.83,
- 3.78,
- 1.39,
- 0.04,
- -1.51,
- -1.84,
- -3.07,
- -5.41,
- -7.8,
- -4.78,
- -0.14,
- -1.53,
- 1.34,
- -0.77,
- -0.85,
- -2.25,
- -4.16,
- -5.46,
- -4.56,
- -4.45,
- -4.64,
- -5.2,
- -5.62,
- -6.12,
- -7.1,
- -6.82,
- -7.41,
- -7.73,
- -7.91,
- -8.37,
- -8.46,
- -8.36,
- -8.39,
- -8.32,
- -7.92,
- -7.71,
- -7.77,
- -7.88,
- -7.77,
- -7.58,
- -7.54,
- -7.78,
- -8.03,
- -7.49,
- -7.31,
- -6.68,
- -4.84,
- -4.24,
- -3.16,
- -3.32,
- -3.52,
- -3.43,
- -3.94,
- -3.9,
- -4.53,
- -5.94,
- -6.8,
- -6.64,
- -6.11,
- -4.0,
- -2.21,
- -0.35,
- -1.73,
- -2.1,
- -0.79,
- -2.88,
- -1.95,
- -0.36,
- 1.0,
- 1.84,
- -0.57,
- -1.9,
- 0.18,
- -0.98,
- -0.53,
- -1.2,
- -0.07,
- -1.9,
- -3.54,
- -1.4,
- 3.04,
- 6.57,
- 5.32,
- 3.6,
- 3.23,
- 3.47,
- 2.89,
- 2.18,
- 0.68,
- 0.22,
- 0.7,
- 1.1,
- -0.55,
- -1.7,
- -1.57,
- -1.99,
- -2.32,
- -3.72,
- -4.53,
- -4.57,
- -5.15,
- -6.53,
- -7.14,
- -7.76,
- -7.91,
- -8.91,
- -9.14,
- -9.08,
- -9.35,
- -9.74,
- -10.61,
- -11.23,
- -12.1,
- -12.49,
- -12.15,
- -11.75,
- -11.83,
- -11.93,
- -11.85,
- -12.21,
- -12.72,
- -12.71,
- -12.48,
- -11.82,
- -11.17,
- -10.77,
- -10.49,
- -10.68,
- -10.59,
- -10.84,
- -11.04,
- -11.38,
- -11.45,
- -10.76,
- -10.32,
- -10.11,
- -10.23,
- -10.36,
- -10.42,
- -10.34,
- -10.28,
- -10.04,
- -9.41,
- -8.46,
- -7.9,
- -7.26,
- -6.65,
- -6.34,
- -5.71,
- -5.59,
- -5.53,
- -5.23,
- -5.18,
- -4.77,
- -4.74,
- -4.51,
- -4.52,
- -4.63,
- -5.06,
- -4.55,
- -4.11,
- -4.48,
- -4.94,
- -5.54,
- -4.83,
- -4.66,
- -3.48,
- -2.68,
- -1.94,
- -0.56,
- 0.38,
- 1.05,
- 1.85,
- 3.05,
- 3.77,
- 5.82,
- 1.87,
- 3.75,
- -1.06,
- 2.08,
- -1.19,
- 0.27,
- 2.79,
- 4.25,
- 4.03,
- 2.9,
- 1.62,
- -0.23,
- -1.92,
- -1.61,
- -0.61,
- -0.97,
- -0.3,
- -1.19,
- -2.21,
- -1.81,
- -2.42,
- -3.39,
- -3.1,
- -4.2,
- -6.34,
- -7.84,
- -8.01,
- -8.17,
- -7.69,
- -6.91,
- -6.97,
- -6.85,
- -6.82,
- -6.76,
- -6.88,
- -7.66,
- -8.5,
- -9.07,
- -9.23,
- -9.82,
- -9.93,
- -9.45,
- -8.88,
- -8.45,
- -8.25,
- -8.49,
- -8.08,
- -7.9,
- -7.74,
- -7.29,
- -6.76,
- -6.97,
- -6.91,
- -6.98,
- -6.83,
- -6.72,
- -6.66,
- -6.93,
- -6.7,
- -6.54,
- -6.49,
- -6.44,
- -6.44,
- -5.99,
- -6.54,
- -6.64,
- -6.16,
- -6.3,
- -5.73,
- -5.95,
- -6.1,
- -5.67,
- -5.71,
- -5.54,
- -4.64,
- -5.05,
- -4.92,
- -5.37,
- -5.24,
- -5.23,
- -5.05,
- -5.03,
- -4.54,
- -4.14,
- -4.44,
- -3.94,
- -3.72,
- -3.19,
- -3.07,
- -2.96,
- -2.31,
- -1.72,
- -1.9,
- -2.2,
- -0.84,
- 1.93,
- 4.72,
- 6.35,
- 6.36,
- 5.08,
- 3.16,
- 1.95,
- 1.61,
- 0.98,
- 1.32,
- 4.54,
- 9.74,
- 4.66,
- 2.54,
- 1.92,
- 1.86,
- 1.52,
- 0.1,
- -0.75,
- -1.19,
- -0.78,
- -0.21,
- -1.25,
- -1.45,
- -1.67,
- -1.8,
- -1.7,
- -2.09,
- -1.38,
- -2.35,
- -3.68,
- -3.99,
- -4.68,
- -5.02,
- -4.91,
- -4.86,
- -4.05,
- -3.99,
- 0.46,
- 3.31,
- 2.39,
- 3.02,
- 2.99,
- 2.52,
- -0.21,
- -1.45,
- -2.04,
- -0.97,
- 0.51,
- -0.41,
- -1.43,
- -2.21,
- -2.25,
- -3.02,
- -3.57,
- -3.72,
- -3.94,
- -3.99,
- -3.82,
- -3.47,
- -2.77,
- -1.82,
- -0.78,
- 0.27,
- 2.65,
- -1.2,
- -1.09,
- 1.77,
- 0.42,
- -2.87,
- 0.81,
- 0.41,
- -1.31,
- -0.63,
- -0.27,
- 0.22,
- 0.19,
- -0.01,
- -0.46,
- -0.35,
- 0.02,
- -0.68,
- 0.37,
- -0.75,
- -1.25,
- 0.36,
- -0.32,
- 1.39,
- 2.44,
- 4.47,
- 7.29,
- 5.18,
- 0.97,
- -2.27,
- -2.6,
- -3.0,
- -4.59,
- -4.58,
- -4.54,
- -5.08,
- 0.27,
- 1.99,
- 0.97,
- 0.2,
- -1.44,
- -4.45,
- -4.67,
- -4.32,
- -2.8,
- -3.78,
- -4.63,
- -5.14,
- -5.25,
- -6.78,
- -6.12,
- -6.77,
- -7.27,
- -7.28,
- -7.67,
- -7.65,
- -8.15,
- -8.02,
- -7.83,
- -7.81,
- -7.6,
- -7.46,
- -7.25,
- -6.89,
- -7.39,
- -6.74,
- -7.24,
- -7.59,
- -6.97,
- -6.5,
- -5.49,
- -3.45,
- -3.27,
- -3.1,
- -3.08,
- -4.43,
- -4.64,
- -4.73,
- -5.45,
- -6.13,
- -7.15,
- -7.4,
- -6.32,
- -6.41,
- -7.13,
- -4.77,
- -2.04,
- -0.89,
- -1.85,
- 0.72,
- -3.74,
- -1.88,
- -0.59,
- 0.07,
- -0.95,
- -3.85,
- -3.32,
- -3.03,
- -1.29,
- 0.09,
- -0.41,
- 0.85,
- -0.85,
- -0.8,
- -0.35,
- 2.2,
- 6.64,
- 6.1,
- 3.02,
- 2.62,
- 3.19,
- 2.74,
- 2.12,
- 1.62,
- 1.63,
- 2.73,
- 3.79,
- 2.08,
- -3.27,
- -2.93,
- -2.66,
- -2.69,
- -3.79,
- -4.48,
- -5.23,
- -5.73,
- -5.73,
- -7.49,
- -7.91,
- -8.01,
- -8.05,
- -8.53,
- -8.94,
- -9.55,
- -10.28,
- -10.72,
- -11.1,
- -12.24,
- -12.52,
- -11.69,
- -11.47,
- -11.73,
- -12.02,
- -12.57,
- -12.93,
- -12.8,
- -12.2,
- -11.63,
- -11.14,
- -10.61,
- -10.03,
- -10.17,
- -9.43,
- -11.09,
- -10.41,
- -10.46,
- -11.0,
- -10.91,
- -10.63,
- -10.36,
- -10.63,
- -10.68,
- -10.23,
- -9.62,
- -9.42,
- -9.3,
- -8.73,
- -8.2,
- -7.43,
- -6.75,
- -6.7,
- -6.62,
- -5.98,
- -5.38,
- -5.19,
- -4.9,
- -4.75,
- -4.41,
- -4.35,
- -4.05,
- -4.0,
- -3.89,
- -3.72,
- -3.44,
- -1.77,
- -1.93,
- -3.75,
- -3.81,
- -3.88,
- -3.62,
- -3.17,
- -2.21,
- -1.35,
- 0.04,
- 0.62,
- 1.72,
- 2.35,
- 3.33,
- 5.06,
- 5.74,
- 6.04,
- 6.43,
- 4.09,
- 3.59,
- 2.85,
- 1.44,
- -2.1,
- -2.37,
- -1.48,
- 2.0,
- 3.69,
- 2.42,
- 1.44,
- -0.81,
- -0.99,
- -0.57,
- -0.28,
- -0.08,
- -0.65,
- -1.1,
- -2.21,
- -2.54,
- -1.85,
- -3.31,
- -2.84,
- -5.33,
- -6.81,
- -7.6,
- -7.46,
- -6.54,
- -6.15,
- -5.96,
- -5.88,
- -6.03,
- -6.56,
- -7.02,
- -7.5,
- -8.21,
- -9.08,
- -9.18,
- -9.27,
- -9.42,
- -9.26,
- -8.73,
- -7.9,
- -7.93,
- -7.65,
- -7.43,
- -7.58,
- -7.95,
- -6.74,
- -6.34,
- -6.12,
- -6.77,
- -6.6,
- -6.44,
- -6.23,
- -6.02,
- -6.14,
- -6.18,
- -6.05,
- -6.1,
- -6.06,
- -5.95,
- -5.58,
- -4.9,
- -4.28,
- -4.11,
- -5.43,
- -5.14,
- -5.4,
- -5.01,
- -4.61,
- -4.46,
- -4.64,
- -4.1,
- -3.54,
- -3.7,
- -3.83,
- -3.68,
- -3.75,
- -3.77,
- -3.46,
- -3.39,
- -3.48,
- -3.28,
- -3.29,
- -3.16,
- -3.28,
- -3.06,
- -2.63,
- -2.34,
- -1.73,
- -1.14,
- -0.66,
- -1.35,
- -1.44,
- 0.06,
- 0.68,
- 2.03,
- 4.25,
- 4.25,
- 3.38,
- 3.82,
- 3.96,
- 3.16,
- 2.88,
- 4.44,
- 10.38,
- 3.11,
- 2.43,
- 2.32,
- 1.06,
- 0.08,
- -0.21,
- -0.59,
- -0.41,
- 0.25,
- -0.55,
- -0.38,
- -0.34,
- 0.13,
- -0.01,
- -0.01,
- -0.05,
- 0.32,
- 0.21,
- -0.84,
- -2.19,
- -3.53,
- -3.69,
- -2.6,
- -1.92,
- -1.14,
- -2.41,
- -2.9,
- -0.1,
- 3.08,
- 3.73,
- 2.97,
- 1.7,
- 0.69,
- -0.68,
- -0.07,
- 1.42,
- 0.55,
- 0.08,
- -1.38,
- -1.8,
- -2.6,
- -3.54,
- -4.23,
- -4.7,
- -4.59,
- -4.21,
- -3.51,
- -2.79,
- -2.15,
- -1.05,
- 0.25,
- 1.42,
- -0.51,
- -0.62,
- 1.19,
- 2.47,
- -0.98,
- -1.42,
- -0.06,
- -1.47,
- -0.72,
- -0.09,
- -0.07,
- 0.49,
- 0.24,
- -0.33,
- 0.08,
- 0.17,
- -0.38,
- -0.11,
- -0.79,
- 1.25,
- 0.99,
- 1.38,
- 2.48,
- 3.16,
- 2.69,
- 5.15,
- 7.9,
- 4.2,
- -1.21,
- -2.45,
- -2.47,
- -3.23,
- -3.63,
- -4.09,
- -3.66,
- -4.58,
- 0.02,
- 1.87,
- -0.05,
- -1.22,
- -3.98,
- -3.8,
- -3.81,
- -2.85,
- -2.99,
- -3.91,
- -4.24,
- -4.89,
- -5.56,
- -5.32,
- -5.82,
- -6.43,
- -7.05,
- -6.99,
- -7.95,
- -7.7,
- -7.73,
- -8.23,
- -8.5,
- -8.2,
- -7.98,
- -7.7,
- -7.87,
- -7.7,
- -6.9,
- -6.63,
- -6.7,
- -6.5,
- -5.24,
- -4.15,
- -2.47,
- -3.13,
- -4.28,
- -5.06,
- -5.58,
- -5.78,
- -5.54,
- -6.28,
- -7.14,
- -7.48,
- -7.51,
- -7.04,
- -7.29,
- -8.53,
- -8.39,
- -5.24,
- -3.36,
- -1.74,
- 1.03,
- -1.58,
- -2.56,
- -1.05,
- -0.37,
- -2.13,
- -3.62,
- -0.94,
- 0.04,
- 1.41,
- 2.07,
- 2.52,
- 2.72,
- -1.62,
- -0.14,
- 0.93,
- 1.83,
- 4.94,
- 5.5,
- 2.27,
- 1.67,
- 3.01,
- 2.64,
- 2.05,
- 1.91,
- 2.43,
- 2.45,
- 0.94,
- -2.95,
- -3.94,
- -3.23,
- -2.81,
- -2.96,
- -3.64,
- -4.47,
- -4.8,
- -4.74,
- -6.04,
- -7.29,
- -7.51,
- -7.59,
- -7.8,
- -8.19,
- -9.16,
- -9.3,
- -10.17,
- -10.67,
- -10.88,
- -11.8,
- -11.58,
- -10.93,
- -11.33,
- -11.73,
- -12.67,
- -12.83,
- -12.75,
- -12.02,
- -11.42,
- -11.21,
- -11.54,
- -12.08,
- -12.16,
- -11.96,
- -11.15,
- -11.19,
- -11.15,
- -10.99,
- -10.89,
- -10.62,
- -10.7,
- -10.69,
- -10.7,
- -10.41,
- -9.87,
- -9.44,
- -8.62,
- -8.27,
- -7.66,
- -7.84,
- -7.44,
- -6.93,
- -6.4,
- -6.25,
- -5.66,
- -5.01,
- -4.77,
- -4.7,
- -4.36,
- -3.9,
- -3.65,
- -2.99,
- -2.91,
- -3.21,
- -3.35,
- -2.95,
- -3.37,
- -0.5,
- -2.72,
- -2.77,
- -3.16,
- -2.5,
- -1.85,
- -0.97,
- 0.23,
- 1.2,
- 1.67,
- 3.32,
- 2.84,
- 4.03,
- 4.55,
- 5.6,
- 7.27,
- 7.41,
- 6.71,
- 6.45,
- 6.31,
- 4.41,
- 2.16,
- 1.99,
- 1.12,
- -0.77,
- -1.41,
- 0.56,
- 2.93,
- 0.45,
- -0.57,
- -0.13,
- -0.76,
- 0.1,
- -1.36,
- -1.38,
- -1.8,
- -1.27,
- -1.68,
- -3.4,
- -3.86,
- -5.05,
- -7.23,
- -6.52,
- -5.9,
- -5.54,
- -5.33,
- -5.63,
- -5.71,
- -5.5,
- -6.22,
- -6.92,
- -7.55,
- -7.69,
- -8.81,
- -8.56,
- -8.61,
- -8.7,
- -8.98,
- -8.44,
- -7.95,
- -7.84,
- -7.57,
- -7.38,
- -7.6,
- -8.27,
- -7.78,
- -7.5,
- -7.34,
- -6.82,
- -6.51,
- -5.89,
- -5.1,
- -4.6,
- -4.39,
- -4.37,
- -4.89,
- -4.57,
- -4.57,
- -4.21,
- -3.78,
- -3.78,
- -3.96,
- -4.0,
- -4.01,
- -3.95,
- -3.72,
- -3.52,
- -3.12,
- -2.89,
- -1.99,
- -1.53,
- -1.41,
- -1.81,
- -1.9,
- -2.02,
- -1.72,
- -1.65,
- -1.52,
- -1.47,
- -1.54,
- -1.56,
- -1.28,
- -1.18,
- -1.47,
- -1.86,
- -2.02,
- -1.98,
- -1.33,
- -1.02,
- -0.26,
- 0.46,
- -0.31,
- -1.14,
- -0.79,
- 0.71,
- 1.86,
- 2.92,
- 3.89,
- 5.05,
- 5.07,
- 4.73,
- 3.34,
- 4.16,
- 7.6,
- 11.03,
- 2.04,
- 0.98,
- 0.37,
- -0.03,
- 0.11,
- 0.57,
- 0.43,
- 1.02,
- 1.08,
- 1.78,
- 1.66,
- 1.72,
- 2.45,
- 2.17,
- 2.07,
- 1.9,
- 2.09,
- 2.67,
- 2.08,
- 1.32,
- 0.3,
- -0.56,
- -0.37,
- 1.22,
- 2.16,
- 2.62,
- 2.86,
- 2.15,
- 3.14,
- 3.95,
- 3.41,
- 1.9,
- 0.96,
- 0.65,
- 1.26,
- 0.8,
- 0.82,
- -0.28,
- -1.24,
- -2.22,
- -3.51,
- -4.48,
- -4.97,
- -4.52,
- -3.71,
- -3.07,
- -2.1,
- -1.13,
- -0.49,
- 0.47,
- 1.61,
- -0.66,
- -1.46,
- 0.28,
- 0.97,
- -0.4,
- 1.5,
- -1.03,
- -1.67,
- -0.81,
- -0.09,
- 0.5,
- 0.69,
- 0.53,
- -0.1,
- -0.18,
- -0.49,
- 0.4,
- -0.23,
- -1.24,
- 0.34,
- 2.24,
- 1.62,
- 0.86,
- 3.54,
- 3.54,
- 1.42,
- 5.02,
- 5.77,
- 0.96,
- -2.12,
- -3.11,
- -2.87,
- -2.94,
- -3.06,
- -5.25,
- -2.82,
- -5.16,
- -1.78,
- 1.02,
- -1.26,
- -3.42,
- -3.0,
- -3.09,
- -2.03,
- -2.32,
- -2.54,
- -3.5,
- -4.03,
- -4.74,
- -4.69,
- -4.49,
- -5.79,
- -6.0,
- -6.87,
- -6.92,
- -7.22,
- -6.81,
- -6.7,
- -6.18,
- -6.76,
- -6.09,
- -5.97,
- -5.63,
- -6.1,
- -5.21,
- -5.59,
- -5.48,
- -4.91,
- -2.78,
- -2.57,
- -1.66,
- -5.86,
- -5.93,
- -6.11,
- -5.61,
- -5.69,
- -5.87,
- -7.04,
- -7.33,
- -7.32,
- -7.53,
- -7.82,
- -8.45,
- -9.48,
- -9.33,
- -8.98,
- -5.08,
- 0.49,
- -3.33,
- -3.7,
- -1.09,
- -0.08,
- -0.17,
- -1.38,
- 0.03,
- 1.94,
- 1.84,
- 1.64,
- 2.16,
- 2.93,
- -2.72,
- -2.8,
- 1.37,
- 1.79,
- 1.54,
- 3.11,
- 3.36,
- 2.2,
- 1.1,
- 1.97,
- 2.38,
- 1.53,
- 2.4,
- 2.42,
- 1.15,
- -2.49,
- -4.27,
- -3.77,
- -3.15,
- -2.63,
- -2.48,
- -3.2,
- -3.86,
- -4.17,
- -4.41,
- -5.18,
- -6.04,
- -7.83,
- -7.08,
- -7.82,
- -7.8,
- -8.72,
- -8.53,
- -9.16,
- -9.55,
- -9.41,
- -10.22,
- -10.44,
- -10.25,
- -10.7,
- -11.5,
- -12.49,
- -12.52,
- -12.0,
- -11.43,
- -10.96,
- -10.96,
- -11.45,
- -11.86,
- -12.42,
- -12.25,
- -12.33,
- -11.44,
- -11.12,
- -11.29,
- -10.87,
- -10.97,
- -10.82,
- -10.62,
- -10.08,
- -9.42,
- -8.86,
- -8.32,
- -8.07,
- -7.48,
- -7.1,
- -6.83,
- -6.31,
- -5.65,
- -5.83,
- -6.22,
- -5.93,
- -5.51,
- -5.33,
- -5.09,
- -4.74,
- -4.68,
- -4.81,
- -5.07,
- -4.75,
- -4.32,
- -4.17,
- -4.75,
- -4.72,
- -1.91,
- -1.59,
- -1.86,
- -1.95,
- -0.89,
- -0.95,
- 0.07,
- 1.06,
- 1.49,
- 2.59,
- 3.76,
- 4.71,
- 5.79,
- 6.07,
- 6.08,
- 6.9,
- 8.22,
- 8.73,
- 8.27,
- 7.34,
- 7.99,
- 7.0,
- 3.37,
- 1.03,
- 2.96,
- 3.69,
- -2.77,
- -2.44,
- -1.19,
- 1.1,
- 1.65,
- 0.35,
- 0.67,
- 0.37,
- -0.6,
- -0.37,
- -0.2,
- -0.82,
- -1.88,
- -2.67,
- -3.95,
- -5.21,
- -5.03,
- -4.81,
- -4.79,
- -5.05,
- -5.33,
- -5.29,
- -5.19,
- -5.33,
- -6.76,
- -7.55,
- -7.47,
- -7.79,
- -7.62,
- -8.21,
- -8.35,
- -8.46,
- -8.19,
- -8.03,
- -7.85,
- -7.85,
- -7.46,
- -7.12,
- -7.23,
- -6.65,
- -6.34,
- -6.77,
- -6.41,
- -6.73,
- -5.73,
- -5.55,
- -5.22,
- -2.95,
- -2.65,
- -2.9,
- -3.81,
- -2.95,
- -2.68,
- -2.4,
- -1.99,
- -1.12,
- -0.42,
- -1.3,
- -0.95,
- 0.0,
- 0.69,
- 1.25,
- 2.2,
- 2.13,
- 1.47,
- 2.23,
- 2.63,
- 3.37,
- 3.39,
- 2.4,
- 1.2,
- 0.91,
- 1.06,
- 1.11,
- 0.88,
- 1.5,
- 1.02,
- 0.53,
- 0.35,
- -0.09,
- 0.17,
- 0.13,
- 0.15,
- 0.03,
- 0.34,
- 0.98,
- 0.86,
- 0.83,
- 0.54,
- 0.81,
- 3.51,
- 5.76,
- 5.86,
- 4.45,
- 4.28,
- 4.92,
- 5.16,
- 6.34,
- 8.98,
- 2.93,
- 0.4,
- 0.21,
- 0.82,
- 1.08,
- 0.76,
- 1.33,
- 2.1,
- 1.71,
- 2.18,
- 3.03,
- 3.17,
- 3.42,
- 3.67,
- 3.68,
- 3.58,
- 3.87,
- 4.3,
- 4.28,
- 3.91,
- 4.12,
- 4.73,
- 4.11,
- 2.63,
- 2.12,
- 3.14,
- 4.31,
- 4.86,
- 3.04,
- 5.6,
- 3.43,
- 2.81,
- 2.45,
- 1.94,
- 1.09,
- -0.26,
- 1.45,
- 0.86,
- -0.31,
- -1.76,
- -3.3,
- -4.28,
- -4.72,
- -4.1,
- -3.09,
- -2.28,
- -1.39,
- -0.14,
- 0.32,
- 0.27,
- -0.22,
- -1.21,
- 1.54,
- 0.66,
- 1.08,
- -0.61,
- -1.69,
- -2.14,
- -1.47,
- -0.46,
- -0.14,
- 0.42,
- 0.14,
- 0.25,
- -0.03,
- 0.14,
- -0.37,
- -0.75,
- -0.57,
- 0.1,
- 0.17,
- -0.21,
- 0.72,
- 6.08,
- 5.39,
- 4.94,
- 3.59,
- 3.76,
- 4.24,
- 3.72,
- -0.98,
- -2.65,
- -2.86,
- -2.08,
- -2.56,
- -3.97,
- -2.9,
- -3.94,
- -4.82,
- -1.46,
- 0.67,
- -0.62,
- -2.37,
- -1.68,
- -1.37,
- -1.41,
- -1.84,
- -1.87,
- -2.65,
- -3.33,
- -3.98,
- -3.94,
- -4.35,
- -4.71,
- -5.44,
- -6.37,
- -7.02,
- -6.89,
- -5.72,
- -6.29,
- -5.52,
- -4.98,
- -4.69,
- -4.21,
- -4.45,
- -4.32,
- -3.86,
- -3.16,
- -2.55,
- -1.66,
- -1.41,
- -6.58,
- -6.26,
- -6.45,
- -5.75,
- -5.04,
- -5.69,
- -6.94,
- -7.3,
- -7.14,
- -7.35,
- -7.88,
- -8.37,
- -9.02,
- -9.45,
- -9.05,
- -8.31,
- -7.13,
- -1.79,
- -3.92,
- -1.51,
- -3.0,
- -2.21,
- -5.85,
- -3.5,
- 0.4,
- -0.43,
- -0.98,
- 0.49,
- -0.05,
- -1.54,
- -2.82,
- -1.05,
- 9.27,
- 2.2,
- 1.66,
- 2.94,
- 3.47,
- 0.93,
- 2.01,
- 1.37,
- 1.88,
- 1.78,
- 1.99,
- 2.2,
- -0.26,
- -2.42,
- -2.34,
- -3.11,
- -2.76,
- -2.24,
- -2.63,
- -2.86,
- -3.66,
- -3.61,
- -4.24,
- -5.16,
- -5.56,
- -6.56,
- -6.85,
- -7.5,
- -7.91,
- -7.67,
- -7.71,
- -7.82,
- -8.11,
- -8.37,
- -9.27,
- -9.88,
- -9.44,
- -9.74,
- -10.4,
- -11.55,
- -11.5,
- -11.18,
- -10.85,
- -10.79,
- -10.88,
- -11.15,
- -11.04,
- -11.19,
- -10.77,
- -10.73,
- -10.28,
- -10.15,
- -10.04,
- -10.57,
- -10.91,
- -10.66,
- -9.86,
- -9.15,
- -8.56,
- -8.06,
- -7.39,
- -6.69,
- -6.33,
- -6.25,
- -6.48,
- -6.08,
- -6.9,
- -7.07,
- -6.41,
- -5.67,
- -5.34,
- -5.06,
- -4.64,
- -4.68,
- -4.2,
- -4.32,
- -4.54,
- -4.32,
- -3.97,
- -4.38,
- -4.54,
- -3.46,
- -3.65,
- -0.84,
- -1.12,
- -0.51,
- -0.79,
- 0.98,
- 0.84,
- 1.86,
- 2.23,
- 3.47,
- 3.98,
- 4.59,
- 5.55,
- 6.36,
- 7.82,
- 8.29,
- 9.11,
- 9.26,
- 9.51,
- 9.15,
- 7.72,
- 8.45,
- 7.62,
- 5.51,
- 3.19,
- 5.26,
- 7.19,
- 2.91,
- -0.01,
- 0.96,
- 2.72,
- 0.0,
- -0.24,
- -0.75,
- -0.22,
- 0.42,
- 0.42,
- 0.89,
- 0.52,
- -1.77,
- -3.35,
- -4.33,
- -4.25,
- -4.17,
- -3.79,
- -3.91,
- -4.55,
- -5.13,
- -4.96,
- -4.11,
- -7.01,
- -7.45,
- -7.32,
- -7.02,
- -7.04,
- -7.45,
- -7.67,
- -8.18,
- -8.02,
- -7.66,
- -7.52,
- -7.67,
- -7.47,
- -6.95,
- -6.67,
- -6.05,
- -5.57,
- -4.9,
- -4.6,
- -4.16,
- -4.05,
- -3.79,
- -3.44,
- -3.03,
- -3.19,
- -2.05,
- -2.95,
- -2.83,
- -2.76,
- -2.74,
- -1.94,
- -1.44,
- -1.0,
- -0.04,
- 0.54,
- 0.95,
- 1.15,
- 1.11,
- 1.37,
- 0.69,
- 0.28,
- 0.4,
- 1.74,
- 2.45,
- 0.75,
- 1.12,
- 1.47,
- 2.28,
- 3.52,
- 4.48,
- 5.25,
- 5.33,
- 4.62,
- 3.77,
- 3.17,
- 2.86,
- 2.72,
- 2.58,
- 2.34,
- 2.0,
- 1.7,
- 1.15,
- 0.77,
- 1.06,
- 1.9,
- -0.16,
- 0.1,
- 0.15,
- 1.26,
- 2.93,
- 4.43,
- 6.13,
- 5.28,
- 6.59,
- 7.85,
- 9.58,
- -1.21,
- 0.88,
- 1.25,
- 1.75,
- 1.63,
- 2.87,
- 3.06,
- 3.03,
- 3.03,
- 3.56,
- 4.62,
- 4.48,
- 4.95,
- 4.4,
- 3.72,
- 4.36,
- 4.73,
- 4.58,
- 4.73,
- 5.5,
- 5.76,
- 5.89,
- 6.01,
- 5.06,
- 4.24,
- 4.52,
- 5.26,
- 5.5,
- 3.93,
- 3.87,
- 2.65,
- 3.1,
- 3.6,
- 2.35,
- 1.19,
- 1.68,
- 1.42,
- 0.73,
- -1.24,
- -2.96,
- -3.91,
- -4.29,
- -3.73,
- -2.66,
- -1.74,
- -0.9,
- -0.14,
- -0.01,
- 0.62,
- -0.01,
- -0.81,
- -0.64,
- -1.47,
- 0.69,
- -0.47,
- -1.09,
- -3.18,
- -1.47,
- -0.83,
- -0.05,
- 0.09,
- 0.1,
- 0.08,
- 0.61,
- 0.41,
- 1.38,
- 1.18,
- 0.67,
- 1.63,
- 1.75,
- 4.06,
- 8.83,
- 9.78,
- 8.35,
- 7.36,
- 5.36,
- 2.17,
- -0.4,
- 4.37,
- 0.44,
- -1.38,
- -1.56,
- -2.01,
- -1.45,
- -2.42,
- -3.42,
- -2.62,
- -4.54,
- -3.13,
- -4.84,
- 1.74,
- -0.04,
- -0.03,
- -0.1,
- -0.19,
- -0.01,
- -0.72,
- -0.67,
- -1.86,
- -2.6,
- -2.64,
- -3.04,
- -3.37,
- -3.77,
- -4.69,
- -5.41,
- -5.65,
- -4.43,
- -4.79,
- -3.71,
- -4.48,
- -4.55,
- -4.08,
- -4.09,
- -4.26,
- -4.14,
- -3.36,
- -2.09,
- -1.83,
- -1.09,
- -6.65,
- -6.34,
- -6.3,
- -5.06,
- -5.19,
- -5.83,
- -6.95,
- -6.46,
- -7.15,
- -7.85,
- -8.3,
- -8.77,
- -9.18,
- -9.3,
- -8.87,
- -7.77,
- -6.33,
- -4.75,
- -2.22,
- -2.02,
- -3.83,
- -5.66,
- -6.33,
- -3.58,
- -2.83,
- -5.42,
- -3.31,
- 0.86,
- -2.16,
- 1.12,
- 1.0,
- 8.02,
- 8.72,
- 3.18,
- 2.38,
- 2.94,
- 0.96,
- 4.92,
- 1.08,
- 2.81,
- 2.19,
- 2.37,
- 2.56,
- 2.18,
- 0.29,
- -2.85,
- -1.37,
- -2.39,
- -1.74,
- -1.86,
- -2.68,
- -3.49,
- -3.3,
- -3.89,
- -4.27,
- -4.31,
- -4.35,
- -5.44,
- -6.3,
- -7.16,
- -7.56,
- -6.76,
- -6.92,
- -6.59,
- -6.99,
- -8.81,
- -9.98,
- -9.46,
- -8.83,
- -8.72,
- -9.46,
- -10.51,
- -10.84,
- -10.64,
- -10.57,
- -10.88,
- -10.97,
- -10.95,
- -10.66,
- -10.68,
- -10.65,
- -10.69,
- -10.63,
- -10.43,
- -10.53,
- -10.8,
- -10.74,
- -10.1,
- -9.06,
- -8.24,
- -7.92,
- -7.69,
- -7.09,
- -6.44,
- -5.63,
- -6.43,
- -6.77,
- -6.62,
- -6.66,
- -6.27,
- -6.12,
- -5.41,
- -4.66,
- -4.19,
- -3.89,
- -3.89,
- -4.12,
- -4.17,
- -3.86,
- -3.64,
- -3.83,
- -3.66,
- -3.62,
- -2.54,
- -2.63,
- -1.03,
- -0.87,
- -0.51,
- 1.39,
- 1.64,
- 1.5,
- 2.83,
- 2.86,
- 3.89,
- 4.14,
- 4.5,
- 5.19,
- 6.51,
- 7.66,
- 9.24,
- 10.4,
- 10.57,
- 10.79,
- 10.59,
- 10.42,
- 7.75,
- 8.98,
- 7.42,
- 6.4,
- 7.06,
- 6.62,
- 6.21,
- 3.07,
- 2.85,
- 1.33,
- 1.2,
- -1.15,
- -0.32,
- -0.77,
- -2.19,
- 1.72,
- 2.36,
- -0.07,
- -1.33,
- -3.27,
- -4.13,
- -3.57,
- -3.47,
- -3.28,
- -3.33,
- -3.56,
- -5.64,
- -4.91,
- -4.02,
- -8.15,
- -7.82,
- -7.79,
- -7.59,
- -7.63,
- -7.6,
- -7.35,
- -7.16,
- -6.92,
- -6.55,
- -6.16,
- -6.21,
- -6.15,
- -5.56,
- -5.28,
- -4.79,
- -4.01,
- -3.19,
- -2.96,
- -2.48,
- -2.3,
- -1.77,
- -1.51,
- -1.49,
- -1.72,
- -2.07,
- -1.85,
- -2.38,
- -2.98,
- -2.73,
- -1.8,
- -1.21,
- -0.93,
- -0.63,
- 0.32,
- 1.31,
- 1.82,
- 1.54,
- 0.95,
- -0.35,
- -0.15,
- -0.05,
- -0.22,
- -0.33,
- -0.74,
- -0.22,
- 0.56,
- 0.46,
- 0.64,
- 1.27,
- 2.05,
- 2.22,
- 3.06,
- 4.94,
- 5.82,
- 6.25,
- 6.14,
- 5.38,
- 4.63,
- 4.06,
- 3.73,
- 3.16,
- 2.45,
- 1.67,
- 1.02,
- 1.47,
- 0.99,
- 0.3,
- 0.11,
- 0.55,
- 2.34,
- 4.55,
- 6.07,
- 5.71,
- 6.4,
- 7.71,
- -0.97,
- 1.16,
- 1.84,
- 2.64,
- 2.12,
- 3.25,
- 3.69,
- 3.38,
- 3.4,
- 4.72,
- 4.92,
- 5.23,
- 5.82,
- 5.78,
- 6.44,
- 6.27,
- 6.0,
- 5.91,
- 6.21,
- 6.57,
- 6.99,
- 7.57,
- 7.32,
- 6.98,
- 6.38,
- 5.55,
- 5.01,
- 5.51,
- 5.41,
- 4.92,
- 4.98,
- 4.01,
- 3.47,
- 2.62,
- 1.71,
- 1.58,
- 1.55,
- 1.26,
- -0.83,
- -2.86,
- -3.77,
- -3.75,
- -3.33,
- -2.22,
- -1.91,
- -1.39,
- -1.13,
- -0.58,
- 1.11,
- -0.31,
- 1.43,
- -2.96,
- -0.91,
- -1.66,
- -4.39,
- -2.57,
- -2.93,
- 0.07,
- -0.96,
- -0.97,
- -0.23,
- -0.37,
- -0.05,
- 0.36,
- 0.26,
- 0.86,
- 2.37,
- 3.07,
- 4.35,
- 4.54,
- 11.73,
- 13.49,
- 11.37,
- 8.93,
- 7.12,
- 6.24,
- 3.81,
- -2.51,
- -6.53,
- -5.29,
- -2.57,
- -1.99,
- -1.12,
- -0.69,
- -1.2,
- -2.08,
- -3.13,
- -3.68,
- -3.68,
- -2.63,
- -3.28,
- -3.34,
- 3.06,
- 0.23,
- 0.82,
- 0.65,
- 0.59,
- 0.58,
- -1.31,
- -1.3,
- -1.75,
- -1.9,
- -2.11,
- -2.23,
- -2.28,
- -3.57,
- -3.81,
- -3.42,
- -2.43,
- -1.93,
- -3.05,
- -3.79,
- -3.05,
- -3.16,
- -3.11,
- -1.5,
- -0.97,
- -3.22,
- -2.76,
- -4.67,
- -6.87,
- -5.58,
- -5.29,
- -4.85,
- -5.34,
- -5.43,
- -6.16,
- -5.65,
- -7.21,
- -8.13,
- -8.42,
- -8.94,
- -9.35,
- -8.8,
- -8.08,
- -7.24,
- -6.5,
- -5.69,
- -1.74,
- 0.78,
- -5.42,
- -6.2,
- -4.98,
- -3.74,
- -2.77,
- -3.44,
- -0.75,
- -2.84,
- 0.16,
- 2.75,
- 6.0,
- 13.28,
- 6.94,
- 5.29,
- 3.92,
- 2.85,
- 1.19,
- -1.6,
- 6.21,
- 2.19,
- 3.36,
- 2.99,
- 3.32,
- 3.08,
- 0.19,
- -1.1,
- -2.58,
- -2.49,
- -0.74,
- -0.95,
- -2.72,
- -3.4,
- -3.22,
- -3.8,
- -3.35,
- -3.48,
- -4.22,
- -5.05,
- -5.91,
- -6.29,
- -7.07,
- -6.32,
- -6.32,
- -5.52,
- -7.99,
- -9.19,
- -9.79,
- -9.06,
- -8.62,
- -8.32,
- -9.3,
- -10.0,
- -10.0,
- -9.84,
- -9.76,
- -10.26,
- -10.23,
- -9.88,
- -10.03,
- -10.29,
- -10.19,
- -9.72,
- -9.48,
- -9.8,
- -10.12,
- -10.12,
- -9.69,
- -8.97,
- -8.4,
- -7.87,
- -7.05,
- -6.59,
- -6.35,
- -6.12,
- -6.05,
- -5.98,
- -6.43,
- -6.28,
- -6.13,
- -5.74,
- -4.87,
- -4.38,
- -3.91,
- -3.2,
- -3.28,
- -3.29,
- -3.19,
- -3.26,
- -3.18,
- -3.27,
- -3.24,
- -2.86,
- -2.38,
- -2.03,
- -2.51,
- -2.51,
- 0.14,
- -0.28,
- 0.35,
- 1.25,
- 2.19,
- 2.77,
- 3.0,
- 3.67,
- 3.94,
- 4.81,
- 6.16,
- 7.4,
- 8.49,
- 9.63,
- 11.06,
- 11.99,
- 12.24,
- 11.97,
- 11.91,
- 10.94,
- 8.93,
- 7.06,
- 6.59,
- 7.56,
- 3.15,
- 4.68,
- 2.78,
- 2.68,
- 1.94,
- 1.81,
- -0.41,
- -1.0,
- -0.55,
- -1.01,
- 1.68,
- 0.92,
- 0.48,
- -2.02,
- -3.04,
- -3.44,
- -3.09,
- -2.99,
- -3.55,
- -4.3,
- -4.99,
- -5.05,
- -4.48,
- -4.95,
- -7.65,
- -7.5,
- -7.38,
- -7.46,
- -7.37,
- -6.96,
- -6.85,
- -6.43,
- -5.73,
- -4.92,
- -4.62,
- -4.37,
- -3.64,
- -3.18,
- -2.64,
- -2.12,
- -1.8,
- -1.32,
- -0.94,
- -0.58,
- -0.36,
- 0.15,
- 0.72,
- 0.48,
- 0.24,
- -0.96,
- -1.47,
- -2.23,
- -1.31,
- -0.89,
- -0.59,
- -0.77,
- -0.55,
- -0.79,
- -0.65,
- -0.12,
- 0.65,
- 0.55,
- 0.18,
- 0.27,
- 0.79,
- 0.06,
- -0.15,
- 0.49,
- 0.52,
- 0.67,
- 0.7,
- 0.89,
- 0.82,
- 0.95,
- 1.54,
- 2.05,
- 2.36,
- 2.77,
- 3.17,
- 3.73,
- 5.51,
- 7.13,
- 7.57,
- 6.33,
- 5.8,
- 5.16,
- 4.19,
- 3.55,
- 2.69,
- 1.87,
- 1.88,
- 2.4,
- 2.28,
- 2.16,
- 3.2,
- 4.27,
- 4.22,
- 4.7,
- 5.18,
- 6.79,
- 2.46,
- 2.08,
- 3.33,
- 3.4,
- 2.97,
- 3.76,
- 4.55,
- 3.94,
- 4.43,
- 3.99,
- 5.02,
- 6.31,
- 6.65,
- 6.58,
- 5.86,
- 6.13,
- 6.68,
- 7.23,
- 7.16,
- 7.47,
- 7.89,
- 7.73,
- 7.49,
- 7.4,
- 7.45,
- 6.46,
- 5.8,
- 5.2,
- 6.63,
- 7.54,
- 6.73,
- 5.13,
- 2.96,
- 1.88,
- 1.44,
- 0.71,
- 0.88,
- 1.26,
- -0.28,
- -2.29,
- -3.2,
- -3.48,
- -3.02,
- -2.35,
- -2.27,
- -2.07,
- -2.15,
- -1.67,
- -0.4,
- -2.37,
- 3.85,
- 0.98,
- -0.01,
- 0.4,
- -1.01,
- -1.31,
- 1.11,
- -2.39,
- -2.99,
- -1.46,
- -1.55,
- -0.52,
- 0.15,
- 0.18,
- 0.49,
- 1.58,
- 2.19,
- 2.86,
- 4.54,
- 9.0,
- 11.38,
- 10.46,
- 9.11,
- 8.08,
- 6.9,
- 7.04,
- 5.67,
- 2.8,
- -2.1,
- -2.58,
- -0.4,
- -1.65,
- -0.98,
- -0.31,
- -0.4,
- -1.25,
- -2.33,
- -3.15,
- -2.89,
- -2.44,
- -2.07,
- -2.36,
- -2.59,
- 1.41,
- 1.08,
- 1.23,
- 1.03,
- -0.06,
- -0.54,
- -1.27,
- -0.49,
- -0.74,
- -0.23,
- 0.12,
- -1.04,
- -1.19,
- -2.09,
- -2.26,
- -1.25,
- -0.28,
- -0.89,
- -2.16,
- -2.47,
- -1.02,
- -1.47,
- -1.8,
- -3.16,
- -4.75,
- -4.26,
- -4.78,
- -5.37,
- -5.49,
- -4.25,
- -4.14,
- -4.91,
- -4.7,
- -4.6,
- -4.91,
- -6.87,
- -7.71,
- -8.05,
- -8.6,
- -8.65,
- -8.2,
- -7.15,
- -6.53,
- -5.77,
- -5.87,
- -2.64,
- -2.88,
- -1.28,
- -2.63,
- -1.6,
- 0.43,
- -1.23,
- 2.74,
- 1.12,
- 2.28,
- 5.41,
- 8.09,
- 9.82,
- 6.83,
- 7.1,
- 6.63,
- 5.49,
- 3.75,
- 1.9,
- -0.4,
- -1.7,
- 5.71,
- 1.85,
- 1.86,
- 2.53,
- 3.98,
- 1.21,
- 0.25,
- -0.97,
- -1.37,
- -0.57,
- 0.59,
- -1.74,
- -2.96,
- -3.25,
- -3.17,
- -3.3,
- -3.33,
- -3.35,
- -4.52,
- -5.62,
- -6.03,
- -6.52,
- -6.28,
- -6.3,
- -7.22,
- -8.26,
- -8.46,
- -8.86,
- -8.29,
- -8.36,
- -7.96,
- -8.61,
- -9.57,
- -9.23,
- -9.11,
- -8.75,
- -9.12,
- -9.31,
- -8.86,
- -9.03,
- -9.48,
- -8.89,
- -8.63,
- -8.61,
- -8.98,
- -9.08,
- -9.13,
- -8.92,
- -8.56,
- -8.01,
- -7.83,
- -6.41,
- -6.07,
- -5.63,
- -6.29,
- -5.78,
- -5.53,
- -5.7,
- -5.67,
- -5.16,
- -4.39,
- -3.81,
- -3.48,
- -3.09,
- -2.69,
- -2.11,
- -1.75,
- -2.47,
- -2.09,
- -2.5,
- -2.04,
- -1.87,
- -1.58,
- -1.66,
- -0.4,
- -1.15,
- -1.17,
- 1.54,
- 0.6,
- 1.05,
- 2.07,
- 2.14,
- 2.47,
- 2.86,
- 4.38,
- 6.03,
- 6.04,
- 6.68,
- 8.78,
- 9.98,
- 12.36,
- 13.46,
- 15.24,
- 14.99,
- 13.85,
- 11.87,
- 11.25,
- 10.58,
- 8.28,
- 5.71,
- 6.22,
- 1.21,
- 3.47,
- 3.14,
- 2.14,
- 1.24,
- 1.72,
- 1.0,
- -0.41,
- 0.49,
- 1.84,
- 1.04,
- -0.33,
- -0.96,
- -4.3,
- -2.52,
- -2.36,
- -2.15,
- -2.2,
- -3.56,
- -3.98,
- -4.12,
- -3.56,
- -3.11,
- -4.32,
- -6.26,
- -7.12,
- -6.91,
- -6.91,
- -6.42,
- -6.31,
- -6.39,
- -5.84,
- -5.44,
- -5.23,
- -4.56,
- -4.12,
- -3.79,
- -2.43,
- -0.97,
- -0.54,
- 0.11,
- 1.39,
- 2.18,
- 2.5,
- 2.64,
- 2.58,
- 1.97,
- 2.02,
- 2.07,
- 1.68,
- 0.5,
- 1.9,
- 2.76,
- 2.12,
- 2.02,
- 2.68,
- 2.88,
- 2.82,
- 3.01,
- 3.43,
- 2.67,
- 1.89,
- 1.85,
- 1.92,
- 1.92,
- 1.35,
- 1.33,
- 2.17,
- 2.57,
- 2.42,
- 2.68,
- 2.44,
- 2.25,
- 2.36,
- 2.61,
- 2.85,
- 2.84,
- 3.06,
- 3.04,
- 3.34,
- 3.69,
- 3.76,
- 4.42,
- 6.47,
- 8.17,
- 7.0,
- 6.13,
- 5.08,
- 3.67,
- 3.29,
- 2.94,
- 3.12,
- 3.23,
- 3.6,
- 4.38,
- 5.19,
- 5.74,
- 5.27,
- 5.46,
- 7.21,
- 4.06,
- 4.14,
- 3.98,
- 3.44,
- 3.64,
- 4.68,
- 4.1,
- 4.59,
- 4.23,
- 4.88,
- 6.08,
- 6.96,
- 7.0,
- 6.77,
- 7.49,
- 8.22,
- 8.3,
- 8.31,
- 8.41,
- 8.64,
- 8.21,
- 7.9,
- 7.29,
- 7.26,
- 7.39,
- 6.63,
- 6.5,
- 5.87,
- 6.47,
- 7.6,
- 7.89,
- 5.62,
- 3.47,
- 2.03,
- 3.21,
- 1.49,
- 0.75,
- 1.06,
- 0.98,
- -0.81,
- -2.51,
- -2.88,
- -2.73,
- -2.6,
- -2.49,
- -2.08,
- -2.17,
- -1.51,
- -0.71,
- -1.28,
- 3.23,
- -0.35,
- 3.43,
- 0.23,
- -3.48,
- -2.09,
- -1.21,
- -2.44,
- -2.56,
- -1.06,
- -0.5,
- 0.23,
- 1.58,
- 1.34,
- 2.33,
- 2.59,
- 3.25,
- 4.83,
- 8.48,
- 8.8,
- 8.71,
- 6.5,
- 4.39,
- 1.67,
- 4.75,
- 6.36,
- 7.46,
- 5.26,
- 4.25,
- 0.6,
- 1.23,
- 3.85,
- 1.46,
- 1.99,
- 0.55,
- -0.47,
- -0.33,
- -0.76,
- -1.68,
- -2.53,
- -2.83,
- -2.37,
- -1.72,
- -2.88,
- -1.91,
- 2.55,
- 0.72,
- -0.31,
- -0.1,
- -0.51,
- -0.29,
- 0.55,
- 0.57,
- 0.65,
- 0.54,
- 0.89,
- -0.53,
- -0.72,
- 0.53,
- 1.47,
- 1.19,
- 0.98,
- 0.21,
- 0.27,
- -1.25,
- -1.89,
- -4.14,
- -5.03,
- -3.85,
- -2.85,
- -2.95,
- -4.39,
- -3.5,
- -3.01,
- -2.99,
- -3.77,
- -3.29,
- -3.82,
- -5.92,
- -6.6,
- -6.76,
- -6.9,
- -7.1,
- -7.0,
- -6.32,
- -5.73,
- -5.91,
- -5.48,
- -2.24,
- -1.79,
- 0.09,
- 0.52,
- 1.41,
- 2.45,
- 1.94,
- 2.14,
- 4.78,
- 6.23,
- 12.11,
- 7.21,
- 6.76,
- 6.33,
- 6.05,
- 6.48,
- 7.46,
- 5.72,
- 5.21,
- 2.87,
- 0.57,
- 0.17,
- 3.98,
- 0.54,
- 3.19,
- 4.52,
- 3.19,
- 1.44,
- -0.78,
- -0.81,
- -0.63,
- 1.33,
- -0.97,
- -1.61,
- -2.71,
- -3.24,
- -3.28,
- -3.21,
- -2.97,
- -4.4,
- -5.01,
- -4.83,
- -5.19,
- -5.54,
- -5.58,
- -6.23,
- -7.26,
- -7.14,
- -6.28,
- -6.46,
- -7.65,
- -8.07,
- -7.95,
- -8.98,
- -8.53,
- -8.17,
- -7.87,
- -8.12,
- -8.25,
- -7.6,
- -7.88,
- -8.36,
- -7.82,
- -7.32,
- -7.22,
- -8.02,
- -8.11,
- -8.19,
- -8.1,
- -7.66,
- -7.19,
- -6.88,
- -6.4,
- -5.25,
- -6.1,
- -5.86,
- -6.07,
- -4.66,
- -4.07,
- -3.68,
- -3.33,
- -3.07,
- -2.72,
- -2.16,
- -2.04,
- -1.35,
- -1.24,
- -0.64,
- -1.11,
- -1.28,
- -1.04,
- -0.33,
- -0.29,
- -1.12,
- 0.25,
- 0.06,
- 0.07,
- 0.8,
- 1.49,
- 1.8,
- 2.04,
- 2.67,
- 3.13,
- 2.78,
- 4.32,
- 5.78,
- 5.64,
- 7.96,
- 9.76,
- 10.59,
- 11.89,
- 13.08,
- 13.96,
- 13.99,
- 13.97,
- 16.2,
- 13.06,
- 12.32,
- 9.07,
- 8.84,
- 4.44,
- 4.86,
- 5.05,
- 3.39,
- 2.42,
- 1.67,
- 1.63,
- 1.18,
- 1.18,
- 1.77,
- 1.37,
- 1.44,
- 2.08,
- 1.5,
- -1.94,
- -1.99,
- -1.32,
- -1.26,
- -1.09,
- -2.06,
- -3.03,
- -3.55,
- -3.81,
- -2.99,
- -2.38,
- -2.99,
- -4.05,
- -6.5,
- -5.96,
- -5.47,
- -4.85,
- -4.58,
- -4.42,
- -4.2,
- -4.27,
- -4.73,
- -4.71,
- -4.49,
- -3.78,
- -2.83,
- -2.23,
- -1.67,
- -0.53,
- 0.46,
- 1.44,
- 3.02,
- 3.82,
- 4.16,
- 4.27,
- 4.2,
- 3.81,
- 4.22,
- 4.44,
- 4.27,
- 4.67,
- 4.73,
- 4.84,
- 5.07,
- 5.43,
- 5.62,
- 5.86,
- 5.82,
- 5.63,
- 5.44,
- 5.11,
- 4.0,
- 4.32,
- 4.57,
- 4.47,
- 3.87,
- 3.98,
- 4.17,
- 3.99,
- 3.72,
- 3.98,
- 4.16,
- 4.67,
- 4.57,
- 4.09,
- 3.72,
- 3.45,
- 3.27,
- 3.62,
- 4.28,
- 5.07,
- 6.05,
- 6.65,
- 8.27,
- 7.43,
- 6.22,
- 5.02,
- 4.47,
- 4.02,
- 4.13,
- 4.53,
- 4.76,
- 4.96,
- 5.84,
- 6.44,
- 6.85,
- 7.85,
- 6.77,
- 8.78,
- 4.76,
- 3.79,
- 2.63,
- 4.02,
- 4.15,
- 3.72,
- 4.73,
- 4.94,
- 5.19,
- 6.66,
- 7.52,
- 8.66,
- 7.68,
- 7.03,
- 7.08,
- 7.27,
- 7.51,
- 7.27,
- 7.23,
- 7.34,
- 7.49,
- 8.17,
- 8.04,
- 7.56,
- 6.89,
- 6.75,
- 6.36,
- 6.12,
- 6.45,
- 6.63,
- 5.24,
- 5.15,
- 2.78,
- 3.8,
- 2.38,
- 1.59,
- 1.65,
- 1.79,
- 0.13,
- -1.26,
- -1.48,
- -1.73,
- -1.79,
- -2.12,
- -1.78,
- -1.42,
- -0.54,
- 0.43,
- -1.19,
- 2.4,
- 0.19,
- 0.54,
- -1.88,
- -1.51,
- -2.54,
- -0.93,
- -1.72,
- -2.17,
- 0.58,
- 1.1,
- 1.13,
- 1.08,
- 1.35,
- 2.14,
- 2.93,
- 4.39,
- 5.41,
- 6.81,
- 8.25,
- 9.03,
- 5.71,
- 4.33,
- 3.51,
- 3.21,
- 4.03,
- 5.95,
- 6.15,
- 5.7,
- 5.58,
- 4.35,
- 4.48,
- 4.36,
- 4.89,
- 4.88,
- 2.51,
- 0.94,
- 1.35,
- 0.72,
- 0.34,
- -0.1,
- -0.67,
- -1.58,
- -1.32,
- -1.47,
- -1.14,
- 1.7,
- 0.57,
- 1.01,
- 0.98,
- 0.4,
- 0.8,
- 1.39,
- 1.66,
- 1.95,
- 2.07,
- 1.7,
- 1.77,
- 2.09,
- 2.73,
- 1.73,
- 1.79,
- 1.72,
- 1.68,
- -0.19,
- -1.31,
- -1.91,
- -3.82,
- -2.27,
- -1.06,
- 0.26,
- -0.34,
- -1.39,
- -1.89,
- -2.02,
- -2.07,
- -2.01,
- -2.28,
- -4.7,
- -5.45,
- -5.19,
- -4.96,
- -5.38,
- -5.41,
- -5.2,
- -5.24,
- -4.88,
- -5.81,
- -6.31,
- -2.37,
- 0.16,
- 1.4,
- 2.04,
- 1.9,
- 2.57,
- 4.97,
- 7.15,
- 7.35,
- 6.55,
- 6.83,
- 7.73,
- 8.12,
- 8.7,
- 8.99,
- 8.4,
- 9.37,
- 6.96,
- 5.78,
- 4.06,
- 2.55,
- 0.95,
- 2.89,
- 3.9,
- 5.11,
- 3.36,
- 1.49,
- -0.12,
- -0.1,
- -0.66,
- 0.55,
- 1.23,
- -0.1,
- -1.27,
- -2.14,
- -2.66,
- -3.02,
- -2.62,
- -5.01,
- -4.46,
- -3.94,
- -3.9,
- -4.52,
- -4.75,
- -4.93,
- -5.72,
- -5.95,
- -5.25,
- -5.22,
- -6.54,
- -7.3,
- -7.47,
- -7.58,
- -7.39,
- -7.18,
- -6.99,
- -6.88,
- -6.52,
- -6.0,
- -6.33,
- -6.52,
- -6.57,
- -6.07,
- -6.27,
- -6.54,
- -6.93,
- -6.48,
- -6.35,
- -5.95,
- -5.68,
- -4.93,
- -4.9,
- -4.77,
- -4.37,
- -4.71,
- -4.24,
- -4.45,
- -2.5,
- -1.86,
- -1.11,
- -0.97,
- -1.15,
- -0.85,
- -0.45,
- -0.45,
- 0.23,
- 0.36,
- 0.07,
- 0.01,
- 0.21,
- 1.42,
- 1.14,
- -0.08,
- 1.26,
- 0.45,
- 0.38,
- 1.1,
- 1.44,
- 1.78,
- 2.53,
- 2.57,
- 4.93,
- 6.82,
- 7.91,
- 8.58,
- 9.43,
- 9.7,
- 10.73,
- 11.71,
- 12.28,
- 13.03,
- 13.65,
- 13.6,
- 13.69,
- 14.58,
- 14.65,
- 11.01,
- 9.57,
- 6.31,
- 5.0,
- 6.06,
- 4.83,
- 3.74,
- 2.73,
- 2.88,
- 2.25,
- 1.3,
- 1.5,
- 1.62,
- 2.18,
- 2.16,
- 1.99,
- 0.14,
- 1.48,
- 2.23,
- 0.34,
- -0.17,
- -0.31,
- -1.72,
- -2.83,
- -3.32,
- -3.56,
- -3.01,
- -3.39,
- -3.91,
- -5.07,
- -5.28,
- -4.78,
- -3.86,
- -3.01,
- -2.55,
- -2.56,
- -2.98,
- -2.75,
- -3.09,
- -4.28,
- -4.52,
- -5.25,
- -5.52,
- -4.53,
- -3.44,
- -2.47,
- -0.87,
- 0.69,
- 2.41,
- 3.36,
- 3.58,
- 4.3,
- 5.48,
- 6.07,
- 6.09,
- 6.6,
- 6.33,
- 6.65,
- 6.97,
- 6.98,
- 6.94,
- 6.93,
- 7.06,
- 7.34,
- 7.46,
- 7.5,
- 7.47,
- 7.15,
- 6.9,
- 6.75,
- 6.73,
- 6.57,
- 6.48,
- 6.2,
- 4.99,
- 4.24,
- 4.23,
- 4.76,
- 5.11,
- 5.82,
- 4.98,
- 4.51,
- 4.45,
- 4.33,
- 4.33,
- 4.76,
- 4.79,
- 5.25,
- 6.3,
- 7.15,
- 7.7,
- 8.14,
- 6.88,
- 5.9,
- 5.18,
- 4.78,
- 4.7,
- 4.88,
- 5.36,
- 5.84,
- 6.62,
- 7.35,
- 8.37,
- 9.77,
- 8.57,
- 10.77,
- 5.59,
- 3.23,
- 0.1,
- 3.61,
- 3.45,
- 4.28,
- 4.81,
- 4.77,
- 5.76,
- 7.52,
- 7.71,
- 6.71,
- 7.26,
- 7.34,
- 7.25,
- 7.79,
- 8.56,
- 9.19,
- 9.21,
- 9.0,
- 8.34,
- 8.16,
- 8.14,
- 7.76,
- 7.48,
- 5.96,
- 5.96,
- 4.17,
- -0.27,
- -3.2,
- -2.59,
- -8.82,
- -4.19,
- 2.19,
- 3.86,
- 2.41,
- 2.39,
- 1.93,
- 1.59,
- 1.03,
- 0.46,
- 0.47,
- 0.15,
- -0.95,
- -1.17,
- -0.6,
- 0.1,
- -0.76,
- -1.0,
- 2.19,
- -3.55,
- -2.5,
- -5.12,
- -4.79,
- -2.63,
- -2.44,
- -2.06,
- -1.07,
- -0.12,
- -0.1,
- 0.26,
- -0.56,
- 1.81,
- 2.69,
- 3.1,
- 3.46,
- 3.48,
- 6.28,
- 6.07,
- 4.83,
- 5.52,
- 3.75,
- 4.1,
- 5.38,
- 5.8,
- 5.44,
- 6.17,
- 6.97,
- 7.01,
- 6.79,
- 6.29,
- 6.49,
- 6.41,
- 6.6,
- 4.88,
- 3.87,
- 3.79,
- 3.29,
- 2.31,
- 1.63,
- 1.06,
- -0.71,
- -2.45,
- -2.06,
- -3.44,
- -2.58,
- -1.56,
- -0.56,
- 2.5,
- 2.11,
- 2.35,
- 2.48,
- 2.75,
- 3.18,
- 3.57,
- 3.16,
- 3.1,
- 3.65,
- 3.86,
- 3.09,
- 3.27,
- 3.07,
- 2.6,
- 2.11,
- 0.49,
- -0.48,
- -1.64,
- -1.64,
- 0.55,
- 3.51,
- 2.23,
- 0.28,
- 0.85,
- 0.34,
- -0.5,
- -0.57,
- -0.18,
- -3.16,
- -4.15,
- -1.65,
- -2.39,
- -3.45,
- -3.97,
- -3.71,
- -4.05,
- -3.15,
- -4.14,
- -4.32,
- -4.06,
- -1.86,
- -0.36,
- 1.05,
- 2.03,
- 3.84,
- 5.99,
- 5.37,
- 5.15,
- 6.57,
- 7.03,
- 7.71,
- 8.5,
- 9.54,
- 10.3,
- 9.78,
- 9.23,
- 9.73,
- 6.69,
- 5.04,
- 4.98,
- 3.79,
- 1.65,
- -1.43,
- 8.36,
- 4.92,
- 3.14,
- 1.61,
- 0.1,
- 0.35,
- 0.7,
- 1.55,
- 0.84,
- -0.66,
- -0.77,
- -1.37,
- -1.81,
- -2.72,
- -3.34,
- -3.4,
- -3.29,
- -2.95,
- -3.14,
- -3.83,
- -3.64,
- -4.31,
- -3.93,
- -3.77,
- -4.05,
- -4.83,
- -5.34,
- -5.82,
- -6.02,
- -5.96,
- -5.94,
- -5.79,
- -5.6,
- -5.02,
- -4.68,
- -4.66,
- -5.0,
- -5.33,
- -4.96,
- -4.77,
- -4.87,
- -4.57,
- -4.45,
- -3.9,
- -3.16,
- -3.04,
- -2.73,
- -2.51,
- -2.01,
- -2.36,
- -1.91,
- -1.46,
- -0.87,
- -1.87,
- 0.17,
- 0.98,
- 1.48,
- 1.28,
- 1.11,
- 0.86,
- 0.77,
- 1.25,
- 1.39,
- 1.38,
- 0.88,
- 1.42,
- 2.01,
- 1.77,
- 1.5,
- 2.16,
- 2.0,
- 2.27,
- 2.73,
- 3.47,
- 3.81,
- 4.55,
- 6.9,
- 6.88,
- 8.12,
- 8.21,
- 8.94,
- 9.34,
- 10.09,
- 11.09,
- 12.53,
- 13.47,
- 13.97,
- 13.4,
- 13.45,
- 12.03,
- 11.27,
- 14.43,
- 11.48,
- 10.68,
- 2.38,
- 3.1,
- 3.73,
- 3.84,
- 3.2,
- 1.8,
- 2.22,
- 1.5,
- 1.35,
- 1.48,
- 1.4,
- 0.89,
- 2.25,
- 3.07,
- -0.62,
- 2.75,
- 0.73,
- 1.15,
- 0.2,
- 0.25,
- -0.84,
- -1.71,
- -2.73,
- -3.34,
- -3.03,
- -3.98,
- -4.45,
- -3.85,
- -3.55,
- -3.2,
- -3.56,
- -2.73,
- -1.91,
- -1.53,
- -1.54,
- -1.92,
- -1.68,
- -4.73,
- -5.66,
- -7.21,
- -7.83,
- -7.18,
- -6.31,
- -5.54,
- -4.46,
- -3.06,
- -1.37,
- 0.41,
- 1.64,
- 2.63,
- 4.48,
- 5.9,
- 8.19,
- 8.57,
- 8.32,
- 8.27,
- 8.25,
- 8.13,
- 8.0,
- 7.97,
- 8.09,
- 8.24,
- 8.47,
- 8.8,
- 8.82,
- 8.5,
- 8.07,
- 8.0,
- 7.52,
- 7.24,
- 7.34,
- 7.67,
- 7.18,
- 6.23,
- 6.03,
- 5.97,
- 5.8,
- 5.21,
- 4.19,
- 4.16,
- 4.48,
- 5.11,
- 5.44,
- 5.42,
- 5.14,
- 5.58,
- 6.14,
- 6.79,
- 7.32,
- 8.17,
- 7.76,
- 5.7,
- 5.15,
- 4.91,
- 4.68,
- 5.14,
- 5.7,
- 6.26,
- 7.23,
- 8.59,
- 10.48,
- 11.45,
- 10.23,
- 5.94,
- 3.73,
- -1.46,
- 0.4,
- 1.6,
- 3.47,
- 3.89,
- 4.25,
- 5.34,
- 7.03,
- 6.08,
- 6.79,
- 7.33,
- 7.92,
- 8.66,
- 9.31,
- 9.79,
- 10.16,
- 9.96,
- 9.98,
- 10.05,
- 8.55,
- 8.79,
- 8.26,
- 6.97,
- 8.03,
- 5.21,
- 5.21,
- 3.05,
- 2.97,
- -0.26,
- -1.49,
- -2.8,
- -8.34,
- -5.69,
- 0.94,
- 4.09,
- 3.62,
- 1.45,
- 1.73,
- 2.19,
- 1.96,
- 2.1,
- 1.92,
- 0.38,
- -0.38,
- 0.09,
- 1.42,
- -1.29,
- -0.99,
- 2.85,
- -3.71,
- -1.19,
- -3.38,
- -3.56,
- -2.79,
- -2.53,
- -2.01,
- -1.79,
- -0.92,
- -0.49,
- 0.0,
- 0.93,
- 2.64,
- 3.55,
- 2.26,
- 2.09,
- 5.2,
- 5.55,
- 3.47,
- 1.64,
- 2.32,
- 4.15,
- 4.53,
- 5.21,
- 6.12,
- 6.83,
- 7.0,
- 7.23,
- 7.15,
- 7.31,
- 7.36,
- 7.7,
- 7.5,
- 6.96,
- 7.07,
- 6.42,
- 6.06,
- 5.33,
- 4.02,
- 3.24,
- 1.6,
- 0.11,
- -1.57,
- -3.02,
- -3.48,
- -2.82,
- -2.99,
- -3.23,
- -2.44,
- 1.51,
- 5.26,
- 3.91,
- 4.0,
- 4.15,
- 4.49,
- 4.82,
- 4.37,
- 4.11,
- 3.96,
- 2.99,
- 3.6,
- 3.74,
- 4.37,
- 4.57,
- 3.15,
- 2.71,
- 2.85,
- 2.0,
- 2.97,
- 5.5,
- 3.96,
- 2.73,
- 2.68,
- 2.53,
- 1.91,
- 1.72,
- 1.88,
- 0.35,
- -1.73,
- 0.12,
- -0.8,
- -1.68,
- -2.35,
- -2.13,
- -2.59,
- -1.78,
- -2.02,
- -2.54,
- -2.31,
- -0.41,
- 0.74,
- 1.57,
- 2.13,
- 4.17,
- 4.97,
- 3.54,
- 5.17,
- 6.59,
- 6.65,
- 8.07,
- 8.85,
- 8.89,
- 9.11,
- 9.77,
- 10.11,
- 10.21,
- 9.26,
- 6.74,
- 5.16,
- 5.9,
- 5.78,
- 4.56,
- 2.03,
- 4.62,
- 8.04,
- 4.08,
- 3.12,
- 2.39,
- 2.45,
- 2.39,
- 2.26,
- -0.4,
- -0.45,
- 0.02,
- -0.66,
- -1.24,
- -1.79,
- -2.08,
- -2.14,
- -2.25,
- -1.89,
- -2.4,
- -2.61,
- -2.63,
- -2.49,
- -2.57,
- -2.55,
- -2.68,
- -2.94,
- -3.47,
- -3.86,
- -3.89,
- -3.69,
- -3.48,
- -3.42,
- -2.93,
- -2.76,
- -3.07,
- -3.26,
- -3.35,
- -3.4,
- -2.95,
- -2.65,
- -1.84,
- -1.44,
- -0.78,
- -0.23,
- -0.08,
- -0.54,
- 0.06,
- 0.63,
- 1.2,
- 1.29,
- 1.05,
- 1.67,
- 1.88,
- 1.7,
- 2.45,
- 3.52,
- 3.63,
- 3.09,
- 2.77,
- 2.22,
- 2.37,
- 2.83,
- 2.4,
- 2.06,
- 2.83,
- 3.06,
- 2.96,
- 2.65,
- 3.3,
- 2.91,
- 3.42,
- 3.94,
- 4.95,
- 5.44,
- 6.27,
- 7.37,
- 7.64,
- 7.8,
- 8.14,
- 8.57,
- 9.58,
- 10.19,
- 11.54,
- 12.85,
- 13.81,
- 14.04,
- 13.92,
- 13.16,
- 11.95,
- 11.18,
- 11.44,
- 13.07,
- 8.89,
- 7.09,
- 2.54,
- 2.96,
- 1.91,
- 2.68,
- 2.37,
- 2.37,
- 1.13,
- 1.48,
- 0.76,
- 1.32,
- 0.17,
- 2.11,
- -0.61,
- 0.19,
- 3.49,
- 2.04,
- 1.6,
- 0.66,
- 0.74,
- -0.05,
- -0.66,
- -2.42,
- -3.06,
- -2.6,
- -3.28,
- -3.82,
- -3.85,
- -4.17,
- -4.88,
- -3.36,
- -3.13,
- -2.62,
- -1.76,
- -1.73,
- -1.57,
- -2.35,
- -1.77,
- -4.44,
- -6.36,
- -8.93,
- -8.01,
- -7.3,
- -6.64,
- -5.72,
- -4.95,
- -4.21,
- -2.85,
- -1.03,
- 1.12,
- 3.12,
- 5.1,
- 6.25,
- 7.86,
- 10.14,
- 10.6,
- 10.13,
- 9.84,
- 9.57,
- 9.41,
- 9.27,
- 9.55,
- 9.81,
- 10.03,
- 9.76,
- 9.23,
- 8.72,
- 8.35,
- 8.05,
- 7.84,
- 8.25,
- 8.73,
- 8.51,
- 8.02,
- 7.99,
- 7.44,
- 6.67,
- 5.68,
- 4.84,
- 4.73,
- 5.62,
- 5.89,
- 5.63,
- 5.55,
- 5.61,
- 5.84,
- 6.23,
- 6.5,
- 6.66,
- 7.1,
- 7.35,
- 5.88,
- 3.99,
- 5.19,
- 4.38,
- 4.94,
- 5.24,
- 6.08,
- 7.3,
- 8.69,
- 11.22,
- 11.55,
- 9.2,
- 3.9,
- -0.94,
- -2.27,
- -1.23,
- 2.01,
- 2.19,
- 2.1,
- 5.19,
- 6.01,
- 5.34,
- 6.17,
- 7.42,
- 8.62,
- 9.99,
- 10.86,
- 11.14,
- 10.77,
- 10.32,
- 10.78,
- 11.06,
- 9.16,
- 8.23,
- 8.13,
- 7.9,
- 7.42,
- 6.33,
- 4.05,
- 3.96,
- 2.13,
- 1.74,
- 0.25,
- -0.96,
- -1.66,
- -5.49,
- -6.26,
- -5.98,
- -9.51,
- -1.85,
- -3.75,
- -1.6,
- 0.64,
- 0.03,
- -0.14,
- 0.99,
- -0.06,
- -0.12,
- 1.13,
- 0.79,
- 1.99,
- -3.32,
- 1.07,
- 2.15,
- -3.53,
- -2.65,
- -2.98,
- -2.49,
- -2.27,
- -2.12,
- -1.37,
- -0.04,
- 0.94,
- 1.38,
- 1.98,
- 2.84,
- 2.46,
- 1.66,
- 2.9,
- 5.56,
- 4.0,
- 1.94,
- 1.15,
- 0.89,
- 1.45,
- 2.23,
- 3.8,
- 5.58,
- 7.0,
- 7.75,
- 7.9,
- 8.01,
- 7.39,
- 8.6,
- 8.58,
- 8.54,
- 8.38,
- 8.28,
- 8.45,
- 7.69,
- 5.91,
- 4.02,
- 3.62,
- 2.66,
- 1.01,
- 0.69,
- 1.0,
- 0.47,
- -0.41,
- -0.04,
- 0.92,
- 1.37,
- 1.02,
- -1.24,
- 2.11,
- 5.7,
- 4.49,
- 5.03,
- 4.98,
- 5.33,
- 5.25,
- 4.74,
- 4.24,
- 3.76,
- 4.46,
- 5.28,
- 5.54,
- 5.4,
- 5.14,
- 4.66,
- 4.3,
- 4.63,
- 7.06,
- 5.51,
- 5.78,
- 4.79,
- 4.06,
- 3.76,
- 3.62,
- 3.82,
- 3.64,
- 2.72,
- 1.67,
- 1.01,
- -0.3,
- -1.13,
- -0.17,
- -0.19,
- 0.05,
- -0.51,
- -1.56,
- -2.34,
- 0.94,
- 1.0,
- 1.5,
- 3.83,
- 3.57,
- 3.48,
- 3.59,
- 4.76,
- 4.69,
- 6.55,
- 7.14,
- 7.77,
- 8.16,
- 9.23,
- 10.04,
- 10.85,
- 11.02,
- 10.4,
- 10.02,
- 8.31,
- 6.79,
- 7.75,
- 8.13,
- 7.46,
- 6.1,
- 2.77,
- 8.64,
- 5.01,
- 4.8,
- 4.04,
- 4.32,
- 3.76,
- 1.8,
- -0.01,
- 0.75,
- 0.81,
- 0.22,
- -0.23,
- -0.59,
- -0.93,
- -1.17,
- -1.3,
- -1.18,
- -1.18,
- -1.19,
- -1.14,
- -1.27,
- -1.12,
- -1.29,
- -1.43,
- -1.31,
- -1.1,
- -0.88,
- -0.87,
- -0.54,
- -0.36,
- -0.32,
- -0.24,
- -0.18,
- -0.31,
- -0.39,
- -0.06,
- 0.59,
- 1.2,
- 1.63,
- 2.08,
- 2.56,
- 2.84,
- 2.96,
- 2.82,
- 2.68,
- 2.79,
- 3.19,
- 3.99,
- 3.93,
- 3.83,
- 3.91,
- 4.35,
- 4.47,
- 4.75,
- 5.37,
- 5.39,
- 5.3,
- 4.66,
- 4.24,
- 4.41,
- 3.97,
- 3.78,
- 3.82,
- 4.08,
- 3.91,
- 4.18,
- 4.31,
- 4.01,
- 4.23,
- 5.22,
- 5.75,
- 6.04,
- 6.57,
- 7.37,
- 7.17,
- 7.22,
- 7.89,
- 8.64,
- 9.95,
- 9.45,
- 11.28,
- 12.34,
- 12.74,
- 13.15,
- 13.25,
- 12.38,
- 11.45,
- 9.69,
- 10.15,
- 9.46,
- 8.78,
- 5.79,
- -0.13,
- -1.17,
- 0.97,
- 0.3,
- 2.0,
- 2.13,
- 0.57,
- -0.41,
- -0.16,
- 1.15,
- 1.52,
- 1.28,
- -1.7,
- 0.95,
- 3.45,
- 2.63,
- 2.25,
- 2.21,
- 1.31,
- 0.07,
- -0.02,
- -1.9,
- -2.22,
- -2.72,
- -3.71,
- -3.6,
- -4.47,
- -4.43,
- -3.87,
- -3.06,
- -3.37,
- -2.93,
- -1.38,
- -0.96,
- -0.03,
- -1.27,
- -0.8,
- -2.42,
- -1.79,
- 0.38,
- -8.64,
- -5.42,
- -4.67,
- -4.08,
- -3.58,
- -3.09,
- -2.53,
- -1.51,
- -0.18,
- 1.72,
- 3.69,
- 5.46,
- 7.03,
- 7.91,
- 8.82,
- 11.32,
- 12.92,
- 11.75,
- 11.28,
- 10.87,
- 10.51,
- 10.4,
- 10.38,
- 9.93,
- 9.5,
- 9.01,
- 8.6,
- 8.46,
- 8.01,
- 8.79,
- 9.33,
- 9.49,
- 9.44,
- 9.44,
- 8.97,
- 8.01,
- 6.91,
- 6.31,
- 6.56,
- 6.75,
- 6.41,
- 6.02,
- 5.6,
- 5.62,
- 5.94,
- 6.26,
- 6.62,
- 6.51,
- 6.27,
- 6.3,
- 5.98,
- 4.36,
- 5.38,
- 4.66,
- 4.47,
- 4.09,
- 5.23,
- 6.04,
- 6.94,
- 7.71,
- -0.46,
- -4.56,
- -5.05,
- -4.44,
- -4.22,
- -0.53,
- -1.31,
- 0.12,
- 4.16,
- 4.82,
- 4.52,
- 5.59,
- 7.32,
- 8.71,
- 9.89,
- 10.77,
- 11.33,
- 11.57,
- 11.02,
- 10.79,
- 10.29,
- 9.76,
- 8.46,
- 5.95,
- 6.16,
- 7.25,
- 6.9,
- 5.8,
- 4.66,
- 3.43,
- 0.76,
- 0.66,
- -0.74,
- -2.99,
- -5.01,
- -6.35,
- -7.02,
- -7.39,
- -7.0,
- -6.77,
- -4.24,
- -3.05,
- -1.35,
- -0.34,
- -0.04,
- -0.52,
- -0.43,
- 0.12,
- 1.65,
- -0.98,
- -1.29,
- 0.26,
- 1.22,
- -1.02,
- -3.49,
- -2.63,
- -2.7,
- -2.33,
- -1.51,
- -1.12,
- -0.28,
- 1.19,
- 1.97,
- 2.15,
- 2.53,
- 2.43,
- 1.45,
- 1.59,
- 3.89,
- 4.53,
- 3.92,
- 1.39,
- 1.02,
- -0.24,
- 1.31,
- 2.64,
- 4.06,
- 5.32,
- 6.14,
- 6.58,
- 7.72,
- 8.89,
- 9.52,
- 9.62,
- 9.77,
- 9.52,
- 8.84,
- 9.08,
- 9.34,
- 8.32,
- 7.09,
- 4.85,
- 3.24,
- 4.13,
- 3.27,
- 2.19,
- 2.07,
- 2.48,
- 2.85,
- 2.73,
- 2.32,
- 2.36,
- 2.84,
- 2.88,
- 2.84,
- 1.21,
- 4.55,
- 6.86,
- 5.98,
- 6.14,
- 6.42,
- 6.74,
- 6.91,
- 6.54,
- 5.89,
- 5.62,
- 6.41,
- 6.21,
- 5.94,
- 5.93,
- 6.42,
- 7.3,
- 8.36,
- 8.05,
- 7.87,
- 5.89,
- 5.84,
- 5.31,
- 5.11,
- 5.02,
- 5.12,
- 5.04,
- 4.12,
- 2.4,
- 1.86,
- 1.11,
- 1.4,
- 3.31,
- 1.98,
- 0.43,
- -1.79,
- -0.38,
- 1.3,
- 1.82,
- 3.17,
- 3.77,
- 3.4,
- 2.87,
- 3.27,
- 2.52,
- 3.16,
- 4.97,
- 6.56,
- 8.63,
- 10.48,
- 11.2,
- 11.49,
- 11.42,
- 11.71,
- 12.33,
- 12.04,
- 10.3,
- 8.44,
- 7.76,
- 8.19,
- 9.36,
- 8.76,
- 5.98,
- 3.29,
- 7.59,
- 4.96,
- 3.97,
- 4.11,
- 4.88,
- 3.71,
- 1.19,
- 0.72,
- 1.51,
- 1.95,
- 1.11,
- 0.77,
- 0.67,
- -0.13,
- -0.4,
- -0.41,
- -0.47,
- -0.02,
- 0.32,
- 0.46,
- 0.54,
- 0.63,
- 1.01,
- 1.25,
- 1.35,
- 1.82,
- 1.92,
- 1.87,
- 2.13,
- 2.47,
- 2.69,
- 2.6,
- 2.86,
- 3.22,
- 3.76,
- 4.01,
- 4.03,
- 4.25,
- 4.67,
- 5.0,
- 5.36,
- 5.48,
- 5.29,
- 4.96,
- 5.05,
- 5.34,
- 5.45,
- 5.45,
- 6.32,
- 6.55,
- 6.55,
- 6.56,
- 6.92,
- 6.93,
- 6.97,
- 7.17,
- 7.35,
- 6.88,
- 6.39,
- 5.96,
- 5.8,
- 5.75,
- 5.63,
- 5.5,
- 5.72,
- 5.63,
- 5.52,
- 5.49,
- 6.5,
- 6.3,
- 6.49,
- 7.11,
- 7.13,
- 6.37,
- 7.15,
- 7.74,
- 8.92,
- 8.11,
- 9.44,
- 10.06,
- 11.17,
- 10.9,
- 11.66,
- 11.14,
- 10.66,
- 9.69,
- 8.5,
- 7.4,
- 7.66,
- 6.11,
- 5.64,
- 2.74,
- -0.66,
- 1.11,
- 0.2,
- 1.04,
- 1.2,
- 0.73,
- -0.05,
- 1.1,
- 1.06,
- -1.93,
- -4.69,
- -3.12,
- -2.18,
- -1.1,
- 0.16,
- 1.46,
- 3.43,
- 2.19,
- 1.71,
- 0.72,
- -0.19,
- -1.19,
- -2.12,
- -2.96,
- -3.19,
- -3.13,
- -2.57,
- -2.37,
- -2.35,
- -2.31,
- -2.28,
- -3.46,
- -3.51,
- -4.43,
- -3.85,
- -1.25,
- -0.93,
- -2.04,
- -2.05,
- -1.18,
- -2.91,
- -2.74,
- -2.32,
- -2.01,
- -1.65,
- -0.98,
- 0.2,
- 1.55,
- 3.15,
- 4.9,
- 6.55,
- 7.94,
- 8.83,
- 9.6,
- 10.42,
- 11.68,
- 13.11,
- 13.4,
- 12.12,
- 11.61,
- 10.62,
- 9.71,
- 9.29,
- 9.37,
- 9.15,
- 8.98,
- 8.72,
- 8.34,
- 8.8,
- 9.34,
- 9.46,
- 10.15,
- 10.31,
- 10.15,
- 9.37,
- 8.56,
- 8.28,
- 8.0,
- 7.66,
- 7.22,
- 6.51,
- 6.08,
- 6.0,
- 6.25,
- 6.53,
- 6.77,
- 6.45,
- 6.08,
- 6.01,
- 6.13,
- 5.98,
- 5.04,
- 4.99,
- 3.81,
- 3.35,
- 3.48,
- 3.33,
- 3.35,
- 1.16,
- -6.08,
- -6.4,
- -5.24,
- -4.77,
- -3.0,
- -2.95,
- -0.59,
- 2.33,
- 3.55,
- 3.71,
- 4.77,
- 6.65,
- 7.97,
- 8.82,
- 9.91,
- 11.05,
- 11.87,
- 12.13,
- 10.91,
- 9.71,
- 7.41,
- 7.56,
- 7.08,
- 5.46,
- 4.64,
- 5.64,
- 4.99,
- 5.28,
- 4.73,
- 2.94,
- 0.66,
- 0.3,
- 0.31,
- -3.88,
- -3.8,
- -4.03,
- -4.45,
- -5.39,
- -4.23,
- -2.36,
- -1.22,
- -1.39,
- -0.19,
- -0.59,
- -1.28,
- -0.77,
- -0.21,
- 0.37,
- 1.0,
- -0.22,
- -3.26,
- -1.46,
- -0.54,
- -1.79,
- -3.73,
- -3.36,
- -2.17,
- -1.39,
- -1.03,
- -0.06,
- 0.7,
- 2.69,
- 2.47,
- 2.6,
- 0.51,
- 1.78,
- 1.61,
- 3.49,
- 4.61,
- 4.38,
- 4.67,
- 2.3,
- 2.23,
- 2.83,
- 3.88,
- 4.72,
- 5.46,
- 6.11,
- 5.82,
- 5.78,
- 6.72,
- 8.08,
- 10.05,
- 10.58,
- 10.3,
- 11.29,
- 10.96,
- 9.65,
- 9.59,
- 8.52,
- 5.21,
- 4.07,
- 3.45,
- 3.47,
- 3.11,
- 2.58,
- 2.94,
- 3.55,
- 3.64,
- 3.93,
- 4.48,
- 4.22,
- 3.74,
- 3.96,
- 4.01,
- 4.02,
- 4.04,
- 3.43,
- 5.87,
- 7.1,
- 6.88,
- 7.76,
- 7.85,
- 8.24,
- 8.01,
- 7.39,
- 8.0,
- 7.57,
- 7.12,
- 7.83,
- 8.72,
- 8.51,
- 10.37,
- 10.37,
- 9.27,
- 7.3,
- 7.69,
- 7.32,
- 6.28,
- 6.0,
- 6.29,
- 6.7,
- 5.18,
- 3.68,
- 3.41,
- 3.16,
- 3.61,
- 5.39,
- 2.53,
- 0.94,
- -0.59,
- 0.9,
- 2.07,
- 2.73,
- 4.51,
- 3.33,
- 4.71,
- 3.62,
- 3.56,
- 0.98,
- 3.85,
- 5.68,
- 7.39,
- 9.66,
- 10.65,
- 11.28,
- 11.87,
- 11.52,
- 11.91,
- 13.06,
- 12.88,
- 11.27,
- 8.07,
- 6.45,
- 4.13,
- 5.82,
- 8.0,
- 8.42,
- 6.58,
- 3.65,
- 6.45,
- 3.78,
- 3.68,
- 5.06,
- 5.34,
- 3.35,
- 1.75,
- 2.6,
- 2.45,
- 1.98,
- 1.62,
- 1.57,
- 1.65,
- 1.15,
- 0.94,
- 1.11,
- 1.33,
- 1.87,
- 2.24,
- 2.5,
- 2.64,
- 2.89,
- 3.25,
- 3.44,
- 3.52,
- 3.48,
- 3.48,
- 4.01,
- 4.47,
- 4.78,
- 4.88,
- 5.01,
- 4.99,
- 5.13,
- 5.19,
- 5.48,
- 5.81,
- 6.15,
- 6.48,
- 7.01,
- 7.22,
- 6.91,
- 6.72,
- 6.88,
- 7.31,
- 7.26,
- 7.22,
- 7.66,
- 8.66,
- 8.91,
- 8.93,
- 8.8,
- 8.62,
- 7.64,
- 7.45,
- 8.48,
- 8.87,
- 8.86,
- 8.23,
- 7.96,
- 7.72,
- 7.58,
- 7.29,
- 7.3,
- 7.16,
- 6.67,
- 7.09,
- 7.22,
- 7.05,
- 6.65,
- 7.16,
- 7.28,
- 6.65,
- 7.35,
- 8.13,
- 7.4,
- 7.85,
- 9.34,
- 8.83,
- 8.59,
- 9.52,
- 8.9,
- 8.8,
- 8.92,
- 8.83,
- 7.67,
- 8.03,
- 7.25,
- 7.31,
- 3.55,
- 5.45,
- 3.7,
- 2.45,
- 2.56,
- 2.08,
- 1.45,
- 0.25,
- -1.41,
- 2.53,
- -3.69,
- -2.22,
- -1.99,
- -1.54,
- -1.48,
- -0.75,
- 0.24,
- 0.23,
- 4.14,
- 3.18,
- 3.26,
- 0.36,
- -0.22,
- -0.78,
- -1.38,
- -1.36,
- -0.92,
- -0.68,
- 0.05,
- -0.65,
- -1.82,
- -1.88,
- -2.37,
- -4.61,
- -5.84,
- -6.8,
- -3.99,
- 1.34,
- -0.7,
- -2.17,
- -1.21,
- -1.46,
- -1.27,
- -1.1,
- -1.08,
- -0.86,
- -0.14,
- 0.86,
- 2.04,
- 3.6,
- 5.39,
- 6.88,
- 8.42,
- 9.64,
- 10.54,
- 11.0,
- 11.32,
- 11.24,
- 11.81,
- 12.35,
- 13.6,
- 12.69,
- 11.18,
- 10.52,
- 9.95,
- 9.71,
- 9.86,
- 9.66,
- 8.9,
- 7.93,
- 8.66,
- 9.26,
- 9.9,
- 10.51,
- 11.0,
- 11.23,
- 10.93,
- 10.14,
- 9.52,
- 8.85,
- 8.6,
- 8.12,
- 7.39,
- 7.1,
- 7.0,
- 6.75,
- 6.65,
- 6.22,
- 5.8,
- 5.85,
- 5.65,
- 5.56,
- 5.57,
- 5.12,
- 4.95,
- 3.37,
- 2.85,
- 2.3,
- 1.47,
- 1.51,
- 1.0,
- -6.8,
- -3.78,
- -5.01,
- -3.82,
- -3.39,
- -0.49,
- 1.5,
- 1.65,
- 1.88,
- 3.76,
- 5.49,
- 6.37,
- 7.24,
- 7.89,
- 7.21,
- 6.89,
- 7.31,
- 7.06,
- 6.51,
- 5.92,
- 6.78,
- 6.26,
- 4.0,
- 3.12,
- 3.91,
- 4.36,
- 4.01,
- 4.26,
- 5.11,
- 0.98,
- 0.54,
- -1.63,
- -2.21,
- -2.92,
- -4.32,
- -4.68,
- -4.02,
- -3.58,
- -2.5,
- -1.42,
- -0.36,
- -0.88,
- -1.87,
- -1.9,
- -1.13,
- -0.58,
- -0.35,
- -0.52,
- -1.57,
- -1.66,
- -3.74,
- -1.98,
- -1.13,
- -3.41,
- -2.4,
- -1.66,
- -0.61,
- 0.48,
- -0.32,
- -0.05,
- 2.79,
- 3.43,
- 2.6,
- 2.72,
- 1.95,
- 2.17,
- 2.78,
- 5.1,
- 4.92,
- 6.75,
- 6.54,
- 3.95,
- 2.57,
- 3.89,
- 5.13,
- 6.57,
- 7.49,
- 6.59,
- 5.41,
- 5.95,
- 7.04,
- 8.26,
- 9.48,
- 9.79,
- 10.67,
- 10.09,
- 11.16,
- 10.99,
- 9.39,
- 8.41,
- 7.0,
- 5.87,
- 5.41,
- 4.4,
- 3.1,
- 2.96,
- 3.31,
- 3.71,
- 4.24,
- 4.6,
- 4.93,
- 5.5,
- 5.54,
- 5.2,
- 4.91,
- 5.25,
- 5.12,
- 5.18,
- 5.42,
- 5.5,
- 6.73,
- 8.52,
- 8.54,
- 9.17,
- 9.45,
- 9.19,
- 9.27,
- 9.27,
- 9.52,
- 9.77,
- 9.84,
- 10.32,
- 11.09,
- 10.8,
- 9.85,
- 8.21,
- 8.29,
- 8.57,
- 8.01,
- 7.24,
- 7.17,
- 7.92,
- 6.04,
- 5.42,
- 4.71,
- 4.22,
- 4.81,
- 6.57,
- 2.85,
- 1.76,
- 1.21,
- 2.2,
- 2.46,
- 3.9,
- 3.48,
- 4.63,
- 5.37,
- 4.04,
- 2.38,
- 3.0,
- 4.24,
- 6.5,
- 7.59,
- 8.07,
- 8.96,
- 9.83,
- 11.16,
- 10.52,
- 11.41,
- 11.46,
- 13.17,
- 10.61,
- 7.39,
- 2.45,
- -3.16,
- -3.61,
- -2.51,
- 3.1,
- -1.43,
- -3.67,
- 0.83,
- 3.57,
- 4.51,
- 4.21,
- 5.98,
- 6.4,
- 6.77,
- 6.01,
- 4.09,
- 3.12,
- 2.36,
- 2.52,
- 2.39,
- 2.61,
- 2.9,
- 2.93,
- 3.26,
- 3.73,
- 4.05,
- 4.3,
- 4.63,
- 4.92,
- 5.07,
- 4.79,
- 4.56,
- 4.55,
- 4.69,
- 5.11,
- 5.48,
- 5.73,
- 6.1,
- 6.3,
- 6.29,
- 6.28,
- 6.47,
- 6.71,
- 6.87,
- 6.97,
- 7.3,
- 7.78,
- 8.1,
- 8.03,
- 7.78,
- 8.2,
- 8.61,
- 8.72,
- 8.79,
- 9.09,
- 9.76,
- 10.62,
- 11.06,
- 10.92,
- 10.16,
- 9.06,
- 8.56,
- 8.9,
- 9.97,
- 10.08,
- 10.32,
- 10.33,
- 10.14,
- 9.66,
- 9.54,
- 9.26,
- 8.62,
- 8.73,
- 8.39,
- 7.87,
- 7.72,
- 7.3,
- 7.22,
- 7.65,
- 7.44,
- 7.73,
- 7.77,
- 7.56,
- 8.03,
- 7.81,
- 7.59,
- 7.3,
- 7.69,
- 8.69,
- 8.35,
- 7.44,
- 7.68,
- 8.04,
- 8.16,
- 7.77,
- 8.02,
- 7.18,
- 2.68,
- 4.59,
- 4.55,
- 3.6,
- 3.17,
- 2.29,
- 1.97,
- 1.45,
- 1.34,
- -1.19,
- -0.15,
- 0.26,
- 0.5,
- 0.62,
- 1.02,
- 1.35,
- 2.64,
- 2.83,
- 4.05,
- 4.56,
- 4.16,
- -0.04,
- 0.08,
- 0.09,
- -0.04,
- 0.41,
- 1.09,
- 1.0,
- -0.39,
- -1.6,
- -1.52,
- -0.83,
- -4.05,
- -5.73,
- -8.17,
- -6.89,
- -6.32,
- -6.02,
- -2.6,
- -0.33,
- -0.51,
- -0.54,
- -0.58,
- -0.24,
- 0.37,
- 1.24,
- 2.37,
- 3.8,
- 5.5,
- 7.17,
- 8.48,
- 9.81,
- 11.31,
- 12.05,
- 12.05,
- 12.12,
- 12.2,
- 11.92,
- 10.89,
- 11.32,
- 13.04,
- 14.15,
- 13.05,
- 11.84,
- 10.88,
- 10.34,
- 9.99,
- 9.01,
- 8.17,
- 8.32,
- 9.74,
- 10.11,
- 10.56,
- 10.99,
- 11.13,
- 11.02,
- 10.57,
- 10.12,
- 9.7,
- 9.51,
- 9.34,
- 8.74,
- 8.36,
- 8.16,
- 7.58,
- 6.92,
- 6.3,
- 5.78,
- 5.64,
- 5.55,
- 4.42,
- 5.91,
- 5.65,
- 5.14,
- 3.72,
- 3.42,
- 2.85,
- 1.72,
- 1.04,
- 0.53,
- -2.15,
- -3.12,
- -5.43,
- -3.94,
- -1.45,
- 1.27,
- 0.45,
- 1.3,
- 3.19,
- 3.79,
- 4.38,
- 4.52,
- 4.58,
- 2.33,
- 0.6,
- -0.28,
- -0.71,
- -0.43,
- 1.33,
- 2.18,
- 1.79,
- 2.83,
- 3.96,
- 4.49,
- 4.64,
- 3.77,
- 3.5,
- 3.67,
- 0.71,
- -1.67,
- -2.47,
- -3.22,
- -3.36,
- -3.81,
- -4.1,
- -4.64,
- -3.29,
- -2.79,
- -2.48,
- -2.27,
- -2.31,
- -1.6,
- -1.23,
- -1.23,
- -0.74,
- -0.12,
- -0.01,
- -0.8,
- -2.34,
- -0.31,
- -2.55,
- -0.63,
- -5.06,
- -1.83,
- 0.88,
- 1.05,
- 2.16,
- 1.78,
- 1.78,
- 1.49,
- 4.89,
- 3.5,
- 3.01,
- 2.71,
- 1.95,
- 2.57,
- 4.83,
- 5.14,
- 6.06,
- 6.2,
- 4.04,
- 1.89,
- 3.21,
- 4.88,
- 6.75,
- 7.28,
- 8.21,
- 7.4,
- 8.29,
- 8.46,
- 8.53,
- 8.52,
- 8.59,
- 9.73,
- 10.22,
- 10.43,
- 9.45,
- 8.93,
- 9.63,
- 9.47,
- 9.18,
- 6.97,
- 5.84,
- 5.16,
- 3.48,
- 3.86,
- 4.77,
- 5.05,
- 5.16,
- 5.42,
- 5.88,
- 6.09,
- 5.9,
- 6.47,
- 6.62,
- 6.1,
- 6.59,
- 6.8,
- 6.66,
- 6.81,
- 7.11,
- 7.49,
- 8.34,
- 9.79,
- 10.25,
- 10.27,
- 10.49,
- 10.46,
- 10.41,
- 10.67,
- 10.95,
- 11.16,
- 11.76,
- 11.73,
- 11.01,
- 10.22,
- 9.59,
- 8.63,
- 8.18,
- 8.23,
- 8.15,
- 8.65,
- 7.07,
- 6.44,
- 5.92,
- 5.54,
- 6.06,
- 6.81,
- 2.7,
- 2.69,
- 2.67,
- 3.01,
- 4.22,
- 4.05,
- 3.85,
- 5.93,
- 4.39,
- 4.34,
- 3.17,
- 3.29,
- 6.21,
- 6.27,
- 6.73,
- 7.75,
- 6.79,
- 6.11,
- 5.92,
- 6.73,
- 9.0,
- 7.71,
- 11.18,
- 8.78,
- 3.95,
- -1.66,
- -3.52,
- -4.93,
- -7.45,
- -8.95,
- -7.45,
- -6.34,
- -6.92,
- -4.76,
- 6.15,
- 4.97,
- 5.33,
- 5.85,
- 5.45,
- 5.99,
- 5.81,
- 5.37,
- 4.72,
- 3.8,
- 3.99,
- 4.29,
- 4.47,
- 4.8,
- 5.06,
- 5.44,
- 5.5,
- 6.0,
- 6.08,
- 6.73,
- 6.68,
- 6.03,
- 6.28,
- 6.47,
- 6.26,
- 6.29,
- 6.44,
- 6.65,
- 7.16,
- 7.32,
- 7.52,
- 7.86,
- 7.69,
- 7.79,
- 7.5,
- 7.07,
- 7.04,
- 7.02,
- 7.32,
- 7.31,
- 7.2,
- 8.31,
- 7.61,
- 7.84,
- 8.01,
- 8.68,
- 9.16,
- 10.04,
- 10.59,
- 10.98,
- 10.87,
- 10.64,
- 10.64,
- 11.23,
- 12.03,
- 11.49,
- 10.86,
- 11.47,
- 12.03,
- 12.16,
- 11.98,
- 11.38,
- 10.96,
- 10.16,
- 9.98,
- 9.1,
- 8.31,
- 8.26,
- 7.86,
- 7.86,
- 7.87,
- 7.75,
- 7.48,
- 7.39,
- 7.18,
- 7.49,
- 7.16,
- 6.66,
- 6.82,
- 6.02,
- 6.38,
- 6.16,
- 6.79,
- 8.45,
- 8.52,
- 8.85,
- 8.62,
- 8.83,
- 7.19,
- 2.67,
- 5.02,
- 6.05,
- 3.7,
- 3.79,
- 3.56,
- 1.68,
- 4.42,
- 2.98,
- 2.46,
- 2.66,
- 3.55,
- 3.93,
- 3.07,
- 0.52,
- 2.06,
- 3.95,
- 4.78,
- 2.89,
- 3.85,
- 1.38,
- 0.65,
- 1.08,
- 0.79,
- 0.96,
- 0.83,
- 0.67,
- -0.53,
- -0.69,
- -0.26,
- 1.42,
- -1.34,
- -2.3,
- -0.7,
- -0.83,
- -2.72,
- -1.6,
- -0.63,
- 0.13,
- -0.23,
- -0.34,
- 0.14,
- 0.81,
- 1.17,
- 2.1,
- 3.43,
- 4.78,
- 5.9,
- 7.16,
- 8.1,
- 9.21,
- 9.65,
- 10.6,
- 11.04,
- 11.42,
- 12.59,
- 12.47,
- 12.32,
- 11.15,
- 10.69,
- 11.67,
- 14.29,
- 14.11,
- 12.02,
- 11.08,
- 10.79,
- 10.82,
- 9.75,
- 9.05,
- 10.16,
- 10.89,
- 11.13,
- 11.15,
- 10.81,
- 9.94,
- 9.74,
- 10.27,
- 11.17,
- 10.35,
- 10.34,
- 10.17,
- 9.75,
- 9.12,
- 8.5,
- 7.86,
- 7.37,
- 6.68,
- 5.86,
- 5.57,
- 5.98,
- 6.19,
- 5.52,
- 4.92,
- 4.35,
- 4.24,
- 4.0,
- 3.44,
- 2.63,
- 1.74,
- 0.44,
- -4.65,
- -5.14,
- -2.76,
- -0.17,
- 0.66,
- 0.7,
- 1.54,
- 1.37,
- 2.18,
- 1.57,
- 1.52,
- 0.23,
- -1.04,
- -1.87,
- -2.46,
- -2.36,
- -2.21,
- -1.06,
- 1.3,
- 3.44,
- 5.03,
- 5.69,
- 5.4,
- 4.41,
- 3.43,
- 3.08,
- -0.91,
- -4.02,
- -5.19,
- -4.18,
- -4.36,
- -3.19,
- -3.7,
- -5.15,
- -4.56,
- -3.43,
- -3.09,
- -3.09,
- -2.88,
- -1.69,
- -0.94,
- -0.8,
- -0.47,
- 0.07,
- -0.05,
- 0.13,
- -1.21,
- -4.09,
- -0.73,
- -2.16,
- -0.95,
- 0.75,
- 0.85,
- 1.41,
- 3.46,
- 4.74,
- 6.72,
- 3.2,
- 3.59,
- 5.24,
- 3.99,
- 3.58,
- 2.87,
- 2.22,
- 4.09,
- 6.36,
- 4.26,
- 4.47,
- 4.46,
- 2.37,
- 0.47,
- 2.4,
- 3.93,
- 4.31,
- 5.75,
- 6.47,
- 6.34,
- 8.18,
- 10.07,
- 10.14,
- 9.55,
- 8.33,
- 8.7,
- 10.08,
- 11.0,
- 9.6,
- 8.17,
- 9.47,
- 8.51,
- 6.9,
- 7.06,
- 7.84,
- 6.6,
- 4.25,
- 3.49,
- 3.87,
- 4.83,
- 5.45,
- 5.8,
- 5.77,
- 5.72,
- 6.05,
- 6.66,
- 7.04,
- 7.49,
- 7.97,
- 8.43,
- 8.41,
- 8.07,
- 7.83,
- 8.19,
- 8.78,
- 9.06,
- 9.11,
- 10.03,
- 11.47,
- 12.15,
- 11.81,
- 11.44,
- 11.7,
- 11.85,
- 12.57,
- 12.83,
- 12.69,
- 11.87,
- 10.97,
- 9.48,
- 8.96,
- 8.42,
- 9.1,
- 8.61,
- 7.06,
- 6.74,
- 6.91,
- 7.1,
- 7.24,
- 6.95,
- 4.93,
- 4.43,
- 4.66,
- 4.52,
- 5.45,
- 5.01,
- 5.24,
- 5.78,
- 4.33,
- 4.48,
- 4.03,
- 5.34,
- 6.31,
- 6.36,
- 6.55,
- 6.71,
- 5.76,
- 4.9,
- 4.78,
- 4.61,
- 4.79,
- 2.88,
- 3.41,
- 5.32,
- -2.55,
- -6.74,
- -5.43,
- -5.48,
- -6.31,
- -7.12,
- -6.43,
- -5.74,
- -6.11,
- -4.6,
- -4.55,
- -6.88,
- 1.57,
- 4.17,
- 4.72,
- 5.94,
- 6.83,
- 6.44,
- 5.67,
- 5.32,
- 5.64,
- 6.04,
- 6.23,
- 6.09,
- 6.42,
- 6.28,
- 6.11,
- 7.16,
- 6.81,
- 6.18,
- 6.63,
- 6.4,
- 6.67,
- 6.94,
- 6.82,
- 6.98,
- 7.33,
- 7.84,
- 8.66,
- 9.03,
- 9.22,
- 9.03,
- 8.81,
- 8.48,
- 7.58,
- 7.06,
- 7.0,
- 6.57,
- 7.17,
- 7.68,
- 8.13,
- 7.24,
- 6.13,
- 7.04,
- 8.6,
- 9.05,
- 8.92,
- 9.03,
- 9.33,
- 9.54,
- 9.8,
- 10.52,
- 11.13,
- 11.83,
- 12.6,
- 13.09,
- 13.09,
- 13.34,
- 12.84,
- 12.57,
- 13.34,
- 13.12,
- 12.46,
- 11.64,
- 11.18,
- 10.28,
- 9.51,
- 8.61,
- 8.53,
- 8.32,
- 7.97,
- 7.89,
- 7.91,
- 7.65,
- 7.05,
- 7.25,
- 7.52,
- 7.23,
- 7.14,
- 6.41,
- 6.21,
- 7.09,
- 8.03,
- 8.75,
- 10.33,
- 9.85,
- 9.69,
- 9.76,
- 9.04,
- 5.62,
- 4.01,
- 5.6,
- 7.68,
- 4.27,
- 3.73,
- 4.14,
- 4.65,
- 4.26,
- 4.09,
- 2.89,
- 3.27,
- 2.01,
- 2.01,
- 1.6,
- 2.51,
- 3.33,
- 1.7,
- 0.26,
- 0.9,
- 2.77,
- 0.81,
- 1.2,
- 0.24,
- -0.05,
- -0.32,
- -0.13,
- -0.36,
- 0.32,
- 0.28,
- 0.13,
- -1.67,
- -1.49,
- 0.09,
- 1.11,
- -0.72,
- -1.77,
- -0.86,
- -0.67,
- -0.32,
- 0.32,
- 0.89,
- 1.03,
- 1.56,
- 2.45,
- 3.93,
- 5.02,
- 6.09,
- 6.96,
- 8.14,
- 8.92,
- 9.82,
- 10.69,
- 11.82,
- 12.08,
- 11.5,
- 11.8,
- 11.9,
- 12.22,
- 11.79,
- 10.83,
- 10.33,
- 10.68,
- 12.25,
- 13.59,
- 13.01,
- 12.29,
- 11.49,
- 10.58,
- 10.23,
- 10.23,
- 10.75,
- 11.23,
- 11.22,
- 10.92,
- 9.56,
- 11.22,
- 11.64,
- 10.34,
- 9.82,
- 10.43,
- 10.33,
- 9.58,
- 9.05,
- 8.72,
- 8.21,
- 7.5,
- 6.78,
- 6.34,
- 6.83,
- 8.04,
- 7.23,
- 4.32,
- 5.04,
- 4.45,
- 4.8,
- 4.83,
- 4.41,
- 3.27,
- 2.54,
- -4.42,
- -3.62,
- -0.81,
- -0.24,
- -0.66,
- 0.33,
- 0.56,
- 0.38,
- -0.34,
- -0.32,
- -1.39,
- -1.79,
- -1.65,
- -1.46,
- -1.48,
- -1.72,
- -0.56,
- 2.05,
- 4.51,
- 5.41,
- 6.14,
- 4.65,
- 2.85,
- 1.63,
- 0.83,
- -4.84,
- -5.62,
- -6.95,
- -6.71,
- -6.59,
- -6.14,
- -5.72,
- -5.72,
- -5.84,
- -4.18,
- -3.58,
- -3.36,
- -2.81,
- -1.03,
- -0.25,
- -0.14,
- 0.16,
- 0.46,
- 1.23,
- 0.8,
- 0.44,
- -0.97,
- -2.26,
- -0.92,
- -0.49,
- 1.35,
- 0.03,
- 2.4,
- 5.59,
- 4.51,
- 4.69,
- 4.74,
- 5.39,
- 5.44,
- 5.13,
- 4.89,
- 4.34,
- 3.12,
- 3.04,
- 5.29,
- 4.99,
- 4.56,
- 4.13,
- 4.43,
- 1.5,
- 1.32,
- 2.96,
- 2.99,
- 3.25,
- 3.9,
- 4.17,
- 4.95,
- 5.98,
- 8.72,
- 11.09,
- 10.37,
- 9.68,
- 7.84,
- 6.79,
- 9.13,
- 11.25,
- 9.65,
- 9.39,
- 7.82,
- 8.38,
- 8.76,
- 7.06,
- 5.29,
- 3.44,
- 4.4,
- 4.98,
- 5.32,
- 6.32,
- 7.1,
- 7.11,
- 6.93,
- 6.48,
- 6.47,
- 7.32,
- 7.88,
- 8.28,
- 9.04,
- 9.34,
- 8.85,
- 9.08,
- 9.29,
- 9.28,
- 9.74,
- 9.59,
- 9.33,
- 9.71,
- 10.53,
- 11.39,
- 11.75,
- 12.42,
- 12.63,
- 12.29,
- 12.04,
- 11.4,
- 11.44,
- 11.68,
- 11.28,
- 9.28,
- 8.62,
- 8.89,
- 7.95,
- 7.38,
- 6.23,
- 7.69,
- 8.19,
- 8.13,
- 7.59,
- 5.98,
- 5.74,
- 5.02,
- 5.95,
- 6.09,
- 5.93,
- 6.24,
- 5.4,
- 5.97,
- 4.91,
- 5.32,
- 6.19,
- 7.75,
- 6.61,
- 5.96,
- 6.74,
- 6.61,
- 6.69,
- 6.74,
- 5.45,
- 3.98,
- 6.04,
- 3.65,
- 1.29,
- -5.0,
- -5.24,
- -3.21,
- -3.16,
- -2.65,
- -1.42,
- -1.55,
- -2.22,
- -2.99,
- -2.41,
- -0.31,
- -1.84,
- -1.33,
- -4.21,
- 2.61,
- 6.69,
- 6.8,
- 6.76,
- 7.45,
- 7.86,
- 7.47,
- 7.35,
- 7.43,
- 7.1,
- 7.35,
- 7.06,
- 6.31,
- 7.5,
- 7.85,
- 7.34,
- 6.08,
- 6.14,
- 7.18,
- 7.81,
- 7.52,
- 7.23,
- 7.03,
- 7.89,
- 8.98,
- 9.26,
- 9.6,
- 9.55,
- 9.42,
- 9.31,
- 8.1,
- 7.46,
- 7.29,
- 7.67,
- 8.06,
- 8.29,
- 8.23,
- 7.26,
- 6.67,
- 6.55,
- 7.03,
- 8.1,
- 7.87,
- 7.67,
- 7.35,
- 7.28,
- 8.01,
- 8.94,
- 9.61,
- 9.74,
- 10.38,
- 11.35,
- 12.81,
- 14.11,
- 14.33,
- 13.44,
- 12.41,
- 13.61,
- 13.61,
- 13.24,
- 12.43,
- 11.35,
- 10.25,
- 9.73,
- 9.1,
- 9.28,
- 9.0,
- 8.41,
- 8.35,
- 8.36,
- 7.75,
- 7.7,
- 7.69,
- 7.89,
- 7.52,
- 7.19,
- 8.12,
- 9.0,
- 9.65,
- 10.66,
- 11.46,
- 12.97,
- 11.06,
- 10.79,
- 10.48,
- 7.78,
- 6.02,
- 5.87,
- 6.49,
- 8.29,
- 5.25,
- 5.61,
- 3.9,
- 2.05,
- 1.0,
- 1.36,
- 2.06,
- 1.58,
- 2.23,
- 3.44,
- 2.79,
- 2.63,
- 1.75,
- 1.29,
- 0.36,
- 1.17,
- 2.44,
- 1.87,
- 0.15,
- -0.24,
- -0.15,
- 0.53,
- 1.15,
- 1.72,
- -2.33,
- -4.24,
- -4.63,
- -0.73,
- 0.46,
- -4.74,
- -4.71,
- -3.09,
- -2.28,
- -1.54,
- 0.12,
- 0.65,
- 1.0,
- 1.24,
- 1.87,
- 3.06,
- 4.31,
- 5.63,
- 6.42,
- 7.34,
- 8.12,
- 8.8,
- 9.78,
- 10.58,
- 10.87,
- 11.16,
- 12.25,
- 12.23,
- 12.09,
- 12.32,
- 12.21,
- 12.15,
- 11.49,
- 10.96,
- 10.34,
- 9.98,
- 10.43,
- 12.1,
- 13.08,
- 12.08,
- 11.93,
- 11.26,
- 10.72,
- 11.89,
- 11.8,
- 11.22,
- 10.94,
- 11.57,
- 11.88,
- 10.95,
- 10.78,
- 10.75,
- 9.76,
- 9.66,
- 9.58,
- 8.87,
- 8.25,
- 7.75,
- 7.24,
- 7.35,
- 7.74,
- 8.06,
- 7.51,
- 2.81,
- 3.28,
- 4.83,
- 5.3,
- 5.13,
- 5.59,
- 4.52,
- 3.56,
- -2.45,
- -2.62,
- 0.18,
- -1.85,
- -0.95,
- 0.08,
- -0.32,
- -1.29,
- -0.53,
- -1.99,
- -1.97,
- -1.83,
- -0.91,
- 0.27,
- 1.75,
- 2.11,
- 1.6,
- -0.29,
- 1.16,
- 3.67,
- 1.42,
- -1.23,
- -2.73,
- -5.38,
- -9.1,
- -9.31,
- -8.13,
- -7.86,
- -7.24,
- -6.0,
- -5.68,
- -6.68,
- -6.97,
- -5.62,
- -4.43,
- -3.38,
- -2.21,
- -0.12,
- -0.48,
- -0.13,
- 0.62,
- 1.41,
- 1.88,
- 2.02,
- 1.93,
- 1.1,
- 0.53,
- -0.7,
- -4.35,
- -0.44,
- 0.28,
- -0.85,
- 2.17,
- 3.27,
- 0.1,
- 0.32,
- 1.26,
- 3.44,
- 5.16,
- 5.5,
- 5.19,
- 4.54,
- 2.55,
- 4.38,
- 4.19,
- 5.47,
- 4.32,
- 5.28,
- 4.37,
- 2.75,
- 2.31,
- 3.16,
- 2.35,
- 3.46,
- 3.62,
- 3.42,
- 3.8,
- 4.28,
- 5.36,
- 5.94,
- 6.14,
- 8.0,
- 8.1,
- 7.42,
- 7.54,
- 9.04,
- 10.1,
- 8.25,
- 8.34,
- 8.5,
- 8.46,
- 6.92,
- 4.51,
- 3.39,
- 5.33,
- 5.66,
- 4.85,
- 6.22,
- 8.67,
- 8.13,
- 7.99,
- 8.42,
- 8.4,
- 8.09,
- 7.97,
- 8.21,
- 8.92,
- 9.54,
- 9.58,
- 9.63,
- 9.58,
- 9.97,
- 10.58,
- 10.3,
- 10.42,
- 9.94,
- 9.62,
- 10.16,
- 10.86,
- 11.52,
- 11.88,
- 10.94,
- 10.88,
- 10.89,
- 11.45,
- 11.95,
- 11.47,
- 9.76,
- 10.08,
- 7.98,
- 6.27,
- 6.28,
- 6.44,
- 7.12,
- 8.21,
- 8.81,
- 8.07,
- 6.59,
- 6.59,
- 6.66,
- 5.57,
- 5.98,
- 7.1,
- 6.8,
- 6.93,
- 5.67,
- 5.59,
- 6.14,
- 7.69,
- 7.1,
- 6.67,
- 6.85,
- 7.27,
- 7.7,
- 6.97,
- 7.56,
- 7.48,
- 5.85,
- 5.16,
- 7.52,
- 3.49,
- 3.28,
- 1.52,
- 1.7,
- 2.12,
- 1.34,
- 0.38,
- 0.18,
- 0.61,
- 1.49,
- 2.45,
- 2.34,
- 3.26,
- 1.12,
- 1.54,
- 2.9,
- 0.0,
- 3.97,
- 7.57,
- 7.83,
- 8.05,
- 7.07,
- 7.43,
- 8.3,
- 8.54,
- 8.35,
- 8.47,
- 7.07,
- 7.35,
- 7.22,
- 7.83,
- 8.17,
- 9.25,
- 9.84,
- 10.28,
- 9.27,
- 8.95,
- 8.76,
- 8.99,
- 9.95,
- 9.24,
- 8.9,
- 9.71,
- 10.0,
- 9.18,
- 7.86,
- 8.18,
- 9.07,
- 9.25,
- 9.17,
- 8.64,
- 7.61,
- 6.87,
- 6.11,
- 6.37,
- 6.46,
- 7.31,
- 6.52,
- 7.17,
- 7.78,
- 8.26,
- 8.08,
- 8.37,
- 7.63,
- 8.22,
- 8.8,
- 9.46,
- 10.23,
- 10.75,
- 12.34,
- 13.94,
- 14.53,
- 14.39,
- 14.0,
- 13.46,
- 13.23,
- 12.36,
- 11.66,
- 10.87,
- 10.25,
- 9.84,
- 9.9,
- 9.38,
- 8.95,
- 9.09,
- 8.34,
- 8.07,
- 8.04,
- 7.49,
- 7.12,
- 8.1,
- 8.53,
- 9.49,
- 10.98,
- 12.66,
- 13.48,
- 13.5,
- 14.65,
- 12.33,
- 11.64,
- 10.37,
- 8.84,
- 7.91,
- 6.73,
- 7.32,
- 8.3,
- 7.18,
- 7.14,
- 5.0,
- 0.39,
- 1.8,
- 2.96,
- 2.76,
- 3.29,
- 3.61,
- 3.19,
- 3.39,
- 3.1,
- 2.92,
- 1.5,
- 1.04,
- 2.21,
- 2.91,
- 1.31,
- 1.28,
- 1.33,
- 2.0,
- 2.18,
- 0.55,
- -4.2,
- -0.51,
- 2.17,
- -1.59,
- -6.49,
- -5.41,
- -4.56,
- -3.24,
- -1.73,
- -0.55,
- 0.57,
- 1.19,
- 1.28,
- 1.63,
- 2.59,
- 3.74,
- 4.96,
- 6.15,
- 6.56,
- 7.71,
- 7.6,
- 8.1,
- 8.61,
- 8.61,
- 8.78,
- 9.16,
- 9.58,
- 10.71,
- 11.72,
- 11.99,
- 11.92,
- 11.44,
- 11.31,
- 11.34,
- 11.36,
- 11.46,
- 11.08,
- 10.24,
- 10.72,
- 12.82,
- 14.07,
- 12.41,
- 11.46,
- 11.37,
- 11.88,
- 12.15,
- 11.77,
- 11.23,
- 11.16,
- 10.85,
- 11.79,
- 12.85,
- 10.6,
- 9.82,
- 10.03,
- 9.61,
- 8.91,
- 8.22,
- 7.92,
- 8.18,
- 8.68,
- 8.77,
- 7.75,
- 2.06,
- 1.68,
- 4.32,
- 5.68,
- 5.79,
- 6.55,
- 5.64,
- 4.66,
- -0.45,
- -2.43,
- 0.15,
- -2.3,
- -1.24,
- -0.88,
- -1.4,
- -1.04,
- -2.38,
- -2.31,
- -0.67,
- -0.72,
- 0.02,
- -0.05,
- -0.77,
- -3.28,
- -3.39,
- -3.74,
- -5.94,
- -12.75,
- -11.73,
- -11.07,
- -11.82,
- -11.54,
- -9.42,
- -7.96,
- -8.58,
- -8.74,
- -7.79,
- -8.14,
- -8.59,
- -8.27,
- -7.0,
- -5.08,
- -4.14,
- -3.17,
- -2.5,
- -2.68,
- -1.5,
- -0.49,
- 1.52,
- 2.45,
- 2.54,
- 2.63,
- 2.09,
- 0.56,
- -0.18,
- -0.9,
- -2.15,
- -0.22,
- 0.81,
- 0.39,
- 0.23,
- 1.13,
- 0.99,
- 1.92,
- 4.09,
- 4.85,
- 5.04,
- 5.51,
- 5.18,
- 3.85,
- 3.75,
- 4.85,
- 4.81,
- 5.39,
- 4.91,
- 6.03,
- 5.8,
- 3.53,
- 3.29,
- 2.45,
- 2.29,
- 3.3,
- 3.48,
- 3.52,
- 4.14,
- 4.55,
- 4.57,
- 5.61,
- 7.26,
- 8.48,
- 8.5,
- 8.54,
- 8.2,
- 9.43,
- 9.27,
- 7.48,
- 6.71,
- 7.18,
- 7.37,
- 6.02,
- 4.24,
- 4.82,
- 6.11,
- 5.52,
- 5.69,
- 7.09,
- 8.94,
- 9.85,
- 9.81,
- 10.14,
- 10.26,
- 9.94,
- 9.15,
- 8.41,
- 8.93,
- 9.61,
- 9.47,
- 9.52,
- 10.25,
- 10.8,
- 11.03,
- 11.64,
- 11.39,
- 10.83,
- 9.7,
- 9.6,
- 10.15,
- 10.52,
- 10.82,
- 11.52,
- 11.41,
- 11.11,
- 11.51,
- 12.38,
- 12.87,
- 11.38,
- 9.81,
- 6.28,
- 5.44,
- 4.89,
- 5.35,
- 6.8,
- 7.62,
- 8.19,
- 7.46,
- 6.92,
- 7.42,
- 6.36,
- 5.88,
- 6.63,
- 7.4,
- 8.08,
- 6.62,
- 5.54,
- 6.33,
- 7.1,
- 6.82,
- 7.08,
- 6.98,
- 6.21,
- 7.69,
- 7.65,
- 6.66,
- 6.96,
- 7.84,
- 6.98,
- 5.69,
- 8.05,
- 4.38,
- 4.94,
- 4.22,
- 2.98,
- 2.57,
- 1.99,
- 1.15,
- 1.65,
- 3.3,
- 4.31,
- 5.14,
- 4.78,
- 4.29,
- 4.51,
- 3.5,
- 3.07,
- 4.26,
- 4.35,
- 3.91,
- 5.97,
- 8.67,
- 8.85,
- 8.09,
- 8.01,
- 8.46,
- 8.44,
- 8.09,
- 7.19,
- 8.02,
- 8.96,
- 9.09,
- 9.03,
- 8.77,
- 8.09,
- 9.23,
- 9.07,
- 9.34,
- 9.66,
- 10.19,
- 10.58,
- 11.09,
- 9.95,
- 9.45,
- 9.93,
- 9.61,
- 8.32,
- 8.95,
- 10.9,
- 11.55,
- 10.54,
- 9.1,
- 7.7,
- 6.81,
- 6.23,
- 5.62,
- 6.43,
- 6.54,
- 5.66,
- 5.77,
- 7.25,
- 7.82,
- 8.2,
- 8.44,
- 8.67,
- 9.58,
- 10.46,
- 11.37,
- 11.77,
- 12.3,
- 12.22,
- 12.14,
- 13.71,
- 15.08,
- 14.07,
- 13.6,
- 13.64,
- 13.24,
- 12.76,
- 11.84,
- 10.72,
- 10.71,
- 10.22,
- 9.82,
- 9.47,
- 9.28,
- 8.92,
- 8.62,
- 8.04,
- 7.45,
- 7.69,
- 7.84,
- 8.83,
- 10.52,
- 11.36,
- 13.5,
- 15.9,
- 15.98,
- 14.8,
- 14.91,
- 12.41,
- 11.62,
- 10.07,
- 8.77,
- 7.06,
- 6.67,
- 8.65,
- 9.45,
- 8.0,
- 9.19,
- 5.92,
- 2.95,
- 2.95,
- 2.5,
- 2.9,
- 3.0,
- 2.7,
- 2.83,
- 3.04,
- 3.03,
- 2.36,
- 2.05,
- 2.7,
- 3.21,
- 3.09,
- 2.63,
- 2.54,
- 2.17,
- 3.69,
- -3.68,
- 1.71,
- 2.3,
- 0.22,
- -1.99,
- -4.34,
- -3.86,
- -2.61,
- -1.08,
- 0.03,
- 0.79,
- 1.72,
- 2.03,
- 1.99,
- 2.48,
- 3.37,
- 4.56,
- 5.78,
- 6.49,
- 6.82,
- 7.43,
- 6.78,
- 7.69,
- 8.14,
- 8.25,
- 8.64,
- 8.73,
- 9.82,
- 9.99,
- 9.12,
- 9.21,
- 9.95,
- 10.88,
- 11.56,
- 11.93,
- 11.71,
- 11.42,
- 11.24,
- 11.01,
- 11.49,
- 11.05,
- 9.67,
- 10.22,
- 12.73,
- 13.87,
- 12.74,
- 12.26,
- 12.12,
- 12.49,
- 12.38,
- 11.61,
- 10.72,
- 10.45,
- 10.87,
- 10.78,
- 10.03,
- 9.39,
- 9.46,
- 9.23,
- 8.85,
- 9.1,
- 9.85,
- 9.95,
- 6.24,
- 0.8,
- 1.71,
- 4.65,
- 6.57,
- 7.32,
- 7.64,
- 6.09,
- 4.71,
- 1.31,
- -2.08,
- -1.2,
- -2.07,
- -2.27,
- -1.84,
- -1.87,
- -2.75,
- -3.64,
- -1.86,
- -1.92,
- -1.99,
- -2.02,
- -2.96,
- -3.93,
- -4.98,
- -6.18,
- -6.4,
- -8.5,
- -9.42,
- -10.45,
- -11.58,
- -11.24,
- -9.57,
- -9.44,
- -9.61,
- -8.98,
- -8.64,
- -8.63,
- -8.73,
- -8.03,
- -7.25,
- -5.64,
- -4.73,
- -3.7,
- -2.88,
- -2.44,
- -1.96,
- -0.87,
- 0.72,
- 2.2,
- 2.74,
- 2.41,
- 1.77,
- 0.35,
- -0.55,
- -1.63,
- -1.14,
- -1.33,
- -0.14,
- 2.86,
- -0.44,
- 1.13,
- 0.67,
- 3.44,
- 4.53,
- 4.36,
- 4.99,
- 5.22,
- 5.74,
- 4.92,
- 3.96,
- 4.26,
- 5.31,
- 5.56,
- 5.37,
- 6.07,
- 6.48,
- 6.1,
- 4.48,
- 4.41,
- 3.17,
- 2.55,
- 3.57,
- 3.49,
- 3.6,
- 4.31,
- 4.68,
- 4.2,
- 3.38,
- 3.68,
- 4.59,
- 7.31,
- 8.61,
- 6.87,
- 5.15,
- 2.18,
- 6.14,
- 8.36,
- 7.28,
- 6.55,
- 5.44,
- 5.0,
- 5.5,
- 5.68,
- 4.65,
- 4.84,
- 7.09,
- 10.22,
- 10.9,
- 9.94,
- 9.65,
- 10.32,
- 9.58,
- 9.14,
- 8.78,
- 8.56,
- 9.12,
- 9.96,
- 10.51,
- 10.49,
- 10.5,
- 10.77,
- 11.31,
- 11.46,
- 11.15,
- 10.18,
- 10.05,
- 11.25,
- 11.98,
- 11.46,
- 12.18,
- 12.13,
- 11.83,
- 11.33,
- 11.82,
- 11.87,
- 11.08,
- 8.21,
- 6.13,
- 4.87,
- 4.77,
- 5.39,
- 5.89,
- 5.94,
- 6.76,
- 7.14,
- 7.04,
- 6.97,
- 6.67,
- 7.0,
- 7.49,
- 7.58,
- 7.83,
- 7.0,
- 6.57,
- 6.7,
- 6.66,
- 6.6,
- 6.98,
- 6.09,
- 6.9,
- 8.92,
- 7.72,
- 6.73,
- 6.63,
- 6.1,
- 6.48,
- 4.34,
- 6.66,
- 7.08,
- 6.06,
- 5.76,
- 4.53,
- 1.99,
- 1.78,
- 2.99,
- 4.47,
- 5.44,
- 5.62,
- 6.14,
- 6.33,
- 6.81,
- 6.71,
- 5.6,
- 4.99,
- 4.55,
- 6.31,
- 6.6,
- 3.79,
- 4.56,
- 8.53,
- 10.62,
- 10.47,
- 9.6,
- 8.8,
- 8.74,
- 8.34,
- 8.03,
- 8.24,
- 8.57,
- 9.17,
- 8.97,
- 9.51,
- 10.9,
- 11.34,
- 12.18,
- 11.56,
- 10.56,
- 10.36,
- 10.54,
- 10.46,
- 10.79,
- 11.0,
- 11.07,
- 10.1,
- 10.13,
- 11.91,
- 12.08,
- 10.72,
- 9.2,
- 8.3,
- 7.6,
- 6.76,
- 6.5,
- 6.42,
- 6.38,
- 6.23,
- 7.41,
- 8.04,
- 8.37,
- 8.56,
- 8.78,
- 8.92,
- 9.18,
- 9.71,
- 10.64,
- 11.77,
- 12.68,
- 12.12,
- 11.11,
- 12.69,
- 14.85,
- 15.78,
- 14.54,
- 14.6,
- 14.31,
- 13.46,
- 12.73,
- 11.96,
- 10.94,
- 10.7,
- 9.63,
- 9.18,
- 9.52,
- 9.41,
- 9.35,
- 8.14,
- 7.75,
- 8.38,
- 8.9,
- 10.03,
- 9.24,
- 9.47,
- 11.54,
- 11.7,
- 13.92,
- 15.2,
- 14.0,
- 13.69,
- 11.64,
- 9.33,
- 7.35,
- 6.56,
- 6.65,
- 7.31,
- 8.45,
- 7.29,
- 8.75,
- 8.41,
- 6.38,
- 3.94,
- 2.49,
- 2.06,
- 2.12,
- 1.98,
- 1.83,
- 1.96,
- 2.87,
- 2.72,
- 2.86,
- 3.91,
- 4.73,
- 3.81,
- 3.77,
- 3.88,
- 2.64,
- 1.78,
- 1.47,
- 0.9,
- -0.79,
- -0.35,
- -2.45,
- -1.4,
- -1.05,
- -0.16,
- 0.59,
- 1.19,
- 2.27,
- 2.89,
- 3.07,
- 3.12,
- 3.51,
- 4.23,
- 5.38,
- 6.36,
- 6.84,
- 6.81,
- 6.86,
- 7.31,
- 8.02,
- 8.54,
- 8.73,
- 8.01,
- 7.47,
- 7.81,
- 7.38,
- 7.55,
- 7.69,
- 7.35,
- 6.87,
- 7.43,
- 8.13,
- 9.75,
- 11.23,
- 11.88,
- 11.81,
- 11.84,
- 12.02,
- 11.61,
- 10.81,
- 10.34,
- 10.15,
- 9.58,
- 9.41,
- 9.61,
- 9.71,
- 9.64,
- 10.92,
- 12.39,
- 12.5,
- 11.94,
- 10.84,
- 10.13,
- 8.34,
- 8.58,
- 9.31,
- 9.23,
- 9.28,
- 8.79,
- 4.55,
- -0.39,
- 0.82,
- 3.72,
- 6.68,
- 8.44,
- 8.81,
- 7.7,
- 6.26,
- 4.2,
- 1.85,
- -2.4,
- -2.92,
- -2.79,
- -3.26,
- -2.78,
- -3.36,
- -5.99,
- -3.28,
- -4.29,
- -4.03,
- -3.8,
- -3.96,
- -4.83,
- -6.59,
- -7.45,
- -8.25,
- -8.22,
- -8.7,
- -9.61,
- -10.99,
- -10.89,
- -10.83,
- -10.05,
- -9.91,
- -9.09,
- -8.61,
- -8.57,
- -7.92,
- -6.51,
- -5.46,
- -5.4,
- -4.31,
- -3.48,
- -2.35,
- -2.05,
- -1.82,
- -1.55,
- -0.14,
- 1.7,
- 2.43,
- 2.02,
- 0.62,
- -1.08,
- -1.48,
- -2.03,
- -1.42,
- -0.48,
- -0.87,
- 0.93,
- 1.14,
- 0.71,
- -0.88,
- 3.37,
- 2.06,
- 3.33,
- 4.13,
- 4.84,
- 5.82,
- 6.35,
- 5.36,
- 4.59,
- 4.79,
- 6.08,
- 6.75,
- 6.41,
- 7.14,
- 6.95,
- 6.23,
- 5.41,
- 5.87,
- 5.1,
- 3.01,
- 3.9,
- 3.92,
- 4.01,
- 4.84,
- 4.9,
- 4.59,
- 4.69,
- 3.65,
- 3.45,
- 5.06,
- 5.84,
- 6.19,
- 5.49,
- 4.88,
- 4.45,
- 4.83,
- 5.44,
- 7.24,
- 6.37,
- 6.0,
- 5.88,
- 4.6,
- 3.22,
- 5.66,
- 8.27,
- 9.98,
- 9.32,
- 8.52,
- 9.12,
- 8.81,
- 7.92,
- 7.92,
- 8.43,
- 8.67,
- 9.09,
- 9.97,
- 10.66,
- 11.47,
- 11.62,
- 11.46,
- 11.71,
- 12.0,
- 11.95,
- 11.37,
- 10.69,
- 11.33,
- 11.57,
- 11.93,
- 13.05,
- 13.45,
- 13.19,
- 12.98,
- 12.43,
- 11.88,
- 9.38,
- 6.55,
- 5.92,
- 5.76,
- 5.33,
- 5.12,
- 5.37,
- 5.64,
- 6.04,
- 6.56,
- 6.89,
- 7.33,
- 7.36,
- 7.98,
- 8.04,
- 7.74,
- 7.75,
- 7.35,
- 6.55,
- 6.7,
- 6.22,
- 6.45,
- 6.81,
- 7.1,
- 7.86,
- 8.94,
- 7.71,
- 6.47,
- 5.67,
- 5.6,
- 6.18,
- 5.47,
- 6.85,
- 6.07,
- 5.25,
- 4.84,
- 2.06,
- 2.72,
- 3.8,
- 4.46,
- 5.4,
- 6.17,
- 5.97,
- 6.3,
- 7.02,
- 7.5,
- 8.26,
- 8.66,
- 7.36,
- 7.43,
- 6.61,
- 6.06,
- 5.86,
- 5.03,
- 2.67,
- 2.85,
- 7.55,
- 10.69,
- 10.65,
- 10.39,
- 10.37,
- 10.32,
- 10.45,
- 10.47,
- 10.55,
- 10.42,
- 10.4,
- 10.64,
- 10.66,
- 10.99,
- 11.27,
- 10.75,
- 10.85,
- 11.21,
- 11.86,
- 11.26,
- 10.81,
- 11.11,
- 10.21,
- 10.16,
- 11.74,
- 11.94,
- 10.49,
- 8.73,
- 9.14,
- 9.17,
- 8.87,
- 8.27,
- 7.26,
- 6.95,
- 6.97,
- 8.44,
- 9.42,
- 9.47,
- 8.03,
- 7.93,
- 9.27,
- 10.06,
- 10.74,
- 10.57,
- 11.58,
- 12.34,
- 11.82,
- 11.69,
- 12.73,
- 14.23,
- 16.09,
- 15.15,
- 14.63,
- 14.2,
- 13.73,
- 12.94,
- 12.0,
- 11.22,
- 10.55,
- 9.86,
- 9.66,
- 9.9,
- 9.9,
- 9.4,
- 8.69,
- 8.23,
- 9.22,
- 9.74,
- 9.5,
- 8.15,
- 8.31,
- 7.78,
- 9.67,
- 11.62,
- 12.02,
- 13.15,
- 12.69,
- 12.34,
- 8.85,
- 6.43,
- 6.53,
- 7.05,
- 7.17,
- 7.45,
- 6.16,
- 6.17,
- 5.07,
- 4.21,
- 3.22,
- 1.29,
- 0.92,
- 1.18,
- 1.39,
- 1.38,
- 1.22,
- 1.56,
- 2.33,
- 3.48,
- 5.02,
- 5.46,
- 6.08,
- 4.64,
- 4.78,
- 4.29,
- 4.74,
- 7.0,
- -0.61,
- -2.02,
- -3.66,
- -2.02,
- -0.07,
- 0.6,
- 1.26,
- 1.41,
- 2.5,
- 3.48,
- 4.09,
- 4.12,
- 4.14,
- 4.34,
- 5.04,
- 6.0,
- 6.55,
- 6.52,
- 6.6,
- 7.27,
- 8.05,
- 9.04,
- 9.52,
- 9.39,
- 9.03,
- 8.56,
- 8.59,
- 8.25,
- 9.03,
- 9.22,
- 8.52,
- 7.52,
- 6.92,
- 7.49,
- 8.06,
- 8.38,
- 8.74,
- 9.82,
- 11.24,
- 11.57,
- 11.34,
- 11.14,
- 10.58,
- 10.09,
- 9.86,
- 10.0,
- 10.27,
- 10.78,
- 11.43,
- 12.35,
- 13.17,
- 13.64,
- 12.95,
- 10.86,
- 9.73,
- 7.88,
- 7.99,
- 8.51,
- 8.74,
- 8.71,
- 5.63,
- 0.22,
- 1.75,
- 4.64,
- 7.59,
- 9.54,
- 10.28,
- 9.8,
- 7.31,
- 5.91,
- 2.66,
- 1.16,
- -3.41,
- -4.05,
- -3.47,
- -3.72,
- -3.59,
- -5.63,
- -5.01,
- -4.87,
- -5.2,
- -6.15,
- -5.96,
- -6.57,
- -7.89,
- -9.06,
- -9.91,
- -10.27,
- -9.52,
- -9.33,
- -9.53,
- -10.84,
- -11.27,
- -11.06,
- -11.09,
- -10.47,
- -9.42,
- -8.47,
- -7.25,
- -5.99,
- -5.15,
- -4.39,
- -3.3,
- -2.26,
- -1.67,
- -0.95,
- -2.37,
- -0.97,
- -0.35,
- 1.83,
- 3.07,
- 2.78,
- 1.32,
- -0.09,
- -1.34,
- -1.63,
- -1.39,
- -0.6,
- -0.18,
- -0.76,
- 0.29,
- 2.6,
- 1.26,
- 3.45,
- 3.43,
- 3.3,
- 4.48,
- 4.44,
- 5.63,
- 6.43,
- 6.45,
- 5.27,
- 5.22,
- 5.79,
- 7.05,
- 7.41,
- 7.31,
- 7.58,
- 7.09,
- 6.38,
- 6.29,
- 6.57,
- 6.87,
- 4.37,
- 3.8,
- 4.49,
- 4.58,
- 5.47,
- 5.41,
- 5.28,
- 4.97,
- 4.27,
- 5.71,
- 5.34,
- 5.67,
- 4.42,
- 3.86,
- 3.96,
- 4.53,
- 6.05,
- 8.24,
- 8.32,
- 7.63,
- 6.3,
- 5.14,
- 3.21,
- 3.16,
- 3.03,
- 2.46,
- 2.16,
- 2.48,
- 2.79,
- 2.74,
- 2.8,
- 2.35,
- 2.71,
- 2.62,
- 3.29,
- 4.08,
- 4.86,
- 5.79,
- 6.92,
- 8.08,
- 9.64,
- 11.1,
- 11.59,
- 12.03,
- 12.68,
- 12.63,
- 12.01,
- 11.85,
- 12.3,
- 14.18,
- 14.17,
- 14.16,
- 13.56,
- 13.02,
- 12.56,
- 9.81,
- 8.12,
- 7.59,
- 5.65,
- 5.2,
- 4.51,
- 4.92,
- 6.02,
- 6.54,
- 7.39,
- 7.92,
- 8.05,
- 8.18,
- 8.36,
- 7.75,
- 7.89,
- 7.73,
- 7.02,
- 6.55,
- 6.13,
- 6.55,
- 6.42,
- 6.8,
- 8.55,
- 9.28,
- 8.44,
- 7.8,
- 6.62,
- 4.87,
- 5.4,
- 5.92,
- 6.38,
- 5.64,
- 5.64,
- 5.47,
- 4.77,
- 4.09,
- 4.63,
- 5.06,
- 5.66,
- 6.64,
- 7.87,
- 7.49,
- 7.35,
- 8.52,
- 9.46,
- 8.67,
- 8.21,
- 8.74,
- 8.67,
- 7.94,
- 6.64,
- 5.95,
- 5.32,
- 5.32,
- 5.33,
- 3.75,
- 1.53,
- 3.11,
- 8.05,
- 12.32,
- 12.49,
- 11.6,
- 11.32,
- 11.34,
- 11.28,
- 10.84,
- 11.29,
- 11.81,
- 12.1,
- 12.23,
- 12.45,
- 13.01,
- 13.31,
- 13.42,
- 12.78,
- 12.01,
- 12.32,
- 11.67,
- 11.4,
- 12.49,
- 11.92,
- 10.12,
- 9.7,
- 10.25,
- 9.7,
- 8.84,
- 7.84,
- 7.61,
- 8.53,
- 9.04,
- 9.77,
- 9.86,
- 8.85,
- 8.54,
- 8.84,
- 9.4,
- 10.11,
- 10.03,
- 9.99,
- 11.28,
- 12.3,
- 12.5,
- 12.84,
- 13.43,
- 13.84,
- 14.76,
- 14.92,
- 14.42,
- 14.65,
- 13.47,
- 12.81,
- 11.67,
- 10.97,
- 10.79,
- 10.0,
- 9.74,
- 9.91,
- 9.77,
- 8.91,
- 8.67,
- 8.98,
- 9.24,
- 9.33,
- 8.05,
- 7.1,
- 7.58,
- 7.29,
- 6.74,
- 9.64,
- 9.46,
- 11.08,
- 10.83,
- 11.55,
- 9.38,
- 6.69,
- 7.02,
- 8.74,
- 7.57,
- 7.87,
- 5.26,
- 4.68,
- 3.66,
- 2.87,
- 2.2,
- 1.1,
- 1.12,
- 1.78,
- 2.26,
- 2.4,
- 2.54,
- 2.44,
- 2.66,
- 3.6,
- 4.28,
- 6.99,
- 6.65,
- 6.36,
- 5.73,
- 5.15,
- 5.33,
- 6.4,
- 0.25,
- -1.43,
- -1.86,
- -0.52,
- 0.84,
- 1.27,
- 1.54,
- 2.45,
- 3.68,
- 4.44,
- 4.98,
- 5.0,
- 4.95,
- 5.18,
- 5.8,
- 6.37,
- 6.32,
- 6.41,
- 6.83,
- 7.87,
- 8.5,
- 9.75,
- 10.13,
- 10.1,
- 10.07,
- 9.88,
- 9.19,
- 9.1,
- 9.1,
- 8.73,
- 8.03,
- 8.06,
- 7.89,
- 8.76,
- 9.08,
- 9.1,
- 9.03,
- 8.94,
- 8.69,
- 8.95,
- 9.89,
- 10.86,
- 11.32,
- 11.38,
- 11.08,
- 11.23,
- 11.47,
- 11.79,
- 12.12,
- 12.3,
- 12.51,
- 13.2,
- 13.94,
- 13.38,
- 12.02,
- 7.39,
- 7.24,
- 7.53,
- 8.08,
- 7.16,
- 2.67,
- 2.94,
- 5.26,
- 7.73,
- 10.33,
- 12.54,
- 13.87,
- 12.48,
- 8.59,
- 6.34,
- 1.08,
- -0.46,
- -5.17,
- -4.2,
- -3.31,
- -4.28,
- -4.04,
- -6.33,
- -5.18,
- -5.83,
- -5.51,
- -7.23,
- -7.99,
- -8.58,
- -9.55,
- -9.71,
- -10.17,
- -10.07,
- -9.61,
- -8.9,
- -8.66,
- -9.65,
- -10.11,
- -10.15,
- -9.62,
- -9.1,
- -8.65,
- -8.28,
- -7.63,
- -6.8,
- -5.86,
- -5.16,
- -4.08,
- -2.97,
- -2.97,
- -3.75,
- -1.36,
- 1.03,
- 2.84,
- 4.4,
- 4.45,
- 3.63,
- 1.46,
- 0.02,
- -0.55,
- -0.36,
- -0.63,
- -0.66,
- -0.16,
- 0.16,
- 2.28,
- 2.62,
- 0.86,
- 4.71,
- 2.11,
- 2.58,
- 4.19,
- 5.46,
- 5.62,
- 5.39,
- 5.2,
- 5.75,
- 5.83,
- 6.07,
- 6.75,
- 7.45,
- 7.34,
- 7.58,
- 7.42,
- 7.15,
- 7.36,
- 7.04,
- 7.24,
- 7.14,
- 5.77,
- 5.4,
- 6.12,
- 6.06,
- 6.02,
- 5.57,
- 5.0,
- 6.02,
- 6.37,
- 5.41,
- 4.44,
- 2.65,
- 3.83,
- 4.72,
- 3.95,
- 5.43,
- 5.5,
- 10.12,
- 5.11,
- 1.39,
- -0.97,
- -1.27,
- -1.47,
- 0.08,
- 1.9,
- 4.28,
- 5.27,
- 4.78,
- 4.95,
- 4.82,
- 4.2,
- 4.56,
- 4.54,
- 6.16,
- 6.82,
- 6.41,
- 6.74,
- 7.94,
- 8.67,
- 9.2,
- 10.1,
- 11.14,
- 12.26,
- 13.93,
- 15.06,
- 14.67,
- 14.14,
- 14.16,
- 16.56,
- 16.37,
- 15.41,
- 14.76,
- 14.32,
- 13.04,
- 10.36,
- 7.97,
- 7.26,
- 5.8,
- 4.17,
- 3.75,
- 3.9,
- 4.98,
- 6.7,
- 7.73,
- 7.98,
- 8.91,
- 9.02,
- 8.35,
- 8.11,
- 8.11,
- 7.76,
- 7.73,
- 7.48,
- 7.38,
- 7.29,
- 7.41,
- 7.78,
- 9.06,
- 9.05,
- 6.01,
- 5.98,
- 6.35,
- 6.01,
- 6.11,
- 6.32,
- 6.6,
- 7.31,
- 5.99,
- 4.56,
- 4.49,
- 5.47,
- 5.39,
- 5.67,
- 6.22,
- 7.69,
- 8.91,
- 9.67,
- 8.6,
- 6.42,
- 6.59,
- 7.39,
- 7.01,
- 7.04,
- 7.66,
- 8.04,
- 7.12,
- 6.75,
- 7.45,
- 7.75,
- 7.43,
- 6.42,
- 5.51,
- 5.59,
- 6.0,
- 5.87,
- 5.62,
- 6.91,
- 12.81,
- 13.42,
- 12.3,
- 11.36,
- 11.46,
- 12.18,
- 12.57,
- 12.57,
- 13.73,
- 14.56,
- 14.44,
- 14.62,
- 14.56,
- 13.45,
- 12.94,
- 12.72,
- 12.2,
- 11.66,
- 11.16,
- 10.61,
- 10.31,
- 10.27,
- 9.7,
- 9.29,
- 9.62,
- 9.87,
- 9.47,
- 9.56,
- 10.85,
- 10.38,
- 9.74,
- 10.2,
- 10.24,
- 9.3,
- 10.23,
- 10.7,
- 9.79,
- 9.92,
- 11.3,
- 11.86,
- 12.32,
- 12.6,
- 13.25,
- 14.63,
- 14.89,
- 14.31,
- 13.99,
- 13.49,
- 12.68,
- 11.43,
- 10.55,
- 10.3,
- 9.84,
- 9.66,
- 9.43,
- 9.2,
- 9.0,
- 8.97,
- 9.03,
- 8.71,
- 8.39,
- 7.02,
- 6.42,
- 6.55,
- 5.84,
- 6.69,
- 6.75,
- 10.37,
- 8.39,
- 9.01,
- 7.66,
- 7.77,
- 6.93,
- 6.77,
- 8.43,
- 6.97,
- 7.05,
- 4.6,
- 3.86,
- 2.85,
- 0.85,
- 1.42,
- 1.64,
- 1.94,
- 2.62,
- 3.08,
- 3.42,
- 3.6,
- 3.91,
- 3.84,
- 3.9,
- 4.99,
- 6.36,
- 8.43,
- 7.88,
- 6.87,
- 6.08,
- 4.06,
- 2.41,
- 1.11,
- -0.3,
- -0.07,
- 1.15,
- 1.7,
- 1.84,
- 2.47,
- 3.51,
- 4.33,
- 5.09,
- 5.59,
- 5.63,
- 5.73,
- 6.05,
- 6.31,
- 6.49,
- 6.35,
- 7.11,
- 7.6,
- 8.96,
- 9.41,
- 10.1,
- 10.15,
- 10.22,
- 10.42,
- 10.52,
- 10.36,
- 9.87,
- 8.6,
- 7.68,
- 7.78,
- 8.04,
- 8.1,
- 7.88,
- 7.91,
- 7.59,
- 7.7,
- 7.88,
- 8.23,
- 8.61,
- 8.93,
- 9.16,
- 9.68,
- 10.39,
- 11.18,
- 11.74,
- 11.85,
- 12.17,
- 12.27,
- 12.25,
- 12.02,
- 12.71,
- 12.69,
- 12.02,
- 12.74,
- 7.88,
- 5.29,
- 6.69,
- 6.56,
- 3.69,
- 2.3,
- 5.31,
- 6.99,
- 9.13,
- 12.43,
- 15.16,
- 17.5,
- 13.97,
- 6.33,
- 4.13,
- -1.34,
- -3.59,
- -6.48,
- -3.79,
- -4.27,
- -4.56,
- -5.0,
- -6.0,
- -5.55,
- -5.56,
- -5.85,
- -7.4,
- -9.15,
- -9.86,
- -10.06,
- -10.22,
- -10.02,
- -9.67,
- -9.42,
- -9.09,
- -8.99,
- -9.35,
- -9.5,
- -9.86,
- -9.81,
- -9.54,
- -9.3,
- -9.14,
- -8.83,
- -8.34,
- -7.13,
- -5.93,
- -4.61,
- -2.99,
- -1.49,
- 0.21,
- 1.84,
- 3.03,
- 3.73,
- 4.5,
- 4.34,
- 3.71,
- 2.24,
- 0.9,
- 0.72,
- 0.74,
- 0.24,
- -1.16,
- -1.15,
- -0.66,
- 1.91,
- 0.23,
- 2.78,
- 2.51,
- 2.37,
- 3.01,
- 2.65,
- 3.33,
- 4.05,
- 4.38,
- 5.34,
- 6.27,
- 6.39,
- 6.09,
- 6.12,
- 6.36,
- 6.22,
- 6.61,
- 7.23,
- 7.71,
- 8.25,
- 7.93,
- 8.12,
- 8.08,
- 7.01,
- 7.21,
- 7.27,
- 6.97,
- 6.98,
- 5.85,
- 5.56,
- 6.16,
- 6.03,
- 5.11,
- 4.83,
- 4.74,
- 4.78,
- 5.13,
- 4.56,
- 4.0,
- 2.76,
- -7.11,
- -5.84,
- -6.91,
- -4.83,
- -2.36,
- -0.32,
- 1.9,
- 3.5,
- 5.01,
- 5.04,
- 4.91,
- 5.15,
- 4.93,
- 5.24,
- 5.62,
- 6.7,
- 8.09,
- 7.99,
- 7.74,
- 8.69,
- 9.7,
- 10.24,
- 10.52,
- 11.37,
- 13.11,
- 14.67,
- 15.83,
- 16.64,
- 16.49,
- 16.18,
- 16.39,
- 16.77,
- 16.76,
- 16.11,
- 15.21,
- 14.0,
- 12.75,
- 9.63,
- 6.68,
- 5.02,
- 2.91,
- 2.18,
- 2.32,
- 3.0,
- 4.05,
- 6.46,
- 8.07,
- 9.15,
- 9.55,
- 8.65,
- 8.12,
- 8.67,
- 8.88,
- 7.36,
- 8.25,
- 8.53,
- 8.41,
- 8.2,
- 8.61,
- 8.82,
- 8.68,
- 6.88,
- 6.13,
- 5.84,
- 6.28,
- 5.91,
- 6.22,
- 6.44,
- 4.77,
- 4.28,
- 5.12,
- 6.08,
- 6.26,
- 4.62,
- 5.18,
- 7.04,
- 9.21,
- 10.7,
- 11.07,
- 11.22,
- 9.39,
- 6.22,
- 5.33,
- 2.97,
- 0.8,
- 1.67,
- 3.43,
- 4.79,
- 6.25,
- 7.24,
- 7.74,
- 8.17,
- 8.05,
- 7.96,
- 8.08,
- 8.97,
- 9.48,
- 9.64,
- 9.45,
- 9.3,
- 10.45,
- 9.99,
- 9.44,
- 10.74,
- 12.61,
- 13.1,
- 13.38,
- 13.83,
- 14.65,
- 15.36,
- 15.16,
- 14.95,
- 14.75,
- 13.81,
- 12.95,
- 12.61,
- 11.88,
- 10.89,
- 10.56,
- 10.61,
- 10.34,
- 10.85,
- 10.24,
- 9.78,
- 10.64,
- 11.21,
- 10.39,
- 9.9,
- 11.15,
- 10.84,
- 10.58,
- 10.97,
- 10.99,
- 10.55,
- 10.38,
- 10.27,
- 9.56,
- 9.27,
- 10.04,
- 10.96,
- 11.92,
- 12.4,
- 12.69,
- 13.22,
- 13.62,
- 13.71,
- 13.09,
- 12.63,
- 11.6,
- 10.91,
- 9.89,
- 9.51,
- 9.17,
- 9.02,
- 8.84,
- 9.08,
- 9.38,
- 9.08,
- 8.73,
- 8.44,
- 7.68,
- 6.36,
- 5.7,
- 5.39,
- 4.75,
- 4.35,
- 5.54,
- 6.92,
- 7.87,
- 7.03,
- 5.48,
- 4.21,
- 5.53,
- 5.79,
- 7.27,
- 7.37,
- 5.8,
- 3.84,
- 2.51,
- 1.61,
- -0.37,
- -0.5,
- -0.6,
- -0.14,
- 1.07,
- 2.2,
- 3.0,
- 3.73,
- 3.93,
- 3.88,
- 4.44,
- 5.32,
- 6.71,
- 8.19,
- 9.57,
- 7.82,
- 4.78,
- 2.95,
- 0.62,
- 0.52,
- 0.87,
- 1.45,
- 2.11,
- 2.54,
- 2.79,
- 3.53,
- 4.68,
- 5.32,
- 5.66,
- 6.05,
- 6.33,
- 6.57,
- 7.03,
- 7.08,
- 7.24,
- 7.42,
- 8.43,
- 9.36,
- 9.68,
- 10.49,
- 10.11,
- 10.26,
- 10.52,
- 10.98,
- 11.19,
- 10.87,
- 9.7,
- 8.77,
- 8.53,
- 8.47,
- 8.71,
- 8.26,
- 7.58,
- 7.43,
- 7.52,
- 7.62,
- 7.92,
- 8.26,
- 8.84,
- 9.59,
- 10.0,
- 10.17,
- 10.32,
- 10.5,
- 11.2,
- 12.08,
- 12.46,
- 13.05,
- 12.48,
- 11.84,
- 11.79,
- 12.0,
- 10.89,
- 10.65,
- 3.08,
- 4.03,
- 5.9,
- 4.26,
- 1.22,
- 3.5,
- 5.38,
- 6.55,
- 9.05,
- 10.17,
- 12.68,
- 9.03,
- 2.6,
- -3.34,
- -4.57,
- -5.31,
- -7.52,
- -6.38,
- -4.79,
- -5.31,
- -5.01,
- -5.5,
- -5.72,
- -5.29,
- -6.2,
- -6.66,
- -7.23,
- -7.63,
- -8.6,
- -9.01,
- -9.26,
- -9.51,
- -9.62,
- -9.72,
- -9.65,
- -9.65,
- -9.53,
- -9.17,
- -8.79,
- -8.4,
- -8.08,
- -7.95,
- -7.53,
- -6.97,
- -5.76,
- -4.14,
- -3.17,
- -2.32,
- -1.32,
- -0.53,
- -0.82,
- -0.43,
- 0.26,
- 1.05,
- 1.84,
- 2.51,
- 2.73,
- 2.23,
- 1.77,
- 1.38,
- 0.96,
- 1.04,
- 0.2,
- -1.54,
- 2.34,
- 1.51,
- 1.99,
- 2.4,
- 1.95,
- 3.58,
- 2.42,
- 3.12,
- 3.87,
- 4.38,
- 5.39,
- 6.21,
- 6.41,
- 6.43,
- 6.43,
- 6.59,
- 6.11,
- 6.45,
- 7.47,
- 7.51,
- 7.72,
- 8.04,
- 7.76,
- 8.01,
- 8.25,
- 8.98,
- 9.25,
- 8.53,
- 7.96,
- 7.28,
- 6.32,
- 5.69,
- 5.18,
- 5.25,
- 5.34,
- 4.93,
- 4.15,
- 5.53,
- 5.77,
- 6.53,
- 4.49,
- 1.56,
- -0.7,
- -1.39,
- -0.7,
- 0.15,
- 1.14,
- 2.26,
- 3.16,
- 4.02,
- 5.32,
- 5.53,
- 5.13,
- 5.17,
- 5.88,
- 6.87,
- 7.52,
- 7.78,
- 8.23,
- 8.56,
- 8.48,
- 9.1,
- 10.24,
- 10.89,
- 11.71,
- 13.1,
- 14.78,
- 16.03,
- 16.78,
- 17.14,
- 17.07,
- 16.96,
- 17.09,
- 16.32,
- 15.91,
- 15.19,
- 13.88,
- 12.14,
- 10.05,
- 6.52,
- 3.73,
- 2.02,
- 0.07,
- 0.09,
- 1.08,
- 2.24,
- 3.52,
- 4.75,
- 6.46,
- 8.13,
- 8.57,
- 8.68,
- 9.31,
- 9.91,
- 9.88,
- 9.5,
- 9.18,
- 8.91,
- 8.83,
- 8.86,
- 8.45,
- 8.17,
- 7.55,
- 6.19,
- 5.88,
- 6.07,
- 6.19,
- 6.2,
- 6.21,
- 6.21,
- 5.4,
- 3.74,
- 4.12,
- 5.85,
- 6.06,
- 6.17,
- 7.17,
- 7.87,
- 10.54,
- 12.51,
- 12.38,
- 11.68,
- 9.14,
- 5.77,
- 5.26,
- 4.62,
- 3.9,
- 3.19,
- 3.06,
- 3.68,
- 4.35,
- 4.83,
- 5.75,
- 6.19,
- 6.4,
- 6.85,
- 7.69,
- 8.79,
- 10.1,
- 11.36,
- 12.5,
- 13.2,
- 13.48,
- 14.08,
- 12.34,
- 12.68,
- 12.93,
- 13.39,
- 14.65,
- 15.66,
- 15.9,
- 16.31,
- 16.8,
- 16.52,
- 15.47,
- 14.64,
- 14.41,
- 13.62,
- 12.67,
- 11.59,
- 10.53,
- 10.81,
- 11.0,
- 11.86,
- 11.31,
- 10.05,
- 9.79,
- 10.1,
- 9.71,
- 9.17,
- 9.75,
- 10.0,
- 10.11,
- 11.05,
- 11.54,
- 11.04,
- 10.44,
- 10.11,
- 9.72,
- 9.46,
- 10.07,
- 10.73,
- 11.16,
- 11.4,
- 11.99,
- 12.26,
- 12.88,
- 13.08,
- 12.44,
- 11.36,
- 10.12,
- 9.12,
- 7.45,
- 7.57,
- 8.71,
- 8.95,
- 9.42,
- 9.44,
- 9.28,
- 9.27,
- 8.97,
- 8.72,
- 6.98,
- 5.55,
- 4.98,
- 4.61,
- 4.09,
- 3.33,
- 2.42,
- 2.76,
- 6.42,
- 2.08,
- 4.0,
- 4.61,
- 2.81,
- 5.35,
- 7.62,
- 6.84,
- 5.09,
- 3.38,
- 1.25,
- 0.37,
- -0.13,
- 0.2,
- 0.65,
- 1.42,
- 2.49,
- 2.58,
- 2.49,
- 3.96,
- 4.75,
- 5.64,
- 6.19,
- 6.77,
- 6.77,
- 7.26,
- 8.89,
- 8.75,
- 4.45,
- 2.74,
- 1.83,
- 1.78,
- 2.06,
- 2.77,
- 3.33,
- 3.61,
- 4.03,
- 4.78,
- 5.71,
- 6.02,
- 6.25,
- 6.64,
- 7.02,
- 7.42,
- 7.99,
- 8.11,
- 8.48,
- 9.09,
- 10.01,
- 10.81,
- 10.45,
- 10.65,
- 10.1,
- 10.43,
- 10.37,
- 10.55,
- 10.03,
- 9.48,
- 9.27,
- 9.63,
- 9.68,
- 9.89,
- 9.3,
- 8.51,
- 8.3,
- 8.19,
- 8.27,
- 8.36,
- 8.51,
- 8.7,
- 8.9,
- 8.57,
- 8.87,
- 9.01,
- 9.03,
- 8.99,
- 9.69,
- 10.6,
- 11.81,
- 12.54,
- 12.89,
- 13.06,
- 12.21,
- 10.76,
- 6.26,
- 5.34,
- 2.14,
- 3.27,
- 3.1,
- 0.19,
- 0.45,
- 3.36,
- 4.08,
- 5.04,
- 5.69,
- 3.46,
- -2.01,
- -9.44,
- -12.12,
- -11.81,
- -10.16,
- -9.59,
- -8.78,
- -6.4,
- -5.96,
- -5.55,
- -5.47,
- -5.46,
- -5.11,
- -5.16,
- -5.69,
- -5.75,
- -6.09,
- -6.35,
- -7.0,
- -7.77,
- -8.17,
- -8.36,
- -8.71,
- -8.82,
- -8.78,
- -8.54,
- -7.97,
- -7.6,
- -7.5,
- -7.61,
- -7.7,
- -7.68,
- -6.75,
- -5.75,
- -4.34,
- -3.63,
- -3.63,
- -3.49,
- -2.71,
- -2.81,
- -2.07,
- -1.49,
- -1.05,
- -0.84,
- -0.76,
- -0.35,
- 1.2,
- 2.44,
- 2.49,
- 2.59,
- 2.49,
- 2.82,
- 1.3,
- -1.74,
- 4.32,
- 3.51,
- 2.41,
- 4.53,
- 4.48,
- 3.27,
- 3.97,
- 4.67,
- 5.34,
- 6.23,
- 6.92,
- 7.36,
- 7.15,
- 7.08,
- 7.05,
- 6.72,
- 7.28,
- 7.97,
- 7.74,
- 8.71,
- 8.9,
- 8.96,
- 8.8,
- 9.06,
- 8.76,
- 8.52,
- 9.37,
- 9.55,
- 8.78,
- 7.73,
- 6.64,
- 5.54,
- 4.9,
- 4.89,
- 5.35,
- 5.19,
- 4.82,
- 4.77,
- 5.68,
- 4.9,
- 4.77,
- 3.83,
- 2.49,
- 1.99,
- 2.04,
- 2.83,
- 4.02,
- 4.68,
- 5.37,
- 5.85,
- 6.69,
- 7.22,
- 6.41,
- 5.89,
- 6.19,
- 7.21,
- 8.21,
- 8.63,
- 8.56,
- 8.53,
- 8.83,
- 9.86,
- 10.36,
- 10.55,
- 11.43,
- 13.02,
- 14.81,
- 16.19,
- 17.44,
- 17.73,
- 17.93,
- 17.76,
- 17.05,
- 14.6,
- 13.71,
- 12.23,
- 10.62,
- 8.53,
- 5.68,
- 1.75,
- -1.03,
- -2.42,
- -1.86,
- -0.46,
- 1.14,
- 2.76,
- 4.58,
- 6.06,
- 7.39,
- 8.36,
- 8.19,
- 8.53,
- 9.11,
- 10.3,
- 10.82,
- 10.54,
- 10.07,
- 9.37,
- 8.71,
- 8.29,
- 7.71,
- 7.95,
- 6.79,
- 5.87,
- 6.08,
- 6.32,
- 6.47,
- 6.97,
- 7.19,
- 6.73,
- 7.47,
- 7.85,
- 7.15,
- 6.57,
- 6.56,
- 7.08,
- 7.42,
- 7.88,
- 8.46,
- 8.95,
- 10.58,
- 9.99,
- 6.87,
- 6.09,
- 5.38,
- 4.75,
- 4.29,
- 4.09,
- 4.25,
- 4.76,
- 5.61,
- 6.41,
- 6.71,
- 7.36,
- 8.24,
- 8.64,
- 9.35,
- 10.49,
- 11.63,
- 13.03,
- 14.36,
- 15.62,
- 16.38,
- 16.93,
- 17.0,
- 16.28,
- 16.11,
- 16.26,
- 16.36,
- 17.17,
- 17.48,
- 17.55,
- 17.32,
- 16.51,
- 15.78,
- 15.26,
- 14.93,
- 14.03,
- 12.91,
- 12.6,
- 12.02,
- 11.56,
- 11.87,
- 11.58,
- 10.82,
- 9.25,
- 8.49,
- 8.77,
- 9.42,
- 9.62,
- 10.13,
- 10.85,
- 11.07,
- 11.13,
- 11.2,
- 10.77,
- 10.51,
- 10.52,
- 10.26,
- 10.27,
- 10.49,
- 10.68,
- 10.92,
- 10.87,
- 10.92,
- 10.99,
- 11.79,
- 12.49,
- 12.19,
- 11.76,
- 10.62,
- 9.8,
- 9.04,
- 8.88,
- 9.2,
- 9.49,
- 9.92,
- 9.75,
- 9.66,
- 9.81,
- 9.33,
- 8.12,
- 6.74,
- 5.75,
- 5.16,
- 4.95,
- 4.23,
- 2.94,
- 1.08,
- -0.33,
- -0.52,
- 3.87,
- 2.55,
- 3.51,
- 3.74,
- 4.84,
- 5.66,
- 5.73,
- 3.41,
- 2.27,
- 1.45,
- 0.84,
- -0.36,
- -0.05,
- 0.33,
- 1.52,
- 3.3,
- 3.6,
- 3.15,
- 4.54,
- 5.84,
- 6.83,
- 8.06,
- 7.69,
- 7.31,
- 7.4,
- 8.35,
- 7.92,
- 5.96,
- 3.09,
- 2.37,
- 2.6,
- 3.14,
- 3.85,
- 4.77,
- 4.8,
- 5.12,
- 5.81,
- 6.41,
- 6.42,
- 6.66,
- 7.02,
- 7.5,
- 8.07,
- 8.82,
- 9.15,
- 9.89,
- 10.77,
- 11.27,
- 11.43,
- 10.71,
- 10.43,
- 10.09,
- 9.84,
- 9.79,
- 9.05,
- 8.68,
- 9.27,
- 10.05,
- 9.95,
- 10.05,
- 9.95,
- 10.32,
- 10.09,
- 9.89,
- 9.32,
- 8.68,
- 8.72,
- 8.57,
- 8.63,
- 8.95,
- 9.52,
- 9.76,
- 9.69,
- 10.04,
- 10.49,
- 9.97,
- 10.51,
- 11.3,
- 12.08,
- 12.3,
- 11.86,
- 9.44,
- 7.74,
- 4.37,
- 3.32,
- 1.44,
- 0.79,
- -0.84,
- -2.22,
- -0.32,
- 1.95,
- 1.48,
- 1.9,
- 1.63,
- -1.8,
- -9.8,
- -12.16,
- -14.14,
- -12.64,
- -11.49,
- -10.31,
- -8.01,
- -6.58,
- -6.19,
- -5.76,
- -5.25,
- -4.97,
- -4.69,
- -5.16,
- -4.63,
- -5.07,
- -5.3,
- -5.07,
- -5.44,
- -6.58,
- -7.05,
- -7.33,
- -7.48,
- -7.42,
- -7.22,
- -6.9,
- -7.27,
- -7.48,
- -7.6,
- -7.54,
- -7.2,
- -6.82,
- -6.4,
- -5.62,
- -4.88,
- -4.43,
- -3.9,
- -3.41,
- -2.07,
- -1.64,
- -1.68,
- -1.78,
- -1.59,
- -1.37,
- -1.79,
- -2.4,
- -2.39,
- -1.68,
- -0.45,
- 1.08,
- 2.88,
- 4.45,
- 3.07,
- 2.07,
- 3.68,
- 3.24,
- 4.27,
- 4.57,
- 3.92,
- 6.07,
- 6.25,
- 6.61,
- 7.17,
- 7.81,
- 7.99,
- 7.84,
- 6.87,
- 5.23,
- 4.39,
- 8.21,
- 8.9,
- 9.07,
- 9.87,
- 10.18,
- 10.27,
- 10.22,
- 10.1,
- 9.96,
- 9.52,
- 8.94,
- 8.56,
- 9.04,
- 9.4,
- 8.66,
- 7.86,
- 6.96,
- 6.47,
- 5.92,
- 5.16,
- 5.11,
- 5.04,
- 5.45,
- 6.84,
- 6.54,
- 5.42,
- 4.89,
- 4.9,
- 5.02,
- 5.25,
- 5.85,
- 6.42,
- 7.0,
- 7.18,
- 6.76,
- 7.75,
- 8.08,
- 7.55,
- 6.61,
- 6.7,
- 7.56,
- 8.3,
- 7.88,
- 7.73,
- 8.49,
- 9.45,
- 9.9,
- 9.76,
- 9.49,
- 10.17,
- 11.71,
- 13.51,
- 15.15,
- 16.65,
- 16.95,
- 16.37,
- 16.01,
- 15.45,
- 10.29,
- 9.3,
- 7.14,
- 3.13,
- -1.47,
- -4.31,
- -5.05,
- -4.77,
- -3.21,
- -1.25,
- -0.01,
- 1.45,
- 3.35,
- 4.69,
- 6.11,
- 7.37,
- 8.26,
- 9.0,
- 9.83,
- 11.28,
- 11.1,
- 10.57,
- 10.5,
- 9.99,
- 9.24,
- 8.15,
- 7.97,
- 8.0,
- 7.98,
- 6.82,
- 6.53,
- 6.88,
- 6.93,
- 7.47,
- 8.25,
- 7.1,
- 7.65,
- 8.83,
- 8.96,
- 9.39,
- 8.41,
- 8.44,
- 8.78,
- 8.96,
- 8.44,
- 7.02,
- 5.42,
- 3.65,
- 3.5,
- 4.65,
- 4.75,
- 4.71,
- 5.09,
- 5.28,
- 5.6,
- 6.41,
- 7.08,
- 7.86,
- 8.98,
- 9.55,
- 9.66,
- 10.07,
- 10.45,
- 11.15,
- 12.25,
- 13.58,
- 15.42,
- 17.09,
- 18.28,
- 18.95,
- 19.45,
- 19.93,
- 19.92,
- 18.71,
- 19.65,
- 18.98,
- 18.48,
- 18.57,
- 18.8,
- 18.57,
- 17.1,
- 15.92,
- 15.41,
- 14.73,
- 13.89,
- 13.31,
- 12.93,
- 12.91,
- 12.87,
- 12.41,
- 11.93,
- 10.87,
- 9.31,
- 8.26,
- 8.27,
- 9.03,
- 9.96,
- 11.26,
- 12.37,
- 12.63,
- 12.23,
- 11.46,
- 10.87,
- 11.05,
- 11.63,
- 11.73,
- 11.68,
- 11.56,
- 11.21,
- 10.77,
- 10.24,
- 10.49,
- 10.51,
- 10.85,
- 12.09,
- 12.69,
- 12.34,
- 11.31,
- 10.6,
- 9.67,
- 8.81,
- 9.26,
- 9.57,
- 10.49,
- 10.36,
- 10.12,
- 9.53,
- 8.99,
- 8.02,
- 7.49,
- 6.75,
- 6.35,
- 5.9,
- 5.04,
- 3.91,
- 1.93,
- 0.17,
- -0.64,
- -2.21,
- 5.44,
- 4.76,
- 5.47,
- 5.4,
- 4.93,
- 3.01,
- 2.19,
- 1.41,
- 0.44,
- 0.27,
- 0.15,
- 1.42,
- 2.06,
- 2.93,
- 4.55,
- 6.28,
- 6.32,
- 6.63,
- 6.7,
- 7.01,
- 8.76,
- 8.65,
- 7.56,
- 7.55,
- 7.76,
- 7.17,
- 5.12,
- 3.56,
- 3.27,
- 3.81,
- 4.25,
- 4.54,
- 5.65,
- 5.47,
- 5.39,
- 5.96,
- 6.23,
- 6.31,
- 6.7,
- 7.19,
- 7.85,
- 8.77,
- 9.46,
- 10.34,
- 11.05,
- 11.74,
- 11.8,
- 11.47,
- 10.64,
- 10.41,
- 10.21,
- 9.5,
- 9.21,
- 9.09,
- 9.33,
- 9.77,
- 10.14,
- 10.66,
- 11.11,
- 11.53,
- 11.27,
- 11.1,
- 10.33,
- 9.68,
- 9.21,
- 8.77,
- 8.64,
- 8.42,
- 8.97,
- 9.42,
- 9.55,
- 9.67,
- 10.69,
- 11.08,
- 10.92,
- 10.17,
- 9.93,
- 10.46,
- 9.73,
- 7.48,
- 5.12,
- 3.06,
- 2.3,
- 3.27,
- 1.09,
- -3.64,
- -4.23,
- -3.11,
- -1.41,
- -0.35,
- -0.59,
- -1.27,
- -0.68,
- -5.22,
- -8.0,
- -11.2,
- -12.13,
- -12.01,
- -10.51,
- -8.66,
- -7.33,
- -6.67,
- -5.94,
- -5.33,
- -4.65,
- -4.53,
- -4.67,
- -4.53,
- -4.27,
- -4.8,
- -5.23,
- -5.21,
- -5.05,
- -5.27,
- -5.66,
- -5.85,
- -5.84,
- -6.05,
- -6.03,
- -5.88,
- -5.79,
- -5.75,
- -5.61,
- -5.25,
- -4.44,
- -3.34,
- -2.55,
- -1.94,
- -1.44,
- -0.97,
- -1.03,
- -1.08,
- -1.15,
- -0.88,
- -0.76,
- -0.39,
- -0.31,
- -0.34,
- -0.11,
- 0.21,
- 0.66,
- 1.27,
- 2.18,
- 3.1,
- 3.68,
- 4.67,
- 5.56,
- 3.93,
- 2.97,
- 2.96,
- 3.47,
- 2.81,
- 3.79,
- 5.98,
- 7.13,
- 7.55,
- 7.63,
- 7.39,
- 7.0,
- 6.85,
- 7.04,
- 7.43,
- 7.82,
- 8.63,
- 9.89,
- 10.79,
- 10.73,
- 10.77,
- 11.03,
- 10.74,
- 10.31,
- 10.25,
- 9.72,
- 9.46,
- 8.7,
- 8.35,
- 8.85,
- 10.01,
- 9.88,
- 8.11,
- 7.55,
- 7.49,
- 7.05,
- 6.65,
- 6.51,
- 7.68,
- 7.77,
- 7.65,
- 7.06,
- 6.42,
- 6.67,
- 6.77,
- 7.28,
- 8.24,
- 8.78,
- 8.88,
- 9.36,
- 9.42,
- 8.87,
- 8.77,
- 8.49,
- 7.7,
- 7.68,
- 8.89,
- 9.42,
- 9.04,
- 9.03,
- 8.96,
- 8.97,
- 8.53,
- 8.66,
- 8.25,
- 8.59,
- 9.53,
- 10.49,
- 11.55,
- 12.66,
- 13.22,
- 12.07,
- 11.47,
- 11.06,
- 0.1,
- -3.78,
- -6.39,
- -7.58,
- -7.62,
- -6.68,
- -5.42,
- -4.4,
- -2.95,
- -1.38,
- 0.39,
- 2.33,
- 4.18,
- 5.74,
- 7.31,
- 8.49,
- 9.4,
- 10.11,
- 11.01,
- 11.42,
- 10.91,
- 10.67,
- 10.61,
- 10.25,
- 9.4,
- 8.96,
- 8.97,
- 8.43,
- 7.8,
- 7.02,
- 6.95,
- 7.14,
- 6.99,
- 6.54,
- 5.98,
- 6.63,
- 6.72,
- 7.13,
- 6.59,
- 5.66,
- 6.81,
- 7.3,
- 7.72,
- 7.95,
- 8.13,
- 6.98,
- 5.74,
- 4.93,
- 4.5,
- 4.57,
- 5.11,
- 5.7,
- 6.03,
- 6.39,
- 7.33,
- 8.62,
- 9.51,
- 9.87,
- 10.05,
- 10.34,
- 10.76,
- 10.48,
- 10.8,
- 12.1,
- 13.35,
- 14.66,
- 16.04,
- 17.42,
- 18.78,
- 20.18,
- 21.28,
- 22.06,
- 22.28,
- 22.02,
- 21.29,
- 20.86,
- 19.69,
- 19.03,
- 18.86,
- 18.77,
- 18.48,
- 17.92,
- 16.85,
- 15.74,
- 15.17,
- 14.45,
- 14.43,
- 13.88,
- 13.36,
- 12.69,
- 11.16,
- 10.07,
- 9.46,
- 9.09,
- 9.04,
- 9.12,
- 9.82,
- 10.47,
- 10.98,
- 11.76,
- 11.48,
- 11.09,
- 11.03,
- 10.98,
- 12.25,
- 13.11,
- 13.04,
- 12.67,
- 11.96,
- 11.03,
- 10.5,
- 10.42,
- 10.55,
- 10.99,
- 11.61,
- 12.56,
- 12.72,
- 11.55,
- 10.22,
- 9.3,
- 8.12,
- 8.41,
- 9.12,
- 9.98,
- 10.06,
- 9.51,
- 9.54,
- 9.18,
- 8.76,
- 8.14,
- 7.95,
- 7.37,
- 6.64,
- 6.19,
- 4.94,
- 3.75,
- 2.22,
- 0.86,
- -0.35,
- -2.38,
- 0.2,
- 3.78,
- 2.74,
- 1.83,
- 0.5,
- -0.61,
- -2.23,
- -2.49,
- -1.95,
- 0.23,
- 3.35,
- 3.32,
- 3.56,
- 4.47,
- 6.05,
- 7.44,
- 7.59,
- 7.64,
- 8.81,
- 8.74,
- 7.04,
- 6.47,
- 6.77,
- 6.95,
- 6.81,
- 5.75,
- 4.3,
- 4.55,
- 5.39,
- 5.96,
- 5.67,
- 5.69,
- 5.09,
- 4.93,
- 5.33,
- 5.84,
- 6.15,
- 6.87,
- 7.56,
- 8.54,
- 9.4,
- 10.17,
- 11.03,
- 11.81,
- 11.95,
- 11.83,
- 11.56,
- 10.91,
- 10.67,
- 10.19,
- 10.04,
- 9.6,
- 9.84,
- 10.17,
- 10.38,
- 10.72,
- 11.27,
- 11.67,
- 11.61,
- 11.33,
- 10.85,
- 10.25,
- 9.62,
- 9.27,
- 9.26,
- 9.03,
- 8.89,
- 9.06,
- 8.77,
- 7.6,
- 6.95,
- 8.59,
- 8.97,
- 6.93,
- 6.37,
- 8.46,
- 8.38,
- 6.43,
- 2.8,
- -0.41,
- -2.91,
- -6.61,
- -7.79,
- -7.52,
- -6.37,
- -5.08,
- -4.87,
- -3.17,
- -2.2,
- -0.71,
- -0.94,
- -1.27,
- -4.58,
- -5.88,
- -7.14,
- -9.1,
- -9.11,
- -7.83,
- -6.92,
- -5.94,
- -5.43,
- -5.3,
- -4.66,
- -3.81,
- -3.91,
- -4.11,
- -4.0,
- -4.69,
- -5.16,
- -5.44,
- -5.1,
- -5.63,
- -5.49,
- -5.0,
- -4.67,
- -4.26,
- -4.39,
- -4.62,
- -4.4,
- -4.26,
- -4.28,
- -3.7,
- -3.03,
- -2.36,
- -1.73,
- -0.9,
- 0.01,
- 0.91,
- 1.55,
- 1.63,
- 2.54,
- 3.35,
- 3.34,
- 2.71,
- 2.51,
- 2.71,
- 2.58,
- 2.48,
- 2.77,
- 3.46,
- 4.3,
- 5.09,
- 5.87,
- 6.63,
- 7.19,
- 7.6,
- 7.74,
- 5.95,
- 1.86,
- 3.29,
- 3.29,
- 4.78,
- 2.88,
- 4.59,
- 4.38,
- 3.39,
- 4.06,
- 4.55,
- 5.03,
- 5.74,
- 7.0,
- 8.76,
- 10.12,
- 11.36,
- 12.12,
- 11.4,
- 11.15,
- 11.11,
- 10.96,
- 10.27,
- 10.77,
- 10.17,
- 10.51,
- 9.39,
- 9.23,
- 9.64,
- 10.35,
- 11.27,
- 10.74,
- 9.45,
- 9.03,
- 9.0,
- 8.09,
- 9.06,
- 10.06,
- 10.02,
- 8.53,
- 7.4,
- 7.04,
- 7.53,
- 7.77,
- 8.01,
- 8.07,
- 8.38,
- 8.55,
- 8.83,
- 9.09,
- 8.92,
- 8.85,
- 8.6,
- 8.98,
- 10.1,
- 10.31,
- 9.89,
- 9.27,
- 8.92,
- 8.63,
- 8.72,
- 8.92,
- 8.57,
- 7.47,
- 7.13,
- 6.48,
- 6.29,
- 5.29,
- 4.21,
- 6.28,
- 5.86,
- 4.95,
- 3.42,
- -8.34,
- -9.08,
- -8.68,
- -7.92,
- -7.04,
- -5.81,
- -4.28,
- -2.82,
- -1.0,
- 1.12,
- 3.47,
- 5.51,
- 7.32,
- 8.62,
- 9.55,
- 10.19,
- 10.64,
- 10.77,
- 11.14,
- 11.16,
- 11.07,
- 11.1,
- 11.23,
- 11.01,
- 10.32,
- 9.52,
- 8.58,
- 8.65,
- 8.35,
- 7.51,
- 7.13,
- 6.98,
- 6.55,
- 6.34,
- 6.21,
- 5.95,
- 5.95,
- 5.95,
- 6.09,
- 6.59,
- 7.21,
- 6.45,
- 5.42,
- 7.77,
- 8.02,
- 8.05,
- 5.45,
- 7.43,
- 7.8,
- 7.84,
- 7.95,
- 7.95,
- 8.07,
- 8.61,
- 9.53,
- 10.29,
- 10.94,
- 11.13,
- 10.79,
- 10.8,
- 11.1,
- 11.54,
- 12.11,
- 12.57,
- 13.49,
- 14.5,
- 15.82,
- 17.56,
- 19.55,
- 21.2,
- 22.35,
- 22.88,
- 23.16,
- 23.25,
- 22.71,
- 21.48,
- 20.74,
- 19.93,
- 19.45,
- 18.67,
- 18.16,
- 18.04,
- 17.6,
- 16.97,
- 15.66,
- 14.72,
- 13.81,
- 13.21,
- 12.41,
- 11.8,
- 11.48,
- 10.71,
- 9.29,
- 8.16,
- 8.35,
- 8.8,
- 8.97,
- 9.62,
- 10.87,
- 12.15,
- 12.2,
- 12.2,
- 12.11,
- 12.4,
- 12.99,
- 13.65,
- 13.95,
- 13.52,
- 12.49,
- 11.88,
- 11.26,
- 11.24,
- 11.17,
- 11.43,
- 11.82,
- 12.0,
- 12.71,
- 11.68,
- 9.9,
- 7.69,
- 5.52,
- 6.22,
- 7.37,
- 8.46,
- 8.96,
- 8.92,
- 8.89,
- 9.12,
- 8.8,
- 8.69,
- 8.6,
- 8.19,
- 7.59,
- 7.08,
- 5.87,
- 5.02,
- 4.37,
- 3.15,
- 1.93,
- 0.01,
- -1.22,
- -4.61,
- -4.34,
- -4.18,
- -4.78,
- -5.01,
- -4.32,
- -2.62,
- -0.72,
- 1.84,
- 3.48,
- 3.31,
- 4.01,
- 5.42,
- 7.01,
- 8.49,
- 10.11,
- 10.11,
- 9.19,
- 8.65,
- 7.91,
- 6.85,
- 6.61,
- 7.32,
- 7.65,
- 7.21,
- 6.04,
- 6.08,
- 6.28,
- 7.01,
- 5.62,
- 5.3,
- 4.57,
- 4.68,
- 5.12,
- 5.54,
- 6.47,
- 7.53,
- 8.47,
- 9.25,
- 9.96,
- 10.85,
- 11.41,
- 12.05,
- 12.18,
- 12.17,
- 11.54,
- 11.48,
- 10.73,
- 10.88,
- 10.44,
- 10.67,
- 11.05,
- 10.92,
- 11.42,
- 11.77,
- 11.87,
- 11.61,
- 11.33,
- 10.81,
- 10.65,
- 10.4,
- 10.02,
- 9.62,
- 9.76,
- 9.69,
- 9.2,
- 8.24,
- 7.87,
- 8.49,
- 9.08,
- 8.49,
- 7.58,
- 6.23,
- 6.04,
- 7.74,
- 7.68,
- 3.31,
- -4.59,
- -5.09,
- -6.99,
- -6.24,
- -7.14,
- -6.4,
- -5.88,
- -5.32,
- -4.75,
- -3.29,
- -2.42,
- -0.44,
- -0.31,
- -0.42,
- -2.05,
- -3.37,
- -3.87,
- -5.43,
- -5.76,
- -6.25,
- -5.52,
- -4.98,
- -5.22,
- -5.24,
- -4.89,
- -4.97,
- -4.51,
- -4.19,
- -4.37,
- -3.86,
- -3.59,
- -3.15,
- -3.51,
- -4.47,
- -4.52,
- -4.33,
- -4.58,
- -4.75,
- -4.25,
- -3.55,
- -3.89,
- -3.44,
- -2.08,
- -1.17,
- -0.81,
- -1.1,
- -1.13,
- -0.31,
- 0.59,
- 1.02,
- 1.97,
- 2.39,
- 2.67,
- 2.86,
- 3.17,
- 3.69,
- 4.36,
- 5.05,
- 5.78,
- 6.26,
- 6.45,
- 6.66,
- 6.88,
- 6.86,
- 6.84,
- 7.27,
- 7.99,
- 8.65,
- 9.24,
- 9.84,
- 10.21,
- 10.38,
- 6.43,
- 3.83,
- 1.26,
- 2.46,
- 5.3,
- 6.32,
- 6.7,
- 7.03,
- 6.97,
- 8.54,
- 10.57,
- 12.43,
- 14.05,
- 14.4,
- 13.02,
- 11.82,
- 11.65,
- 12.25,
- 11.38,
- 10.71,
- 11.05,
- 11.55,
- 11.22,
- 9.93,
- 10.54,
- 10.79,
- 11.06,
- 11.17,
- 11.57,
- 11.47,
- 10.32,
- 10.07,
- 10.32,
- 10.36,
- 12.55,
- 10.96,
- 7.58,
- 6.72,
- 7.07,
- 7.16,
- 7.0,
- 6.82,
- 7.39,
- 8.47,
- 9.44,
- 9.21,
- 8.66,
- 8.16,
- 8.64,
- 9.17,
- 10.05,
- 10.82,
- 11.3,
- 10.8,
- 9.89,
- 9.12,
- 9.48,
- 9.56,
- 9.04,
- 8.26,
- 7.66,
- 5.94,
- 3.72,
- 2.08,
- 0.33,
- -2.58,
- -5.06,
- -5.52,
- -6.63,
- -7.74,
- -9.28,
- -8.51,
- -7.5,
- -6.17,
- -4.59,
- -2.91,
- -1.2,
- 0.46,
- 2.21,
- 4.32,
- 6.22,
- 7.74,
- 8.94,
- 9.68,
- 10.06,
- 10.51,
- 11.13,
- 11.54,
- 11.48,
- 11.12,
- 11.03,
- 11.15,
- 11.21,
- 11.21,
- 10.58,
- 9.75,
- 9.4,
- 9.64,
- 9.31,
- 8.1,
- 7.41,
- 7.01,
- 6.62,
- 6.25,
- 5.35,
- 4.65,
- 4.32,
- 4.65,
- 5.37,
- 5.86,
- 6.85,
- 7.41,
- 7.32,
- 7.13,
- 7.24,
- 7.15,
- 5.38,
- 7.64,
- 9.18,
- 9.84,
- 10.35,
- 10.92,
- 10.9,
- 10.56,
- 10.71,
- 11.55,
- 11.73,
- 10.97,
- 11.13,
- 11.45,
- 11.44,
- 11.57,
- 11.77,
- 12.25,
- 12.9,
- 13.6,
- 14.26,
- 15.15,
- 16.16,
- 18.4,
- 21.0,
- 22.77,
- 23.36,
- 23.27,
- 22.67,
- 21.81,
- 21.08,
- 20.42,
- 19.45,
- 18.7,
- 17.87,
- 17.22,
- 16.71,
- 16.36,
- 15.46,
- 13.5,
- 12.1,
- 11.09,
- 10.65,
- 10.22,
- 9.22,
- 7.24,
- 6.73,
- 6.66,
- 6.98,
- 7.95,
- 9.04,
- 10.25,
- 11.35,
- 12.9,
- 13.54,
- 13.64,
- 13.62,
- 13.85,
- 14.44,
- 15.07,
- 15.13,
- 14.51,
- 13.57,
- 12.88,
- 12.84,
- 12.43,
- 11.91,
- 12.0,
- 12.5,
- 11.88,
- 11.46,
- 10.69,
- 7.11,
- 4.42,
- 3.86,
- 4.36,
- 5.79,
- 7.05,
- 8.07,
- 8.53,
- 8.43,
- 8.75,
- 8.71,
- 8.91,
- 8.89,
- 8.26,
- 8.19,
- 8.17,
- 7.58,
- 6.66,
- 5.92,
- 5.57,
- 4.64,
- 2.91,
- 1.27,
- 0.19,
- -0.98,
- -2.55,
- -2.91,
- -1.94,
- -0.45,
- 0.92,
- 2.21,
- 3.65,
- 4.17,
- 4.06,
- 4.39,
- 5.19,
- 7.07,
- 8.15,
- 9.27,
- 9.3,
- 9.49,
- 8.84,
- 8.66,
- 8.26,
- 7.57,
- 7.79,
- 7.96,
- 8.4,
- 7.08,
- 5.86,
- 5.29,
- 5.46,
- 5.44,
- 4.97,
- 4.96,
- 4.92,
- 5.38,
- 6.31,
- 7.4,
- 8.35,
- 9.24,
- 9.77,
- 10.44,
- 11.15,
- 11.75,
- 12.18,
- 12.26,
- 12.12,
- 11.88,
- 11.31,
- 11.57,
- 11.24,
- 11.31,
- 11.52,
- 12.58,
- 12.73,
- 12.61,
- 12.47,
- 12.31,
- 12.15,
- 11.87,
- 11.38,
- 11.12,
- 10.72,
- 10.26,
- 10.21,
- 9.56,
- 8.88,
- 8.89,
- 9.22,
- 9.21,
- 8.8,
- 9.53,
- 9.42,
- 6.8,
- 5.65,
- 5.92,
- 6.53,
- 3.68,
- -5.77,
- -4.74,
- -4.74,
- -4.56,
- -4.13,
- -3.65,
- -3.02,
- -2.64,
- -1.95,
- -1.47,
- -0.23,
- -0.41,
- 0.87,
- 0.71,
- 1.02,
- 0.13,
- -2.42,
- -1.99,
- -2.61,
- -3.75,
- -5.33,
- -5.54,
- -5.62,
- -6.13,
- -6.17,
- -5.86,
- -5.23,
- -5.19,
- -5.08,
- -4.44,
- -4.07,
- -3.98,
- -4.17,
- -4.23,
- -3.61,
- -3.35,
- -2.4,
- -1.9,
- -2.06,
- -2.52,
- -2.74,
- -1.52,
- -0.86,
- -0.85,
- -1.28,
- -1.01,
- -0.11,
- 0.57,
- 1.49,
- 2.23,
- 2.53,
- 2.0,
- 1.42,
- 1.47,
- 1.55,
- 1.73,
- 2.24,
- 2.89,
- 3.84,
- 4.8,
- 5.88,
- 6.78,
- 7.27,
- 7.74,
- 8.17,
- 8.55,
- 8.7,
- 9.01,
- 9.05,
- 9.09,
- 9.37,
- 10.14,
- 11.27,
- 12.51,
- 14.2,
- 15.57,
- 15.18,
- 14.12,
- 11.99,
- 11.36,
- 11.88,
- 12.47,
- 13.51,
- 14.5,
- 15.38,
- 15.62,
- 14.33,
- 12.73,
- 12.38,
- 12.81,
- 12.99,
- 13.76,
- 13.88,
- 13.02,
- 12.19,
- 11.78,
- 11.75,
- 12.19,
- 12.47,
- 12.58,
- 12.17,
- 11.62,
- 12.05,
- 12.38,
- 11.85,
- 12.05,
- 12.74,
- 13.01,
- 13.22,
- 12.56,
- 10.63,
- 9.83,
- 10.07,
- 9.27,
- 8.45,
- 8.39,
- 8.49,
- 8.3,
- 8.78,
- 9.23,
- 9.29,
- 9.74,
- 10.02,
- 10.51,
- 11.19,
- 11.42,
- 10.97,
- 9.84,
- 9.41,
- 9.3,
- 9.06,
- 8.72,
- 8.12,
- 7.53,
- 6.32,
- 3.97,
- 1.58,
- -0.95,
- -3.47,
- -5.42,
- -7.33,
- -8.8,
- -9.24,
- -3.25,
- -2.47,
- -1.42,
- -0.28,
- 0.75,
- 1.75,
- 2.74,
- 4.17,
- 5.8,
- 7.2,
- 8.22,
- 8.92,
- 9.6,
- 10.43,
- 11.21,
- 11.59,
- 11.66,
- 11.42,
- 10.97,
- 10.62,
- 10.25,
- 9.98,
- 10.11,
- 10.4,
- 10.49,
- 10.2,
- 9.97,
- 9.91,
- 9.49,
- 8.61,
- 8.19,
- 8.12,
- 8.02,
- 7.35,
- 6.56,
- 6.31,
- 6.19,
- 5.61,
- 4.26,
- 3.85,
- 3.05,
- 2.96,
- 3.59,
- 4.83,
- 6.44,
- 6.91,
- 5.46,
- 3.72,
- 7.84,
- 8.8,
- 9.9,
- 9.05,
- 6.5,
- 5.4,
- 5.45,
- 6.39,
- 8.53,
- 10.83,
- 11.97,
- 11.47,
- 11.52,
- 8.96,
- 7.67,
- 7.65,
- 7.87,
- 9.14,
- 10.16,
- 10.23,
- 10.86,
- 11.44,
- 13.31,
- 17.14,
- 20.56,
- 21.36,
- 20.83,
- 19.99,
- 19.49,
- 18.85,
- 17.85,
- 16.71,
- 15.68,
- 14.63,
- 13.59,
- 12.49,
- 11.45,
- 10.45,
- 9.26,
- 8.67,
- 8.2,
- 7.11,
- 4.75,
- 3.9,
- 4.32,
- 5.59,
- 7.09,
- 8.52,
- 9.89,
- 11.28,
- 12.46,
- 13.47,
- 14.17,
- 14.8,
- 15.09,
- 15.55,
- 16.11,
- 16.09,
- 16.14,
- 15.97,
- 15.12,
- 14.31,
- 14.09,
- 13.93,
- 12.95,
- 12.16,
- 12.54,
- 11.52,
- 11.15,
- 9.38,
- 5.4,
- 2.74,
- 1.89,
- 3.24,
- 4.69,
- 6.23,
- 7.35,
- 7.9,
- 8.11,
- 8.15,
- 8.22,
- 7.98,
- 8.06,
- 8.12,
- 8.75,
- 9.3,
- 9.49,
- 8.98,
- 8.19,
- 7.39,
- 6.87,
- 5.95,
- 5.11,
- 3.33,
- 2.15,
- 2.56,
- 3.18,
- 4.09,
- 4.61,
- 4.9,
- 5.03,
- 5.44,
- 6.05,
- 5.94,
- 5.89,
- 6.6,
- 7.86,
- 10.04,
- 10.98,
- 10.9,
- 10.94,
- 10.34,
- 9.57,
- 9.15,
- 8.66,
- 8.37,
- 8.16,
- 8.22,
- 7.42,
- 4.61,
- 3.63,
- 4.01,
- 4.49,
- 5.12,
- 5.36,
- 5.44,
- 6.04,
- 6.91,
- 7.93,
- 8.9,
- 9.37,
- 9.71,
- 10.72,
- 11.52,
- 11.57,
- 11.7,
- 11.95,
- 11.72,
- 11.61,
- 11.69,
- 11.52,
- 11.85,
- 12.29,
- 12.49,
- 14.12,
- 13.73,
- 13.09,
- 13.14,
- 13.3,
- 12.92,
- 12.47,
- 11.68,
- 10.74,
- 9.9,
- 9.14,
- 8.78,
- 8.38,
- 8.82,
- 9.39,
- 9.05,
- 9.41,
- 9.82,
- 9.83,
- 7.93,
- 5.71,
- 5.2,
- 5.07,
- -0.33,
- -7.17,
- -6.15,
- -3.92,
- -2.91,
- -0.71,
- 2.08,
- 3.56,
- 3.56,
- 4.31,
- 4.69,
- 4.16,
- 4.36,
- 3.32,
- 3.24,
- 2.76,
- 1.85,
- 2.1,
- -2.09,
- -1.68,
- -2.12,
- -4.35,
- -4.6,
- -6.43,
- -5.93,
- -5.9,
- -5.61,
- -5.24,
- -4.62,
- -4.21,
- -4.31,
- -3.96,
- -3.83,
- -3.53,
- -3.37,
- -3.06,
- -2.57,
- -1.78,
- -1.71,
- -1.17,
- -1.32,
- -1.46,
- -1.57,
- -1.57,
- -0.87,
- 0.87,
- 1.76,
- 2.03,
- 3.04,
- 3.87,
- 3.33,
- 1.83,
- 0.83,
- 0.98,
- 1.24,
- 1.26,
- 0.47,
- 0.8,
- 1.19,
- 1.39,
- 2.17,
- 2.87,
- 3.29,
- 3.62,
- 4.35,
- 5.01,
- 5.52,
- 5.87,
- 6.85,
- 7.89,
- 8.99,
- 9.72,
- 10.42,
- 11.3,
- 11.99,
- 12.58,
- 13.39,
- 13.96,
- 14.0,
- 13.57,
- 13.03,
- 13.07,
- 13.86,
- 14.74,
- 15.47,
- 15.71,
- 15.48,
- 15.49,
- 15.22,
- 14.65,
- 14.31,
- 14.45,
- 14.81,
- 15.39,
- 15.61,
- 15.37,
- 14.09,
- 13.47,
- 13.22,
- 13.61,
- 13.52,
- 13.66,
- 13.54,
- 13.48,
- 13.14,
- 13.21,
- 13.77,
- 13.85,
- 13.28,
- 14.06,
- 12.4,
- 12.29,
- 12.23,
- 11.46,
- 10.17,
- 9.15,
- 9.03,
- 8.97,
- 8.84,
- 8.26,
- 7.92,
- 7.89,
- 8.56,
- 9.66,
- 10.46,
- 10.95,
- 10.94,
- 10.2,
- 9.54,
- 9.1,
- 9.04,
- 9.17,
- 8.83,
- 8.16,
- 7.51,
- 7.09,
- 6.7,
- 6.14,
- 4.78,
- 2.97,
- 0.89,
- -0.96,
- -2.34,
- -3.23,
- -3.51,
- 3.35,
- 3.63,
- 3.99,
- 4.47,
- 5.06,
- 5.81,
- 6.7,
- 7.71,
- 8.67,
- 9.59,
- 10.41,
- 11.06,
- 11.67,
- 12.15,
- 12.33,
- 11.97,
- 11.01,
- 10.23,
- 9.84,
- 9.84,
- 10.24,
- 10.68,
- 11.04,
- 11.58,
- 11.7,
- 11.15,
- 10.17,
- 9.54,
- 9.18,
- 8.72,
- 8.71,
- 8.87,
- 8.77,
- 8.03,
- 6.63,
- 5.98,
- 6.37,
- 4.92,
- 4.31,
- 4.31,
- 4.77,
- 5.44,
- 5.59,
- 5.49,
- 5.36,
- 4.92,
- 4.81,
- 5.03,
- 3.46,
- 0.68,
- 0.91,
- 3.01,
- 4.07,
- 4.09,
- 4.38,
- 3.85,
- 2.97,
- 4.42,
- 4.23,
- -1.04,
- -2.49,
- 2.65,
- 4.79,
- 6.61,
- 7.68,
- 8.13,
- 8.46,
- 8.22,
- 7.6,
- 6.87,
- 6.55,
- 7.27,
- 10.92,
- 17.01,
- 17.89,
- 16.76,
- 16.11,
- 15.41,
- 14.21,
- 12.64,
- 11.41,
- 10.32,
- 9.36,
- 8.39,
- 7.65,
- 7.12,
- 6.26,
- 5.31,
- 3.8,
- 2.03,
- 1.34,
- 2.11,
- 3.67,
- 5.75,
- 7.89,
- 9.69,
- 10.95,
- 12.21,
- 13.77,
- 14.82,
- 15.4,
- 15.73,
- 15.97,
- 16.36,
- 16.67,
- 17.11,
- 16.99,
- 17.14,
- 16.76,
- 15.86,
- 15.31,
- 15.11,
- 14.24,
- 13.2,
- 12.81,
- 11.86,
- 10.46,
- 7.13,
- 1.99,
- 0.43,
- 0.62,
- 1.89,
- 3.69,
- 5.22,
- 6.17,
- 6.64,
- 6.62,
- 6.82,
- 7.53,
- 8.44,
- 8.9,
- 9.23,
- 9.4,
- 9.79,
- 10.21,
- 10.49,
- 10.41,
- 9.73,
- 8.88,
- 8.22,
- 8.14,
- 7.78,
- 6.79,
- 5.61,
- 5.33,
- 6.0,
- 5.85,
- 5.63,
- 5.39,
- 5.41,
- 5.68,
- 7.03,
- 7.29,
- 8.08,
- 9.68,
- 10.36,
- 10.18,
- 10.8,
- 11.24,
- 10.69,
- 10.0,
- 9.8,
- 9.23,
- 8.53,
- 7.84,
- 7.52,
- 6.33,
- 4.42,
- 3.54,
- 4.34,
- 3.82,
- 4.22,
- 5.44,
- 5.74,
- 6.3,
- 7.3,
- 8.25,
- 8.79,
- 9.28,
- 10.21,
- 11.02,
- 11.06,
- 11.32,
- 11.6,
- 11.82,
- 11.65,
- 11.51,
- 11.78,
- 12.28,
- 12.58,
- 13.22,
- 14.36,
- 14.15,
- 14.11,
- 14.33,
- 14.62,
- 13.99,
- 12.87,
- 12.17,
- 11.04,
- 10.26,
- 9.58,
- 8.92,
- 8.39,
- 8.68,
- 9.04,
- 8.67,
- 8.82,
- 10.71,
- 11.31,
- 7.63,
- 4.93,
- 4.13,
- -2.46,
- -7.47,
- -7.42,
- -6.24,
- -3.16,
- 0.57,
- 3.54,
- 5.98,
- 7.19,
- 8.57,
- 9.0,
- 9.17,
- 8.87,
- 8.86,
- 8.39,
- 6.44,
- 5.42,
- 4.82,
- 2.67,
- 2.55,
- -2.44,
- -2.98,
- -3.66,
- -5.75,
- -4.85,
- -5.68,
- -5.77,
- -4.44,
- -4.81,
- -4.06,
- -3.79,
- -3.08,
- -2.66,
- -2.36,
- -2.34,
- -2.41,
- -2.62,
- -1.99,
- -0.7,
- 0.48,
- 1.09,
- 1.59,
- 2.13,
- 2.57,
- 2.9,
- 3.4,
- 3.76,
- 4.18,
- 4.92,
- 3.94,
- 1.94,
- 0.46,
- 0.51,
- 1.31,
- 1.98,
- 2.46,
- 2.75,
- 3.06,
- 3.14,
- 3.23,
- 3.56,
- 4.07,
- 4.71,
- 5.42,
- 5.86,
- 6.28,
- 6.61,
- 6.93,
- 7.38,
- 7.78,
- 7.92,
- 8.22,
- 8.45,
- 8.67,
- 8.87,
- 8.57,
- 8.16,
- 8.4,
- 8.97,
- 9.29,
- 9.1,
- 9.0,
- 9.25,
- 9.77,
- 10.75,
- 12.1,
- 12.83,
- 13.08,
- 13.24,
- 13.72,
- 14.34,
- 14.72,
- 14.77,
- 14.45,
- 14.26,
- 14.43,
- 14.91,
- 15.38,
- 15.53,
- 15.43,
- 16.31,
- 15.85,
- 14.72,
- 14.27,
- 14.35,
- 14.82,
- 15.21,
- 15.34,
- 15.05,
- 14.9,
- 14.35,
- 13.5,
- 14.08,
- 12.87,
- 11.07,
- 10.61,
- 9.79,
- 9.17,
- 8.43,
- 8.22,
- 8.66,
- 8.69,
- 8.62,
- 9.24,
- 8.63,
- 8.05,
- 8.02,
- 7.66,
- 6.41,
- 5.85,
- 5.56,
- 5.28,
- 5.49,
- 6.17,
- 6.81,
- 7.21,
- 7.1,
- 6.86,
- 6.66,
- 6.05,
- 5.48,
- 5.27,
- 4.92,
- 4.31,
- 3.68,
- 3.27,
- 3.18,
- 6.39,
- 6.77,
- 7.22,
- 7.73,
- 8.24,
- 8.87,
- 9.51,
- 10.21,
- 10.85,
- 11.39,
- 11.72,
- 11.94,
- 12.0,
- 11.55,
- 10.56,
- 9.4,
- 8.62,
- 8.82,
- 9.56,
- 10.38,
- 10.99,
- 11.16,
- 10.61,
- 10.02,
- 10.29,
- 10.32,
- 8.93,
- 8.47,
- 8.09,
- 7.77,
- 7.87,
- 7.99,
- 7.1,
- 5.78,
- 5.52,
- 4.99,
- 4.01,
- 3.95,
- 4.45,
- 4.85,
- 5.34,
- 5.79,
- 5.95,
- 6.42,
- 7.12,
- 7.26,
- 7.08,
- 6.11,
- 4.52,
- 4.43,
- 3.55,
- 3.88,
- 5.46,
- 4.18,
- -1.86,
- -2.0,
- -0.76,
- -0.09,
- 0.39,
- 1.82,
- 3.79,
- 6.06,
- 7.87,
- 9.41,
- 10.5,
- 10.85,
- 10.49,
- 9.74,
- 9.12,
- 7.83,
- 6.67,
- 5.84,
- 4.39,
- 3.47,
- 8.95,
- 13.76,
- 12.95,
- 11.6,
- 10.59,
- 9.51,
- 8.15,
- 6.96,
- 6.19,
- 5.42,
- 4.5,
- 2.8,
- 0.41,
- -1.59,
- -2.59,
- -2.01,
- -0.35,
- 1.78,
- 4.54,
- 7.2,
- 9.57,
- 11.49,
- 12.87,
- 13.89,
- 14.84,
- 15.82,
- 16.56,
- 17.11,
- 17.54,
- 17.7,
- 17.77,
- 17.75,
- 17.63,
- 17.46,
- 17.38,
- 16.59,
- 16.2,
- 15.65,
- 14.95,
- 14.2,
- 13.13,
- 11.94,
- 9.46,
- 3.05,
- -0.95,
- -1.47,
- -0.39,
- 1.24,
- 3.15,
- 4.52,
- 5.27,
- 5.66,
- 5.74,
- 6.78,
- 7.67,
- 8.49,
- 9.29,
- 9.81,
- 10.33,
- 10.67,
- 10.74,
- 10.93,
- 10.87,
- 10.76,
- 10.74,
- 10.42,
- 9.8,
- 9.09,
- 9.05,
- 8.66,
- 7.69,
- 6.87,
- 6.47,
- 5.32,
- 4.89,
- 5.17,
- 6.24,
- 7.48,
- 8.29,
- 9.27,
- 10.31,
- 10.14,
- 9.93,
- 9.76,
- 9.81,
- 9.6,
- 9.22,
- 8.51,
- 8.2,
- 6.92,
- 5.77,
- 5.41,
- 4.56,
- 2.55,
- 2.13,
- 2.69,
- 2.78,
- 3.4,
- 4.93,
- 5.65,
- 6.42,
- 7.38,
- 7.95,
- 8.92,
- 9.86,
- 10.28,
- 10.5,
- 10.9,
- 11.01,
- 11.2,
- 11.49,
- 11.75,
- 11.89,
- 12.0,
- 12.6,
- 12.8,
- 14.2,
- 15.2,
- 15.06,
- 14.66,
- 14.21,
- 13.18,
- 12.15,
- 11.37,
- 10.78,
- 10.24,
- 9.47,
- 8.92,
- 8.28,
- 7.47,
- 7.37,
- 7.77,
- 8.65,
- 10.06,
- 8.58,
- 4.74,
- 1.16,
- -4.87,
- -8.53,
- -8.12,
- -7.26,
- -5.47,
- -2.62,
- 1.63,
- 5.86,
- 9.06,
- 11.42,
- 13.13,
- 14.07,
- 14.51,
- 13.89,
- 12.61,
- 10.92,
- 7.64,
- 5.95,
- 4.42,
- 3.77,
- 2.33,
- 0.95,
- -3.95,
- -4.08,
- -4.5,
- -5.59,
- -4.88,
- -4.35,
- -4.37,
- -3.44,
- -4.24,
- -3.55,
- -2.84,
- -2.18,
- -1.72,
- -1.54,
- -1.41,
- -1.06,
- -0.36,
- 0.38,
- 1.06,
- 1.4,
- 1.56,
- 2.27,
- 2.53,
- 3.01,
- 2.97,
- 2.41,
- 0.97,
- -1.08,
- -1.32,
- 0.14,
- 1.74,
- 2.9,
- 3.76,
- 4.46,
- 5.03,
- 5.56,
- 5.93,
- 6.04,
- 6.21,
- 6.41,
- 6.71,
- 7.34,
- 8.02,
- 8.6,
- 9.06,
- 9.3,
- 9.29,
- 9.3,
- 9.35,
- 9.47,
- 9.7,
- 10.22,
- 10.74,
- 10.96,
- 11.1,
- 11.02,
- 11.41,
- 11.61,
- 11.64,
- 11.6,
- 11.41,
- 11.99,
- 11.45,
- 11.45,
- 12.2,
- 12.67,
- 12.63,
- 12.4,
- 12.4,
- 12.92,
- 13.81,
- 14.59,
- 14.97,
- 14.39,
- 14.14,
- 14.37,
- 14.88,
- 15.41,
- 15.57,
- 17.5,
- 17.33,
- 16.37,
- 15.58,
- 15.3,
- 15.62,
- 16.07,
- 16.43,
- 16.54,
- 16.05,
- 15.03,
- 14.15,
- 12.75,
- 12.16,
- 11.94,
- 10.72,
- 9.93,
- 9.19,
- 8.75,
- 8.06,
- 7.14,
- 7.9,
- 7.01,
- 2.84,
- 2.67,
- 2.93,
- 2.08,
- -0.15,
- -2.3,
- -2.46,
- -1.13,
- 0.69,
- 2.75,
- 4.67,
- 5.49,
- 5.04,
- 4.69,
- 5.51,
- 6.78,
- 6.9,
- 6.47,
- 6.33,
- 6.13,
- 5.82,
- 5.6,
- 5.6,
- 5.79,
- 6.06,
- 7.26,
- 8.03,
- 8.66,
- 9.24,
- 9.66,
- 10.03,
- 10.4,
- 10.64,
- 10.75,
- 10.54,
- 10.04,
- 9.32,
- 8.66,
- 8.12,
- 7.96,
- 8.12,
- 8.38,
- 8.84,
- 9.44,
- 9.92,
- 10.22,
- 10.38,
- 10.44,
- 10.32,
- 9.82,
- 9.23,
- 7.69,
- 7.27,
- 6.94,
- 6.78,
- 6.81,
- 6.5,
- 4.98,
- 4.6,
- 4.69,
- 4.14,
- 4.11,
- 4.35,
- 4.74,
- 5.31,
- 5.83,
- 5.91,
- 6.03,
- 6.32,
- 6.8,
- 7.27,
- 7.16,
- 6.97,
- 5.9,
- 6.4,
- 1.15,
- -3.35,
- -3.72,
- -2.5,
- -1.35,
- 0.17,
- 1.6,
- 2.75,
- 3.95,
- 5.13,
- 6.39,
- 7.79,
- 9.1,
- 10.25,
- 11.15,
- 11.56,
- 11.54,
- 11.31,
- 11.01,
- 10.05,
- 7.93,
- 6.6,
- 4.7,
- 0.62,
- -3.65,
- -5.85,
- -0.99,
- 4.85,
- 5.66,
- 3.2,
- -0.08,
- -2.93,
- -5.52,
- -7.51,
- -8.4,
- -8.22,
- -7.05,
- -5.41,
- -3.08,
- -0.31,
- 2.72,
- 5.51,
- 7.86,
- 9.71,
- 11.26,
- 12.84,
- 14.37,
- 15.68,
- 16.68,
- 17.39,
- 17.91,
- 18.54,
- 19.11,
- 19.65,
- 20.04,
- 19.98,
- 19.64,
- 19.0,
- 18.17,
- 17.29,
- 16.45,
- 15.63,
- 15.05,
- 14.81,
- 12.98,
- 11.49,
- 5.48,
- -0.45,
- -2.45,
- -1.67,
- -0.4,
- 1.64,
- 3.34,
- 4.37,
- 4.52,
- 5.5,
- 6.49,
- 7.52,
- 8.63,
- 9.67,
- 10.3,
- 10.87,
- 11.32,
- 11.2,
- 11.18,
- 11.24,
- 10.77,
- 11.14,
- 11.17,
- 11.16,
- 10.91,
- 10.3,
- 9.51,
- 9.25,
- 8.97,
- 8.26,
- 6.92,
- 5.53,
- 4.97,
- 5.0,
- 5.9,
- 7.27,
- 8.93,
- 9.81,
- 10.49,
- 11.18,
- 10.18,
- 9.51,
- 9.01,
- 8.0,
- 7.21,
- 5.87,
- 4.64,
- 4.08,
- 3.12,
- 2.51,
- 0.6,
- -1.01,
- -1.24,
- 0.21,
- 0.7,
- 1.53,
- 3.76,
- 5.21,
- 6.54,
- 7.34,
- 8.4,
- 9.05,
- 9.63,
- 9.74,
- 9.9,
- 10.09,
- 10.2,
- 11.02,
- 11.52,
- 11.52,
- 11.8,
- 12.46,
- 13.01,
- 13.41,
- 13.82,
- 14.02,
- 15.13,
- 14.75,
- 13.5,
- 11.9,
- 11.27,
- 10.4,
- 9.5,
- 8.11,
- 6.89,
- 6.93,
- 6.85,
- 6.85,
- 7.13,
- 7.92,
- 8.37,
- 6.59,
- 0.69,
- -6.6,
- -9.3,
- -9.08,
- -8.39,
- -7.95,
- -6.33,
- -3.58,
- 0.2,
- 4.1,
- 8.01,
- 11.68,
- 15.05,
- 17.88,
- 19.0,
- 17.92,
- 15.53,
- 11.52,
- 8.01,
- 4.94,
- 2.28,
- 1.07,
- 0.56,
- -0.05,
- -2.52,
- -5.13,
- -4.45,
- -5.26,
- -5.3,
- -4.06,
- -3.57,
- -3.76,
- -4.03,
- -3.91,
- -3.07,
- -2.17,
- -1.31,
- -0.73,
- -0.55,
- -0.25,
- -0.07,
- 0.37,
- -0.16,
- -0.17,
- 0.22,
- -0.12,
- -0.62,
- -1.16,
- -1.42,
- -1.22,
- -0.52,
- 0.52,
- 1.56,
- 2.69,
- 3.78,
- 4.52,
- 5.03,
- 5.45,
- 5.9,
- 6.58,
- 7.13,
- 7.37,
- 7.06,
- 7.24,
- 7.81,
- 8.48,
- 9.26,
- 9.91,
- 10.33,
- 10.32,
- 10.15,
- 10.32,
- 10.66,
- 10.97,
- 11.15,
- 11.23,
- 11.7,
- 12.18,
- 12.48,
- 12.4,
- 12.11,
- 11.86,
- 12.16,
- 12.95,
- 13.26,
- 13.97,
- 14.03,
- 13.67,
- 13.93,
- 14.32,
- 14.47,
- 14.74,
- 14.96,
- 14.99,
- 15.25,
- 16.0,
- 16.62,
- 16.77,
- 16.82,
- 16.4,
- 16.0,
- 16.91,
- 17.32,
- 17.41,
- 16.92,
- 16.38,
- 15.63,
- 15.33,
- 14.99,
- 15.01,
- 14.72,
- 14.69,
- 14.51,
- 13.78,
- 12.96,
- 12.73,
- 11.82,
- 9.65,
- 9.29,
- 9.18,
- 8.97,
- 8.54,
- 8.56,
- 7.98,
- 7.24,
- 7.76,
- 7.61,
- 6.17,
- 5.79,
- 6.26,
- 4.94,
- 3.45,
- 2.27,
- 1.8,
- 1.93,
- 2.15,
- 2.05,
- 1.77,
- 1.4,
- 1.58,
- 1.6,
- 1.14,
- 0.48,
- 0.52,
- 0.81,
- 0.99,
- 1.45,
- 2.23,
- 3.21,
- 4.35,
- 5.4,
- 6.35,
- 3.57,
- 3.97,
- 4.28,
- 4.41,
- 4.4,
- 4.22,
- 4.16,
- 4.26,
- 4.5,
- 4.92,
- 5.49,
- 6.17,
- 6.83,
- 7.58,
- 8.37,
- 9.07,
- 9.44,
- 9.59,
- 9.71,
- 9.75,
- 9.75,
- 9.65,
- 9.4,
- 8.81,
- 8.64,
- 7.72,
- 6.52,
- 6.36,
- 6.15,
- 6.32,
- 6.36,
- 5.7,
- 4.69,
- 4.83,
- 4.77,
- 4.7,
- 4.74,
- 4.62,
- 5.04,
- 5.23,
- 5.06,
- 5.54,
- 5.7,
- 6.27,
- 7.16,
- 6.29,
- 4.28,
- 2.75,
- 4.49,
- -1.33,
- -3.7,
- -1.75,
- -0.69,
- 0.92,
- 2.16,
- 3.7,
- 5.05,
- 6.57,
- 7.55,
- 8.46,
- 8.99,
- 9.48,
- 9.93,
- 10.22,
- 10.07,
- 10.04,
- 10.3,
- 10.29,
- 10.02,
- 9.83,
- 9.38,
- 7.89,
- 5.24,
- 3.0,
- -0.85,
- -5.15,
- -8.39,
- -11.63,
- -13.43,
- -13.72,
- -13.5,
- -12.66,
- -11.27,
- -9.74,
- -7.75,
- -5.53,
- -3.02,
- -0.52,
- 1.81,
- 4.21,
- 6.47,
- 8.52,
- 10.23,
- 11.52,
- 12.8,
- 13.94,
- 15.12,
- 16.13,
- 17.01,
- 18.24,
- 19.71,
- 21.19,
- 22.4,
- 23.27,
- 23.76,
- 23.59,
- 22.57,
- 21.01,
- 19.31,
- 17.62,
- 16.12,
- 14.61,
- 13.8,
- 13.31,
- 12.16,
- 6.76,
- -1.16,
- -3.38,
- -3.15,
- -1.62,
- 0.14,
- 1.46,
- 2.48,
- 4.01,
- 5.54,
- 6.65,
- 8.03,
- 9.28,
- 10.26,
- 11.22,
- 11.8,
- 11.79,
- 11.78,
- 11.61,
- 11.24,
- 10.69,
- 11.33,
- 11.16,
- 8.83,
- 7.85,
- 8.06,
- 8.33,
- 8.24,
- 7.56,
- 7.31,
- 6.52,
- 6.24,
- 5.55,
- 4.93,
- 5.32,
- 6.49,
- 7.91,
- 8.67,
- 10.14,
- 11.19,
- 11.37,
- 10.27,
- 8.45,
- 6.77,
- 5.26,
- 3.67,
- 2.81,
- 1.96,
- 0.68,
- 0.08,
- -1.48,
- -2.95,
- -3.11,
- -2.42,
- -1.45,
- -0.73,
- 1.3,
- 3.63,
- 5.44,
- 6.43,
- 7.39,
- 8.14,
- 8.33,
- 8.5,
- 8.89,
- 8.89,
- 9.07,
- 9.85,
- 10.74,
- 11.38,
- 11.29,
- 11.43,
- 12.12,
- 12.33,
- 12.31,
- 12.72,
- 13.78,
- 12.7,
- 8.78,
- 6.24,
- 6.65,
- 6.7,
- 6.66,
- 6.34,
- 4.75,
- 4.18,
- 4.61,
- 5.66,
- 6.22,
- 6.11,
- 7.23,
- 3.15,
- -5.59,
- -9.06,
- -10.05,
- -9.01,
- -8.57,
- -8.1,
- -6.97,
- -5.44,
- -2.88,
- 0.26,
- 3.26,
- 5.94,
- 8.49,
- 8.93,
- 3.39,
- 0.75,
- -0.46,
- -2.15,
- -2.21,
- -2.39,
- -2.9,
- -3.2,
- -3.35,
- -2.74,
- -3.6,
- -5.31,
- -5.79,
- -4.53,
- -4.53,
- -3.81,
- -3.61,
- -3.73,
- -3.67,
- -3.58,
- -3.21,
- -2.42,
- -1.52,
- -0.72,
- -0.24,
- 0.21,
- 0.64,
- 1.61,
- 1.76,
- 0.98,
- 0.31,
- 0.28,
- 0.51,
- 0.63,
- 0.87,
- 1.27,
- 1.84,
- 2.65,
- 3.47,
- 4.26,
- 4.98,
- 5.58,
- 6.09,
- 6.52,
- 6.87,
- 7.2,
- 7.56,
- 7.9,
- 8.3,
- 8.85,
- 9.41,
- 9.87,
- 10.21,
- 10.54,
- 10.79,
- 10.87,
- 10.8,
- 10.74,
- 11.18,
- 11.79,
- 12.11,
- 12.31,
- 12.41,
- 12.72,
- 13.08,
- 13.37,
- 13.49,
- 13.15,
- 12.73,
- 12.53,
- 13.29,
- 14.43,
- 14.95,
- 15.17,
- 15.21,
- 15.33,
- 15.75,
- 16.48,
- 17.15,
- 17.4,
- 17.71,
- 18.14,
- 18.57,
- 18.82,
- 18.86,
- 18.7,
- 18.07,
- 17.33,
- 14.82,
- 13.91,
- 13.7,
- 14.18,
- 14.39,
- 14.32,
- 14.23,
- 12.72,
- 11.97,
- 12.9,
- 12.64,
- 11.74,
- 11.16,
- 10.75,
- 10.52,
- 9.09,
- 7.3,
- 7.12,
- 7.3,
- 7.57,
- 7.71,
- 7.62,
- 7.48,
- 6.94,
- 7.21,
- 7.24,
- 6.63,
- 6.05,
- 5.9,
- 4.84,
- 3.74,
- 2.91,
- 2.65,
- 2.81,
- 2.9,
- 3.07,
- 3.27,
- 3.51,
- 3.78,
- 3.86,
- 3.76,
- 3.68,
- 3.15,
- 0.27,
- -0.29,
- 1.13,
- 2.08,
- 2.42,
- 2.62,
- 2.87,
- 3.18,
- 5.41,
- 5.5,
- 5.68,
- 5.91,
- 6.21,
- 6.58,
- 6.96,
- 7.34,
- 7.75,
- 8.18,
- 8.54,
- 8.96,
- 9.34,
- 9.71,
- 10.02,
- 10.23,
- 10.33,
- 10.33,
- 10.14,
- 9.76,
- 9.31,
- 8.89,
- 8.6,
- 8.31,
- 7.85,
- 6.45,
- 5.27,
- 5.42,
- 5.68,
- 6.09,
- 6.2,
- 6.02,
- 5.64,
- 5.74,
- 5.83,
- 5.89,
- 5.83,
- 5.45,
- 5.24,
- 4.33,
- 3.62,
- 3.4,
- 3.46,
- 4.09,
- 2.51,
- -0.24,
- -0.39,
- -1.48,
- -4.28,
- -2.53,
- -1.24,
- -0.24,
- 1.59,
- 4.32,
- 7.07,
- 8.67,
- 8.8,
- 9.63,
- 10.91,
- 10.57,
- 9.84,
- 9.26,
- 9.03,
- 8.08,
- 7.74,
- 7.87,
- 7.97,
- 7.38,
- 7.04,
- 7.37,
- 7.34,
- 6.23,
- 5.12,
- 4.85,
- 3.75,
- 1.99,
- -0.26,
- -2.68,
- -4.53,
- -5.64,
- -5.87,
- -5.28,
- -4.22,
- -2.75,
- -1.4,
- -0.73,
- 0.59,
- 3.26,
- 4.78,
- 6.02,
- 7.45,
- 9.07,
- 10.62,
- 11.91,
- 12.88,
- 13.99,
- 13.32,
- 15.45,
- 15.71,
- 13.12,
- 13.21,
- 13.38,
- 14.43,
- 16.05,
- 18.91,
- 21.61,
- 21.25,
- 18.44,
- 15.43,
- 13.67,
- 12.45,
- 12.66,
- 14.77,
- 13.18,
- 1.79,
- -6.05,
- -7.01,
- -5.68,
- -4.11,
- -2.8,
- -0.53,
- 1.66,
- 3.66,
- 5.48,
- 7.04,
- 8.36,
- 9.77,
- 10.98,
- 11.85,
- 12.3,
- 12.58,
- 12.53,
- 11.94,
- 11.3,
- 10.87,
- 11.36,
- 10.03,
- 5.48,
- 4.61,
- 4.57,
- 4.93,
- 4.65,
- 4.02,
- 3.3,
- 3.13,
- 3.2,
- 3.48,
- 3.96,
- 4.77,
- 5.89,
- 6.45,
- 7.38,
- 8.66,
- 9.66,
- 9.53,
- 8.7,
- 7.24,
- 5.63,
- 3.66,
- 2.16,
- 1.08,
- 0.1,
- -0.78,
- -1.38,
- -2.35,
- -2.87,
- -2.95,
- -2.58,
- -1.88,
- -1.51,
- -0.17,
- 2.31,
- 4.28,
- 5.67,
- 6.44,
- 7.03,
- 7.37,
- 7.57,
- 7.47,
- 7.49,
- 7.99,
- 8.57,
- 9.85,
- 10.44,
- 10.4,
- 10.35,
- 10.48,
- 10.75,
- 10.89,
- 11.22,
- 10.0,
- 10.02,
- 5.04,
- 2.8,
- 3.28,
- 2.36,
- 1.78,
- 1.57,
- 1.31,
- 1.87,
- 2.83,
- 3.26,
- 3.28,
- 3.96,
- 4.73,
- -3.56,
- -9.67,
- -10.62,
- -10.65,
- -9.41,
- -9.18,
- -8.43,
- -8.0,
- -7.17,
- -5.83,
- -4.22,
- -1.88,
- -0.55,
- 0.56,
- 0.28,
- -3.64,
- -6.83,
- -9.93,
- -10.98,
- -11.71,
- -11.36,
- -10.18,
- -9.3,
- -8.18,
- -6.65,
- -5.87,
- -6.42,
- -6.18,
- -5.45,
- -4.24,
- -3.62,
- -3.21,
- -3.06,
- -3.1,
- -2.83,
- -2.54,
- -2.18,
- -1.54,
- -0.76,
- -0.03,
- 0.38,
- 1.41,
- 2.27,
- 2.23,
- 1.45,
- 0.79,
- 0.56,
- 0.68,
- 0.92,
- 1.29,
- 1.85,
- 2.53,
- 3.26,
- 4.03,
- 4.78,
- 5.48,
- 6.15,
- 6.8,
- 7.37,
- 7.98,
- 8.23,
- 8.33,
- 8.46,
- 8.79,
- 9.15,
- 9.91,
- 10.46,
- 10.87,
- 11.11,
- 11.15,
- 11.11,
- 11.02,
- 11.14,
- 11.35,
- 11.41,
- 11.68,
- 12.14,
- 12.75,
- 13.17,
- 12.87,
- 12.58,
- 12.33,
- 12.67,
- 13.17,
- 13.43,
- 13.71,
- 14.04,
- 14.41,
- 14.82,
- 15.34,
- 15.9,
- 16.48,
- 17.08,
- 17.71,
- 17.54,
- 18.16,
- 17.43,
- 16.95,
- 16.94,
- 16.51,
- 16.98,
- 16.91,
- 14.48,
- 14.03,
- 13.33,
- 11.9,
- 11.56,
- 10.66,
- 9.52,
- 8.62,
- 7.9,
- 7.89,
- 8.81,
- 9.03,
- 8.32,
- 8.13,
- 7.97,
- 8.82,
- 9.0,
- 7.31,
- 5.37,
- 4.7,
- 5.21,
- 6.08,
- 6.38,
- 6.8,
- 6.85,
- 6.24,
- 5.92,
- 5.81,
- 5.83,
- 5.69,
- 4.98,
- 4.37,
- 4.07,
- 3.99,
- 4.33,
- 4.57,
- 4.89,
- 5.1,
- 5.36,
- 5.65,
- 5.8,
- 5.8,
- 5.82,
- 5.91,
- 5.93,
- 5.98,
- 5.9,
- 5.79,
- 5.68,
- 5.56,
- 5.43,
- 5.33,
- 5.34,
- 6.49,
- 6.44,
- 6.48,
- 6.59,
- 6.75,
- 7.0,
- 7.28,
- 7.58,
- 7.92,
- 8.26,
- 8.57,
- 8.86,
- 9.1,
- 9.29,
- 9.42,
- 9.48,
- 9.49,
- 9.51,
- 9.57,
- 9.55,
- 9.42,
- 9.19,
- 8.76,
- 7.97,
- 7.0,
- 5.65,
- 4.83,
- 5.14,
- 5.64,
- 6.02,
- 6.03,
- 5.94,
- 5.69,
- 5.26,
- 4.84,
- 4.55,
- 4.53,
- 5.03,
- 5.09,
- 3.44,
- 2.57,
- 1.54,
- 1.02,
- 1.11,
- -1.21,
- -1.69,
- -1.42,
- -0.01,
- 1.35,
- 1.06,
- 2.47,
- 4.13,
- 5.89,
- 7.72,
- 8.89,
- 8.45,
- 8.83,
- 11.61,
- 12.07,
- 8.25,
- 7.56,
- 6.49,
- 5.21,
- 4.0,
- 3.65,
- 3.53,
- 4.16,
- 3.68,
- 4.01,
- 5.56,
- 5.46,
- 5.73,
- 5.78,
- 5.17,
- 4.15,
- 3.75,
- 4.47,
- 3.89,
- 2.25,
- 0.97,
- 0.1,
- -0.07,
- -0.04,
- -0.06,
- -0.29,
- 0.68,
- 1.68,
- 2.86,
- 4.43,
- 6.83,
- 7.79,
- 7.71,
- 8.01,
- 6.57,
- 4.52,
- 2.22,
- 0.69,
- 0.31,
- 0.33,
- 0.08,
- -0.03,
- -0.2,
- -0.36,
- -1.53,
- -4.86,
- -7.78,
- -7.45,
- -3.61,
- 1.51,
- 4.65,
- 2.55,
- -4.39,
- -10.88,
- -12.68,
- -12.11,
- -10.67,
- -8.15,
- -5.89,
- -3.32,
- -0.63,
- 1.49,
- 3.17,
- 4.31,
- 5.53,
- 7.16,
- 8.6,
- 9.67,
- 10.86,
- 12.38,
- 13.35,
- 12.89,
- 11.4,
- 10.39,
- 9.32,
- 10.72,
- 7.9,
- 2.96,
- 2.74,
- 1.74,
- 0.52,
- -0.29,
- -1.49,
- -2.13,
- -1.47,
- 0.14,
- 1.5,
- 2.74,
- 3.84,
- 4.92,
- 5.92,
- 6.7,
- 7.45,
- 8.28,
- 8.51,
- 7.75,
- 6.14,
- 3.76,
- 1.69,
- 0.33,
- -0.79,
- -1.48,
- -2.26,
- -2.53,
- -3.05,
- -3.09,
- -2.32,
- -2.04,
- -1.99,
- -1.71,
- -1.27,
- 0.33,
- 2.0,
- 3.51,
- 4.69,
- 5.92,
- 6.69,
- 6.62,
- 6.43,
- 6.28,
- 6.72,
- 7.6,
- 8.14,
- 9.03,
- 9.41,
- 9.4,
- 9.16,
- 9.09,
- 9.11,
- 9.85,
- 9.13,
- 7.49,
- 7.13,
- 4.51,
- 3.53,
- 3.18,
- 2.77,
- 2.1,
- 1.68,
- 1.5,
- 1.33,
- 1.35,
- 1.6,
- 2.17,
- -1.8,
- -9.49,
- -11.63,
- -12.35,
- -11.45,
- -10.14,
- -9.9,
- -9.59,
- -9.42,
- -8.77,
- -7.88,
- -6.86,
- -6.05,
- -5.11,
- -4.77,
- -5.06,
- -6.69,
- -9.32,
- -11.37,
- -14.44,
- -14.73,
- -14.76,
- -13.79,
- -12.5,
- -11.14,
- -9.26,
- -8.32,
- -7.65,
- -7.1,
- -6.19,
- -5.1,
- -4.73,
- -4.07,
- -3.45,
- -3.11,
- -2.83,
- -2.7,
- -2.45,
- -1.96,
- -0.79,
- 0.19,
- 0.71,
- 0.87,
- 1.04,
- 1.21,
- 0.51,
- -0.49,
- -1.32,
- -1.67,
- -1.49,
- -0.8,
- -0.08,
- 0.78,
- 1.91,
- 3.07,
- 4.08,
- 5.01,
- 5.88,
- 6.65,
- 7.26,
- 7.79,
- 8.62,
- 9.38,
- 9.8,
- 9.85,
- 10.25,
- 10.71,
- 11.35,
- 11.89,
- 12.27,
- 12.29,
- 11.93,
- 11.72,
- 12.04,
- 12.26,
- 12.28,
- 12.38,
- 12.45,
- 12.27,
- 11.86,
- 11.89,
- 12.4,
- 12.79,
- 13.07,
- 13.2,
- 13.28,
- 13.28,
- 13.32,
- 13.5,
- 14.03,
- 14.41,
- 14.59,
- 14.76,
- 15.6,
- 15.51,
- 15.06,
- 16.13,
- 16.64,
- 17.06,
- 15.02,
- 15.77,
- 15.41,
- 13.58,
- 12.07,
- 9.4,
- 8.94,
- 8.27,
- 7.55,
- 7.67,
- 7.89,
- 8.22,
- 8.46,
- 8.7,
- 9.03,
- 9.24,
- 8.77,
- 7.93,
- 8.41,
- 7.84,
- 6.73,
- 4.85,
- 4.84,
- 3.65,
- 3.74,
- 4.59,
- 5.49,
- 5.77,
- 5.65,
- 6.02,
- 6.0,
- 5.2,
- 5.18,
- 5.21,
- 5.17,
- 5.02,
- 5.18,
- 5.43,
- 5.91,
- 6.48,
- 6.89,
- 7.2,
- 7.56,
- 7.86,
- 8.06,
- 8.15,
- 8.09,
- 7.93,
- 7.71,
- 7.59,
- 7.56,
- 7.56,
- 7.43,
- 7.19,
- 7.03,
- 6.92,
- 6.77,
- 6.59,
- 8.62,
- 8.4,
- 8.27,
- 8.18,
- 8.11,
- 8.09,
- 8.13,
- 8.28,
- 8.5,
- 8.73,
- 8.96,
- 9.05,
- 9.18,
- 9.33,
- 9.49,
- 9.69,
- 9.81,
- 9.83,
- 9.86,
- 9.73,
- 9.44,
- 9.08,
- 8.58,
- 7.42,
- 6.04,
- 4.96,
- 4.65,
- 5.08,
- 5.58,
- 5.76,
- 5.69,
- 5.37,
- 4.91,
- 4.7,
- 4.99,
- 5.53,
- 5.91,
- 5.76,
- 5.05,
- 4.46,
- 3.93,
- 3.47,
- 2.76,
- 2.77,
- 3.37,
- 3.19,
- 3.71,
- 3.8,
- 4.33,
- 6.11,
- 7.88,
- 9.14,
- 9.86,
- 10.48,
- 8.48,
- 7.79,
- 8.34,
- 6.2,
- 4.82,
- 7.0,
- 5.27,
- 3.2,
- 2.07,
- 1.15,
- 0.8,
- 1.49,
- 2.62,
- 3.34,
- 3.9,
- 4.52,
- 5.31,
- 4.67,
- 5.4,
- 5.43,
- 5.05,
- 4.23,
- 2.26,
- 1.3,
- 2.58,
- 3.57,
- 0.53,
- 0.35,
- 2.35,
- 1.51,
- -0.19,
- 0.75,
- 2.04,
- 2.45,
- 1.69,
- -0.08,
- -1.62,
- -2.48,
- -3.08,
- -3.88,
- -4.14,
- -4.01,
- -3.41,
- -3.17,
- -2.92,
- -3.0,
- -4.24,
- -6.09,
- -7.44,
- -8.25,
- -9.95,
- -11.73,
- -13.11,
- -14.49,
- -15.51,
- -15.76,
- -16.04,
- -15.05,
- -13.56,
- -12.32,
- -11.11,
- -7.5,
- -5.82,
- -3.94,
- -2.66,
- -1.51,
- -0.5,
- 0.95,
- 2.18,
- 2.94,
- 4.38,
- 5.26,
- 5.04,
- 3.47,
- -2.17,
- -6.33,
- -6.71,
- -4.59,
- -0.47,
- 0.2,
- -6.69,
- -8.49,
- -8.0,
- -8.24,
- -7.3,
- -6.44,
- -5.66,
- -4.42,
- -1.79,
- 1.27,
- 3.25,
- 3.54,
- 3.9,
- 4.66,
- 5.41,
- 6.11,
- 6.31,
- 6.7,
- 6.77,
- 6.1,
- 4.44,
- 2.07,
- -0.08,
- -1.39,
- -2.28,
- -2.92,
- -3.54,
- -4.12,
- -4.0,
- -3.28,
- -2.7,
- -2.91,
- -2.68,
- -2.32,
- -1.79,
- -0.39,
- 1.46,
- 2.87,
- 3.17,
- 3.62,
- 4.49,
- 4.74,
- 5.07,
- 5.35,
- 5.67,
- 6.42,
- 7.09,
- 7.73,
- 8.28,
- 8.32,
- 8.15,
- 8.27,
- 8.17,
- 8.05,
- 8.91,
- 7.98,
- 6.88,
- 6.81,
- 4.94,
- 2.56,
- 2.98,
- 3.82,
- 3.8,
- 3.08,
- 1.96,
- 0.2,
- -2.58,
- -6.09,
- -10.08,
- -11.95,
- -12.58,
- -13.12,
- -12.24,
- -11.4,
- -10.75,
- -10.47,
- -10.32,
- -9.46,
- -8.4,
- -8.24,
- -8.63,
- -8.85,
- -8.57,
- -9.04,
- -10.06,
- -11.51,
- -13.22,
- -14.21,
- -13.39,
- -14.11,
- -14.0,
- -12.98,
- -12.01,
- -10.85,
- -9.66,
- -8.77,
- -8.2,
- -7.9,
- -6.95,
- -5.7,
- -4.8,
- -4.86,
- -4.67,
- -4.18,
- -3.49,
- -2.23,
- -1.15,
- -0.9,
- 0.02,
- 0.32,
- -0.61,
- -1.5,
- -2.13,
- -2.69,
- -3.47,
- -4.28,
- -4.51,
- -3.54,
- -2.08,
- -0.83,
- 0.43,
- 1.7,
- 2.91,
- 4.08,
- 5.17,
- 6.03,
- 6.91,
- 7.89,
- 8.71,
- 9.47,
- 10.19,
- 10.96,
- 11.84,
- 11.82,
- 11.82,
- 11.97,
- 12.45,
- 12.86,
- 13.16,
- 13.02,
- 12.52,
- 12.28,
- 12.47,
- 12.79,
- 12.72,
- 12.37,
- 11.79,
- 11.01,
- 10.8,
- 11.55,
- 12.05,
- 12.12,
- 12.41,
- 12.49,
- 12.49,
- 12.71,
- 13.21,
- 13.53,
- 13.64,
- 13.47,
- 13.11,
- 13.18,
- 13.82,
- 13.31,
- 9.4,
- 4.14,
- 2.08,
- 2.33,
- 4.72,
- 2.4,
- 4.37,
- 6.22,
- 6.89,
- 7.52,
- 8.07,
- 8.37,
- 8.43,
- 8.32,
- 7.86,
- 7.63,
- 7.92,
- 8.38,
- 8.51,
- 8.02,
- 8.06,
- 8.36,
- 7.5,
- 4.93,
- 2.01,
- 0.47,
- 0.31,
- 1.0,
- 1.64,
- 1.29,
- 0.71,
- 2.52,
- 5.58,
- 6.84,
- 6.81,
- 6.39,
- 5.7,
- 5.52,
- 5.9,
- 6.32,
- 6.84,
- 7.57,
- 8.1,
- 8.49,
- 8.9,
- 8.86,
- 8.53,
- 8.64,
- 9.07,
- 9.36,
- 9.44,
- 9.26,
- 9.27,
- 9.35,
- 9.37,
- 9.35,
- 9.29,
- 9.26,
- 9.1,
- 8.97,
- 8.94,
- 8.86,
- 9.15,
- 8.92,
- 8.71,
- 8.64,
- 8.54,
- 8.5,
- 8.66,
- 8.84,
- 8.98,
- 9.13,
- 9.32,
- 9.58,
- 9.84,
- 9.98,
- 10.05,
- 10.1,
- 10.09,
- 9.96,
- 9.65,
- 9.47,
- 9.5,
- 9.07,
- 7.24,
- 4.95,
- 3.82,
- 3.61,
- 3.98,
- 4.37,
- 4.73,
- 4.9,
- 4.72,
- 4.46,
- 4.62,
- 5.03,
- 5.39,
- 5.76,
- 6.19,
- 6.63,
- 7.01,
- 6.97,
- 6.76,
- 6.89,
- 6.75,
- 6.45,
- 6.18,
- 7.93,
- 8.71,
- 8.19,
- 9.47,
- 9.5,
- 10.03,
- 10.68,
- 6.38,
- 5.76,
- 6.35,
- 5.61,
- 2.48,
- 2.46,
- 4.03,
- 4.44,
- 3.83,
- 2.85,
- 2.3,
- 2.43,
- 2.1,
- 1.76,
- 2.25,
- 1.85,
- 1.84,
- 2.58,
- 3.59,
- 5.59,
- 5.87,
- 3.95,
- 3.15,
- 2.64,
- 1.78,
- 0.96,
- 0.64,
- 0.56,
- -2.11,
- -2.57,
- -2.89,
- -3.78,
- -4.79,
- -5.7,
- -5.94,
- -5.94,
- -6.29,
- -6.89,
- -7.15,
- -7.01,
- -7.08,
- -6.7,
- -6.7,
- -6.99,
- -6.63,
- -7.12,
- -7.63,
- -7.18,
- -9.09,
- -11.6,
- -12.84,
- -14.92,
- -13.7,
- -12.04,
- -11.34,
- -10.94,
- -11.34,
- -11.54,
- -11.41,
- -11.54,
- -10.44,
- -8.72,
- -6.61,
- -5.16,
- -4.22,
- -3.55,
- -3.01,
- -2.57,
- -1.75,
- -0.88,
- 0.19,
- -0.71,
- -2.35,
- -2.99,
- -4.48,
- -5.32,
- -6.07,
- -7.26,
- -8.87,
- -9.15,
- -9.89,
- -9.92,
- -9.8,
- -8.76,
- -7.49,
- -7.06,
- -6.69,
- -5.66,
- -4.54,
- -3.43,
- -2.07,
- -0.44,
- 1.33,
- 3.21,
- 4.54,
- 4.56,
- 4.46,
- 4.68,
- 4.44,
- 3.64,
- 2.85,
- 1.68,
- -0.34,
- -1.91,
- -3.52,
- -4.28,
- -4.82,
- -5.12,
- -4.8,
- -4.31,
- -3.97,
- -3.42,
- -3.06,
- -3.05,
- -2.93,
- -2.42,
- -1.21,
- -0.86,
- -1.56,
- -1.23,
- 0.43,
- 1.93,
- 2.53,
- 3.09,
- 4.09,
- 4.44,
- 5.29,
- 6.2,
- 6.82,
- 7.33,
- 7.62,
- 7.69,
- 7.9,
- 8.17,
- 8.25,
- 8.56,
- 7.64,
- 7.35,
- 7.28,
- 6.67,
- 4.66,
- 2.38,
- 0.7,
- -0.85,
- -3.07,
- -5.77,
- -7.59,
- -8.85,
- -10.26,
- -11.66,
- -12.35,
- -12.68,
- -12.72,
- -11.79,
- -11.21,
- -10.68,
- -10.41,
- -10.71,
- -9.84,
- -9.19,
- -9.59,
- -10.03,
- -10.74,
- -10.95,
- -11.44,
- -11.85,
- -12.64,
- -13.86,
- -15.22,
- -16.31,
- -16.8,
- -15.89,
- -14.13,
- -12.25,
- -10.92,
- -10.19,
- -9.64,
- -8.93,
- -8.36,
- -8.26,
- -7.95,
- -7.28,
- -6.87,
- -6.04,
- -5.11,
- -5.02,
- -4.9,
- -4.51,
- -4.07,
- -3.8,
- -4.08,
- -4.74,
- -5.41,
- -5.77,
- -5.85,
- -5.53,
- -4.65,
- -3.23,
- -1.51,
- 0.1,
- 1.71,
- 3.26,
- 4.54,
- 5.46,
- 6.11,
- 6.8,
- 7.55,
- 8.46,
- 9.38,
- 10.3,
- 11.05,
- 11.74,
- 12.53,
- 13.28,
- 13.84,
- 14.0,
- 13.69,
- 13.58,
- 13.53,
- 13.66,
- 13.79,
- 13.56,
- 13.09,
- 13.18,
- 13.64,
- 12.92,
- 11.93,
- 11.38,
- 10.84,
- 10.77,
- 11.19,
- 11.51,
- 11.68,
- 11.89,
- 12.14,
- 12.61,
- 12.56,
- 12.24,
- 12.35,
- 12.37,
- 12.74,
- 13.38,
- 12.32,
- 12.34,
- 9.91,
- 7.74,
- 2.59,
- 0.06,
- -0.93,
- -0.55,
- 1.33,
- 2.64,
- 3.56,
- 4.63,
- 5.52,
- 6.31,
- 6.98,
- 7.59,
- 8.19,
- 8.55,
- 8.66,
- 8.47,
- 8.04,
- 7.57,
- 7.24,
- 6.75,
- 5.57,
- 2.86,
- 0.13,
- -1.83,
- -3.26,
- -3.43,
- -2.75,
- -3.4,
- -5.96,
- -6.7,
- -6.53,
- -6.22,
- -6.08,
- -6.33,
- -6.7,
- -7.1,
- -5.69,
- -1.8,
- 1.97,
- 3.6,
- 4.46,
- 4.5,
- 3.52,
- 2.4,
- 3.03,
- 5.34,
- 7.52,
- 8.48,
- 8.75,
- 8.91,
- 9.07,
- 9.4,
- 9.62,
- 9.83,
- 10.03,
- 10.2,
- 10.3,
- 10.21,
- 9.99,
- 9.76,
- 9.57,
- 9.39,
- 8.5,
- 7.93,
- 7.54,
- 7.4,
- 7.53,
- 7.85,
- 8.21,
- 8.46,
- 8.71,
- 9.2,
- 9.74,
- 9.82,
- 9.32,
- 8.74,
- 8.38,
- 8.42,
- 8.91,
- 9.47,
- 9.3,
- 7.67,
- 4.63,
- 1.7,
- 0.83,
- 1.42,
- 1.88,
- 2.1,
- 2.49,
- 3.21,
- 3.88,
- 4.26,
- 4.79,
- 5.25,
- 5.31,
- 5.11,
- 5.11,
- 5.74,
- 6.82,
- 8.14,
- 8.8,
- 7.47,
- 6.12,
- 6.92,
- 7.92,
- 7.12,
- 6.2,
- 5.67,
- 2.55,
- 0.7,
- 0.06,
- -1.31,
- 0.35,
- 3.22,
- 3.03,
- 2.51,
- 0.44,
- -0.32,
- 0.66,
- 1.03,
- 1.15,
- 0.86,
- 0.53,
- 0.91,
- 1.61,
- 0.63,
- -0.88,
- 0.19,
- 0.05,
- -1.76,
- -2.67,
- -2.57,
- -2.52,
- -2.64,
- -4.95,
- -4.28,
- -1.19,
- 0.26,
- -1.96,
- -6.35,
- -9.38,
- -9.95,
- -9.2,
- -9.19,
- -8.96,
- -8.81,
- -8.96,
- -9.26,
- -9.05,
- -8.74,
- -8.35,
- -8.35,
- -8.33,
- -8.75,
- -8.6,
- -7.88,
- -7.21,
- -6.0,
- -4.02,
- -4.51,
- -2.8,
- -0.12,
- 1.21,
- 1.58,
- -9.51,
- -12.67,
- -9.56,
- -12.78,
- -12.42,
- -11.79,
- -8.75,
- -5.72,
- -1.44,
- 0.48,
- -8.12,
- -10.29,
- -6.62,
- -5.23,
- -3.63,
- -3.73,
- -3.13,
- -2.89,
- -2.56,
- -1.92,
- -1.69,
- -1.72,
- -3.78,
- -5.66,
- -6.18,
- -5.75,
- -5.99,
- -6.85,
- -8.22,
- -7.81,
- -9.88,
- -12.55,
- -8.58,
- -6.41,
- -6.19,
- -6.07,
- -5.63,
- -5.52,
- -6.74,
- -7.41,
- -7.29,
- -5.56,
- -3.66,
- -1.6,
- 1.03,
- 2.91,
- 2.79,
- 2.23,
- 1.85,
- 0.3,
- -1.31,
- -3.0,
- -4.41,
- -5.51,
- -6.19,
- -6.01,
- -5.9,
- -5.37,
- -4.96,
- -4.99,
- -4.99,
- -4.66,
- -4.03,
- -3.41,
- -4.5,
- -5.99,
- -6.39,
- -5.09,
- -3.82,
- -3.05,
- -1.99,
- -0.5,
- 0.82,
- 1.35,
- 2.15,
- 3.37,
- 4.87,
- 5.82,
- 6.28,
- 6.88,
- 7.43,
- 7.91,
- 8.42,
- 8.65,
- 8.65,
- 8.78,
- 8.23,
- 7.79,
- 7.58,
- 7.14,
- 4.51,
- 1.81,
- -1.43,
- -4.71,
- -6.96,
- -8.67,
- -9.95,
- -11.07,
- -11.77,
- -12.02,
- -12.1,
- -11.29,
- -10.4,
- -10.23,
- -10.04,
- -10.24,
- -10.69,
- -10.28,
- -10.29,
- -10.65,
- -10.38,
- -10.62,
- -11.1,
- -11.56,
- -12.06,
- -12.57,
- -12.89,
- -13.45,
- -14.42,
- -15.68,
- -16.91,
- -18.03,
- -18.88,
- -19.3,
- -19.07,
- -18.42,
- -17.54,
- -16.19,
- -14.94,
- -13.86,
- -13.33,
- -13.17,
- -12.63,
- -12.13,
- -11.88,
- -11.8,
- -11.22,
- -10.68,
- -10.09,
- -9.5,
- -8.82,
- -7.86,
- -6.51,
- -4.86,
- -3.18,
- -1.49,
- 0.35,
- 2.08,
- 3.59,
- 4.8,
- 5.88,
- 7.02,
- 7.99,
- 8.74,
- 9.32,
- 9.7,
- 10.29,
- 10.52,
- 10.86,
- 11.4,
- 11.9,
- 12.38,
- 12.76,
- 13.05,
- 13.44,
- 13.69,
- 13.75,
- 13.81,
- 13.92,
- 14.03,
- 14.19,
- 14.48,
- 14.43,
- 13.53,
- 12.5,
- 12.23,
- 12.21,
- 12.15,
- 11.91,
- 10.83,
- 10.49,
- 10.97,
- 11.64,
- 11.6,
- 11.89,
- 10.43,
- 9.58,
- 9.86,
- 10.51,
- 10.86,
- 10.79,
- 13.22,
- 11.98,
- 4.71,
- 9.09,
- 5.15,
- -1.94,
- 0.91,
- 1.94,
- 2.64,
- 3.28,
- 4.24,
- 4.54,
- 4.71,
- 4.87,
- 5.07,
- 5.48,
- 6.17,
- 7.14,
- 8.25,
- 9.16,
- 9.6,
- 8.97,
- 7.43,
- 6.58,
- 5.42,
- 3.05,
- -0.59,
- -3.02,
- -4.22,
- -4.37,
- -4.38,
- -5.19,
- -6.73,
- -6.71,
- -6.01,
- -5.67,
- -5.52,
- -5.4,
- -5.92,
- -5.99,
- -6.02,
- -5.81,
- -5.17,
- -4.18,
- -2.96,
- -1.57,
- 0.11,
- 1.86,
- 3.4,
- 4.84,
- 5.96,
- 6.93,
- 7.5,
- 8.12,
- 8.79,
- 9.32,
- 9.7,
- 10.11,
- 10.35,
- 10.23,
- 9.99,
- 9.81,
- 9.76,
- 9.85,
- 9.91,
- 9.64,
- 9.15,
- 5.28,
- 6.81,
- 7.77,
- 8.38,
- 9.05,
- 9.86,
- 10.29,
- 9.71,
- 8.46,
- 8.24,
- 7.75,
- 8.69,
- 8.2,
- 7.09,
- 3.9,
- 0.12,
- -3.32,
- -4.83,
- -4.65,
- -4.18,
- -3.71,
- -2.96,
- -1.92,
- -0.89,
- -0.07,
- 0.52,
- 0.99,
- 1.34,
- 1.92,
- 3.18,
- 4.17,
- 4.51,
- 4.8,
- 4.77,
- 3.91,
- 2.46,
- 1.09,
- 2.03,
- 4.72,
- 4.51,
- -0.04,
- -5.29,
- -7.0,
- -5.77,
- -4.0,
- -2.39,
- -1.69,
- -2.08,
- -1.71,
- -1.53,
- -2.74,
- -4.47,
- -1.67,
- -1.67,
- 0.95,
- 5.32,
- 6.57,
- 0.44,
- -1.67,
- -1.91,
- -1.71,
- -1.83,
- -2.52,
- -2.51,
- -1.41,
- -0.12,
- -0.8,
- -1.15,
- -4.77,
- -8.15,
- -7.33,
- -4.76,
- -3.2,
- -5.99,
- -8.13,
- -8.53,
- -9.67,
- -10.83,
- -11.12,
- -10.99,
- -11.33,
- -11.48,
- -11.39,
- -10.58,
- -10.91,
- -10.19,
- -8.9,
- -8.78,
- -8.62,
- -7.47,
- -8.73,
- -10.06,
- -8.87,
- -7.63,
- -7.92,
- -9.81,
- -10.75,
- -9.76,
- -7.93,
- -2.36,
- -11.72,
- -11.2,
- -11.13,
- -12.51,
- -11.42,
- -8.67,
- -7.46,
- -5.36,
- -6.01,
- -6.69,
- -11.35,
- -10.14,
- -9.59,
- -2.75,
- 4.69,
- 4.54,
- -1.23,
- -4.14,
- -3.18,
- -3.52,
- -3.67,
- -2.98,
- -3.27,
- -4.05,
- -4.96,
- -6.92,
- -3.56,
- -1.1,
- -3.14,
- -2.73,
- -8.89,
- -7.42,
- -8.97,
- -6.45,
- -5.44,
- -7.75,
- -7.28,
- -8.11,
- -8.0,
- -7.95,
- -7.35,
- -7.35,
- -6.47,
- -11.58,
- -7.72,
- -10.57,
- -9.97,
- -7.37,
- -6.0,
- -4.48,
- -4.69,
- -6.28,
- -7.39,
- -8.12,
- -8.62,
- -9.06,
- -9.35,
- -9.45,
- -9.68,
- -10.21,
- -10.47,
- -10.49,
- -10.38,
- -9.71,
- -9.05,
- -8.4,
- -7.31,
- -6.5,
- -5.61,
- -5.17,
- -4.52,
- -3.91,
- -3.29,
- -2.57,
- -1.72,
- -0.19,
- 1.82,
- 3.58,
- 4.44,
- 4.7,
- 5.79,
- 6.61,
- 7.26,
- 8.64,
- 8.86,
- 9.04,
- 8.89,
- 8.81,
- 8.16,
- 7.9,
- 8.32,
- 7.73,
- 4.96,
- 0.96,
- -1.94,
- -4.75,
- -6.92,
- -8.37,
- -9.34,
- -9.96,
- -10.4,
- -10.31,
- -9.36,
- -9.03,
- -9.59,
- -9.75,
- -9.69,
- -9.95,
- -10.11,
- -10.54,
- -10.66,
- -10.27,
- -10.26,
- -10.64,
- -11.05,
- -11.25,
- -11.32,
- -11.58,
- -11.85,
- -12.19,
- -12.83,
- -13.67,
- -14.69,
- -15.88,
- -17.0,
- -17.89,
- -18.6,
- -19.04,
- -19.13,
- -19.01,
- -18.68,
- -18.49,
- -17.87,
- -17.3,
- -16.49,
- -15.26,
- -13.89,
- -12.42,
- -11.18,
- -9.87,
- -8.39,
- -6.95,
- -5.57,
- -4.24,
- -2.94,
- -1.56,
- -0.25,
- 0.93,
- 2.45,
- 3.96,
- 5.04,
- 6.13,
- 7.14,
- 8.03,
- 8.69,
- 9.24,
- 9.87,
- 10.57,
- 11.19,
- 11.71,
- 12.13,
- 12.52,
- 12.77,
- 12.94,
- 13.17,
- 13.4,
- 13.63,
- 13.94,
- 14.16,
- 14.32,
- 14.43,
- 14.46,
- 14.43,
- 14.37,
- 13.78,
- 13.52,
- 13.42,
- 12.77,
- 11.91,
- 10.09,
- 8.33,
- 9.91,
- 11.42,
- 9.96,
- 9.34,
- 9.65,
- 10.28,
- 10.42,
- 10.34,
- 10.39,
- 10.34,
- 9.97,
- 8.22,
- 0.24,
- 5.7,
- 2.99,
- -2.86,
- -0.18,
- -1.15,
- 0.48,
- 1.49,
- 2.27,
- 2.38,
- 2.01,
- 2.31,
- 2.63,
- 2.78,
- 3.03,
- 3.42,
- 4.09,
- 4.53,
- 4.6,
- 5.23,
- 6.04,
- 5.54,
- 4.98,
- 4.66,
- 1.0,
- -3.77,
- -5.38,
- -5.43,
- -5.52,
- -5.93,
- -6.06,
- -6.33,
- -6.2,
- -5.68,
- -5.4,
- -5.12,
- -4.72,
- -4.52,
- -4.38,
- -4.15,
- -3.83,
- -3.35,
- -2.61,
- -1.64,
- -0.61,
- 0.5,
- 1.66,
- 2.69,
- 3.36,
- 4.14,
- 4.63,
- 4.13,
- 1.67,
- -0.67,
- -1.34,
- -1.3,
- -1.8,
- -1.56,
- -1.32,
- -1.45,
- -0.83,
- -0.74,
- -1.43,
- -1.58,
- -0.74,
- 0.96,
- 3.26,
- 7.18,
- 7.99,
- 7.57,
- 7.08,
- 8.05,
- 8.61,
- 6.08,
- 0.84,
- -5.39,
- -7.93,
- -7.25,
- -6.77,
- -7.12,
- -7.11,
- -7.1,
- -7.17,
- -7.23,
- -6.63,
- -6.6,
- -6.55,
- -6.09,
- -5.49,
- -4.76,
- -3.64,
- -2.36,
- -0.84,
- 1.05,
- 2.79,
- 3.14,
- 3.12,
- 3.44,
- -1.42,
- -7.15,
- -6.93,
- -3.58,
- -1.85,
- -3.22,
- -6.84,
- -8.5,
- -6.44,
- -4.59,
- -2.72,
- -2.65,
- -2.21,
- -2.19,
- -4.89,
- -4.87,
- -5.68,
- 3.4,
- -3.98,
- -6.01,
- -5.87,
- -4.48,
- -5.59,
- -2.95,
- 1.43,
- -0.94,
- -6.33,
- -2.43,
- -1.45,
- -4.34,
- -4.05,
- -4.38,
- -4.61,
- -5.01,
- -5.55,
- -4.6,
- -4.56,
- -4.34,
- -4.6,
- -0.85,
- 0.51,
- 1.03,
- -0.57,
- -5.9,
- -7.32,
- -7.67,
- -8.79,
- -10.74,
- -11.65,
- -11.51,
- -11.54,
- -10.68,
- -10.33,
- -10.93,
- -10.0,
- -9.63,
- -9.32,
- -9.18,
- -10.28,
- -10.46,
- -10.26,
- -10.46,
- -10.08,
- -9.72,
- -10.25,
- -12.21,
- -11.45,
- -3.75,
- -6.2,
- -10.07,
- -9.14,
- -12.21,
- -12.29,
- -11.57,
- -8.04,
- -5.44,
- -5.09,
- -5.54,
- -6.32,
- -6.92,
- -4.72,
- -4.65,
- -5.33,
- -6.45,
- -6.83,
- -6.26,
- -5.71,
- -5.86,
- -6.69,
- -7.21,
- -7.21,
- -6.53,
- -6.48,
- -6.61,
- -5.89,
- -5.02,
- -4.51,
- -5.8,
- -6.61,
- -6.92,
- -7.18,
- -8.75,
- -8.31,
- -7.51,
- -7.41,
- -7.93,
- -8.71,
- -9.03,
- -8.26,
- -7.99,
- -7.41,
- -8.29,
- -3.78,
- -10.51,
- -18.02,
- -10.67,
- -9.97,
- -16.71,
- -20.13,
- -19.59,
- -18.83,
- -20.77,
- -21.61,
- -18.59,
- -16.1,
- -16.07,
- -15.45,
- -13.69,
- -12.48,
- -11.7,
- -10.57,
- -9.58,
- -8.39,
- -7.39,
- -6.57,
- -5.76,
- -5.11,
- -4.5,
- -4.05,
- -3.75,
- -3.21,
- -2.35,
- -1.18,
- 0.23,
- 1.7,
- 2.86,
- 3.83,
- 4.75,
- 5.41,
- 6.27,
- 6.4,
- 6.55,
- 6.72,
- 7.28,
- 7.93,
- 8.08,
- 7.85,
- 7.59,
- 7.77,
- 7.62,
- 6.92,
- 3.74,
- 0.63,
- -1.39,
- -4.42,
- -6.31,
- -7.45,
- -7.99,
- -8.13,
- -7.96,
- -7.84,
- -8.49,
- -8.92,
- -8.99,
- -8.29,
- -8.67,
- -9.08,
- -9.74,
- -10.59,
- -10.55,
- -10.13,
- -10.07,
- -10.2,
- -10.33,
- -10.51,
- -10.85,
- -11.13,
- -11.43,
- -11.78,
- -12.15,
- -12.51,
- -12.88,
- -13.41,
- -13.82,
- -14.07,
- -14.15,
- -14.13,
- -14.01,
- -13.85,
- -13.63,
- -13.28,
- -12.82,
- -12.3,
- -11.63,
- -10.75,
- -9.75,
- -8.84,
- -8.01,
- -7.15,
- -6.32,
- -5.46,
- -4.48,
- -3.33,
- -2.0,
- -0.47,
- 1.15,
- 2.64,
- 3.76,
- 4.67,
- 5.66,
- 6.66,
- 7.65,
- 8.7,
- 9.72,
- 10.5,
- 11.19,
- 11.82,
- 12.38,
- 12.92,
- 13.34,
- 13.72,
- 13.98,
- 14.13,
- 14.23,
- 14.29,
- 14.42,
- 14.62,
- 14.68,
- 14.63,
- 14.64,
- 13.71,
- 11.39,
- 11.18,
- 10.75,
- 10.46,
- 10.43,
- 10.2,
- 9.43,
- 8.76,
- 8.74,
- 9.05,
- 9.29,
- 9.59,
- 9.66,
- 10.39,
- 10.86,
- 10.49,
- 9.88,
- 11.37,
- 15.11,
- 13.53,
- 6.63,
- 1.9,
- 9.48,
- -4.51,
- -1.47,
- -2.97,
- -1.16,
- -0.89,
- -0.25,
- 0.13,
- -0.17,
- 0.42,
- 1.1,
- 1.23,
- 1.32,
- 1.44,
- 1.68,
- 2.1,
- 1.84,
- 0.81,
- -1.02,
- -3.02,
- -5.13,
- -6.72,
- -7.75,
- -7.94,
- -7.31,
- -6.7,
- -6.43,
- -6.19,
- -5.87,
- -5.62,
- -5.41,
- -5.17,
- -4.78,
- -4.42,
- -3.99,
- -3.54,
- -3.22,
- -2.87,
- -2.41,
- -1.95,
- -1.32,
- -0.51,
- 0.32,
- 0.99,
- 1.59,
- 2.02,
- 2.11,
- 1.39,
- -0.75,
- -1.56,
- -0.95,
- 0.16,
- 1.48,
- 1.97,
- 1.9,
- 2.44,
- 2.68,
- 2.67,
- 2.61,
- 2.53,
- 2.54,
- 2.76,
- 4.1,
- 5.17,
- 6.01,
- 6.51,
- 4.65,
- 6.76,
- 1.72,
- -7.54,
- -10.83,
- -9.98,
- -9.03,
- -9.15,
- -9.68,
- -9.66,
- -9.29,
- -8.64,
- -8.01,
- -7.63,
- -7.3,
- -7.01,
- -6.48,
- -5.8,
- -5.41,
- -4.71,
- -4.04,
- -3.73,
- -3.23,
- -1.83,
- 0.69,
- 2.46,
- 2.19,
- 1.22,
- -0.9,
- -5.13,
- -6.61,
- -3.75,
- -7.14,
- -10.02,
- -3.41,
- -4.3,
- -5.1,
- -3.76,
- -2.76,
- -1.43,
- -2.82,
- -5.05,
- -5.61,
- -5.72,
- -5.66,
- -5.82,
- -6.48,
- -5.41,
- -4.47,
- -5.19,
- -7.21,
- -7.89,
- -8.07,
- -7.4,
- -4.39,
- -4.7,
- -5.17,
- -5.06,
- -2.71,
- -0.11,
- -0.17,
- -1.55,
- -2.28,
- -1.34,
- -2.41,
- -2.54,
- -0.39,
- 1.94,
- 2.22,
- 1.71,
- 2.67,
- 2.21,
- 1.86,
- 2.59,
- 0.38,
- -4.17,
- -4.82,
- -4.9,
- -5.73,
- -9.95,
- -11.31,
- -10.02,
- -9.55,
- -8.8,
- -8.59,
- -8.55,
- -8.57,
- -8.3,
- -8.94,
- -9.82,
- -9.85,
- -9.64,
- -10.27,
- -10.83,
- -10.74,
- -10.78,
- -9.71,
- -6.25,
- -5.88,
- -5.77,
- -7.09,
- -9.47,
- -10.2,
- -9.84,
- -7.33,
- -6.5,
- -5.47,
- -5.21,
- -5.8,
- -5.24,
- -4.15,
- -4.17,
- -4.28,
- -4.59,
- -5.13,
- -5.73,
- -5.66,
- -5.8,
- -6.04,
- -6.07,
- -5.94,
- -6.38,
- -6.4,
- -6.52,
- -6.67,
- -6.44,
- -5.39,
- -5.37,
- -5.91,
- -6.5,
- -6.94,
- -8.04,
- -9.13,
- -8.2,
- -8.69,
- -6.26,
- -6.35,
- -7.23,
- -8.01,
- -7.63,
- -7.24,
- -6.96,
- -6.45,
- -6.86,
- -8.72,
- -10.38,
- -11.05,
- -12.05,
- -15.3,
- -17.43,
- -16.02,
- -13.41,
- -17.04,
- -20.83,
- -18.01,
- -13.78,
- -15.27,
- -13.68,
- -14.92,
- -11.26,
- -8.53,
- -6.99,
- -6.31,
- -5.73,
- -5.16,
- -4.73,
- -4.63,
- -4.54,
- -4.33,
- -4.0,
- -3.76,
- -3.08,
- -1.7,
- 0.04,
- 1.33,
- 2.2,
- 2.9,
- 3.57,
- 4.25,
- 4.73,
- 5.21,
- 5.81,
- 5.81,
- 6.25,
- 6.97,
- 7.04,
- 6.9,
- 6.76,
- 6.62,
- 6.72,
- 6.55,
- 5.62,
- 2.65,
- -0.65,
- -1.66,
- -2.64,
- -3.81,
- -5.16,
- -6.73,
- -7.2,
- -7.33,
- -7.69,
- -7.71,
- -7.76,
- -8.28,
- -8.88,
- -8.83,
- -8.42,
- -8.36,
- -8.26,
- -7.45,
- -6.71,
- -6.26,
- -6.25,
- -6.77,
- -9.04,
- -9.73,
- -9.88,
- -10.08,
- -10.43,
- -10.51,
- -9.0,
- -8.8,
- -11.34,
- -11.37,
- -11.37,
- -11.25,
- -11.05,
- -10.76,
- -10.35,
- -9.88,
- -9.4,
- -8.82,
- -8.18,
- -7.5,
- -6.75,
- -5.97,
- -5.15,
- -4.26,
- -3.25,
- -2.07,
- -0.72,
- 0.71,
- 2.1,
- 3.36,
- 4.47,
- 5.45,
- 6.31,
- 7.1,
- 7.9,
- 8.72,
- 9.45,
- 10.07,
- 10.63,
- 11.21,
- 11.8,
- 12.46,
- 12.54,
- 13.38,
- 13.97,
- 14.47,
- 14.77,
- 15.02,
- 15.27,
- 15.51,
- 14.0,
- 12.49,
- 11.56,
- 10.99,
- 10.63,
- 11.41,
- 12.0,
- 12.08,
- 12.04,
- 12.14,
- 11.23,
- 9.57,
- 8.92,
- 9.23,
- 9.48,
- 9.39,
- 9.55,
- 9.48,
- 9.06,
- 8.97,
- 9.44,
- 8.14,
- 6.25,
- 2.09,
- 2.67,
- 3.47,
- -1.38,
- 0.62,
- 2.09,
- 4.93,
- 5.37,
- -0.11,
- -1.81,
- -1.75,
- -1.57,
- -1.17,
- -0.79,
- -0.42,
- -0.21,
- 0.12,
- 0.63,
- 0.77,
- 0.58,
- 0.37,
- 0.11,
- -0.12,
- -0.48,
- -1.65,
- -3.63,
- -5.39,
- -6.43,
- -6.54,
- -6.52,
- -6.37,
- -5.91,
- -5.37,
- -4.9,
- -4.59,
- -4.21,
- -4.24,
- -4.04,
- -3.62,
- -3.33,
- -3.02,
- -2.71,
- -2.31,
- -1.89,
- -1.39,
- -0.68,
- 0.03,
- 0.68,
- 1.09,
- 1.27,
- 1.37,
- 1.19,
- 0.89,
- 0.94,
- 1.33,
- 1.84,
- 2.36,
- 2.83,
- 3.11,
- 3.39,
- 3.47,
- 3.59,
- 3.71,
- 4.14,
- 4.82,
- 4.94,
- 4.88,
- 4.79,
- 4.81,
- 4.6,
- 4.64,
- 4.09,
- -12.21,
- -11.5,
- -10.97,
- -12.06,
- -12.23,
- -12.12,
- -11.48,
- -10.78,
- -10.35,
- -9.51,
- -8.34,
- -7.68,
- -7.7,
- -6.15,
- -4.78,
- -5.67,
- -5.98,
- -4.48,
- -4.68,
- -4.08,
- -3.88,
- -5.17,
- -6.5,
- -6.15,
- -6.85,
- -6.25,
- -6.81,
- -5.35,
- -5.23,
- -5.26,
- -5.29,
- -3.93,
- -2.72,
- -6.78,
- -8.47,
- -5.23,
- -6.43,
- -5.55,
- -1.86,
- -3.98,
- -7.58,
- -7.93,
- -6.81,
- -7.52,
- -7.37,
- -7.16,
- -7.71,
- -7.08,
- -4.62,
- -5.63,
- -7.92,
- -8.01,
- -6.73,
- -6.17,
- -5.93,
- -4.75,
- -3.72,
- -2.55,
- -1.13,
- -0.27,
- -0.11,
- 0.54,
- 3.04,
- 4.47,
- 6.15,
- 7.98,
- 7.83,
- 7.29,
- 4.52,
- 2.55,
- 2.03,
- 2.23,
- 4.53,
- 1.73,
- -4.82,
- -4.89,
- -5.43,
- -6.96,
- -7.59,
- -8.3,
- -8.08,
- -8.12,
- -8.55,
- -8.74,
- -8.03,
- -7.48,
- -7.65,
- -7.88,
- -7.96,
- -8.18,
- -8.59,
- -8.79,
- -9.34,
- -8.97,
- -8.99,
- -8.2,
- -6.15,
- -5.38,
- -6.06,
- -5.76,
- -6.02,
- -6.92,
- -7.01,
- -7.09,
- -7.21,
- -7.28,
- -6.26,
- -4.41,
- -4.01,
- -4.05,
- -3.88,
- -3.81,
- -3.56,
- -3.96,
- -3.82,
- -4.34,
- -4.98,
- -5.12,
- -5.02,
- -5.07,
- -5.27,
- -5.48,
- -5.48,
- -5.73,
- -6.13,
- -6.08,
- -5.92,
- -5.18,
- -4.86,
- -5.73,
- -6.75,
- -7.52,
- -7.45,
- -7.36,
- -5.33,
- -4.9,
- -6.43,
- -7.27,
- -7.92,
- -6.76,
- -5.43,
- -4.78,
- -4.64,
- -5.91,
- -7.28,
- -8.54,
- -9.33,
- -9.58,
- -10.33,
- -11.24,
- -11.03,
- -10.04,
- -8.43,
- -10.11,
- -12.53,
- -11.2,
- -10.21,
- -8.43,
- -10.45,
- -6.04,
- 0.04,
- -4.1,
- -6.39,
- -5.87,
- -4.33,
- -4.72,
- -4.38,
- -3.78,
- -3.3,
- -2.92,
- -2.57,
- -1.73,
- -0.67,
- 0.37,
- 1.15,
- 1.86,
- 2.55,
- 3.08,
- 3.51,
- 3.99,
- 4.51,
- 4.75,
- 4.96,
- 5.3,
- 5.18,
- 4.93,
- 5.17,
- 5.24,
- 5.16,
- 5.45,
- 5.46,
- 4.64,
- 1.85,
- -1.34,
- -2.41,
- -3.15,
- -4.2,
- -5.53,
- -7.23,
- -7.8,
- -7.72,
- -8.47,
- -8.67,
- -8.76,
- -8.87,
- -8.65,
- -8.17,
- -7.37,
- -6.82,
- -6.67,
- -6.58,
- -5.92,
- -5.24,
- -4.88,
- -4.95,
- -6.2,
- -7.97,
- -8.02,
- -6.46,
- -5.24,
- -5.32,
- -5.89,
- -6.08,
- -8.55,
- -9.01,
- -6.47,
- -8.39,
- -8.41,
- -7.14,
- -7.62,
- -7.18,
- -6.67,
- -6.07,
- -5.35,
- -4.54,
- -3.53,
- -2.28,
- -1.07,
- 0.05,
- 1.24,
- 2.35,
- 3.53,
- 4.55,
- 5.38,
- 6.15,
- 6.95,
- 7.6,
- 8.33,
- 7.67,
- 5.59,
- 5.41,
- 6.72,
- 8.97,
- 10.26,
- 10.67,
- 10.48,
- 10.32,
- 10.1,
- 10.59,
- 11.04,
- 11.56,
- 11.62,
- 11.88,
- 12.09,
- 12.3,
- 12.88,
- 12.88,
- 12.79,
- 12.46,
- 12.08,
- 12.11,
- 12.22,
- 12.02,
- 11.05,
- 9.81,
- 9.62,
- 9.82,
- 10.04,
- 10.14,
- 9.88,
- 10.03,
- 9.65,
- 9.4,
- 9.69,
- 8.25,
- 8.86,
- 4.85,
- 3.73,
- 3.0,
- 1.07,
- 3.42,
- 6.91,
- -4.13,
- 1.6,
- 1.45,
- 3.95,
- 9.56,
- -1.05,
- 0.77,
- 1.02,
- -2.14,
- -0.84,
- -0.36,
- -0.05,
- 0.4,
- 0.71,
- 0.68,
- 0.29,
- -0.15,
- -0.5,
- -0.93,
- -1.43,
- -1.89,
- -2.46,
- -3.02,
- -3.41,
- -3.93,
- -4.31,
- -4.6,
- -4.36,
- -3.75,
- -3.57,
- -3.4,
- -2.87,
- -2.62,
- -2.78,
- -2.91,
- -2.88,
- -2.57,
- -2.06,
- -1.58,
- -1.18,
- -0.5,
- 0.29,
- 0.91,
- 1.33,
- 1.54,
- 1.59,
- 1.55,
- 1.55,
- 1.66,
- 1.84,
- 2.09,
- 2.5,
- 2.99,
- 3.57,
- 4.29,
- 4.21,
- 3.73,
- 4.12,
- 5.34,
- 6.05,
- 5.85,
- 5.54,
- 5.17,
- 3.65,
- 1.59,
- -1.32,
- -5.8,
- -10.66,
- -7.8,
- -9.28,
- -11.16,
- -11.01,
- -8.65,
- -7.61,
- -6.32,
- -4.6,
- -5.81,
- -5.77,
- -5.09,
- -4.44,
- -2.34,
- -3.45,
- -4.17,
- -3.75,
- -4.16,
- -4.76,
- -5.05,
- -3.57,
- -4.85,
- -8.14,
- -8.96,
- -9.63,
- -9.61,
- -7.47,
- -7.4,
- -8.96,
- -9.7,
- -10.22,
- -10.17,
- -9.55,
- -9.84,
- -10.0,
- -9.54,
- -10.63,
- -11.98,
- -10.58,
- -8.28,
- -8.93,
- -10.69,
- -10.76,
- -9.89,
- -9.63,
- -9.34,
- -8.25,
- -7.21,
- -6.79,
- -6.14,
- -5.91,
- -6.28,
- -6.16,
- -5.52,
- -4.7,
- -3.95,
- -2.76,
- -0.61,
- 1.65,
- 3.42,
- 4.49,
- 5.17,
- 6.06,
- 7.02,
- 9.03,
- 10.29,
- 10.23,
- 10.62,
- 12.45,
- 11.01,
- 5.29,
- 3.48,
- 4.08,
- 0.53,
- -4.61,
- -6.61,
- -5.76,
- -6.51,
- -6.54,
- -6.57,
- -6.96,
- -7.44,
- -7.23,
- -6.78,
- -6.92,
- -7.18,
- -7.1,
- -6.77,
- -6.68,
- -6.86,
- -7.03,
- -6.88,
- -6.85,
- -7.05,
- -6.91,
- -6.68,
- -5.69,
- -4.9,
- -4.86,
- -5.16,
- -4.93,
- -4.57,
- -4.87,
- -5.34,
- -5.29,
- -5.17,
- -5.09,
- -3.69,
- -2.1,
- -1.98,
- -2.23,
- -2.46,
- -2.3,
- -2.33,
- -3.2,
- -3.87,
- -4.17,
- -4.11,
- -4.05,
- -3.99,
- -4.06,
- -4.41,
- -4.58,
- -4.71,
- -4.83,
- -5.1,
- -5.33,
- -5.46,
- -5.41,
- -5.08,
- -4.8,
- -4.81,
- -5.29,
- -5.38,
- -5.02,
- -4.21,
- -4.33,
- -5.01,
- -4.65,
- -4.08,
- -3.84,
- -3.38,
- -3.71,
- -3.58,
- -4.69,
- -6.09,
- -6.7,
- -6.63,
- -6.4,
- -6.35,
- -6.78,
- -7.25,
- -6.98,
- -6.68,
- -6.51,
- -6.47,
- -6.48,
- -6.31,
- -6.1,
- -5.15,
- -4.54,
- -0.48,
- 4.77,
- -0.47,
- 0.81,
- -1.05,
- -3.75,
- 0.74,
- 1.73,
- -0.09,
- 0.51,
- 2.23,
- 2.01,
- 1.95,
- 2.29,
- 2.35,
- 2.36,
- 2.31,
- 2.44,
- 2.68,
- 2.9,
- 3.06,
- 3.35,
- 3.4,
- 2.89,
- 2.51,
- 2.71,
- 2.89,
- 2.75,
- 2.61,
- 2.9,
- 3.08,
- 2.46,
- -0.58,
- -3.3,
- -3.36,
- -4.62,
- -5.84,
- -6.36,
- -7.08,
- -8.1,
- -8.98,
- -8.52,
- -8.02,
- -8.08,
- -7.86,
- -7.31,
- -6.51,
- -5.87,
- -5.75,
- -5.73,
- -5.36,
- -5.31,
- -5.67,
- -5.94,
- -5.83,
- -5.6,
- -5.49,
- -5.38,
- -5.34,
- -5.42,
- -5.45,
- -5.54,
- -5.72,
- -5.64,
- -5.33,
- -5.19,
- -4.76,
- -4.8,
- -4.85,
- -4.21,
- -3.89,
- -3.61,
- -3.15,
- -2.56,
- -1.81,
- -1.16,
- -0.63,
- -0.04,
- 0.86,
- 2.0,
- 3.04,
- 3.68,
- 4.14,
- 4.72,
- 5.3,
- 5.74,
- 6.52,
- 6.86,
- 7.01,
- 7.4,
- 7.97,
- 8.49,
- 8.99,
- 9.41,
- 9.97,
- 10.82,
- 11.61,
- 12.12,
- 12.75,
- 13.06,
- 12.96,
- 13.35,
- 13.73,
- 13.82,
- 13.57,
- 13.67,
- 13.71,
- 13.31,
- 12.54,
- 11.6,
- 10.95,
- 10.48,
- 10.12,
- 10.43,
- 11.13,
- 11.38,
- 11.01,
- 10.64,
- 10.48,
- 9.99,
- 9.29,
- 8.92,
- 9.2,
- 8.03,
- 7.95,
- 9.2,
- 6.61,
- 2.04,
- 1.82,
- 1.97,
- 2.14,
- 10.0,
- 5.76,
- 0.53,
- 5.0,
- 5.62,
- 10.93,
- 3.08,
- -0.8,
- 0.18,
- -0.43,
- -0.02,
- 0.17,
- 0.35,
- 0.6,
- 0.79,
- 0.72,
- 0.52,
- 0.4,
- 0.18,
- -0.24,
- -0.73,
- -1.1,
- -1.4,
- -1.79,
- -2.45,
- -3.03,
- -3.49,
- -3.73,
- -3.96,
- -3.92,
- -3.61,
- -3.19,
- -3.03,
- -3.12,
- -3.07,
- -2.69,
- -2.17,
- -1.62,
- -1.22,
- -0.77,
- -0.1,
- 0.46,
- 0.81,
- 1.07,
- 1.2,
- 1.17,
- 1.19,
- 1.46,
- 1.73,
- 1.71,
- 1.7,
- 1.9,
- 2.55,
- 3.12,
- 2.97,
- 3.25,
- 2.51,
- -1.61,
- -7.18,
- -9.9,
- -10.06,
- -13.64,
- -14.53,
- -12.78,
- -13.2,
- -12.24,
- -11.28,
- -9.49,
- -8.11,
- -1.23,
- -3.14,
- -2.84,
- -3.27,
- -3.26,
- -3.12,
- -3.46,
- -1.51,
- -1.78,
- -4.05,
- -3.62,
- -4.94,
- -5.65,
- -3.11,
- -3.33,
- -3.05,
- -6.91,
- -6.07,
- -3.18,
- -3.84,
- -3.63,
- -2.24,
- -1.95,
- -0.77,
- -1.04,
- -2.82,
- -3.73,
- -7.22,
- -9.21,
- -7.51,
- -7.04,
- -8.26,
- -7.78,
- -7.85,
- -9.23,
- -13.26,
- -13.5,
- -9.6,
- -8.36,
- -8.54,
- -8.65,
- -8.87,
- -8.9,
- -8.68,
- -7.95,
- -7.09,
- -6.19,
- -6.07,
- -5.97,
- -5.73,
- -5.48,
- -4.55,
- -3.15,
- -1.36,
- 0.42,
- 1.94,
- 3.28,
- 4.79,
- 6.37,
- 7.37,
- 7.49,
- 7.61,
- 8.49,
- 9.45,
- 10.67,
- 12.23,
- 14.25,
- 13.7,
- 9.4,
- 8.45,
- 4.08,
- -1.38,
- -4.65,
- -7.03,
- -6.84,
- -6.32,
- -7.06,
- -7.0,
- -6.2,
- -6.11,
- -5.94,
- -5.9,
- -5.99,
- -5.85,
- -5.66,
- -5.67,
- -5.94,
- -5.97,
- -5.67,
- -5.45,
- -5.2,
- -4.95,
- -4.97,
- -4.78,
- -4.38,
- -4.02,
- -3.8,
- -3.84,
- -3.81,
- -3.77,
- -3.6,
- -3.47,
- -3.54,
- -3.66,
- -3.4,
- -2.68,
- -1.92,
- -1.91,
- -2.01,
- -2.11,
- -2.49,
- -2.73,
- -2.89,
- -3.4,
- -3.26,
- -2.8,
- -3.0,
- -3.34,
- -3.53,
- -3.58,
- -3.7,
- -3.95,
- -3.97,
- -4.1,
- -4.15,
- -3.88,
- -3.46,
- -3.1,
- -2.94,
- -3.0,
- -2.9,
- -2.87,
- -3.08,
- -2.86,
- -2.8,
- -2.54,
- -1.76,
- -1.47,
- -1.11,
- -0.96,
- -1.61,
- -1.83,
- -1.94,
- -2.21,
- -2.8,
- -3.13,
- -3.32,
- -3.61,
- -3.72,
- -3.85,
- -3.97,
- -3.86,
- -3.89,
- -3.82,
- -3.44,
- -3.18,
- -2.78,
- -2.13,
- -0.71,
- 0.79,
- 0.76,
- 0.7,
- 1.85,
- -2.2,
- -1.05,
- -0.29,
- 0.69,
- 3.4,
- 2.47,
- 2.77,
- 0.47,
- -3.18,
- 0.29,
- 0.87,
- 1.02,
- 1.03,
- 1.22,
- 1.47,
- 1.67,
- 1.84,
- 2.08,
- 2.07,
- 1.46,
- 0.91,
- 0.65,
- 0.43,
- 0.4,
- 0.13,
- -0.42,
- -0.51,
- -0.65,
- -1.44,
- -2.79,
- -4.41,
- -5.33,
- -5.7,
- -6.6,
- -7.8,
- -8.61,
- -8.44,
- -8.02,
- -7.86,
- -7.4,
- -6.94,
- -6.73,
- -6.35,
- -5.98,
- -5.93,
- -6.26,
- -6.93,
- -7.14,
- -6.97,
- -7.06,
- -7.15,
- -6.75,
- -5.99,
- -5.64,
- -5.51,
- -5.41,
- -5.04,
- -4.75,
- -4.38,
- -4.1,
- -3.87,
- -3.61,
- -3.28,
- -2.84,
- -2.24,
- -1.65,
- -0.91,
- -0.27,
- 0.58,
- 1.68,
- 2.69,
- 3.47,
- 4.06,
- 4.45,
- 4.67,
- 4.83,
- 5.05,
- 5.39,
- 5.81,
- 6.27,
- 6.77,
- 7.15,
- 7.45,
- 8.04,
- 8.76,
- 9.35,
- 9.37,
- 9.68,
- 9.96,
- 10.62,
- 11.48,
- 11.95,
- 12.08,
- 12.34,
- 12.3,
- 12.34,
- 12.9,
- 11.67,
- 12.02,
- 11.71,
- 10.82,
- 9.37,
- 7.77,
- 8.77,
- 10.45,
- 11.57,
- 12.53,
- 13.38,
- 13.83,
- 13.34,
- 12.49,
- 11.32,
- 10.36,
- 9.01,
- 7.93,
- 7.43,
- 7.14,
- 6.68,
- 7.03,
- 7.64,
- 8.49,
- 7.67,
- 7.66,
- 11.15,
- 7.5,
- 3.58,
- 4.8,
- 8.37,
- 10.85,
- 0.74,
- 0.73,
- 5.59,
- 6.21,
- 9.06,
- 0.32,
- -1.64,
- 3.33,
- 1.25,
- 0.23,
- 0.93,
- 1.29,
- 1.63,
- 1.86,
- 1.98,
- 1.97,
- 1.85,
- 1.63,
- 1.4,
- 1.18,
- 0.87,
- 0.41,
- -0.1,
- -0.62,
- -1.13,
- -1.59,
- -2.06,
- -2.55,
- -3.03,
- -3.54,
- -3.65,
- -3.53,
- -3.28,
- -2.79,
- -2.14,
- -1.33,
- -0.63,
- -0.23,
- 0.07,
- 0.4,
- 0.6,
- 0.79,
- 0.86,
- 0.65,
- 0.68,
- 1.15,
- 1.53,
- 1.19,
- 0.96,
- 1.08,
- 1.7,
- 2.06,
- 1.18,
- 0.16,
- -1.03,
- -2.44,
- -2.01,
- -9.02,
- -12.3,
- -6.09,
- -10.23,
- -14.61,
- -14.62,
- -10.99,
- -4.38,
- -3.41,
- -0.54,
- 1.72,
- -4.39,
- -4.74,
- -5.34,
- -6.09,
- -6.41,
- -6.92,
- -7.43,
- -7.19,
- -7.05,
- -7.35,
- -8.0,
- -8.4,
- -8.63,
- -8.09,
- -6.95,
- -6.1,
- -6.26,
- -6.6,
- -7.35,
- -7.69,
- -8.09,
- -9.31,
- -10.41,
- -10.19,
- -10.89,
- -11.0,
- -5.19,
- -1.89,
- -4.07,
- -5.74,
- -7.55,
- -10.0,
- -9.13,
- -8.04,
- -8.9,
- -9.86,
- -9.29,
- -8.17,
- -7.35,
- -6.9,
- -6.82,
- -6.77,
- -6.65,
- -6.03,
- -5.53,
- -5.38,
- -4.99,
- -4.72,
- -4.19,
- -3.46,
- -2.45,
- -1.05,
- 0.42,
- 1.65,
- 2.5,
- 3.38,
- 4.46,
- 5.78,
- 7.0,
- 8.27,
- 9.81,
- 10.89,
- 9.89,
- 9.5,
- 10.44,
- 11.52,
- 13.09,
- 10.28,
- 0.74,
- -3.52,
- -4.52,
- -5.39,
- -6.72,
- -7.31,
- -7.11,
- -7.81,
- -7.22,
- -6.04,
- -5.47,
- -5.14,
- -4.77,
- -4.7,
- -4.95,
- -4.82,
- -4.71,
- -4.67,
- -4.55,
- -4.37,
- -4.07,
- -3.68,
- -3.27,
- -2.86,
- -2.34,
- -1.59,
- -0.93,
- -0.44,
- -0.15,
- -0.06,
- -0.12,
- -0.24,
- -0.44,
- -0.58,
- -0.87,
- -1.5,
- -2.04,
- -2.3,
- -2.07,
- -1.86,
- -2.1,
- -2.47,
- -2.44,
- -2.58,
- -2.55,
- -2.53,
- -2.72,
- -2.76,
- -2.65,
- -2.6,
- -2.75,
- -2.79,
- -2.62,
- -2.54,
- -2.31,
- -2.01,
- -1.51,
- -0.96,
- -0.51,
- 0.03,
- 0.58,
- 1.34,
- 1.87,
- 1.92,
- 2.25,
- 2.79,
- 3.87,
- 3.52,
- 2.83,
- 2.54,
- 2.06,
- 1.98,
- 2.07,
- 1.75,
- 1.33,
- 1.07,
- 0.85,
- 0.71,
- 0.64,
- 0.52,
- 0.49,
- 0.4,
- 0.4,
- 0.57,
- 1.11,
- 1.72,
- 2.22,
- 2.64,
- 2.85,
- 3.31,
- 4.18,
- 5.48,
- 5.2,
- 3.13,
- 0.06,
- 0.13,
- -1.28,
- 2.98,
- 5.08,
- -2.16,
- 3.64,
- -1.26,
- -0.87,
- -3.25,
- -0.91,
- -0.67,
- -0.21,
- 0.11,
- 0.28,
- 0.43,
- 0.48,
- 0.49,
- 0.39,
- 0.09,
- -0.36,
- -0.67,
- -0.92,
- -1.33,
- -1.77,
- -2.31,
- -3.26,
- -4.21,
- -4.58,
- -5.03,
- -5.79,
- -6.55,
- -7.38,
- -8.03,
- -8.24,
- -8.2,
- -8.09,
- -8.42,
- -8.8,
- -8.56,
- -8.13,
- -8.06,
- -8.04,
- -7.94,
- -7.74,
- -7.66,
- -7.83,
- -7.79,
- -7.43,
- -7.15,
- -6.68,
- -6.13,
- -5.39,
- -4.9,
- -4.61,
- -4.24,
- -3.82,
- -3.52,
- -3.14,
- -2.66,
- -2.0,
- -1.17,
- -0.28,
- 0.57,
- 1.36,
- 2.14,
- 2.77,
- 3.38,
- 3.58,
- 3.3,
- 5.31,
- 7.77,
- 8.03,
- 6.06,
- 5.05,
- 4.18,
- 4.24,
- 5.07,
- 5.78,
- 6.2,
- 6.48,
- 7.05,
- 7.56,
- 7.91,
- 8.39,
- 9.03,
- 9.23,
- 9.65,
- 9.95,
- 8.79,
- 7.24,
- 6.61,
- 7.14,
- 8.74,
- 8.9,
- 10.1,
- 10.77,
- 8.46,
- 8.06,
- 10.42,
- 10.03,
- 7.15,
- 7.28,
- 11.29,
- 14.59,
- 13.24,
- 9.11,
- 8.6,
- 8.39,
- 8.02,
- 7.33,
- 6.57,
- 7.92,
- 7.21,
- 4.25,
- 4.16,
- 5.62,
- 5.25,
- 3.33,
- 2.63,
- 5.14,
- 7.42,
- 6.49,
- 5.23,
- 5.19,
- 2.87,
- 1.26,
- 0.03,
- -0.62,
- -2.23,
- -2.01,
- 0.66,
- 3.41,
- 5.82,
- 4.82,
- -0.62,
- -0.32,
- 1.85,
- 1.18,
- 1.61,
- 2.48,
- 2.55,
- 2.83,
- 3.26,
- 3.58,
- 3.71,
- 3.7,
- 3.67,
- 3.63,
- 3.51,
- 3.29,
- 3.01,
- 2.79,
- 2.61,
- 2.44,
- 2.2,
- 1.88,
- 1.54,
- 1.27,
- 1.06,
- 0.91,
- 0.81,
- 0.75,
- 0.67,
- 0.54,
- 0.44,
- 0.54,
- 0.77,
- 0.78,
- 0.77,
- 0.87,
- 0.84,
- 0.49,
- 0.11,
- 0.33,
- 0.76,
- 0.99,
- 0.79,
- 0.15,
- -0.43,
- 0.12,
- 0.66,
- -3.03,
- -5.78,
- -3.86,
- -3.02,
- -1.8,
- -5.79,
- -11.13,
- -9.64,
- -8.47,
- -10.31,
- -9.65,
- -5.12,
- -2.18,
- -3.06,
- -4.04,
- -3.38,
- -4.25,
- -5.87,
- -7.01,
- -7.08,
- -7.0,
- -7.37,
- -7.53,
- -7.5,
- -7.76,
- -7.93,
- -7.71,
- -7.57,
- -7.66,
- -7.49,
- -7.13,
- -6.89,
- -6.84,
- -6.88,
- -7.02,
- -7.3,
- -7.53,
- -7.6,
- -7.47,
- -7.2,
- -6.8,
- -6.16,
- -5.25,
- -4.47,
- -4.4,
- -4.81,
- -5.09,
- -6.18,
- -7.73,
- -7.79,
- -7.02,
- -7.05,
- -7.16,
- -7.24,
- -6.86,
- -5.98,
- -5.18,
- -4.59,
- -4.35,
- -4.06,
- -3.67,
- -3.24,
- -2.92,
- -2.59,
- -2.08,
- -1.18,
- -0.16,
- 0.88,
- 1.9,
- 2.77,
- 3.44,
- 4.15,
- 5.02,
- 5.59,
- 6.31,
- 6.92,
- 6.87,
- 6.59,
- 5.79,
- 5.08,
- 5.93,
- 7.0,
- 2.57,
- -2.99,
- -5.65,
- -4.92,
- -4.17,
- -4.99,
- -5.76,
- -5.79,
- -5.99,
- -6.68,
- -6.87,
- -5.95,
- -5.05,
- -4.57,
- -4.15,
- -4.04,
- -3.85,
- -3.6,
- -3.45,
- -3.0,
- -2.6,
- -2.12,
- -1.62,
- -1.21,
- -0.77,
- -0.31,
- 0.33,
- 1.12,
- 1.87,
- 2.43,
- 2.72,
- 2.94,
- 3.19,
- 3.41,
- 3.45,
- 3.15,
- 2.44,
- 1.48,
- 0.42,
- -0.59,
- -1.19,
- -1.15,
- -0.92,
- -0.82,
- -0.99,
- -0.97,
- -1.02,
- -1.03,
- -1.03,
- -0.87,
- -0.67,
- -0.54,
- -0.33,
- 0.0,
- 0.26,
- 0.56,
- 0.98,
- 1.41,
- 1.99,
- 2.52,
- 3.09,
- 3.54,
- 4.02,
- 4.69,
- 4.69,
- 4.86,
- 5.09,
- 4.86,
- 5.79,
- 6.03,
- 5.12,
- 4.72,
- 4.57,
- 5.15,
- 5.38,
- 4.7,
- 4.13,
- 3.99,
- 4.02,
- 4.03,
- 4.17,
- 4.36,
- 4.55,
- 4.83,
- 5.23,
- 5.72,
- 6.11,
- 6.45,
- 6.95,
- 7.36,
- 6.53,
- 6.65,
- 9.24,
- 8.68,
- 3.31,
- -0.65,
- 5.86,
- 5.73,
- 0.29,
- 0.0,
- -1.24,
- -1.81,
- -1.59,
- -2.71,
- -2.88,
- -1.76,
- -1.09,
- -0.94,
- -0.71,
- -0.41,
- -0.17,
- -0.12,
- -0.29,
- -0.5,
- -0.72,
- -0.98,
- -1.32,
- -1.92,
- -2.51,
- -2.88,
- -3.37,
- -4.25,
- -5.37,
- -6.31,
- -6.73,
- -7.11,
- -7.75,
- -8.41,
- -8.78,
- -9.03,
- -9.33,
- -9.57,
- -9.52,
- -9.53,
- -9.56,
- -9.43,
- -9.29,
- -9.13,
- -8.88,
- -8.56,
- -8.26,
- -7.96,
- -7.56,
- -6.85,
- -6.24,
- -5.68,
- -5.19,
- -4.43,
- -3.99,
- -3.54,
- -3.13,
- -2.67,
- -2.12,
- -1.42,
- -0.6,
- 0.18,
- 0.84,
- 1.74,
- 2.91,
- 3.73,
- 4.29,
- 5.05,
- 4.87,
- 4.9,
- 4.73,
- 4.03,
- 4.52,
- 5.34,
- 5.86,
- 6.8,
- 7.73,
- 3.57,
- 2.62,
- 6.29,
- 5.17,
- 5.34,
- 4.45,
- 3.47,
- 3.37,
- 0.53,
- 2.01,
- 3.69,
- 4.75,
- 2.85,
- -1.55,
- 0.37,
- 4.51,
- 6.16,
- 6.45,
- 6.37,
- 6.07,
- 5.92,
- 5.04,
- 4.18,
- 3.24,
- 3.24,
- 5.08,
- 5.39,
- 4.66,
- 5.34,
- 7.5,
- 8.39,
- 7.19,
- 6.73,
- 7.74,
- 8.23,
- 7.3,
- 7.82,
- 9.16,
- 8.72,
- 6.43,
- 3.13,
- -1.79,
- -5.13,
- -2.13,
- 2.15,
- 2.78,
- -1.49,
- -6.2,
- -4.15,
- -3.5,
- -5.89,
- -6.7,
- -5.37,
- -4.32,
- -3.58,
- -3.9,
- -2.98,
- -0.41,
- 0.42,
- 1.09,
- 0.4,
- 0.95,
- 0.7,
- 2.47,
- 4.2,
- 4.24,
- 4.44,
- 4.72,
- 4.91,
- 5.06,
- 5.16,
- 5.18,
- 5.11,
- 5.11,
- 5.0,
- 4.86,
- 4.77,
- 4.7,
- 4.52,
- 4.22,
- 3.85,
- 3.6,
- 3.36,
- 2.96,
- 2.57,
- 2.27,
- 2.0,
- 2.09,
- 1.91,
- 1.84,
- 1.56,
- 1.07,
- 0.8,
- 0.59,
- 0.23,
- 0.1,
- 0.26,
- 0.25,
- 0.02,
- -0.04,
- 0.12,
- -0.12,
- -1.25,
- -2.49,
- -2.84,
- -1.51,
- 0.42,
- -0.31,
- -4.04,
- -6.31,
- -6.25,
- -6.1,
- -7.16,
- -8.58,
- -8.65,
- -7.55,
- -5.87,
- -5.62,
- -6.19,
- -5.51,
- -4.13,
- -3.54,
- -3.28,
- -4.82,
- -5.29,
- -5.41,
- -5.57,
- -5.99,
- -6.37,
- -6.44,
- -6.42,
- -6.41,
- -6.37,
- -6.23,
- -6.11,
- -6.07,
- -6.09,
- -6.06,
- -6.0,
- -6.03,
- -6.06,
- -6.06,
- -6.02,
- -5.95,
- -5.89,
- -5.76,
- -5.55,
- -5.25,
- -4.84,
- -4.42,
- -4.17,
- -4.01,
- -3.92,
- -4.05,
- -4.17,
- -4.31,
- -4.53,
- -4.62,
- -4.62,
- -4.91,
- -5.13,
- -4.88,
- -4.3,
- -3.71,
- -3.25,
- -2.81,
- -2.42,
- -2.05,
- -1.64,
- -1.15,
- -0.75,
- -0.34,
- 0.26,
- 0.89,
- 1.67,
- 2.42,
- 3.26,
- 3.39,
- 3.15,
- 3.33,
- 2.5,
- 1.79,
- 2.26,
- 2.15,
- 1.41,
- 0.83,
- -0.42,
- -1.97,
- -2.85,
- -3.5,
- -4.11,
- -4.35,
- -5.21,
- -6.01,
- -6.07,
- -5.88,
- -5.48,
- -5.52,
- -5.85,
- -5.72,
- -5.06,
- -4.18,
- -3.55,
- -3.31,
- -3.04,
- -2.76,
- -2.52,
- -2.13,
- -1.7,
- -1.25,
- -0.88,
- -0.49,
- -0.13,
- 0.14,
- 0.75,
- 1.56,
- 2.35,
- 3.05,
- 3.5,
- 3.68,
- 3.85,
- 4.15,
- 4.37,
- 4.35,
- 4.13,
- 3.67,
- 2.94,
- 1.99,
- 1.2,
- 0.87,
- 0.88,
- 0.9,
- 0.93,
- 0.94,
- 0.92,
- 0.99,
- 1.04,
- 1.02,
- 1.08,
- 1.34,
- 1.55,
- 1.72,
- 1.98,
- 2.27,
- 2.66,
- 3.13,
- 3.69,
- 4.21,
- 4.56,
- 4.85,
- 5.26,
- 5.7,
- 5.82,
- 5.61,
- 5.61,
- 5.62,
- 5.55,
- 5.81,
- 6.31,
- 6.8,
- 6.42,
- 5.65,
- 6.05,
- 6.68,
- 6.42,
- 6.04,
- 5.85,
- 5.56,
- 5.69,
- 5.79,
- 5.87,
- 6.23,
- 6.62,
- 7.16,
- 7.84,
- 8.49,
- 9.27,
- 10.08,
- 10.74,
- 10.78,
- 10.82,
- 12.65,
- 15.49,
- 17.42,
- 17.97,
- 20.24,
- 15.1,
- 10.58,
- 10.69,
- 8.47,
- 4.85,
- 2.58,
- 1.98,
- 1.6,
- 0.89,
- 0.5,
- 0.18,
- -0.22,
- -0.5,
- -0.63,
- -0.71,
- -0.84,
- -1.19,
- -1.97,
- -2.53,
- -2.9,
- -3.38,
- -4.13,
- -4.83,
- -5.4,
- -5.94,
- -6.37,
- -6.74,
- -7.2,
- -7.68,
- -8.03,
- -8.25,
- -8.56,
- -8.96,
- -9.23,
- -9.4,
- -9.56,
- -9.51,
- -9.25,
- -8.95,
- -8.61,
- -8.23,
- -7.85,
- -7.47,
- -6.99,
- -6.34,
- -5.72,
- -5.08,
- -4.63,
- -4.07,
- -3.7,
- -3.48,
- -3.44,
- -2.89,
- -1.87,
- -1.12,
- -0.23,
- 0.95,
- 1.68,
- 1.54,
- 1.37,
- -0.2,
- -0.77,
- 0.86,
- -1.12,
- -2.0,
- -0.28,
- -0.5,
- -1.54,
- -1.6,
- -1.38,
- -1.33,
- -0.86,
- -1.52,
- -1.82,
- -2.25,
- -2.88,
- -2.67,
- -1.14,
- -1.48,
- -1.36,
- 0.55,
- 2.76,
- 4.15,
- 1.91,
- 0.79,
- -0.44,
- -0.27,
- 1.7,
- 1.33,
- 1.32,
- 2.49,
- 3.3,
- 2.64,
- 1.61,
- 1.45,
- 1.26,
- 1.35,
- 1.4,
- 1.18,
- 3.64,
- 6.82,
- 8.22,
- 7.47,
- 6.27,
- 5.83,
- 5.53,
- 5.17,
- 5.23,
- 5.34,
- 5.8,
- 8.34,
- 10.89,
- 10.04,
- 7.87,
- 7.29,
- 6.5,
- 5.68,
- 6.49,
- 6.28,
- 3.42,
- 1.56,
- 2.11,
- 1.53,
- -0.11,
- -0.11,
- 1.12,
- 1.15,
- 1.24,
- 1.11,
- 1.7,
- 3.51,
- 3.94,
- 1.81,
- 0.51,
- 0.59,
- 3.77,
- 5.18,
- 5.1,
- 5.49,
- 5.32,
- 5.48,
- 5.86,
- 6.26,
- 6.55,
- 6.61,
- 6.56,
- 6.64,
- 6.66,
- 6.63,
- 6.51,
- 6.19,
- 5.9,
- 5.55,
- 5.07,
- 4.76,
- 4.63,
- 4.46,
- 3.89,
- 2.68,
- 2.06,
- 1.66,
- 1.24,
- 0.93,
- 0.69,
- 0.54,
- 0.27,
- 0.18,
- -0.03,
- -0.35,
- -0.29,
- -0.39,
- -1.29,
- -2.31,
- -2.62,
- -2.99,
- -3.89,
- -4.11,
- -2.48,
- -0.54,
- -1.94,
- -5.01,
- -6.06,
- -5.96,
- -5.63,
- -4.14,
- -2.67,
- -3.76,
- -4.73,
- -4.25,
- -3.35,
- -3.19,
- -3.48,
- -2.97,
- -2.43,
- -2.6,
- -3.15,
- -3.95,
- -2.85,
- -3.31,
- -3.78,
- -4.18,
- -4.51,
- -4.77,
- -4.82,
- -4.72,
- -4.67,
- -4.7,
- -4.58,
- -4.42,
- -4.1,
- -3.96,
- -4.05,
- -4.13,
- -4.19,
- -4.13,
- -3.99,
- -3.96,
- -3.97,
- -4.01,
- -4.09,
- -4.17,
- -4.26,
- -4.22,
- -4.03,
- -3.83,
- -3.63,
- -3.42,
- -3.3,
- -3.18,
- -3.06,
- -2.97,
- -2.94,
- -3.07,
- -3.2,
- -3.1,
- -2.84,
- -2.44,
- -2.13,
- -1.95,
- -1.55,
- -1.09,
- -0.81,
- -0.5,
- -0.15,
- 0.22,
- 0.63,
- 1.0,
- 1.27,
- 1.78,
- 1.92,
- 1.86,
- 2.07,
- 1.94,
- 1.63,
- 1.54,
- 1.26,
- 0.39,
- -0.26,
- 0.35,
- 0.84,
- 0.53,
- -0.46,
- -2.46,
- -4.51,
- -5.79,
- -6.62,
- -6.67,
- -6.22,
- -5.81,
- -5.58,
- -5.46,
- -5.17,
- -4.75,
- -4.32,
- -4.0,
- -3.59,
- -3.57,
- -3.65,
- -3.19,
- -2.67,
- -2.25,
- -1.88,
- -1.51,
- -0.96,
- -0.45,
- -0.02,
- 0.34,
- 0.64,
- 1.23,
- 1.97,
- 2.69,
- 3.37,
- 3.93,
- 4.11,
- 4.12,
- 4.11,
- 3.86,
- 3.28,
- 2.45,
- 1.77,
- 1.64,
- 1.86,
- 2.11,
- 2.2,
- 2.25,
- 2.25,
- 2.24,
- 2.27,
- 2.26,
- 2.26,
- 2.36,
- 2.48,
- 2.55,
- 2.71,
- 2.94,
- 3.18,
- 3.54,
- 3.98,
- 4.38,
- 4.78,
- 5.17,
- 5.46,
- 5.73,
- 6.24,
- 6.86,
- 7.38,
- 7.39,
- 6.89,
- 6.7,
- 6.79,
- 6.62,
- 6.43,
- 6.48,
- 7.05,
- 7.36,
- 7.16,
- 6.89,
- 6.58,
- 6.49,
- 6.73,
- 6.72,
- 6.44,
- 6.4,
- 6.55,
- 6.59,
- 6.6,
- 6.77,
- 7.27,
- 7.88,
- 8.12,
- 8.36,
- 9.19,
- 9.91,
- 7.07,
- 4.23,
- 8.1,
- 10.84,
- 8.7,
- 7.27,
- 2.17,
- -1.88,
- 0.83,
- 2.68,
- 2.56,
- 2.04,
- 0.32,
- -1.82,
- -2.99,
- -3.0,
- -2.41,
- -1.88,
- -1.91,
- -2.35,
- -2.62,
- -2.63,
- -2.72,
- -2.84,
- -3.0,
- -3.46,
- -4.26,
- -4.83,
- -5.19,
- -5.39,
- -5.57,
- -5.78,
- -6.0,
- -6.2,
- -6.38,
- -6.48,
- -6.54,
- -6.49,
- -6.35,
- -6.32,
- -6.37,
- -6.53,
- -6.65,
- -6.71,
- -6.7,
- -6.78,
- -6.63,
- -6.36,
- -5.9,
- -5.35,
- -5.06,
- -4.68,
- -4.3,
- -3.65,
- -3.49,
- -4.17,
- -2.98,
- -2.73,
- -4.21,
- -3.86,
- -3.87,
- -3.75,
- -1.89,
- -3.03,
- -4.65,
- -3.17,
- -1.15,
- -0.46,
- -0.63,
- 1.07,
- 1.07,
- 1.05,
- 3.78,
- 0.56,
- -2.28,
- -0.85,
- 1.54,
- 2.64,
- 3.88,
- 4.02,
- 3.98,
- 2.72,
- 1.33,
- 1.9,
- 3.04,
- 3.86,
- 3.85,
- 2.86,
- 4.24,
- 5.71,
- 3.23,
- 1.84,
- 3.2,
- 2.79,
- 2.75,
- 3.72,
- 3.06,
- 1.49,
- 0.64,
- 1.01,
- 1.3,
- 1.14,
- 1.23,
- 1.33,
- 0.61,
- -0.02,
- 0.54,
- 0.92,
- 1.1,
- 1.26,
- 0.72,
- 0.7,
- 1.66,
- 2.19,
- 3.05,
- 4.6,
- 5.87,
- 6.96,
- 7.44,
- 6.01,
- 3.91,
- 2.61,
- 2.96,
- 4.5,
- 4.84,
- 3.25,
- 0.71,
- -1.59,
- -2.91,
- -2.55,
- -1.73,
- -0.59,
- 1.11,
- 1.96,
- 3.59,
- 4.2,
- 4.58,
- 5.44,
- 3.59,
- 3.34,
- 4.81,
- 5.3,
- 5.4,
- 5.62,
- 5.87,
- 6.08,
- 6.26,
- 6.59,
- 6.96,
- 7.2,
- 7.47,
- 6.87,
- 6.49,
- 6.72,
- 6.74,
- 6.66,
- 6.58,
- 6.37,
- 6.1,
- 5.74,
- 5.38,
- 4.88,
- 4.35,
- 3.6,
- 2.43,
- 1.27,
- 0.7,
- 0.58,
- 0.32,
- -0.06,
- -0.2,
- -0.3,
- -0.49,
- -0.92,
- -1.98,
- -3.96,
- -6.15,
- -7.78,
- -8.54,
- -9.33,
- -9.68,
- -8.77,
- -6.9,
- -5.96,
- -6.1,
- -5.89,
- -5.5,
- -5.29,
- -4.65,
- -3.93,
- -4.22,
- -4.49,
- -3.94,
- -3.44,
- -3.44,
- -3.57,
- -3.48,
- -3.08,
- -2.79,
- -2.67,
- -2.51,
- -2.56,
- -2.75,
- -2.74,
- -3.18,
- -2.95,
- -2.93,
- -3.05,
- -3.2,
- -3.42,
- -3.66,
- -3.7,
- -3.49,
- -3.29,
- -3.31,
- -3.37,
- -3.13,
- -2.65,
- -2.4,
- -2.36,
- -2.16,
- -1.92,
- -1.7,
- -1.44,
- -1.16,
- -0.92,
- -0.76,
- -0.8,
- -1.15,
- -1.67,
- -2.08,
- -2.32,
- -2.44,
- -2.43,
- -2.29,
- -2.09,
- -1.85,
- -1.64,
- -1.52,
- -1.48,
- -1.45,
- -1.33,
- -1.14,
- -0.96,
- -0.77,
- -0.5,
- -0.17,
- 0.05,
- 0.17,
- 0.36,
- 0.56,
- 0.77,
- 0.96,
- 1.04,
- 1.02,
- 1.12,
- 1.28,
- 1.42,
- 1.58,
- 1.43,
- 1.01,
- 0.74,
- 0.94,
- 1.29,
- 1.27,
- 0.37,
- -0.84,
- -2.23,
- -4.09,
- -6.0,
- -7.2,
- -7.86,
- -8.38,
- -8.54,
- -8.15,
- -7.62,
- -7.72,
- -7.54,
- -6.52,
- -5.83,
- -5.34,
- -5.14,
- -5.34,
- -5.39,
- -5.0,
- -4.59,
- -4.2,
- -3.71,
- -3.15,
- -2.71,
- -2.32,
- -1.81,
- -1.22,
- -0.69,
- -0.02,
- 0.57,
- 1.05,
- 1.77,
- 2.45,
- 2.86,
- 2.61,
- 1.68,
- 0.6,
- -0.13,
- -0.26,
- 0.04,
- 0.46,
- 0.84,
- 1.37,
- 2.08,
- 2.92,
- 3.42,
- 3.44,
- 3.52,
- 3.59,
- 3.63,
- 3.69,
- 3.83,
- 4.03,
- 4.21,
- 4.41,
- 4.64,
- 4.85,
- 5.11,
- 5.37,
- 5.48,
- 5.59,
- 5.8,
- 6.09,
- 6.42,
- 6.93,
- 7.77,
- 8.17,
- 7.99,
- 7.9,
- 7.89,
- 7.92,
- 7.81,
- 7.6,
- 7.49,
- 7.54,
- 7.46,
- 7.25,
- 7.25,
- 7.34,
- 7.24,
- 7.03,
- 6.73,
- 6.47,
- 6.5,
- 6.69,
- 6.77,
- 6.86,
- 7.04,
- 7.23,
- 7.42,
- 7.59,
- 7.55,
- 7.62,
- 8.07,
- 7.96,
- 6.94,
- 6.97,
- 7.23,
- 5.9,
- 3.87,
- 0.96,
- -1.31,
- -2.12,
- -3.0,
- -4.6,
- -4.64,
- -4.29,
- -3.68,
- -3.06,
- -2.62,
- -2.58,
- -3.19,
- -3.95,
- -4.15,
- -4.01,
- -3.56,
- -3.49,
- -3.63,
- -3.99,
- -4.19,
- -4.07,
- -4.01,
- -4.02,
- -4.22,
- -4.77,
- -4.81,
- -4.86,
- -4.81,
- -4.72,
- -4.66,
- -4.65,
- -4.57,
- -4.47,
- -4.3,
- -4.09,
- -3.77,
- -3.39,
- -3.19,
- -3.46,
- -3.92,
- -5.07,
- -5.2,
- -5.78,
- -4.84,
- -3.48,
- -3.01,
- -3.01,
- -2.84,
- -2.13,
- -1.58,
- -1.19,
- -0.58,
- -0.97,
- -1.69,
- -1.34,
- -1.27,
- -0.29,
- 1.48,
- 2.36,
- 2.44,
- 2.66,
- 2.68,
- 2.87,
- 3.45,
- 4.33,
- 4.65,
- 4.09,
- 3.54,
- 3.46,
- 3.51,
- 3.0,
- 2.07,
- 3.93,
- 5.32,
- 5.38,
- 5.65,
- 5.84,
- 5.99,
- 5.85,
- 4.92,
- 5.52,
- 7.42,
- 7.54,
- 6.88,
- 6.17,
- 5.06,
- 4.32,
- 3.82,
- 3.51,
- 3.33,
- 2.95,
- 2.6,
- 2.48,
- 2.4,
- 2.36,
- 2.3,
- 2.25,
- 2.47,
- 2.59,
- 2.47,
- 2.07,
- 1.18,
- 0.38,
- 0.43,
- 1.13,
- 1.96,
- 2.99,
- 4.16,
- 4.97,
- 4.65,
- 2.96,
- 0.79,
- -0.13,
- 0.18,
- 0.92,
- 1.4,
- 0.66,
- -0.25,
- 0.99,
- 3.21,
- 3.29,
- 1.52,
- 1.54,
- 3.45,
- 5.1,
- 5.72,
- 6.12,
- 6.69,
- 6.91,
- 6.82,
- 6.76,
- 6.6,
- 6.41,
- 6.26,
- 6.17,
- 6.14,
- 6.14,
- 6.18,
- 6.16,
- 6.14,
- 6.15,
- 6.22,
- 6.27,
- 6.35,
- 6.51,
- 6.61,
- 6.54,
- 6.29,
- 5.91,
- 5.49,
- 4.89,
- 3.98,
- 2.84,
- 1.81,
- 0.77,
- -0.62,
- -1.92,
- -2.47,
- -2.5,
- -2.22,
- -1.67,
- -1.41,
- -2.24,
- -4.22,
- -6.58,
- -7.93,
- -8.16,
- -8.83,
- -9.42,
- -9.14,
- -8.41,
- -8.05,
- -8.24,
- -8.15,
- -7.24,
- -6.08,
- -5.35,
- -5.17,
- -5.09,
- -4.66,
- -4.08,
- -3.86,
- -4.06,
- -4.15,
- -3.91,
- -3.52,
- -3.08,
- -2.59,
- -2.49,
- -2.8,
- -3.01,
- -3.02,
- -3.04,
- -3.06,
- -2.96,
- -2.88,
- -3.02,
- -3.21,
- -3.66,
- -3.56,
- -3.44,
- -3.43,
- -3.5,
- -3.33,
- -3.14,
- -3.11,
- -3.06,
- -2.91,
- -2.7,
- -2.37,
- -2.03,
- -1.74,
- -1.4,
- -1.08,
- -0.92,
- -0.7,
- -0.37,
- -0.12,
- 0.14,
- 0.52,
- 0.83,
- 1.04,
- 1.11,
- 0.96,
- 0.61,
- 0.12,
- -0.2,
- -0.4,
- -0.54,
- -0.46,
- -0.26,
- -0.19,
- -0.19,
- -0.22,
- -0.3,
- -0.37,
- -0.32,
- -0.18,
- -0.07,
- 0.01,
- 0.15,
- 0.25,
- 0.23,
- 0.29,
- 0.37,
- 0.29,
- 0.18,
- 0.2,
- 0.31,
- 0.24,
- 0.12,
- 0.14,
- 0.11,
- -0.12,
- -0.47,
- -0.74,
- -1.17,
- -1.72,
- -2.15,
- -2.66,
- -3.59,
- -4.8,
- -5.91,
- -6.77,
- -7.11,
- -6.94,
- -7.06,
- -7.81,
- -8.47,
- -8.27,
- -7.64,
- -7.63,
- -8.63,
- -9.88,
- -10.06,
- -9.1,
- -8.34,
- -8.46,
- -8.46,
- -7.86,
- -7.17,
- -6.77,
- -6.54,
- -6.34,
- -6.06,
- -5.53,
- -4.82,
- -4.53,
- -4.39,
- -4.02,
- -3.74,
- -3.55,
- -3.2,
- -2.57,
- -1.8,
- -1.01,
- -0.26,
- 0.48,
- 1.24,
- 1.87,
- 2.31,
- 2.69,
- 2.99,
- 3.1,
- 3.37,
- 4.05,
- 4.48,
- 4.48,
- 4.63,
- 4.86,
- 4.97,
- 5.03,
- 5.1,
- 5.15,
- 5.21,
- 5.33,
- 5.42,
- 5.54,
- 5.65,
- 5.71,
- 5.8,
- 5.99,
- 6.16,
- 6.38,
- 6.82,
- 7.42,
- 7.77,
- 7.9,
- 8.0,
- 8.08,
- 8.1,
- 8.01,
- 7.76,
- 7.49,
- 7.41,
- 7.39,
- 7.33,
- 7.34,
- 7.32,
- 7.05,
- 6.89,
- 6.92,
- 6.83,
- 6.76,
- 6.88,
- 7.06,
- 7.2,
- 7.51,
- 7.82,
- 8.05,
- 8.46,
- 9.1,
- 9.49,
- 8.98,
- 6.57,
- 5.33,
- 8.3,
- 8.13,
- 4.32,
- 0.91,
- -0.01,
- 1.07,
- -2.13,
- -4.3,
- -1.92,
- -0.63,
- -0.84,
- -1.51,
- -1.82,
- -1.48,
- -1.5,
- -1.97,
- -2.09,
- -1.52,
- -0.74,
- -0.59,
- -1.41,
- -2.43,
- -2.8,
- -2.71,
- -3.0,
- -3.1,
- -3.14,
- -3.15,
- -3.29,
- -3.2,
- -3.16,
- -2.93,
- -2.72,
- -2.6,
- -2.45,
- -2.2,
- -1.83,
- -1.46,
- -1.29,
- -1.4,
- -1.66,
- -2.1,
- -2.17,
- -1.98,
- -2.03,
- -1.14,
- 0.33,
- 0.7,
- -0.64,
- -1.88,
- -2.07,
- -1.91,
- -2.27,
- -2.62,
- -2.44,
- -1.56,
- -1.04,
- -2.01,
- -1.74,
- 0.48,
- 1.53,
- 1.2,
- 0.67,
- 0.42,
- 0.56,
- 0.92,
- 1.21,
- 1.59,
- 2.15,
- 2.75,
- 3.06,
- 3.17,
- 3.41,
- 3.82,
- 4.29,
- 4.61,
- 4.85,
- 5.23,
- 5.53,
- 5.66,
- 5.76,
- 5.72,
- 5.63,
- 5.69,
- 5.93,
- 6.16,
- 6.33,
- 6.35,
- 6.22,
- 5.84,
- 5.14,
- 4.26,
- 3.54,
- 3.11,
- 2.73,
- 2.38,
- 2.19,
- 2.15,
- 1.93,
- 1.42,
- 1.14,
- 1.19,
- 1.21,
- 1.11,
- 1.21,
- 1.68,
- 2.12,
- 2.29,
- 2.38,
- 2.17,
- 1.73,
- 1.55,
- 0.81,
- -1.27,
- -3.22,
- -2.4,
- 1.2,
- 0.71,
- -2.73,
- -2.6,
- 0.12,
- 1.71,
- 2.24,
- 3.01,
- 3.91,
- 4.27,
- 4.67,
- 5.94,
- 6.6,
- 5.64,
- 4.61,
- 4.6,
- 4.9,
- 5.15,
- 5.38,
- 5.53,
- 5.54,
- 5.46,
- 5.34,
- 5.24,
- 5.17,
- 5.11,
- 5.03,
- 4.98,
- 5.09,
- 5.16,
- 5.07,
- 4.93,
- 4.89,
- 4.7,
- 4.37,
- 4.61,
- 4.78,
- 2.52,
- -2.37,
- -6.2,
- -5.75,
- -2.97,
- -1.99,
- -3.22,
- -5.21,
- -6.49,
- -6.51,
- -6.35,
- -6.34,
- -6.12,
- -6.15,
- -7.37,
- -7.21,
- -5.13,
- -2.75,
- -2.14,
- -2.98,
- -3.92,
- -4.32,
- -4.6,
- -5.11,
- -5.63,
- -5.97,
- -6.28,
- -6.67,
- -6.93,
- -6.95,
- -6.92,
- -6.53,
- -5.38,
- -3.84,
- -2.86,
- -3.03,
- -3.85,
- -4.47,
- -4.74,
- -4.97,
- -5.24,
- -5.35,
- -5.11,
- -4.76,
- -4.54,
- -4.31,
- -3.98,
- -3.9,
- -3.86,
- -3.86,
- -3.98,
- -4.01,
- -4.0,
- -4.0,
- -3.82,
- -3.63,
- -3.43,
- -3.17,
- -3.03,
- -2.81,
- -2.37,
- -1.86,
- -1.51,
- -1.35,
- -1.18,
- -0.96,
- -0.75,
- -0.48,
- -0.09,
- 0.35,
- 0.64,
- 0.76,
- 0.82,
- 0.88,
- 0.98,
- 1.05,
- 1.03,
- 0.99,
- 0.96,
- 0.93,
- 0.89,
- 0.79,
- 0.69,
- 0.61,
- 0.49,
- 0.34,
- 0.23,
- 0.09,
- -0.16,
- -0.48,
- -0.74,
- -0.91,
- -0.97,
- -0.95,
- -0.91,
- -0.9,
- -0.92,
- -0.92,
- -0.89,
- -0.92,
- -1.02,
- -1.16,
- -1.27,
- -1.36,
- -1.55,
- -1.84,
- -2.14,
- -2.47,
- -2.95,
- -3.4,
- -3.69,
- -4.0,
- -4.55,
- -5.25,
- -5.97,
- -6.61,
- -6.92,
- -6.62,
- -6.18,
- -6.2,
- -6.59,
- -6.94,
- -7.22,
- -7.74,
- -8.31,
- -8.34,
- -7.85,
- -7.7,
- -8.04,
- -8.23,
- -7.81,
- -7.1,
- -6.54,
- -6.12,
- -5.79,
- -5.49,
- -5.26,
- -5.07,
- -4.85,
- -4.57,
- -4.3,
- -3.93,
- -3.31,
- -2.42,
- -1.48,
- -0.65,
- 0.22,
- 1.08,
- 1.63,
- 2.0,
- 2.41,
- 2.77,
- 3.01,
- 3.29,
- 3.59,
- 3.82,
- 4.05,
- 4.32,
- 4.49,
- 4.63,
- 4.8,
- 4.89,
- 4.91,
- 4.96,
- 4.99,
- 4.96,
- 4.97,
- 5.02,
- 5.11,
- 5.19,
- 5.32,
- 5.44,
- 5.51,
- 5.62,
- 5.81,
- 6.07,
- 6.42,
- 6.73,
- 6.88,
- 6.94,
- 7.03,
- 7.0,
- 6.81,
- 6.65,
- 6.57,
- 6.58,
- 6.61,
- 6.67,
- 6.7,
- 6.61,
- 6.41,
- 6.25,
- 6.27,
- 6.41,
- 6.58,
- 6.75,
- 6.95,
- 7.17,
- 7.46,
- 7.98,
- 8.63,
- 9.05,
- 9.17,
- 9.77,
- 10.69,
- 8.5,
- 6.23,
- 4.18,
- 3.71,
- 5.19,
- 7.05,
- 5.56,
- 3.22,
- 1.71,
- 1.46,
- 1.82,
- 2.05,
- 1.66,
- 1.02,
- 0.54,
- 0.3,
- 0.21,
- 0.15,
- 0.09,
- 0.06,
- 0.12,
- 0.28,
- 0.44,
- 0.61,
- 0.8,
- 0.94,
- 0.94,
- 0.82,
- 0.64,
- 0.52,
- 0.45,
- 0.38,
- 0.28,
- 0.21,
- 0.2,
- 0.1,
- -0.16,
- -0.16,
- 0.39,
- 0.12,
- -1.24,
- -1.52,
- -1.0,
- -1.9,
- -2.74,
- -2.47,
- -1.95,
- -1.65,
- -1.67,
- -1.78,
- -1.19,
- -0.14,
- 0.47,
- 0.74,
- 0.99,
- 1.55,
- 1.78,
- 1.48,
- 1.67,
- 2.79,
- 3.99,
- 4.11,
- 3.29,
- 2.43,
- 2.21,
- 2.37,
- 2.2,
- 1.72,
- 1.47,
- 1.69,
- 2.18,
- 2.54,
- 2.68,
- 2.71,
- 2.84,
- 3.26,
- 3.96,
- 4.65,
- 4.99,
- 5.02,
- 5.01,
- 4.89,
- 4.67,
- 4.4,
- 4.27,
- 4.47,
- 4.75,
- 4.89,
- 4.99,
- 5.37,
- 5.87,
- 6.16,
- 5.82,
- 5.0,
- 4.25,
- 4.07,
- 4.09,
- 3.8,
- 3.31,
- 2.93,
- 2.75,
- 2.67,
- 2.67,
- 2.78,
- 3.01,
- 3.34,
- 3.68,
- 3.94,
- 3.99,
- 3.79,
- 3.37,
- 2.58,
- 1.53,
- 0.82,
- 0.84,
- 1.36,
- 3.27,
- 6.64,
- 8.68,
- 8.84,
- 6.02,
- 4.11,
- 1.82,
- 2.05,
- 3.73,
- 5.19,
- 5.63,
- 5.38,
- 5.01,
- 4.84,
- 4.93,
- 5.0,
- 4.48,
- 3.86,
- 4.42,
- 5.29,
- 4.88,
- 3.79,
- 3.47,
- 3.67,
- 3.76,
- 3.67,
- 3.62,
- 3.63,
- 3.67,
- 3.72,
- 3.81,
- 3.99,
- 4.18,
- 4.26,
- 3.94,
- 3.32,
- 2.99,
- 2.73,
- 1.8,
- -0.17,
- -2.9,
- -5.26,
- -6.22,
- -5.86,
- -4.77,
- -4.13,
- -3.5,
- -2.13,
- -1.07,
- -0.58,
- 0.28,
- 1.45,
- 1.32,
- -0.75,
- -3.34,
- -5.13,
- -5.84,
- -6.35,
- -7.46,
- -8.64,
- -9.24,
- -8.96,
- -8.12,
- -7.21,
- -6.6,
- -6.4,
- -6.5,
- -6.57,
- -6.29,
- -5.69,
- -5.1,
- -4.77,
- -4.75,
- -5.16,
- -5.57,
- -5.67,
- -5.35,
- -5.0,
- -4.84,
- -4.89,
- -4.93,
- -4.74,
- -4.32,
- -4.01,
- -3.99,
- -3.83,
- -3.64,
- -3.7,
- -3.96,
- -4.07,
- -4.12,
- -4.02,
- -3.84,
- -3.68,
- -3.43,
- -3.11,
- -2.75,
- -2.35,
- -1.97,
- -1.7,
- -1.54,
- -1.5,
- -1.48,
- -1.42,
- -1.29,
- -1.08,
- -0.83,
- -0.61,
- -0.41,
- -0.22,
- -0.01,
- 0.24,
- 0.45,
- 0.61,
- 0.7,
- 0.72,
- 0.76,
- 0.9,
- 1.07,
- 1.18,
- 1.18,
- 1.15,
- 1.13,
- 1.13,
- 1.09,
- 0.99,
- 0.83,
- 0.62,
- 0.31,
- -0.12,
- -0.59,
- -1.03,
- -1.38,
- -1.63,
- -1.76,
- -1.77,
- -1.71,
- -1.7,
- -1.75,
- -1.84,
- -1.97,
- -2.1,
- -2.23,
- -2.37,
- -2.54,
- -2.78,
- -3.06,
- -3.34,
- -3.63,
- -3.95,
- -4.35,
- -4.78,
- -5.03,
- -5.09,
- -5.17,
- -5.31,
- -5.42,
- -5.49,
- -5.54,
- -5.57,
- -5.61,
- -5.77,
- -6.2,
- -6.88,
- -7.19,
- -6.62,
- -5.51,
- -4.7,
- -4.33,
- -4.14,
- -3.83,
- -3.32,
- -2.92,
- -2.77,
- -2.7,
- -2.59,
- -2.4,
- -2.11,
- -1.69,
- -1.24,
- -0.78,
- -0.31,
- 0.18,
- 0.65,
- 1.08,
- 1.49,
- 1.88,
- 2.27,
- 2.66,
- 3.03,
- 3.26,
- 3.41,
- 3.49,
- 3.57,
- 3.65,
- 3.74,
- 3.79,
- 3.85,
- 3.99,
- 4.18,
- 4.28,
- 4.36,
- 4.46,
- 4.5,
- 4.45,
- 4.41,
- 4.36,
- 4.32,
- 4.32,
- 4.3,
- 4.18,
- 4.03,
- 3.95,
- 3.92,
- 3.86,
- 3.85,
- 3.95,
- 4.01,
- 3.88,
- 3.77,
- 3.89,
- 4.02,
- 3.85,
- 3.36,
- 2.75,
- 2.12,
- 1.53,
- 1.02,
- 0.74,
- 0.76,
- 1.12,
- 1.88,
- 2.8,
- 3.65,
- 4.43,
- 5.32,
- 6.28,
- 6.85,
- 6.77,
- 6.93,
- 7.27,
- 6.62,
- 3.85,
- 2.28,
- 2.29,
- 1.59,
- 1.18,
- 2.25,
- 2.89,
- 1.45,
- 0.33,
- 0.68,
- 1.57,
- 2.07,
- 1.95,
- 1.5,
- 1.04,
- 0.66,
- 0.22,
- -0.2,
- -0.4,
- -0.29,
- -0.03,
- 0.23,
- 0.49,
- 0.75,
- 1.04,
- 1.36,
- 1.69,
- 2.01,
- 2.28,
- 2.49,
- 2.61,
- 2.68,
- 2.71,
- 2.69,
- 2.61,
- 2.5,
- 2.42,
- 2.41,
- 2.44,
- 2.41,
- 2.29,
- 2.28,
- 2.48,
- 2.77,
- 3.03,
- 3.28,
- 3.37,
- 3.15,
- 2.88,
- 2.77,
- 2.79,
- 2.8,
- 2.77,
- 2.64,
- 2.39,
- 2.09,
- 1.71,
- 1.29,
- 0.97,
- 0.86,
- 0.81,
- 0.78,
- 0.95,
- 1.3,
- 1.58,
- 1.61,
- 1.47,
- 1.3,
- 1.08,
- 0.68,
- 0.32,
- 0.23,
- 0.56,
- 1.21,
- 1.78,
- 2.05,
- 2.32,
- 2.69,
- 3.24,
- 3.85,
- 4.2,
- 4.27,
- 4.23,
- 4.28,
- 4.45,
- 4.59,
- 4.62,
- 4.59,
- 4.6,
- 4.8,
- 5.1,
- 5.29,
- 5.15,
- 4.79,
- 4.45,
- 4.24,
- 4.15,
- 4.13,
- 4.07,
- 4.0,
- 4.02,
- 4.14,
- 4.29,
- 4.46,
- 4.65,
- 4.83,
- 4.95,
- 4.93,
- 4.73,
- 4.31,
- 3.76,
- 3.43,
- 3.59,
- 4.18,
- 5.19,
- 6.6,
- 8.02,
- 8.82,
- 9.03,
- 8.93,
- 8.83,
- 8.64,
- 8.62,
- 7.76,
- 12.15,
- 11.84,
- 8.83,
- 5.13,
- 3.15,
- 2.49,
- 2.23,
- 2.4,
- 2.93,
- 3.22,
- 3.15,
- 3.1,
- 3.14,
- 3.09,
- 2.95,
- 2.8,
- 2.53,
- 2.23,
- 2.18,
- 2.16,
- 1.85,
- 1.55,
- 1.45,
- 1.36,
- 1.34,
- 1.55,
- 2.21,
- 3.22,
- 3.39,
- 1.59,
- -1.68,
- -4.37,
- -5.54,
- -5.81,
- -5.98,
- -5.26,
- -2.9,
- 0.24,
- 2.51,
- 3.04,
- 2.89,
- 2.63,
- 0.91,
- -2.44,
- -5.73,
- -7.07,
- -7.12,
- -7.43,
- -8.48,
- -9.82,
- -11.12,
- -12.21,
- -12.94,
- -13.08,
- -12.55,
- -11.61,
- -10.86,
- -10.18,
- -9.22,
- -8.22,
- -7.8,
- -8.23,
- -9.02,
- -9.22,
- -8.58,
- -7.53,
- -6.97,
- -6.97,
- -6.9,
- -6.36,
- -5.86,
- -5.64,
- -5.6,
- -5.69,
- -5.8,
- -5.65,
- -5.08,
- -4.56,
- -4.3,
- -4.22,
- -4.14,
- -4.02,
- -4.27,
- -3.95,
- -3.45,
- -2.9,
- -2.34,
- -1.8,
- -1.28,
- -0.84,
- -0.61,
- -0.63,
- -0.84,
- -1.09,
- -1.26,
- -1.35,
- -1.39,
- -1.35,
- -1.21,
- -1.03,
- -0.86,
- -0.69,
- -0.55,
- -0.44,
- -0.32,
- -0.14,
- 0.04,
- 0.11,
- 0.09,
- 0.1,
- 0.18,
- 0.27,
- 0.36,
- 0.52,
- 0.69,
- 0.75,
- 0.81,
- 0.97,
- 1.16,
- 1.25,
- 1.2,
- 1.06,
- 0.91,
- 0.74,
- 0.51,
- 0.23,
- -0.07,
- -0.35,
- -0.63,
- -0.95,
- -1.31,
- -1.65,
- -1.94,
- -2.2,
- -2.45,
- -2.64,
- -2.79,
- -2.91,
- -3.02,
- -3.15,
- -3.31,
- -3.49,
- -3.67,
- -3.85,
- -4.01,
- -4.13,
- -4.22,
- -4.3,
- -4.38,
- -4.46,
- -4.51,
- -4.52,
- -4.55,
- -4.72,
- -5.01,
- -5.18,
- -5.03,
- -4.59,
- -3.97,
- -3.31,
- -2.77,
- -2.34,
- -1.94,
- -1.5,
- -1.09,
- -0.77,
- -0.51,
- -0.24,
- 0.07,
- 0.41,
- 0.73,
- 1.01,
- 1.27,
- 1.54,
- 1.82,
- 2.05,
- 2.23,
- 2.4,
- 2.56,
- 2.69,
- 2.77,
- 2.9,
- 3.12,
- 3.34,
- 3.54,
- 3.8,
- 4.13,
- 4.36,
- 4.42,
- 4.47,
- 4.51,
- 4.42,
- 4.21,
- 4.05,
- 3.98,
- 3.95,
- 3.94,
- 3.97,
- 4.05,
- 4.11,
- 4.15,
- 4.1,
- 4.01,
- 3.87,
- 3.74,
- 3.56,
- 3.35,
- 3.18,
- 3.22,
- 3.55,
- 4.02,
- 4.36,
- 4.37,
- 4.07,
- 3.48,
- 2.68,
- 1.85,
- 1.23,
- 0.93,
- 0.76,
- 0.56,
- 0.28,
- -0.13,
- -0.59,
- -1.02,
- -1.3,
- -1.51,
- -1.8,
- -2.13,
- -2.14,
- -1.69,
- -1.12,
- -1.02,
- -1.51,
- -1.73,
- -0.7,
- 1.04,
- 1.23,
- -1.64,
- -4.12,
- -4.18,
- -1.5,
- -0.19,
- -0.54,
- -1.61,
- -2.21,
- -2.24,
- -2.24,
- -2.27,
- -2.14,
- -1.7,
- -1.08,
- -0.58,
- -0.26,
- -0.05,
- 0.14,
- 0.37,
- 0.63,
- 0.94,
- 1.26,
- 1.59,
- 1.88,
- 2.12,
- 2.29,
- 2.4,
- 2.44,
- 2.47,
- 2.5,
- 2.56,
- 2.65,
- 2.79,
- 2.95,
- 3.11,
- 3.23,
- 3.27,
- 3.29,
- 3.3,
- 3.29,
- 3.29,
- 3.33,
- 3.37,
- 3.37,
- 3.38,
- 3.36,
- 3.14,
- 2.55,
- 1.81,
- 1.32,
- 1.09,
- 0.86,
- 0.61,
- 0.52,
- 0.66,
- 0.94,
- 1.3,
- 1.84,
- 2.3,
- 2.51,
- 2.59,
- 2.67,
- 2.75,
- 2.73,
- 2.55,
- 2.13,
- 1.48,
- 0.85,
- 0.62,
- 0.94,
- 1.66,
- 2.15,
- 2.12,
- 1.92,
- 1.81,
- 1.8,
- 1.91,
- 2.15,
- 2.43,
- 2.71,
- 3.1,
- 3.53,
- 3.91,
- 4.14,
- 4.24,
- 4.2,
- 4.11,
- 3.96,
- 3.74,
- 3.6,
- 3.65,
- 3.92,
- 4.23,
- 4.41,
- 4.39,
- 4.29,
- 4.19,
- 4.1,
- 4.1,
- 4.18,
- 4.37,
- 4.55,
- 4.72,
- 5.11,
- 5.87,
- 6.94,
- 7.94,
- 8.58,
- 8.8,
- 8.82,
- 8.92,
- 9.13,
- 9.33,
- 9.43,
- 9.5,
- 9.73,
- 10.35,
- 11.34,
- 11.86,
- 11.2,
- 10.0,
- 9.41,
- 9.65,
- 9.93,
- 9.61,
- 8.84,
- 7.85,
- 6.65,
- 5.21,
- 3.95,
- 3.31,
- 2.91,
- 2.27,
- 1.4,
- 0.53,
- -0.19,
- -0.67,
- -0.79,
- -0.53,
- -0.1,
- 0.17,
- 0.24,
- 0.5,
- 0.98,
- 1.25,
- 1.1,
- 0.91,
- 0.83,
- 0.75,
- 0.64,
- 0.69,
- 1.25,
- 2.18,
- 2.77,
- 2.49,
- 1.84,
- 1.65,
- 1.93,
- 2.08,
- 1.6,
- 0.32,
- -1.47,
- -3.69,
- -5.45,
- -6.32,
- -6.46,
- -6.13,
- -6.35,
- -7.49,
- -8.97,
- -9.54,
- -9.01,
- -7.96,
- -6.98,
- -6.59,
- -6.9,
- -7.25,
- -7.17,
- -6.63,
- -5.98,
- -5.57,
- -5.54,
- -5.89,
- -6.42,
- -6.98,
- -7.5,
- -7.57,
- -6.91,
- -5.88,
- -5.19,
- -4.99,
- -4.85,
- -4.51,
- -4.01,
- -3.59,
- -3.47,
- -3.64,
- -3.86,
- -3.98,
- -4.07,
- -4.3,
- -4.41,
- -4.42,
- -4.37,
- -4.15,
- -4.08,
- -3.98,
- -3.96,
- -4.03,
- -4.08,
- -3.99,
- -3.79,
- -3.58,
- -3.39,
- -3.16,
- -2.89,
- -2.58,
- -2.28,
- -1.97,
- -1.65,
- -1.37,
- -1.16,
- -1.03,
- -0.96,
- -0.95,
- -0.99,
- -1.1,
- -1.22,
- -1.25,
- -1.13,
- -0.92,
- -0.72,
- -0.6,
- -0.55,
- -0.59,
- -0.67,
- -0.71,
- -0.65,
- -0.47,
- -0.25,
- -0.06,
- 0.1,
- 0.3,
- 0.57,
- 0.88,
- 1.09,
- 1.16,
- 1.06,
- 0.9,
- 0.75,
- 0.6,
- 0.42,
- 0.19,
- -0.06,
- -0.3,
- -0.51,
- -0.67,
- -0.81,
- -0.95,
- -1.1,
- -1.25,
- -1.43,
- -1.62,
- -1.84,
- -2.08,
- -2.31,
- -2.48,
- -2.6,
- -2.67,
- -2.71,
- -2.71,
- -2.69,
- -2.66,
- -2.65,
- -2.61,
- -2.5,
- -2.27,
- -1.91,
- -1.47,
- -1.02,
- -0.57,
- -0.15,
- 0.26,
- 0.62,
- 0.94,
- 1.22,
- 1.45,
- 1.66,
- 1.86,
- 2.03,
- 2.16,
- 2.23,
- 2.29,
- 2.36,
- 2.42,
- 2.5,
- 2.62,
- 2.8,
- 3.03,
- 3.28,
- 3.49,
- 3.61,
- 3.71,
- 3.79,
- 3.87,
- 3.92,
- 3.93,
- 3.89,
- 3.85,
- 3.87,
- 3.99,
- 4.07,
- 4.06,
- 3.94,
- 3.73,
- 3.49,
- 3.24,
- 3.07,
- 3.01,
- 3.06,
- 3.15,
- 3.21,
- 3.23,
- 3.19,
- 3.07,
- 2.88,
- 2.7,
- 2.57,
- 2.44,
- 2.23,
- 1.92,
- 1.52,
- 1.04,
- 0.54,
- 0.19,
- 0.08,
- 0.17,
- 0.32,
- 0.4,
- 0.37,
- 0.23,
- -0.02,
- -0.39,
- -0.93,
- -1.56,
- -2.18,
- -2.72,
- -3.21,
- -3.65,
- -4.03,
- -4.28,
- -4.37,
- -4.31,
- -4.24,
- -4.3,
- -4.71,
- -5.36,
- -5.87,
- -5.8,
- -5.14,
- -4.1,
- -2.74,
- -1.41,
- -0.4,
- 0.3,
- 0.53,
- 0.53,
- 0.38,
- -0.3,
- -1.44,
- -2.24,
- -2.47,
- -2.39,
- -2.28,
- -2.18,
- -2.04,
- -1.72,
- -1.29,
- -0.85,
- -0.5,
- -0.23,
- -0.01,
- 0.22,
- 0.48,
- 0.71,
- 0.87,
- 0.94,
- 0.94,
- 0.88,
- 0.79,
- 0.71,
- 0.66,
- 0.63,
- 0.63,
- 0.64,
- 0.71,
- 0.82,
- 1.01,
- 1.23,
- 1.46,
- 1.67,
- 1.82,
- 1.92,
- 1.89,
- 1.72,
- 1.43,
- 1.09,
- 0.94,
- 1.12,
- 1.47,
- 1.6,
- 1.51,
- 1.61,
- 1.86,
- 1.94,
- 1.78,
- 1.78,
- 2.0,
- 2.17,
- 1.94,
- 1.35,
- 0.5,
- -0.07,
- -0.25,
- -0.1,
- 0.15,
- 0.33,
- 0.3,
- 0.23,
- 0.25,
- 0.39,
- 0.58,
- 0.76,
- 0.94,
- 1.16,
- 1.4,
- 1.57,
- 1.71,
- 1.9,
- 2.14,
- 2.3,
- 2.31,
- 2.18,
- 1.9,
- 1.53,
- 1.35,
- 1.57,
- 2.07,
- 2.48,
- 2.66,
- 2.68,
- 2.77,
- 3.07,
- 3.54,
- 4.01,
- 4.27,
- 4.31,
- 4.38,
- 4.76,
- 5.6,
- 6.92,
- 8.18,
- 9.08,
- 9.49,
- 9.59,
- 9.53,
- 9.34,
- 9.12,
- 8.99,
- 9.23,
- 9.78,
- 10.39,
- 10.72,
- 10.81,
- 10.84,
- 10.87,
- 10.75,
- 10.33,
- 9.78,
- 9.47,
- 9.38,
- 9.0,
- 8.05,
- 6.89,
- 6.01,
- 5.37,
- 4.69,
- 3.76,
- 2.6,
- 1.35,
- 0.25,
- -0.5,
- -0.75,
- -0.39,
- 0.23,
- 0.67,
- 0.63,
- 0.27,
- -0.24,
- -0.66,
- -0.85,
- -0.82,
- -0.63,
- -0.42,
- -0.23,
- -0.05,
- 0.3,
- 0.93,
- 1.7,
- 1.98,
- 1.04,
- -1.51,
- -4.82,
- -7.45,
- -7.93,
- -6.87,
- -5.07,
- -3.5,
- -2.88,
- -3.48,
- -5.45,
- -8.11,
- -10.67,
- -11.93,
- -11.91,
- -11.39,
- -11.06,
- -10.82,
- -10.65,
- -10.62,
- -10.79,
- -11.09,
- -11.31,
- -11.2,
- -10.6,
- -9.49,
- -8.34,
- -7.66,
- -7.79,
- -8.38,
- -8.97,
- -9.2,
- -9.05,
- -8.67,
- -8.19,
- -7.74,
- -7.43,
- -7.31,
- -7.25,
- -7.03,
- -6.55,
- -6.0,
- -5.56,
- -5.25,
- -5.08,
- -4.93,
- -4.83,
- -4.76,
- -4.7,
- -4.6,
- -4.43,
- -4.24,
- -4.13,
- -4.13,
- -5.61,
- -5.45,
- -5.27,
- -5.08,
- -4.94,
- -4.78,
- -4.64,
- -4.47,
- -4.27,
- -4.04,
- -3.83,
- -3.7,
- -3.63,
- -3.62,
- -3.66,
- -3.71,
- -3.75,
- -3.74,
- -3.71,
- -3.66,
- -3.62,
- -3.6,
- -3.53,
- -3.45,
- -3.37,
- -3.33,
- -3.33,
- -3.31,
- -3.19,
- -2.95,
- -2.63,
- -2.31,
- -2.06,
- -1.86,
- -1.71,
- -1.58,
- -1.45,
- -1.29,
- -1.06,
- -0.75,
- -0.36,
- 0.04,
- 0.36,
- 0.56,
- 0.68,
- 0.78,
- 0.87,
- 0.96,
- 1.05,
- 1.13,
- 1.2,
- 1.24,
- 1.26,
- 1.24,
- 1.18,
- 1.11,
- 1.03,
- 0.97,
- 0.92,
- 0.88,
- 0.86,
- 0.86,
- 0.87,
- 0.89,
- 0.89,
- 0.9,
- 0.91,
- 0.93,
- 0.94,
- 0.96,
- 1.0,
- 1.08,
- 1.2,
- 1.37,
- 1.54,
- 1.7,
- 1.84,
- 1.97,
- 2.1,
- 2.2,
- 2.29,
- 2.35,
- 2.42,
- 2.47,
- 2.55,
- 2.61,
- 2.68,
- 2.75,
- 2.82,
- 2.89,
- 2.95,
- 3.0,
- 3.05,
- 3.15,
- 3.27,
- 3.41,
- 3.54,
- 3.61,
- 3.64,
- 3.67,
- 3.68,
- 3.68,
- 3.61,
- 3.47,
- 3.31,
- 3.17,
- 3.05,
- 2.98,
- 2.94,
- 2.96,
- 3.05,
- 3.15,
- 3.19,
- 3.06,
- 2.74,
- 2.28,
- 1.76,
- 1.28,
- 0.87,
- 0.57,
- 0.35,
- 0.22,
- 0.13,
- 0.04,
- -0.03,
- -0.12,
- -0.21,
- -0.26,
- -0.24,
- -0.13,
- -0.03,
- 0.02,
- -0.07,
- -0.24,
- -0.43,
- -0.58,
- -0.7,
- -0.8,
- -0.91,
- -1.03,
- -1.2,
- -1.45,
- -1.79,
- -2.18,
- -2.56,
- -2.88,
- -3.15,
- -3.34,
- -3.43,
- -3.31,
- -2.88,
- -2.06,
- -1.11,
- -0.32,
- 0.25,
- 0.84,
- 1.67,
- 1.81,
- 0.8,
- -0.77,
- -1.81,
- -0.94,
- 1.13,
- 1.49,
- 0.09,
- -0.79,
- 0.07,
- 0.95,
- 0.09,
- -2.15,
- -3.66,
- -3.53,
- -2.77,
- -2.36,
- -2.41,
- -2.51,
- -2.42,
- -2.18,
- -1.92,
- -1.72,
- -1.58,
- -1.47,
- -1.35,
- -1.26,
- -1.24,
- -1.29,
- -1.34,
- -1.29,
- -1.18,
- -1.06,
- -1.01,
- -0.96,
- -0.89,
- -0.79,
- -0.74,
- -0.76,
- -0.84,
- -0.96,
- -1.12,
- -1.26,
- -1.35,
- -1.32,
- -1.19,
- -1.06,
- -0.95,
- -0.78,
- -0.48,
- -0.01,
- 0.61,
- 1.31,
- 1.93,
- 2.21,
- 1.96,
- 1.17,
- 0.11,
- -0.99,
- -1.85,
- -2.12,
- -1.84,
- -1.11,
- -0.15,
- 0.69,
- 1.14,
- 1.18,
- 0.98,
- 0.69,
- 0.45,
- 0.33,
- 0.3,
- 0.31,
- 0.3,
- 0.24,
- 0.13,
- -0.04,
- -0.28,
- -0.54,
- -0.74,
- -0.85,
- -0.88,
- -0.8,
- -0.55,
- -0.02,
- 0.74,
- 1.53,
- 2.15,
- 2.47,
- 2.51,
- 2.48,
- 2.67,
- 3.14,
- 3.61,
- 3.82,
- 3.79,
- 3.98,
- 4.85,
- 6.51,
- 8.59,
- 10.31,
- 11.2,
- 11.15,
- 10.58,
- 9.9,
- 9.43,
- 9.32,
- 9.59,
- 10.12,
- 10.68,
- 11.01,
- 10.89,
- 10.39,
- 9.77,
- 9.35,
- 9.04,
- 8.54,
- 7.7,
- 6.56,
- 5.39,
- 4.45,
- 3.83,
- 3.46,
- 3.22,
- 2.97,
- 2.55,
- 1.99,
- 1.42,
- 0.92,
- 0.42,
- -0.14,
- -0.71,
- -1.18,
- -1.5,
- -1.78,
- -2.05,
- -2.23,
- -2.18,
- -1.79,
- -1.21,
- -0.61,
- -0.07,
- 0.4,
- 0.46,
- -0.54,
- -2.59,
- -5.49,
- -8.41,
- -10.31,
- -11.17,
- -11.15,
- -10.25,
- -8.49,
- -6.22,
- -3.94,
- -2.98,
- -4.03,
- -6.23,
- -8.68,
- -10.97,
- -12.99,
- -14.47,
- -14.87,
- -14.08,
- -12.55,
- -11.18,
- -10.54,
- -10.59,
- -10.74,
- -10.63,
- -10.28,
- -9.86,
- -9.51,
- -9.3,
- -9.19,
- -9.09,
- -8.95,
- -8.79,
- -8.6,
- -8.45,
- -8.34,
- -8.29,
- -8.29,
- -8.35,
- -8.46,
- -8.58,
- -8.68,
- -8.67,
- -8.5,
- -8.2,
- -7.83,
- -7.49,
- -7.22,
- -7.0,
- -6.8,
- -6.62,
- -6.45,
- -6.33,
- -6.22,
- -6.13,
- -6.04,
- -5.91,
- -5.77,
- -5.43,
- -5.33,
- -5.2,
- -5.06,
- -4.9,
- -4.73,
- -4.61,
- -4.52,
- -4.44,
- -4.35,
- -4.26,
- -4.17,
- -4.04,
- -3.89,
- -3.73,
- -3.53,
- -3.34,
- -3.17,
- -3.03,
- -2.91,
- -2.81,
- -2.74,
- -2.69,
- -2.64,
- -2.59,
- -2.54,
- -2.52,
- -2.56,
- -2.64,
- -2.69,
- -2.68,
- -2.58,
- -2.44,
- -2.31,
- -2.2,
- -2.05,
- -1.82,
- -1.5,
- -1.1,
- -0.7,
- -0.31,
- 0.05,
- 0.37,
- 0.65,
- 0.86,
- 1.04,
- 1.18,
- 1.33,
- 1.49,
- 1.64,
- 1.82,
- 1.97,
- 2.12,
- 2.24,
- 2.35,
- 2.45,
- 2.54,
- 2.62,
- 2.69,
- 2.74,
- 2.79,
- 2.85,
- 2.92,
- 3.02,
- 3.14,
- 3.25,
- 3.37,
- 3.47,
- 3.58,
- 3.69,
- 3.78,
- 3.88,
- 3.97,
- 4.07,
- 4.16,
- 4.21,
- 4.24,
- 4.22,
- 4.21,
- 4.2,
- 4.21,
- 4.22,
- 4.22,
- 4.2,
- 4.17,
- 4.14,
- 4.12,
- 4.13,
- 4.14,
- 4.18,
- 4.2,
- 4.21,
- 4.18,
- 4.11,
- 4.02,
- 3.94,
- 3.87,
- 3.81,
- 3.75,
- 3.68,
- 3.63,
- 3.59,
- 3.55,
- 3.49,
- 3.4,
- 3.27,
- 3.08,
- 2.87,
- 2.65,
- 2.45,
- 2.27,
- 2.11,
- 1.96,
- 1.82,
- 1.69,
- 1.55,
- 1.4,
- 1.26,
- 1.13,
- 1.01,
- 0.91,
- 0.76,
- 0.6,
- 0.41,
- 0.22,
- 0.02,
- -0.19,
- -0.4,
- -0.58,
- -0.71,
- -0.75,
- -0.7,
- -0.59,
- -0.48,
- -0.41,
- -0.42,
- -0.52,
- -0.7,
- -0.89,
- -1.06,
- -1.16,
- -1.2,
- -1.19,
- -1.21,
- -1.26,
- -1.34,
- -1.44,
- -1.5,
- -1.53,
- -1.49,
- -1.41,
- -1.29,
- -1.14,
- -1.01,
- -0.99,
- -1.16,
- -1.51,
- -1.83,
- -1.79,
- -1.11,
- 0.06,
- 1.3,
- 1.94,
- 1.52,
- 0.09,
- -1.27,
- -1.61,
- -0.95,
- 0.18,
- 0.49,
- -0.5,
- -2.0,
- -2.46,
- -1.53,
- -0.53,
- 0.21,
- 0.12,
- -0.7,
- -1.8,
- -2.73,
- -3.19,
- -3.21,
- -3.1,
- -3.05,
- -3.08,
- -3.09,
- -2.97,
- -2.7,
- -2.31,
- -1.89,
- -1.47,
- -1.1,
- -0.79,
- -0.57,
- -0.45,
- -0.4,
- -0.43,
- -0.48,
- -0.53,
- -0.57,
- -0.6,
- -0.62,
- -0.6,
- -0.52,
- -0.38,
- -0.18,
- 0.08,
- 0.37,
- 0.66,
- 0.94,
- 1.2,
- 1.43,
- 1.62,
- 1.68,
- 1.53,
- 1.16,
- 0.65,
- 0.06,
- -0.54,
- -1.14,
- -1.7,
- -2.2,
- -2.58,
- -2.78,
- -2.79,
- -2.69,
- -2.61,
- -2.59,
- -2.59,
- -2.52,
- -2.26,
- -1.83,
- -1.35,
- -0.93,
- -0.65,
- -0.46,
- -0.24,
- 0.07,
- 0.43,
- 0.81,
- 1.17,
- 1.51,
- 1.79,
- 1.98,
- 2.09,
- 2.23,
- 2.45,
- 2.78,
- 3.12,
- 3.42,
- 3.66,
- 3.91,
- 4.29,
- 4.84,
- 5.53,
- 6.23,
- 6.99,
- 7.39,
- 7.54,
- 7.52,
- 7.38,
- 7.27,
- 7.16,
- 7.17,
- 7.18,
- 7.09,
- 6.81,
- 6.32,
- 5.74,
- 5.15,
- 4.47,
- 3.58,
- 2.52,
- 1.51,
- 0.82,
- 0.6,
- 0.77,
- 1.16,
- 1.58,
- 2.0,
- 2.4,
- 2.82,
- 3.24,
- 3.62,
- 3.9,
- 4.11,
- 4.26,
- 4.35,
- 4.32,
- 4.15,
- 3.96,
- 3.94,
- 4.18,
- 4.53,
- 4.55,
- 3.81,
- 2.24,
- 0.14,
- -2.07,
- -4.17,
- -6.14,
- -8.05,
- -9.72,
- -9.95,
- -11.35,
- -10.58,
- -9.66,
- -8.66,
- -8.03,
- -7.8,
- -7.97,
- -8.47,
- -9.2,
- -10.15,
- -11.22,
- -12.27,
- -13.01,
- -13.25,
- -13.0,
- -12.48,
- -11.95,
- -11.57,
- -11.38,
- -11.31,
- -11.29,
- -11.24,
- -11.16,
- -11.0,
- -10.82,
- -10.63,
- -10.39,
- -10.18,
- -9.93,
- -9.76,
- -9.65,
- -9.66,
- -9.73,
- -9.78,
- -9.77,
- -9.65,
- -9.39,
- -9.06,
- -8.69,
- -8.37,
- -8.09,
- -7.83,
- -7.63,
- -7.44,
- -7.27,
- -7.09,
- -6.85,
- -6.64,
- -6.4,
- -6.2,
- -6.07,
- -5.95,
- -5.86,
- -5.76,
- -5.65,
- -5.55,
- -5.09,
- -4.98,
- -4.89,
- -4.76,
- -4.65,
- -4.57,
- -4.44,
- -4.35,
- -4.24,
- -4.15,
- -4.03,
- -3.92,
- -3.8,
- -3.67,
- -3.53,
- -3.39,
- -3.26,
- -3.13,
- -3.01,
- -2.89,
- -2.77,
- -2.66,
- -2.58,
- -2.5,
- -2.44,
- -2.38,
- -2.31,
- -2.23,
- -2.15,
- -2.03,
- -1.92,
- -1.81,
- -1.7,
- -1.57,
- -1.42,
- -1.22,
- -0.96,
- -0.63,
- -0.29,
- 0.05,
- 0.36,
- 0.63,
- 0.89,
- 1.15,
- 1.43,
- 1.71,
- 1.96,
- 2.2,
- 2.37,
- 2.49,
- 2.57,
- 2.66,
- 2.73,
- 2.81,
- 2.89,
- 2.99,
- 3.09,
- 3.19,
- 3.29,
- 3.39,
- 3.49,
- 3.6,
- 3.71,
- 3.82,
- 3.93,
- 4.02,
- 4.12,
- 4.22,
- 4.3,
- 4.39,
- 4.48,
- 4.57,
- 4.64,
- 4.73,
- 4.81,
- 4.9,
- 4.98,
- 5.04,
- 5.08,
- 5.09,
- 5.1,
- 5.09,
- 5.07,
- 5.04,
- 5.0,
- 4.93,
- 4.86,
- 4.79,
- 4.71,
- 4.66,
- 4.63,
- 4.6,
- 4.56,
- 4.5,
- 4.42,
- 4.33,
- 4.21,
- 4.09,
- 3.97,
- 3.86,
- 3.76,
- 3.67,
- 3.58,
- 3.48,
- 3.41,
- 3.32,
- 3.24,
- 3.15,
- 3.06,
- 2.96,
- 2.85,
- 2.76,
- 2.66,
- 2.53,
- 2.36,
- 2.16,
- 1.89,
- 1.61,
- 1.31,
- 1.02,
- 0.76,
- 0.5,
- 0.24,
- -0.01,
- -0.27,
- -0.51,
- -0.73,
- -0.92,
- -1.07,
- -1.19,
- -1.3,
- -1.4,
- -1.54,
- -1.68,
- -1.84,
- -1.98,
- -2.09,
- -2.16,
- -2.19,
- -2.15,
- -2.09,
- -2.03,
- -1.98,
- -1.96,
- -1.96,
- -2.0,
- -2.05,
- -2.11,
- -2.14,
- -2.14,
- -2.11,
- -2.02,
- -1.85,
- -1.58,
- -1.21,
- -0.77,
- -0.26,
- 0.31,
- 0.94,
- 1.67,
- 2.5,
- 3.33,
- 3.94,
- 3.97,
- 3.52,
- 2.9,
- 1.99,
- 0.97,
- -0.09,
- -0.94,
- -1.24,
- -1.14,
- -0.99,
- -0.48,
- 0.03,
- 0.38,
- 0.61,
- 0.75,
- 1.03,
- 1.61,
- 2.21,
- 2.25,
- 2.33,
- 1.55,
- 0.23,
- -0.84,
- -1.03,
- -0.38,
- 0.44,
- 0.67,
- 0.28,
- -0.5,
- -1.3,
- -1.89,
- -2.07,
- -2.12,
- -2.39,
- -2.84,
- -3.29,
- -3.59,
- -3.64,
- -3.54,
- -3.44,
- -3.43,
- -3.49,
- -3.57,
- -3.62,
- -3.64,
- -3.63,
- -3.69,
- -3.83,
- -4.04,
- -4.31,
- -4.57,
- -4.77,
- -4.86,
- -4.82,
- -4.67,
- -4.47,
- -4.3,
- -4.18,
- -4.14,
- -4.16,
- -4.18,
- -4.16,
- -4.14,
- -4.16,
- -4.21,
- -4.28,
- -4.34,
- -4.36,
- -4.32,
- -4.25,
- -4.17,
- -4.1,
- -3.96,
- -3.65,
- -3.07,
- -2.21,
- -1.17,
- -0.13,
- 0.78,
- 1.47,
- 1.98,
- 2.5,
- 3.11,
- 3.78,
- 4.37,
- 4.75,
- 4.85,
- 4.61,
- 4.2,
- 3.77,
- 3.4,
- 3.1,
- 2.86,
- 2.68,
- 2.58,
- 2.64,
- 2.79,
- 2.82,
- 2.78,
- 2.75,
- 2.6,
- 2.62,
- 2.85,
- 3.24,
- 3.42,
- 3.66,
- 4.42,
- 4.57,
- 4.33,
- 3.98,
- 3.7,
- 3.61,
- 3.73,
- 4.02,
- 4.36,
- 4.55,
- 4.44,
- 3.97,
- 3.19,
- 2.18,
- 1.06,
- -0.06,
- -1.14,
- -2.34,
- -3.71,
- -5.19,
- -6.64,
- -7.97,
- -9.1,
- -9.7,
- -9.74,
- -9.39,
- -8.52,
- -7.48,
- -7.16,
- -6.81,
- -7.27,
- -8.1,
- -9.05,
- -9.87,
- -10.42,
- -10.7,
- -10.65,
- -10.38,
- -10.08,
- -9.75,
- -9.47,
- -9.31,
- -9.27,
- -9.42,
- -9.58,
- -9.79,
- -9.98,
- -10.13,
- -10.17,
- -10.1,
- -9.93,
- -9.8,
- -9.7,
- -9.66,
- -9.63,
- -9.59,
- -9.47,
- -9.3,
- -9.04,
- -8.78,
- -8.5,
- -8.24,
- -8.05,
- -7.95,
- -7.94,
- -8.06,
- -8.17,
- -8.28,
- -8.35,
- -8.35,
- -8.3,
- -8.17,
- -8.0,
- -7.83,
- -7.63,
- -7.43,
- -7.21,
- -7.0,
- -6.79,
- -6.59,
- -6.42,
- -6.27,
- -6.13,
- -5.99,
- -5.86,
- -5.72,
- -5.58,
- -5.45,
- -5.34,
- -5.26,
- -5.16,
- -3.86,
- -3.73,
- -3.61,
- -3.49,
- -3.37,
- -3.26,
- -3.14,
- -3.02,
- -2.89,
- -2.77,
- -2.64,
- -2.52,
- -2.42,
- -2.32,
- -2.24,
- -2.18,
- -2.12,
- -2.05,
- -1.97,
- -1.9,
- -1.82,
- -1.74,
- -1.68,
- -1.63,
- -1.58,
- -1.54,
- -1.49,
- -1.42,
- -1.32,
- -1.18,
- -1.01,
- -0.81,
- -0.61,
- -0.39,
- -0.17,
- 0.08,
- 0.35,
- 0.66,
- 1.0,
- 1.34,
- 1.67,
- 1.96,
- 2.21,
- 2.41,
- 2.55,
- 2.67,
- 2.77,
- 2.87,
- 2.97,
- 3.06,
- 3.16,
- 3.26,
- 3.36,
- 3.44,
- 3.53,
- 3.6,
- 3.67,
- 3.73,
- 3.81,
- 3.89,
- 3.98,
- 4.08,
- 4.2,
- 4.31,
- 4.43,
- 4.54,
- 4.63,
- 4.72,
- 4.79,
- 4.85,
- 4.9,
- 4.94,
- 4.98,
- 5.01,
- 5.05,
- 5.08,
- 5.1,
- 5.12,
- 5.13,
- 5.13,
- 5.13,
- 5.12,
- 5.11,
- 5.09,
- 5.08,
- 5.05,
- 5.02,
- 4.99,
- 4.95,
- 4.9,
- 4.84,
- 4.78,
- 4.71,
- 4.64,
- 4.57,
- 4.49,
- 4.4,
- 4.3,
- 4.19,
- 4.08,
- 3.97,
- 3.84,
- 3.72,
- 3.6,
- 3.48,
- 3.35,
- 3.22,
- 3.1,
- 2.96,
- 2.82,
- 2.69,
- 2.57,
- 2.44,
- 2.32,
- 2.19,
- 2.05,
- 1.89,
- 1.73,
- 1.55,
- 1.35,
- 1.16,
- 0.96,
- 0.77,
- 0.58,
- 0.4,
- 0.25,
- 0.1,
- -0.03,
- -0.16,
- -0.29,
- -0.43,
- -0.59,
- -0.75,
- -0.94,
- -1.11,
- -1.29,
- -1.45,
- -1.6,
- -1.73,
- -1.84,
- -1.94,
- -2.05,
- -2.16,
- -2.28,
- -2.39,
- -2.5,
- -2.6,
- -2.67,
- -2.73,
- -2.77,
- -2.78,
- -2.8,
- -2.81,
- -2.82,
- -2.84,
- -2.84,
- -2.84,
- -2.82,
- -2.82,
- -2.86,
- -2.96,
- -3.14,
- -3.33,
- -3.52,
- -3.6,
- -3.6,
- -3.54,
- -3.5,
- -3.61,
- -3.88,
- -4.32,
- -4.81,
- -5.19,
- -5.45,
- -5.36,
- -5.03,
- -4.55,
- -3.95,
- -3.54,
- -3.32,
- -3.35,
- -3.67,
- -3.93,
- -4.06,
- -3.72,
- -2.83,
- -1.64,
- -0.24,
- 0.96,
- 1.86,
- 2.42,
- 2.58,
- 2.86,
- 3.32,
- 4.06,
- 4.6,
- 5.09,
- 5.86,
- 5.16,
- 3.78,
- 2.41,
- 0.95,
- 0.03,
- -0.27,
- 0.14,
- 0.47,
- 0.49,
- 0.15,
- -0.87,
- -1.87,
- -2.61,
- -3.19,
- -3.04,
- -2.31,
- -1.64,
- -0.76,
- -0.04,
- 0.35,
- 0.35,
- 0.22,
- 0.07,
- 0.08,
- 0.3,
- 0.64,
- 1.01,
- 1.32,
- 1.36,
- 1.01,
- 0.13,
- -0.97,
- -1.73,
- -2.1,
- -2.47,
- -2.37,
- -1.36,
- -0.42,
- 0.56,
- 1.69,
- 2.68,
- 3.35,
- 3.68,
- 3.58,
- 3.27,
- 2.81,
- 2.23,
- 1.65,
- 1.08,
- 0.52,
- -0.04,
- -0.59,
- -1.11,
- -1.48,
- -1.67,
- -1.64,
- -1.15,
- -0.36,
- 0.67,
- 1.88,
- 2.89,
- 3.65,
- 4.02,
- 3.81,
- 3.38,
- 2.81,
- 2.34,
- 2.14,
- 2.19,
- 2.56,
- 3.12,
- 3.69,
- 4.21,
- 4.33,
- 4.11,
- 3.54,
- 2.46,
- 1.09,
- -0.4,
- -1.89,
- -3.02,
- -3.81,
- -4.24,
- -4.25,
- -4.13,
- -3.98,
- -3.98,
- -4.44,
- -5.22,
- -6.35,
- -7.79,
- -9.22,
- -10.55,
- -11.57,
- -12.18,
- -12.5,
- -12.49,
- -12.21,
- -11.81,
- -11.29,
- -10.72,
- -10.13,
- -9.56,
- -9.05,
- -8.63,
- -8.32,
- -8.13,
- -8.06,
- -8.07,
- -8.14,
- -8.25,
- -8.35,
- -8.46,
- -8.53,
- -8.54,
- -8.53,
- -8.53,
- -8.51,
- -8.47,
- -8.45,
- -8.44,
- -8.45,
- -8.46,
- -8.47,
- -8.45,
- -8.37,
- -8.21,
- -8.02,
- -7.78,
- -7.52,
- -7.26,
- -7.04,
- -6.87,
- -6.81,
- -6.83,
- -6.91,
- -7.05,
- -7.16,
- -7.24,
- -7.24,
- -7.16,
- -7.03,
- -6.85,
- -6.64,
- -6.41,
- -6.2,
- -5.99,
- -5.81,
- -5.65,
- -5.5,
- -5.36,
- -5.22,
- -5.1,
- -4.97,
- -4.85,
- -4.74,
- -4.61,
- -4.49,
- -4.37,
- -4.24,
- -4.1,
- -3.98,
- -3.29,
- -3.23,
- -3.17,
- -3.1,
- -3.03,
- -2.94,
- -2.84,
- -2.73,
- -2.6,
- -2.46,
- -2.31,
- -2.16,
- -2.01,
- -1.87,
- -1.72,
- -1.57,
- -1.43,
- -1.28,
- -1.14,
- -0.99,
- -0.84,
- -0.69,
- -0.55,
- -0.4,
- -0.24,
- -0.09,
- 0.06,
- 0.22,
- 0.37,
- 0.53,
- 0.68,
- 0.83,
- 0.97,
- 1.11,
- 1.24,
- 1.37,
- 1.5,
- 1.64,
- 1.78,
- 1.93,
- 2.1,
- 2.26,
- 2.42,
- 2.56,
- 2.71,
- 2.84,
- 2.96,
- 3.07,
- 3.18,
- 3.26,
- 3.35,
- 3.44,
- 3.5,
- 3.58,
- 3.65,
- 3.71,
- 3.78,
- 3.84,
- 3.91,
- 3.97,
- 4.03,
- 4.1,
- 4.16,
- 4.23,
- 4.29,
- 4.35,
- 4.41,
- 4.47,
- 4.51,
- 4.56,
- 4.6,
- 4.63,
- 4.66,
- 4.69,
- 4.71,
- 4.72,
- 4.73,
- 4.74,
- 4.74,
- 4.74,
- 4.73,
- 4.72,
- 4.7,
- 4.68,
- 4.65,
- 4.61,
- 4.56,
- 4.52,
- 4.48,
- 4.44,
- 4.4,
- 4.35,
- 4.31,
- 4.28,
- 4.23,
- 4.18,
- 4.13,
- 4.08,
- 4.01,
- 3.95,
- 3.88,
- 3.81,
- 3.73,
- 3.65,
- 3.56,
- 3.49,
- 3.4,
- 3.31,
- 3.22,
- 3.13,
- 3.02,
- 2.93,
- 2.82,
- 2.71,
- 2.58,
- 2.45,
- 2.31,
- 2.17,
- 2.02,
- 1.87,
- 1.71,
- 1.55,
- 1.4,
- 1.25,
- 1.11,
- 0.97,
- 0.84,
- 0.71,
- 0.58,
- 0.46,
- 0.34,
- 0.21,
- 0.07,
- -0.07,
- -0.21,
- -0.35,
- -0.5,
- -0.65,
- -0.8,
- -0.95,
- -1.11,
- -1.27,
- -1.42,
- -1.58,
- -1.73,
- -1.89,
- -2.03,
- -2.18,
- -2.33,
- -2.47,
- -2.61,
- -2.74,
- -2.87,
- -3.01,
- -3.13,
- -3.26,
- -3.37,
- -3.49,
- -3.58,
- -3.66,
- -3.73,
- -3.77,
- -3.79,
- -3.79,
- -3.76,
- -3.72,
- -3.66,
- -3.59,
- -3.52,
- -3.45,
- -3.4,
- -3.36,
- -3.34,
- -3.32,
- -3.32,
- -3.32,
- -3.3,
- -3.23,
- -3.14,
- -2.95,
- -2.73,
- -2.37,
- -1.98,
- -1.49,
- -0.98,
- -0.43,
- 0.08,
- 0.55,
- 0.87,
- 1.1,
- 1.02,
- 0.84,
- 0.29,
- -0.36,
- -1.22,
- -2.12,
- -3.03,
- -3.72,
- -4.22,
- -4.22,
- -4.02,
- -3.28,
- -2.46,
- -1.42,
- -0.49,
- 0.23,
- 0.56,
- 0.53,
- -0.01,
- -0.8,
- -1.91,
- -3.04,
- -4.02,
- -4.76,
- -4.96,
- -5.15,
- -5.36,
- -5.15,
- -4.7,
- -4.09,
- -3.45,
- -2.82,
- -2.25,
- -1.84,
- -1.55,
- -1.43,
- -1.45,
- -1.55,
- -1.72,
- -1.9,
- -2.08,
- -2.25,
- -2.38,
- -2.49,
- -2.58,
- -2.66,
- -2.72,
- -2.77,
- -2.82,
- -2.84,
- -2.86,
- -2.85,
- -2.85,
- -2.84,
- -2.81,
- -2.77,
- -2.71,
- -2.62,
- -2.5,
- -2.35,
- -2.14,
- -1.92,
- -1.65,
- -1.36,
- -1.07,
- -0.78,
- -0.48,
- -0.21,
- 0.04,
- 0.23,
- 0.4,
- 0.44,
- 0.43,
- 0.26,
- -0.01,
- -0.43,
- -1.0,
- -1.68,
- -2.47,
- -3.32,
- -4.21,
- -5.09,
- -5.89,
- -6.63,
- -7.23,
- -7.71,
- -8.05,
- -8.27,
- -8.42,
- -8.48,
- -8.5,
- -8.52,
- -8.56,
- -8.63,
- -8.71,
- -8.83,
- -8.93,
- -9.02,
- -9.08,
- -9.14,
- -9.12,
- -9.11,
- -9.02,
- -8.94,
- -8.85,
- -8.73,
- -8.6,
- -8.47,
- -8.34,
- -8.16,
- -7.98,
- -7.8,
- -7.63,
- -7.47,
- -7.34,
- -7.26,
- -7.22,
- -7.22,
- -7.24,
- -7.29,
- -7.32,
- -7.35,
- -7.37,
- -7.38,
- -7.36,
- -7.31,
- -7.24,
- -7.15,
- -7.06,
- -6.94,
- -6.83,
- -6.73,
- -6.64,
- -6.58,
- -6.52,
- -6.47,
- -6.43,
- -6.41,
- -6.41,
- -6.42,
- -6.42,
- -6.4,
- -6.36,
- -6.31,
- -6.26,
- -6.19,
- -6.13,
- -6.06,
- -5.99,
- -5.91,
- -5.82,
- -5.73,
- -5.61,
- -5.48,
- -5.34,
- -5.2,
- -5.03,
- -4.86,
- -4.7,
- -4.53,
- -4.38,
- -4.23,
- -4.09,
- -3.95,
- -3.83,
- -3.71,
- -3.61,
- -3.51,
- -3.43,
- -3.36,
- -3.22,
- -3.1,
- -2.99,
- -2.87,
- -2.75,
- -2.64,
- -2.52,
- -2.41,
- -2.29,
- -2.19,
- -2.09,
- -1.99,
- -1.89,
- -1.8,
- -1.73,
- -1.65,
- -1.58,
- -1.52,
- -1.46,
- -1.41,
- -1.36,
- -1.32,
- -1.27,
- -1.24,
- -1.21,
- -1.18,
- -1.15,
- -1.14,
- -1.12,
- -1.09,
- -1.06,
- -1.02,
- -0.95,
- -0.88,
- -0.77,
- -0.63,
- -0.46,
- -0.24,
- -0.01,
- 0.25,
- 0.54,
- 0.84,
- 1.14,
- 1.45,
- 1.74,
- 2.01,
- 2.27,
- 2.49,
- 2.68,
- 2.85,
- 2.97,
- 3.08,
- 3.16,
- 3.22,
- 3.26,
- 3.31,
- 3.35,
- 3.39,
- 3.44,
- 3.5,
- 3.56,
- 3.64,
- 3.72,
- 3.81,
- 3.9,
- 4.0,
- 4.1,
- 4.2,
- 4.29,
- 4.37,
- 4.45,
- 4.51,
- 4.57,
- 4.62,
- 4.66,
- 4.7,
- 4.71,
- 4.73,
- 4.75,
- 4.75,
- 4.75,
- 4.75,
- 4.74,
- 4.73,
- 4.72,
- 4.7,
- 4.68,
- 4.66,
- 4.63,
- 4.61,
- 4.58,
- 4.55,
- 4.52,
- 4.48,
- 4.44,
- 4.4,
- 4.37,
- 4.32,
- 4.28,
- 4.24,
- 4.19,
- 4.15,
- 4.1,
- 4.06,
- 4.02,
- 3.97,
- 3.92,
- 3.87,
- 3.81,
- 3.75,
- 3.68,
- 3.62,
- 3.54,
- 3.47,
- 3.38,
- 3.29,
- 3.19,
- 3.07,
- 2.96,
- 2.83,
- 2.7,
- 2.56,
- 2.42,
- 2.27,
- 2.12,
- 1.97,
- 1.81,
- 1.66,
- 1.51,
- 1.36,
- 1.23,
- 1.1,
- 0.98,
- 0.86,
- 0.75,
- 0.66,
- 0.57,
- 0.49,
- 0.41,
- 0.33,
- 0.25,
- 0.17,
- 0.09,
- 0.0,
- -0.09,
- -0.19,
- -0.3,
- -0.4,
- -0.52,
- -0.63,
- -0.76,
- -0.87,
- -0.99,
- -1.1,
- -1.21,
- -1.32,
- -1.41,
- -1.51,
- -1.59,
- -1.67,
- -1.75,
- -1.81,
- -1.87,
- -1.92,
- -1.97,
- -2.01,
- -2.05,
- -2.08,
- -2.11,
- -2.14,
- -2.16,
- -2.18,
- -2.2,
- -2.21,
- -2.23,
- -2.25,
- -2.25,
- -2.27,
- -2.27,
- -2.28,
- -2.27,
- -2.26,
- -2.24,
- -2.21,
- -2.16,
- -2.12,
- -2.05,
- -1.97,
- -1.89,
- -1.79,
- -1.7,
- -1.61,
- -1.53,
- -1.44,
- -1.36,
- -1.28,
- -1.22,
- -1.16,
- -1.09,
- -1.03,
- -0.96,
- -0.9,
- -0.82,
- -0.75,
- -0.67,
- -0.6,
- -0.53,
- -0.47,
- -0.42,
- -0.4,
- -0.4,
- -0.41,
- -0.49,
- -0.58,
- -0.69,
- -0.84,
- -1.01,
- -1.2,
- -1.4,
- -1.6,
- -1.81,
- -2.01,
- -2.19,
- -2.37,
- -2.52,
- -2.64,
- -2.74,
- -2.79,
- -2.81,
- -2.81,
- -2.76,
- -2.68,
- -2.58,
- -2.46,
- -2.33,
- -2.18,
- -2.03,
- -1.89,
- -1.76,
- -1.63,
- -1.53,
- -1.45,
- -1.38,
- -1.34,
- -1.29,
- -1.27,
- -1.25,
- -1.23,
- -1.21,
- -1.19,
- -1.17,
- -1.15,
- -1.13,
- -1.13,
- -1.14,
- -1.16,
- -1.23,
- -1.3,
- -1.42,
- -1.56,
- -1.73,
- -1.94,
- -2.15,
- -2.38,
- -2.61,
- -2.85,
- -3.07,
- -3.29,
- -3.48,
- -3.66,
- -3.84,
- -3.97,
- -4.1,
- -4.22,
- -4.32,
- -4.42,
- -4.53,
- -4.63,
- -4.74,
- -4.86,
- -4.98,
- -5.11,
- -5.24,
- -5.37,
- -5.51,
- -5.65,
- -5.78,
- -5.92,
- -6.05,
- -6.17,
- -6.28,
- -6.38,
- -6.47,
- -6.54,
- -6.59,
- -6.65,
- -6.66,
- -6.66,
- -6.64,
- -6.6,
- -6.54,
- -6.48,
- -6.38,
- -6.27,
- -6.17,
- -6.06,
- -5.97,
- -5.88,
- -5.81,
- -5.74,
- -5.69,
- -5.64,
- -5.61,
- -5.58,
- -5.56,
- -5.55,
- -5.55,
- -5.55,
- -5.56,
- -5.56,
- -5.58,
- -5.59,
- -5.61,
- -5.63,
- -5.66,
- -5.68,
- -5.71,
- -5.74,
- -5.77,
- -5.8,
- -5.82,
- -5.84,
- -5.84,
- -5.84,
- -5.82,
- -5.79,
- -5.75,
- -5.7,
- -5.64,
- -5.57,
- -5.49,
- -5.41,
- -5.32,
- -5.22,
- -5.11,
- -5.01,
- -4.9,
- -4.8,
- -4.68,
- -4.55,
- -4.43,
- -4.31,
- -4.19,
- -4.07,
- -3.94,
- -3.82,
- -3.7,
- -3.58,
- -3.46,
- -3.34,
- -4.53,
- -4.46,
- -4.4,
- -4.33,
- -4.27,
- -4.2,
- -4.11,
- -4.02,
- -3.95,
- -3.86,
- -3.77,
- -3.68,
- -3.58,
- -3.48,
- -3.38,
- -3.28,
- -3.17,
- -3.07,
- -2.95,
- -2.85,
- -2.74,
- -2.62,
- -2.51,
- -2.4,
- -2.29,
- -2.18,
- -2.07,
- -1.96,
- -1.86,
- -1.75,
- -1.65,
- -1.54,
- -1.43,
- -1.32,
- -1.22,
- -1.12,
- -1.0,
- -0.88,
- -0.76,
- -0.64,
- -0.52,
- -0.37,
- -0.21,
- -0.05,
- 0.1,
- 0.26,
- 0.46,
- 0.67,
- 0.87,
- 1.07,
- 1.29,
- 1.53,
- 1.77,
- 2.01,
- 2.25,
- 2.5,
- 2.75,
- 3.0,
- 3.25,
- 3.49,
- 3.73,
- 3.95,
- 4.18,
- 4.41,
- 4.6,
- 4.79,
- 4.96,
- 5.14,
- 5.28,
- 5.4,
- 5.51,
- 5.61,
- 5.7,
- 5.74,
- 5.77,
- 5.81,
- 5.83,
- 5.81,
- 5.77,
- 5.72,
- 5.68,
- 5.62,
- 5.55,
- 5.49,
- 5.42,
- 5.35,
- 5.26,
- 5.17,
- 5.08,
- 4.98,
- 4.89,
- 4.8,
- 4.7,
- 4.61,
- 4.53,
- 4.44,
- 4.36,
- 4.28,
- 4.2,
- 4.12,
- 4.06,
- 4.01,
- 3.95,
- 3.89,
- 3.84,
- 3.8,
- 3.76,
- 3.72,
- 3.68,
- 3.66,
- 3.63,
- 3.61,
- 3.59,
- 3.57,
- 3.55,
- 3.54,
- 3.52,
- 3.5,
- 3.48,
- 3.47,
- 3.45,
- 3.43,
- 3.41,
- 3.38,
- 3.37,
- 3.34,
- 3.31,
- 3.28,
- 3.24,
- 3.21,
- 3.17,
- 3.13,
- 3.08,
- 3.03,
- 2.99,
- 2.94,
- 2.89,
- 2.83,
- 2.78,
- 2.73,
- 2.67,
- 2.62,
- 2.58,
- 2.53,
- 2.48,
- 2.44,
- 2.41,
- 2.38,
- 2.34,
- 2.31,
- 2.3,
- 2.28,
- 2.26,
- 2.25,
- 2.25,
- 2.25,
- 2.25,
- 2.25,
- 2.25,
- 2.26,
- 2.27,
- 2.28,
- 2.29,
- 2.3,
- 2.32,
- 2.33,
- 2.34,
- 2.35,
- 2.36,
- 2.37,
- 2.38,
- 2.39,
- 2.39,
- 2.4,
- 2.41,
- 2.42,
- 2.42,
- 2.41,
- 2.41,
- 2.41,
- 2.4,
- 2.39,
- 2.37,
- 2.36,
- 2.35,
- 2.33,
- 2.31,
- 2.29,
- 2.27,
- 2.24,
- 2.21,
- 2.18,
- 2.15,
- 2.12,
- 2.08,
- 2.04,
- 2.0,
- 1.96,
- 1.93,
- 1.89,
- 1.85,
- 1.81,
- 1.78,
- 1.74,
- 1.7,
- 1.67,
- 1.64,
- 1.61,
- 1.59,
- 1.57,
- 1.55,
- 1.53,
- 1.51,
- 1.5,
- 1.49,
- 1.48,
- 1.46,
- 1.45,
- 1.44,
- 1.44,
- 1.43,
- 1.42,
- 1.39,
- 1.37,
- 1.36,
- 1.34,
- 1.31,
- 1.27,
- 1.23,
- 1.2,
- 1.15,
- 1.09,
- 1.03,
- 0.98,
- 0.92,
- 0.84,
- 0.76,
- 0.69,
- 0.61,
- 0.54,
- 0.45,
- 0.37,
- 0.29,
- 0.21,
- 0.13,
- 0.05,
- -0.03,
- -0.1,
- -0.18,
- -0.24,
- -0.31,
- -0.38,
- -0.44,
- -0.5,
- -0.56,
- -0.61,
- -0.67,
- -0.72,
- -0.77,
- -0.83,
- -0.88,
- -0.93,
- -0.99,
- -1.04,
- -1.09,
- -1.15,
- -1.21,
- -1.27,
- -1.34,
- -1.41,
- -1.47,
- -1.55,
- -1.63,
- -1.71,
- -1.8,
- -1.88,
- -1.97,
- -2.06,
- -2.16,
- -2.25,
- -2.35,
- -2.45,
- -2.56,
- -2.66,
- -2.77,
- -2.87,
- -2.98,
- -3.09,
- -3.2,
- -3.31,
- -3.43,
- -3.54,
- -3.65,
- -3.77,
- -3.87,
- -3.98,
- -4.09,
- -4.2,
- -4.29,
- -4.39,
- -4.48,
- -4.58,
- -4.67,
- -4.74,
- -4.82,
- -4.9,
- -4.98,
- -5.04,
- -5.11,
- -5.18,
- -5.24,
- -5.3,
- -5.33,
- -5.38,
- -5.42,
- -5.45,
- -5.48,
- -5.5,
- -5.52,
- -5.53,
- -5.55,
- -5.55,
- -5.56,
- -5.57,
- -5.57,
- -5.58,
- -5.57,
- -5.57,
- -5.56,
- -5.55,
- -5.53,
- -5.52,
- -5.5,
- -5.48,
- -5.46,
- -5.44,
- -5.42,
- -5.39,
- -5.37,
- -5.34,
- -5.32,
- -5.29,
- -5.27,
- -5.24,
- -5.21,
- -5.18,
- -5.15,
- -5.12,
- -5.09,
- -5.05,
- -5.02,
- -4.98,
- -4.93,
- -4.89,
- -4.84,
- -4.8,
- -4.75,
- -4.69,
- -4.64,
- -4.58,
- -2.75,
- -2.69,
- -2.63,
- -2.57,
- -2.51,
- -2.45,
- -2.38,
- -2.32,
- -2.26,
- -2.19,
- -2.13,
- -2.06,
- -2.0,
- -1.93,
- -1.86,
- -1.79,
- -1.72,
- -1.66,
- -1.59,
- -1.52,
- -1.45,
- -1.37,
- -1.3,
- -1.23,
- -1.16,
- -1.09,
- -1.01,
- -0.94,
- -0.87,
- -0.79,
- -0.72,
- -0.64,
- -0.57,
- -0.5,
- -0.42,
- -0.35,
- -0.27,
- -0.2,
- -0.12,
- -0.05,
- 0.03,
- 0.1,
- 0.18,
- 0.25,
- 0.33,
- 0.4,
- 0.48,
- 0.55,
- 0.63,
- 0.7,
- 0.78,
- 0.85,
- 0.92,
- 1.0,
- 1.07,
- 1.14,
- 1.22,
- 1.29,
- 1.36,
- 1.43,
- 1.5,
- 1.57,
- 1.64,
- 1.71,
- 1.78,
- 1.85,
- 1.91,
- 1.98,
- 2.05,
- 2.11,
- 2.18,
- 2.24,
- 2.31,
- 2.37,
- 2.43,
- 2.49,
- 2.56,
- 2.62,
- 2.67,
- 2.73,
- 2.79,
- 2.85,
- 2.9,
- 2.96,
- 3.01,
- 3.07,
- 3.12,
- 3.17,
- 3.22,
- 3.27,
- 3.32,
- 3.37,
- 3.41,
- 3.46,
- 3.5,
- 3.54,
- 3.59,
- 3.63,
- 3.67,
- 3.71,
- 3.74,
- 3.78,
- 3.82,
- 3.85,
- 3.88,
- 3.92,
- 3.95,
- 3.98,
- 4.0,
- 4.03,
- 4.06,
- 4.08,
- 4.11,
- 4.13,
- 4.15,
- 4.17,
- 4.19,
- 4.2,
- 4.22,
- 4.23,
- 4.25,
- 4.26,
- 4.27,
- 4.28,
- 4.29,
- 4.29,
- 4.3,
- 4.3,
- 4.31,
- 4.31,
- 4.31,
- 4.31,
- 4.3,
- 4.3,
- 4.29,
- 4.29,
- 4.28,
- 4.27,
- 4.26,
- 4.25,
- 4.24,
- 4.22,
- 4.21,
- 4.19,
- 4.17,
- 4.15,
- 4.13,
- 4.11,
- 4.09,
- 4.06,
- 4.04,
- 4.01,
- 3.98,
- 3.95,
- 3.92,
- 3.89,
- 3.86,
- 3.82,
- 3.79,
- 3.75,
- 3.71,
- 3.68,
- 3.64,
- 3.6,
- 3.55,
- 3.51,
- 3.47,
- 3.42,
- 3.38,
- 3.33,
- 3.28,
- 3.23,
- 3.18,
- 3.13,
- 3.08,
- 3.02,
- 2.97,
- 2.92,
- 2.86,
- 2.8,
- 2.75,
- 2.69,
- 2.63,
- 2.57,
- 2.51,
- 2.45,
- 2.38,
- 2.32,
- 2.26,
- 2.19,
- 2.13,
- 2.06,
- 2.0,
- 1.93,
- 1.86,
- 1.79,
- 1.72,
- 1.66,
- 1.59,
- 1.52,
- 1.45,
- 1.37,
- 1.3,
- 1.23,
- 1.16,
- 1.09,
- 1.01,
- 0.94,
- 0.87,
- 0.79,
- 0.72,
- 0.64,
- 0.57,
- 0.5,
- 0.42,
- 0.35,
- 0.27,
- 0.2,
- 0.12,
- 0.05,
- -0.03,
- -0.1,
- -0.18,
- -0.25,
- -0.33,
- -0.4,
- -0.48,
- -0.55,
- -0.63,
- -0.7,
- -0.78,
- -0.85,
- -0.92,
- -1.0,
- -1.07,
- -1.14,
- -1.22,
- -1.29,
- -1.36,
- -1.43,
- -1.5,
- -1.57,
- -1.64,
- -1.71,
- -1.78,
- -1.85,
- -1.91,
- -1.98,
- -2.05,
- -2.11,
- -2.18,
- -2.24,
- -2.31,
- -2.37,
- -2.43,
- -2.49,
- -2.56,
- -2.62,
- -2.67,
- -2.73,
- -2.79,
- -2.85,
- -2.9,
- -2.96,
- -3.01,
- -3.07,
- -3.12,
- -3.17,
- -3.22,
- -3.27,
- -3.32,
- -3.37,
- -3.41,
- -3.46,
- -3.5,
- -3.54,
- -3.59,
- -3.63,
- -3.67,
- -3.71,
- -3.74,
- -3.78,
- -3.82,
- -3.85,
- -3.88,
- -3.92,
- -3.95,
- -3.98,
- -4.0,
- -4.03,
- -4.06,
- -4.08,
- -4.11,
- -4.13,
- -4.15,
- -4.17,
- -4.19,
- -4.2,
- -4.22,
- -4.23,
- -4.25,
- -4.26,
- -4.27,
- -4.28,
- -4.29,
- -4.29,
- -4.3,
- -4.3,
- -4.31,
- -4.31,
- -4.31,
- -4.31,
- -4.3,
- -4.3,
- -4.29,
- -4.29,
- -4.28,
- -4.27,
- -4.26,
- -4.25,
- -4.24,
- -4.22,
- -4.21,
- -4.19,
- -4.17,
- -4.15,
- -4.13,
- -4.11,
- -4.09,
- -4.06,
- -4.04,
- -4.01,
- -3.98,
- -3.95,
- -3.92,
- -3.89,
- -3.86,
- -3.82,
- -3.79,
- -3.75,
- -3.71,
- -3.68,
- -3.64,
- -3.6,
- -3.55,
- -3.51,
- -3.47,
- -3.42,
- -3.38,
- -3.33,
- -3.28,
- -3.23,
- -3.18,
- -3.13,
- -3.08,
- -3.02,
- -2.97,
- -2.92,
- -2.86,
- -2.8
- ]
- },
- {
- "header": {
- "discipline": 0,
- "disciplineName": "Meteorological products",
- "gribEdition": 2,
- "gribLength": 76936,
- "center": 7,
- "centerName": "US National Weather Service - NCEP(WMC)",
- "subcenter": 0,
- "refTime": "2016-04-30T06:00:00.000Z",
- "significanceOfRT": 1,
- "significanceOfRTName": "Start of forecast",
- "productStatus": 0,
- "productStatusName": "Operational products",
- "productType": 1,
- "productTypeName": "Forecast products",
- "productDefinitionTemplate": 0,
- "productDefinitionTemplateName": "Analysis/forecast at horizontal level/layer at a point in time",
- "parameterCategory": 2,
- "parameterCategoryName": "Momentum",
- "parameterNumber": 3,
- "parameterNumberName": "V-component_of_wind",
- "parameterUnit": "m.s-1",
- "genProcessType": 2,
- "genProcessTypeName": "Forecast",
- "forecastTime": 0,
- "surface1Type": 103,
- "surface1TypeName": "Specified height level above ground",
- "surface1Value": 10.0,
- "surface2Type": 255,
- "surface2TypeName": "Missing",
- "surface2Value": 0.0,
- "gridDefinitionTemplate": 0,
- "gridDefinitionTemplateName": "Latitude_Longitude",
- "numberPoints": 65160,
- "shape": 6,
- "shapeName": "Earth spherical with radius of 6,371,229.0 m",
- "gridUnits": "degrees",
- "resolution": 48,
- "winds": "true",
- "scanMode": 0,
- "nx": 360,
- "ny": 181,
- "basicAngle": 0,
- "subDivisions": 0,
- "lo1": 0.0,
- "la1": 90.0,
- "lo2": 359.0,
- "la2": -90.0,
- "dx": 1.0,
- "dy": 1.0
- },
- "data": [
- -1.36,
- -1.44,
- -1.52,
- -1.6,
- -1.68,
- -1.76,
- -1.83,
- -1.91,
- -1.98,
- -2.06,
- -2.13,
- -2.21,
- -2.28,
- -2.35,
- -2.42,
- -2.49,
- -2.56,
- -2.63,
- -2.7,
- -2.77,
- -2.84,
- -2.9,
- -2.97,
- -3.03,
- -3.09,
- -3.16,
- -3.22,
- -3.28,
- -3.34,
- -3.4,
- -3.45,
- -3.51,
- -3.57,
- -3.62,
- -3.67,
- -3.72,
- -3.77,
- -3.82,
- -3.87,
- -3.92,
- -3.97,
- -4.01,
- -4.05,
- -4.1,
- -4.14,
- -4.18,
- -4.22,
- -4.25,
- -4.29,
- -4.32,
- -4.36,
- -4.39,
- -4.42,
- -4.45,
- -4.48,
- -4.5,
- -4.53,
- -4.55,
- -4.58,
- -4.6,
- -4.62,
- -4.64,
- -4.65,
- -4.67,
- -4.68,
- -4.69,
- -4.71,
- -4.72,
- -4.72,
- -4.73,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.74,
- -4.73,
- -4.73,
- -4.72,
- -4.71,
- -4.7,
- -4.69,
- -4.68,
- -4.66,
- -4.65,
- -4.63,
- -4.61,
- -4.59,
- -4.57,
- -4.54,
- -4.52,
- -4.49,
- -4.47,
- -4.44,
- -4.41,
- -4.38,
- -4.34,
- -4.31,
- -4.27,
- -4.24,
- -4.2,
- -4.16,
- -4.12,
- -4.08,
- -4.04,
- -3.99,
- -3.95,
- -3.9,
- -3.85,
- -3.8,
- -3.75,
- -3.7,
- -3.65,
- -3.6,
- -3.54,
- -3.49,
- -3.43,
- -3.37,
- -3.31,
- -3.25,
- -3.19,
- -3.13,
- -3.07,
- -3.0,
- -2.94,
- -2.87,
- -2.81,
- -2.74,
- -2.67,
- -2.6,
- -2.53,
- -2.46,
- -2.39,
- -2.32,
- -2.25,
- -2.17,
- -2.1,
- -2.03,
- -1.95,
- -1.87,
- -1.8,
- -1.72,
- -1.64,
- -1.57,
- -1.49,
- -1.41,
- -1.33,
- -1.25,
- -1.17,
- -1.09,
- -1.01,
- -0.93,
- -0.85,
- -0.76,
- -0.68,
- -0.6,
- -0.52,
- -0.44,
- -0.35,
- -0.27,
- -0.19,
- -0.11,
- -0.02,
- 0.06,
- 0.14,
- 0.23,
- 0.31,
- 0.39,
- 0.47,
- 0.56,
- 0.64,
- 0.72,
- 0.8,
- 0.88,
- 0.96,
- 1.04,
- 1.13,
- 1.21,
- 1.29,
- 1.36,
- 1.44,
- 1.52,
- 1.6,
- 1.68,
- 1.76,
- 1.83,
- 1.91,
- 1.98,
- 2.06,
- 2.13,
- 2.21,
- 2.28,
- 2.35,
- 2.42,
- 2.49,
- 2.56,
- 2.63,
- 2.7,
- 2.77,
- 2.84,
- 2.9,
- 2.97,
- 3.03,
- 3.09,
- 3.16,
- 3.22,
- 3.28,
- 3.34,
- 3.4,
- 3.45,
- 3.51,
- 3.57,
- 3.62,
- 3.67,
- 3.72,
- 3.77,
- 3.82,
- 3.87,
- 3.92,
- 3.97,
- 4.01,
- 4.05,
- 4.1,
- 4.14,
- 4.18,
- 4.22,
- 4.25,
- 4.29,
- 4.32,
- 4.36,
- 4.39,
- 4.42,
- 4.45,
- 4.48,
- 4.5,
- 4.53,
- 4.55,
- 4.58,
- 4.6,
- 4.62,
- 4.64,
- 4.65,
- 4.67,
- 4.68,
- 4.69,
- 4.71,
- 4.72,
- 4.72,
- 4.73,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.74,
- 4.73,
- 4.73,
- 4.72,
- 4.71,
- 4.7,
- 4.69,
- 4.68,
- 4.66,
- 4.65,
- 4.63,
- 4.61,
- 4.59,
- 4.57,
- 4.54,
- 4.52,
- 4.49,
- 4.47,
- 4.44,
- 4.41,
- 4.38,
- 4.34,
- 4.31,
- 4.27,
- 4.24,
- 4.2,
- 4.16,
- 4.12,
- 4.08,
- 4.04,
- 3.99,
- 3.95,
- 3.9,
- 3.85,
- 3.8,
- 3.75,
- 3.7,
- 3.65,
- 3.6,
- 3.54,
- 3.49,
- 3.43,
- 3.37,
- 3.31,
- 3.25,
- 3.19,
- 3.13,
- 3.07,
- 3.0,
- 2.94,
- 2.87,
- 2.81,
- 2.74,
- 2.67,
- 2.6,
- 2.53,
- 2.46,
- 2.39,
- 2.32,
- 2.25,
- 2.17,
- 2.1,
- 2.03,
- 1.95,
- 1.87,
- 1.8,
- 1.72,
- 1.64,
- 1.57,
- 1.49,
- 1.41,
- 1.33,
- 1.25,
- 1.17,
- 1.09,
- 1.01,
- 0.93,
- 0.85,
- 0.76,
- 0.68,
- 0.6,
- 0.52,
- 0.44,
- 0.35,
- 0.27,
- 0.19,
- 0.11,
- 0.02,
- -0.06,
- -0.14,
- -0.23,
- -0.31,
- -0.39,
- -0.47,
- -0.56,
- -0.64,
- -0.72,
- -0.8,
- -0.88,
- -0.96,
- -1.04,
- -1.13,
- -1.21,
- -1.29,
- -1.16,
- -1.2,
- -1.25,
- -1.3,
- -1.35,
- -1.4,
- -1.45,
- -1.5,
- -1.54,
- -1.59,
- -1.65,
- -1.69,
- -1.75,
- -1.8,
- -1.85,
- -1.9,
- -1.95,
- -2.01,
- -2.06,
- -2.12,
- -2.17,
- -2.22,
- -2.28,
- -2.33,
- -2.39,
- -2.44,
- -2.49,
- -2.55,
- -2.6,
- -2.65,
- -2.71,
- -2.75,
- -2.81,
- -2.87,
- -2.93,
- -2.99,
- -3.04,
- -3.1,
- -3.16,
- -3.22,
- -3.27,
- -3.33,
- -3.39,
- -3.45,
- -3.5,
- -3.56,
- -3.61,
- -3.66,
- -3.71,
- -3.76,
- -3.81,
- -3.87,
- -3.92,
- -3.98,
- -4.03,
- -4.08,
- -4.13,
- -4.18,
- -4.23,
- -4.27,
- -4.31,
- -4.35,
- -4.39,
- -4.43,
- -4.47,
- -4.51,
- -4.55,
- -4.58,
- -4.62,
- -4.65,
- -4.69,
- -4.71,
- -4.75,
- -4.78,
- -4.8,
- -4.84,
- -4.86,
- -4.88,
- -4.9,
- -4.91,
- -4.93,
- -4.94,
- -4.94,
- -4.94,
- -4.94,
- -4.94,
- -4.94,
- -4.93,
- -4.93,
- -4.93,
- -4.93,
- -4.91,
- -4.89,
- -4.88,
- -4.86,
- -4.85,
- -4.82,
- -4.8,
- -4.77,
- -4.75,
- -4.71,
- -4.68,
- -4.64,
- -4.61,
- -4.57,
- -4.52,
- -4.48,
- -4.43,
- -4.38,
- -4.33,
- -4.28,
- -4.22,
- -4.16,
- -4.1,
- -4.04,
- -3.97,
- -3.91,
- -3.85,
- -3.77,
- -3.7,
- -3.62,
- -3.55,
- -3.47,
- -3.39,
- -3.3,
- -3.23,
- -3.14,
- -3.05,
- -2.96,
- -2.87,
- -2.79,
- -2.7,
- -2.61,
- -2.51,
- -2.42,
- -2.33,
- -2.23,
- -2.14,
- -2.04,
- -1.95,
- -1.85,
- -1.75,
- -1.65,
- -1.56,
- -1.46,
- -1.36,
- -1.26,
- -1.16,
- -1.06,
- -0.96,
- -0.86,
- -0.76,
- -0.66,
- -0.55,
- -0.46,
- -0.35,
- -0.25,
- -0.15,
- -0.05,
- 0.05,
- 0.15,
- 0.25,
- 0.35,
- 0.45,
- 0.55,
- 0.65,
- 0.74,
- 0.84,
- 0.94,
- 1.03,
- 1.13,
- 1.23,
- 1.32,
- 1.41,
- 1.5,
- 1.6,
- 1.69,
- 1.78,
- 1.87,
- 1.96,
- 2.04,
- 2.13,
- 2.21,
- 2.3,
- 2.38,
- 2.47,
- 2.55,
- 2.63,
- 2.71,
- 2.8,
- 2.87,
- 2.95,
- 3.02,
- 3.1,
- 3.17,
- 3.25,
- 3.32,
- 3.4,
- 3.46,
- 3.54,
- 3.6,
- 3.67,
- 3.73,
- 3.8,
- 3.86,
- 3.92,
- 3.98,
- 4.04,
- 4.09,
- 4.15,
- 4.2,
- 4.25,
- 4.29,
- 4.33,
- 4.37,
- 4.41,
- 4.44,
- 4.48,
- 4.51,
- 4.55,
- 4.58,
- 4.6,
- 4.63,
- 4.65,
- 4.67,
- 4.7,
- 4.71,
- 4.72,
- 4.74,
- 4.75,
- 4.76,
- 4.76,
- 4.76,
- 4.76,
- 4.76,
- 4.75,
- 4.75,
- 4.74,
- 4.73,
- 4.73,
- 4.71,
- 4.7,
- 4.68,
- 4.67,
- 4.65,
- 4.63,
- 4.6,
- 4.58,
- 4.55,
- 4.53,
- 4.5,
- 4.47,
- 4.44,
- 4.4,
- 4.37,
- 4.33,
- 4.29,
- 4.25,
- 4.21,
- 4.17,
- 4.12,
- 4.08,
- 4.03,
- 3.98,
- 3.94,
- 3.89,
- 3.84,
- 3.79,
- 3.74,
- 3.69,
- 3.64,
- 3.59,
- 3.53,
- 3.48,
- 3.43,
- 3.37,
- 3.32,
- 3.27,
- 3.21,
- 3.16,
- 3.1,
- 3.05,
- 2.99,
- 2.93,
- 2.88,
- 2.82,
- 2.76,
- 2.7,
- 2.64,
- 2.59,
- 2.53,
- 2.47,
- 2.41,
- 2.35,
- 2.29,
- 2.23,
- 2.17,
- 2.11,
- 2.05,
- 1.99,
- 1.93,
- 1.87,
- 1.81,
- 1.75,
- 1.69,
- 1.63,
- 1.57,
- 1.51,
- 1.45,
- 1.39,
- 1.34,
- 1.27,
- 1.22,
- 1.16,
- 1.11,
- 1.05,
- 0.99,
- 0.93,
- 0.87,
- 0.82,
- 0.76,
- 0.71,
- 0.66,
- 0.6,
- 0.55,
- 0.49,
- 0.45,
- 0.39,
- 0.34,
- 0.29,
- 0.24,
- 0.19,
- 0.14,
- 0.09,
- 0.04,
- 0.0,
- -0.05,
- -0.1,
- -0.15,
- -0.19,
- -0.24,
- -0.29,
- -0.33,
- -0.38,
- -0.42,
- -0.47,
- -0.52,
- -0.56,
- -0.6,
- -0.65,
- -0.7,
- -0.74,
- -0.79,
- -0.83,
- -0.88,
- -0.93,
- -0.97,
- -1.02,
- -1.06,
- -1.11,
- -0.91,
- -0.93,
- -0.96,
- -0.99,
- -1.02,
- -1.05,
- -1.08,
- -1.12,
- -1.15,
- -1.19,
- -1.22,
- -1.27,
- -1.3,
- -1.35,
- -1.39,
- -1.44,
- -1.48,
- -1.53,
- -1.58,
- -1.63,
- -1.68,
- -1.73,
- -1.79,
- -1.84,
- -1.9,
- -1.96,
- -2.01,
- -2.08,
- -2.13,
- -2.19,
- -2.25,
- -2.31,
- -2.38,
- -2.44,
- -2.5,
- -2.56,
- -2.62,
- -2.68,
- -2.74,
- -2.8,
- -2.86,
- -2.92,
- -2.98,
- -3.04,
- -3.09,
- -3.15,
- -3.2,
- -3.26,
- -3.31,
- -3.37,
- -3.43,
- -3.49,
- -3.55,
- -3.6,
- -3.66,
- -3.72,
- -3.78,
- -3.84,
- -3.89,
- -3.95,
- -4.0,
- -4.06,
- -4.11,
- -4.16,
- -4.21,
- -4.26,
- -4.31,
- -4.35,
- -4.39,
- -4.43,
- -4.47,
- -4.5,
- -4.53,
- -4.56,
- -4.59,
- -4.62,
- -4.64,
- -4.66,
- -4.68,
- -4.7,
- -4.72,
- -4.73,
- -4.75,
- -4.75,
- -4.76,
- -4.77,
- -4.77,
- -4.77,
- -4.77,
- -4.76,
- -4.76,
- -4.75,
- -4.74,
- -4.72,
- -4.7,
- -4.68,
- -4.66,
- -4.64,
- -4.62,
- -4.59,
- -4.57,
- -4.54,
- -4.52,
- -4.49,
- -4.45,
- -4.41,
- -4.36,
- -4.33,
- -4.29,
- -4.23,
- -4.17,
- -4.11,
- -4.04,
- -3.98,
- -3.89,
- -3.81,
- -3.73,
- -3.63,
- -3.54,
- -3.42,
- -3.3,
- -3.19,
- -3.1,
- -3.0,
- -2.89,
- -2.77,
- -2.66,
- -2.56,
- -2.46,
- -2.36,
- -2.25,
- -2.14,
- -2.03,
- -1.92,
- -1.8,
- -1.7,
- -1.59,
- -1.48,
- -1.36,
- -1.24,
- -1.12,
- -0.99,
- -0.87,
- -0.76,
- -0.64,
- -0.51,
- -0.39,
- -0.26,
- -0.13,
- 0.0,
- 0.13,
- 0.25,
- 0.37,
- 0.5,
- 0.63,
- 0.76,
- 0.87,
- 0.99,
- 1.1,
- 1.21,
- 1.32,
- 1.43,
- 1.55,
- 1.66,
- 1.75,
- 1.87,
- 1.97,
- 2.07,
- 2.16,
- 2.24,
- 2.31,
- 2.37,
- 2.42,
- 2.49,
- 2.56,
- 2.63,
- 2.69,
- 2.76,
- 2.83,
- 2.91,
- 2.99,
- 3.07,
- 3.15,
- 3.22,
- 3.3,
- 3.37,
- 3.42,
- 3.49,
- 3.55,
- 3.6,
- 3.65,
- 3.71,
- 3.76,
- 3.81,
- 3.85,
- 3.88,
- 3.94,
- 4.0,
- 4.07,
- 4.13,
- 4.19,
- 4.26,
- 4.31,
- 4.37,
- 4.42,
- 4.46,
- 4.5,
- 4.54,
- 4.58,
- 4.61,
- 4.63,
- 4.66,
- 4.69,
- 4.71,
- 4.73,
- 4.75,
- 4.77,
- 4.79,
- 4.83,
- 4.85,
- 4.87,
- 4.89,
- 4.9,
- 4.92,
- 4.94,
- 4.95,
- 4.95,
- 4.95,
- 4.94,
- 4.93,
- 4.92,
- 4.89,
- 4.87,
- 4.84,
- 4.81,
- 4.77,
- 4.72,
- 4.68,
- 4.63,
- 4.59,
- 4.53,
- 4.48,
- 4.43,
- 4.37,
- 4.31,
- 4.25,
- 4.19,
- 4.12,
- 4.05,
- 3.98,
- 3.91,
- 3.83,
- 3.75,
- 3.67,
- 3.58,
- 3.49,
- 3.4,
- 3.31,
- 3.22,
- 3.13,
- 3.04,
- 2.95,
- 2.86,
- 2.77,
- 2.67,
- 2.59,
- 2.5,
- 2.41,
- 2.33,
- 2.24,
- 2.15,
- 2.07,
- 1.98,
- 1.88,
- 1.8,
- 1.71,
- 1.62,
- 1.53,
- 1.44,
- 1.34,
- 1.25,
- 1.15,
- 1.05,
- 0.95,
- 0.86,
- 0.76,
- 0.66,
- 0.57,
- 0.47,
- 0.37,
- 0.28,
- 0.18,
- 0.09,
- -0.01,
- -0.09,
- -0.18,
- -0.26,
- -0.34,
- -0.42,
- -0.49,
- -0.56,
- -0.62,
- -0.68,
- -0.74,
- -0.79,
- -0.83,
- -0.87,
- -0.91,
- -0.94,
- -0.96,
- -0.99,
- -1.01,
- -1.02,
- -1.03,
- -1.04,
- -1.05,
- -1.05,
- -1.05,
- -1.04,
- -1.04,
- -1.03,
- -1.02,
- -1.01,
- -1.0,
- -0.99,
- -0.97,
- -0.96,
- -0.95,
- -0.93,
- -0.91,
- -0.9,
- -0.88,
- -0.87,
- -0.85,
- -0.83,
- -0.82,
- -0.81,
- -0.8,
- -0.79,
- -0.77,
- -0.77,
- -0.76,
- -0.76,
- -0.75,
- -0.75,
- -0.74,
- -0.74,
- -0.74,
- -0.74,
- -0.75,
- -0.75,
- -0.76,
- -0.77,
- -0.78,
- -0.79,
- -0.81,
- -0.83,
- -0.84,
- -0.86,
- -0.88,
- 0.64,
- 0.63,
- 0.61,
- 0.58,
- 0.55,
- 0.5,
- 0.44,
- 0.37,
- 0.3,
- 0.22,
- 0.14,
- 0.04,
- -0.05,
- -0.14,
- -0.24,
- -0.33,
- -0.42,
- -0.51,
- -0.6,
- -0.69,
- -0.78,
- -0.86,
- -0.95,
- -1.02,
- -1.09,
- -1.16,
- -1.25,
- -1.32,
- -1.4,
- -1.48,
- -1.56,
- -1.64,
- -1.73,
- -1.82,
- -1.91,
- -2.0,
- -2.08,
- -2.17,
- -2.25,
- -2.35,
- -2.43,
- -2.51,
- -2.58,
- -2.66,
- -2.74,
- -2.81,
- -2.9,
- -2.97,
- -3.04,
- -3.11,
- -3.2,
- -3.28,
- -3.38,
- -3.46,
- -3.53,
- -3.61,
- -3.72,
- -3.82,
- -3.9,
- -3.98,
- -4.08,
- -4.13,
- -4.19,
- -4.26,
- -4.33,
- -4.4,
- -4.46,
- -4.51,
- -4.56,
- -4.61,
- -4.66,
- -4.71,
- -4.77,
- -4.82,
- -4.84,
- -4.86,
- -4.88,
- -4.89,
- -4.88,
- -4.85,
- -4.83,
- -4.81,
- -4.79,
- -4.76,
- -4.74,
- -4.74,
- -4.73,
- -4.72,
- -4.71,
- -4.68,
- -4.66,
- -4.65,
- -4.65,
- -4.64,
- -4.61,
- -4.58,
- -4.56,
- -4.54,
- -4.52,
- -4.5,
- -4.46,
- -4.41,
- -4.36,
- -4.35,
- -4.32,
- -4.27,
- -4.22,
- -4.17,
- -4.12,
- -4.06,
- -4.0,
- -3.95,
- -3.87,
- -3.8,
- -3.73,
- -3.65,
- -3.57,
- -3.47,
- -3.37,
- -3.27,
- -3.18,
- -3.07,
- -2.97,
- -2.87,
- -2.76,
- -2.64,
- -2.52,
- -2.4,
- -2.29,
- -2.18,
- -2.06,
- -1.94,
- -1.82,
- -1.7,
- -1.61,
- -1.5,
- -1.41,
- -1.34,
- -1.27,
- -1.21,
- -1.17,
- -1.15,
- -1.12,
- -1.09,
- -1.07,
- -1.05,
- -1.01,
- -0.96,
- -0.88,
- -0.8,
- -0.67,
- -0.54,
- -0.35,
- -0.17,
- 0.05,
- 0.27,
- 0.49,
- 0.73,
- 0.96,
- 1.16,
- 1.35,
- 1.51,
- 1.66,
- 1.78,
- 1.87,
- 1.94,
- 2.01,
- 2.09,
- 2.17,
- 2.26,
- 2.33,
- 2.4,
- 2.5,
- 2.61,
- 2.72,
- 2.84,
- 2.99,
- 3.12,
- 3.26,
- 3.4,
- 3.54,
- 3.69,
- 3.83,
- 3.98,
- 4.12,
- 4.27,
- 4.41,
- 4.54,
- 4.68,
- 4.83,
- 4.98,
- 5.11,
- 5.2,
- 5.28,
- 5.35,
- 5.4,
- 5.43,
- 5.44,
- 5.45,
- 5.42,
- 5.37,
- 5.33,
- 5.28,
- 5.26,
- 5.23,
- 5.22,
- 5.22,
- 5.23,
- 5.26,
- 5.28,
- 5.3,
- 5.33,
- 5.36,
- 5.4,
- 5.43,
- 5.45,
- 5.45,
- 5.44,
- 5.43,
- 5.4,
- 5.37,
- 5.32,
- 5.26,
- 5.19,
- 5.13,
- 5.09,
- 5.04,
- 5.01,
- 4.97,
- 4.95,
- 4.91,
- 4.88,
- 4.83,
- 4.78,
- 4.71,
- 4.65,
- 4.57,
- 4.48,
- 4.38,
- 4.28,
- 4.18,
- 4.06,
- 3.95,
- 3.83,
- 3.71,
- 3.59,
- 3.46,
- 3.34,
- 3.21,
- 3.08,
- 2.95,
- 2.81,
- 2.67,
- 2.53,
- 2.39,
- 2.24,
- 2.09,
- 1.95,
- 1.81,
- 1.67,
- 1.53,
- 1.39,
- 1.26,
- 1.14,
- 1.01,
- 0.89,
- 0.77,
- 0.66,
- 0.54,
- 0.44,
- 0.32,
- 0.21,
- 0.11,
- -0.01,
- -0.11,
- -0.22,
- -0.33,
- -0.44,
- -0.55,
- -0.67,
- -0.78,
- -0.9,
- -1.01,
- -1.12,
- -1.23,
- -1.33,
- -1.44,
- -1.53,
- -1.62,
- -1.71,
- -1.79,
- -1.86,
- -1.93,
- -1.99,
- -2.04,
- -2.09,
- -2.12,
- -2.16,
- -2.19,
- -2.21,
- -2.23,
- -2.24,
- -2.25,
- -2.28,
- -2.3,
- -2.31,
- -2.33,
- -2.35,
- -2.37,
- -2.38,
- -2.36,
- -2.35,
- -2.37,
- -2.38,
- -2.37,
- -2.32,
- -2.27,
- -2.23,
- -2.21,
- -2.16,
- -2.12,
- -2.08,
- -2.04,
- -2.0,
- -1.96,
- -1.92,
- -1.88,
- -1.82,
- -1.77,
- -1.71,
- -1.65,
- -1.58,
- -1.51,
- -1.43,
- -1.35,
- -1.27,
- -1.18,
- -1.09,
- -1.01,
- -0.91,
- -0.82,
- -0.73,
- -0.63,
- -0.53,
- -0.44,
- -0.33,
- -0.24,
- -0.15,
- -0.05,
- 0.03,
- 0.12,
- 0.2,
- 0.28,
- 0.35,
- 0.42,
- 0.48,
- 0.53,
- 0.57,
- 0.6,
- 0.62,
- 0.94,
- 1.06,
- 1.17,
- 1.29,
- 1.39,
- 1.49,
- 1.58,
- 1.68,
- 1.76,
- 1.82,
- 1.88,
- 1.95,
- 1.99,
- 2.01,
- 2.0,
- 1.96,
- 1.9,
- 1.81,
- 1.67,
- 1.51,
- 1.32,
- 1.11,
- 0.89,
- 0.67,
- 0.45,
- 0.24,
- 0.05,
- -0.14,
- -0.32,
- -0.48,
- -0.63,
- -0.77,
- -0.89,
- -1.01,
- -1.13,
- -1.25,
- -1.36,
- -1.48,
- -1.6,
- -1.71,
- -1.83,
- -1.95,
- -2.06,
- -2.18,
- -2.29,
- -2.4,
- -2.5,
- -2.6,
- -2.71,
- -2.82,
- -2.94,
- -3.06,
- -3.18,
- -3.3,
- -3.42,
- -3.54,
- -3.66,
- -3.77,
- -3.89,
- -4.0,
- -4.11,
- -4.24,
- -4.36,
- -4.48,
- -4.6,
- -4.72,
- -4.83,
- -4.93,
- -5.03,
- -5.1,
- -5.18,
- -5.23,
- -5.27,
- -5.3,
- -5.3,
- -5.28,
- -5.24,
- -5.21,
- -5.14,
- -5.06,
- -4.96,
- -4.88,
- -4.83,
- -4.78,
- -4.74,
- -4.71,
- -4.68,
- -4.66,
- -4.65,
- -4.64,
- -4.63,
- -4.61,
- -4.6,
- -4.59,
- -4.56,
- -4.54,
- -4.52,
- -4.49,
- -4.45,
- -4.41,
- -4.37,
- -4.32,
- -4.26,
- -4.19,
- -4.1,
- -3.99,
- -3.92,
- -3.84,
- -3.75,
- -3.66,
- -3.57,
- -3.49,
- -3.41,
- -3.33,
- -3.28,
- -3.19,
- -3.11,
- -3.04,
- -2.96,
- -2.89,
- -2.82,
- -2.74,
- -2.65,
- -2.56,
- -2.49,
- -2.41,
- -2.33,
- -2.26,
- -2.17,
- -2.1,
- -2.03,
- -1.95,
- -1.86,
- -1.76,
- -1.66,
- -1.54,
- -1.42,
- -1.29,
- -1.15,
- -1.01,
- -0.86,
- -0.71,
- -0.57,
- -0.43,
- -0.29,
- -0.14,
- 0.01,
- 0.18,
- 0.37,
- 0.57,
- 0.78,
- 1.0,
- 1.22,
- 1.44,
- 1.66,
- 1.86,
- 2.04,
- 2.22,
- 2.37,
- 2.51,
- 2.62,
- 2.72,
- 2.8,
- 2.89,
- 2.96,
- 3.03,
- 3.1,
- 3.16,
- 3.21,
- 3.27,
- 3.31,
- 3.34,
- 3.37,
- 3.38,
- 3.39,
- 3.41,
- 3.43,
- 3.45,
- 3.48,
- 3.55,
- 3.66,
- 3.79,
- 3.94,
- 4.1,
- 4.29,
- 4.41,
- 4.49,
- 4.55,
- 4.56,
- 4.57,
- 4.6,
- 4.61,
- 4.65,
- 4.72,
- 4.83,
- 5.0,
- 5.18,
- 5.34,
- 5.51,
- 5.62,
- 5.67,
- 5.74,
- 5.78,
- 5.8,
- 5.8,
- 5.78,
- 5.76,
- 5.76,
- 5.75,
- 5.73,
- 5.7,
- 5.71,
- 5.71,
- 5.72,
- 5.75,
- 5.78,
- 5.81,
- 5.84,
- 5.87,
- 5.88,
- 5.88,
- 5.86,
- 5.82,
- 5.76,
- 5.68,
- 5.58,
- 5.48,
- 5.36,
- 5.23,
- 5.09,
- 4.96,
- 4.83,
- 4.71,
- 4.61,
- 4.51,
- 4.41,
- 4.3,
- 4.17,
- 4.03,
- 3.87,
- 3.69,
- 3.5,
- 3.31,
- 3.1,
- 2.9,
- 2.69,
- 2.48,
- 2.27,
- 2.06,
- 1.85,
- 1.64,
- 1.43,
- 1.22,
- 1.01,
- 0.81,
- 0.62,
- 0.43,
- 0.25,
- 0.09,
- -0.06,
- -0.2,
- -0.33,
- -0.45,
- -0.57,
- -0.68,
- -0.77,
- -0.87,
- -0.96,
- -1.05,
- -1.12,
- -1.21,
- -1.29,
- -1.36,
- -1.44,
- -1.53,
- -1.61,
- -1.71,
- -1.79,
- -1.89,
- -1.99,
- -2.08,
- -2.18,
- -2.28,
- -2.38,
- -2.47,
- -2.57,
- -2.68,
- -2.79,
- -2.9,
- -3.0,
- -3.09,
- -3.18,
- -3.26,
- -3.35,
- -3.43,
- -3.55,
- -3.68,
- -3.8,
- -3.99,
- -4.15,
- -4.25,
- -4.3,
- -4.3,
- -4.31,
- -4.29,
- -4.29,
- -4.32,
- -4.34,
- -4.42,
- -4.48,
- -4.48,
- -4.51,
- -4.5,
- -4.49,
- -4.49,
- -4.47,
- -4.45,
- -4.46,
- -4.41,
- -4.32,
- -4.24,
- -4.17,
- -4.11,
- -4.03,
- -3.96,
- -3.87,
- -3.77,
- -3.66,
- -3.55,
- -3.44,
- -3.33,
- -3.22,
- -3.1,
- -2.97,
- -2.84,
- -2.71,
- -2.58,
- -2.43,
- -2.28,
- -2.14,
- -1.98,
- -1.81,
- -1.65,
- -1.48,
- -1.32,
- -1.16,
- -1.0,
- -0.85,
- -0.7,
- -0.56,
- -0.42,
- -0.28,
- -0.14,
- 0.01,
- 0.14,
- 0.29,
- 0.42,
- 0.56,
- 0.69,
- 0.82,
- 2.63,
- 2.75,
- 2.84,
- 2.9,
- 2.95,
- 3.0,
- 3.05,
- 3.11,
- 3.09,
- 3.1,
- 3.13,
- 3.17,
- 3.18,
- 3.18,
- 3.08,
- 3.08,
- 3.08,
- 3.06,
- 3.04,
- 3.02,
- 3.01,
- 2.96,
- 2.87,
- 2.75,
- 2.58,
- 2.37,
- 2.12,
- 1.83,
- 1.52,
- 1.18,
- 0.85,
- 0.53,
- 0.22,
- -0.07,
- -0.31,
- -0.54,
- -0.75,
- -0.92,
- -1.09,
- -1.26,
- -1.42,
- -1.56,
- -1.69,
- -1.83,
- -1.96,
- -2.07,
- -2.19,
- -2.3,
- -2.43,
- -2.57,
- -2.72,
- -2.87,
- -3.04,
- -3.2,
- -3.36,
- -3.5,
- -3.64,
- -3.78,
- -3.91,
- -4.05,
- -4.19,
- -4.33,
- -4.47,
- -4.6,
- -4.72,
- -4.84,
- -4.97,
- -5.12,
- -5.26,
- -5.37,
- -5.41,
- -5.43,
- -5.42,
- -5.38,
- -5.33,
- -5.26,
- -5.19,
- -5.13,
- -5.06,
- -5.02,
- -4.99,
- -4.98,
- -4.99,
- -5.0,
- -4.98,
- -4.94,
- -4.9,
- -4.86,
- -4.83,
- -4.81,
- -4.8,
- -4.76,
- -4.72,
- -4.64,
- -4.57,
- -4.49,
- -4.42,
- -4.31,
- -4.21,
- -4.14,
- -4.07,
- -3.99,
- -3.91,
- -3.86,
- -3.81,
- -3.78,
- -3.78,
- -3.77,
- -3.76,
- -3.73,
- -3.73,
- -3.69,
- -3.63,
- -3.55,
- -3.44,
- -3.28,
- -3.09,
- -2.86,
- -2.6,
- -2.29,
- -1.94,
- -1.56,
- -1.16,
- -0.73,
- -0.28,
- 0.16,
- 0.58,
- 0.95,
- 1.28,
- 1.56,
- 1.78,
- 1.95,
- 2.1,
- 2.2,
- 2.28,
- 2.31,
- 2.32,
- 2.34,
- 2.34,
- 2.31,
- 2.3,
- 2.27,
- 2.24,
- 2.21,
- 2.2,
- 2.21,
- 2.19,
- 2.25,
- 2.27,
- 2.3,
- 2.33,
- 2.34,
- 2.36,
- 2.37,
- 2.39,
- 2.43,
- 2.51,
- 2.59,
- 2.67,
- 2.78,
- 2.84,
- 2.91,
- 2.97,
- 3.0,
- 2.99,
- 3.0,
- 2.98,
- 2.98,
- 2.96,
- 2.98,
- 3.01,
- 3.04,
- 3.11,
- 3.19,
- 3.28,
- 3.35,
- 3.41,
- 3.45,
- 3.46,
- 3.44,
- 3.37,
- 3.24,
- 3.09,
- 2.96,
- 2.87,
- 2.86,
- 2.97,
- 3.23,
- 3.66,
- 4.06,
- 4.41,
- 4.65,
- 4.77,
- 4.83,
- 4.82,
- 4.81,
- 4.81,
- 4.86,
- 4.96,
- 5.07,
- 5.2,
- 5.36,
- 5.53,
- 5.62,
- 5.71,
- 5.79,
- 5.85,
- 5.92,
- 6.0,
- 6.09,
- 6.18,
- 6.24,
- 6.29,
- 6.31,
- 6.29,
- 6.26,
- 6.23,
- 6.22,
- 6.2,
- 6.2,
- 6.22,
- 6.2,
- 6.12,
- 6.07,
- 6.0,
- 5.91,
- 5.79,
- 5.65,
- 5.48,
- 5.29,
- 5.09,
- 4.88,
- 4.67,
- 4.46,
- 4.27,
- 4.09,
- 3.91,
- 3.72,
- 3.52,
- 3.3,
- 3.06,
- 2.8,
- 2.52,
- 2.23,
- 1.93,
- 1.64,
- 1.34,
- 1.06,
- 0.77,
- 0.49,
- 0.21,
- -0.06,
- -0.32,
- -0.57,
- -0.8,
- -1.01,
- -1.2,
- -1.37,
- -1.51,
- -1.64,
- -1.75,
- -1.84,
- -1.92,
- -1.98,
- -2.02,
- -2.05,
- -2.07,
- -2.08,
- -2.09,
- -2.09,
- -2.1,
- -2.11,
- -2.13,
- -2.16,
- -2.21,
- -2.26,
- -2.32,
- -2.4,
- -2.5,
- -2.6,
- -2.71,
- -2.82,
- -2.94,
- -3.07,
- -3.25,
- -3.38,
- -3.51,
- -3.66,
- -3.83,
- -4.03,
- -4.26,
- -4.56,
- -4.82,
- -5.09,
- -5.3,
- -5.48,
- -5.63,
- -5.75,
- -5.87,
- -6.0,
- -6.11,
- -6.18,
- -6.25,
- -6.3,
- -6.33,
- -6.34,
- -6.34,
- -6.31,
- -6.28,
- -6.24,
- -6.21,
- -6.18,
- -6.14,
- -6.1,
- -5.99,
- -5.88,
- -5.76,
- -5.63,
- -5.54,
- -5.48,
- -5.34,
- -5.19,
- -5.06,
- -4.93,
- -4.8,
- -4.66,
- -4.5,
- -4.35,
- -4.2,
- -4.04,
- -3.89,
- -3.73,
- -3.56,
- -3.39,
- -3.2,
- -3.01,
- -2.81,
- -2.58,
- -2.34,
- -2.1,
- -1.83,
- -1.55,
- -1.27,
- -0.98,
- -0.71,
- -0.44,
- -0.19,
- 0.06,
- 0.3,
- 0.55,
- 0.8,
- 1.04,
- 1.26,
- 1.46,
- 1.67,
- 1.84,
- 2.02,
- 2.19,
- 2.36,
- 2.51,
- 5.03,
- 4.78,
- 4.63,
- 4.43,
- 4.28,
- 4.18,
- 4.15,
- 4.16,
- 4.16,
- 4.1,
- 4.1,
- 4.17,
- 4.14,
- 4.14,
- 4.16,
- 4.16,
- 4.1,
- 4.05,
- 4.01,
- 3.94,
- 3.87,
- 3.79,
- 3.7,
- 3.59,
- 3.51,
- 3.34,
- 3.17,
- 3.0,
- 2.83,
- 2.55,
- 2.24,
- 2.0,
- 1.63,
- 1.22,
- 0.84,
- 0.45,
- 0.11,
- -0.21,
- -0.49,
- -0.75,
- -0.99,
- -1.2,
- -1.39,
- -1.59,
- -1.76,
- -1.91,
- -2.03,
- -2.16,
- -2.29,
- -2.44,
- -2.6,
- -2.77,
- -2.96,
- -3.15,
- -3.33,
- -3.51,
- -3.68,
- -3.85,
- -4.02,
- -4.19,
- -4.33,
- -4.48,
- -4.61,
- -4.69,
- -4.78,
- -4.89,
- -5.01,
- -5.13,
- -5.21,
- -5.27,
- -5.31,
- -5.32,
- -5.32,
- -5.31,
- -5.29,
- -5.27,
- -5.25,
- -5.21,
- -5.14,
- -5.08,
- -5.02,
- -4.97,
- -4.93,
- -4.89,
- -4.9,
- -4.89,
- -4.9,
- -4.91,
- -4.92,
- -4.93,
- -4.88,
- -4.81,
- -4.75,
- -4.69,
- -4.65,
- -4.62,
- -4.6,
- -4.59,
- -4.59,
- -4.54,
- -4.44,
- -4.29,
- -4.12,
- -3.88,
- -3.61,
- -3.34,
- -3.05,
- -2.73,
- -2.45,
- -2.16,
- -1.9,
- -1.69,
- -1.48,
- -1.33,
- -1.21,
- -1.11,
- -1.03,
- -0.93,
- -0.83,
- -0.72,
- -0.61,
- -0.49,
- -0.37,
- -0.25,
- -0.13,
- 0.0,
- 0.12,
- 0.24,
- 0.36,
- 0.48,
- 0.59,
- 0.69,
- 0.79,
- 0.87,
- 0.95,
- 1.02,
- 1.09,
- 1.15,
- 1.22,
- 1.27,
- 1.34,
- 1.4,
- 1.42,
- 1.43,
- 1.46,
- 1.53,
- 1.59,
- 1.66,
- 1.72,
- 1.78,
- 1.85,
- 1.91,
- 1.98,
- 2.06,
- 2.14,
- 2.23,
- 2.32,
- 2.41,
- 2.48,
- 2.54,
- 2.6,
- 2.64,
- 2.66,
- 2.68,
- 2.69,
- 2.7,
- 2.7,
- 2.7,
- 2.71,
- 2.73,
- 2.76,
- 2.8,
- 2.82,
- 2.84,
- 2.84,
- 2.8,
- 2.75,
- 2.7,
- 2.66,
- 2.68,
- 2.78,
- 2.9,
- 3.06,
- 3.18,
- 3.22,
- 3.15,
- 2.99,
- 2.83,
- 2.76,
- 2.93,
- 3.23,
- 3.83,
- 4.45,
- 4.89,
- 5.11,
- 5.19,
- 5.15,
- 5.09,
- 5.01,
- 5.09,
- 5.28,
- 5.5,
- 5.73,
- 5.9,
- 6.08,
- 6.21,
- 6.32,
- 6.42,
- 6.49,
- 6.57,
- 6.68,
- 6.76,
- 6.74,
- 6.73,
- 6.7,
- 6.67,
- 6.64,
- 6.62,
- 6.61,
- 6.57,
- 6.5,
- 6.41,
- 6.31,
- 6.21,
- 6.1,
- 6.0,
- 5.85,
- 5.69,
- 5.5,
- 5.29,
- 5.06,
- 4.81,
- 4.54,
- 4.29,
- 4.03,
- 3.77,
- 3.5,
- 3.22,
- 2.92,
- 2.6,
- 2.26,
- 1.91,
- 1.55,
- 1.18,
- 0.8,
- 0.43,
- 0.07,
- -0.27,
- -0.61,
- -0.93,
- -1.25,
- -1.54,
- -1.82,
- -2.08,
- -2.31,
- -2.51,
- -2.67,
- -2.8,
- -2.89,
- -2.95,
- -2.99,
- -3.0,
- -2.98,
- -2.93,
- -2.87,
- -2.78,
- -2.68,
- -2.58,
- -2.48,
- -2.39,
- -2.34,
- -2.31,
- -2.3,
- -2.32,
- -2.33,
- -2.37,
- -2.42,
- -2.48,
- -2.53,
- -2.6,
- -2.66,
- -2.7,
- -2.8,
- -2.94,
- -3.01,
- -3.08,
- -3.3,
- -3.51,
- -3.74,
- -4.01,
- -4.29,
- -4.57,
- -4.93,
- -5.26,
- -5.59,
- -5.87,
- -6.14,
- -6.38,
- -6.59,
- -6.77,
- -6.91,
- -7.02,
- -7.09,
- -7.12,
- -7.09,
- -7.0,
- -6.86,
- -6.69,
- -6.53,
- -6.39,
- -6.27,
- -6.17,
- -6.1,
- -5.99,
- -5.9,
- -5.81,
- -5.69,
- -5.52,
- -5.3,
- -5.06,
- -4.78,
- -4.5,
- -4.24,
- -3.99,
- -3.75,
- -3.51,
- -3.28,
- -3.05,
- -2.83,
- -2.58,
- -2.28,
- -1.93,
- -1.53,
- -1.14,
- -0.79,
- -0.49,
- -0.21,
- 0.1,
- 0.43,
- 0.86,
- 1.35,
- 1.88,
- 2.44,
- 3.03,
- 3.56,
- 4.07,
- 4.46,
- 4.83,
- 5.05,
- 5.21,
- 5.37,
- 5.5,
- 5.59,
- 5.74,
- 5.8,
- 5.77,
- 5.67,
- 5.48,
- 5.42,
- 5.21,
- 7.01,
- 6.94,
- 6.93,
- 6.85,
- 6.65,
- 6.38,
- 6.03,
- 5.67,
- 5.33,
- 5.17,
- 5.06,
- 4.84,
- 4.63,
- 4.47,
- 4.34,
- 4.26,
- 4.15,
- 3.91,
- 3.85,
- 3.83,
- 3.8,
- 3.76,
- 3.72,
- 3.66,
- 3.59,
- 3.55,
- 3.45,
- 3.31,
- 3.18,
- 2.97,
- 2.76,
- 2.5,
- 2.14,
- 1.76,
- 1.36,
- 0.97,
- 0.59,
- 0.23,
- -0.11,
- -0.42,
- -0.73,
- -1.02,
- -1.33,
- -1.59,
- -1.77,
- -1.96,
- -2.19,
- -2.5,
- -2.77,
- -3.0,
- -3.22,
- -3.41,
- -3.58,
- -3.66,
- -3.8,
- -4.05,
- -4.25,
- -4.42,
- -4.56,
- -4.69,
- -4.84,
- -5.01,
- -5.16,
- -5.28,
- -5.35,
- -5.35,
- -5.38,
- -5.42,
- -5.44,
- -5.47,
- -5.48,
- -5.47,
- -5.46,
- -5.46,
- -5.44,
- -5.44,
- -5.4,
- -5.36,
- -5.32,
- -5.29,
- -5.29,
- -5.29,
- -5.29,
- -5.29,
- -5.27,
- -5.25,
- -5.21,
- -5.17,
- -5.13,
- -5.15,
- -5.19,
- -5.22,
- -5.29,
- -5.31,
- -5.32,
- -5.28,
- -5.07,
- -4.83,
- -4.5,
- -4.16,
- -3.82,
- -3.5,
- -3.22,
- -3.02,
- -2.83,
- -2.67,
- -2.49,
- -2.31,
- -2.13,
- -1.97,
- -1.81,
- -1.69,
- -1.56,
- -1.46,
- -1.37,
- -1.31,
- -1.26,
- -1.21,
- -1.15,
- -1.09,
- -1.01,
- -0.9,
- -0.79,
- -0.66,
- -0.55,
- -0.44,
- -0.36,
- -0.28,
- -0.24,
- -0.19,
- -0.15,
- -0.1,
- -0.05,
- 0.02,
- 0.07,
- 0.13,
- 0.19,
- 0.26,
- 0.31,
- 0.36,
- 0.41,
- 0.48,
- 0.58,
- 0.71,
- 0.85,
- 1.0,
- 1.15,
- 1.3,
- 1.44,
- 1.56,
- 1.68,
- 1.8,
- 1.9,
- 2.0,
- 2.09,
- 2.19,
- 2.27,
- 2.36,
- 2.43,
- 2.5,
- 2.56,
- 2.62,
- 2.67,
- 2.7,
- 2.72,
- 2.73,
- 2.73,
- 2.72,
- 2.71,
- 2.69,
- 2.66,
- 2.62,
- 2.58,
- 2.54,
- 2.5,
- 2.49,
- 2.49,
- 2.5,
- 2.47,
- 2.38,
- 2.19,
- 1.91,
- 1.67,
- 1.55,
- 1.62,
- 1.85,
- 2.16,
- 2.37,
- 2.44,
- 2.45,
- 2.61,
- 3.01,
- 3.73,
- 4.66,
- 5.29,
- 5.51,
- 5.45,
- 5.28,
- 5.15,
- 5.39,
- 5.68,
- 5.9,
- 6.04,
- 6.16,
- 6.4,
- 6.54,
- 6.64,
- 6.7,
- 6.78,
- 6.83,
- 6.88,
- 6.87,
- 6.75,
- 6.62,
- 6.57,
- 6.59,
- 6.59,
- 6.54,
- 6.49,
- 6.42,
- 6.36,
- 6.29,
- 6.25,
- 6.15,
- 6.03,
- 5.89,
- 5.71,
- 5.5,
- 5.29,
- 5.04,
- 4.81,
- 4.57,
- 4.3,
- 3.99,
- 3.65,
- 3.29,
- 2.9,
- 2.49,
- 2.08,
- 1.66,
- 1.22,
- 0.78,
- 0.33,
- -0.13,
- -0.58,
- -0.98,
- -1.36,
- -1.71,
- -2.03,
- -2.34,
- -2.63,
- -2.92,
- -3.17,
- -3.39,
- -3.58,
- -3.72,
- -3.82,
- -3.89,
- -3.92,
- -3.92,
- -3.89,
- -3.83,
- -3.76,
- -3.7,
- -3.65,
- -3.64,
- -3.65,
- -3.67,
- -3.7,
- -3.71,
- -3.71,
- -3.73,
- -3.73,
- -3.78,
- -3.88,
- -4.02,
- -4.06,
- -3.93,
- -3.46,
- -2.76,
- -2.04,
- -1.24,
- -0.54,
- -0.08,
- 0.21,
- 0.23,
- 0.07,
- 0.01,
- 0.15,
- 0.23,
- 0.02,
- -0.64,
- -1.5,
- -2.31,
- -3.11,
- -4.11,
- -5.3,
- -6.42,
- -7.24,
- -7.64,
- -7.71,
- -7.63,
- -7.45,
- -7.17,
- -6.79,
- -6.38,
- -6.0,
- -5.77,
- -5.65,
- -5.58,
- -5.46,
- -5.2,
- -4.67,
- -3.87,
- -2.95,
- -1.91,
- -0.79,
- -0.07,
- 0.27,
- 0.54,
- 0.83,
- 1.22,
- 1.7,
- 1.91,
- 1.64,
- 0.87,
- 0.18,
- -0.38,
- -0.75,
- -0.56,
- 0.16,
- 1.03,
- 1.59,
- 1.48,
- 1.34,
- 0.87,
- 0.28,
- 0.05,
- 0.14,
- 0.49,
- 1.07,
- 1.88,
- 3.0,
- 4.33,
- 5.56,
- 6.63,
- 7.54,
- 8.18,
- 8.6,
- 8.68,
- 8.7,
- 8.68,
- 8.69,
- 8.63,
- 8.38,
- 8.21,
- 7.9,
- 7.6,
- 7.28,
- 7.1,
- 7.69,
- 7.41,
- 7.14,
- 6.86,
- 6.53,
- 6.23,
- 5.99,
- 5.82,
- 5.65,
- 5.41,
- 5.14,
- 4.8,
- 4.45,
- 4.2,
- 4.09,
- 4.06,
- 4.01,
- 3.87,
- 3.72,
- 3.55,
- 3.44,
- 3.32,
- 3.17,
- 2.94,
- 2.75,
- 2.63,
- 2.53,
- 2.47,
- 2.52,
- 2.52,
- 2.52,
- 2.44,
- 2.29,
- 1.99,
- 1.54,
- 1.06,
- 0.61,
- 0.22,
- -0.14,
- -0.5,
- -0.86,
- -1.2,
- -1.52,
- -1.78,
- -2.0,
- -2.18,
- -2.39,
- -2.6,
- -2.82,
- -3.04,
- -3.27,
- -3.51,
- -3.72,
- -3.91,
- -4.11,
- -4.25,
- -4.29,
- -4.17,
- -4.04,
- -4.12,
- -4.45,
- -4.77,
- -4.98,
- -5.14,
- -5.32,
- -5.51,
- -5.61,
- -5.62,
- -5.61,
- -5.61,
- -5.67,
- -5.74,
- -5.81,
- -5.88,
- -5.89,
- -5.91,
- -5.93,
- -5.98,
- -6.03,
- -6.04,
- -6.03,
- -5.99,
- -5.92,
- -5.84,
- -5.77,
- -5.72,
- -5.74,
- -5.8,
- -5.88,
- -5.94,
- -6.0,
- -6.02,
- -5.95,
- -5.75,
- -5.35,
- -4.89,
- -4.36,
- -3.83,
- -3.4,
- -3.09,
- -2.97,
- -2.99,
- -3.03,
- -3.04,
- -2.98,
- -2.86,
- -2.74,
- -2.62,
- -2.53,
- -2.46,
- -2.41,
- -2.35,
- -2.27,
- -2.15,
- -1.96,
- -1.76,
- -1.55,
- -1.34,
- -1.16,
- -1.01,
- -0.9,
- -0.85,
- -0.83,
- -0.85,
- -0.87,
- -0.87,
- -0.85,
- -0.81,
- -0.76,
- -0.71,
- -0.65,
- -0.59,
- -0.52,
- -0.43,
- -0.34,
- -0.24,
- -0.16,
- -0.09,
- -0.01,
- 0.09,
- 0.21,
- 0.33,
- 0.46,
- 0.55,
- 0.62,
- 0.72,
- 0.83,
- 0.97,
- 1.13,
- 1.3,
- 1.46,
- 1.6,
- 1.76,
- 1.91,
- 2.06,
- 2.2,
- 2.34,
- 2.47,
- 2.58,
- 2.68,
- 2.76,
- 2.83,
- 2.87,
- 2.91,
- 2.93,
- 2.96,
- 2.97,
- 2.96,
- 2.95,
- 2.92,
- 2.89,
- 2.84,
- 2.78,
- 2.69,
- 2.59,
- 2.45,
- 2.3,
- 2.16,
- 2.07,
- 2.04,
- 2.02,
- 1.93,
- 1.7,
- 1.36,
- 1.01,
- 0.84,
- 0.91,
- 1.16,
- 1.37,
- 1.42,
- 1.38,
- 1.58,
- 2.3,
- 3.54,
- 4.59,
- 5.24,
- 5.3,
- 5.16,
- 5.18,
- 5.41,
- 5.64,
- 5.81,
- 5.93,
- 6.13,
- 6.42,
- 6.58,
- 6.55,
- 6.33,
- 6.23,
- 6.29,
- 6.31,
- 6.34,
- 6.37,
- 6.4,
- 6.44,
- 6.46,
- 6.48,
- 6.48,
- 6.44,
- 6.37,
- 6.27,
- 6.12,
- 5.96,
- 5.8,
- 5.62,
- 5.43,
- 5.27,
- 5.1,
- 4.93,
- 4.71,
- 4.46,
- 4.18,
- 3.87,
- 3.53,
- 3.14,
- 2.71,
- 2.23,
- 1.73,
- 1.21,
- 0.66,
- 0.11,
- -0.43,
- -0.94,
- -1.42,
- -1.85,
- -2.24,
- -2.59,
- -2.91,
- -3.19,
- -3.45,
- -3.69,
- -3.9,
- -4.1,
- -4.27,
- -4.41,
- -4.53,
- -4.6,
- -4.64,
- -4.65,
- -4.64,
- -4.65,
- -4.68,
- -4.76,
- -4.85,
- -4.94,
- -5.01,
- -5.11,
- -5.26,
- -5.57,
- -5.86,
- -5.92,
- -5.1,
- -4.04,
- -3.3,
- -2.31,
- -2.37,
- -2.28,
- -1.55,
- -0.87,
- -0.81,
- -1.33,
- -2.43,
- -3.47,
- -4.04,
- -4.67,
- -5.08,
- -5.71,
- -6.36,
- -6.85,
- -6.86,
- -6.85,
- -6.7,
- -6.31,
- -6.17,
- -6.64,
- -7.86,
- -9.67,
- -10.1,
- -10.84,
- -10.47,
- -9.61,
- -8.11,
- -6.78,
- -4.94,
- -3.47,
- -3.08,
- -3.01,
- -2.55,
- -1.38,
- 0.56,
- 2.3,
- 3.6,
- 3.41,
- 2.49,
- 1.79,
- 1.61,
- 2.7,
- 4.19,
- 5.13,
- 4.96,
- 3.99,
- 2.25,
- 0.19,
- -1.65,
- -2.74,
- -3.0,
- -3.65,
- -4.3,
- -4.99,
- -4.14,
- -1.89,
- 0.73,
- 2.25,
- 1.82,
- -0.09,
- -2.77,
- -4.31,
- -3.52,
- -0.96,
- 2.38,
- 5.95,
- 9.07,
- 11.34,
- 12.56,
- 12.9,
- 12.58,
- 12.05,
- 11.74,
- 11.49,
- 11.24,
- 10.89,
- 10.42,
- 9.97,
- 9.54,
- 9.19,
- 8.92,
- 8.68,
- 8.52,
- 8.23,
- 7.96,
- 7.48,
- 7.13,
- 6.87,
- 6.74,
- 6.46,
- 6.13,
- 5.84,
- 5.66,
- 5.49,
- 5.17,
- 4.79,
- 4.47,
- 4.21,
- 3.95,
- 3.6,
- 3.22,
- 2.85,
- 2.58,
- 2.45,
- 2.38,
- 2.25,
- 2.1,
- 1.98,
- 1.97,
- 1.99,
- 1.93,
- 1.82,
- 1.63,
- 1.42,
- 1.21,
- 1.03,
- 0.92,
- 0.88,
- 0.89,
- 0.87,
- 0.75,
- 0.52,
- 0.2,
- -0.18,
- -0.52,
- -0.79,
- -1.01,
- -1.25,
- -1.54,
- -1.84,
- -2.07,
- -2.26,
- -2.5,
- -2.72,
- -2.78,
- -2.66,
- -3.21,
- -4.22,
- -4.93,
- -4.89,
- -3.81,
- -3.05,
- -2.33,
- -2.33,
- -2.84,
- -4.15,
- -4.8,
- -5.59,
- -5.65,
- -5.65,
- -6.03,
- -6.78,
- -6.95,
- -6.84,
- -6.7,
- -6.66,
- -6.69,
- -6.81,
- -6.94,
- -7.09,
- -7.18,
- -7.13,
- -7.0,
- -6.87,
- -6.77,
- -6.77,
- -6.8,
- -6.77,
- -6.71,
- -6.67,
- -6.73,
- -6.8,
- -6.85,
- -6.79,
- -6.57,
- -6.26,
- -5.86,
- -5.42,
- -4.69,
- -3.78,
- -3.1,
- -2.85,
- -3.04,
- -3.4,
- -3.65,
- -3.73,
- -3.66,
- -3.44,
- -3.21,
- -3.01,
- -2.91,
- -2.9,
- -2.93,
- -2.95,
- -2.91,
- -2.83,
- -2.68,
- -2.49,
- -2.26,
- -2.05,
- -1.84,
- -1.65,
- -1.47,
- -1.27,
- -1.08,
- -0.9,
- -0.75,
- -0.65,
- -0.6,
- -0.6,
- -0.62,
- -0.63,
- -0.63,
- -0.58,
- -0.49,
- -0.36,
- -0.2,
- -0.05,
- 0.11,
- 0.27,
- 0.43,
- 0.57,
- 0.71,
- 0.82,
- 0.9,
- 1.02,
- 1.18,
- 1.34,
- 1.48,
- 1.61,
- 1.77,
- 1.98,
- 2.23,
- 2.44,
- 2.61,
- 2.68,
- 2.71,
- 2.64,
- 2.65,
- 2.74,
- 2.85,
- 2.95,
- 3.02,
- 3.08,
- 3.13,
- 3.18,
- 3.22,
- 3.29,
- 3.34,
- 3.38,
- 3.39,
- 3.38,
- 3.36,
- 3.32,
- 3.25,
- 3.18,
- 3.07,
- 2.96,
- 2.83,
- 2.69,
- 2.52,
- 2.35,
- 2.16,
- 1.95,
- 1.77,
- 1.65,
- 1.56,
- 1.47,
- 1.26,
- 0.93,
- 0.59,
- 0.39,
- 0.39,
- 0.41,
- 0.23,
- -0.07,
- -0.02,
- 0.9,
- 2.6,
- 4.13,
- 4.87,
- 4.82,
- 4.72,
- 4.89,
- 5.1,
- 5.55,
- 5.88,
- 6.03,
- 6.11,
- 6.11,
- 6.13,
- 5.77,
- 5.68,
- 5.69,
- 5.78,
- 5.87,
- 5.92,
- 5.96,
- 6.0,
- 6.03,
- 6.01,
- 5.93,
- 5.85,
- 5.76,
- 5.66,
- 5.54,
- 5.4,
- 5.26,
- 5.16,
- 5.04,
- 4.89,
- 4.73,
- 4.57,
- 4.4,
- 4.22,
- 4.01,
- 3.78,
- 3.49,
- 3.12,
- 2.68,
- 2.13,
- 1.52,
- 0.85,
- 0.17,
- -0.51,
- -1.14,
- -1.69,
- -2.16,
- -2.55,
- -2.88,
- -3.18,
- -3.43,
- -3.67,
- -3.89,
- -4.12,
- -4.32,
- -4.52,
- -4.69,
- -4.85,
- -4.95,
- -5.0,
- -5.02,
- -5.04,
- -5.09,
- -5.13,
- -5.13,
- -5.04,
- -4.86,
- -4.62,
- -4.13,
- -3.08,
- -1.79,
- -1.27,
- -2.73,
- -5.01,
- -5.56,
- -3.39,
- -1.6,
- -0.48,
- -0.02,
- 0.13,
- 0.12,
- 0.14,
- 0.11,
- 0.03,
- 0.25,
- 0.77,
- 0.64,
- -0.41,
- -1.42,
- -1.19,
- -0.45,
- -0.08,
- -0.96,
- -2.04,
- -3.45,
- -5.18,
- -6.65,
- -6.69,
- -6.33,
- -6.42,
- -6.91,
- -7.8,
- -7.56,
- -5.61,
- -3.43,
- -1.68,
- -0.35,
- 0.54,
- 0.62,
- 0.22,
- -0.22,
- -0.48,
- -0.54,
- -0.47,
- -0.35,
- -0.24,
- -0.11,
- -0.03,
- -0.01,
- 0.19,
- 1.14,
- 2.82,
- 4.6,
- 5.33,
- 4.54,
- 2.73,
- 0.56,
- -1.69,
- -3.7,
- -5.17,
- -5.44,
- -3.96,
- -1.15,
- 2.15,
- 4.81,
- 6.01,
- 6.37,
- 6.34,
- 5.77,
- 7.62,
- 9.57,
- 12.07,
- 11.29,
- 13.42,
- 15.25,
- 15.58,
- 14.99,
- 13.47,
- 12.08,
- 11.35,
- 10.81,
- 10.3,
- 9.84,
- 9.62,
- 9.51,
- 9.38,
- 9.19,
- 9.03,
- 8.93,
- 8.77,
- 8.45,
- 8.16,
- 7.95,
- 7.71,
- 7.38,
- 6.95,
- 6.26,
- 5.64,
- 5.35,
- 5.65,
- 5.8,
- 5.53,
- 5.41,
- 5.71,
- 5.92,
- 5.2,
- 3.65,
- 2.21,
- 1.68,
- 1.9,
- 2.32,
- 2.74,
- 2.54,
- 2.02,
- 1.59,
- 1.44,
- 1.51,
- 1.68,
- 1.07,
- -0.25,
- -0.73,
- -0.04,
- 1.25,
- 1.95,
- 1.55,
- 0.58,
- -0.28,
- -0.84,
- -1.16,
- -1.38,
- -1.51,
- -1.46,
- -1.25,
- -1.02,
- -0.96,
- -1.24,
- -1.78,
- -2.36,
- -2.82,
- -3.16,
- -3.42,
- -3.55,
- -3.44,
- -3.28,
- -3.0,
- -3.49,
- -4.3,
- -5.03,
- -5.64,
- -5.91,
- -5.45,
- -5.0,
- -4.55,
- -4.43,
- -4.89,
- -5.4,
- -5.77,
- -6.21,
- -6.6,
- -6.84,
- -7.05,
- -7.33,
- -7.55,
- -7.66,
- -7.72,
- -7.76,
- -7.79,
- -7.82,
- -7.83,
- -7.76,
- -7.62,
- -7.46,
- -7.34,
- -7.23,
- -7.11,
- -6.96,
- -6.8,
- -6.67,
- -6.57,
- -6.45,
- -6.33,
- -6.17,
- -6.09,
- -6.18,
- -6.41,
- -6.18,
- -5.05,
- -3.05,
- -1.29,
- -1.32,
- -3.01,
- -4.85,
- -4.84,
- -4.23,
- -4.08,
- -3.96,
- -3.6,
- -3.24,
- -3.11,
- -3.12,
- -3.15,
- -3.15,
- -3.11,
- -3.01,
- -2.88,
- -2.72,
- -2.57,
- -2.45,
- -2.32,
- -2.13,
- -1.88,
- -1.63,
- -1.41,
- -1.29,
- -1.23,
- -1.2,
- -1.18,
- -1.16,
- -1.12,
- -1.06,
- -0.99,
- -0.9,
- -0.8,
- -0.67,
- -0.52,
- -0.35,
- -0.17,
- 0.01,
- 0.2,
- 0.39,
- 0.58,
- 0.78,
- 0.97,
- 1.15,
- 1.33,
- 1.52,
- 1.64,
- 1.8,
- 1.98,
- 2.09,
- 2.2,
- 2.31,
- 2.46,
- 2.6,
- 2.75,
- 2.88,
- 3.02,
- 3.17,
- 3.37,
- 3.38,
- 3.44,
- 3.5,
- 3.58,
- 3.62,
- 3.63,
- 3.63,
- 3.6,
- 3.58,
- 3.58,
- 3.6,
- 3.6,
- 3.59,
- 3.55,
- 3.5,
- 3.44,
- 3.35,
- 3.23,
- 3.1,
- 2.93,
- 2.73,
- 2.51,
- 2.27,
- 2.03,
- 1.78,
- 1.51,
- 1.28,
- 1.1,
- 0.95,
- 0.72,
- 0.37,
- -0.01,
- -0.23,
- -0.23,
- -0.27,
- -0.65,
- -1.15,
- -0.77,
- 1.14,
- 3.38,
- 4.53,
- 4.45,
- 4.23,
- 4.27,
- 4.59,
- 4.95,
- 5.43,
- 5.65,
- 5.36,
- 4.8,
- 4.7,
- 4.8,
- 4.9,
- 4.98,
- 5.03,
- 5.07,
- 5.09,
- 5.08,
- 5.06,
- 5.03,
- 5.0,
- 4.97,
- 4.94,
- 4.9,
- 4.83,
- 4.72,
- 4.58,
- 4.44,
- 4.28,
- 4.11,
- 3.93,
- 3.75,
- 3.57,
- 3.42,
- 3.3,
- 3.22,
- 3.14,
- 3.04,
- 2.87,
- 2.56,
- 2.06,
- 1.32,
- 0.47,
- -0.4,
- -1.21,
- -1.92,
- -2.48,
- -2.9,
- -3.18,
- -3.42,
- -3.64,
- -3.84,
- -4.03,
- -4.22,
- -4.4,
- -4.58,
- -4.75,
- -4.93,
- -5.09,
- -5.17,
- -5.22,
- -5.29,
- -5.4,
- -5.49,
- -5.51,
- -5.53,
- -6.16,
- -7.56,
- -8.57,
- -7.92,
- -5.89,
- -3.91,
- -3.87,
- -5.14,
- -5.4,
- -5.15,
- -5.01,
- -3.95,
- -3.5,
- -1.73,
- -0.22,
- 0.27,
- -0.19,
- -2.28,
- -4.08,
- -3.93,
- -2.93,
- -2.34,
- -2.44,
- -2.3,
- -1.71,
- -1.25,
- -0.55,
- -0.69,
- -3.06,
- -6.96,
- -9.9,
- -10.09,
- -7.86,
- -5.0,
- -3.66,
- -4.26,
- -6.56,
- -8.0,
- -7.31,
- -4.6,
- -0.51,
- 3.07,
- 4.95,
- 5.24,
- 5.11,
- 5.25,
- 5.53,
- 5.61,
- 5.35,
- 5.01,
- 5.0,
- 5.62,
- 6.56,
- 7.29,
- 7.49,
- 7.05,
- 6.34,
- 5.6,
- 5.18,
- 5.19,
- 5.63,
- 6.22,
- 6.53,
- 6.31,
- 5.61,
- 4.15,
- 2.29,
- -0.03,
- -1.36,
- -0.67,
- 1.87,
- 4.99,
- 7.41,
- 8.48,
- 8.45,
- 8.03,
- 7.07,
- 5.8,
- 3.56,
- 2.13,
- 3.29,
- 6.26,
- 8.4,
- 8.92,
- 9.01,
- 9.02,
- 8.97,
- 8.53,
- 8.27,
- 8.29,
- 8.6,
- 8.9,
- 8.88,
- 8.69,
- 8.43,
- 8.28,
- 8.23,
- 8.0,
- 7.68,
- 5.52,
- 5.53,
- 5.27,
- 4.82,
- 4.32,
- 3.77,
- 3.29,
- 3.14,
- 3.41,
- 3.94,
- 3.86,
- 2.78,
- 1.24,
- 0.39,
- 0.34,
- 1.12,
- 2.19,
- 1.81,
- 0.6,
- 0.24,
- 0.87,
- 1.53,
- 1.76,
- 1.71,
- 1.79,
- 1.81,
- 1.63,
- 1.34,
- 1.01,
- 0.6,
- 0.14,
- -0.37,
- -0.87,
- -1.35,
- -1.98,
- -2.54,
- -2.69,
- -2.38,
- -1.94,
- -1.76,
- -1.83,
- -2.04,
- -2.32,
- -2.53,
- -2.7,
- -2.9,
- -3.16,
- -3.43,
- -3.69,
- -3.91,
- -4.07,
- -4.28,
- -4.56,
- -4.9,
- -5.26,
- -5.61,
- -5.87,
- -6.05,
- -6.25,
- -6.63,
- -6.85,
- -7.18,
- -8.11,
- -8.51,
- -8.15,
- -8.38,
- -8.88,
- -8.77,
- -8.58,
- -8.53,
- -8.52,
- -8.47,
- -8.26,
- -8.03,
- -7.79,
- -7.51,
- -7.25,
- -7.1,
- -7.0,
- -6.89,
- -6.73,
- -6.51,
- -6.29,
- -6.14,
- -6.03,
- -5.97,
- -5.96,
- -5.98,
- -6.01,
- -5.96,
- -5.84,
- -5.92,
- -6.2,
- -5.91,
- -4.6,
- -2.5,
- -1.53,
- -1.91,
- -3.26,
- -4.85,
- -4.87,
- -3.57,
- -2.89,
- -2.61,
- -2.65,
- -3.19,
- -3.6,
- -3.51,
- -3.26,
- -3.13,
- -3.02,
- -2.89,
- -2.78,
- -2.73,
- -2.75,
- -2.79,
- -2.78,
- -2.62,
- -2.3,
- -1.96,
- -1.71,
- -1.56,
- -1.44,
- -1.35,
- -1.29,
- -1.24,
- -1.21,
- -1.16,
- -1.09,
- -0.98,
- -0.85,
- -0.71,
- -0.55,
- -0.35,
- -0.14,
- 0.08,
- 0.32,
- 0.56,
- 0.84,
- 1.12,
- 1.4,
- 1.66,
- 1.91,
- 2.15,
- 2.33,
- 2.48,
- 2.53,
- 2.56,
- 2.68,
- 2.86,
- 3.06,
- 3.25,
- 3.39,
- 3.48,
- 3.47,
- 3.4,
- 3.42,
- 3.52,
- 3.62,
- 3.71,
- 3.77,
- 3.81,
- 3.78,
- 3.72,
- 3.64,
- 3.59,
- 3.55,
- 3.55,
- 3.52,
- 3.49,
- 3.43,
- 3.36,
- 3.25,
- 3.11,
- 2.94,
- 2.72,
- 2.47,
- 2.19,
- 1.9,
- 1.6,
- 1.31,
- 1.02,
- 0.73,
- 0.47,
- 0.24,
- -0.06,
- -0.47,
- -0.9,
- -1.16,
- -1.24,
- -1.52,
- -2.18,
- -2.22,
- -0.4,
- 2.51,
- 3.84,
- 3.6,
- 3.12,
- 3.28,
- 3.78,
- 4.11,
- 4.17,
- 3.93,
- 3.82,
- 3.74,
- 3.69,
- 3.71,
- 3.79,
- 3.9,
- 3.92,
- 3.9,
- 3.88,
- 3.88,
- 3.88,
- 3.88,
- 3.86,
- 3.84,
- 3.81,
- 3.78,
- 3.75,
- 3.72,
- 3.65,
- 3.57,
- 3.47,
- 3.33,
- 3.16,
- 2.93,
- 2.68,
- 2.45,
- 2.24,
- 2.04,
- 1.85,
- 1.76,
- 1.77,
- 1.74,
- 1.7,
- 1.42,
- 0.83,
- 0.03,
- -0.78,
- -1.45,
- -2.01,
- -2.48,
- -2.92,
- -3.31,
- -3.62,
- -3.88,
- -4.08,
- -4.22,
- -4.31,
- -4.41,
- -4.56,
- -4.67,
- -4.74,
- -4.8,
- -4.84,
- -4.72,
- -4.36,
- -4.44,
- -4.91,
- -5.54,
- -5.87,
- -5.99,
- -6.05,
- -5.47,
- -3.93,
- -1.59,
- 0.72,
- 1.9,
- 0.68,
- -2.2,
- -3.65,
- -2.25,
- -1.26,
- -1.09,
- -2.49,
- -2.65,
- -2.93,
- -1.47,
- -0.04,
- 0.42,
- -0.18,
- -0.4,
- 0.31,
- 0.34,
- -1.78,
- -5.39,
- -8.04,
- -9.0,
- -8.29,
- -6.77,
- -5.06,
- -3.53,
- -2.55,
- -1.91,
- -1.71,
- -1.98,
- -1.71,
- 0.02,
- 2.47,
- 4.49,
- 5.51,
- 6.0,
- 6.35,
- 6.65,
- 7.01,
- 7.51,
- 7.89,
- 7.78,
- 7.53,
- 7.54,
- 7.81,
- 7.96,
- 7.79,
- 7.52,
- 7.37,
- 7.25,
- 6.9,
- 6.3,
- 5.61,
- 5.11,
- 4.93,
- 4.88,
- 4.7,
- 4.37,
- 4.2,
- 4.29,
- 4.56,
- 5.03,
- 6.0,
- 7.58,
- 9.27,
- 10.58,
- 11.37,
- 11.92,
- 12.24,
- 11.64,
- 9.47,
- 6.71,
- 5.85,
- 6.88,
- 9.93,
- 9.86,
- 9.08,
- 8.77,
- 8.65,
- 8.37,
- 8.12,
- 8.13,
- 8.35,
- 8.66,
- 8.78,
- 8.68,
- 8.54,
- 8.46,
- 8.36,
- 7.99,
- 7.18,
- 6.16,
- 5.52,
- 4.82,
- 4.39,
- 3.93,
- 3.62,
- 3.76,
- 3.93,
- 3.95,
- 3.87,
- 3.62,
- 3.15,
- 2.59,
- 2.21,
- 1.92,
- 1.67,
- 1.26,
- 0.8,
- 0.26,
- -0.23,
- -0.21,
- 1.18,
- 3.37,
- 3.16,
- 1.77,
- 0.66,
- 0.25,
- 0.57,
- 1.24,
- 1.59,
- 1.46,
- 1.11,
- 0.62,
- -0.05,
- -0.74,
- -1.19,
- -1.54,
- -1.86,
- -2.19,
- -2.51,
- -2.72,
- -2.69,
- -2.51,
- -2.7,
- -3.19,
- -3.77,
- -4.24,
- -4.67,
- -5.06,
- -5.42,
- -5.75,
- -6.05,
- -6.24,
- -6.23,
- -6.59,
- -6.99,
- -7.43,
- -7.81,
- -8.06,
- -8.26,
- -8.52,
- -8.84,
- -9.14,
- -9.38,
- -9.54,
- -9.65,
- -9.78,
- -9.96,
- -10.17,
- -10.33,
- -10.37,
- -10.27,
- -10.1,
- -9.92,
- -9.58,
- -8.95,
- -7.41,
- -6.91,
- -6.78,
- -6.72,
- -6.53,
- -6.27,
- -6.04,
- -5.86,
- -5.69,
- -5.59,
- -5.5,
- -5.48,
- -5.55,
- -5.74,
- -6.04,
- -6.35,
- -6.51,
- -6.12,
- -4.87,
- -3.24,
- -1.99,
- -2.07,
- -3.13,
- -3.92,
- -3.64,
- -2.35,
- -0.73,
- 0.29,
- 0.17,
- -0.9,
- -2.28,
- -3.33,
- -3.82,
- -3.83,
- -3.59,
- -3.28,
- -3.15,
- -3.18,
- -3.29,
- -3.4,
- -3.47,
- -3.48,
- -3.38,
- -3.06,
- -2.51,
- -1.82,
- -1.2,
- -0.84,
- -0.78,
- -0.89,
- -1.01,
- -0.94,
- -0.66,
- -0.22,
- 0.29,
- 0.72,
- 1.07,
- 1.4,
- 1.71,
- 1.99,
- 2.19,
- 2.33,
- 2.44,
- 2.54,
- 2.71,
- 3.0,
- 3.28,
- 3.51,
- 3.66,
- 3.66,
- 3.5,
- 3.3,
- 3.08,
- 3.09,
- 3.12,
- 3.22,
- 3.31,
- 3.35,
- 3.39,
- 3.42,
- 3.5,
- 3.61,
- 3.61,
- 3.63,
- 3.65,
- 3.7,
- 3.74,
- 3.91,
- 4.05,
- 4.01,
- 3.87,
- 3.73,
- 3.64,
- 3.56,
- 3.51,
- 3.47,
- 3.42,
- 3.35,
- 3.24,
- 3.07,
- 2.87,
- 2.64,
- 2.35,
- 2.03,
- 1.65,
- 1.26,
- 0.88,
- 0.49,
- 0.11,
- -0.24,
- -0.58,
- -0.9,
- -1.3,
- -1.77,
- -2.12,
- -2.24,
- -2.44,
- -3.16,
- -3.39,
- -1.53,
- 1.47,
- 2.62,
- 2.17,
- 1.78,
- 2.13,
- 2.67,
- 3.06,
- 3.16,
- 2.91,
- 2.68,
- 2.59,
- 2.56,
- 2.56,
- 2.56,
- 2.56,
- 2.49,
- 2.48,
- 2.5,
- 2.52,
- 2.53,
- 2.54,
- 2.59,
- 2.64,
- 2.65,
- 2.64,
- 2.57,
- 2.45,
- 2.32,
- 2.21,
- 2.11,
- 2.04,
- 2.03,
- 2.04,
- 2.03,
- 1.98,
- 1.88,
- 1.73,
- 1.54,
- 1.35,
- 1.26,
- 1.36,
- 1.63,
- 1.51,
- 0.87,
- 0.52,
- 0.21,
- -0.26,
- -0.88,
- -1.53,
- -2.09,
- -2.56,
- -2.95,
- -3.26,
- -3.41,
- -3.5,
- -3.79,
- -4.01,
- -4.1,
- -4.13,
- -4.17,
- -4.21,
- -4.27,
- -4.15,
- -3.68,
- -3.42,
- -3.74,
- -4.14,
- -4.32,
- -4.23,
- -3.75,
- -3.09,
- -2.85,
- -3.32,
- -3.42,
- -2.85,
- -2.11,
- -0.54,
- 1.67,
- 3.32,
- 2.95,
- 1.63,
- 0.22,
- -0.22,
- -0.82,
- -2.27,
- -4.49,
- -4.71,
- -3.63,
- -2.63,
- -3.4,
- -7.81,
- -14.71,
- -16.58,
- -13.41,
- -6.59,
- -3.34,
- -1.23,
- 0.61,
- 2.42,
- 2.99,
- 3.18,
- 4.36,
- 5.91,
- 6.96,
- 7.53,
- 8.03,
- 8.45,
- 8.55,
- 8.16,
- 7.8,
- 7.61,
- 7.35,
- 7.01,
- 6.75,
- 6.62,
- 6.62,
- 6.83,
- 7.16,
- 7.43,
- 7.37,
- 6.93,
- 6.33,
- 5.84,
- 5.49,
- 5.22,
- 4.9,
- 4.51,
- 4.09,
- 3.85,
- 3.78,
- 3.87,
- 4.02,
- 4.18,
- 4.56,
- 5.36,
- 6.41,
- 7.33,
- 7.79,
- 7.78,
- 7.52,
- 6.48,
- 3.51,
- 0.39,
- 0.81,
- 3.61,
- 5.58,
- 5.68,
- 6.05,
- 7.2,
- 7.65,
- 7.28,
- 6.95,
- 6.82,
- 6.83,
- 7.2,
- 7.75,
- 7.88,
- 7.84,
- 7.5,
- 6.84,
- 5.91,
- 5.29,
- 5.12,
- 5.56,
- 5.47,
- 5.17,
- 3.3,
- 3.22,
- 3.2,
- 3.16,
- 3.06,
- 2.94,
- 2.84,
- 2.71,
- 2.63,
- 2.58,
- 2.54,
- 2.66,
- 3.16,
- 3.56,
- 3.04,
- 1.29,
- 0.29,
- 0.72,
- 2.73,
- 4.88,
- 5.16,
- 4.12,
- 3.16,
- 2.4,
- 2.15,
- 2.11,
- 1.79,
- 1.43,
- 1.09,
- 0.74,
- 0.31,
- -0.2,
- -0.77,
- -1.36,
- -1.91,
- -2.43,
- -2.85,
- -3.12,
- -3.25,
- -3.27,
- -3.22,
- -3.22,
- -3.51,
- -4.13,
- -4.73,
- -5.09,
- -5.33,
- -5.55,
- -5.79,
- -6.04,
- -6.29,
- -6.51,
- -6.69,
- -6.89,
- -7.1,
- -7.36,
- -7.64,
- -7.87,
- -8.05,
- -8.19,
- -8.32,
- -8.52,
- -8.78,
- -9.07,
- -9.12,
- -8.71,
- -7.92,
- -7.47,
- -8.52,
- -10.04,
- -10.33,
- -10.13,
- -9.97,
- -9.41,
- -8.04,
- -7.16,
- -6.71,
- -6.51,
- -6.32,
- -6.02,
- -5.76,
- -5.59,
- -5.43,
- -5.28,
- -5.14,
- -5.16,
- -5.4,
- -5.77,
- -6.11,
- -6.12,
- -5.86,
- -5.17,
- -4.34,
- -3.88,
- -4.08,
- -4.6,
- -4.61,
- -3.57,
- -2.67,
- -2.27,
- -2.39,
- -2.58,
- -2.45,
- -2.18,
- -2.14,
- -2.14,
- -2.0,
- -1.89,
- -1.73,
- -1.64,
- -1.84,
- -2.31,
- -2.85,
- -3.23,
- -3.32,
- -3.05,
- -2.46,
- -1.65,
- -0.9,
- -0.42,
- -0.19,
- -0.13,
- -0.16,
- -0.15,
- 0.09,
- 0.7,
- 1.52,
- 2.14,
- 2.36,
- 2.26,
- 2.07,
- 1.98,
- 1.99,
- 2.0,
- 1.97,
- 1.93,
- 2.05,
- 2.34,
- 2.66,
- 2.88,
- 2.94,
- 2.92,
- 2.94,
- 2.88,
- 2.75,
- 2.71,
- 2.64,
- 2.64,
- 2.86,
- 3.07,
- 3.09,
- 2.99,
- 2.91,
- 3.0,
- 3.14,
- 3.29,
- 3.37,
- 3.34,
- 3.44,
- 3.72,
- 4.16,
- 4.62,
- 4.91,
- 5.0,
- 4.74,
- 4.3,
- 3.94,
- 3.73,
- 3.63,
- 3.51,
- 3.39,
- 3.28,
- 3.15,
- 3.0,
- 2.82,
- 2.58,
- 2.28,
- 1.89,
- 1.42,
- 0.91,
- 0.43,
- -0.04,
- -0.52,
- -1.03,
- -1.49,
- -1.89,
- -2.26,
- -2.64,
- -2.92,
- -3.0,
- -3.14,
- -3.73,
- -3.63,
- -1.41,
- 0.97,
- 1.03,
- 0.23,
- 0.31,
- 0.92,
- 1.29,
- 1.49,
- 1.9,
- 2.14,
- 1.92,
- 1.63,
- 1.46,
- 1.3,
- 1.14,
- 1.05,
- 1.04,
- 1.09,
- 1.21,
- 1.32,
- 1.33,
- 1.21,
- 1.14,
- 1.19,
- 1.35,
- 1.44,
- 1.22,
- 0.99,
- 0.97,
- 0.96,
- 0.91,
- 0.87,
- 0.87,
- 0.87,
- 0.88,
- 0.9,
- 0.91,
- 0.9,
- 0.9,
- 0.91,
- 0.9,
- 0.89,
- 0.95,
- 1.08,
- 0.75,
- 0.09,
- -0.08,
- 0.02,
- 0.07,
- 0.12,
- 0.07,
- -0.36,
- -0.96,
- -1.55,
- -2.08,
- -2.41,
- -2.6,
- -2.74,
- -2.89,
- -3.11,
- -3.23,
- -3.29,
- -3.36,
- -3.29,
- -3.17,
- -3.0,
- -2.75,
- -2.59,
- -2.53,
- -2.33,
- -1.65,
- -0.65,
- -0.63,
- -1.37,
- -1.76,
- -1.26,
- -0.29,
- 0.76,
- 1.6,
- 1.41,
- 0.6,
- -0.06,
- -1.23,
- -2.5,
- -3.11,
- -1.92,
- -0.5,
- 0.01,
- -0.17,
- -0.72,
- -2.67,
- -6.26,
- -9.71,
- -9.75,
- -5.5,
- 0.4,
- 3.47,
- 4.05,
- 3.84,
- 3.13,
- 2.68,
- 4.15,
- 5.6,
- 4.84,
- 3.74,
- 3.98,
- 4.49,
- 4.38,
- 3.87,
- 2.96,
- 1.77,
- 1.44,
- 2.07,
- 2.98,
- 3.87,
- 5.01,
- 6.22,
- 7.26,
- 7.78,
- 7.75,
- 7.44,
- 7.12,
- 6.82,
- 6.53,
- 6.12,
- 5.46,
- 4.64,
- 4.14,
- 4.26,
- 4.74,
- 5.11,
- 5.22,
- 5.37,
- 5.91,
- 6.82,
- 7.42,
- 7.28,
- 6.83,
- 7.06,
- 8.12,
- 8.93,
- 8.06,
- 5.42,
- 3.22,
- 2.73,
- 1.92,
- 0.95,
- 2.29,
- 4.74,
- 5.79,
- 5.64,
- 5.33,
- 4.85,
- 4.72,
- 5.95,
- 6.46,
- 5.99,
- 5.26,
- 4.78,
- 4.37,
- 4.37,
- 4.93,
- 5.11,
- 4.86,
- 4.39,
- 3.91,
- 3.53,
- 0.67,
- 0.78,
- 0.95,
- 1.15,
- 1.51,
- 1.97,
- 2.27,
- 2.68,
- 3.25,
- 3.61,
- 3.67,
- 3.67,
- 3.9,
- 4.13,
- 4.16,
- 4.17,
- 4.44,
- 4.73,
- 4.83,
- 4.6,
- 4.16,
- 4.08,
- 3.98,
- 3.74,
- 3.41,
- 2.99,
- 2.46,
- 1.78,
- 0.96,
- -0.16,
- -1.32,
- -2.32,
- -3.05,
- -3.4,
- -3.35,
- -3.1,
- -2.93,
- -2.95,
- -3.09,
- -3.33,
- -3.68,
- -4.11,
- -4.52,
- -4.89,
- -5.19,
- -5.38,
- -5.52,
- -5.65,
- -5.8,
- -5.97,
- -6.16,
- -6.34,
- -6.49,
- -6.63,
- -6.66,
- -6.6,
- -6.75,
- -6.97,
- -6.43,
- -4.91,
- -3.77,
- -4.44,
- -6.75,
- -10.58,
- -12.68,
- -12.76,
- -10.96,
- -8.45,
- -6.77,
- -7.44,
- -8.6,
- -8.81,
- -8.38,
- -7.91,
- -7.6,
- -7.3,
- -6.98,
- -6.79,
- -6.67,
- -6.39,
- -6.06,
- -5.85,
- -5.75,
- -5.79,
- -5.94,
- -5.87,
- -5.73,
- -5.49,
- -5.18,
- -4.85,
- -4.54,
- -4.19,
- -3.86,
- -3.81,
- -4.02,
- -4.27,
- -4.29,
- -3.81,
- -3.35,
- -2.79,
- -2.33,
- -2.3,
- -2.59,
- -2.71,
- -2.39,
- -2.3,
- -2.07,
- -1.49,
- -0.84,
- -0.59,
- -0.75,
- -1.51,
- -3.02,
- -4.63,
- -4.19,
- -2.42,
- -1.47,
- -1.45,
- -1.16,
- -0.56,
- -0.12,
- 0.14,
- 0.48,
- 0.86,
- 1.12,
- 1.29,
- 1.4,
- 1.49,
- 1.55,
- 1.59,
- 1.63,
- 1.67,
- 1.66,
- 1.62,
- 1.55,
- 1.47,
- 1.47,
- 1.61,
- 1.84,
- 2.03,
- 1.91,
- 1.72,
- 1.76,
- 1.83,
- 1.89,
- 1.9,
- 2.01,
- 2.19,
- 2.28,
- 2.35,
- 2.56,
- 2.72,
- 2.93,
- 3.12,
- 3.5,
- 3.92,
- 4.22,
- 4.32,
- 4.5,
- 4.72,
- 4.98,
- 5.08,
- 5.07,
- 5.01,
- 4.73,
- 4.39,
- 4.05,
- 3.79,
- 3.64,
- 3.44,
- 3.24,
- 3.1,
- 3.0,
- 2.89,
- 2.72,
- 2.47,
- 2.14,
- 1.67,
- 1.09,
- 0.48,
- -0.09,
- -0.63,
- -1.22,
- -1.81,
- -2.3,
- -2.67,
- -3.02,
- -3.34,
- -3.49,
- -3.49,
- -3.75,
- -4.32,
- -3.37,
- -0.8,
- 0.14,
- -0.58,
- -0.98,
- -0.58,
- -0.05,
- 0.35,
- 0.55,
- 0.69,
- 0.84,
- 0.84,
- 0.47,
- 0.09,
- 0.03,
- 0.19,
- 0.48,
- 0.79,
- 1.12,
- 1.19,
- 1.22,
- 1.28,
- 1.3,
- 1.34,
- 1.4,
- 1.4,
- 1.25,
- 1.14,
- 1.23,
- 1.25,
- 1.21,
- 1.2,
- 1.28,
- 1.47,
- 1.56,
- 1.54,
- 1.42,
- 1.23,
- 1.14,
- 1.13,
- 1.13,
- 1.16,
- 1.27,
- 1.62,
- 2.11,
- 1.84,
- 0.89,
- 0.26,
- -0.58,
- -0.95,
- -1.08,
- -1.08,
- -0.7,
- -0.31,
- 0.15,
- 0.65,
- 0.61,
- -0.25,
- -1.17,
- -1.28,
- -0.78,
- -0.85,
- -1.42,
- -2.35,
- -2.26,
- -1.54,
- -1.5,
- -1.73,
- -1.64,
- -2.39,
- -2.99,
- -2.92,
- -2.51,
- -2.73,
- -1.69,
- -1.81,
- -2.21,
- -1.39,
- -0.25,
- 0.13,
- -0.76,
- -1.62,
- 0.17,
- 3.63,
- 5.42,
- 3.86,
- 0.07,
- -4.04,
- -4.76,
- -1.99,
- -1.5,
- -1.26,
- -1.28,
- -1.45,
- -1.56,
- -1.4,
- -0.97,
- -0.93,
- -1.44,
- -2.33,
- -2.93,
- -2.53,
- -1.32,
- 0.25,
- 1.19,
- 1.42,
- 1.44,
- 2.1,
- 2.89,
- 3.19,
- 3.72,
- 4.13,
- 4.47,
- 5.51,
- 6.65,
- 7.79,
- 8.84,
- 9.04,
- 8.55,
- 8.35,
- 8.53,
- 8.75,
- 8.9,
- 8.94,
- 8.9,
- 8.65,
- 8.09,
- 7.38,
- 6.64,
- 6.13,
- 6.01,
- 5.96,
- 6.07,
- 6.43,
- 6.88,
- 7.11,
- 6.92,
- 6.47,
- 5.72,
- 4.73,
- 3.43,
- 1.03,
- -0.52,
- 1.37,
- 4.44,
- 6.75,
- 6.13,
- 3.91,
- 2.84,
- 3.68,
- 4.72,
- 4.28,
- 3.72,
- 3.56,
- 3.49,
- 3.42,
- 2.98,
- 2.42,
- 2.09,
- 2.1,
- 2.42,
- 2.34,
- 1.79,
- 1.22,
- 0.92,
- 0.84,
- 0.8,
- 0.7,
- -0.58,
- -0.49,
- -0.4,
- -0.18,
- 0.11,
- 0.56,
- 1.24,
- 1.88,
- 2.21,
- 2.35,
- 2.53,
- 2.74,
- 3.15,
- 3.58,
- 3.99,
- 4.4,
- 4.66,
- 4.54,
- 4.02,
- 3.45,
- 3.35,
- 3.36,
- 3.33,
- 3.34,
- 3.3,
- 3.29,
- 3.51,
- 3.39,
- 2.97,
- 2.51,
- 2.1,
- 1.76,
- 1.44,
- 1.04,
- 0.57,
- 0.06,
- -0.68,
- -1.73,
- -2.74,
- -3.4,
- -3.79,
- -4.07,
- -4.3,
- -4.5,
- -4.74,
- -5.04,
- -5.33,
- -5.61,
- -5.9,
- -6.16,
- -6.34,
- -6.48,
- -6.55,
- -6.61,
- -6.8,
- -7.01,
- -5.74,
- -4.33,
- -6.98,
- -8.92,
- -6.84,
- -4.56,
- -3.43,
- -2.68,
- -2.76,
- -4.23,
- -5.75,
- -6.45,
- -6.57,
- -6.64,
- -7.07,
- -7.75,
- -8.1,
- -7.98,
- -7.71,
- -7.52,
- -7.48,
- -7.44,
- -7.32,
- -7.18,
- -7.08,
- -7.08,
- -7.17,
- -7.04,
- -6.64,
- -6.2,
- -5.75,
- -5.35,
- -4.97,
- -4.96,
- -5.32,
- -5.72,
- -5.61,
- -5.22,
- -4.82,
- -4.59,
- -3.82,
- -2.96,
- -2.64,
- -2.52,
- -2.57,
- -2.78,
- -2.38,
- -1.76,
- -1.15,
- -0.3,
- 0.22,
- 0.22,
- 0.41,
- 0.78,
- 0.15,
- -1.93,
- -3.99,
- -4.52,
- -3.44,
- -2.02,
- -1.35,
- -0.8,
- 0.24,
- 1.18,
- 1.49,
- 1.3,
- 0.87,
- 0.53,
- 0.54,
- 0.77,
- 0.96,
- 1.02,
- 1.04,
- 1.01,
- 0.87,
- 0.68,
- 0.48,
- 0.25,
- -0.02,
- -0.11,
- 0.11,
- 0.33,
- 0.21,
- -0.14,
- -0.45,
- -0.36,
- -0.11,
- 0.07,
- 0.32,
- 0.84,
- 1.39,
- 1.86,
- 2.29,
- 2.72,
- 3.08,
- 3.5,
- 4.01,
- 4.47,
- 4.81,
- 5.1,
- 5.48,
- 5.88,
- 6.18,
- 6.21,
- 6.16,
- 5.97,
- 5.77,
- 5.52,
- 5.05,
- 4.56,
- 3.98,
- 3.49,
- 3.14,
- 2.82,
- 2.63,
- 2.58,
- 2.53,
- 2.46,
- 2.37,
- 2.18,
- 1.84,
- 1.34,
- 0.69,
- -0.05,
- -0.82,
- -1.54,
- -2.16,
- -2.57,
- -2.86,
- -3.18,
- -3.51,
- -3.72,
- -3.7,
- -3.64,
- -4.12,
- -4.8,
- -3.33,
- -1.36,
- -1.36,
- -2.03,
- -2.04,
- -1.76,
- -1.25,
- -0.78,
- -0.48,
- -0.26,
- 0.0,
- 0.3,
- 0.64,
- 0.87,
- 0.81,
- 0.55,
- 0.27,
- 0.04,
- 0.04,
- 0.11,
- 0.06,
- -0.1,
- -0.25,
- -0.31,
- -0.24,
- -0.27,
- -0.4,
- -0.53,
- -0.6,
- -0.67,
- -0.76,
- -0.74,
- -0.74,
- -0.73,
- -0.61,
- -0.36,
- -0.12,
- 0.13,
- 0.35,
- 0.59,
- 0.78,
- 0.97,
- 1.23,
- 1.53,
- 1.8,
- 1.81,
- 1.8,
- 2.1,
- 2.41,
- 3.02,
- 3.23,
- 2.15,
- 0.15,
- -1.12,
- -0.81,
- -0.29,
- 0.07,
- 0.11,
- -0.55,
- -1.07,
- -1.54,
- -1.55,
- -0.81,
- -0.5,
- -1.02,
- -1.55,
- -1.67,
- -1.62,
- -2.06,
- -1.93,
- -1.12,
- -0.92,
- -1.58,
- -1.81,
- -1.9,
- -2.05,
- -2.04,
- -2.97,
- -3.88,
- -3.18,
- -2.43,
- -2.94,
- -5.18,
- -9.27,
- -8.77,
- -5.11,
- -2.09,
- -0.38,
- 1.58,
- 2.82,
- 2.3,
- 0.98,
- -0.67,
- -0.92,
- -0.61,
- -0.41,
- -0.37,
- -0.23,
- -0.09,
- -0.1,
- -0.22,
- -0.3,
- -0.54,
- -0.84,
- -0.67,
- -0.46,
- -0.48,
- -0.48,
- -0.82,
- -1.09,
- -0.39,
- 1.23,
- 2.98,
- 3.19,
- 3.69,
- 5.24,
- 5.94,
- 6.96,
- 9.52,
- 11.63,
- 11.57,
- 10.69,
- 10.29,
- 10.07,
- 9.6,
- 8.94,
- 8.25,
- 7.62,
- 6.95,
- 6.47,
- 6.18,
- 5.91,
- 5.15,
- 3.95,
- 3.08,
- 2.61,
- 1.65,
- 0.33,
- -0.42,
- -0.56,
- -0.41,
- -0.07,
- -0.23,
- -1.3,
- -2.14,
- -1.07,
- -0.17,
- -0.74,
- 0.16,
- 2.21,
- 2.86,
- 2.3,
- 1.87,
- 1.45,
- 0.86,
- 0.07,
- -0.61,
- -0.9,
- -1.11,
- -1.36,
- -1.47,
- -1.3,
- -1.07,
- -1.02,
- -1.08,
- -1.05,
- -0.9,
- -0.72,
- 0.41,
- 0.5,
- 0.72,
- 1.02,
- 1.22,
- 1.36,
- 1.53,
- 1.76,
- 1.96,
- 2.27,
- 2.73,
- 3.19,
- 3.56,
- 3.92,
- 4.33,
- 4.89,
- 5.22,
- 5.05,
- 4.52,
- 4.23,
- 4.35,
- 4.54,
- 4.71,
- 4.66,
- 4.5,
- 4.28,
- 4.01,
- 3.71,
- 3.35,
- 2.96,
- 2.55,
- 2.12,
- 1.63,
- 1.09,
- 0.49,
- -0.13,
- -0.73,
- -1.3,
- -1.83,
- -2.33,
- -2.78,
- -3.2,
- -3.62,
- -4.06,
- -4.59,
- -5.1,
- -5.53,
- -5.96,
- -6.38,
- -6.7,
- -7.1,
- -7.64,
- -7.79,
- -7.79,
- -8.46,
- -7.23,
- -3.54,
- -1.21,
- -1.5,
- -3.26,
- -4.56,
- -5.59,
- -5.82,
- -5.52,
- -5.24,
- -5.36,
- -5.82,
- -6.1,
- -6.41,
- -6.38,
- -6.33,
- -6.71,
- -7.55,
- -7.94,
- -7.77,
- -7.43,
- -7.38,
- -7.75,
- -7.9,
- -7.79,
- -7.81,
- -8.02,
- -8.12,
- -7.76,
- -7.31,
- -7.09,
- -6.91,
- -6.24,
- -5.45,
- -5.41,
- -5.23,
- -4.8,
- -4.67,
- -4.29,
- -3.8,
- -3.03,
- -2.26,
- -2.12,
- -2.18,
- -2.12,
- -2.13,
- -2.02,
- -1.6,
- -1.38,
- -0.89,
- -0.05,
- -0.07,
- -0.87,
- -1.28,
- -1.33,
- -1.47,
- -1.65,
- -1.58,
- -1.32,
- -0.78,
- 0.18,
- 1.08,
- 1.46,
- 1.45,
- 1.27,
- 0.92,
- 0.37,
- -0.06,
- -0.14,
- -0.05,
- -0.08,
- -0.2,
- -0.23,
- -0.37,
- -0.73,
- -1.1,
- -1.27,
- -1.29,
- -1.39,
- -1.57,
- -1.73,
- -1.85,
- -1.91,
- -1.84,
- -1.68,
- -1.45,
- -1.06,
- -0.39,
- 0.45,
- 1.21,
- 1.81,
- 2.39,
- 3.03,
- 3.72,
- 4.38,
- 4.96,
- 5.39,
- 5.82,
- 6.21,
- 6.55,
- 6.72,
- 6.71,
- 6.62,
- 6.49,
- 6.14,
- 5.78,
- 5.56,
- 5.32,
- 4.71,
- 4.05,
- 3.62,
- 3.29,
- 2.92,
- 2.47,
- 2.03,
- 1.89,
- 1.76,
- 1.87,
- 1.92,
- 1.95,
- 1.87,
- 1.47,
- 0.82,
- 0.05,
- -0.86,
- -1.82,
- -2.54,
- -2.91,
- -3.15,
- -3.36,
- -3.45,
- -3.65,
- -3.7,
- -3.68,
- -3.92,
- -4.88,
- -4.75,
- -2.93,
- -2.37,
- -3.23,
- -3.57,
- -3.2,
- -2.75,
- -2.24,
- -1.76,
- -1.25,
- -0.68,
- -0.21,
- 0.09,
- 0.21,
- 0.13,
- -0.2,
- -0.77,
- -1.17,
- -1.16,
- -1.01,
- -0.9,
- -0.92,
- -1.07,
- -1.2,
- -1.28,
- -1.39,
- -1.55,
- -1.6,
- -1.56,
- -1.64,
- -1.71,
- -1.71,
- -1.64,
- -1.48,
- -1.24,
- -0.93,
- -0.56,
- -0.08,
- 0.46,
- 0.85,
- 1.26,
- 1.7,
- 2.17,
- 2.67,
- 3.06,
- 3.22,
- 3.26,
- 2.09,
- 1.18,
- 1.51,
- 3.48,
- 3.4,
- 1.53,
- 0.88,
- 0.91,
- 0.46,
- -0.39,
- -0.65,
- -0.37,
- -0.11,
- 0.1,
- 0.22,
- 0.2,
- 0.39,
- 0.48,
- 0.06,
- -0.67,
- -1.28,
- -1.53,
- -1.54,
- -1.37,
- -0.97,
- -1.19,
- -1.13,
- -0.02,
- 0.48,
- 0.17,
- 0.17,
- -0.87,
- -3.43,
- -3.8,
- -2.08,
- -1.14,
- -1.37,
- -1.77,
- -0.4,
- 1.5,
- 2.54,
- 3.93,
- 3.97,
- 1.11,
- -1.26,
- -2.67,
- -3.54,
- -3.38,
- -2.48,
- -1.73,
- -1.31,
- -1.18,
- -1.19,
- -1.34,
- -1.39,
- -1.47,
- -1.55,
- -1.62,
- -1.73,
- -1.96,
- -2.29,
- -2.71,
- -3.08,
- -3.34,
- -4.0,
- -3.8,
- -0.04,
- 7.39,
- 10.76,
- 10.79,
- 11.11,
- 10.73,
- 9.85,
- 9.48,
- 9.54,
- 9.24,
- 8.69,
- 8.23,
- 7.75,
- 7.16,
- 6.71,
- 6.65,
- 6.67,
- 6.41,
- 5.74,
- 5.03,
- 4.59,
- 4.39,
- 4.6,
- 4.61,
- 3.72,
- 2.38,
- 0.52,
- -0.76,
- -1.44,
- -1.55,
- -1.5,
- -3.65,
- -2.2,
- -0.19,
- -0.65,
- -2.18,
- -1.53,
- -0.42,
- -1.06,
- -2.21,
- -2.47,
- -2.8,
- -3.45,
- -4.29,
- -4.98,
- -4.62,
- -3.93,
- -3.25,
- -2.72,
- -2.31,
- -1.84,
- -1.3,
- -0.81,
- -0.47,
- -0.11,
- 0.24,
- 1.43,
- 1.74,
- 1.94,
- 2.09,
- 2.29,
- 2.43,
- 2.43,
- 2.36,
- 2.25,
- 2.16,
- 2.12,
- 2.3,
- 2.64,
- 3.08,
- 3.45,
- 3.76,
- 4.02,
- 4.21,
- 4.37,
- 4.67,
- 4.94,
- 5.12,
- 5.22,
- 5.16,
- 4.99,
- 4.81,
- 4.63,
- 4.42,
- 4.14,
- 3.79,
- 3.41,
- 3.02,
- 2.63,
- 2.28,
- 1.84,
- 1.3,
- 0.63,
- -0.15,
- -0.91,
- -1.59,
- -2.13,
- -2.63,
- -3.11,
- -3.61,
- -4.14,
- -4.81,
- -5.77,
- -6.75,
- -7.52,
- -8.04,
- -8.4,
- -8.65,
- -8.82,
- -8.56,
- -7.08,
- -5.18,
- -4.46,
- -4.51,
- -4.51,
- -4.68,
- -5.03,
- -4.83,
- -4.77,
- -4.57,
- -3.77,
- -3.03,
- -2.79,
- -2.97,
- -3.52,
- -4.3,
- -4.87,
- -5.47,
- -6.59,
- -7.65,
- -7.74,
- -7.94,
- -7.82,
- -8.3,
- -9.78,
- -8.88,
- -8.35,
- -7.53,
- -7.8,
- -7.89,
- -7.38,
- -7.11,
- -7.39,
- -6.78,
- -5.82,
- -5.27,
- -4.81,
- -4.18,
- -3.44,
- -2.5,
- -1.58,
- -1.22,
- -1.41,
- -1.77,
- -1.98,
- -1.93,
- -1.63,
- -1.32,
- -1.15,
- -0.94,
- -0.74,
- -0.93,
- -1.47,
- -1.72,
- -1.72,
- -1.66,
- -1.51,
- -1.25,
- -1.03,
- -0.86,
- -0.63,
- -0.28,
- -0.02,
- -0.01,
- -0.16,
- -0.32,
- -0.35,
- -0.24,
- -0.17,
- -0.36,
- -0.62,
- -0.9,
- -1.18,
- -1.34,
- -1.49,
- -1.93,
- -2.22,
- -2.26,
- -2.4,
- -2.59,
- -2.66,
- -2.65,
- -2.66,
- -2.6,
- -2.27,
- -1.66,
- -0.9,
- -0.07,
- 0.72,
- 1.61,
- 2.67,
- 3.7,
- 4.58,
- 5.32,
- 5.94,
- 6.47,
- 6.72,
- 6.72,
- 6.73,
- 6.7,
- 6.53,
- 6.32,
- 6.14,
- 5.97,
- 5.66,
- 5.27,
- 4.92,
- 4.59,
- 4.15,
- 3.58,
- 3.15,
- 2.89,
- 2.59,
- 2.23,
- 1.9,
- 1.61,
- 1.37,
- 1.27,
- 1.34,
- 1.54,
- 1.68,
- 1.48,
- 0.74,
- -0.24,
- -1.13,
- -1.87,
- -2.54,
- -3.02,
- -3.28,
- -3.42,
- -3.5,
- -3.56,
- -3.65,
- -3.77,
- -3.88,
- -4.88,
- -5.44,
- -4.24,
- -3.04,
- -3.67,
- -4.66,
- -4.54,
- -4.26,
- -3.62,
- -2.39,
- -1.22,
- -0.56,
- -0.31,
- -0.24,
- -0.12,
- 0.01,
- -0.11,
- -0.43,
- -0.74,
- -0.95,
- -1.06,
- -1.15,
- -1.25,
- -1.28,
- -1.41,
- -1.61,
- -1.85,
- -2.08,
- -2.26,
- -2.41,
- -2.59,
- -2.77,
- -2.92,
- -2.92,
- -2.68,
- -2.14,
- -1.25,
- -0.11,
- 0.99,
- 1.76,
- 2.05,
- 2.16,
- 2.23,
- 2.56,
- 3.23,
- 3.69,
- 3.64,
- 3.55,
- 3.51,
- 2.91,
- 1.68,
- 1.26,
- 0.08,
- -2.04,
- -2.08,
- 0.12,
- 0.79,
- -0.29,
- 0.71,
- 0.95,
- 0.09,
- 0.46,
- 1.32,
- 1.5,
- 1.95,
- 0.63,
- -1.05,
- -1.11,
- -1.1,
- -0.93,
- -0.71,
- -0.89,
- -1.82,
- -1.97,
- -1.83,
- -2.73,
- -3.86,
- -4.18,
- -4.68,
- -3.6,
- -1.84,
- -1.16,
- -1.84,
- -3.69,
- -3.7,
- -0.81,
- 0.63,
- -0.82,
- -0.44,
- -0.1,
- -1.49,
- -3.3,
- -1.64,
- 0.49,
- 1.01,
- -0.35,
- -1.52,
- -2.98,
- -3.9,
- -3.8,
- -3.26,
- -2.8,
- -2.62,
- -2.63,
- -2.7,
- -2.9,
- -3.18,
- -3.32,
- -3.41,
- -3.71,
- -4.07,
- -4.71,
- -6.21,
- -4.96,
- -4.74,
- -3.66,
- -1.1,
- 1.94,
- 4.97,
- 7.28,
- 9.62,
- 10.6,
- 10.81,
- 10.8,
- 9.94,
- 9.43,
- 8.85,
- 7.98,
- 7.57,
- 7.19,
- 6.51,
- 6.18,
- 6.1,
- 5.74,
- 4.95,
- 4.25,
- 3.48,
- 1.98,
- 0.68,
- -0.86,
- -2.25,
- -1.93,
- -1.78,
- -1.71,
- 0.02,
- -1.0,
- -2.74,
- -2.33,
- -3.08,
- -3.42,
- -3.12,
- -3.85,
- -4.96,
- -5.51,
- -5.77,
- -6.13,
- -7.34,
- -8.16,
- -6.9,
- -6.3,
- -5.34,
- -4.51,
- -3.6,
- -2.56,
- -1.63,
- -0.99,
- -0.51,
- -0.04,
- 0.37,
- 0.72,
- 1.06,
- 3.53,
- 3.68,
- 3.81,
- 3.88,
- 3.88,
- 3.74,
- 3.43,
- 3.06,
- 2.7,
- 2.38,
- 2.11,
- 1.8,
- 1.4,
- 0.99,
- 0.8,
- 1.23,
- 1.98,
- 2.44,
- 2.37,
- 2.19,
- 2.29,
- 2.7,
- 3.24,
- 3.83,
- 4.41,
- 4.85,
- 4.97,
- 4.89,
- 4.82,
- 4.6,
- 4.32,
- 3.98,
- 3.55,
- 3.08,
- 2.61,
- 2.1,
- 1.48,
- 0.8,
- 0.03,
- -0.81,
- -1.62,
- -2.14,
- -2.5,
- -3.21,
- -4.32,
- -5.45,
- -6.39,
- -7.17,
- -7.71,
- -8.23,
- -8.89,
- -9.22,
- -7.33,
- -7.35,
- -7.6,
- -5.93,
- -4.54,
- -3.79,
- -3.27,
- -2.91,
- -2.99,
- -2.86,
- -2.64,
- -2.48,
- -2.46,
- -2.57,
- -2.85,
- -3.27,
- -3.75,
- -3.71,
- -4.11,
- -4.75,
- -5.23,
- -7.13,
- -7.82,
- -7.04,
- -7.72,
- -7.93,
- -8.54,
- -7.84,
- -7.88,
- -8.45,
- -7.98,
- -6.38,
- -5.53,
- -4.4,
- -3.14,
- -2.79,
- -3.5,
- -3.97,
- -3.61,
- -3.05,
- -2.54,
- -1.95,
- -1.62,
- -1.77,
- -1.95,
- -1.99,
- -1.97,
- -1.88,
- -1.9,
- -1.85,
- -2.03,
- -2.26,
- -2.17,
- -2.14,
- -1.8,
- -1.88,
- -2.04,
- -2.15,
- -2.2,
- -2.11,
- -2.0,
- -1.91,
- -1.98,
- -1.87,
- -1.8,
- -1.69,
- -1.52,
- -1.39,
- -1.36,
- -1.26,
- -1.19,
- -1.26,
- -1.43,
- -1.35,
- -1.54,
- -2.05,
- -1.96,
- -3.11,
- -3.74,
- -3.3,
- -2.5,
- -1.95,
- -1.71,
- -1.71,
- -1.9,
- -1.88,
- -1.39,
- -0.75,
- -0.14,
- 1.02,
- 2.67,
- 3.88,
- 4.7,
- 5.51,
- 6.08,
- 5.29,
- 5.64,
- 7.05,
- 7.7,
- 7.71,
- 7.44,
- 6.84,
- 6.09,
- 5.6,
- 5.25,
- 4.91,
- 4.46,
- 4.11,
- 3.75,
- 3.39,
- 2.9,
- 2.57,
- 2.24,
- 1.99,
- 1.86,
- 1.67,
- 1.42,
- 1.19,
- 1.11,
- 1.21,
- 1.33,
- 1.33,
- 1.12,
- 0.52,
- -0.44,
- -1.35,
- -1.8,
- -1.98,
- -2.35,
- -2.95,
- -3.38,
- -3.49,
- -3.47,
- -3.5,
- -3.65,
- -3.79,
- -4.55,
- -5.51,
- -4.68,
- -3.4,
- -3.54,
- -4.53,
- -4.66,
- -4.6,
- -4.65,
- -4.28,
- -2.66,
- -0.62,
- 0.25,
- 0.22,
- 0.19,
- 0.23,
- 0.17,
- -0.02,
- -0.34,
- -0.69,
- -0.91,
- -0.96,
- -0.94,
- -0.89,
- -0.91,
- -1.01,
- -1.18,
- -1.45,
- -1.81,
- -2.1,
- -2.22,
- -2.15,
- -1.97,
- -1.7,
- -1.36,
- -0.85,
- -0.04,
- 0.86,
- 1.48,
- 1.72,
- 1.79,
- 2.09,
- 2.63,
- 3.47,
- 3.99,
- 2.97,
- 2.4,
- 1.75,
- 1.51,
- 2.44,
- 2.3,
- 0.99,
- -0.25,
- 1.14,
- 2.61,
- 2.92,
- 2.54,
- 1.87,
- 1.41,
- 2.27,
- 2.47,
- 2.94,
- 2.97,
- 0.98,
- 0.19,
- -0.41,
- -1.36,
- -1.54,
- -1.07,
- -0.97,
- -1.16,
- -1.33,
- -1.84,
- -2.26,
- -2.19,
- -3.64,
- -3.12,
- -1.89,
- -2.98,
- -3.36,
- -3.56,
- -3.27,
- -2.56,
- -2.37,
- -3.03,
- -3.36,
- -3.64,
- -2.69,
- -0.82,
- -0.65,
- -0.51,
- 1.43,
- 2.04,
- -0.27,
- -1.8,
- -0.98,
- 0.04,
- 1.09,
- 0.52,
- -1.36,
- -2.62,
- -3.03,
- -3.09,
- -3.2,
- -3.35,
- -3.66,
- -3.94,
- -4.2,
- -4.47,
- -4.89,
- -5.69,
- -5.97,
- -6.72,
- -6.49,
- -6.08,
- -6.94,
- -5.47,
- -0.69,
- 0.46,
- -0.48,
- 2.2,
- 4.85,
- 5.34,
- 5.55,
- 6.27,
- 7.03,
- 6.71,
- 5.88,
- 5.34,
- 4.57,
- 4.02,
- 3.71,
- 3.68,
- 3.73,
- 3.62,
- 3.15,
- 2.21,
- 0.82,
- -0.9,
- -2.67,
- -3.29,
- -4.18,
- -6.15,
- -3.78,
- -2.55,
- -2.51,
- -1.62,
- -1.01,
- -2.25,
- -3.93,
- -5.48,
- -6.05,
- -7.11,
- -8.03,
- -8.49,
- -9.82,
- -11.21,
- -10.45,
- -8.89,
- -7.21,
- -5.38,
- -3.62,
- -2.38,
- -1.73,
- -0.95,
- 0.23,
- 1.41,
- 2.24,
- 2.75,
- 3.05,
- 3.24,
- 3.39,
- 3.49,
- 3.75,
- 4.02,
- 4.08,
- 4.04,
- 3.91,
- 3.79,
- 3.75,
- 3.68,
- 3.31,
- 2.65,
- 1.91,
- 1.44,
- 1.38,
- 1.13,
- 0.08,
- -1.62,
- -2.59,
- -0.67,
- 2.3,
- 2.97,
- 2.31,
- 2.09,
- 2.63,
- 3.16,
- 2.84,
- 2.8,
- 2.84,
- 2.31,
- 3.92,
- 4.27,
- 4.15,
- 3.57,
- 3.2,
- 3.1,
- 2.87,
- 2.48,
- 1.94,
- 1.3,
- 0.61,
- -0.07,
- -0.8,
- -1.77,
- -2.94,
- -4.0,
- -4.89,
- -5.77,
- -6.51,
- -7.06,
- -7.7,
- -8.39,
- -8.88,
- -8.83,
- -7.64,
- -5.66,
- -3.6,
- -2.56,
- -2.5,
- -2.86,
- -3.0,
- -3.21,
- -3.3,
- -3.51,
- -3.67,
- -3.89,
- -4.07,
- -4.26,
- -4.1,
- -3.84,
- -3.76,
- -4.02,
- -4.5,
- -5.13,
- -6.66,
- -6.41,
- -6.53,
- -7.58,
- -8.3,
- -8.98,
- -7.69,
- -7.18,
- -6.81,
- -6.34,
- -6.39,
- -5.54,
- -5.5,
- -5.53,
- -5.39,
- -4.96,
- -4.34,
- -3.59,
- -2.65,
- -1.83,
- -1.55,
- -1.45,
- -1.2,
- -1.12,
- -1.51,
- -1.98,
- -2.15,
- -2.14,
- -2.06,
- -2.15,
- -2.64,
- -2.52,
- -2.4,
- -3.65,
- -4.8,
- -3.07,
- -0.58,
- -0.14,
- -1.03,
- -1.72,
- -2.01,
- -2.32,
- -2.43,
- -2.36,
- -2.23,
- -1.94,
- -1.8,
- -2.0,
- -2.15,
- -2.1,
- -1.26,
- -1.12,
- -1.53,
- -1.72,
- -1.79,
- -0.91,
- -1.51,
- -2.46,
- -3.05,
- -2.43,
- -1.58,
- -0.88,
- -0.99,
- -1.26,
- -1.11,
- -1.08,
- -0.84,
- 0.09,
- 1.58,
- 3.37,
- 4.43,
- 4.85,
- 5.42,
- 6.04,
- 6.47,
- 5.18,
- 5.74,
- 6.47,
- 6.45,
- 6.54,
- 6.84,
- 5.87,
- 4.86,
- 4.06,
- 3.76,
- 3.77,
- 3.71,
- 3.2,
- 2.48,
- 2.03,
- 1.89,
- 1.83,
- 1.77,
- 1.74,
- 1.76,
- 1.75,
- 1.59,
- 1.39,
- 1.33,
- 1.27,
- 1.01,
- 0.49,
- -0.29,
- -1.36,
- -2.84,
- -3.83,
- -2.95,
- -2.4,
- -3.03,
- -4.16,
- -3.91,
- -3.54,
- -3.51,
- -3.6,
- -3.95,
- -5.32,
- -5.1,
- -4.02,
- -3.93,
- -3.87,
- -3.56,
- -4.08,
- -4.8,
- -4.86,
- -3.69,
- -1.8,
- -0.63,
- 0.32,
- 0.8,
- 0.64,
- 0.13,
- -0.04,
- 0.19,
- 0.45,
- 0.59,
- 0.59,
- 0.53,
- 0.5,
- 0.56,
- 0.41,
- 0.02,
- -0.37,
- -0.72,
- -1.02,
- -1.3,
- -1.59,
- -1.8,
- -1.88,
- -1.4,
- -0.29,
- 0.7,
- 1.34,
- 1.48,
- 1.61,
- 1.72,
- 1.84,
- 1.99,
- 2.63,
- 2.86,
- 2.49,
- 2.32,
- 2.61,
- 3.33,
- 2.39,
- -0.42,
- -0.26,
- 1.15,
- 1.6,
- 1.91,
- 2.93,
- 4.16,
- 3.86,
- 2.61,
- 0.93,
- 0.81,
- 0.46,
- -0.76,
- -1.81,
- -1.92,
- -0.97,
- -0.4,
- -0.61,
- -1.0,
- -1.26,
- -1.29,
- -1.41,
- -1.7,
- -2.11,
- -2.82,
- -3.64,
- -3.38,
- -1.47,
- -0.28,
- -0.11,
- -0.97,
- -1.92,
- -2.49,
- -2.77,
- -2.22,
- -1.69,
- -1.98,
- -1.65,
- -1.6,
- -1.73,
- -1.47,
- -2.01,
- -2.71,
- -2.74,
- -1.14,
- 0.6,
- -0.07,
- 0.21,
- 1.19,
- 2.31,
- 1.68,
- 1.36,
- -0.46,
- -2.7,
- -3.18,
- -3.53,
- -3.79,
- -4.2,
- -4.7,
- -5.19,
- -5.61,
- -6.14,
- -6.67,
- -7.32,
- -7.91,
- -8.81,
- -9.88,
- -9.68,
- -3.09,
- 0.84,
- -1.35,
- -2.23,
- 3.02,
- 4.74,
- 5.47,
- 7.01,
- 7.25,
- 7.35,
- 7.01,
- 6.22,
- 5.35,
- 4.28,
- 3.48,
- 3.1,
- 3.06,
- 2.79,
- 1.98,
- 0.8,
- -0.56,
- -2.01,
- -3.47,
- -4.77,
- -6.41,
- -8.79,
- -4.92,
- -3.35,
- -3.38,
- -3.01,
- -0.76,
- -1.42,
- -4.39,
- -5.89,
- -9.29,
- -10.36,
- -10.91,
- -13.04,
- -12.88,
- -11.02,
- -8.55,
- -6.45,
- -5.31,
- -4.1,
- -2.25,
- -0.74,
- 0.17,
- 0.54,
- 1.12,
- 1.94,
- 2.51,
- 2.96,
- 3.08,
- 3.14,
- 3.27,
- 4.4,
- 5.06,
- 5.69,
- 6.13,
- 6.38,
- 6.53,
- 6.5,
- 6.14,
- 5.44,
- 4.46,
- 3.4,
- 2.26,
- 1.03,
- 0.73,
- 0.32,
- -1.68,
- -3.29,
- -2.92,
- -2.38,
- -1.56,
- -0.42,
- 1.53,
- 1.45,
- 1.13,
- 1.82,
- 3.13,
- 2.45,
- 1.17,
- 0.41,
- 0.57,
- 0.62,
- 1.24,
- 1.79,
- 2.43,
- 2.47,
- 2.44,
- 2.41,
- 2.25,
- 1.99,
- 1.41,
- 0.59,
- -0.29,
- -1.14,
- -2.05,
- -3.04,
- -3.97,
- -4.73,
- -5.46,
- -6.12,
- -6.75,
- -7.26,
- -7.64,
- -8.2,
- -7.76,
- -5.16,
- -2.85,
- -3.25,
- -3.85,
- -3.49,
- -3.4,
- -3.69,
- -4.6,
- -4.27,
- -4.59,
- -4.91,
- -4.94,
- -5.32,
- -5.56,
- -4.8,
- -4.78,
- -5.4,
- -6.45,
- -6.35,
- -7.65,
- -6.79,
- -6.9,
- -6.98,
- -7.08,
- -7.25,
- -7.16,
- -7.43,
- -7.39,
- -7.28,
- -7.21,
- -6.66,
- -6.68,
- -6.69,
- -6.83,
- -7.65,
- -5.14,
- -4.01,
- -3.97,
- -2.48,
- -1.87,
- -1.59,
- -1.63,
- -1.94,
- -2.19,
- -2.48,
- -2.45,
- -2.57,
- -3.07,
- -2.83,
- -3.07,
- -4.04,
- -4.03,
- -3.66,
- -3.28,
- -0.5,
- 0.42,
- -0.98,
- -2.18,
- -2.57,
- -2.77,
- -3.1,
- -3.27,
- -3.26,
- -3.18,
- -3.2,
- -3.0,
- -2.67,
- -2.5,
- -2.55,
- -2.49,
- -2.57,
- -2.66,
- -2.64,
- -2.26,
- -1.59,
- 0.11,
- 0.58,
- -0.03,
- -1.88,
- -1.86,
- -0.94,
- -1.41,
- -2.08,
- -1.88,
- -1.88,
- -1.8,
- -1.48,
- -0.5,
- 2.18,
- 3.23,
- 3.91,
- 4.27,
- 4.94,
- 5.96,
- 4.71,
- 5.45,
- 6.38,
- 6.91,
- 6.05,
- 4.67,
- 4.99,
- 4.01,
- 3.46,
- 3.0,
- 3.0,
- 3.32,
- 3.81,
- 3.02,
- 2.0,
- 2.18,
- 2.48,
- 2.42,
- 2.24,
- 2.17,
- 2.18,
- 1.92,
- 0.65,
- -0.06,
- 0.61,
- 0.87,
- 0.3,
- -0.37,
- -1.12,
- -1.86,
- -2.0,
- -1.68,
- -1.47,
- -1.86,
- -2.81,
- -3.4,
- -3.59,
- -3.74,
- -3.87,
- -5.18,
- -6.01,
- -4.85,
- -4.45,
- -4.22,
- -3.91,
- -4.08,
- -4.45,
- -4.71,
- -4.46,
- -3.76,
- -1.93,
- -0.97,
- -0.66,
- -0.57,
- -0.47,
- -0.27,
- -0.23,
- -0.09,
- 0.4,
- 0.9,
- 0.78,
- 0.83,
- 0.89,
- 0.26,
- -0.98,
- -2.12,
- -2.01,
- -1.17,
- -0.91,
- -0.69,
- -1.23,
- -1.83,
- -2.13,
- -2.44,
- -2.04,
- -0.45,
- 0.59,
- 0.5,
- 0.77,
- 1.64,
- 2.45,
- 2.04,
- 1.27,
- 1.82,
- 1.89,
- 0.46,
- -0.36,
- -0.03,
- -0.19,
- -0.03,
- 1.26,
- 1.92,
- 1.76,
- 0.74,
- -0.45,
- 0.1,
- 1.22,
- 1.92,
- 1.94,
- 1.74,
- 1.66,
- 0.83,
- 0.21,
- -0.52,
- -0.86,
- -0.81,
- -1.17,
- -2.02,
- -2.17,
- -2.04,
- -1.92,
- -1.89,
- -1.97,
- -1.78,
- -1.19,
- -0.62,
- -0.38,
- -0.49,
- -0.99,
- -1.48,
- -1.79,
- -1.73,
- -1.72,
- -1.73,
- -1.99,
- -2.44,
- -2.27,
- -0.43,
- -1.77,
- -2.91,
- -2.7,
- -3.18,
- -3.86,
- -4.08,
- -3.87,
- -1.71,
- -2.05,
- -3.65,
- -3.07,
- -1.59,
- -0.41,
- -0.4,
- -0.14,
- -0.28,
- -2.42,
- -4.98,
- -5.47,
- -5.29,
- -5.61,
- -5.79,
- -5.98,
- -6.28,
- -6.62,
- -6.76,
- -6.81,
- -6.01,
- -6.57,
- -1.73,
- 2.03,
- 1.0,
- -2.64,
- 2.77,
- 9.5,
- 10.81,
- 8.94,
- 7.26,
- 7.13,
- 5.85,
- 4.81,
- 4.25,
- 3.23,
- 2.29,
- 1.67,
- 1.11,
- 0.2,
- -1.19,
- -2.47,
- -3.66,
- -4.69,
- -5.41,
- -5.93,
- -3.96,
- 0.37,
- 1.49,
- 0.2,
- 0.9,
- -0.83,
- -8.48,
- -8.8,
- -10.66,
- -11.86,
- -12.99,
- -13.65,
- -14.99,
- -14.57,
- -12.3,
- -10.1,
- -8.22,
- -6.89,
- -5.45,
- -4.15,
- -3.24,
- -2.47,
- -1.65,
- -0.65,
- 0.43,
- 1.39,
- 2.05,
- 2.44,
- 2.85,
- 3.29,
- 3.76,
- 4.63,
- 5.2,
- 5.7,
- 5.95,
- 6.07,
- 6.23,
- 6.22,
- 5.94,
- 5.75,
- 5.73,
- 5.8,
- 5.89,
- 5.15,
- 2.9,
- 0.04,
- -0.8,
- 1.02,
- 0.86,
- 0.54,
- 1.8,
- 1.91,
- 1.51,
- 1.11,
- 1.19,
- 1.06,
- -0.2,
- -1.09,
- -1.13,
- -0.55,
- 0.03,
- -0.25,
- -0.66,
- -0.59,
- 0.17,
- 1.29,
- 0.95,
- 0.85,
- 1.59,
- 1.85,
- 1.49,
- 0.99,
- 0.5,
- -0.09,
- -0.7,
- -1.29,
- -2.05,
- -2.76,
- -3.62,
- -4.12,
- -3.73,
- -5.59,
- -6.48,
- -5.11,
- -3.26,
- -3.04,
- -3.94,
- -4.25,
- -4.07,
- -4.14,
- -4.44,
- -4.9,
- -4.1,
- -3.98,
- -4.54,
- -4.71,
- -5.13,
- -5.66,
- -6.03,
- -5.93,
- -5.73,
- -6.16,
- -6.34,
- -6.62,
- -7.92,
- -7.87,
- -8.07,
- -8.33,
- -8.26,
- -7.69,
- -7.77,
- -7.96,
- -7.89,
- -7.7,
- -7.64,
- -7.67,
- -7.83,
- -8.5,
- -7.69,
- -4.91,
- -4.07,
- -2.47,
- -1.58,
- -0.61,
- -1.06,
- -2.03,
- -1.31,
- -1.41,
- -2.5,
- -2.35,
- -2.95,
- -3.26,
- -2.89,
- -3.34,
- -4.4,
- -4.76,
- -3.76,
- -1.6,
- -0.07,
- -1.53,
- -2.39,
- -2.63,
- -2.97,
- -3.23,
- -3.31,
- -3.36,
- -3.31,
- -3.16,
- -3.01,
- -2.56,
- -1.91,
- -1.83,
- -2.25,
- -2.77,
- -2.91,
- -3.32,
- -2.91,
- -1.37,
- 1.02,
- 2.34,
- 2.05,
- 0.68,
- -0.82,
- -0.75,
- -0.65,
- -1.13,
- -0.49,
- 0.3,
- 1.1,
- 0.79,
- 0.13,
- 0.5,
- 0.82,
- 1.5,
- 2.35,
- 2.7,
- 2.83,
- 3.11,
- 2.63,
- 2.79,
- 3.17,
- 3.68,
- 3.86,
- 4.0,
- 4.07,
- 3.85,
- 3.54,
- 3.29,
- 3.32,
- 3.04,
- 3.45,
- 4.78,
- 3.73,
- 1.23,
- 0.98,
- 1.27,
- 1.65,
- 1.17,
- 0.95,
- 0.85,
- 1.44,
- 1.96,
- 0.81,
- -0.39,
- -0.73,
- -1.2,
- -1.6,
- -1.21,
- -1.17,
- -1.33,
- -1.79,
- -2.47,
- -2.81,
- -3.14,
- -3.37,
- -3.55,
- -3.93,
- -5.42,
- -6.58,
- -5.87,
- -5.15,
- -5.67,
- -5.81,
- -6.12,
- -6.37,
- -5.51,
- -5.94,
- -4.63,
- -2.93,
- -1.83,
- -1.11,
- -0.2,
- -0.17,
- -0.27,
- -0.78,
- -1.5,
- -1.54,
- -1.72,
- -1.31,
- -0.96,
- -1.32,
- -1.15,
- -1.32,
- -0.47,
- 1.43,
- 1.84,
- 1.62,
- 1.86,
- 1.76,
- 1.14,
- 0.27,
- -0.55,
- -0.84,
- -0.52,
- -0.62,
- -0.05,
- 0.61,
- 0.58,
- 0.87,
- 1.81,
- 2.04,
- 1.92,
- 1.71,
- 1.48,
- 1.09,
- 0.9,
- 1.28,
- 1.45,
- 1.62,
- 1.37,
- 1.68,
- 1.83,
- 1.33,
- 1.01,
- 1.1,
- 0.84,
- 0.53,
- 1.07,
- 1.57,
- 1.69,
- 2.04,
- 2.26,
- 1.89,
- 0.62,
- 0.06,
- 0.73,
- 0.36,
- 0.27,
- 0.02,
- -0.08,
- -0.02,
- 0.21,
- 0.72,
- 1.03,
- 0.48,
- -0.28,
- -0.89,
- -1.57,
- -0.9,
- 0.77,
- -0.16,
- -1.63,
- 0.1,
- 1.17,
- 0.61,
- -0.42,
- -0.45,
- -0.52,
- -1.72,
- -2.64,
- -4.66,
- -6.81,
- -5.21,
- -6.41,
- -6.3,
- -3.85,
- -3.48,
- -1.95,
- -0.2,
- -0.31,
- 0.83,
- 1.12,
- 0.14,
- -0.1,
- -2.28,
- -4.49,
- -4.81,
- -4.82,
- -5.18,
- -5.44,
- -5.72,
- -5.95,
- -6.17,
- -6.14,
- -5.83,
- -6.16,
- -6.65,
- -3.79,
- -2.99,
- 1.23,
- 5.8,
- 9.93,
- 11.59,
- 9.66,
- 9.19,
- 10.06,
- 9.15,
- 6.38,
- 4.26,
- 3.86,
- 2.64,
- 1.05,
- -0.95,
- -2.76,
- -3.62,
- -4.44,
- -7.09,
- -6.31,
- -7.67,
- -8.83,
- -8.1,
- -6.68,
- -5.7,
- -7.69,
- -9.39,
- -7.91,
- -5.92,
- -4.35,
- -11.41,
- -16.43,
- -18.14,
- -18.35,
- -17.17,
- -14.73,
- -12.12,
- -10.02,
- -8.67,
- -8.02,
- -7.27,
- -6.64,
- -6.03,
- -4.51,
- -2.37,
- -0.39,
- 1.25,
- 2.33,
- 2.96,
- 3.35,
- 3.6,
- 3.87,
- 4.24,
- 6.0,
- 6.3,
- 6.94,
- 7.34,
- 7.6,
- 7.82,
- 8.0,
- 7.87,
- 7.61,
- 7.43,
- 6.4,
- 4.76,
- 4.48,
- 3.12,
- -0.08,
- -1.1,
- 1.66,
- 2.37,
- 1.86,
- 1.16,
- 1.6,
- 1.54,
- 1.37,
- 1.35,
- 0.92,
- 0.78,
- 1.23,
- 1.05,
- 0.12,
- -0.93,
- -1.61,
- -1.1,
- -0.64,
- -0.88,
- -0.49,
- -0.8,
- -0.24,
- -0.33,
- -1.01,
- -0.75,
- -0.39,
- -0.71,
- -1.32,
- -1.95,
- -2.01,
- -2.34,
- -2.88,
- -3.47,
- -3.28,
- -2.8,
- -2.15,
- -2.07,
- -2.63,
- -3.0,
- -3.15,
- -3.42,
- -3.81,
- -4.15,
- -4.35,
- -4.54,
- -4.53,
- -4.41,
- -4.36,
- -4.38,
- -5.01,
- -5.62,
- -4.5,
- -6.12,
- -7.4,
- -6.98,
- -7.02,
- -8.14,
- -7.73,
- -7.98,
- -8.89,
- -8.03,
- -7.97,
- -8.26,
- -7.62,
- -7.37,
- -7.62,
- -7.62,
- -7.68,
- -7.84,
- -7.96,
- -8.28,
- -8.02,
- -5.1,
- -2.87,
- -2.98,
- -2.1,
- -1.95,
- -2.2,
- -1.6,
- -1.23,
- -0.41,
- -0.5,
- -0.93,
- 0.06,
- 0.77,
- -1.38,
- -3.92,
- -4.29,
- -4.48,
- -4.59,
- -4.66,
- -4.48,
- -3.59,
- -3.95,
- -3.84,
- -3.57,
- -3.81,
- -3.91,
- -3.64,
- -3.68,
- -3.58,
- -3.29,
- -2.69,
- -2.1,
- -2.34,
- -2.64,
- -2.2,
- -2.56,
- -4.15,
- -3.35,
- -1.1,
- -0.41,
- 0.49,
- 1.7,
- 2.63,
- 2.86,
- 2.4,
- 1.56,
- 1.2,
- 1.7,
- 1.89,
- 2.45,
- 4.07,
- 3.2,
- 1.49,
- 0.9,
- 1.49,
- 2.07,
- 2.22,
- 1.98,
- 2.27,
- 2.56,
- 2.36,
- 1.78,
- 2.16,
- 3.44,
- 3.3,
- 3.16,
- 3.04,
- 3.37,
- 3.2,
- 2.29,
- 2.57,
- 3.22,
- 2.04,
- 1.43,
- 2.5,
- 1.46,
- 0.24,
- 0.08,
- 0.13,
- -0.3,
- 0.27,
- 0.63,
- -0.14,
- -0.21,
- -0.14,
- -0.84,
- -1.71,
- -2.98,
- -3.47,
- -2.84,
- -2.81,
- -1.9,
- -1.81,
- -1.47,
- -2.93,
- -4.64,
- -4.34,
- -5.02,
- -5.47,
- -6.01,
- -6.19,
- -5.96,
- -6.4,
- -7.0,
- -7.68,
- -8.09,
- -7.39,
- -6.1,
- -5.13,
- -2.99,
- -1.52,
- -0.69,
- 0.0,
- 0.21,
- 0.68,
- -0.95,
- -1.0,
- 0.38,
- 1.88,
- 1.85,
- 1.84,
- 1.73,
- 1.19,
- 0.56,
- 0.45,
- 0.43,
- 0.26,
- -0.55,
- -0.74,
- -1.28,
- -2.55,
- -2.17,
- -1.05,
- -2.23,
- -2.66,
- -0.02,
- 1.31,
- 1.46,
- 0.94,
- 1.16,
- 1.2,
- 0.54,
- 0.24,
- -0.18,
- -0.16,
- 0.83,
- 1.59,
- 1.4,
- 1.1,
- 0.94,
- 0.72,
- 1.14,
- 1.73,
- 1.07,
- -0.46,
- -0.11,
- 0.4,
- 0.02,
- 0.19,
- 1.17,
- 1.57,
- 1.72,
- 1.45,
- 1.83,
- 2.83,
- 3.03,
- 3.23,
- 3.05,
- 2.45,
- 2.47,
- 2.87,
- 2.81,
- 2.65,
- 2.69,
- 2.78,
- 2.83,
- 2.9,
- 3.54,
- 3.71,
- 3.22,
- 2.75,
- 1.49,
- 0.61,
- 0.21,
- 0.27,
- 0.72,
- 1.4,
- 1.17,
- -0.15,
- -0.9,
- -1.46,
- -2.4,
- -3.9,
- -3.76,
- -4.57,
- -4.44,
- -4.06,
- -3.89,
- -4.04,
- -3.72,
- -2.7,
- -1.32,
- -1.44,
- -3.07,
- -3.63,
- -1.28,
- -0.57,
- -0.8,
- -2.24,
- -4.79,
- -5.65,
- -5.52,
- -5.79,
- -6.31,
- -6.62,
- -7.14,
- -8.29,
- -6.87,
- -6.9,
- -4.65,
- -0.99,
- 0.45,
- 5.8,
- 7.46,
- 8.52,
- 10.14,
- 10.76,
- 8.49,
- 7.24,
- 6.75,
- 6.25,
- 3.81,
- 1.1,
- -0.56,
- -2.54,
- -3.93,
- -5.02,
- -7.15,
- -8.3,
- -9.67,
- -4.73,
- -4.33,
- -3.97,
- -2.91,
- -1.52,
- -2.73,
- -3.4,
- -4.41,
- -6.32,
- -9.32,
- -13.98,
- -18.53,
- -19.31,
- -18.71,
- -16.93,
- -14.49,
- -12.08,
- -10.27,
- -9.75,
- -9.83,
- -9.82,
- -9.37,
- -7.41,
- -4.97,
- -2.82,
- -0.5,
- 1.82,
- 3.64,
- 4.98,
- 5.75,
- 6.02,
- 6.01,
- 6.06,
- 9.53,
- 8.36,
- 6.95,
- 6.86,
- 7.86,
- 8.25,
- 8.55,
- 9.25,
- 9.96,
- 10.46,
- 10.45,
- 8.78,
- 4.61,
- 1.7,
- 2.0,
- 2.5,
- 1.78,
- 2.32,
- 0.45,
- 0.92,
- 1.21,
- 0.76,
- 0.41,
- -0.1,
- -0.88,
- -0.87,
- -0.68,
- -0.49,
- -0.65,
- -0.64,
- -0.2,
- -0.41,
- -0.31,
- -0.29,
- -0.54,
- -0.72,
- -0.91,
- -1.17,
- -0.91,
- -0.77,
- -1.09,
- -2.46,
- -2.61,
- -2.4,
- -2.73,
- -2.82,
- -4.04,
- -3.61,
- -1.67,
- -2.3,
- -2.48,
- -2.43,
- -2.56,
- -3.11,
- -3.44,
- -3.77,
- -4.17,
- -4.67,
- -4.09,
- -4.24,
- -4.43,
- -4.61,
- -5.32,
- -5.55,
- -5.09,
- -3.67,
- -3.11,
- -5.74,
- -7.18,
- -7.01,
- -6.97,
- -7.41,
- -8.68,
- -9.17,
- -7.17,
- -6.64,
- -7.14,
- -7.36,
- -6.58,
- -6.65,
- -6.47,
- -6.29,
- -6.34,
- -6.43,
- -6.44,
- -5.95,
- -4.73,
- -4.3,
- -3.08,
- -1.13,
- -1.44,
- -2.27,
- -1.1,
- -0.23,
- -1.14,
- 0.25,
- 1.37,
- 1.57,
- 0.78,
- -0.68,
- -2.16,
- -4.05,
- -4.97,
- -5.2,
- -5.28,
- -5.56,
- -5.03,
- -4.33,
- -3.81,
- -3.66,
- -3.85,
- -3.21,
- -2.72,
- -2.73,
- -3.04,
- -2.91,
- -2.2,
- -2.0,
- -1.63,
- -1.41,
- -1.64,
- -2.29,
- -3.44,
- -3.44,
- -1.6,
- -0.14,
- 0.37,
- 1.01,
- 1.77,
- 1.58,
- 1.75,
- 2.3,
- 1.06,
- 1.63,
- 2.7,
- 2.97,
- 3.28,
- 4.66,
- 4.09,
- 3.53,
- 1.9,
- 1.85,
- 1.71,
- 3.25,
- 3.65,
- 1.74,
- 1.97,
- 0.72,
- -0.87,
- 0.14,
- 1.94,
- 2.13,
- 2.03,
- 2.17,
- 2.69,
- 3.22,
- 3.03,
- 2.69,
- 1.93,
- 1.79,
- 1.11,
- 1.48,
- 1.11,
- -0.05,
- -0.51,
- -0.03,
- 0.27,
- 0.06,
- -0.04,
- -0.43,
- -1.05,
- -1.82,
- -2.62,
- -2.39,
- -1.87,
- -1.03,
- -1.25,
- 0.79,
- 2.01,
- 1.74,
- -0.52,
- -1.53,
- -2.73,
- -4.76,
- -3.44,
- -4.73,
- -5.82,
- -5.4,
- -5.42,
- -6.59,
- -7.3,
- -7.93,
- -7.82,
- -6.62,
- -4.77,
- -3.29,
- -1.99,
- 0.6,
- 1.51,
- 0.15,
- -0.97,
- -1.85,
- -0.25,
- 1.0,
- 0.18,
- -1.85,
- -1.03,
- -0.08,
- -0.88,
- -1.54,
- 0.02,
- -0.06,
- -1.82,
- -2.33,
- -2.56,
- -2.43,
- -1.4,
- -0.52,
- 0.16,
- 0.23,
- 0.76,
- 1.48,
- 1.16,
- 0.91,
- 0.82,
- 0.14,
- -0.09,
- 1.05,
- 1.08,
- 0.01,
- -0.26,
- -0.57,
- -0.07,
- 0.16,
- 1.04,
- 1.11,
- 1.01,
- 0.95,
- 0.1,
- -0.16,
- 0.76,
- 1.3,
- 1.95,
- 1.91,
- 1.77,
- 2.28,
- 3.11,
- 2.98,
- 2.88,
- 2.72,
- 3.04,
- 3.36,
- 3.83,
- 4.3,
- 3.8,
- 4.0,
- 4.18,
- 4.15,
- 3.51,
- 3.69,
- 3.72,
- 3.77,
- 3.74,
- 3.67,
- 4.38,
- 5.06,
- 4.07,
- 2.57,
- 2.51,
- 2.22,
- 1.3,
- 0.24,
- 0.21,
- 1.47,
- 0.32,
- -0.03,
- -1.31,
- -2.77,
- -3.44,
- -2.97,
- -3.45,
- -3.58,
- -3.59,
- -3.7,
- -3.71,
- -3.73,
- -3.65,
- -3.52,
- -3.44,
- -4.64,
- -4.3,
- -5.63,
- -3.11,
- 0.35,
- -0.16,
- -1.47,
- -0.03,
- 0.12,
- -0.5,
- -8.03,
- -9.4,
- -8.82,
- -8.56,
- -8.98,
- -9.37,
- -9.37,
- -5.91,
- -1.62,
- -0.27,
- 5.39,
- 7.61,
- 7.97,
- 9.89,
- 8.81,
- 7.34,
- 7.23,
- 6.55,
- 6.31,
- 4.02,
- -0.74,
- -3.21,
- -5.24,
- -6.27,
- -7.17,
- -11.15,
- -11.0,
- -5.41,
- -3.82,
- -5.3,
- -7.17,
- -8.49,
- -8.39,
- -7.39,
- -6.89,
- -9.02,
- -11.65,
- -14.1,
- -15.5,
- -16.55,
- -17.2,
- -16.81,
- -15.01,
- -12.76,
- -10.79,
- -9.21,
- -9.27,
- -10.47,
- -11.44,
- -11.12,
- -9.32,
- -6.69,
- -3.71,
- -0.45,
- 2.63,
- 4.99,
- 6.49,
- 7.86,
- 9.86,
- 10.96,
- 10.52,
- 13.25,
- 12.38,
- 9.96,
- 6.88,
- 5.46,
- 7.93,
- 8.52,
- 8.66,
- 9.81,
- 10.65,
- 11.37,
- 9.77,
- 3.18,
- 0.85,
- 1.02,
- 1.04,
- 1.55,
- 1.84,
- 0.95,
- 0.73,
- 0.12,
- -0.12,
- -0.57,
- -1.19,
- -1.59,
- -1.94,
- -2.16,
- -2.1,
- -2.11,
- -1.25,
- -0.68,
- -1.02,
- -0.72,
- -0.65,
- -0.21,
- 1.17,
- 1.18,
- 0.52,
- -0.4,
- -1.12,
- -2.81,
- -3.3,
- -2.09,
- -2.87,
- -3.33,
- -2.19,
- -2.54,
- -2.56,
- -2.23,
- -1.94,
- -1.92,
- -2.26,
- -2.54,
- -3.11,
- -3.52,
- -3.75,
- -4.15,
- -4.51,
- -3.5,
- -3.14,
- -3.1,
- -3.92,
- -5.0,
- -6.24,
- -6.04,
- -4.82,
- -2.5,
- -4.88,
- -5.81,
- -5.58,
- -5.87,
- -6.64,
- -6.66,
- -6.32,
- -6.49,
- -6.72,
- -7.22,
- -7.45,
- -6.62,
- -5.99,
- -6.09,
- -6.15,
- -5.71,
- -5.55,
- -4.9,
- -4.59,
- -4.25,
- -3.79,
- -3.01,
- -1.88,
- -0.97,
- -0.57,
- 0.28,
- -0.26,
- 0.47,
- 0.92,
- 0.2,
- -0.05,
- -0.86,
- -2.0,
- -3.42,
- -3.95,
- -5.23,
- -5.35,
- -5.26,
- -4.74,
- -4.97,
- -4.79,
- -3.89,
- -3.31,
- -3.22,
- -2.7,
- -1.83,
- -1.78,
- -1.92,
- 0.19,
- 0.86,
- 0.0,
- -0.49,
- -0.17,
- 0.18,
- -0.07,
- 0.69,
- 1.83,
- 2.67,
- 2.73,
- 2.57,
- 0.33,
- 1.78,
- 4.6,
- 4.81,
- 4.47,
- 4.32,
- 3.67,
- 2.55,
- 3.27,
- 4.35,
- 4.06,
- 4.39,
- 2.53,
- 2.17,
- 1.37,
- 2.4,
- 2.38,
- 0.23,
- -0.16,
- 1.15,
- 0.96,
- 0.95,
- 2.26,
- 3.39,
- 3.09,
- 2.23,
- 3.35,
- 2.51,
- 3.28,
- 3.52,
- 2.45,
- 2.31,
- 1.81,
- 1.4,
- 1.38,
- 1.61,
- 1.88,
- 2.12,
- 1.46,
- 0.36,
- 0.08,
- 0.23,
- -0.61,
- -1.53,
- -1.9,
- -1.15,
- -1.63,
- -2.42,
- -1.27,
- -0.42,
- 0.04,
- 0.04,
- 0.04,
- 0.57,
- -0.85,
- -1.64,
- -4.57,
- -4.75,
- -4.4,
- -5.23,
- -5.4,
- -5.65,
- -5.32,
- -8.93,
- -8.66,
- -7.44,
- -4.72,
- -2.23,
- -1.42,
- -1.59,
- -1.31,
- -0.46,
- 0.27,
- 0.4,
- 1.34,
- 0.71,
- -0.64,
- -1.93,
- -1.87,
- -0.83,
- -0.99,
- 0.29,
- 0.89,
- -0.05,
- -0.56,
- -0.37,
- 0.26,
- 0.85,
- 0.48,
- 1.18,
- 1.08,
- 1.14,
- 0.9,
- 1.36,
- 1.71,
- 1.44,
- 0.79,
- 0.28,
- -0.1,
- -0.44,
- 0.52,
- 0.45,
- 0.08,
- -0.57,
- -0.94,
- -1.07,
- -0.68,
- 0.23,
- -0.19,
- -0.64,
- -0.37,
- -0.62,
- 1.13,
- 1.79,
- 1.43,
- 1.43,
- 1.7,
- 1.75,
- 1.95,
- 2.0,
- 3.73,
- 3.97,
- 4.29,
- 4.51,
- 3.67,
- 4.34,
- 4.44,
- 4.22,
- 4.09,
- 4.2,
- 3.97,
- 3.7,
- 3.65,
- 3.82,
- 4.23,
- 4.55,
- 4.7,
- 5.69,
- 6.05,
- 4.99,
- 3.64,
- 2.31,
- 0.98,
- 0.09,
- 0.33,
- -0.11,
- -0.81,
- 0.39,
- 0.23,
- -0.74,
- -1.69,
- -2.37,
- -2.68,
- -3.02,
- -3.26,
- -3.34,
- -3.37,
- -3.48,
- -3.57,
- -4.09,
- -3.13,
- -3.09,
- -2.32,
- -2.98,
- -4.83,
- -5.77,
- -2.91,
- -0.57,
- -1.93,
- -4.76,
- -3.74,
- -0.57,
- -5.24,
- -12.91,
- -11.68,
- -10.53,
- -9.84,
- -10.75,
- -10.63,
- -7.28,
- 1.64,
- 0.93,
- 3.81,
- 8.98,
- 10.4,
- 11.07,
- 10.65,
- 11.52,
- 10.47,
- 7.32,
- 5.96,
- 3.92,
- 0.27,
- -2.77,
- -4.8,
- -1.93,
- -1.87,
- -5.22,
- -6.86,
- -9.8,
- -9.45,
- -8.18,
- -8.57,
- -8.88,
- -9.22,
- -8.65,
- -7.48,
- -6.95,
- -8.17,
- -7.97,
- -7.56,
- -9.56,
- -12.87,
- -11.02,
- -7.6,
- -6.4,
- -6.97,
- -3.19,
- -5.03,
- -8.61,
- -9.41,
- -10.51,
- -10.83,
- -9.23,
- -5.79,
- -1.07,
- 4.72,
- 9.57,
- 10.53,
- 9.07,
- 7.93,
- 10.22,
- 12.62,
- 14.9,
- 14.61,
- 12.51,
- 9.23,
- 5.49,
- 2.84,
- 7.61,
- 10.4,
- 10.0,
- 9.45,
- 10.23,
- 9.09,
- 5.71,
- 3.36,
- 2.14,
- 1.49,
- 1.12,
- 1.19,
- 0.58,
- 0.0,
- 0.02,
- -0.59,
- -1.93,
- -3.15,
- -3.23,
- -2.69,
- -2.05,
- -1.93,
- -1.52,
- -1.59,
- -0.59,
- 0.09,
- -0.17,
- -0.41,
- -0.37,
- 0.29,
- 0.08,
- -0.13,
- -0.81,
- -0.83,
- -0.75,
- -1.11,
- -1.3,
- -1.56,
- -1.87,
- -1.98,
- -2.04,
- -2.19,
- -2.48,
- -2.55,
- -2.49,
- -2.56,
- -2.7,
- -2.69,
- -2.79,
- -2.96,
- -3.2,
- -3.46,
- -3.56,
- -3.35,
- -1.97,
- -2.84,
- -3.64,
- -5.15,
- -6.54,
- -3.97,
- -3.99,
- -5.26,
- -4.98,
- -5.28,
- -6.08,
- -6.52,
- -6.94,
- -7.07,
- -7.0,
- -7.11,
- -7.05,
- -7.15,
- -7.11,
- -6.85,
- -6.66,
- -6.38,
- -6.2,
- -5.75,
- -5.25,
- -4.76,
- -4.48,
- -4.07,
- -3.14,
- -1.52,
- -0.65,
- -0.38,
- -0.14,
- -0.02,
- -0.15,
- -0.36,
- 0.12,
- -0.15,
- -1.44,
- -2.53,
- -3.4,
- -4.05,
- -3.97,
- -3.77,
- -3.9,
- -3.8,
- -3.5,
- -2.3,
- -0.61,
- 0.15,
- 0.95,
- 1.29,
- 1.7,
- 1.58,
- 1.23,
- 0.63,
- 0.11,
- -0.04,
- -0.51,
- -0.82,
- -1.42,
- -1.04,
- 0.8,
- 2.99,
- 4.1,
- 5.95,
- 5.3,
- 4.0,
- 3.18,
- 5.07,
- 4.93,
- 3.8,
- 2.76,
- 2.61,
- 3.05,
- 3.97,
- 4.95,
- 4.35,
- 2.76,
- 2.16,
- 0.92,
- 2.08,
- 2.47,
- 2.23,
- 1.47,
- 2.07,
- 1.43,
- 0.34,
- 0.32,
- 0.32,
- 0.91,
- 2.8,
- 2.42,
- 1.79,
- 1.52,
- 1.1,
- 1.63,
- 0.98,
- 0.31,
- 0.3,
- 1.23,
- 1.52,
- 1.35,
- 1.05,
- 1.34,
- 1.34,
- 0.58,
- -0.01,
- -0.77,
- -0.93,
- 1.13,
- 0.4,
- -0.7,
- -1.23,
- -1.89,
- 0.15,
- -0.33,
- -1.05,
- -1.07,
- -1.05,
- -2.69,
- -5.35,
- -4.68,
- -6.89,
- -6.92,
- -5.83,
- -6.29,
- -3.1,
- -5.5,
- -6.39,
- -9.62,
- -10.31,
- -8.77,
- -7.24,
- -2.61,
- -2.03,
- -2.35,
- -1.02,
- -1.41,
- -1.3,
- 0.24,
- 0.55,
- -0.14,
- -0.99,
- -0.21,
- 0.87,
- 0.36,
- 0.52,
- 1.28,
- -0.69,
- -1.82,
- -1.46,
- 1.41,
- 2.26,
- 1.84,
- 2.59,
- 2.39,
- 2.28,
- 1.52,
- 1.15,
- 1.51,
- 2.39,
- 2.32,
- 1.36,
- 2.41,
- 3.16,
- 1.94,
- 0.79,
- 0.5,
- -1.16,
- -1.03,
- -1.16,
- -0.21,
- -0.95,
- -1.14,
- -1.07,
- -0.38,
- -0.91,
- 1.12,
- 0.07,
- 1.86,
- 2.13,
- 1.4,
- 1.79,
- 1.96,
- 2.19,
- 2.57,
- 2.72,
- 3.15,
- 3.63,
- 3.47,
- 3.45,
- 3.32,
- 3.31,
- 3.21,
- 3.25,
- 2.88,
- 3.04,
- 3.17,
- 3.47,
- 3.91,
- 4.38,
- 4.44,
- 4.52,
- 5.24,
- 5.06,
- 4.29,
- 3.24,
- 1.61,
- -0.2,
- -1.44,
- -1.13,
- -0.33,
- 0.17,
- 0.38,
- 0.09,
- -0.31,
- -0.57,
- -2.37,
- -2.44,
- -2.23,
- -2.36,
- -1.94,
- -1.52,
- -3.81,
- -4.71,
- -3.52,
- -2.0,
- -3.96,
- -3.76,
- -4.24,
- -4.01,
- -4.14,
- -3.0,
- -1.91,
- -4.28,
- -1.96,
- -1.2,
- -1.34,
- -3.66,
- -6.62,
- -8.67,
- -10.69,
- -12.1,
- -12.28,
- -13.63,
- -1.42,
- 5.34,
- 3.26,
- 6.61,
- 7.85,
- 7.39,
- 8.92,
- 7.7,
- 5.51,
- 3.1,
- 2.32,
- 0.44,
- -1.52,
- -2.27,
- -4.27,
- -4.32,
- -6.21,
- -8.63,
- -9.88,
- -10.98,
- -11.72,
- -11.05,
- -10.91,
- -10.89,
- -9.9,
- -7.55,
- -5.91,
- -4.33,
- -3.7,
- -4.87,
- -5.84,
- -5.94,
- -4.93,
- -5.09,
- -5.21,
- -3.82,
- -1.76,
- 0.88,
- 0.1,
- -2.82,
- -2.74,
- -7.3,
- -8.26,
- -6.63,
- -5.4,
- -2.42,
- 1.34,
- 5.21,
- 7.68,
- 7.73,
- 8.26,
- 7.28,
- 9.18,
- 13.2,
- 14.88,
- 13.52,
- 11.27,
- 8.2,
- 6.9,
- 5.41,
- 2.75,
- 7.93,
- 6.94,
- 8.03,
- 6.06,
- 4.97,
- 4.93,
- 4.78,
- 3.71,
- 2.19,
- 1.79,
- 2.01,
- 1.26,
- 0.18,
- -0.84,
- -1.3,
- -1.15,
- -3.2,
- -2.31,
- -2.55,
- -2.63,
- -2.26,
- -1.81,
- -1.48,
- -0.38,
- -0.02,
- -0.21,
- -0.66,
- -0.65,
- -0.55,
- -0.25,
- 0.22,
- 0.29,
- -0.3,
- -0.49,
- -0.53,
- -0.74,
- -1.14,
- -1.38,
- -1.46,
- -1.62,
- -1.71,
- -1.71,
- -1.79,
- -1.69,
- -2.04,
- -2.18,
- -2.5,
- -2.66,
- -2.57,
- -2.8,
- -2.55,
- -2.25,
- -1.1,
- -2.58,
- -2.46,
- -3.21,
- -5.68,
- -6.22,
- -4.66,
- -4.42,
- -4.62,
- -4.83,
- -5.15,
- -5.12,
- -5.61,
- -6.29,
- -6.77,
- -7.19,
- -7.25,
- -7.08,
- -7.49,
- -7.49,
- -6.76,
- -6.44,
- -6.51,
- -5.78,
- -4.35,
- -3.4,
- -3.17,
- -2.14,
- -0.81,
- 0.07,
- 1.17,
- 1.88,
- 1.42,
- 0.97,
- 0.21,
- 0.11,
- 0.2,
- 0.17,
- -0.3,
- -1.67,
- -2.36,
- -3.27,
- -3.11,
- -2.94,
- -2.61,
- -2.1,
- -1.33,
- 0.46,
- 2.76,
- 3.08,
- 2.11,
- 1.8,
- 1.01,
- 1.42,
- 2.15,
- 1.15,
- -0.36,
- -1.49,
- -1.42,
- -0.92,
- -1.49,
- -0.74,
- 1.17,
- 2.49,
- 2.87,
- 3.15,
- 3.59,
- 3.49,
- 3.3,
- 2.82,
- 2.26,
- 1.63,
- 1.75,
- 1.37,
- 1.19,
- 3.05,
- 3.02,
- 3.13,
- 3.26,
- 3.68,
- 1.73,
- 0.93,
- 2.21,
- 2.24,
- 1.41,
- 1.05,
- -0.16,
- 0.55,
- 0.52,
- 0.86,
- 1.61,
- 1.66,
- 1.44,
- 1.88,
- 2.12,
- 1.19,
- 1.27,
- 2.2,
- 2.65,
- 3.1,
- 2.33,
- 2.19,
- 1.83,
- 1.79,
- 0.52,
- 0.19,
- -0.36,
- -0.85,
- 0.31,
- 0.42,
- -0.16,
- -0.44,
- -0.54,
- -0.58,
- -0.67,
- -1.77,
- -1.34,
- -0.88,
- -1.64,
- -2.06,
- -1.97,
- -4.73,
- -6.55,
- -7.16,
- -8.06,
- -6.58,
- -7.57,
- -0.85,
- -1.08,
- -8.22,
- -7.65,
- -8.88,
- -9.12,
- -9.05,
- -5.15,
- -1.98,
- -2.5,
- -1.34,
- -0.63,
- 2.13,
- 2.13,
- 0.44,
- -0.09,
- -0.89,
- -1.06,
- -1.08,
- -1.75,
- 0.65,
- 1.99,
- 1.86,
- 1.9,
- 3.39,
- 3.33,
- 4.66,
- 3.3,
- 5.44,
- 1.76,
- 0.93,
- 1.75,
- 2.44,
- 2.14,
- 1.89,
- 0.83,
- -0.15,
- -0.4,
- -1.31,
- -0.09,
- 0.26,
- 1.07,
- 0.87,
- 0.73,
- -0.17,
- -1.02,
- -1.24,
- -2.15,
- -1.83,
- 0.04,
- -0.22,
- 0.52,
- 0.82,
- 0.93,
- 1.48,
- 1.77,
- 1.61,
- 1.84,
- 1.83,
- 1.67,
- 1.72,
- 1.74,
- 1.97,
- 2.01,
- 2.33,
- 2.66,
- 2.85,
- 3.19,
- 3.21,
- 2.8,
- 2.27,
- 2.93,
- 3.87,
- 3.57,
- 3.62,
- 4.59,
- 5.06,
- 4.59,
- 4.28,
- 3.87,
- 3.54,
- 2.92,
- 1.3,
- -0.5,
- -0.68,
- -1.19,
- -0.64,
- -0.12,
- -1.31,
- -2.5,
- -2.37,
- 0.79,
- -0.72,
- -2.3,
- -3.09,
- -3.6,
- -3.72,
- -2.56,
- -4.55,
- -5.5,
- -5.08,
- -3.52,
- -3.88,
- -4.66,
- -4.15,
- -5.83,
- -6.01,
- -6.96,
- -5.06,
- -0.16,
- -4.56,
- -7.28,
- -4.29,
- -3.49,
- -11.65,
- -11.83,
- -11.83,
- -11.3,
- -10.91,
- -11.32,
- 0.72,
- 9.85,
- 7.85,
- 4.83,
- 8.85,
- 7.6,
- 5.56,
- 3.92,
- 2.49,
- 1.24,
- -0.58,
- -3.04,
- -7.17,
- -8.09,
- -11.71,
- -10.19,
- -10.87,
- -10.78,
- -10.02,
- -9.25,
- -9.16,
- -8.99,
- -8.53,
- -7.59,
- -6.31,
- -5.07,
- -4.19,
- -3.81,
- -3.72,
- -3.33,
- -4.57,
- -6.92,
- -4.66,
- -2.8,
- -0.6,
- -2.94,
- -6.89,
- -3.35,
- -1.46,
- 0.27,
- -2.22,
- -4.35,
- -4.86,
- -5.04,
- -4.13,
- -2.47,
- -0.46,
- 1.85,
- 4.66,
- 5.83,
- 6.76,
- 8.47,
- 10.2,
- 13.53,
- 10.23,
- 9.27,
- 7.22,
- 5.03,
- 8.66,
- 9.04,
- 5.95,
- 2.55,
- 2.98,
- 2.13,
- 5.97,
- 5.69,
- 3.87,
- 4.81,
- 4.06,
- 2.23,
- 1.71,
- 1.11,
- 0.3,
- 0.07,
- -1.76,
- -2.65,
- -1.31,
- -1.09,
- -2.03,
- -2.67,
- -2.97,
- -2.43,
- -2.38,
- -1.38,
- -0.43,
- -0.22,
- -0.66,
- -0.49,
- 0.03,
- 0.39,
- 0.58,
- 0.55,
- 0.69,
- 0.77,
- 0.55,
- -0.07,
- -0.02,
- 0.32,
- 0.07,
- -0.38,
- -0.68,
- -0.84,
- -0.93,
- -1.06,
- -1.23,
- -0.86,
- -0.77,
- -0.67,
- -1.33,
- -1.57,
- -2.11,
- -2.35,
- -2.2,
- -1.86,
- -2.48,
- -3.82,
- -3.37,
- -3.46,
- -3.93,
- -4.2,
- -3.84,
- -3.5,
- -3.67,
- -4.11,
- -5.03,
- -5.12,
- -4.51,
- -4.52,
- -5.28,
- -5.85,
- -6.08,
- -6.13,
- -5.69,
- -4.97,
- -3.97,
- -3.61,
- -2.85,
- -2.08,
- -1.75,
- -1.4,
- -1.28,
- -0.37,
- 1.3,
- 3.01,
- 3.39,
- 3.47,
- 3.21,
- 2.65,
- 1.13,
- 0.38,
- -0.06,
- -0.27,
- -0.48,
- -1.42,
- -2.23,
- -2.02,
- -1.63,
- -2.06,
- -1.43,
- -1.06,
- -0.31,
- 0.24,
- 0.37,
- 0.83,
- 1.33,
- 1.71,
- 2.56,
- 1.95,
- 1.26,
- 0.48,
- -0.18,
- -0.66,
- -0.45,
- -1.31,
- -0.82,
- 1.47,
- 3.04,
- 2.94,
- 3.64,
- 4.66,
- 3.85,
- 2.08,
- 2.1,
- 2.01,
- 1.97,
- 2.15,
- 2.37,
- 2.74,
- 2.66,
- 2.43,
- 0.82,
- 0.48,
- 1.75,
- 3.0,
- 2.64,
- 0.76,
- 0.08,
- -0.05,
- -0.12,
- 0.69,
- 0.63,
- 0.8,
- 0.32,
- 0.88,
- 1.03,
- 1.25,
- 1.88,
- 2.44,
- 2.19,
- 2.23,
- 2.55,
- 2.72,
- 2.65,
- 2.59,
- 1.89,
- 1.2,
- 0.76,
- 1.08,
- 0.83,
- 0.38,
- 0.48,
- 0.36,
- -0.66,
- -0.84,
- -0.82,
- -0.98,
- -1.26,
- -1.38,
- -1.49,
- -2.03,
- -1.96,
- -2.5,
- -2.4,
- -2.32,
- -6.17,
- -8.0,
- -8.27,
- -8.06,
- -6.47,
- -4.2,
- -2.42,
- -7.32,
- -9.45,
- -8.89,
- -8.89,
- -8.03,
- -6.59,
- -6.12,
- -6.17,
- -4.5,
- -2.28,
- 2.78,
- 2.97,
- 1.12,
- -0.33,
- -0.97,
- -1.49,
- -1.28,
- -1.98,
- 0.07,
- 3.69,
- 3.73,
- 4.47,
- 1.94,
- 0.35,
- 0.96,
- 0.54,
- -0.38,
- 0.35,
- -0.11,
- 0.95,
- 2.56,
- 1.11,
- -0.47,
- 0.71,
- 0.28,
- -0.04,
- 0.87,
- 2.0,
- 2.3,
- 1.9,
- 1.33,
- 0.67,
- 0.77,
- 0.7,
- 1.79,
- 2.08,
- 1.45,
- 0.98,
- -0.18,
- -0.93,
- -1.17,
- 0.37,
- 0.82,
- 0.24,
- 1.64,
- 2.6,
- 1.5,
- 1.08,
- 1.44,
- 1.39,
- 1.56,
- 1.43,
- -0.3,
- -0.74,
- 1.01,
- 2.07,
- 2.63,
- 3.09,
- 2.59,
- 2.84,
- 3.18,
- 4.4,
- 4.91,
- 4.57,
- 4.25,
- 4.75,
- 4.85,
- 4.3,
- 4.22,
- 3.51,
- 2.55,
- 1.09,
- 0.17,
- -0.15,
- -0.92,
- -1.69,
- -2.33,
- -2.42,
- -2.62,
- -1.49,
- -0.03,
- -2.02,
- -2.89,
- -3.35,
- -3.66,
- -3.29,
- -2.74,
- -2.36,
- -3.03,
- -3.62,
- -4.06,
- -5.77,
- -4.3,
- -5.56,
- -5.07,
- -3.49,
- -2.66,
- -2.35,
- 0.91,
- -1.44,
- -5.07,
- -3.6,
- -8.31,
- -12.32,
- -10.73,
- -10.18,
- -9.6,
- -8.18,
- -5.14,
- 1.04,
- 2.44,
- 3.31,
- 0.59,
- -0.29,
- 0.68,
- 1.25,
- 0.86,
- 0.56,
- 0.3,
- -2.56,
- -3.1,
- -7.25,
- -14.25,
- -10.46,
- -9.66,
- -8.62,
- -8.04,
- -7.38,
- -6.59,
- -5.79,
- -5.09,
- -4.54,
- -4.0,
- -3.33,
- -2.71,
- -2.21,
- -1.96,
- -2.09,
- -2.56,
- -3.39,
- -4.1,
- -3.76,
- -4.56,
- -6.47,
- -5.21,
- -6.55,
- -3.63,
- -0.8,
- -0.57,
- -1.74,
- -2.86,
- -3.16,
- -2.38,
- -1.2,
- 0.0,
- 1.4,
- 3.28,
- 5.25,
- 6.7,
- 7.51,
- 8.09,
- 9.33,
- 10.84,
- 5.84,
- 5.65,
- 5.45,
- 7.68,
- 8.95,
- 4.55,
- 1.41,
- 2.11,
- 1.82,
- 2.52,
- 2.5,
- 3.52,
- 3.58,
- 2.53,
- 2.55,
- 2.06,
- 1.27,
- 0.93,
- 2.84,
- 2.07,
- 0.63,
- -0.69,
- -1.44,
- -1.91,
- -1.45,
- -1.49,
- -2.63,
- -3.01,
- -2.52,
- -1.88,
- 0.04,
- 0.1,
- -0.19,
- -0.31,
- -0.01,
- 1.16,
- 1.08,
- 0.63,
- 1.15,
- 1.26,
- 1.25,
- 1.22,
- 1.29,
- 1.08,
- 0.42,
- 0.52,
- 0.66,
- 0.52,
- 0.1,
- -0.03,
- 0.0,
- 0.27,
- 0.53,
- 0.38,
- -0.07,
- -0.16,
- -0.37,
- -0.41,
- -0.59,
- -0.49,
- -2.66,
- -2.93,
- -2.54,
- -2.71,
- -2.85,
- -2.92,
- -2.92,
- -2.75,
- -2.85,
- -3.27,
- -3.49,
- -3.95,
- -3.98,
- -5.27,
- -4.13,
- -3.81,
- -3.73,
- -3.29,
- -2.93,
- -2.68,
- -2.42,
- -1.84,
- -1.71,
- -0.9,
- -0.65,
- -0.16,
- 0.16,
- 0.68,
- 1.41,
- 2.52,
- 3.5,
- 3.87,
- 3.33,
- 2.6,
- 1.97,
- 0.95,
- 0.12,
- -0.84,
- -1.54,
- -1.71,
- -1.08,
- -1.16,
- -1.52,
- -1.1,
- -0.61,
- -0.06,
- -0.13,
- 0.08,
- 0.44,
- 0.36,
- 0.08,
- 0.16,
- 0.76,
- 2.12,
- 1.9,
- 0.96,
- -0.04,
- -0.48,
- -0.94,
- -1.06,
- -1.53,
- -0.04,
- 2.02,
- 2.37,
- 2.1,
- 2.43,
- 3.52,
- 5.05,
- 5.31,
- 5.23,
- 5.48,
- 4.83,
- 5.11,
- 5.23,
- 5.41,
- 5.43,
- 3.92,
- 2.32,
- 2.32,
- 2.27,
- 2.05,
- 0.34,
- 1.26,
- 0.04,
- -0.2,
- -0.62,
- 0.45,
- 0.66,
- 1.02,
- 0.75,
- 1.93,
- 1.49,
- 2.43,
- 2.25,
- 2.57,
- 2.52,
- 2.51,
- 2.21,
- 2.05,
- 2.38,
- -0.9,
- -1.63,
- 0.85,
- 0.09,
- -1.67,
- -0.49,
- 0.18,
- -0.47,
- -1.19,
- -0.69,
- 0.73,
- 0.15,
- -0.58,
- -1.75,
- -0.81,
- -0.29,
- 0.8,
- -0.54,
- -1.26,
- -0.45,
- -5.66,
- -8.58,
- -8.39,
- -7.87,
- -6.5,
- -5.21,
- -5.77,
- -8.23,
- -10.03,
- -9.39,
- -7.7,
- -6.12,
- -6.93,
- -7.49,
- -6.26,
- -3.69,
- 0.86,
- 1.11,
- 2.57,
- 2.43,
- 1.46,
- 1.01,
- 0.41,
- -0.86,
- 0.12,
- -0.01,
- 0.51,
- -0.26,
- -0.09,
- -0.72,
- 0.16,
- 2.34,
- 1.53,
- 3.02,
- 4.55,
- 3.6,
- 1.99,
- 3.29,
- 2.87,
- 2.85,
- 2.37,
- 2.7,
- 2.08,
- 2.84,
- 2.69,
- 2.6,
- 2.62,
- 1.49,
- 1.48,
- 1.35,
- 1.52,
- 1.49,
- 0.43,
- 0.3,
- 2.08,
- 2.23,
- 0.84,
- 2.47,
- 3.39,
- 3.81,
- 3.14,
- 1.86,
- 0.91,
- 1.1,
- 0.83,
- 1.12,
- 0.79,
- 0.41,
- 0.89,
- 3.21,
- 3.18,
- 2.82,
- 2.77,
- 2.63,
- 2.84,
- 2.9,
- 2.59,
- 2.64,
- 3.59,
- 4.06,
- 4.6,
- 4.7,
- 4.92,
- 3.64,
- 3.14,
- 3.19,
- 2.5,
- 1.64,
- 1.03,
- 0.39,
- -0.65,
- -1.45,
- -2.07,
- -2.64,
- -2.89,
- -2.67,
- -2.24,
- -2.27,
- -2.93,
- -3.13,
- -3.11,
- -3.44,
- -3.65,
- -1.64,
- -0.89,
- -2.15,
- -2.2,
- -3.05,
- -4.99,
- -5.92,
- -5.99,
- -6.6,
- -4.83,
- -0.96,
- -2.91,
- -3.71,
- -3.27,
- -4.54,
- -5.7,
- -9.96,
- -9.65,
- -9.73,
- -9.88,
- -8.6,
- -6.27,
- -3.45,
- -2.28,
- -0.32,
- -2.32,
- -2.9,
- -6.46,
- -3.83,
- -2.16,
- -4.05,
- -8.06,
- -9.2,
- -8.36,
- -10.85,
- -13.85,
- -11.29,
- -9.52,
- -8.44,
- -7.79,
- -6.5,
- -5.09,
- -3.77,
- -2.56,
- -1.32,
- -0.18,
- 0.75,
- 1.32,
- 1.44,
- 1.36,
- 1.24,
- 0.74,
- 0.06,
- -0.64,
- -1.51,
- -2.43,
- -3.28,
- -3.6,
- -3.67,
- -3.43,
- -2.36,
- -0.93,
- -1.12,
- -2.2,
- -3.59,
- -4.59,
- -3.18,
- -0.85,
- 0.74,
- 2.08,
- 3.88,
- 5.53,
- 6.19,
- 6.25,
- 6.17,
- 5.84,
- 5.15,
- 3.04,
- 2.64,
- 3.27,
- 5.36,
- 7.02,
- 0.45,
- 0.11,
- 0.5,
- 1.51,
- 1.24,
- 0.98,
- 1.79,
- 1.98,
- 1.94,
- 1.92,
- 2.38,
- 1.47,
- 0.98,
- 3.11,
- 1.9,
- 0.85,
- -0.68,
- -1.54,
- -2.15,
- -2.06,
- -1.46,
- -2.86,
- -2.98,
- -2.51,
- -1.73,
- -0.68,
- 2.5,
- 2.17,
- 0.94,
- 0.52,
- 0.48,
- 1.47,
- 1.5,
- 1.21,
- 1.49,
- 1.46,
- 1.38,
- 1.22,
- 1.24,
- 1.08,
- 0.87,
- 0.96,
- 0.95,
- 0.71,
- 0.56,
- 0.65,
- 0.87,
- 0.7,
- 0.44,
- 0.41,
- -0.08,
- -0.41,
- -0.11,
- -0.03,
- -0.47,
- -1.89,
- -1.48,
- -1.43,
- -1.68,
- -1.98,
- -1.85,
- -1.58,
- -1.71,
- -1.75,
- -1.41,
- -1.46,
- -1.85,
- -2.11,
- -2.4,
- -2.53,
- -2.94,
- -2.96,
- -2.82,
- -2.39,
- -2.32,
- -1.95,
- -1.78,
- -1.57,
- -1.31,
- -0.97,
- -0.75,
- -0.33,
- 0.28,
- 1.28,
- 2.19,
- 3.5,
- 3.98,
- 2.99,
- 2.1,
- 1.41,
- 1.1,
- 0.54,
- -0.39,
- -0.5,
- -1.31,
- -1.94,
- -1.92,
- -1.12,
- -0.76,
- -1.26,
- -1.59,
- -1.79,
- -1.75,
- -0.78,
- 0.18,
- 0.79,
- 1.06,
- 1.75,
- 2.91,
- 2.81,
- 1.99,
- 1.35,
- 0.05,
- -1.47,
- -1.63,
- -1.56,
- -0.71,
- 1.56,
- 1.94,
- 3.1,
- 4.88,
- 5.11,
- 4.35,
- 4.87,
- 5.35,
- 5.56,
- 5.14,
- 5.16,
- 5.34,
- 5.93,
- 6.03,
- 5.2,
- 1.64,
- 2.21,
- 1.65,
- 1.09,
- 0.39,
- 0.07,
- 0.19,
- -0.48,
- 0.53,
- 1.08,
- 0.02,
- 0.41,
- 1.6,
- 0.94,
- 1.9,
- 1.92,
- 3.27,
- 3.04,
- 2.07,
- 1.12,
- 0.66,
- 0.09,
- -3.32,
- -1.83,
- 0.01,
- -2.22,
- -2.16,
- -1.38,
- -0.24,
- -1.35,
- -1.97,
- -0.7,
- 0.77,
- 0.81,
- 0.3,
- 1.56,
- 1.27,
- -0.28,
- -1.66,
- -2.87,
- -2.19,
- -0.86,
- -2.9,
- -7.14,
- -8.05,
- -8.28,
- -7.46,
- -6.19,
- -5.44,
- -6.19,
- -8.23,
- -8.16,
- -8.79,
- -8.58,
- -7.53,
- -7.48,
- -7.15,
- -5.6,
- -4.43,
- 0.49,
- 5.2,
- 4.73,
- 2.65,
- 3.21,
- 3.92,
- 2.36,
- 2.36,
- 1.75,
- 0.72,
- -1.27,
- 0.23,
- -1.84,
- 1.21,
- 3.01,
- 0.58,
- -3.71,
- -5.21,
- -1.03,
- 0.39,
- 0.61,
- 1.61,
- 1.11,
- 0.12,
- 3.52,
- 2.57,
- 2.83,
- 4.2,
- 3.66,
- 3.36,
- 2.18,
- 2.3,
- 3.08,
- 1.74,
- 0.75,
- 1.51,
- 1.67,
- 2.75,
- 2.83,
- 3.31,
- 1.05,
- 4.11,
- 4.53,
- 3.89,
- 2.94,
- 2.35,
- 1.33,
- 1.35,
- 2.5,
- 3.62,
- 2.75,
- 1.26,
- 1.9,
- 2.8,
- 3.18,
- 3.36,
- 3.26,
- 2.98,
- 2.62,
- 2.49,
- 2.44,
- 2.34,
- 2.11,
- 3.26,
- 3.76,
- 3.25,
- 3.56,
- 3.15,
- 2.71,
- 2.61,
- 2.76,
- 1.69,
- 0.64,
- -0.36,
- -1.5,
- -2.44,
- -3.08,
- -3.4,
- -3.15,
- -1.96,
- -1.21,
- -0.74,
- -0.71,
- -1.29,
- -2.36,
- -2.72,
- -2.89,
- -1.58,
- -1.52,
- -3.16,
- -4.25,
- -4.13,
- -3.55,
- -5.8,
- -6.82,
- -7.45,
- -6.86,
- -3.96,
- -2.82,
- -3.9,
- -4.05,
- -5.12,
- -7.49,
- -9.5,
- -9.27,
- -9.21,
- -7.36,
- -7.33,
- -7.73,
- -7.15,
- -5.82,
- -4.17,
- -4.21,
- -2.31,
- -1.73,
- -7.34,
- -1.22,
- -4.09,
- -5.83,
- -6.42,
- -12.93,
- -14.52,
- -15.97,
- -11.31,
- -6.98,
- -4.03,
- -1.54,
- -0.34,
- 0.31,
- 0.94,
- 1.12,
- 1.16,
- 1.21,
- 1.19,
- 1.37,
- 2.64,
- 3.69,
- 4.24,
- 4.63,
- 4.61,
- 3.89,
- 2.41,
- 0.81,
- -0.82,
- -2.07,
- -2.43,
- -2.33,
- -1.92,
- -2.15,
- -2.73,
- -3.62,
- -4.32,
- -4.49,
- -3.18,
- -1.32,
- 0.86,
- 2.93,
- 4.31,
- 5.74,
- 5.34,
- 4.09,
- 3.37,
- 3.05,
- 3.39,
- -1.46,
- -0.44,
- 0.11,
- 2.8,
- 4.73,
- 0.42,
- -2.98,
- -1.07,
- -0.37,
- -1.66,
- -1.83,
- -0.24,
- 2.18,
- 2.98,
- 3.0,
- 2.68,
- 2.19,
- 2.39,
- 2.81,
- 2.02,
- 0.35,
- -1.35,
- -2.21,
- -2.43,
- -2.11,
- -2.84,
- -3.39,
- -4.35,
- -4.23,
- -2.11,
- 0.03,
- 1.03,
- 1.19,
- 1.35,
- 1.58,
- 1.74,
- 1.58,
- 1.4,
- 1.38,
- 1.4,
- 1.54,
- 1.44,
- 1.33,
- 1.22,
- 1.15,
- 1.26,
- 1.38,
- 1.43,
- 1.31,
- 1.08,
- 0.97,
- 0.87,
- 0.57,
- 0.44,
- 0.04,
- 0.11,
- 0.0,
- -0.11,
- 0.32,
- -1.21,
- -1.55,
- -0.53,
- 0.03,
- 0.01,
- -0.07,
- -0.44,
- -0.87,
- -0.94,
- -0.82,
- -0.82,
- -0.6,
- -0.55,
- -0.65,
- -0.84,
- -1.11,
- -1.37,
- -1.47,
- -1.44,
- -1.41,
- -1.25,
- -0.98,
- -0.54,
- -0.09,
- 0.24,
- 0.34,
- 0.59,
- 0.75,
- 1.07,
- 1.52,
- 2.22,
- 2.32,
- 2.46,
- 2.8,
- 1.82,
- 0.91,
- 0.33,
- -0.12,
- -0.62,
- -0.58,
- -0.99,
- -1.22,
- -1.36,
- -1.65,
- -1.61,
- -1.64,
- -2.15,
- -1.64,
- 0.42,
- 1.02,
- 0.39,
- 0.57,
- 1.39,
- 2.48,
- 3.38,
- 2.27,
- 0.89,
- -0.25,
- -2.05,
- -1.62,
- -1.36,
- -1.64,
- -0.87,
- -0.68,
- 4.0,
- 6.03,
- 5.48,
- 5.32,
- 5.79,
- 5.4,
- 4.98,
- 4.79,
- 4.02,
- 3.69,
- 4.37,
- 5.13,
- 6.08,
- 5.3,
- 1.88,
- 1.85,
- 1.77,
- 1.44,
- 0.26,
- 0.5,
- -0.44,
- -0.49,
- -0.5,
- 0.13,
- -0.51,
- -2.11,
- -1.02,
- 0.28,
- 0.71,
- 0.62,
- 0.05,
- -0.39,
- -0.22,
- 0.07,
- -0.85,
- -2.75,
- -3.47,
- -4.65,
- -5.78,
- 0.48,
- 0.92,
- 1.64,
- 1.04,
- 1.54,
- 2.79,
- 1.55,
- 0.06,
- 0.33,
- 2.47,
- 1.75,
- 1.38,
- -0.8,
- -3.31,
- -4.08,
- -4.03,
- -3.63,
- -3.82,
- -6.41,
- -7.86,
- -7.73,
- -6.66,
- -6.49,
- -6.46,
- -8.65,
- -9.91,
- -10.05,
- -9.77,
- -8.3,
- -7.47,
- -7.09,
- -4.96,
- 0.01,
- 2.17,
- 2.59,
- 1.77,
- 1.08,
- 0.72,
- -0.2,
- -0.65,
- 0.41,
- 1.52,
- 2.08,
- 0.74,
- -0.37,
- -1.58,
- -3.73,
- 1.44,
- 3.25,
- 0.0,
- -0.61,
- 2.17,
- 3.51,
- 3.22,
- 2.28,
- 2.41,
- 0.51,
- -0.17,
- 0.68,
- 1.23,
- 2.54,
- 3.56,
- 4.55,
- 3.62,
- 2.38,
- 2.48,
- 3.88,
- 3.14,
- 2.58,
- 1.83,
- 1.81,
- 2.1,
- 1.97,
- 0.35,
- 1.68,
- 2.9,
- 2.15,
- 1.44,
- 1.3,
- 1.2,
- -0.9,
- -2.67,
- -0.21,
- 2.63,
- 2.42,
- 2.04,
- 1.74,
- 2.95,
- 3.8,
- 2.58,
- 3.11,
- 3.68,
- 3.59,
- 2.32,
- 2.7,
- 2.68,
- 2.91,
- 1.88,
- 2.54,
- 3.31,
- 3.49,
- 2.49,
- 2.5,
- 2.93,
- 3.25,
- 1.64,
- 0.31,
- -1.1,
- -2.37,
- -3.34,
- -3.47,
- -3.17,
- -1.92,
- 0.59,
- 0.89,
- 0.0,
- -0.36,
- -0.71,
- -1.38,
- -1.78,
- -1.76,
- -1.28,
- -1.73,
- -3.39,
- -3.49,
- -2.93,
- -2.67,
- -2.63,
- -3.79,
- -8.87,
- -7.02,
- -5.39,
- -2.15,
- 0.22,
- -1.48,
- -5.75,
- -6.78,
- -7.33,
- -9.49,
- -8.56,
- -9.47,
- -9.98,
- -7.62,
- -4.95,
- -4.16,
- -3.26,
- -3.67,
- -5.75,
- -1.79,
- 0.52,
- -0.54,
- -1.01,
- -0.52,
- -5.1,
- -5.58,
- 2.75,
- 8.56,
- 5.92,
- 4.21,
- 4.26,
- 4.01,
- 3.49,
- 2.97,
- 2.6,
- 2.51,
- 2.47,
- 2.36,
- 1.87,
- 4.17,
- 9.33,
- 8.61,
- 7.83,
- 8.01,
- 7.45,
- 6.97,
- 6.32,
- 5.54,
- 4.04,
- 2.08,
- 0.16,
- -1.41,
- -2.62,
- -3.05,
- -3.31,
- -3.48,
- -3.67,
- -4.06,
- -4.0,
- -3.67,
- -1.99,
- 1.1,
- 4.79,
- 7.3,
- 5.77,
- 2.52,
- 1.13,
- 0.91,
- 1.09,
- -4.32,
- -3.11,
- -2.85,
- 0.99,
- 2.33,
- 1.77,
- 0.14,
- -1.01,
- -1.39,
- -1.37,
- 0.02,
- 0.86,
- 1.96,
- 5.19,
- 3.86,
- 3.24,
- 3.5,
- 3.08,
- 3.35,
- 2.49,
- 0.93,
- -1.32,
- -0.84,
- -0.14,
- -0.63,
- -1.25,
- -1.43,
- -1.51,
- -2.91,
- -2.77,
- -0.88,
- 0.15,
- 0.47,
- 1.18,
- 1.28,
- 1.03,
- 1.27,
- 1.49,
- 1.77,
- 1.31,
- 1.37,
- 1.2,
- 1.08,
- 0.94,
- 0.52,
- 0.89,
- 0.83,
- 0.91,
- 1.01,
- 1.35,
- 1.09,
- 0.41,
- -0.27,
- -0.83,
- -1.0,
- -0.99,
- -0.44,
- -0.13,
- -0.53,
- -1.61,
- -1.14,
- -0.19,
- 0.37,
- 0.37,
- 0.2,
- 0.28,
- 0.17,
- -0.15,
- -0.26,
- -0.06,
- -0.18,
- -0.31,
- -0.36,
- -0.38,
- -0.35,
- -0.43,
- -0.5,
- -0.52,
- -0.54,
- -0.41,
- -0.13,
- 0.11,
- 0.47,
- 0.69,
- 0.85,
- 1.07,
- 1.41,
- 1.72,
- 1.85,
- 1.63,
- 1.34,
- 0.98,
- 0.74,
- 0.69,
- 0.02,
- -0.51,
- -0.52,
- -0.26,
- -0.52,
- -0.76,
- -1.72,
- -1.88,
- -2.07,
- -2.67,
- -2.49,
- 0.36,
- 1.69,
- 1.45,
- 0.88,
- 1.53,
- 3.0,
- 2.55,
- 2.5,
- 1.69,
- 0.75,
- -0.28,
- -0.69,
- -0.81,
- -1.0,
- -2.06,
- -1.45,
- -1.95,
- 4.35,
- 5.66,
- 6.08,
- 5.63,
- 4.25,
- 5.07,
- 4.11,
- 3.97,
- 3.17,
- 2.83,
- 3.94,
- 5.58,
- 5.88,
- 6.02,
- 5.37,
- 2.86,
- 2.52,
- 2.3,
- 1.67,
- 0.56,
- 2.19,
- 3.01,
- 0.84,
- -0.25,
- -0.86,
- -0.26,
- 0.43,
- -0.24,
- -1.29,
- -2.37,
- 1.3,
- 2.27,
- 1.72,
- -0.88,
- -3.59,
- -3.84,
- -4.41,
- -6.67,
- -1.88,
- 1.14,
- 1.59,
- 2.54,
- 1.38,
- 3.14,
- 1.11,
- -0.36,
- -0.17,
- 0.06,
- 0.19,
- 0.33,
- 0.7,
- 0.45,
- -0.73,
- -2.29,
- -2.75,
- -3.03,
- -4.02,
- -5.31,
- -6.39,
- -7.7,
- -8.39,
- -8.3,
- -8.34,
- -8.33,
- -8.68,
- -10.08,
- -10.23,
- -9.15,
- -7.78,
- -7.09,
- -7.39,
- -5.06,
- -0.08,
- 0.24,
- 0.31,
- -1.9,
- -0.07,
- -0.11,
- -1.0,
- -0.68,
- -1.15,
- -2.06,
- -2.06,
- -1.98,
- -1.89,
- 0.89,
- -0.15,
- -1.04,
- 2.3,
- 2.25,
- 2.76,
- 3.49,
- 4.5,
- 5.26,
- 5.72,
- 5.84,
- 5.27,
- 4.61,
- 5.07,
- 4.23,
- 0.67,
- 1.34,
- 1.35,
- 1.46,
- 4.09,
- 2.46,
- 2.06,
- 1.75,
- 1.62,
- 2.23,
- 2.17,
- 1.93,
- 2.46,
- 1.42,
- -1.95,
- -2.2,
- -1.8,
- -1.22,
- -1.19,
- -2.25,
- -0.78,
- -1.67,
- -1.66,
- 1.21,
- 1.43,
- 2.92,
- 3.18,
- 3.79,
- 4.5,
- 5.61,
- 5.81,
- 3.75,
- 2.68,
- 3.31,
- 2.95,
- 1.97,
- 1.62,
- 1.61,
- 1.87,
- 1.98,
- 1.92,
- 2.23,
- 1.97,
- 2.16,
- 2.83,
- 1.83,
- 0.27,
- -1.34,
- -2.89,
- -3.16,
- -2.94,
- -2.67,
- -0.97,
- 0.16,
- 1.07,
- 0.93,
- 0.2,
- -1.02,
- -1.75,
- -1.56,
- -1.09,
- -1.3,
- -1.92,
- -3.37,
- -3.27,
- -3.03,
- -3.71,
- -3.57,
- -2.44,
- -3.16,
- -4.41,
- -2.86,
- -1.13,
- -2.46,
- -0.46,
- -2.3,
- -8.74,
- -8.28,
- -8.3,
- -10.13,
- -11.4,
- -9.3,
- -5.93,
- -5.06,
- -5.61,
- -6.79,
- -6.91,
- -5.82,
- -0.88,
- 2.42,
- 3.41,
- 5.14,
- 5.85,
- 7.09,
- 7.19,
- 6.92,
- 6.72,
- 6.23,
- 5.85,
- 5.26,
- 4.23,
- 3.2,
- 2.37,
- 1.68,
- 1.16,
- 0.89,
- 0.76,
- 0.8,
- 1.8,
- 1.6,
- 3.18,
- 11.81,
- 11.36,
- 10.81,
- 10.13,
- 9.36,
- 8.2,
- 6.7,
- 4.9,
- 2.99,
- 1.2,
- -0.35,
- -1.95,
- -3.5,
- -4.08,
- -3.99,
- -3.73,
- -3.39,
- -2.88,
- -1.8,
- 0.88,
- 4.06,
- 7.28,
- 5.07,
- 0.73,
- -2.0,
- -1.22,
- -2.56,
- -6.16,
- -5.3,
- -6.19,
- -0.92,
- 2.09,
- 2.0,
- 5.78,
- 7.88,
- 8.32,
- 7.58,
- 6.53,
- 8.52,
- 3.95,
- 6.06,
- 4.9,
- 4.05,
- 3.41,
- 5.16,
- 4.1,
- 2.87,
- 1.7,
- 0.16,
- -0.88,
- -0.78,
- -0.57,
- -0.9,
- -1.4,
- -1.81,
- -3.26,
- -3.19,
- -1.59,
- -1.39,
- -1.14,
- 0.83,
- 0.36,
- 0.82,
- 1.11,
- 1.36,
- 1.11,
- 1.41,
- 0.88,
- 0.52,
- 0.36,
- 0.25,
- -0.18,
- -0.1,
- 0.08,
- 0.1,
- 0.12,
- 0.38,
- 0.43,
- 0.16,
- 0.07,
- 0.05,
- -0.26,
- -0.85,
- -1.35,
- -1.06,
- -1.23,
- -1.16,
- -1.01,
- -0.73,
- -0.47,
- -0.13,
- 0.07,
- 0.1,
- 0.13,
- 0.3,
- 0.32,
- 0.31,
- 0.28,
- 0.39,
- 0.3,
- 0.12,
- 0.05,
- -0.04,
- -0.08,
- -0.06,
- -0.07,
- 0.05,
- 0.25,
- 0.62,
- 0.81,
- 1.01,
- 1.28,
- 1.39,
- 1.42,
- 1.36,
- 1.24,
- 0.92,
- 0.33,
- -0.21,
- -0.13,
- -0.29,
- -0.41,
- -0.2,
- 0.12,
- -0.39,
- -0.87,
- -1.15,
- -1.06,
- -0.53,
- -0.71,
- -0.11,
- 0.19,
- -0.18,
- -0.08,
- 0.24,
- 1.78,
- 2.97,
- 2.03,
- 1.39,
- 0.87,
- -0.27,
- -1.01,
- -0.92,
- 0.23,
- 0.32,
- 0.05,
- -0.86,
- -1.75,
- 3.29,
- 6.93,
- 6.6,
- 6.43,
- 7.98,
- 7.69,
- 5.09,
- 6.71,
- 4.52,
- 4.46,
- 3.13,
- 3.53,
- 4.37,
- 4.63,
- 5.2,
- 4.54,
- 2.91,
- 2.85,
- 2.81,
- 1.55,
- 3.46,
- 0.87,
- -0.55,
- -1.66,
- -2.34,
- -2.89,
- -3.38,
- -3.31,
- -3.31,
- -3.68,
- -3.92,
- -2.31,
- -2.69,
- -3.95,
- -5.0,
- -5.87,
- -6.05,
- -3.51,
- -1.08,
- 0.66,
- 0.8,
- 0.42,
- 2.51,
- 4.28,
- 2.47,
- 2.13,
- 1.19,
- 0.51,
- 0.43,
- 0.48,
- 0.3,
- -0.15,
- -0.97,
- -1.77,
- -2.02,
- -2.67,
- -3.31,
- -4.0,
- -5.91,
- -6.92,
- -7.76,
- -8.64,
- -8.83,
- -8.58,
- -8.43,
- -9.32,
- -9.99,
- -10.16,
- -8.94,
- -8.01,
- -7.92,
- -7.88,
- -6.39,
- -2.4,
- -1.93,
- -2.97,
- -2.7,
- -2.58,
- -2.75,
- -2.66,
- -1.25,
- 0.14,
- 0.01,
- -0.77,
- -3.23,
- -5.87,
- -1.46,
- -0.73,
- 0.95,
- 2.21,
- 2.94,
- 3.65,
- 4.26,
- 4.79,
- 5.23,
- 5.6,
- 5.82,
- 5.97,
- 6.25,
- 6.73,
- 6.74,
- 7.36,
- 6.0,
- 0.95,
- 2.18,
- 1.72,
- 1.91,
- 0.85,
- 0.77,
- 0.32,
- 1.4,
- 0.92,
- 1.34,
- 0.39,
- 0.46,
- 0.9,
- -0.49,
- -1.47,
- -1.54,
- -1.25,
- -1.71,
- -1.51,
- -0.49,
- 2.71,
- 3.07,
- 4.39,
- 4.88,
- 3.79,
- 3.87,
- 4.41,
- 4.34,
- 4.39,
- 3.25,
- 4.2,
- 3.02,
- 2.16,
- 2.47,
- 2.56,
- 2.39,
- 2.02,
- 1.51,
- 2.61,
- 2.93,
- 2.35,
- 1.89,
- 2.04,
- 1.22,
- 0.26,
- -1.02,
- -2.39,
- -2.23,
- -2.43,
- -2.25,
- -1.22,
- 1.17,
- 2.11,
- 1.17,
- 1.21,
- 1.11,
- 0.24,
- -0.98,
- -1.6,
- -2.21,
- -2.55,
- -2.99,
- -2.85,
- -2.51,
- -2.82,
- -2.93,
- -2.82,
- -2.1,
- -1.37,
- -1.44,
- -5.25,
- -3.34,
- -1.63,
- -0.02,
- -5.55,
- -9.17,
- -9.49,
- -10.53,
- -13.32,
- -10.85,
- -7.89,
- -6.22,
- -4.96,
- -2.71,
- -0.52,
- 1.31,
- 2.33,
- 3.28,
- 4.93,
- 6.38,
- 6.98,
- 7.28,
- 7.2,
- 6.88,
- 6.57,
- 5.81,
- 4.97,
- 4.52,
- 3.94,
- 3.21,
- 2.39,
- 1.65,
- 1.15,
- 0.81,
- 0.9,
- 1.05,
- 1.09,
- 1.16,
- 1.26,
- 2.06,
- 10.24,
- 12.35,
- 12.01,
- 11.66,
- 10.64,
- 9.03,
- 7.14,
- 5.19,
- 3.02,
- 0.86,
- -0.57,
- -1.65,
- -2.8,
- -3.67,
- -3.78,
- -3.5,
- -3.0,
- -1.85,
- 0.92,
- 4.26,
- 7.11,
- 2.69,
- 0.33,
- -2.57,
- -3.73,
- -4.35,
- -6.27,
- -6.59,
- -7.32,
- -7.06,
- 1.06,
- 3.32,
- 10.62,
- 11.15,
- 12.16,
- 6.47,
- 3.46,
- 7.7,
- 6.36,
- 2.66,
- 3.56,
- 3.85,
- 3.61,
- 5.36,
- 4.43,
- 3.23,
- 1.6,
- -0.18,
- -0.91,
- -1.07,
- -0.33,
- -1.16,
- -2.73,
- -3.08,
- -3.1,
- -2.75,
- -2.92,
- -1.98,
- -1.05,
- 0.67,
- 1.1,
- -0.98,
- 0.44,
- 1.51,
- 1.61,
- 1.05,
- 1.04,
- 0.67,
- 0.12,
- -0.42,
- -0.89,
- -0.84,
- -0.62,
- -0.45,
- -0.51,
- -0.69,
- -0.3,
- 0.28,
- 0.84,
- 0.52,
- 0.26,
- 0.75,
- 1.13,
- 0.69,
- 0.4,
- -0.33,
- -0.6,
- -0.81,
- -0.85,
- -0.75,
- -0.62,
- -0.62,
- -0.34,
- 0.09,
- -0.03,
- 0.22,
- 0.18,
- 0.2,
- 0.18,
- 0.11,
- 0.14,
- 0.32,
- 0.35,
- 0.43,
- 0.56,
- 0.59,
- 0.58,
- 0.57,
- 0.71,
- 0.87,
- 1.16,
- 1.18,
- 0.87,
- 0.94,
- 0.7,
- 0.29,
- -0.2,
- -0.48,
- -0.57,
- -0.4,
- -0.07,
- -0.35,
- -0.23,
- -0.64,
- -0.48,
- -0.47,
- -1.24,
- -1.82,
- -1.6,
- -1.67,
- -1.23,
- -0.79,
- -0.4,
- 0.55,
- 2.77,
- 1.83,
- 1.02,
- 0.43,
- -0.15,
- -0.6,
- -2.58,
- -1.36,
- -1.52,
- -1.82,
- 1.38,
- 0.32,
- 2.26,
- 2.51,
- 4.67,
- 6.07,
- 4.94,
- 6.3,
- 4.83,
- 4.48,
- 4.62,
- 4.21,
- 2.96,
- 1.85,
- 1.14,
- 2.16,
- 3.5,
- 4.03,
- 4.64,
- 3.63,
- 2.7,
- 1.76,
- -0.38,
- -1.19,
- -1.27,
- -2.18,
- -3.28,
- -3.97,
- -4.11,
- -4.85,
- -4.6,
- -5.56,
- -5.93,
- -5.23,
- -5.53,
- -6.55,
- -7.38,
- -8.4,
- -7.52,
- -1.42,
- -1.04,
- -0.17,
- 2.22,
- -2.02,
- 1.91,
- 2.38,
- 4.09,
- 2.88,
- 2.51,
- 2.21,
- 1.56,
- 0.94,
- 0.51,
- 0.13,
- -0.27,
- -1.18,
- -2.41,
- -2.74,
- -3.4,
- -4.1,
- -3.5,
- -5.39,
- -7.28,
- -7.97,
- -8.25,
- -8.43,
- -8.41,
- -8.48,
- -9.7,
- -10.52,
- -10.19,
- -9.22,
- -8.59,
- -9.01,
- -9.28,
- -8.57,
- -5.25,
- -4.74,
- -4.88,
- -4.34,
- -3.92,
- -3.59,
- -1.52,
- 0.56,
- -0.2,
- -0.41,
- -2.73,
- -3.44,
- -3.4,
- -5.33,
- -2.94,
- -0.94,
- 1.11,
- 2.78,
- 3.92,
- 4.6,
- 5.16,
- 5.72,
- 6.22,
- 6.76,
- 7.37,
- 7.75,
- 8.02,
- 8.31,
- 8.56,
- 8.62,
- 7.02,
- 1.36,
- 2.82,
- 0.09,
- 2.15,
- 1.6,
- 0.96,
- 0.4,
- 1.3,
- 0.85,
- 0.53,
- 0.09,
- 0.0,
- 0.18,
- 0.14,
- -0.03,
- 1.1,
- 1.26,
- 0.9,
- 2.54,
- 2.1,
- 3.1,
- 1.88,
- 3.13,
- 2.82,
- 3.06,
- 3.46,
- 2.88,
- 3.7,
- 4.27,
- 4.23,
- 3.47,
- 2.65,
- 3.17,
- 3.72,
- 2.35,
- 1.79,
- 1.23,
- 2.51,
- 2.37,
- 2.35,
- 1.93,
- 0.54,
- 0.43,
- 0.46,
- -0.36,
- -1.57,
- -1.71,
- -1.86,
- -2.44,
- -1.95,
- -0.56,
- 1.48,
- 1.25,
- 1.02,
- 0.43,
- -0.29,
- -1.17,
- -1.65,
- -1.43,
- -1.28,
- -2.15,
- -3.03,
- -2.87,
- -2.78,
- -2.84,
- -2.96,
- -2.44,
- -2.32,
- -2.95,
- -3.89,
- -3.06,
- -3.39,
- -2.15,
- -2.5,
- -8.95,
- -11.61,
- -12.28,
- -12.98,
- -10.81,
- -8.57,
- -6.24,
- -3.29,
- -2.65,
- -0.97,
- 1.48,
- 2.87,
- 4.01,
- 5.29,
- 6.22,
- 6.69,
- 6.79,
- 6.75,
- 6.52,
- 6.24,
- 5.29,
- 4.61,
- 4.61,
- 5.02,
- 4.57,
- 3.69,
- 2.74,
- 1.97,
- 1.47,
- 1.02,
- 0.95,
- 0.72,
- 0.47,
- 0.59,
- 0.48,
- 3.89,
- 9.99,
- 11.31,
- 11.04,
- 11.12,
- 10.37,
- 8.83,
- 7.0,
- 5.09,
- 3.01,
- 0.94,
- -0.81,
- -2.1,
- -2.94,
- -3.58,
- -3.8,
- -3.66,
- -1.94,
- 1.32,
- 2.48,
- 4.19,
- 1.9,
- 0.48,
- -1.46,
- -5.12,
- -5.9,
- -6.36,
- -6.62,
- -5.74,
- -5.55,
- -2.55,
- 4.43,
- 9.34,
- 10.98,
- 10.13,
- 5.77,
- 3.54,
- 5.68,
- 2.76,
- 2.48,
- 3.01,
- 6.77,
- 6.01,
- 6.03,
- 5.36,
- 3.15,
- 1.06,
- -0.63,
- -1.13,
- -1.52,
- -1.4,
- -1.16,
- -2.07,
- -2.85,
- -3.41,
- -3.41,
- -3.7,
- -3.55,
- -2.2,
- 0.94,
- 0.97,
- -0.07,
- -0.93,
- -0.03,
- -0.25,
- -1.02,
- -1.4,
- -1.13,
- -1.21,
- -1.2,
- -0.87,
- -0.89,
- -0.67,
- -0.6,
- -0.69,
- -0.72,
- -0.5,
- -0.02,
- 0.0,
- 0.27,
- 0.89,
- 0.96,
- 0.99,
- 1.81,
- 1.78,
- 1.12,
- 0.5,
- 0.24,
- -0.42,
- -0.94,
- -0.8,
- -1.03,
- -1.22,
- -1.16,
- -1.06,
- -0.85,
- -0.65,
- -0.76,
- -0.91,
- -0.73,
- 0.06,
- 0.16,
- 0.31,
- 0.38,
- 0.33,
- 0.36,
- 0.56,
- 0.5,
- 0.31,
- 0.44,
- 0.92,
- 0.56,
- 0.48,
- 0.87,
- 0.42,
- -0.06,
- -0.35,
- -0.31,
- -0.09,
- -0.23,
- -0.63,
- -0.07,
- 0.04,
- -0.73,
- -1.17,
- -1.51,
- -1.37,
- -1.29,
- -1.78,
- -1.31,
- -1.1,
- -0.64,
- 0.23,
- 0.33,
- 2.09,
- 0.9,
- 3.04,
- 0.64,
- -0.68,
- -1.43,
- -0.87,
- -0.59,
- -0.01,
- 0.29,
- 1.95,
- 1.28,
- 1.22,
- 1.51,
- 1.39,
- 3.17,
- 3.09,
- 4.3,
- 4.14,
- 3.2,
- 3.15,
- 3.26,
- 1.55,
- 1.4,
- 2.74,
- 2.9,
- 3.98,
- 4.07,
- 3.8,
- 1.82,
- -1.21,
- -2.05,
- -1.9,
- -2.34,
- -3.32,
- -3.86,
- -4.57,
- -5.33,
- -6.02,
- -6.45,
- -6.79,
- -7.12,
- -7.29,
- -7.46,
- -7.65,
- -7.94,
- -8.02,
- -6.41,
- -1.37,
- -1.1,
- 1.45,
- 1.24,
- -3.5,
- 2.81,
- 2.5,
- 1.8,
- 2.36,
- 1.82,
- 2.67,
- 2.64,
- 1.54,
- 0.59,
- 0.08,
- -0.25,
- -0.71,
- -1.53,
- -2.44,
- -3.39,
- -3.94,
- -4.97,
- -4.16,
- -5.4,
- -6.5,
- -7.28,
- -8.05,
- -7.92,
- -8.26,
- -8.77,
- -9.67,
- -9.88,
- -9.63,
- -9.4,
- -9.73,
- -10.4,
- -10.32,
- -9.33,
- -7.05,
- -5.69,
- -5.45,
- -5.38,
- -4.89,
- -2.63,
- 0.57,
- -2.13,
- -5.33,
- -5.15,
- -6.38,
- -7.03,
- -6.96,
- -6.33,
- -4.37,
- -1.5,
- 1.31,
- 3.25,
- 4.42,
- 5.33,
- 6.29,
- 7.14,
- 7.78,
- 8.12,
- 8.4,
- 8.88,
- 9.36,
- 9.63,
- 9.63,
- 9.27,
- 8.42,
- 6.5,
- 5.19,
- 1.0,
- 0.32,
- 0.76,
- 0.64,
- 1.5,
- 0.44,
- -0.11,
- -0.33,
- 0.01,
- 0.47,
- 0.89,
- 1.51,
- 1.89,
- 1.86,
- 1.38,
- 0.63,
- 0.66,
- 2.23,
- 1.55,
- 2.81,
- 2.99,
- 3.21,
- 2.73,
- 3.16,
- 3.06,
- 3.51,
- 3.72,
- 3.46,
- 3.39,
- 3.22,
- 3.09,
- 2.82,
- 2.3,
- 1.65,
- 0.4,
- 1.67,
- 1.79,
- 2.23,
- 1.24,
- 0.72,
- 0.77,
- -0.3,
- -1.04,
- -0.9,
- -0.97,
- -1.64,
- -2.47,
- -2.68,
- -2.76,
- -0.67,
- -0.01,
- -0.35,
- -0.88,
- -1.34,
- -1.79,
- -2.1,
- -0.82,
- -0.79,
- -1.68,
- -2.39,
- -3.04,
- -2.98,
- -2.45,
- -2.75,
- -2.12,
- -1.65,
- -3.21,
- -3.57,
- -3.33,
- -2.89,
- -2.58,
- -0.15,
- -6.05,
- -13.09,
- -12.91,
- -13.14,
- -8.98,
- -7.01,
- -6.67,
- -6.38,
- -4.0,
- -1.62,
- 0.94,
- 3.16,
- 4.91,
- 6.14,
- 7.1,
- 7.82,
- 7.93,
- 7.8,
- 7.17,
- 6.3,
- 4.67,
- 3.81,
- 4.98,
- 5.41,
- 5.07,
- 4.45,
- 3.81,
- 3.06,
- 2.37,
- 1.5,
- 0.79,
- 0.09,
- -0.46,
- -0.25,
- 0.21,
- 2.21,
- 6.34,
- 9.61,
- 9.37,
- 8.53,
- 9.04,
- 9.36,
- 8.13,
- 6.19,
- 4.11,
- 2.06,
- 0.44,
- -0.85,
- -1.84,
- -2.61,
- -3.02,
- -3.22,
- -1.98,
- 0.55,
- 1.18,
- 1.2,
- -0.48,
- 0.08,
- 0.81,
- -1.9,
- -5.02,
- -4.41,
- -5.31,
- -5.47,
- -3.5,
- -0.88,
- 1.64,
- 4.25,
- 6.47,
- 7.5,
- 5.68,
- 4.96,
- 3.76,
- 3.48,
- 6.82,
- 7.55,
- 5.47,
- 7.62,
- 4.82,
- 3.96,
- 3.63,
- 1.08,
- -0.17,
- -0.92,
- -1.49,
- -2.0,
- -1.41,
- -1.35,
- -1.84,
- -2.58,
- -2.96,
- -3.53,
- -3.96,
- -3.05,
- 0.98,
- 0.2,
- -0.6,
- -1.76,
- -1.87,
- -2.0,
- -1.44,
- -1.25,
- -1.18,
- -1.11,
- -0.82,
- -0.65,
- -0.76,
- -0.63,
- -0.46,
- -1.08,
- -2.25,
- -0.91,
- -0.73,
- 1.23,
- 2.25,
- 2.58,
- 1.83,
- 2.66,
- 3.25,
- 2.32,
- 2.48,
- 3.39,
- 1.32,
- 0.34,
- -0.46,
- -0.98,
- -0.57,
- -1.36,
- -2.0,
- -2.35,
- -2.28,
- -1.35,
- -1.16,
- -1.42,
- -1.58,
- -0.92,
- -0.51,
- -0.4,
- -0.25,
- 0.64,
- -0.34,
- -0.47,
- -0.48,
- -0.23,
- 0.2,
- 0.18,
- -0.01,
- 0.3,
- 0.61,
- 1.09,
- -0.26,
- -1.0,
- -0.49,
- -0.7,
- -0.66,
- -0.08,
- -0.57,
- -1.7,
- -2.29,
- -1.82,
- -2.54,
- -2.42,
- -2.74,
- -3.1,
- -2.78,
- -2.04,
- -1.44,
- -1.0,
- -1.6,
- -1.08,
- 3.11,
- 0.42,
- -0.24,
- -1.06,
- -1.29,
- 0.08,
- 1.11,
- 1.22,
- 0.32,
- -0.87,
- 0.71,
- 4.32,
- 4.82,
- 5.04,
- 3.9,
- 2.49,
- 2.05,
- 1.39,
- 1.86,
- 2.06,
- 2.41,
- 2.47,
- 2.08,
- 1.64,
- 0.51,
- 1.19,
- 1.3,
- 0.95,
- -2.36,
- -2.76,
- -3.81,
- -3.63,
- -3.55,
- -3.73,
- -4.49,
- -5.76,
- -6.49,
- -7.02,
- -7.48,
- -7.76,
- -7.87,
- -7.92,
- -8.01,
- -7.91,
- -7.57,
- -7.24,
- -5.0,
- -1.2,
- -0.33,
- 1.13,
- 0.78,
- 2.98,
- -0.18,
- -0.08,
- 2.02,
- 3.31,
- 4.04,
- 2.35,
- 2.79,
- 1.65,
- 0.07,
- -0.58,
- -1.09,
- -1.44,
- -1.2,
- -2.21,
- -3.74,
- -3.76,
- -4.9,
- -5.37,
- -5.58,
- -6.42,
- -7.02,
- -7.57,
- -7.67,
- -8.09,
- -8.56,
- -9.31,
- -9.48,
- -9.52,
- -9.67,
- -10.34,
- -11.08,
- -11.19,
- -9.59,
- -8.35,
- -6.54,
- -4.77,
- -3.5,
- -2.21,
- -4.71,
- -5.7,
- -7.19,
- -9.25,
- -10.17,
- -10.24,
- -8.65,
- -7.19,
- -4.66,
- -0.65,
- 2.85,
- 5.19,
- 6.25,
- 7.04,
- 8.17,
- 9.17,
- 9.78,
- 10.77,
- 11.55,
- 11.78,
- 11.09,
- 10.64,
- 10.52,
- 10.6,
- 10.4,
- 9.79,
- 8.67,
- 7.96,
- 1.03,
- 1.51,
- 0.82,
- 0.65,
- 0.22,
- 1.2,
- -0.01,
- -0.28,
- -0.68,
- -0.78,
- -0.06,
- 0.98,
- 1.22,
- 0.47,
- 0.49,
- -0.11,
- -0.51,
- 0.84,
- 0.75,
- 2.47,
- 2.48,
- 2.64,
- 2.65,
- 3.01,
- 3.11,
- 2.96,
- 3.93,
- 3.74,
- 4.06,
- 2.75,
- 3.15,
- 3.01,
- 2.59,
- 1.58,
- 0.68,
- 2.08,
- 2.85,
- 1.87,
- 1.38,
- 0.7,
- 0.18,
- -0.44,
- -0.94,
- -0.25,
- -0.6,
- -1.42,
- -2.14,
- -1.86,
- -1.7,
- -1.8,
- -1.72,
- -1.67,
- -1.75,
- -1.96,
- -1.81,
- 0.89,
- 1.6,
- 0.7,
- -1.09,
- -1.69,
- -2.72,
- -2.96,
- -2.55,
- -2.72,
- -3.13,
- -3.48,
- -3.33,
- -3.39,
- -3.77,
- -3.21,
- -4.22,
- -4.53,
- -6.02,
- -8.89,
- -12.08,
- -13.16,
- -6.25,
- -6.87,
- -8.04,
- -6.93,
- -5.23,
- -2.02,
- 1.38,
- 4.79,
- 7.51,
- 9.36,
- 10.08,
- 10.26,
- 9.61,
- 8.72,
- 7.54,
- 6.15,
- 4.7,
- 4.84,
- 5.41,
- 5.3,
- 5.0,
- 4.63,
- 4.1,
- 3.18,
- 2.1,
- 0.99,
- 0.13,
- -0.43,
- -0.79,
- -1.24,
- -0.36,
- 1.95,
- 5.12,
- 7.79,
- 8.92,
- 8.21,
- 6.62,
- 7.07,
- 8.53,
- 7.92,
- 5.7,
- 3.46,
- 1.19,
- -0.84,
- -2.0,
- -2.66,
- -3.02,
- -3.18,
- -2.67,
- 0.64,
- 2.34,
- 0.96,
- -1.41,
- -1.92,
- 0.7,
- 0.9,
- -1.69,
- -0.46,
- -3.22,
- -4.5,
- -4.59,
- -2.47,
- 0.57,
- 2.96,
- 4.7,
- 5.64,
- 3.89,
- 2.02,
- 2.9,
- 3.62,
- 4.55,
- 5.91,
- 4.21,
- 4.83,
- 4.52,
- 1.91,
- 1.22,
- 0.39,
- -0.33,
- -0.91,
- -2.04,
- -2.15,
- -1.69,
- -1.32,
- -0.79,
- -0.9,
- -1.53,
- -2.68,
- -3.3,
- -2.49,
- -0.31,
- -0.74,
- -2.19,
- -3.02,
- -3.16,
- -2.78,
- -1.46,
- -0.09,
- -0.1,
- -1.56,
- -1.52,
- -1.28,
- 0.16,
- -0.32,
- -1.05,
- -2.03,
- -2.53,
- -2.3,
- -1.23,
- -0.25,
- 0.85,
- 2.44,
- 3.51,
- 4.83,
- 4.46,
- 4.05,
- 3.64,
- 3.37,
- 2.25,
- 1.47,
- 0.84,
- 0.07,
- -0.61,
- -1.48,
- -1.95,
- -2.67,
- -3.14,
- -3.09,
- -2.21,
- -2.47,
- -2.71,
- -2.49,
- -1.99,
- -1.9,
- -1.48,
- -1.53,
- -1.96,
- -2.09,
- -1.92,
- -1.45,
- -1.05,
- -0.77,
- -0.37,
- -0.32,
- -0.78,
- -0.41,
- 0.71,
- -0.97,
- -1.95,
- -2.23,
- -1.5,
- -0.38,
- 0.52,
- 0.6,
- -0.78,
- -3.5,
- -3.64,
- -4.39,
- -4.15,
- -3.26,
- -2.23,
- -1.86,
- -2.16,
- -2.12,
- -1.65,
- -1.3,
- 0.28,
- -0.55,
- -1.82,
- -1.7,
- -1.71,
- 0.54,
- 1.11,
- 0.15,
- -1.16,
- 2.35,
- 2.9,
- 3.28,
- 0.76,
- -0.15,
- 2.07,
- 2.43,
- 3.37,
- 4.88,
- 3.16,
- 2.7,
- 2.91,
- 1.59,
- 0.12,
- 0.42,
- -2.71,
- -2.62,
- 1.92,
- -0.09,
- -3.08,
- -4.02,
- -3.26,
- -3.45,
- -6.0,
- -4.73,
- -4.7,
- -7.17,
- -7.63,
- -7.73,
- -7.91,
- -8.24,
- -8.28,
- -8.09,
- -7.54,
- -6.37,
- -5.1,
- -4.65,
- -4.27,
- -2.32,
- -0.32,
- -1.23,
- -0.01,
- -1.94,
- -1.26,
- -1.08,
- 1.3,
- 2.43,
- 2.71,
- 2.86,
- 2.9,
- 2.53,
- 1.89,
- 0.07,
- -1.46,
- -2.27,
- -1.83,
- -2.5,
- -3.24,
- -3.72,
- -4.32,
- -5.21,
- -6.6,
- -6.98,
- -6.79,
- -6.41,
- -6.47,
- -7.78,
- -9.21,
- -10.04,
- -10.11,
- -10.13,
- -10.4,
- -11.26,
- -11.82,
- -10.96,
- -7.0,
- -5.6,
- -8.3,
- -5.52,
- -4.27,
- -5.62,
- -6.65,
- -8.51,
- -9.69,
- -11.65,
- -12.47,
- -11.8,
- -10.68,
- -3.18,
- 4.7,
- 8.43,
- 9.54,
- 9.85,
- 10.37,
- 10.54,
- 10.42,
- 10.97,
- 12.38,
- 13.31,
- 14.0,
- 14.13,
- 13.93,
- 13.59,
- 13.04,
- 12.47,
- 11.83,
- 11.04,
- 10.04,
- 8.93,
- 3.13,
- 2.48,
- 5.5,
- 0.71,
- 1.04,
- 0.61,
- 0.62,
- 0.46,
- -0.38,
- 0.34,
- -0.14,
- -0.1,
- 0.04,
- 0.89,
- 0.49,
- -0.96,
- -1.23,
- -2.04,
- 1.25,
- 3.77,
- 3.65,
- 3.28,
- 3.41,
- 4.11,
- 3.45,
- 2.63,
- 2.74,
- 2.97,
- 2.68,
- 2.16,
- 2.13,
- 2.08,
- 2.23,
- 2.46,
- 1.61,
- 1.08,
- 2.23,
- 1.6,
- 1.15,
- 0.44,
- -0.18,
- -0.34,
- -0.43,
- -0.69,
- -0.87,
- -1.49,
- -1.78,
- -1.82,
- -1.86,
- -2.2,
- -1.98,
- -2.74,
- -2.08,
- 0.18,
- 0.72,
- 0.75,
- 0.17,
- -0.31,
- -0.98,
- -1.59,
- -1.59,
- -2.6,
- -2.76,
- -3.07,
- -2.8,
- -2.89,
- -3.35,
- -3.33,
- -4.54,
- -6.87,
- -4.62,
- -5.26,
- -5.84,
- -7.6,
- -4.98,
- -6.65,
- -8.48,
- -10.21,
- -11.61,
- -11.02,
- -6.85,
- 0.57,
- 6.53,
- 10.3,
- 12.27,
- 12.88,
- 12.19,
- 11.02,
- 9.62,
- 8.94,
- 8.24,
- 7.35,
- 6.42,
- 4.9,
- 4.42,
- 3.89,
- 3.84,
- 4.57,
- 4.96,
- 3.38,
- 1.78,
- 0.76,
- 0.47,
- -0.35,
- -1.35,
- -1.03,
- -0.07,
- 2.93,
- 7.29,
- 8.0,
- 8.43,
- 7.79,
- 6.57,
- 5.87,
- 6.72,
- 8.45,
- 7.01,
- 4.26,
- 1.81,
- 0.08,
- -1.23,
- -1.91,
- -1.87,
- -2.04,
- 0.93,
- 1.79,
- 1.32,
- -0.4,
- -3.36,
- -5.12,
- -3.94,
- 0.37,
- -0.12,
- -0.98,
- -2.63,
- -3.24,
- -3.24,
- -2.87,
- -0.9,
- 1.4,
- 3.13,
- 3.26,
- 1.01,
- 0.29,
- 1.47,
- 2.45,
- 3.72,
- 2.77,
- 2.51,
- 3.35,
- 3.86,
- 2.17,
- 1.42,
- -0.02,
- -0.98,
- -1.1,
- -1.09,
- -1.31,
- -1.17,
- -1.13,
- -1.33,
- -1.35,
- -1.73,
- -2.38,
- -2.42,
- -2.26,
- -2.39,
- -2.7,
- -2.69,
- -3.83,
- -3.92,
- -3.88,
- -3.08,
- -1.03,
- 0.24,
- 0.01,
- 0.47,
- 0.12,
- -0.51,
- -0.87,
- -1.66,
- -2.52,
- -2.86,
- -2.76,
- -1.34,
- 0.18,
- 1.47,
- 3.04,
- 3.51,
- 3.37,
- 3.24,
- 3.41,
- 4.6,
- 4.56,
- 3.51,
- 2.16,
- 1.5,
- 1.19,
- 0.08,
- -0.59,
- -1.58,
- -2.19,
- -3.27,
- -3.84,
- -3.93,
- -3.91,
- -4.29,
- -3.76,
- -3.89,
- -3.82,
- -2.99,
- -2.64,
- -2.77,
- -2.36,
- -2.37,
- -2.13,
- -1.63,
- -0.58,
- -0.56,
- -0.53,
- 0.57,
- 0.63,
- 0.25,
- -0.31,
- -0.55,
- -0.68,
- -2.27,
- -2.71,
- -3.85,
- -3.47,
- -2.99,
- 0.0,
- 0.04,
- -1.68,
- -2.53,
- -2.45,
- -2.15,
- -2.89,
- -2.31,
- -3.44,
- 2.96,
- 2.25,
- -2.74,
- -3.15,
- -2.9,
- -1.79,
- -0.64,
- -0.63,
- -1.81,
- -0.61,
- 3.43,
- 3.46,
- 3.85,
- 4.2,
- 4.71,
- 3.9,
- 3.36,
- 3.18,
- 2.97,
- 3.76,
- 3.55,
- 2.37,
- 1.43,
- 0.34,
- -0.09,
- -0.91,
- 1.06,
- 0.56,
- -0.03,
- -2.37,
- -3.25,
- -3.97,
- -3.49,
- -3.93,
- -5.23,
- -5.38,
- -5.29,
- -8.53,
- -9.42,
- -9.22,
- -9.25,
- -9.08,
- -8.83,
- -8.68,
- -8.39,
- -7.58,
- -6.86,
- -6.58,
- -5.84,
- -3.47,
- -1.26,
- -0.47,
- -6.51,
- -3.28,
- -0.36,
- 1.04,
- 1.62,
- 2.06,
- 2.51,
- 3.1,
- 3.52,
- 3.7,
- 3.37,
- 2.77,
- 1.2,
- -1.26,
- -1.95,
- -3.59,
- -3.64,
- -3.71,
- -4.69,
- -5.15,
- -6.32,
- -6.75,
- -6.37,
- -5.66,
- -6.26,
- -8.57,
- -9.68,
- -10.1,
- -10.32,
- -9.97,
- -9.9,
- -9.82,
- -10.33,
- -6.59,
- -9.19,
- -3.67,
- -7.45,
- -7.17,
- -7.06,
- -6.75,
- -8.15,
- -8.25,
- -10.69,
- -12.79,
- -13.29,
- -14.16,
- -4.27,
- 5.94,
- 9.55,
- 9.77,
- 10.41,
- 10.57,
- 10.51,
- 10.61,
- 9.3,
- 10.44,
- 11.62,
- 12.79,
- 13.67,
- 14.01,
- 14.52,
- 14.92,
- 14.83,
- 14.45,
- 13.76,
- 12.55,
- 10.89,
- 9.2,
- 7.34,
- 1.73,
- 4.84,
- 2.28,
- -0.26,
- -0.14,
- 0.14,
- -0.28,
- 0.14,
- 0.14,
- -0.31,
- -1.76,
- -1.53,
- -1.37,
- -0.84,
- -1.35,
- -0.99,
- -1.92,
- 1.81,
- 4.17,
- 3.92,
- 3.42,
- 3.0,
- 3.59,
- 2.58,
- 1.97,
- 2.42,
- 2.88,
- 2.76,
- 2.44,
- 2.34,
- 1.29,
- 2.73,
- 2.27,
- 1.77,
- 1.3,
- 1.14,
- 0.54,
- 0.2,
- -0.16,
- -0.81,
- -0.9,
- -0.33,
- -0.4,
- -1.21,
- -1.75,
- -1.88,
- -2.31,
- -2.13,
- -2.13,
- -1.33,
- -1.88,
- -1.84,
- 0.09,
- 0.66,
- -0.22,
- -0.97,
- -0.02,
- -0.95,
- -1.34,
- -1.43,
- -2.81,
- -3.02,
- -2.71,
- -3.24,
- -3.1,
- -3.23,
- -3.4,
- -4.05,
- -4.28,
- -3.2,
- -4.5,
- -5.73,
- -7.84,
- -7.0,
- -5.72,
- -6.64,
- -8.46,
- -14.3,
- -10.83,
- -3.74,
- 5.96,
- 11.02,
- 14.62,
- 15.49,
- 14.63,
- 13.22,
- 12.0,
- 10.59,
- 10.47,
- 10.15,
- 8.12,
- 5.5,
- 3.98,
- 3.87,
- 4.63,
- 3.81,
- 2.83,
- 3.47,
- 4.3,
- 4.46,
- 3.42,
- 1.39,
- 0.14,
- -0.78,
- -1.68,
- 1.52,
- 8.51,
- 9.01,
- 8.8,
- 8.04,
- 6.86,
- 5.64,
- 5.09,
- 5.46,
- 7.41,
- 7.57,
- 5.5,
- 2.79,
- 0.59,
- -0.9,
- 0.09,
- 0.45,
- -0.36,
- 0.09,
- 1.51,
- 0.32,
- -1.46,
- -4.63,
- -0.76,
- 0.05,
- -0.26,
- -0.12,
- -1.93,
- -2.54,
- -5.03,
- -4.91,
- -3.74,
- -0.21,
- 2.74,
- 1.65,
- 0.17,
- 0.23,
- 0.79,
- 1.25,
- 2.55,
- 3.04,
- 2.29,
- 1.8,
- 2.52,
- 2.61,
- 1.81,
- 0.7,
- -0.18,
- -0.79,
- -1.19,
- -2.21,
- -2.75,
- -3.07,
- -1.55,
- -1.03,
- -0.63,
- -0.8,
- -1.33,
- -1.99,
- -3.1,
- -3.66,
- -2.67,
- -2.8,
- -3.24,
- -3.35,
- -5.59,
- -4.82,
- -1.86,
- -0.37,
- 0.1,
- 0.06,
- 0.74,
- -0.01,
- -0.97,
- -2.06,
- -3.05,
- -2.73,
- -2.49,
- -2.01,
- -0.47,
- 1.57,
- 2.84,
- 4.96,
- 4.43,
- 3.18,
- 2.94,
- 3.98,
- 4.99,
- 4.42,
- 2.8,
- 1.09,
- 0.0,
- -0.18,
- -0.77,
- -1.09,
- -1.3,
- -1.76,
- -2.11,
- -2.68,
- -3.43,
- -4.4,
- -4.97,
- -4.99,
- -4.91,
- -4.56,
- -3.9,
- -3.56,
- -3.84,
- -3.74,
- -2.6,
- -0.55,
- 0.4,
- 0.03,
- 0.13,
- 0.17,
- 0.79,
- -1.03,
- -1.99,
- -3.46,
- -3.13,
- -4.15,
- -6.96,
- -4.72,
- -4.37,
- -2.3,
- -2.3,
- -2.99,
- -2.89,
- -1.96,
- 0.91,
- -1.13,
- 0.04,
- 1.23,
- 4.81,
- -3.15,
- -4.26,
- -4.55,
- -3.29,
- -2.78,
- -2.33,
- -2.16,
- -3.08,
- -0.63,
- -2.08,
- 0.54,
- 3.27,
- 4.76,
- 5.02,
- 4.75,
- 4.21,
- 3.38,
- 3.13,
- 2.96,
- 2.82,
- 2.84,
- 1.66,
- 0.92,
- 0.55,
- 1.59,
- 2.78,
- 0.88,
- 0.95,
- -1.14,
- -3.48,
- -3.62,
- -3.73,
- -3.98,
- -4.76,
- -5.14,
- -4.82,
- -6.19,
- -9.9,
- -11.03,
- -10.92,
- -10.55,
- -10.44,
- -10.15,
- -9.92,
- -9.94,
- -8.93,
- -7.41,
- -6.17,
- -5.99,
- -5.46,
- -1.33,
- -2.79,
- -4.19,
- -1.29,
- 0.78,
- 2.25,
- 2.99,
- 3.71,
- 4.18,
- 4.39,
- 4.56,
- 4.75,
- 4.83,
- 4.52,
- 3.66,
- 2.84,
- 2.14,
- -0.71,
- -3.7,
- -4.96,
- -4.88,
- -5.57,
- -6.66,
- -6.02,
- -5.5,
- -3.91,
- -5.47,
- -6.19,
- -8.03,
- -6.36,
- -10.02,
- -7.29,
- -8.86,
- -9.05,
- -9.85,
- -7.38,
- -6.79,
- -4.31,
- -4.87,
- -6.11,
- -7.79,
- -7.16,
- -7.56,
- -8.6,
- -11.58,
- -13.7,
- -14.36,
- -10.72,
- 3.41,
- 7.54,
- 8.5,
- 10.22,
- 11.79,
- 11.79,
- 10.89,
- 9.69,
- 8.66,
- 10.09,
- 11.18,
- 11.13,
- 11.69,
- 12.61,
- 13.78,
- 14.73,
- 15.06,
- 15.23,
- 14.79,
- 13.09,
- 11.34,
- 9.57,
- 7.81,
- 5.71,
- 2.82,
- 0.98,
- -2.82,
- -0.77,
- -1.0,
- -0.97,
- -1.68,
- -1.73,
- -2.65,
- -1.94,
- -1.86,
- -1.06,
- -1.78,
- -0.99,
- -0.54,
- -1.21,
- 1.96,
- 3.55,
- 3.23,
- 3.05,
- 3.41,
- 2.02,
- 3.34,
- 3.47,
- 2.85,
- 3.32,
- 3.25,
- 2.77,
- 1.61,
- 0.78,
- 1.88,
- 1.11,
- -0.33,
- 0.25,
- 0.25,
- -0.19,
- -0.36,
- -0.46,
- 0.09,
- -0.29,
- -0.78,
- -0.53,
- -0.99,
- -1.74,
- -1.76,
- -1.98,
- -2.08,
- -2.24,
- -0.79,
- -0.76,
- -0.79,
- -0.56,
- 0.34,
- -0.14,
- -1.16,
- -0.16,
- -0.79,
- -1.45,
- -1.7,
- -2.04,
- -2.99,
- -2.21,
- -1.72,
- -1.33,
- -2.2,
- -3.2,
- -3.74,
- -4.3,
- -4.95,
- -5.03,
- -5.98,
- -6.64,
- -6.51,
- -6.16,
- -5.27,
- -6.9,
- -12.22,
- -11.2,
- -0.85,
- 8.97,
- 11.42,
- 16.62,
- 16.1,
- 14.52,
- 12.92,
- 12.08,
- 11.83,
- 12.35,
- 10.88,
- 8.38,
- 6.54,
- 5.73,
- 5.27,
- 4.9,
- 4.48,
- 4.84,
- 4.8,
- 4.07,
- 2.82,
- 2.37,
- 2.05,
- 0.83,
- -1.58,
- 1.76,
- 8.77,
- 9.29,
- 9.05,
- 8.3,
- 7.19,
- 5.89,
- 4.35,
- 3.19,
- 4.24,
- 5.2,
- 6.96,
- 6.33,
- 4.14,
- 1.87,
- 0.25,
- 0.55,
- -0.17,
- -0.45,
- 0.49,
- -0.89,
- -1.88,
- -4.25,
- -2.29,
- -1.29,
- -0.49,
- -0.49,
- -1.63,
- -3.11,
- -5.09,
- -5.7,
- -2.75,
- -0.18,
- 1.79,
- 0.55,
- -2.57,
- 0.48,
- 1.14,
- 0.41,
- 0.92,
- 2.32,
- 3.41,
- 3.73,
- 2.1,
- 2.18,
- 2.43,
- 0.83,
- 0.3,
- -0.78,
- -1.22,
- -2.27,
- -2.63,
- -2.33,
- -1.4,
- 1.35,
- 0.55,
- -0.02,
- -0.41,
- -0.66,
- -1.46,
- -2.61,
- -3.43,
- -3.21,
- -2.98,
- -3.13,
- -3.48,
- -4.67,
- -4.65,
- -3.8,
- -0.33,
- 2.5,
- 2.35,
- 0.79,
- -0.38,
- -1.82,
- -2.32,
- -3.23,
- -3.02,
- -2.6,
- -1.34,
- 1.8,
- 3.65,
- 4.99,
- 5.18,
- 4.17,
- 3.58,
- 3.34,
- 4.84,
- 5.48,
- 5.19,
- 3.77,
- 2.03,
- 0.82,
- 0.42,
- -0.39,
- -1.12,
- -1.14,
- -1.04,
- -1.34,
- -1.52,
- -2.32,
- -3.71,
- -4.39,
- -5.18,
- -5.61,
- -5.58,
- -4.99,
- -4.61,
- -4.47,
- -3.96,
- -3.0,
- -1.5,
- -1.04,
- -1.69,
- -1.52,
- -0.6,
- -3.04,
- -2.37,
- -3.12,
- -5.07,
- -6.51,
- -7.86,
- -7.14,
- -3.73,
- -0.95,
- -3.07,
- -5.1,
- -2.25,
- -1.28,
- -1.87,
- -0.82,
- -0.88,
- -2.41,
- -2.05,
- -3.86,
- -5.11,
- -4.99,
- -3.76,
- -2.92,
- -2.91,
- -3.37,
- -4.35,
- -3.88,
- -4.81,
- 9.64,
- 10.49,
- 6.93,
- 4.58,
- 4.55,
- 3.97,
- 3.31,
- 3.28,
- 4.17,
- 4.01,
- 3.15,
- 1.93,
- 3.21,
- 1.12,
- 1.41,
- 1.1,
- 0.67,
- 0.17,
- 0.36,
- -2.1,
- -3.3,
- -4.45,
- -2.88,
- -3.87,
- -4.1,
- -9.94,
- -8.33,
- -5.28,
- -12.24,
- -13.41,
- -12.76,
- -12.22,
- -11.94,
- -11.57,
- -10.73,
- -9.06,
- -6.96,
- -5.57,
- -4.18,
- -1.92,
- -0.24,
- -4.0,
- -2.67,
- -0.79,
- 0.22,
- 1.29,
- 2.71,
- 4.12,
- 5.56,
- 6.53,
- 6.88,
- 6.76,
- 6.52,
- 6.23,
- 5.83,
- 5.59,
- 5.48,
- 4.72,
- 2.72,
- -0.36,
- -3.13,
- -4.85,
- -6.35,
- -6.97,
- -6.14,
- -6.34,
- -5.2,
- -6.29,
- -6.07,
- -9.26,
- -8.21,
- -7.45,
- -7.32,
- -6.06,
- -6.56,
- -7.29,
- -6.95,
- -5.27,
- -4.5,
- -5.08,
- -6.37,
- -8.57,
- -7.41,
- -7.8,
- -9.85,
- -12.69,
- -13.78,
- -14.57,
- 0.13,
- 4.82,
- 7.28,
- 9.18,
- 11.48,
- 12.91,
- 12.93,
- 11.53,
- 10.58,
- 11.5,
- 11.21,
- 11.11,
- 11.27,
- 12.46,
- 13.19,
- 13.67,
- 15.82,
- 17.38,
- 16.79,
- 15.47,
- 13.98,
- 12.09,
- 9.92,
- 7.94,
- 5.86,
- 3.48,
- -0.24,
- -3.16,
- -5.69,
- -0.56,
- -0.78,
- -1.87,
- -2.23,
- -2.17,
- -2.19,
- -2.27,
- -0.86,
- -0.76,
- -0.14,
- 1.0,
- 1.05,
- 1.39,
- 2.94,
- 2.12,
- 1.5,
- 3.17,
- 1.5,
- 2.25,
- 3.36,
- 3.07,
- 2.33,
- 3.18,
- 2.97,
- 2.58,
- 2.08,
- 0.87,
- 0.45,
- -0.83,
- -1.28,
- -0.9,
- -0.7,
- -1.0,
- -0.94,
- -0.39,
- -0.56,
- -1.1,
- -0.79,
- -0.7,
- -1.42,
- -1.62,
- -2.12,
- -2.63,
- -1.27,
- -0.44,
- -0.66,
- -0.32,
- -0.43,
- 0.68,
- 0.16,
- -1.69,
- -0.79,
- -1.1,
- -1.9,
- -1.55,
- -1.92,
- -2.32,
- -2.0,
- -1.95,
- -2.6,
- -1.82,
- -2.65,
- -4.14,
- -5.53,
- -6.02,
- -3.51,
- -4.31,
- -3.58,
- -4.05,
- -5.85,
- -4.22,
- -2.9,
- -4.15,
- -2.59,
- 1.15,
- 7.64,
- 13.55,
- 15.63,
- 14.95,
- 12.85,
- 11.98,
- 11.67,
- 12.44,
- 12.2,
- 10.94,
- 9.0,
- 6.66,
- 5.44,
- 5.18,
- 5.05,
- 4.62,
- 3.53,
- 2.4,
- 2.47,
- 4.28,
- 3.22,
- 0.84,
- -1.34,
- 1.65,
- 8.3,
- 9.5,
- 9.56,
- 8.77,
- 7.61,
- 6.47,
- 5.03,
- 3.92,
- 4.06,
- 3.4,
- 2.98,
- 4.67,
- 7.03,
- 5.42,
- 2.77,
- 0.97,
- -0.15,
- -1.13,
- -2.68,
- -2.97,
- -3.65,
- -4.64,
- -4.63,
- -4.02,
- -1.57,
- -1.83,
- -2.11,
- -2.94,
- -7.97,
- -5.62,
- -2.34,
- -1.78,
- -2.15,
- -2.99,
- -1.52,
- 0.87,
- 0.96,
- 0.35,
- -0.75,
- 0.81,
- 0.87,
- -0.98,
- 1.01,
- 0.84,
- 0.94,
- -0.42,
- -0.92,
- -0.03,
- -0.58,
- -1.31,
- -1.61,
- -1.56,
- 0.52,
- 0.99,
- 3.39,
- 1.85,
- 0.96,
- 0.24,
- -0.65,
- -1.27,
- -2.11,
- -2.35,
- -3.23,
- -3.79,
- -3.94,
- -3.89,
- -3.91,
- -3.73,
- -2.96,
- -1.45,
- -0.69,
- 2.58,
- 1.87,
- -0.49,
- -2.39,
- -2.44,
- -2.71,
- -2.65,
- -2.13,
- -0.77,
- 2.39,
- 4.4,
- 4.19,
- 5.24,
- 5.34,
- 6.52,
- 5.45,
- 4.38,
- 3.94,
- 4.08,
- 3.32,
- 1.95,
- 1.03,
- 0.99,
- 0.29,
- -0.5,
- -0.85,
- -1.04,
- -1.0,
- -1.2,
- -1.49,
- -1.96,
- -3.05,
- -4.21,
- -5.14,
- -6.17,
- -6.0,
- -5.48,
- -5.11,
- -4.58,
- -4.43,
- -4.6,
- -1.66,
- -1.08,
- -2.16,
- -2.74,
- -2.84,
- -3.13,
- -6.5,
- -6.33,
- -10.39,
- -1.56,
- -3.34,
- -4.77,
- -5.82,
- -3.11,
- -2.86,
- 0.18,
- -0.76,
- 0.02,
- 1.53,
- 1.4,
- 1.2,
- -1.08,
- -3.71,
- -4.57,
- -3.53,
- -2.74,
- -2.19,
- -2.66,
- -5.24,
- -7.93,
- -10.87,
- 5.38,
- 10.05,
- 12.69,
- 8.1,
- 4.07,
- 4.1,
- 3.51,
- 2.74,
- 3.15,
- 4.25,
- 3.61,
- 2.36,
- 2.57,
- 1.74,
- 2.86,
- 2.04,
- 1.12,
- 0.9,
- -0.39,
- 1.92,
- -1.5,
- -2.94,
- -4.53,
- -3.73,
- -3.47,
- -4.44,
- -13.23,
- -10.89,
- -5.11,
- -12.82,
- -14.83,
- -14.69,
- -14.62,
- -13.89,
- -13.15,
- -11.58,
- -9.83,
- -7.55,
- -5.16,
- -2.16,
- -1.38,
- -1.99,
- -0.13,
- 1.29,
- 3.04,
- 4.63,
- 5.49,
- 5.7,
- 5.36,
- 5.61,
- 6.3,
- 7.26,
- 8.04,
- 7.91,
- 7.63,
- 7.35,
- 7.08,
- 6.92,
- 6.1,
- 4.34,
- 2.13,
- -0.31,
- -2.61,
- -4.35,
- -6.24,
- -6.88,
- -6.5,
- -6.51,
- -6.31,
- -6.24,
- -6.23,
- -6.34,
- -5.48,
- -5.32,
- -5.02,
- -5.79,
- -6.08,
- -6.08,
- -5.07,
- -5.1,
- -5.87,
- -7.61,
- -7.89,
- -7.35,
- -8.03,
- -10.33,
- -12.8,
- -14.16,
- -9.9,
- 1.84,
- 5.89,
- 8.12,
- 10.1,
- 12.15,
- 14.4,
- 14.38,
- 13.6,
- 12.92,
- 12.34,
- 11.81,
- 11.62,
- 12.34,
- 13.75,
- 13.79,
- 13.55,
- 14.22,
- 15.8,
- 15.78,
- 15.47,
- 13.97,
- 12.24,
- 10.62,
- 8.18,
- 5.62,
- 2.99,
- -0.6,
- -4.41,
- -7.74,
- -2.43,
- -1.4,
- -3.98,
- -0.66,
- 0.23,
- 1.23,
- 0.56,
- -1.68,
- 0.79,
- -0.28,
- 0.66,
- 1.56,
- 0.68,
- 1.46,
- 2.32,
- 2.24,
- 2.47,
- 2.33,
- 2.73,
- 3.2,
- 3.1,
- 2.82,
- 2.63,
- 2.28,
- 2.16,
- 1.26,
- 0.16,
- -1.5,
- -1.81,
- -2.26,
- -1.07,
- -0.55,
- -0.49,
- 0.29,
- 0.32,
- 0.23,
- -0.11,
- -0.5,
- -1.46,
- -1.43,
- -1.86,
- -3.11,
- -1.88,
- 0.1,
- -0.53,
- -0.02,
- 0.42,
- 0.46,
- 0.03,
- -0.77,
- -1.3,
- -1.77,
- -0.92,
- -1.52,
- -2.06,
- -1.79,
- -1.47,
- -1.75,
- -2.7,
- -2.01,
- -3.38,
- -2.4,
- -1.36,
- -0.82,
- -1.33,
- -2.51,
- -3.79,
- -5.49,
- -5.24,
- -2.45,
- -3.05,
- -1.36,
- -0.43,
- 2.05,
- 8.1,
- 10.94,
- 13.26,
- 13.15,
- 11.86,
- 10.98,
- 10.22,
- 10.86,
- 11.6,
- 11.31,
- 10.2,
- 8.74,
- 6.66,
- 5.11,
- 4.43,
- 3.96,
- 3.0,
- 3.05,
- 4.36,
- 4.42,
- 2.49,
- 0.99,
- -1.55,
- 3.78,
- 10.21,
- 10.1,
- 9.74,
- 8.96,
- 7.93,
- 6.76,
- 5.94,
- 5.22,
- 4.36,
- 3.02,
- 2.82,
- 1.23,
- 1.85,
- 6.38,
- 6.52,
- 4.0,
- 1.52,
- -0.42,
- -2.03,
- -3.29,
- -4.06,
- -4.44,
- -5.17,
- -5.74,
- -4.98,
- -4.55,
- -5.77,
- -6.77,
- -7.5,
- -0.82,
- -2.67,
- -3.87,
- -2.65,
- -2.68,
- -0.53,
- -0.07,
- 2.06,
- 1.56,
- 0.9,
- 1.56,
- 1.57,
- 1.53,
- 0.81,
- 0.95,
- 2.19,
- -0.46,
- -1.16,
- 0.56,
- 0.26,
- -1.17,
- -2.16,
- -2.22,
- -0.3,
- -1.09,
- -1.09,
- 2.51,
- 2.63,
- 1.08,
- 0.34,
- -0.33,
- -1.76,
- -1.89,
- -2.56,
- -2.65,
- -3.05,
- -3.71,
- -3.77,
- -3.27,
- -3.12,
- -2.43,
- -2.3,
- -1.16,
- 2.25,
- 2.31,
- 0.15,
- -1.16,
- -2.62,
- -3.67,
- -3.68,
- -3.47,
- -2.48,
- 3.53,
- 2.83,
- 3.16,
- 4.12,
- 5.54,
- 5.29,
- 5.18,
- 4.44,
- 4.11,
- 3.03,
- 2.03,
- 1.59,
- 1.07,
- 1.16,
- 0.97,
- 0.92,
- -0.05,
- -0.71,
- -0.57,
- -0.81,
- -1.16,
- -1.84,
- -2.89,
- -4.09,
- -4.72,
- -5.93,
- -6.18,
- -6.4,
- -6.1,
- -6.12,
- -7.54,
- -7.17,
- -8.32,
- -4.55,
- -2.78,
- -1.72,
- -2.94,
- -5.01,
- -5.58,
- -9.57,
- -9.78,
- -12.53,
- -8.16,
- -6.28,
- -6.41,
- -3.66,
- 1.35,
- 1.41,
- 0.95,
- -1.75,
- -1.25,
- -0.12,
- -0.21,
- -2.11,
- -4.42,
- -3.91,
- -2.47,
- -3.49,
- -3.95,
- -5.22,
- -6.32,
- -9.45,
- 4.78,
- 9.41,
- 12.34,
- 8.72,
- 7.25,
- 5.84,
- 4.64,
- 2.63,
- 2.19,
- 3.47,
- 4.32,
- 3.58,
- 3.37,
- 2.37,
- 0.37,
- -0.95,
- 1.64,
- 2.01,
- 1.91,
- 1.12,
- -0.44,
- -2.66,
- -4.03,
- -4.23,
- -2.86,
- -3.15,
- -5.4,
- -15.36,
- -8.04,
- -7.91,
- -11.57,
- -16.63,
- -17.05,
- -16.78,
- -16.26,
- -14.95,
- -12.9,
- -9.42,
- -3.2,
- 0.33,
- 2.9,
- 4.9,
- 6.4,
- 7.14,
- 7.57,
- 7.32,
- 6.94,
- 7.42,
- 8.19,
- 8.61,
- 8.81,
- 8.41,
- 8.38,
- 8.46,
- 9.12,
- 9.08,
- 8.76,
- 8.65,
- 7.84,
- 6.3,
- 4.9,
- 3.45,
- 1.14,
- -0.82,
- -2.56,
- -4.41,
- -6.08,
- -6.79,
- -7.31,
- -6.46,
- -6.3,
- -5.1,
- -5.27,
- -4.83,
- -5.25,
- -5.29,
- -6.11,
- -6.53,
- -5.77,
- -5.43,
- -6.09,
- -6.72,
- -7.22,
- -6.82,
- -7.13,
- -8.34,
- -9.49,
- -11.8,
- -14.17,
- -6.43,
- -0.12,
- 3.69,
- 7.15,
- 11.36,
- 14.37,
- 16.12,
- 15.78,
- 14.07,
- 12.8,
- 11.96,
- 11.53,
- 12.03,
- 14.04,
- 14.18,
- 13.43,
- 13.26,
- 13.55,
- 14.58,
- 15.54,
- 15.53,
- 14.33,
- 12.18,
- 10.31,
- 7.96,
- 5.24,
- 2.17,
- -1.01,
- -4.44,
- -7.65,
- -9.67,
- -5.81,
- 0.28,
- 0.03,
- -0.12,
- -0.33,
- -0.98,
- -1.77,
- -1.43,
- 1.17,
- 0.63,
- 0.39,
- -0.23,
- -0.05,
- 3.14,
- 0.99,
- 1.66,
- 0.36,
- 1.62,
- 2.28,
- 2.38,
- 2.73,
- 2.2,
- 1.96,
- 0.39,
- -0.81,
- -1.14,
- -1.55,
- -1.79,
- -1.11,
- -0.42,
- -0.75,
- 0.19,
- 0.33,
- -0.76,
- -1.14,
- -1.46,
- -1.71,
- -2.01,
- -2.7,
- -2.92,
- -2.75,
- -2.29,
- -0.43,
- -0.26,
- 0.3,
- 0.55,
- 0.21,
- -0.18,
- -0.79,
- -1.26,
- -1.62,
- -1.65,
- -1.71,
- -1.52,
- -1.59,
- -1.13,
- -0.92,
- -1.79,
- -3.84,
- -0.06,
- -0.83,
- -1.85,
- -6.49,
- -5.42,
- -2.68,
- -4.0,
- -4.86,
- -3.36,
- -1.45,
- -1.08,
- 1.72,
- 3.48,
- 3.43,
- 7.48,
- 8.26,
- 8.58,
- 8.81,
- 9.8,
- 9.18,
- 8.99,
- 9.3,
- 8.78,
- 9.01,
- 8.17,
- 6.61,
- 4.88,
- 4.38,
- 4.36,
- 4.19,
- 4.64,
- 4.22,
- 2.7,
- 0.62,
- -0.19,
- -5.27,
- 6.44,
- 11.12,
- 10.29,
- 9.7,
- 8.82,
- 8.27,
- 7.51,
- 6.81,
- 6.16,
- 5.9,
- 5.38,
- 4.32,
- 2.39,
- 0.75,
- -1.01,
- 3.47,
- 5.8,
- 4.95,
- 2.09,
- -0.4,
- -2.58,
- -3.94,
- -4.73,
- -5.22,
- -5.94,
- -6.98,
- -7.45,
- -6.98,
- -7.52,
- -8.17,
- -3.01,
- -6.8,
- -1.92,
- -2.29,
- -1.93,
- -0.43,
- 0.49,
- 0.06,
- 0.01,
- 1.41,
- 1.04,
- 1.86,
- 1.31,
- 1.63,
- 1.51,
- 1.64,
- 1.01,
- -0.12,
- 2.18,
- 1.33,
- 0.14,
- -1.08,
- -1.78,
- -3.03,
- -0.34,
- 0.15,
- 1.02,
- 1.1,
- 1.88,
- -0.44,
- -1.86,
- -1.54,
- -1.49,
- -1.77,
- -2.2,
- -2.76,
- -2.87,
- -3.27,
- -3.89,
- -4.27,
- -4.28,
- -3.61,
- -0.79,
- 2.29,
- 1.75,
- 0.05,
- -0.48,
- 0.03,
- -2.86,
- -3.82,
- -4.48,
- -4.44,
- -3.17,
- 1.02,
- 3.93,
- 4.15,
- 6.49,
- 6.68,
- 4.24,
- 3.83,
- 4.11,
- 3.39,
- 2.2,
- 1.61,
- 0.99,
- 1.45,
- 1.67,
- 2.06,
- 1.03,
- 0.09,
- -0.53,
- -0.37,
- -0.1,
- 0.09,
- -0.63,
- -1.08,
- -2.23,
- -3.61,
- -4.4,
- -5.62,
- -6.31,
- -7.87,
- -6.97,
- -6.87,
- -6.59,
- -4.32,
- -2.27,
- 1.52,
- 0.34,
- -2.07,
- -3.12,
- -5.02,
- -5.24,
- -8.62,
- -8.45,
- -8.14,
- -7.74,
- -3.88,
- -0.6,
- -2.55,
- 0.43,
- -2.3,
- -1.95,
- 2.5,
- -0.75,
- -3.48,
- -4.68,
- -6.11,
- -4.04,
- -3.89,
- -5.33,
- -6.98,
- -7.42,
- -4.5,
- -1.34,
- 4.77,
- 9.42,
- 11.14,
- 9.92,
- 8.88,
- 7.29,
- 5.23,
- 2.75,
- 1.9,
- 3.4,
- 3.2,
- 3.23,
- 2.92,
- 1.01,
- -1.72,
- -0.69,
- 2.34,
- 1.19,
- -0.43,
- -0.84,
- -2.41,
- -3.86,
- -4.94,
- -3.92,
- -2.37,
- -3.05,
- -6.08,
- -14.79,
- -11.65,
- -7.81,
- -15.04,
- -17.53,
- -18.59,
- -18.66,
- -17.17,
- -15.11,
- -10.11,
- -6.48,
- -2.82,
- 2.09,
- 4.87,
- 6.22,
- 6.68,
- 6.77,
- 6.92,
- 6.93,
- 8.25,
- 11.11,
- 12.48,
- 12.0,
- 11.62,
- 10.9,
- 10.57,
- 9.8,
- 9.36,
- 9.44,
- 9.84,
- 9.22,
- 8.62,
- 7.39,
- 5.57,
- 4.51,
- 3.26,
- 0.6,
- -1.46,
- -2.7,
- -4.24,
- -5.87,
- -7.19,
- -7.15,
- -6.24,
- -6.01,
- -6.11,
- -4.77,
- -5.2,
- -5.41,
- -6.18,
- -6.41,
- -6.24,
- -5.98,
- -5.81,
- -5.84,
- -6.31,
- -5.88,
- -6.47,
- -7.95,
- -8.71,
- -10.62,
- -12.5,
- -7.18,
- -3.67,
- -0.06,
- 7.77,
- 13.91,
- 17.16,
- 17.57,
- 16.81,
- 15.12,
- 12.79,
- 12.09,
- 11.66,
- 13.24,
- 14.11,
- 14.04,
- 13.53,
- 13.72,
- 13.49,
- 13.25,
- 13.95,
- 14.94,
- 14.15,
- 11.89,
- 9.49,
- 7.82,
- 4.98,
- 1.9,
- -1.58,
- -4.31,
- -6.74,
- -8.17,
- -7.59,
- -5.7,
- 1.22,
- 0.38,
- -2.42,
- -2.53,
- -1.84,
- -1.94,
- 1.0,
- 0.29,
- -0.04,
- -0.63,
- -0.53,
- 0.14,
- -0.38,
- 0.41,
- 2.83,
- 1.96,
- 2.88,
- 1.9,
- 0.87,
- 1.3,
- 0.81,
- 0.4,
- 0.22,
- -0.2,
- -1.11,
- -1.19,
- -1.09,
- -0.34,
- -0.01,
- 0.26,
- -0.04,
- -0.61,
- -1.01,
- -1.03,
- -2.31,
- -4.83,
- -6.34,
- -5.61,
- -3.59,
- -1.24,
- 0.47,
- 0.19,
- 0.4,
- 0.29,
- -0.57,
- -0.82,
- -1.11,
- -0.9,
- -1.04,
- -1.29,
- -1.38,
- 0.15,
- -0.69,
- -1.57,
- -1.05,
- -1.54,
- -0.57,
- -0.24,
- -0.78,
- -1.35,
- -1.48,
- -0.63,
- -0.3,
- -0.27,
- -1.38,
- 0.09,
- -0.35,
- 1.7,
- 2.33,
- 3.17,
- 4.13,
- 5.0,
- 7.35,
- 8.18,
- 8.53,
- 8.65,
- 8.77,
- 8.55,
- 7.4,
- 6.57,
- 6.3,
- 6.02,
- 5.01,
- 4.51,
- 4.16,
- 4.01,
- 3.61,
- 2.98,
- 1.43,
- 0.1,
- -1.19,
- -4.81,
- 9.47,
- 10.16,
- 10.11,
- 8.87,
- 8.23,
- 7.9,
- 7.47,
- 6.84,
- 6.29,
- 6.15,
- 5.86,
- 4.49,
- 2.88,
- 1.38,
- -0.25,
- -1.81,
- -3.02,
- 2.84,
- 5.05,
- 2.84,
- -0.63,
- -3.11,
- -4.94,
- -5.4,
- -6.06,
- -6.98,
- -8.01,
- -8.72,
- -2.43,
- -3.48,
- -3.68,
- -3.44,
- 2.21,
- 0.73,
- 1.29,
- 0.92,
- -0.41,
- -2.54,
- 0.58,
- 0.95,
- 1.62,
- 2.65,
- 2.74,
- 3.2,
- 2.71,
- 1.57,
- -0.21,
- -0.34,
- -0.12,
- 1.48,
- 0.19,
- -0.27,
- -1.15,
- -2.12,
- -1.1,
- -0.84,
- 0.38,
- 1.31,
- 2.18,
- 1.78,
- -0.51,
- -2.55,
- -3.11,
- -2.36,
- -1.94,
- -1.99,
- -2.3,
- -2.83,
- -3.77,
- -4.44,
- -4.43,
- -2.54,
- 0.52,
- 1.3,
- 1.87,
- 1.14,
- -0.9,
- 1.1,
- -0.42,
- -4.27,
- -4.13,
- -4.47,
- -4.3,
- -3.48,
- 4.38,
- 2.2,
- 4.47,
- 1.74,
- -3.11,
- 3.01,
- 3.81,
- 3.78,
- 2.54,
- 1.75,
- 1.11,
- 0.95,
- 1.23,
- 1.46,
- 1.06,
- -0.25,
- -0.94,
- -1.2,
- -0.52,
- 0.19,
- 0.32,
- -0.75,
- -1.71,
- -2.42,
- -3.13,
- -4.17,
- -4.77,
- -5.35,
- -7.57,
- -5.83,
- -4.67,
- -5.58,
- -4.6,
- -7.12,
- -5.6,
- -10.53,
- -9.88,
- -6.31,
- -3.66,
- -3.89,
- -6.29,
- -6.12,
- -8.53,
- -7.11,
- -8.1,
- -6.85,
- -4.17,
- -1.04,
- 2.72,
- 5.41,
- 2.47,
- 1.18,
- -2.4,
- -4.81,
- -5.58,
- -5.87,
- -5.41,
- -4.43,
- -2.49,
- -1.91,
- -1.91,
- 0.06,
- 3.13,
- 7.21,
- 12.45,
- 10.47,
- 9.92,
- 7.94,
- 5.93,
- 3.52,
- 3.89,
- 2.53,
- -0.46,
- -0.05,
- 1.13,
- 0.98,
- -1.23,
- -1.32,
- -1.31,
- -1.82,
- -1.82,
- -2.4,
- -4.15,
- -3.83,
- -4.23,
- -2.92,
- -3.01,
- 6.06,
- -6.31,
- -13.38,
- -10.84,
- -7.86,
- -16.14,
- -17.61,
- -18.38,
- -19.05,
- -17.38,
- -13.34,
- -11.16,
- -9.17,
- -3.2,
- 4.46,
- 9.84,
- 11.4,
- 11.25,
- 9.71,
- 8.19,
- 7.51,
- 7.09,
- 6.79,
- 9.13,
- 12.75,
- 13.63,
- 13.59,
- 12.11,
- 11.11,
- 10.27,
- 10.01,
- 9.46,
- 9.41,
- 9.17,
- 8.07,
- 6.3,
- 4.85,
- 3.66,
- 2.05,
- -0.26,
- -2.09,
- -3.14,
- -4.26,
- -6.02,
- -7.11,
- -7.01,
- -6.91,
- -7.15,
- -5.83,
- -4.76,
- -4.98,
- -4.99,
- -5.08,
- -4.77,
- -5.25,
- -5.25,
- -4.75,
- -3.98,
- -4.69,
- -5.46,
- -7.06,
- -7.79,
- -8.79,
- -9.94,
- -6.86,
- -3.78,
- -0.23,
- 9.34,
- 15.89,
- 18.49,
- 17.83,
- 16.86,
- 15.03,
- 12.82,
- 11.69,
- 12.22,
- 13.68,
- 13.98,
- 13.94,
- 14.19,
- 13.64,
- 13.38,
- 12.89,
- 12.48,
- 13.32,
- 13.5,
- 11.76,
- 9.48,
- 7.69,
- 4.78,
- 1.26,
- -1.75,
- -4.43,
- -6.4,
- -7.57,
- -7.94,
- -7.94,
- -4.55,
- 0.0,
- -1.48,
- -3.25,
- -2.67,
- 0.27,
- 3.06,
- 0.65,
- 0.26,
- 0.3,
- -0.38,
- -1.3,
- -0.6,
- 2.52,
- 3.05,
- 3.16,
- 2.45,
- 2.07,
- 0.91,
- -0.09,
- 0.58,
- -0.5,
- -0.99,
- -1.5,
- -2.48,
- -2.67,
- -1.82,
- 0.02,
- 0.61,
- 0.09,
- -0.15,
- -0.04,
- -1.55,
- -1.24,
- -1.79,
- -0.55,
- -0.13,
- -1.69,
- -2.99,
- -1.51,
- -0.17,
- -0.15,
- -0.1,
- -0.97,
- -1.02,
- -0.49,
- -0.66,
- -0.88,
- -1.51,
- -1.26,
- -0.97,
- -0.95,
- -2.48,
- -1.91,
- -1.13,
- -1.38,
- -1.43,
- -1.36,
- -1.22,
- -0.51,
- -1.46,
- -1.19,
- -0.25,
- 2.41,
- 1.17,
- 2.37,
- 2.43,
- 2.38,
- 2.24,
- 2.8,
- 2.72,
- 3.6,
- 7.03,
- 8.22,
- 8.7,
- 8.86,
- 7.79,
- 6.94,
- 5.48,
- 4.44,
- 3.4,
- 3.26,
- 2.69,
- 2.34,
- 1.69,
- 1.11,
- 0.31,
- -1.08,
- -1.18,
- -2.28,
- 5.88,
- 9.5,
- 9.03,
- 9.22,
- 9.07,
- 8.18,
- 7.45,
- 7.16,
- 6.7,
- 6.0,
- 5.5,
- 5.51,
- 4.89,
- 3.78,
- 2.47,
- 1.05,
- -0.44,
- -1.89,
- -2.8,
- -4.05,
- 4.26,
- 3.13,
- -0.87,
- -3.39,
- -5.38,
- -5.99,
- -6.66,
- -7.62,
- -8.33,
- -8.68,
- -9.08,
- -10.58,
- -8.0,
- -10.86,
- 6.16,
- 2.85,
- 2.74,
- 1.07,
- -1.1,
- 1.63,
- 0.54,
- 2.46,
- 1.29,
- -2.03,
- -0.13,
- -0.02,
- 1.96,
- -0.7,
- -1.11,
- -0.48,
- 0.08,
- -0.19,
- -1.28,
- -1.45,
- -1.09,
- -2.63,
- -0.29,
- 0.37,
- 0.18,
- -0.81,
- -0.06,
- 1.07,
- 0.29,
- -0.95,
- -1.21,
- -1.47,
- -0.81,
- -0.16,
- -0.04,
- -0.33,
- -2.01,
- -3.17,
- -0.89,
- 0.05,
- -0.46,
- 0.04,
- 0.42,
- -0.22,
- -1.11,
- -1.74,
- -2.17,
- -3.2,
- -3.83,
- -3.44,
- -3.77,
- -2.65,
- 0.71,
- -2.07,
- 2.84,
- 4.2,
- 3.35,
- 4.09,
- 4.47,
- 2.85,
- 0.11,
- 1.32,
- 1.16,
- 0.64,
- 0.25,
- -0.14,
- 0.25,
- 0.06,
- 0.08,
- 0.24,
- -0.03,
- -0.07,
- -0.36,
- -0.77,
- -3.95,
- -3.36,
- -3.75,
- -4.26,
- -4.97,
- -4.9,
- -4.71,
- -3.31,
- -3.7,
- -3.59,
- -6.67,
- -11.59,
- 0.69,
- 2.22,
- -6.0,
- -7.44,
- -6.42,
- -5.41,
- -2.43,
- 0.59,
- 1.28,
- -8.51,
- -7.77,
- -0.94,
- -0.9,
- 1.6,
- 2.35,
- 1.57,
- 2.32,
- 1.79,
- -0.78,
- -7.02,
- -7.31,
- -7.19,
- -6.46,
- -4.61,
- -2.02,
- 0.3,
- 2.52,
- 4.15,
- 3.52,
- 5.49,
- 12.26,
- 10.5,
- 9.1,
- 6.85,
- 4.29,
- 2.37,
- 2.13,
- 1.06,
- 0.19,
- 0.07,
- 0.58,
- 0.86,
- 1.23,
- 0.06,
- -3.03,
- -2.72,
- -2.09,
- -1.21,
- -3.65,
- -3.64,
- -3.44,
- -2.88,
- 5.04,
- 2.61,
- -5.36,
- -12.3,
- -8.1,
- -5.38,
- -14.64,
- -15.48,
- -17.19,
- -17.7,
- -16.32,
- -13.1,
- -6.89,
- -12.01,
- -6.54,
- 10.3,
- 16.27,
- 15.89,
- 14.25,
- 11.86,
- 9.95,
- 9.48,
- 8.38,
- 7.35,
- 5.84,
- 6.47,
- 10.26,
- 13.15,
- 14.51,
- 13.8,
- 12.4,
- 11.96,
- 11.57,
- 10.82,
- 9.94,
- 8.6,
- 6.82,
- 5.19,
- 4.09,
- 2.63,
- 0.76,
- -1.07,
- -2.52,
- -3.38,
- -3.58,
- -4.93,
- -7.78,
- -6.78,
- -7.22,
- -6.32,
- -5.83,
- -5.48,
- -4.78,
- -5.0,
- -4.06,
- -4.26,
- -4.55,
- -3.92,
- -3.34,
- -3.61,
- -3.94,
- -5.52,
- -6.51,
- -6.53,
- -6.59,
- -4.55,
- -0.57,
- 3.82,
- 9.95,
- 15.64,
- 17.09,
- 16.17,
- 15.52,
- 13.64,
- 12.08,
- 11.35,
- 12.04,
- 12.88,
- 13.72,
- 14.4,
- 14.24,
- 13.51,
- 12.25,
- 11.42,
- 11.56,
- 11.54,
- 11.72,
- 10.39,
- 8.27,
- 6.72,
- 4.56,
- 1.06,
- -2.0,
- -4.34,
- -6.26,
- -7.59,
- -8.36,
- -8.63,
- -4.75,
- -1.2,
- -1.38,
- -1.32,
- -1.88,
- 4.07,
- 1.87,
- -0.93,
- -0.16,
- -0.26,
- -1.35,
- -1.24,
- -0.74,
- -0.22,
- 0.04,
- 0.65,
- 1.23,
- 2.55,
- 2.98,
- 1.23,
- 0.62,
- -0.24,
- -0.84,
- -1.22,
- -1.92,
- -2.16,
- 0.42,
- 0.92,
- -0.48,
- -1.1,
- -1.56,
- -2.57,
- -1.47,
- -1.43,
- -1.14,
- -0.55,
- -1.55,
- -2.47,
- -1.88,
- -2.27,
- -0.78,
- -2.28,
- -1.93,
- -2.21,
- -1.11,
- -0.14,
- -0.79,
- -1.57,
- -1.61,
- -1.73,
- -2.39,
- -1.88,
- -1.37,
- -0.58,
- -1.19,
- -1.17,
- -1.32,
- -1.46,
- -1.65,
- -0.81,
- -0.81,
- -0.42,
- -0.2,
- 0.21,
- 0.74,
- 2.42,
- 3.55,
- 3.72,
- 3.71,
- 3.85,
- 4.8,
- 5.76,
- 6.58,
- 6.91,
- 6.85,
- 5.65,
- 6.03,
- 4.88,
- 2.75,
- 1.99,
- 1.2,
- 1.4,
- 0.6,
- 0.08,
- 1.26,
- -0.66,
- -1.2,
- -0.12,
- 5.2,
- 9.01,
- 8.64,
- 8.22,
- 7.74,
- 7.93,
- 7.58,
- 6.81,
- 6.53,
- 6.62,
- 6.04,
- 5.27,
- 4.25,
- 3.84,
- 3.52,
- 2.94,
- 2.42,
- 1.39,
- 0.03,
- -1.23,
- -2.24,
- -2.05,
- 0.82,
- 2.31,
- -1.37,
- -3.8,
- -5.65,
- -6.65,
- -7.19,
- -7.72,
- -8.11,
- -8.57,
- -9.97,
- -12.13,
- -16.44,
- -5.25,
- 5.55,
- 3.13,
- 1.64,
- 0.46,
- 1.91,
- 1.63,
- 1.15,
- 0.67,
- -0.66,
- 0.25,
- 1.55,
- 1.04,
- -0.15,
- 0.29,
- -0.96,
- -0.97,
- -0.47,
- -0.2,
- -0.55,
- -0.43,
- -0.93,
- -0.56,
- -0.49,
- 0.56,
- -0.66,
- 0.27,
- -0.81,
- -1.16,
- -0.76,
- -0.87,
- -1.13,
- -1.42,
- -2.19,
- -0.43,
- 0.11,
- -1.09,
- -2.06,
- -2.64,
- -2.81,
- -2.36,
- -1.55,
- -0.33,
- 0.4,
- 0.63,
- 0.1,
- -0.84,
- -1.39,
- -1.42,
- -2.82,
- -3.33,
- -3.09,
- -1.3,
- -2.13,
- -2.85,
- -0.7,
- -1.73,
- 2.27,
- 3.15,
- 2.34,
- 0.91,
- 1.61,
- 0.36,
- 1.17,
- -0.07,
- -1.28,
- -1.75,
- -1.3,
- 0.46,
- 0.62,
- 0.07,
- -0.4,
- -0.38,
- -1.2,
- -2.84,
- -2.63,
- -3.25,
- -4.39,
- -5.68,
- -7.29,
- -2.57,
- -1.88,
- -1.11,
- -1.89,
- -6.98,
- 7.15,
- -3.29,
- -5.47,
- -1.33,
- 1.95,
- -6.12,
- -5.87,
- -4.48,
- -5.61,
- -5.24,
- -5.37,
- -2.95,
- -7.77,
- -1.72,
- 1.33,
- 0.44,
- -0.27,
- -2.42,
- -3.05,
- -1.06,
- -0.47,
- -0.44,
- -1.83,
- -3.44,
- -3.2,
- -1.55,
- -0.4,
- -4.07,
- -5.13,
- -4.66,
- -2.32,
- 3.34,
- 8.26,
- 9.85,
- 8.67,
- 6.82,
- 4.06,
- 1.2,
- -1.1,
- -0.75,
- -0.56,
- 0.84,
- 2.21,
- 0.34,
- -1.01,
- 1.8,
- 0.74,
- -1.7,
- 1.75,
- -0.01,
- -2.3,
- -2.21,
- -2.07,
- 7.5,
- 4.38,
- 0.15,
- -5.81,
- -9.98,
- -2.7,
- -8.17,
- -8.72,
- -13.77,
- -14.79,
- -15.0,
- -9.69,
- -9.88,
- -9.67,
- -9.49,
- -2.96,
- 13.96,
- 19.1,
- 18.47,
- 14.93,
- 12.41,
- 10.1,
- 10.53,
- 9.01,
- 7.57,
- 6.62,
- 4.99,
- 5.02,
- 9.99,
- 13.89,
- 16.01,
- 16.93,
- 15.37,
- 13.05,
- 11.55,
- 10.54,
- 8.99,
- 7.67,
- 7.22,
- 5.41,
- 3.0,
- 1.23,
- -0.58,
- -1.96,
- -3.11,
- -3.87,
- -4.07,
- -4.87,
- -6.05,
- -7.01,
- -7.16,
- -6.79,
- -5.84,
- -5.12,
- -5.15,
- -3.57,
- -3.74,
- -4.13,
- -3.07,
- -2.9,
- -3.07,
- -3.37,
- -3.7,
- -4.49,
- -4.3,
- -4.14,
- -2.48,
- 1.19,
- 5.56,
- 9.77,
- 14.57,
- 13.08,
- 13.9,
- 13.49,
- 11.73,
- 11.1,
- 10.69,
- 11.24,
- 13.12,
- 14.07,
- 14.58,
- 12.82,
- 11.77,
- 11.35,
- 10.91,
- 10.61,
- 10.85,
- 10.6,
- 8.91,
- 6.75,
- 4.87,
- 3.04,
- 0.37,
- -2.31,
- -4.5,
- -6.47,
- -8.29,
- -9.06,
- -9.03,
- -5.1,
- -0.89,
- -0.76,
- 1.06,
- 0.57,
- -0.23,
- -2.14,
- -1.79,
- -1.66,
- -1.32,
- -1.81,
- -1.76,
- -1.39,
- -0.8,
- -0.21,
- -2.69,
- 1.99,
- 1.88,
- 2.16,
- 1.5,
- -0.05,
- -0.33,
- -1.33,
- -2.06,
- -2.0,
- -2.21,
- -1.4,
- -1.45,
- -1.64,
- -2.09,
- -2.54,
- -0.77,
- -0.56,
- -0.63,
- -0.83,
- -1.13,
- -1.44,
- -4.48,
- -0.63,
- 1.27,
- 0.29,
- -2.38,
- -5.6,
- -3.13,
- -1.18,
- -1.46,
- -2.04,
- -2.41,
- -2.18,
- -0.93,
- 0.91,
- -0.24,
- -0.65,
- -1.28,
- -2.04,
- -1.44,
- -0.66,
- -1.84,
- -1.75,
- 0.07,
- -0.67,
- -1.45,
- -1.25,
- 0.99,
- 3.6,
- 3.59,
- 2.95,
- 2.58,
- 2.37,
- 2.21,
- 2.28,
- 3.0,
- 3.23,
- 3.07,
- 3.14,
- 3.24,
- 2.34,
- 0.65,
- -0.22,
- -0.3,
- 0.85,
- 1.0,
- 0.59,
- -0.58,
- -0.55,
- -0.39,
- 3.6,
- 8.81,
- 8.98,
- 8.93,
- 8.14,
- 7.57,
- 7.44,
- 6.9,
- 6.08,
- 5.7,
- 6.06,
- 5.54,
- 4.57,
- 3.99,
- 2.98,
- 2.33,
- 2.04,
- 2.37,
- 2.76,
- 1.65,
- 0.28,
- -0.62,
- -1.54,
- -2.57,
- -0.88,
- -0.74,
- -3.04,
- -4.57,
- -6.03,
- -6.79,
- -7.03,
- -6.99,
- -7.12,
- -7.84,
- -9.63,
- -11.91,
- -12.36,
- -3.55,
- 4.03,
- 2.42,
- -0.27,
- 0.43,
- -0.36,
- 0.54,
- -0.14,
- -0.84,
- -2.22,
- -2.66,
- 0.16,
- -0.64,
- 1.02,
- 0.93,
- -1.73,
- 0.1,
- -1.1,
- -0.31,
- -0.16,
- 0.22,
- -0.2,
- -0.65,
- -1.06,
- -1.91,
- 0.12,
- -0.18,
- -1.26,
- -0.15,
- -0.58,
- -0.91,
- -0.35,
- -1.41,
- -2.56,
- -2.81,
- -2.88,
- -4.17,
- -2.78,
- -2.31,
- -3.71,
- -2.59,
- -1.6,
- -1.81,
- -1.52,
- -0.3,
- 0.57,
- -0.01,
- -0.25,
- -1.11,
- -1.6,
- -2.31,
- -2.37,
- -3.4,
- -3.84,
- -3.9,
- -2.6,
- -1.25,
- 1.8,
- 1.16,
- -0.48,
- -1.08,
- -1.04,
- 1.21,
- -0.02,
- -0.71,
- -1.74,
- -2.61,
- -2.02,
- -0.26,
- -1.54,
- 1.22,
- -1.04,
- -2.04,
- -2.39,
- -2.31,
- -3.25,
- -2.78,
- -5.21,
- -5.36,
- -5.92,
- -0.44,
- 4.96,
- 0.91,
- 0.17,
- 0.3,
- -0.32,
- -3.78,
- -3.7,
- -4.47,
- -1.77,
- -5.97,
- 0.66,
- -1.95,
- -5.25,
- -2.14,
- -6.13,
- -8.25,
- -5.36,
- -2.64,
- -4.05,
- -2.48,
- 0.88,
- 1.36,
- 0.79,
- -0.68,
- -3.2,
- -3.19,
- -2.37,
- -2.04,
- -1.16,
- -4.01,
- -4.48,
- -0.61,
- -0.19,
- 1.04,
- 1.15,
- 0.21,
- 2.19,
- 9.53,
- 8.16,
- 4.22,
- 3.82,
- 1.2,
- -1.89,
- -3.56,
- -3.41,
- -1.6,
- 0.98,
- 1.03,
- 0.13,
- -0.84,
- 0.94,
- 1.06,
- 6.31,
- 1.59,
- -2.65,
- -0.76,
- 9.18,
- 5.12,
- 3.29,
- 0.28,
- -5.83,
- -9.63,
- -4.6,
- -1.86,
- -4.82,
- -9.2,
- -12.56,
- -12.45,
- -12.22,
- -10.02,
- -7.28,
- -1.61,
- 6.36,
- 12.45,
- 15.53,
- 15.46,
- 12.68,
- 10.99,
- 9.89,
- 10.87,
- 8.85,
- 7.75,
- 6.68,
- 5.0,
- 3.73,
- 4.14,
- 10.15,
- 14.69,
- 14.14,
- 12.61,
- 13.19,
- 12.04,
- 11.52,
- 10.52,
- 8.92,
- 6.77,
- 5.41,
- 3.77,
- 1.45,
- -0.31,
- -1.49,
- -2.96,
- -4.29,
- -4.43,
- -5.03,
- -5.2,
- -4.91,
- -5.27,
- -6.05,
- -6.0,
- -5.24,
- -5.11,
- -4.06,
- -3.77,
- -4.22,
- -3.47,
- -2.61,
- -2.52,
- -2.53,
- -2.48,
- -2.79,
- -3.27,
- -2.7,
- -0.3,
- 2.21,
- 5.47,
- 9.5,
- 9.31,
- 10.18,
- 10.86,
- 9.99,
- 9.67,
- 9.62,
- 8.8,
- 11.5,
- 13.85,
- 14.17,
- 12.18,
- 11.34,
- 10.93,
- 10.31,
- 9.52,
- 9.8,
- 9.83,
- 9.61,
- 8.21,
- 6.22,
- 4.25,
- 2.11,
- -0.51,
- -3.13,
- -5.22,
- -7.24,
- -9.04,
- -10.05,
- -9.53,
- -2.94,
- 0.01,
- -0.47,
- -1.1,
- -4.05,
- -5.2,
- -0.91,
- -1.98,
- -2.08,
- -1.47,
- -3.13,
- -5.31,
- -2.38,
- 0.01,
- 0.38,
- -0.3,
- 2.1,
- -0.79,
- 0.35,
- -1.16,
- -1.21,
- -3.46,
- -2.37,
- -1.96,
- -1.86,
- -1.75,
- -1.07,
- -0.73,
- -0.75,
- -0.15,
- 0.32,
- 0.33,
- -0.11,
- -0.23,
- 0.39,
- -0.16,
- -0.66,
- -3.2,
- 1.63,
- 0.18,
- -0.47,
- -2.12,
- -2.74,
- -0.87,
- -1.43,
- -1.05,
- -1.47,
- -2.58,
- -1.68,
- -0.63,
- -0.43,
- -0.57,
- -1.36,
- -0.43,
- 0.29,
- 0.72,
- 0.21,
- -0.68,
- -0.51,
- -0.98,
- -4.78,
- 0.42,
- 0.76,
- 0.19,
- 0.41,
- 0.81,
- 0.88,
- 0.53,
- -0.31,
- -0.78,
- -0.55,
- -0.05,
- 0.58,
- 0.86,
- 0.53,
- 0.8,
- -0.31,
- -0.53,
- -0.69,
- -0.92,
- -0.34,
- -2.43,
- -1.49,
- -1.84,
- 2.19,
- 7.95,
- 8.53,
- 9.6,
- 8.79,
- 7.67,
- 7.03,
- 6.9,
- 6.49,
- 5.74,
- 5.74,
- 5.47,
- 4.54,
- 3.72,
- 3.21,
- 4.02,
- 3.9,
- 3.46,
- 3.17,
- 2.98,
- 1.77,
- 0.84,
- -0.29,
- -1.28,
- -2.75,
- -4.92,
- -3.76,
- -4.28,
- -4.99,
- -5.86,
- -6.42,
- -6.71,
- -6.72,
- -7.06,
- -7.16,
- -7.88,
- -9.44,
- -10.21,
- -8.86,
- -1.29,
- -0.48,
- -0.1,
- -1.58,
- -3.32,
- 3.26,
- 3.61,
- 0.33,
- 0.47,
- -0.43,
- 0.58,
- -1.31,
- -1.23,
- -0.9,
- 0.33,
- -1.41,
- -2.11,
- -3.04,
- -2.63,
- -1.14,
- -0.89,
- 0.11,
- -0.64,
- -1.03,
- -1.0,
- -1.43,
- -2.14,
- -2.1,
- -0.82,
- -1.7,
- -0.9,
- -1.74,
- -2.65,
- -2.05,
- 0.22,
- 0.71,
- 0.93,
- -0.84,
- -2.24,
- -1.73,
- -1.53,
- -2.21,
- 0.87,
- 1.78,
- 1.81,
- -2.23,
- -2.06,
- -1.67,
- -1.19,
- -1.98,
- -2.72,
- -4.03,
- -5.37,
- -3.51,
- -3.67,
- -1.26,
- 4.3,
- 2.32,
- 0.63,
- 0.57,
- 1.24,
- 1.62,
- 0.24,
- -0.91,
- -0.76,
- -1.34,
- -2.19,
- -0.88,
- -0.08,
- -3.0,
- -4.81,
- -1.49,
- -3.01,
- -2.86,
- -3.87,
- -4.15,
- -3.06,
- 0.84,
- -3.88,
- -0.09,
- -1.03,
- -2.25,
- 2.58,
- -1.38,
- -3.78,
- -4.32,
- -2.87,
- -0.52,
- -1.16,
- -19.65,
- -3.4,
- 0.9,
- -10.42,
- -20.58,
- -8.33,
- -5.76,
- -5.86,
- -7.44,
- -8.61,
- -9.11,
- -6.87,
- -6.94,
- -2.53,
- -1.16,
- -1.39,
- -1.59,
- -1.68,
- -1.19,
- -1.3,
- -2.2,
- -0.62,
- 0.73,
- 0.87,
- 2.01,
- 1.81,
- 1.18,
- 0.16,
- -1.03,
- 4.49,
- 4.1,
- 5.39,
- 2.4,
- -1.37,
- -3.35,
- -4.04,
- -3.11,
- -1.89,
- 0.12,
- -0.45,
- 0.33,
- -0.79,
- 2.03,
- 2.82,
- 4.78,
- 2.74,
- 4.15,
- 7.16,
- 5.11,
- 3.83,
- 1.35,
- -2.33,
- -4.72,
- -4.45,
- -6.69,
- -5.8,
- -4.99,
- -6.58,
- -8.55,
- -10.22,
- -8.81,
- -6.62,
- -3.4,
- 0.49,
- 4.6,
- 8.18,
- 9.95,
- 11.4,
- 12.3,
- 11.45,
- 9.37,
- 9.0,
- 10.11,
- 8.15,
- 6.53,
- 4.4,
- 3.29,
- 2.45,
- 3.41,
- 9.89,
- 13.83,
- 13.82,
- 15.35,
- 14.89,
- 13.21,
- 12.17,
- 10.0,
- 7.67,
- 6.31,
- 4.44,
- 2.89,
- 0.59,
- -1.56,
- -3.01,
- -4.16,
- -4.92,
- -5.35,
- -5.76,
- -5.82,
- -5.54,
- -5.4,
- -5.07,
- -4.68,
- -4.41,
- -4.56,
- -4.62,
- -3.15,
- -2.55,
- -2.33,
- -2.1,
- -1.75,
- -1.37,
- -1.49,
- -1.53,
- -1.01,
- 0.86,
- 3.37,
- 5.83,
- 5.73,
- 6.5,
- 7.53,
- 7.7,
- 7.56,
- 7.66,
- 7.08,
- 8.05,
- 13.07,
- 13.82,
- 12.02,
- 11.0,
- 10.88,
- 10.15,
- 8.51,
- 7.69,
- 8.5,
- 9.04,
- 8.52,
- 7.45,
- 5.39,
- 3.16,
- 0.73,
- -1.65,
- -4.04,
- -6.32,
- -8.26,
- -9.92,
- -10.81,
- -9.91,
- -1.21,
- -1.22,
- -3.25,
- -2.66,
- -6.65,
- -3.5,
- -3.62,
- -3.02,
- -4.47,
- -2.06,
- -3.2,
- -0.92,
- -0.24,
- 0.49,
- -0.01,
- -0.49,
- -0.27,
- -2.07,
- -0.06,
- -2.27,
- -2.54,
- -3.61,
- -2.32,
- -2.19,
- -2.81,
- -2.73,
- -2.38,
- -3.04,
- -2.63,
- -1.67,
- -0.73,
- -0.26,
- 0.16,
- -0.11,
- 0.22,
- 0.29,
- -0.73,
- 0.33,
- 0.89,
- -0.69,
- 0.45,
- -2.58,
- -2.09,
- -1.78,
- -1.37,
- 0.38,
- 0.98,
- -0.06,
- 0.18,
- 0.71,
- 0.55,
- -0.05,
- 1.03,
- 1.07,
- 1.97,
- 1.75,
- 1.08,
- 0.04,
- -1.47,
- -3.74,
- -2.33,
- -1.86,
- -2.63,
- -3.11,
- -2.7,
- -1.37,
- 0.77,
- -0.12,
- -0.96,
- -1.04,
- -0.92,
- -0.67,
- 0.25,
- -0.18,
- -1.28,
- -1.43,
- -3.16,
- -3.97,
- -3.68,
- -3.46,
- -4.46,
- -1.36,
- 3.65,
- 8.93,
- 8.41,
- 8.09,
- 9.49,
- 8.3,
- 7.58,
- 6.74,
- 6.34,
- 5.99,
- 5.57,
- 5.57,
- 5.05,
- 3.9,
- 3.41,
- 3.25,
- 4.18,
- 4.66,
- 4.15,
- 3.36,
- 2.31,
- 1.4,
- 0.53,
- -0.57,
- -1.46,
- -2.76,
- -4.4,
- -6.18,
- -5.82,
- -6.55,
- -6.71,
- -7.56,
- -8.35,
- -4.2,
- -2.11,
- -1.99,
- -4.6,
- -4.79,
- -5.65,
- -4.67,
- -3.35,
- -1.1,
- 0.3,
- -0.06,
- 0.65,
- 0.73,
- 5.28,
- 3.85,
- 1.61,
- -1.54,
- -3.09,
- -0.78,
- -4.57,
- -1.39,
- -1.0,
- 0.16,
- 0.37,
- -0.71,
- -2.09,
- -4.95,
- -3.92,
- -2.33,
- -1.69,
- -1.47,
- -1.4,
- -2.22,
- -1.25,
- -1.46,
- -2.06,
- -1.76,
- -1.13,
- -1.99,
- -2.96,
- -3.44,
- -2.22,
- -1.23,
- -0.42,
- -0.39,
- -1.62,
- -2.02,
- -1.58,
- -1.15,
- -2.13,
- -3.38,
- -1.62,
- -1.21,
- -0.39,
- 0.64,
- 3.05,
- 1.46,
- -0.32,
- -3.64,
- -4.81,
- -5.21,
- -4.3,
- -2.44,
- 2.41,
- 2.66,
- 1.49,
- 1.68,
- 2.1,
- 1.57,
- 0.34,
- -1.99,
- -2.56,
- -2.51,
- -2.19,
- -1.76,
- -2.6,
- -2.79,
- -2.92,
- -2.51,
- 0.26,
- 2.04,
- -0.1,
- 2.93,
- 1.51,
- 3.62,
- 0.42,
- -1.38,
- -4.3,
- -0.5,
- -2.46,
- -4.83,
- -5.11,
- -6.47,
- -5.04,
- -7.15,
- -0.72,
- -1.0,
- -3.71,
- -12.06,
- -4.74,
- -6.04,
- -14.25,
- -6.88,
- -5.29,
- -5.82,
- -8.2,
- -11.95,
- -9.58,
- -5.7,
- -1.69,
- -0.98,
- -1.76,
- -2.35,
- -2.44,
- -0.68,
- 1.36,
- 1.59,
- 1.71,
- 0.58,
- 0.35,
- 1.6,
- 2.02,
- 1.05,
- 1.92,
- 2.34,
- 5.55,
- 8.48,
- 5.99,
- 6.53,
- 3.43,
- -2.44,
- -3.57,
- -4.01,
- -2.96,
- 0.9,
- 0.25,
- -0.17,
- 0.15,
- -1.11,
- 2.12,
- 3.05,
- 3.92,
- 3.4,
- 3.54,
- 3.59,
- 3.18,
- 2.58,
- 1.61,
- -1.05,
- -2.72,
- -6.41,
- -8.5,
- -7.0,
- -4.33,
- -6.01,
- -3.85,
- -4.2,
- -4.4,
- -3.59,
- -2.12,
- -0.25,
- 2.31,
- 4.53,
- 6.63,
- 8.22,
- 8.89,
- 8.92,
- 7.05,
- 7.22,
- 9.54,
- 8.6,
- 6.7,
- 4.12,
- 2.65,
- 1.4,
- 0.17,
- 5.93,
- 11.36,
- 15.49,
- 17.41,
- 15.72,
- 13.67,
- 12.64,
- 10.94,
- 9.88,
- 7.89,
- 5.42,
- 3.29,
- 1.11,
- -0.56,
- -2.37,
- -3.84,
- -4.57,
- -5.25,
- -5.63,
- -5.86,
- -5.8,
- -5.64,
- -5.23,
- -4.95,
- -4.74,
- -4.68,
- -4.67,
- -3.71,
- -2.96,
- -2.35,
- -1.77,
- -1.27,
- -0.9,
- -0.87,
- -0.75,
- -0.03,
- 1.39,
- 2.82,
- 2.42,
- 3.12,
- 4.67,
- 5.64,
- 5.19,
- 5.57,
- 5.05,
- 4.0,
- 11.83,
- 13.26,
- 11.8,
- 11.1,
- 10.67,
- 9.99,
- 8.5,
- 7.18,
- 7.26,
- 7.63,
- 8.29,
- 7.59,
- 6.52,
- 4.15,
- 1.39,
- -0.85,
- -2.99,
- -5.02,
- -7.27,
- -9.22,
- -10.89,
- -12.11,
- -13.83,
- -2.6,
- -3.14,
- -1.78,
- -4.28,
- -7.08,
- -7.93,
- -7.28,
- -7.51,
- -2.93,
- -3.03,
- -2.61,
- -3.52,
- -1.66,
- -0.01,
- 0.89,
- -3.92,
- -2.79,
- -2.35,
- -0.42,
- -2.95,
- -2.15,
- -2.85,
- -2.97,
- -3.38,
- -4.11,
- -3.55,
- -3.74,
- -3.33,
- -1.8,
- -1.53,
- -1.24,
- -1.44,
- -0.98,
- -0.4,
- 0.29,
- -0.14,
- -1.69,
- -0.72,
- 0.45,
- 1.46,
- 0.99,
- -1.01,
- -1.97,
- -0.94,
- -0.28,
- -0.67,
- -0.24,
- -0.49,
- 0.19,
- 0.21,
- 1.04,
- 0.79,
- 0.7,
- 0.48,
- 1.09,
- 0.71,
- 0.26,
- -0.95,
- -2.52,
- -3.96,
- -4.48,
- -4.48,
- -4.78,
- -4.42,
- -2.67,
- -1.59,
- -2.69,
- -2.47,
- -2.65,
- -3.74,
- -2.28,
- -2.39,
- -3.13,
- -3.34,
- -4.49,
- -5.64,
- -4.94,
- -5.66,
- -6.86,
- -2.26,
- 6.35,
- 8.56,
- 8.46,
- 7.61,
- 8.15,
- 8.57,
- 7.78,
- 7.19,
- 6.5,
- 6.14,
- 5.49,
- 4.93,
- 5.01,
- 4.42,
- 4.45,
- 4.74,
- 4.61,
- 4.26,
- 3.97,
- 3.48,
- 2.99,
- 2.07,
- 0.61,
- -0.34,
- -0.97,
- -1.86,
- -2.8,
- -4.36,
- -5.54,
- -7.03,
- -7.61,
- -8.08,
- -8.23,
- -8.87,
- -10.02,
- -9.61,
- -2.0,
- -2.95,
- -4.22,
- -3.38,
- -4.65,
- -4.9,
- -6.32,
- -7.74,
- -5.02,
- 1.3,
- 2.62,
- 4.04,
- 4.46,
- 1.75,
- -1.34,
- -3.43,
- -3.1,
- 0.14,
- -0.95,
- -2.93,
- -0.98,
- 0.85,
- -1.32,
- -0.76,
- -0.74,
- -3.87,
- -6.0,
- -4.42,
- 0.24,
- -0.33,
- -2.05,
- -1.25,
- -0.27,
- -2.16,
- -2.7,
- -1.34,
- -2.82,
- -2.53,
- -1.66,
- -1.1,
- -0.78,
- -1.53,
- -1.34,
- 0.27,
- -0.41,
- 0.14,
- -2.16,
- -2.23,
- -3.68,
- -0.94,
- 0.62,
- 1.95,
- 1.36,
- -1.57,
- -0.55,
- 2.43,
- 2.63,
- -2.79,
- -5.99,
- -5.52,
- -4.93,
- -1.92,
- -1.45,
- -2.65,
- -3.09,
- 0.54,
- 1.62,
- 1.44,
- -1.66,
- -2.91,
- -3.93,
- -3.44,
- -2.55,
- -3.48,
- -2.03,
- -0.24,
- -2.66,
- 0.62,
- -1.31,
- 2.51,
- -0.85,
- -0.03,
- 1.77,
- -2.67,
- -3.17,
- -2.55,
- -3.35,
- -3.69,
- -0.21,
- -1.19,
- -4.22,
- -5.11,
- -4.4,
- -2.32,
- -4.48,
- 3.88,
- 3.32,
- -4.03,
- -6.87,
- -9.0,
- -11.48,
- -10.53,
- -6.32,
- -2.42,
- -0.01,
- 0.56,
- -1.81,
- -3.48,
- -2.37,
- -2.69,
- -2.12,
- -2.7,
- -2.97,
- -2.5,
- -1.26,
- 1.04,
- 0.24,
- 1.42,
- 1.92,
- 3.15,
- 6.23,
- 4.15,
- 2.6,
- 6.66,
- 6.58,
- 6.73,
- 5.01,
- 4.68,
- 3.51,
- 0.05,
- -0.81,
- -2.18,
- -0.05,
- 4.54,
- 5.66,
- 2.6,
- -0.76,
- 2.19,
- 2.13,
- 3.22,
- 3.37,
- 3.67,
- 3.91,
- 3.93,
- 3.08,
- 1.56,
- -0.27,
- -0.79,
- -0.62,
- -1.66,
- -6.15,
- -8.76,
- -9.4,
- -7.36,
- -6.2,
- -4.62,
- -1.8,
- -2.92,
- -2.6,
- -1.41,
- 0.08,
- 2.03,
- 3.64,
- 4.77,
- 6.11,
- 6.08,
- 5.17,
- 6.5,
- 8.21,
- 8.49,
- 6.39,
- 3.97,
- 2.07,
- -0.3,
- 0.19,
- 4.73,
- 10.81,
- 14.96,
- 16.51,
- 16.49,
- 14.16,
- 12.23,
- 10.45,
- 8.84,
- 7.84,
- 5.66,
- 3.29,
- 0.85,
- -0.78,
- -2.33,
- -3.15,
- -4.32,
- -5.31,
- -5.76,
- -5.79,
- -5.63,
- -5.24,
- -5.16,
- -4.97,
- -4.93,
- -4.82,
- -4.44,
- -3.63,
- -3.07,
- -2.31,
- -1.68,
- -1.16,
- -0.82,
- -0.51,
- 0.05,
- 0.77,
- 1.21,
- 0.66,
- 1.56,
- 2.62,
- 3.78,
- 2.93,
- 3.69,
- 2.64,
- 0.81,
- 10.47,
- 12.76,
- 11.64,
- 11.25,
- 11.2,
- 9.79,
- 8.68,
- 7.69,
- 6.99,
- 6.91,
- 7.06,
- 7.69,
- 6.47,
- 4.71,
- 2.27,
- -0.32,
- -2.47,
- -4.34,
- -6.2,
- -8.13,
- -10.11,
- -12.11,
- -14.22,
- -16.06,
- -4.24,
- -5.2,
- -2.84,
- -5.91,
- -7.09,
- -4.95,
- -6.04,
- -5.53,
- -3.44,
- -2.36,
- -3.84,
- -1.54,
- -0.97,
- -0.63,
- 0.74,
- -2.65,
- -3.66,
- 0.57,
- -1.12,
- -3.0,
- -3.47,
- -2.44,
- -2.9,
- -4.74,
- -4.67,
- -4.26,
- -2.57,
- -2.83,
- -2.56,
- -2.2,
- -2.35,
- -2.06,
- -1.78,
- -0.42,
- -0.39,
- -0.99,
- -2.02,
- -1.02,
- -0.05,
- 0.69,
- 0.32,
- -0.79,
- -1.15,
- -1.32,
- -1.65,
- -1.19,
- -0.51,
- 0.26,
- 0.82,
- -0.22,
- -1.45,
- -1.57,
- -1.52,
- -1.76,
- -0.87,
- -1.16,
- -2.33,
- -4.1,
- -4.29,
- -4.31,
- -4.82,
- -5.9,
- -7.25,
- -5.23,
- -2.85,
- -3.29,
- -3.64,
- -4.21,
- -4.69,
- -3.92,
- -3.92,
- -5.51,
- -5.48,
- -7.09,
- -7.54,
- -4.62,
- -4.82,
- -6.13,
- 3.05,
- 7.27,
- 8.37,
- 7.48,
- 7.32,
- 7.99,
- 7.98,
- 7.19,
- 6.24,
- 5.76,
- 5.24,
- 4.5,
- 4.36,
- 4.16,
- 4.55,
- 4.93,
- 5.28,
- 4.79,
- 4.32,
- 3.7,
- 2.85,
- 1.97,
- 1.45,
- 1.01,
- 0.12,
- -0.96,
- -1.63,
- -3.07,
- -4.13,
- -5.57,
- -6.63,
- -8.04,
- -8.82,
- -9.02,
- -9.08,
- -9.78,
- -11.53,
- -12.22,
- -1.47,
- -2.33,
- -3.42,
- -1.94,
- -1.03,
- -2.77,
- -1.94,
- -6.73,
- 0.8,
- 2.88,
- -0.22,
- -0.29,
- -2.18,
- -4.24,
- -4.51,
- -4.34,
- 0.36,
- 1.03,
- -0.67,
- -1.78,
- -2.22,
- -2.54,
- -0.93,
- 0.4,
- -0.64,
- -4.29,
- -6.4,
- -8.68,
- -0.82,
- -0.48,
- -0.59,
- -4.45,
- -2.76,
- -3.5,
- -5.1,
- -1.47,
- -2.41,
- -0.83,
- -0.59,
- -0.61,
- -0.36,
- -0.04,
- 0.95,
- 2.17,
- 2.35,
- 1.87,
- 1.91,
- 1.23,
- 0.69,
- 1.67,
- 2.02,
- 2.44,
- -1.15,
- 1.41,
- 1.19,
- 0.96,
- 3.44,
- -0.5,
- -8.85,
- -7.39,
- -5.06,
- -3.48,
- -3.76,
- -3.31,
- -2.28,
- 0.14,
- -1.44,
- -1.21,
- -1.78,
- -2.3,
- -1.35,
- -0.27,
- -0.74,
- 0.89,
- 1.72,
- -1.88,
- -3.63,
- -2.15,
- -1.28,
- -1.41,
- -2.05,
- -2.07,
- -1.7,
- -4.28,
- -6.94,
- -2.8,
- -4.15,
- -3.07,
- -2.81,
- -1.7,
- -3.82,
- -4.78,
- -4.06,
- -2.57,
- -1.84,
- -1.28,
- -1.82,
- -7.35,
- -8.75,
- -6.91,
- -2.85,
- -2.2,
- -0.59,
- 4.44,
- 1.68,
- -0.29,
- -3.1,
- -4.04,
- -3.08,
- -1.43,
- -1.65,
- -2.44,
- -1.56,
- -2.05,
- -2.39,
- 1.8,
- 2.48,
- 1.94,
- 1.73,
- 0.4,
- 2.42,
- 1.22,
- 1.92,
- 2.56,
- 3.1,
- 3.63,
- 4.3,
- 4.61,
- 3.49,
- -2.0,
- -4.19,
- 1.8,
- 6.59,
- 4.77,
- 4.42,
- 0.59,
- 3.11,
- -0.38,
- -0.22,
- 2.83,
- 4.94,
- 4.52,
- 4.33,
- 4.69,
- 4.74,
- 3.49,
- 1.71,
- 0.03,
- -0.7,
- -0.71,
- -6.38,
- -9.05,
- -7.01,
- -6.78,
- -6.61,
- -6.14,
- -5.32,
- -4.47,
- -3.9,
- -3.38,
- -2.1,
- -0.35,
- 1.55,
- 2.95,
- 3.77,
- 4.45,
- 4.97,
- 5.28,
- 7.17,
- 7.62,
- 5.11,
- 2.75,
- 0.36,
- -0.42,
- 1.28,
- 6.41,
- 10.18,
- 12.21,
- 16.29,
- 17.06,
- 14.84,
- 12.64,
- 10.03,
- 9.29,
- 8.4,
- 6.11,
- 4.16,
- 2.11,
- -0.06,
- -2.13,
- -3.86,
- -4.56,
- -4.88,
- -5.29,
- -5.39,
- -5.59,
- -5.58,
- -5.56,
- -5.59,
- -5.28,
- -5.24,
- -4.81,
- -4.07,
- -3.13,
- -1.93,
- -1.0,
- -0.48,
- -0.22,
- -0.01,
- 0.41,
- 0.08,
- -0.7,
- 0.37,
- 0.9,
- 2.04,
- 0.87,
- 1.81,
- 0.45,
- -1.57,
- 8.77,
- 11.97,
- 11.68,
- 11.32,
- 11.42,
- 9.78,
- 8.43,
- 7.66,
- 6.91,
- 6.75,
- 6.27,
- 5.48,
- 6.9,
- 4.6,
- 2.7,
- 0.36,
- -1.69,
- -3.6,
- -5.32,
- -7.06,
- -9.01,
- -10.97,
- -13.22,
- -14.66,
- -15.33,
- -4.54,
- -2.59,
- -5.33,
- -3.46,
- -5.88,
- -8.12,
- -5.93,
- -4.0,
- -2.94,
- -1.43,
- -2.31,
- -3.46,
- -0.04,
- -0.54,
- 1.2,
- 0.87,
- -0.76,
- -0.58,
- 0.09,
- -1.15,
- -2.0,
- -3.07,
- -3.65,
- -4.51,
- -4.25,
- -4.14,
- -3.63,
- -1.88,
- -1.62,
- -2.13,
- -2.62,
- -1.87,
- -0.54,
- 0.55,
- 0.31,
- -0.93,
- -2.31,
- -1.23,
- -0.16,
- -0.32,
- -1.61,
- -2.16,
- -1.88,
- -1.07,
- -1.22,
- -0.57,
- 0.64,
- 0.65,
- -0.68,
- -2.06,
- -3.32,
- -3.93,
- -4.44,
- -3.95,
- -5.22,
- -6.04,
- -5.61,
- -3.97,
- -3.43,
- -3.94,
- -5.79,
- -7.85,
- -7.31,
- -1.61,
- -3.2,
- -4.78,
- -6.25,
- -6.83,
- -5.13,
- -5.25,
- -5.82,
- -6.68,
- -6.28,
- 6.34,
- 2.99,
- 4.26,
- 6.14,
- 6.65,
- 6.85,
- 7.15,
- 6.53,
- 7.74,
- 7.3,
- 7.7,
- 6.68,
- 5.7,
- 5.1,
- 4.48,
- 3.49,
- 3.61,
- 3.81,
- 4.15,
- 4.55,
- 3.89,
- 4.31,
- 4.1,
- 3.76,
- 3.03,
- 2.23,
- 1.33,
- 0.6,
- -0.16,
- -0.81,
- -1.52,
- -2.83,
- -3.88,
- -5.04,
- -6.38,
- -7.43,
- -8.82,
- -9.73,
- -9.92,
- -10.1,
- -10.38,
- -12.41,
- -9.22,
- -2.26,
- -4.16,
- -3.28,
- -0.3,
- -1.69,
- -0.08,
- -2.3,
- -2.41,
- 2.33,
- 1.17,
- -2.04,
- -3.6,
- -2.89,
- -2.88,
- -2.24,
- -1.59,
- 3.45,
- 2.03,
- 1.26,
- 0.69,
- -1.73,
- -2.25,
- 0.21,
- 1.94,
- 0.93,
- -5.18,
- -7.67,
- -8.94,
- -4.26,
- -1.12,
- -1.63,
- -2.46,
- -6.08,
- -7.1,
- -3.63,
- -2.01,
- -1.37,
- 1.73,
- 2.2,
- 2.26,
- 0.45,
- -0.2,
- 0.24,
- 1.02,
- 1.76,
- 1.51,
- 0.49,
- 0.77,
- 1.31,
- 2.01,
- 2.37,
- 1.31,
- 1.75,
- -0.71,
- 0.81,
- -1.96,
- -0.62,
- 1.46,
- -4.29,
- -5.3,
- -5.44,
- -5.26,
- -2.8,
- 0.79,
- 2.22,
- -1.28,
- -3.56,
- -2.3,
- -2.67,
- -2.12,
- 0.52,
- 3.55,
- 1.79,
- 0.47,
- 0.55,
- -0.92,
- 0.16,
- 1.53,
- -0.08,
- 0.0,
- 1.85,
- 2.45,
- 2.19,
- 4.25,
- -3.52,
- -4.24,
- -4.96,
- -4.63,
- -2.11,
- -1.36,
- -0.2,
- 0.92,
- 2.93,
- 4.81,
- 6.47,
- 5.42,
- 6.92,
- -1.52,
- -2.76,
- -0.67,
- 1.06,
- 3.58,
- 4.37,
- 4.22,
- 1.47,
- 2.13,
- 0.7,
- 0.83,
- -2.38,
- -0.29,
- -1.12,
- -0.5,
- 2.7,
- 3.65,
- 4.92,
- 1.65,
- -3.83,
- -4.9,
- -1.62,
- 4.12,
- 0.29,
- 3.47,
- 4.15,
- 1.45,
- 0.93,
- 2.47,
- 3.48,
- 2.45,
- 0.42,
- -1.52,
- 2.92,
- 3.11,
- 3.73,
- 7.47,
- 5.79,
- 4.71,
- 2.67,
- 4.29,
- 3.49,
- 2.32,
- 0.33,
- 1.5,
- 4.09,
- 6.55,
- 4.47,
- 2.95,
- 3.25,
- 1.66,
- 0.02,
- -1.91,
- -1.3,
- -3.86,
- -5.52,
- -5.48,
- -6.07,
- -6.22,
- -6.16,
- -4.08,
- -2.56,
- -1.5,
- -0.44,
- 0.13,
- 0.95,
- 2.12,
- 3.2,
- 4.3,
- 5.6,
- 5.14,
- 5.76,
- 5.79,
- 3.7,
- 1.53,
- -0.18,
- 0.82,
- 4.91,
- 8.42,
- 11.39,
- 15.0,
- 16.46,
- 16.32,
- 15.92,
- 14.77,
- 12.07,
- 9.47,
- 8.65,
- 6.75,
- 4.52,
- 2.53,
- 0.3,
- -1.56,
- -3.16,
- -4.53,
- -5.25,
- -5.07,
- -5.19,
- -5.56,
- -5.61,
- -5.3,
- -5.15,
- -5.17,
- -5.01,
- -4.56,
- -3.83,
- -2.98,
- -1.98,
- -1.0,
- -0.43,
- 0.0,
- -0.18,
- -0.94,
- -1.2,
- -0.85,
- -1.06,
- -0.15,
- -0.63,
- 0.2,
- -1.26,
- -3.27,
- 7.55,
- 10.86,
- 11.17,
- 11.42,
- 10.86,
- 9.91,
- 8.49,
- 7.51,
- 6.86,
- 5.86,
- 5.28,
- 4.02,
- 3.18,
- 5.33,
- 2.22,
- 0.71,
- -1.16,
- -2.79,
- -4.26,
- -5.93,
- -7.47,
- -9.45,
- -11.43,
- -13.17,
- -13.8,
- -14.15,
- -13.22,
- -1.32,
- -8.39,
- -1.66,
- -4.24,
- -6.57,
- -1.52,
- -2.11,
- -4.9,
- -2.89,
- -2.15,
- -2.08,
- 0.78,
- -1.87,
- -1.36,
- -1.15,
- 0.66,
- -0.56,
- 1.11,
- -1.19,
- -4.26,
- -3.21,
- -4.16,
- -4.88,
- -3.41,
- -4.71,
- -3.19,
- -1.53,
- -1.88,
- -1.24,
- -0.11,
- 2.37,
- 2.45,
- 1.69,
- 0.17,
- -1.32,
- -1.31,
- 0.17,
- 0.08,
- -0.53,
- -0.83,
- -1.41,
- -1.76,
- -1.45,
- -0.26,
- 0.08,
- 0.57,
- -0.47,
- -1.96,
- -4.43,
- -6.63,
- -7.49,
- -6.72,
- -7.32,
- -7.42,
- -4.71,
- -3.9,
- -3.38,
- -4.28,
- -5.61,
- -6.41,
- -6.63,
- -2.51,
- -1.6,
- -4.1,
- -6.48,
- -6.17,
- -2.63,
- 8.48,
- 5.12,
- 4.24,
- 7.03,
- 7.52,
- 6.62,
- 5.56,
- 5.52,
- 5.2,
- 6.59,
- 6.7,
- 5.73,
- 6.94,
- 6.18,
- 6.71,
- 6.09,
- 5.05,
- 4.45,
- 3.56,
- 3.11,
- 2.79,
- 2.91,
- 3.37,
- 3.27,
- 3.49,
- 3.6,
- 3.26,
- 2.36,
- 2.55,
- 2.34,
- 1.68,
- 0.78,
- 0.02,
- -0.46,
- -1.09,
- -1.94,
- -3.16,
- -4.2,
- -5.53,
- -7.31,
- -8.3,
- -9.41,
- -10.22,
- -10.75,
- -10.71,
- -10.8,
- -10.94,
- -2.51,
- -1.08,
- -2.26,
- -0.36,
- 0.97,
- 0.95,
- 1.77,
- -0.4,
- -0.62,
- -2.63,
- -2.82,
- -3.23,
- -3.41,
- -2.25,
- -1.38,
- -0.12,
- 1.41,
- 2.34,
- 3.25,
- 1.24,
- -0.19,
- -3.01,
- -0.05,
- -0.15,
- 0.37,
- -0.73,
- -7.21,
- -7.85,
- -9.33,
- -8.02,
- -5.73,
- -1.29,
- -3.47,
- -7.3,
- -9.73,
- -5.96,
- -2.9,
- -0.83,
- -0.07,
- 0.52,
- 0.29,
- 1.87,
- 0.59,
- 1.06,
- 0.81,
- -1.46,
- -0.69,
- -0.31,
- -0.96,
- -0.84,
- -0.62,
- 0.5,
- 1.52,
- 1.03,
- -1.63,
- 0.81,
- -0.49,
- 0.46,
- -2.73,
- -3.68,
- -4.37,
- -4.21,
- -3.87,
- -2.26,
- 1.35,
- -0.75,
- 0.72,
- -2.5,
- -2.9,
- -3.07,
- -1.39,
- 3.02,
- 2.33,
- 0.68,
- 1.48,
- 0.54,
- -0.38,
- -2.62,
- -0.13,
- 0.41,
- 1.15,
- 1.06,
- 1.4,
- 2.08,
- -0.02,
- 2.6,
- 0.83,
- -2.72,
- -2.51,
- 0.39,
- 2.28,
- 2.4,
- 2.08,
- 2.78,
- 2.73,
- 5.82,
- 4.59,
- 3.59,
- 0.34,
- 5.7,
- 1.39,
- 1.17,
- -0.13,
- -0.71,
- 0.0,
- -0.62,
- -0.92,
- -0.6,
- -1.04,
- -1.43,
- -1.11,
- -4.98,
- 2.69,
- 3.35,
- -1.3,
- -4.69,
- -8.06,
- -7.12,
- -3.3,
- 0.99,
- 6.27,
- 0.02,
- 4.63,
- 1.85,
- 1.74,
- 1.39,
- 1.43,
- -2.26,
- -1.07,
- -1.21,
- -6.13,
- -3.43,
- 6.0,
- 7.43,
- 5.28,
- 4.95,
- 3.75,
- 3.29,
- -0.45,
- 5.51,
- 4.71,
- 3.86,
- 3.63,
- 4.14,
- 8.82,
- 9.39,
- 3.38,
- -0.73,
- -0.74,
- 0.05,
- -2.05,
- -5.23,
- -4.49,
- -3.79,
- -4.35,
- -4.56,
- -6.27,
- -6.41,
- -4.98,
- -3.25,
- -1.65,
- -0.52,
- 0.06,
- 1.28,
- 2.65,
- 4.06,
- 4.25,
- 3.86,
- 3.66,
- 4.15,
- 3.1,
- 1.72,
- 0.9,
- 1.77,
- 4.22,
- 6.05,
- 9.2,
- 13.27,
- 14.26,
- 15.52,
- 15.83,
- 15.47,
- 14.52,
- 12.46,
- 9.93,
- 9.21,
- 7.37,
- 5.25,
- 2.89,
- 0.44,
- -1.45,
- -3.32,
- -4.6,
- -5.14,
- -5.23,
- -5.25,
- -5.44,
- -5.64,
- -5.59,
- -5.28,
- -4.89,
- -4.71,
- -4.48,
- -4.06,
- -3.55,
- -2.78,
- -2.11,
- -1.34,
- -1.73,
- -2.16,
- -2.05,
- -2.02,
- -2.27,
- -1.98,
- -2.04,
- -1.53,
- -3.05,
- -5.15,
- 7.3,
- 9.92,
- 11.33,
- 10.82,
- 10.17,
- 9.32,
- 8.58,
- 7.6,
- 7.06,
- 6.08,
- 4.43,
- 4.08,
- 3.12,
- 2.94,
- 3.22,
- -0.11,
- -1.48,
- -2.65,
- -3.85,
- -5.0,
- -6.12,
- -7.59,
- -9.68,
- -11.37,
- -12.55,
- -13.57,
- -14.07,
- -13.83,
- -8.47,
- 0.79,
- -1.25,
- -0.3,
- -0.32,
- -6.03,
- -5.5,
- -2.17,
- -2.32,
- 0.5,
- 1.07,
- -3.02,
- -2.33,
- -0.23,
- -0.89,
- 1.75,
- 1.08,
- 1.09,
- 0.07,
- 0.02,
- -2.5,
- -3.59,
- -2.65,
- -2.41,
- -3.41,
- -3.43,
- -1.01,
- 2.35,
- 1.73,
- 2.39,
- 1.24,
- 0.92,
- 0.52,
- 0.63,
- 1.25,
- 2.39,
- 1.48,
- 0.66,
- -0.47,
- -0.6,
- -0.62,
- -0.38,
- 0.0,
- 0.67,
- 1.24,
- -0.98,
- -1.2,
- -3.87,
- -6.14,
- -8.61,
- -8.07,
- -6.4,
- -7.57,
- -5.15,
- -3.66,
- -3.24,
- -5.74,
- -5.21,
- -4.12,
- -1.83,
- -1.24,
- -2.68,
- -2.4,
- 4.18,
- 6.24,
- 7.6,
- 8.68,
- 7.88,
- 6.98,
- 6.35,
- 6.22,
- 6.44,
- 6.13,
- 5.97,
- 5.59,
- 5.48,
- 5.84,
- 5.33,
- 6.18,
- 5.82,
- 5.6,
- 4.86,
- 4.24,
- 3.2,
- 2.52,
- 2.52,
- 2.41,
- 2.12,
- 2.5,
- 2.55,
- 2.62,
- 3.0,
- 3.01,
- 2.19,
- 1.2,
- 0.93,
- 1.11,
- 0.49,
- 0.94,
- -0.05,
- -0.71,
- -1.32,
- -2.23,
- -2.88,
- -4.46,
- -6.05,
- -7.55,
- -8.54,
- -9.39,
- -10.46,
- -11.13,
- -11.05,
- -10.38,
- -9.59,
- -5.06,
- -1.42,
- -1.16,
- -1.48,
- 0.19,
- 1.06,
- -0.27,
- -1.06,
- -0.84,
- -4.42,
- -4.76,
- -3.65,
- -2.41,
- -0.94,
- -0.75,
- 2.68,
- 3.0,
- 2.42,
- 3.31,
- 1.81,
- -1.84,
- -3.77,
- 0.63,
- 0.4,
- -1.06,
- -3.73,
- -5.73,
- -8.16,
- -9.81,
- -9.73,
- -7.65,
- -1.06,
- -4.74,
- -12.42,
- -8.52,
- -4.8,
- -1.31,
- 1.43,
- 1.7,
- 0.62,
- -0.46,
- 2.36,
- -0.17,
- -2.91,
- 0.44,
- -0.32,
- -1.01,
- -0.72,
- 1.12,
- 2.02,
- 1.44,
- 0.75,
- 1.64,
- 0.49,
- 1.2,
- 0.95,
- 2.07,
- 0.75,
- -1.12,
- -2.2,
- -4.95,
- -0.58,
- -0.39,
- -1.37,
- -1.82,
- -2.68,
- -0.17,
- 0.86,
- 3.52,
- -2.93,
- -3.43,
- -0.3,
- 0.53,
- 0.98,
- 1.1,
- 0.37,
- -0.2,
- -0.23,
- -0.6,
- 1.49,
- 2.12,
- 1.72,
- 1.18,
- 2.58,
- 2.96,
- 1.45,
- 2.55,
- -1.0,
- -1.57,
- -0.58,
- -1.6,
- 0.2,
- 1.71,
- -0.04,
- -0.79,
- 3.95,
- 5.07,
- 3.06,
- 4.02,
- 4.87,
- 1.97,
- 2.06,
- 1.52,
- -0.72,
- -1.23,
- -1.98,
- -1.57,
- -1.71,
- -0.65,
- -0.8,
- -0.77,
- 0.07,
- 3.22,
- -0.92,
- -4.93,
- -5.75,
- -3.34,
- 1.35,
- 2.5,
- 5.57,
- 4.11,
- 2.54,
- 2.26,
- 3.02,
- 3.2,
- 2.25,
- 2.11,
- 0.36,
- -1.32,
- 2.59,
- 6.48,
- 7.68,
- 7.52,
- 7.83,
- 7.6,
- 7.42,
- 4.82,
- 2.11,
- 1.31,
- 6.03,
- 8.38,
- 6.98,
- 5.71,
- 5.51,
- 8.49,
- 8.68,
- 3.82,
- -1.29,
- -1.94,
- -2.36,
- -1.5,
- -1.18,
- -1.13,
- -2.11,
- -3.74,
- -5.01,
- -5.67,
- -6.25,
- -5.82,
- -4.58,
- -3.2,
- -2.08,
- -0.82,
- 0.22,
- 0.57,
- 1.2,
- 1.82,
- 2.03,
- 2.75,
- 2.14,
- 1.3,
- 0.62,
- 1.5,
- 3.69,
- 5.49,
- 7.63,
- 9.21,
- 11.72,
- 12.33,
- 13.09,
- 13.77,
- 13.86,
- 12.51,
- 10.11,
- 8.25,
- 8.53,
- 6.94,
- 5.18,
- 2.82,
- 0.65,
- -1.19,
- -2.97,
- -4.62,
- -5.25,
- -5.11,
- -5.12,
- -5.31,
- -5.6,
- -5.75,
- -5.66,
- -5.57,
- -5.4,
- -5.1,
- -4.69,
- -3.89,
- -2.94,
- -2.26,
- -2.48,
- -2.97,
- -3.07,
- -3.13,
- -3.37,
- -3.15,
- -3.23,
- -3.71,
- -4.37,
- -6.52,
- 7.12,
- 9.36,
- 10.04,
- 10.2,
- 9.54,
- 8.9,
- 8.33,
- 7.47,
- 6.77,
- 6.43,
- 5.11,
- 3.62,
- 3.49,
- 2.07,
- 2.01,
- 0.9,
- -1.83,
- -3.26,
- -4.1,
- -4.77,
- -5.67,
- -6.83,
- -7.86,
- -9.22,
- -10.59,
- -11.49,
- -12.08,
- -12.48,
- -12.68,
- -12.45,
- -4.14,
- 2.96,
- -3.31,
- 0.49,
- -2.12,
- -9.81,
- -5.03,
- -1.78,
- -2.19,
- -0.98,
- -0.5,
- 0.69,
- 0.7,
- 0.54,
- -0.87,
- 1.21,
- 2.42,
- -0.97,
- -1.11,
- -5.62,
- -5.36,
- -3.64,
- -2.51,
- -2.94,
- -2.35,
- -1.5,
- 1.64,
- 2.29,
- 1.09,
- -2.04,
- -3.2,
- -2.19,
- -1.04,
- 0.43,
- 1.62,
- 1.12,
- 0.07,
- 0.03,
- -0.46,
- 0.43,
- -0.02,
- -0.35,
- 0.05,
- -1.46,
- -1.11,
- -2.2,
- -6.08,
- -7.32,
- -8.68,
- -8.45,
- -8.92,
- -5.0,
- -1.91,
- 2.44,
- 2.33,
- 2.31,
- 1.52,
- 6.03,
- 8.93,
- 7.38,
- 5.89,
- 5.0,
- 4.79,
- 5.39,
- 6.38,
- 6.72,
- 6.47,
- 6.16,
- 6.17,
- 5.91,
- 6.33,
- 6.43,
- 5.83,
- 5.58,
- 4.79,
- 4.85,
- 4.91,
- 5.71,
- 4.76,
- 4.13,
- 3.27,
- 1.93,
- 1.49,
- 1.53,
- 1.37,
- 1.3,
- 1.32,
- 1.57,
- 1.93,
- 1.83,
- 2.08,
- 2.11,
- 1.5,
- 0.92,
- 0.53,
- 0.3,
- -0.06,
- -0.23,
- -0.7,
- -1.4,
- -1.99,
- -2.48,
- -3.44,
- -4.8,
- -6.23,
- -7.53,
- -8.56,
- -9.37,
- -10.34,
- -11.08,
- -10.98,
- -10.41,
- -9.5,
- -6.31,
- -2.96,
- -3.2,
- -0.87,
- 0.15,
- -1.62,
- -0.87,
- -0.2,
- -4.49,
- -3.3,
- -0.27,
- -0.53,
- -0.08,
- 1.62,
- 2.28,
- 0.43,
- 0.91,
- 0.4,
- 2.27,
- 0.71,
- -3.77,
- -3.82,
- 0.29,
- 1.0,
- -2.0,
- -3.55,
- -5.78,
- -7.78,
- -8.89,
- -9.33,
- -6.88,
- -1.74,
- -10.17,
- -11.22,
- -2.72,
- 2.08,
- 2.22,
- 1.25,
- 3.88,
- 0.87,
- 0.67,
- 2.52,
- 1.6,
- 0.68,
- 2.29,
- 0.05,
- -0.4,
- 0.67,
- 1.05,
- 0.31,
- -0.86,
- -0.85,
- 0.38,
- 1.61,
- -1.22,
- 2.92,
- 0.37,
- 0.54,
- 0.72,
- -2.24,
- 1.86,
- 3.56,
- -2.44,
- 1.63,
- -3.23,
- -5.23,
- 2.53,
- 3.05,
- 1.86,
- 1.13,
- -1.86,
- -2.62,
- 1.17,
- -1.0,
- -2.47,
- -1.82,
- -1.93,
- -2.56,
- 1.73,
- -1.73,
- -0.02,
- 0.8,
- 0.36,
- 0.8,
- 0.83,
- 1.61,
- 0.58,
- 2.24,
- 2.36,
- 1.09,
- -1.41,
- 1.31,
- -0.01,
- 4.48,
- 4.21,
- 2.61,
- 3.32,
- 1.8,
- 0.78,
- 0.1,
- 0.27,
- 1.59,
- 0.2,
- -1.6,
- -1.2,
- -3.99,
- -6.1,
- -3.69,
- -3.23,
- -5.08,
- -4.09,
- -0.17,
- -0.28,
- -3.35,
- -2.22,
- 3.51,
- 2.61,
- 5.37,
- 4.47,
- 3.8,
- 4.59,
- 2.26,
- 1.95,
- 5.59,
- 5.73,
- 5.08,
- 4.58,
- 3.7,
- 4.71,
- 6.56,
- 6.77,
- 7.64,
- 7.99,
- 7.55,
- 6.78,
- 6.81,
- 4.34,
- 1.83,
- 2.2,
- 9.53,
- 8.23,
- 7.37,
- 7.51,
- 3.08,
- 0.78,
- 2.87,
- 0.41,
- 1.81,
- 2.13,
- 6.49,
- 4.52,
- 2.62,
- 1.46,
- -1.35,
- -3.71,
- -5.16,
- -5.85,
- -5.94,
- -5.48,
- -5.11,
- -4.46,
- -3.49,
- -2.73,
- -1.63,
- -0.4,
- 0.38,
- 1.19,
- 1.83,
- 1.05,
- 0.31,
- -0.6,
- 1.59,
- 4.5,
- 5.45,
- 5.95,
- 7.74,
- 9.96,
- 11.22,
- 12.46,
- 13.76,
- 14.05,
- 12.53,
- 11.38,
- 10.34,
- 9.54,
- 8.48,
- 7.13,
- 5.14,
- 2.96,
- 0.54,
- -1.15,
- -2.74,
- -4.2,
- -5.06,
- -5.3,
- -5.34,
- -5.31,
- -5.39,
- -5.55,
- -5.7,
- -5.49,
- -5.09,
- -4.87,
- -4.45,
- -3.83,
- -3.48,
- -3.69,
- -3.88,
- -4.02,
- -4.29,
- -4.63,
- -4.39,
- -4.43,
- -4.79,
- -5.46,
- -6.12,
- 6.78,
- 9.1,
- 9.51,
- 9.11,
- 8.38,
- 7.78,
- 7.27,
- 6.76,
- 6.25,
- 5.96,
- 5.15,
- 4.31,
- 3.42,
- 2.01,
- 1.16,
- 0.17,
- -1.27,
- -2.99,
- -4.12,
- -4.83,
- -5.47,
- -6.17,
- -6.98,
- -8.02,
- -9.31,
- -10.28,
- -10.83,
- -11.41,
- -12.18,
- -12.16,
- -11.66,
- -9.04,
- -1.49,
- 1.63,
- -1.81,
- -0.07,
- -2.5,
- 1.18,
- 2.95,
- 3.28,
- 1.74,
- 0.41,
- -1.46,
- -1.84,
- -0.18,
- 2.52,
- 2.19,
- 1.24,
- 1.26,
- -1.62,
- -4.81,
- -4.53,
- -3.5,
- -3.25,
- -3.65,
- -2.72,
- -3.25,
- 1.79,
- 2.67,
- 2.91,
- 4.77,
- 1.58,
- -0.52,
- 0.19,
- 0.92,
- 0.91,
- 0.8,
- 0.37,
- 0.21,
- -0.84,
- 0.87,
- -1.35,
- -1.55,
- -1.81,
- 0.08,
- -0.9,
- -1.59,
- -5.38,
- -7.36,
- -7.0,
- -9.41,
- -8.27,
- -3.62,
- 2.79,
- 4.37,
- 7.74,
- 8.1,
- 8.51,
- 7.72,
- 6.83,
- 5.81,
- 4.71,
- 4.16,
- 4.94,
- 4.85,
- 5.47,
- 5.48,
- 5.04,
- 4.81,
- 4.37,
- 4.95,
- 5.85,
- 5.79,
- 5.07,
- 4.18,
- 4.01,
- 4.38,
- 5.04,
- 4.14,
- 3.17,
- 2.48,
- 1.65,
- 0.91,
- 0.54,
- 0.17,
- -0.09,
- 0.04,
- 0.6,
- 1.38,
- 1.43,
- 1.16,
- 1.46,
- 1.58,
- 1.11,
- 0.64,
- 0.44,
- 0.02,
- -0.54,
- -1.3,
- -1.75,
- -2.47,
- -2.98,
- -3.38,
- -4.15,
- -5.08,
- -6.34,
- -7.3,
- -8.59,
- -9.42,
- -10.34,
- -11.04,
- -10.68,
- -9.92,
- -9.42,
- -6.05,
- -1.77,
- -3.71,
- -1.77,
- -0.31,
- 0.0,
- -0.53,
- -2.52,
- -3.96,
- -0.73,
- -2.25,
- -1.91,
- -1.58,
- 2.81,
- 7.61,
- 2.13,
- 1.17,
- 0.9,
- -1.06,
- -2.1,
- -2.85,
- -2.45,
- -0.77,
- -1.07,
- -1.95,
- -3.17,
- -5.28,
- -7.14,
- -8.62,
- -7.97,
- -6.06,
- -8.14,
- -11.45,
- -5.19,
- -1.34,
- 1.34,
- 3.36,
- 3.52,
- 3.43,
- 2.88,
- 3.56,
- 3.81,
- 0.61,
- 1.74,
- 2.35,
- -0.09,
- 1.69,
- -0.26,
- -1.36,
- -0.19,
- -0.96,
- -1.31,
- -2.65,
- -1.59,
- -0.58,
- -0.17,
- 1.63,
- 2.47,
- -0.65,
- 1.22,
- -4.21,
- -2.66,
- 0.64,
- -1.95,
- -5.15,
- -1.71,
- 3.04,
- 2.55,
- 3.56,
- 2.08,
- -1.99,
- -1.11,
- -1.7,
- 0.14,
- 0.01,
- 0.27,
- 0.13,
- -2.76,
- -0.88,
- 2.07,
- 3.3,
- 2.31,
- -1.8,
- -1.99,
- -2.05,
- -0.82,
- 1.09,
- 0.55,
- 1.36,
- 1.37,
- 2.4,
- 1.87,
- 1.99,
- 1.43,
- -0.31,
- -0.98,
- -2.01,
- -0.01,
- 0.29,
- 0.18,
- -1.01,
- -0.02,
- -1.12,
- -2.93,
- -0.7,
- -2.27,
- -3.14,
- -2.83,
- -4.78,
- -3.28,
- -6.31,
- -5.68,
- -4.19,
- -4.53,
- 1.32,
- 4.57,
- 5.04,
- 3.42,
- 2.74,
- 1.65,
- 1.27,
- 0.12,
- 3.11,
- 5.11,
- 6.61,
- 6.58,
- 6.0,
- 6.16,
- 6.28,
- 6.18,
- 8.18,
- 7.82,
- 7.78,
- 7.13,
- 6.15,
- 5.25,
- 4.15,
- 3.57,
- 3.58,
- 4.29,
- 6.12,
- 4.17,
- 1.69,
- 5.81,
- 3.31,
- 2.75,
- -0.46,
- 0.04,
- 4.56,
- 8.21,
- 4.75,
- 1.33,
- -0.14,
- -0.92,
- -3.36,
- -5.13,
- -5.96,
- -5.52,
- -5.1,
- -4.12,
- -2.74,
- -1.72,
- -0.84,
- -0.4,
- -0.19,
- -0.15,
- 0.05,
- -0.51,
- -0.5,
- -0.74,
- 3.03,
- 4.27,
- 3.98,
- 3.1,
- 6.2,
- 7.76,
- 10.15,
- 11.7,
- 12.04,
- 12.54,
- 12.76,
- 12.19,
- 9.87,
- 8.56,
- 8.13,
- 7.46,
- 6.49,
- 5.01,
- 2.71,
- 0.63,
- -0.95,
- -2.65,
- -3.98,
- -4.86,
- -5.0,
- -5.36,
- -5.53,
- -5.74,
- -6.02,
- -6.08,
- -6.07,
- -5.78,
- -5.34,
- -5.09,
- -4.93,
- -4.65,
- -4.83,
- -5.25,
- -5.58,
- -5.4,
- -5.0,
- -5.15,
- -5.66,
- -6.34,
- -3.83,
- 6.15,
- 9.09,
- 8.53,
- 8.11,
- 7.83,
- 7.31,
- 6.66,
- 6.17,
- 5.84,
- 5.5,
- 4.61,
- 3.94,
- 3.31,
- 2.24,
- 0.49,
- -0.35,
- -1.05,
- -2.32,
- -3.76,
- -4.69,
- -4.86,
- -5.29,
- -6.37,
- -7.08,
- -8.0,
- -9.08,
- -10.23,
- -10.61,
- -11.14,
- -12.04,
- -12.32,
- -11.58,
- -10.06,
- -7.64,
- 1.22,
- -0.51,
- 2.26,
- 3.15,
- 0.86,
- 2.31,
- 5.47,
- 3.1,
- 0.97,
- 3.01,
- 1.77,
- 2.85,
- 1.82,
- 1.96,
- 1.6,
- 0.89,
- 0.35,
- -3.88,
- -5.66,
- -6.31,
- -3.91,
- -1.35,
- -2.64,
- -2.75,
- 0.65,
- 2.6,
- 5.79,
- 3.63,
- 1.21,
- -0.99,
- 1.25,
- 2.42,
- 2.37,
- 1.6,
- 0.54,
- -1.53,
- -0.94,
- -1.96,
- -0.88,
- -0.67,
- 1.24,
- 1.97,
- 0.35,
- -0.81,
- -4.41,
- -6.09,
- -6.45,
- -6.63,
- -3.35,
- 0.35,
- 1.99,
- 6.26,
- 7.41,
- 6.98,
- 6.71,
- 6.83,
- 6.17,
- 4.54,
- 3.69,
- 4.64,
- 4.06,
- 4.52,
- 4.29,
- 3.85,
- 3.86,
- 3.58,
- 3.3,
- 3.64,
- 5.07,
- 4.98,
- 4.73,
- 4.23,
- 3.98,
- 4.34,
- 3.75,
- 2.35,
- 1.69,
- 0.98,
- 0.18,
- -0.49,
- -0.7,
- -1.25,
- -1.02,
- -0.47,
- 0.43,
- 0.58,
- 0.76,
- 0.76,
- 0.64,
- 0.68,
- 0.36,
- 0.11,
- 0.25,
- 0.19,
- 0.09,
- -0.96,
- -1.98,
- -3.1,
- -3.72,
- -4.05,
- -4.46,
- -5.14,
- -6.27,
- -7.42,
- -8.78,
- -9.37,
- -10.05,
- -10.11,
- -9.55,
- -8.85,
- -8.15,
- -6.93,
- -3.73,
- -1.86,
- 1.69,
- -0.95,
- -1.71,
- -1.53,
- -1.11,
- -0.83,
- -2.68,
- -2.89,
- 0.55,
- -0.09,
- -1.31,
- 0.41,
- 1.58,
- 2.48,
- 0.64,
- -2.39,
- -1.64,
- -1.07,
- -0.56,
- 0.03,
- -1.02,
- -1.85,
- -2.36,
- -3.67,
- -5.16,
- -6.65,
- -7.26,
- -6.43,
- -8.75,
- -10.04,
- -3.63,
- 6.12,
- 9.84,
- 9.09,
- 8.22,
- 6.37,
- 5.68,
- 5.9,
- 5.9,
- 4.37,
- 2.51,
- 1.25,
- -0.3,
- 0.76,
- -0.04,
- 0.33,
- -0.04,
- -1.74,
- -1.48,
- -0.59,
- -2.76,
- -1.86,
- -0.91,
- 0.93,
- 2.78,
- 3.67,
- 0.38,
- 1.16,
- -2.97,
- -1.62,
- -3.52,
- -4.26,
- 0.21,
- 2.93,
- 9.46,
- 6.35,
- 2.2,
- -3.33,
- 1.84,
- -1.2,
- -0.46,
- 1.0,
- 0.8,
- 0.51,
- -1.36,
- 0.49,
- 1.71,
- -0.78,
- -0.4,
- -0.46,
- -0.86,
- 0.81,
- -1.86,
- 0.24,
- -1.13,
- 0.46,
- 0.84,
- 1.27,
- 0.62,
- -1.47,
- -3.17,
- -4.97,
- -1.27,
- -2.72,
- -2.38,
- -0.93,
- 0.01,
- 0.14,
- -0.9,
- -1.69,
- -2.52,
- -0.36,
- -1.47,
- -3.29,
- -4.03,
- -4.73,
- -3.03,
- -3.45,
- -7.28,
- -1.07,
- 0.88,
- 3.09,
- 5.48,
- 5.39,
- 0.79,
- 0.87,
- 3.24,
- 3.65,
- 1.76,
- 4.64,
- 6.39,
- 6.58,
- 6.32,
- 6.38,
- 5.71,
- 6.17,
- 5.94,
- 7.75,
- 7.83,
- 8.16,
- 7.81,
- 6.98,
- 6.7,
- 2.36,
- 5.26,
- 4.14,
- 0.93,
- -1.05,
- 1.94,
- 0.49,
- -1.13,
- 6.92,
- 0.67,
- 6.89,
- 0.92,
- 3.31,
- 5.57,
- 3.72,
- 0.63,
- 0.13,
- -1.88,
- -3.65,
- -4.8,
- -5.66,
- -5.81,
- -5.14,
- -4.44,
- -3.43,
- -2.7,
- -2.34,
- -1.86,
- -1.54,
- -1.38,
- -1.91,
- -2.05,
- -0.7,
- 2.83,
- 3.22,
- 2.11,
- 1.75,
- 5.03,
- 6.72,
- 8.71,
- 9.79,
- 9.81,
- 11.2,
- 11.77,
- 10.68,
- 9.43,
- 7.71,
- 7.61,
- 7.17,
- 6.2,
- 5.37,
- 4.37,
- 3.02,
- 1.04,
- -0.71,
- -2.22,
- -3.61,
- -4.48,
- -4.98,
- -5.0,
- -5.32,
- -6.09,
- -6.56,
- -6.44,
- -6.17,
- -5.94,
- -5.77,
- -5.74,
- -5.54,
- -5.53,
- -5.84,
- -6.09,
- -6.0,
- -5.56,
- -5.82,
- -6.23,
- -6.28,
- -2.27,
- 5.04,
- 7.94,
- 8.12,
- 7.5,
- 7.03,
- 6.9,
- 6.31,
- 5.61,
- 5.38,
- 5.17,
- 4.76,
- 3.67,
- 3.3,
- 2.81,
- 0.85,
- -1.11,
- -2.17,
- -2.48,
- -3.51,
- -4.3,
- -4.81,
- -4.69,
- -5.32,
- -5.73,
- -6.71,
- -7.7,
- -8.67,
- -9.44,
- -10.18,
- -10.4,
- -11.6,
- -11.89,
- -11.44,
- -9.79,
- -8.0,
- -8.5,
- 0.96,
- 1.8,
- -0.3,
- 0.69,
- 0.31,
- 5.49,
- 3.38,
- 1.2,
- 0.66,
- 1.64,
- 1.36,
- 2.31,
- 0.68,
- 1.26,
- 1.44,
- -1.71,
- -1.74,
- -5.74,
- -6.02,
- -5.19,
- -3.9,
- -0.76,
- -3.4,
- -0.66,
- 0.85,
- 3.49,
- 3.31,
- 0.01,
- 3.32,
- 3.72,
- 3.91,
- 4.23,
- 2.44,
- 0.22,
- -1.59,
- -1.31,
- 1.42,
- 3.12,
- 3.14,
- 2.96,
- 2.57,
- 1.17,
- -0.01,
- -2.85,
- -4.24,
- -5.48,
- -6.19,
- -4.28,
- -2.73,
- 3.47,
- 6.33,
- 5.4,
- 5.39,
- 5.94,
- 6.32,
- 4.8,
- 2.88,
- 3.89,
- 3.61,
- 3.6,
- 3.28,
- 2.58,
- 2.72,
- 3.44,
- 4.48,
- 4.93,
- 5.75,
- 5.6,
- 4.88,
- 4.32,
- 4.08,
- 3.49,
- 3.13,
- 1.96,
- 0.77,
- 0.17,
- -0.39,
- -1.17,
- -1.23,
- -1.33,
- -1.22,
- -1.02,
- -0.79,
- -0.9,
- -1.33,
- -1.18,
- -0.9,
- -0.22,
- 0.38,
- 0.48,
- 0.3,
- 0.26,
- 0.17,
- -0.06,
- -0.41,
- -2.02,
- -3.36,
- -3.96,
- -4.3,
- -4.62,
- -5.16,
- -6.15,
- -7.22,
- -8.58,
- -9.53,
- -9.38,
- -9.05,
- -8.15,
- -7.62,
- -6.99,
- -5.29,
- -2.92,
- 2.73,
- 1.29,
- 0.02,
- 0.71,
- -1.52,
- -3.7,
- -3.58,
- -3.52,
- -2.95,
- -2.66,
- 1.11,
- -0.81,
- -0.5,
- 0.42,
- 0.89,
- -0.34,
- -0.02,
- 1.03,
- -0.85,
- -0.23,
- 0.88,
- 1.52,
- -1.37,
- -3.04,
- -3.61,
- -3.83,
- -4.57,
- -4.65,
- -3.52,
- -1.66,
- -6.78,
- -3.27,
- 3.9,
- 8.59,
- 9.72,
- 8.95,
- 7.76,
- 6.38,
- 5.65,
- 4.72,
- 2.64,
- 1.14,
- -0.24,
- 1.39,
- 0.45,
- 0.29,
- 0.69,
- 2.54,
- 3.26,
- 1.06,
- -2.09,
- -2.64,
- -3.05,
- -3.45,
- -0.1,
- 1.93,
- 2.89,
- 2.84,
- 2.19,
- 4.39,
- -0.12,
- -2.13,
- -0.37,
- -0.77,
- 1.58,
- 7.91,
- 10.15,
- 6.1,
- -1.59,
- 2.34,
- 1.56,
- -0.55,
- -0.7,
- 1.26,
- 0.21,
- 2.03,
- 0.93,
- 2.15,
- 3.07,
- -0.99,
- -2.13,
- 0.35,
- -0.79,
- -1.38,
- -1.54,
- -0.7,
- -0.35,
- -2.82,
- -2.67,
- -1.99,
- -2.48,
- -5.28,
- -3.28,
- -3.51,
- -1.82,
- -1.72,
- -0.75,
- 0.15,
- 1.12,
- -1.23,
- -2.44,
- -3.99,
- -1.68,
- -2.87,
- -1.95,
- -4.34,
- -4.96,
- -7.41,
- -5.01,
- -4.09,
- -2.04,
- -2.4,
- 2.91,
- 4.13,
- 0.06,
- -1.01,
- 2.47,
- 1.91,
- 2.85,
- 2.86,
- 5.51,
- 5.45,
- 4.73,
- 4.88,
- 5.14,
- 4.97,
- 4.93,
- 4.99,
- 4.69,
- 8.4,
- 7.94,
- 7.7,
- 7.0,
- 5.68,
- 5.4,
- 5.07,
- 4.17,
- 1.88,
- 0.27,
- 4.85,
- 2.74,
- 4.19,
- 2.88,
- 1.35,
- 1.89,
- -1.55,
- -1.5,
- 2.64,
- 4.54,
- 2.06,
- -0.05,
- -1.83,
- -3.94,
- -5.49,
- -5.91,
- -5.78,
- -5.09,
- -4.37,
- -3.94,
- -3.83,
- -3.47,
- -2.07,
- -2.14,
- -4.01,
- -3.83,
- -1.75,
- 1.57,
- 1.13,
- -0.13,
- 1.46,
- 5.5,
- 6.41,
- 8.82,
- 9.95,
- 8.97,
- 9.44,
- 9.97,
- 10.33,
- 9.15,
- 7.61,
- 6.48,
- 6.72,
- 6.16,
- 5.3,
- 4.31,
- 3.67,
- 2.42,
- 1.6,
- -0.28,
- -1.86,
- -2.89,
- -3.57,
- -3.99,
- -4.27,
- -4.89,
- -5.74,
- -6.11,
- -6.0,
- -5.7,
- -5.64,
- -5.56,
- -5.58,
- -5.79,
- -6.08,
- -6.62,
- -6.84,
- -6.67,
- -6.69,
- -6.3,
- -6.02,
- -1.75,
- 4.82,
- 7.43,
- 8.38,
- 6.82,
- 6.39,
- 6.44,
- 5.99,
- 5.36,
- 5.24,
- 4.92,
- 4.4,
- 3.45,
- 2.36,
- 1.95,
- 1.57,
- 0.12,
- -1.63,
- -2.31,
- -3.06,
- -3.05,
- -3.89,
- -4.32,
- -5.13,
- -5.0,
- -5.04,
- -5.86,
- -6.58,
- -7.07,
- -8.21,
- -9.31,
- -9.88,
- -10.2,
- -10.28,
- -9.98,
- -9.67,
- -9.11,
- -7.49,
- -2.95,
- 0.27,
- 0.39,
- 0.24,
- 2.55,
- 3.72,
- 6.15,
- 3.15,
- 0.85,
- -0.11,
- -0.88,
- -0.51,
- 0.92,
- 1.53,
- -0.63,
- -1.06,
- -1.23,
- -3.14,
- -3.79,
- -5.37,
- -4.8,
- -4.88,
- -4.4,
- -1.25,
- 0.59,
- 4.05,
- 0.47,
- 2.65,
- 3.12,
- 3.56,
- 3.32,
- 3.6,
- 2.63,
- 0.71,
- -0.62,
- 1.82,
- 3.64,
- 4.33,
- 2.12,
- 1.16,
- 2.15,
- 0.64,
- -1.97,
- -3.52,
- -5.2,
- -5.54,
- -5.0,
- -4.07,
- 1.72,
- 5.77,
- 4.27,
- 4.34,
- 4.49,
- 4.7,
- 4.59,
- 3.38,
- 3.28,
- 2.83,
- 2.66,
- 1.82,
- 0.19,
- 0.64,
- 2.89,
- 5.42,
- 6.24,
- 5.83,
- 5.09,
- 4.57,
- 3.92,
- 3.48,
- 3.53,
- 2.9,
- 1.77,
- 0.25,
- -0.51,
- -0.82,
- -1.46,
- -1.91,
- -2.03,
- -1.99,
- -1.84,
- -2.23,
- -2.37,
- -3.0,
- -2.62,
- -2.03,
- -1.64,
- -1.25,
- -1.25,
- -1.35,
- -1.03,
- -0.47,
- -0.17,
- -0.38,
- -1.13,
- -1.82,
- -2.29,
- -3.61,
- -4.75,
- -5.49,
- -6.18,
- -6.68,
- -6.1,
- -8.03,
- -8.48,
- -8.37,
- -8.22,
- -7.79,
- -7.57,
- -6.88,
- -4.26,
- -1.28,
- -1.64,
- -0.16,
- -0.49,
- 0.17,
- -3.08,
- -4.24,
- -3.56,
- -4.61,
- -1.07,
- 2.29,
- 0.6,
- -0.62,
- -0.12,
- 1.63,
- 0.05,
- 1.89,
- 4.25,
- 3.27,
- 0.39,
- 3.52,
- 4.17,
- -1.13,
- -3.47,
- -5.91,
- -5.71,
- -5.9,
- -6.57,
- -6.74,
- -6.5,
- -4.02,
- -4.66,
- -0.37,
- 5.49,
- 6.63,
- 7.27,
- 8.22,
- 6.93,
- 5.38,
- 3.28,
- 1.34,
- -0.32,
- -1.61,
- -1.04,
- 0.49,
- 2.14,
- -0.92,
- 2.52,
- 4.74,
- 3.35,
- 0.43,
- -1.98,
- -3.3,
- -4.04,
- -5.4,
- -3.77,
- -1.84,
- 1.46,
- 1.15,
- 2.12,
- 0.93,
- 2.94,
- -1.89,
- 2.49,
- 5.46,
- 1.56,
- 6.4,
- 9.76,
- 5.5,
- -2.77,
- 2.35,
- 2.27,
- 0.21,
- 0.01,
- 2.07,
- 1.79,
- 1.76,
- 1.02,
- 1.11,
- 2.67,
- 1.1,
- -0.58,
- -1.56,
- -0.35,
- -1.29,
- 2.31,
- -2.35,
- -2.11,
- -2.86,
- -1.95,
- -3.63,
- -3.32,
- -4.97,
- -4.27,
- -2.41,
- 0.57,
- 5.06,
- 5.84,
- 3.83,
- 2.39,
- 3.26,
- 1.37,
- -0.52,
- -2.15,
- -2.78,
- -2.25,
- -3.72,
- -4.34,
- -5.28,
- -3.01,
- -1.2,
- -1.26,
- 0.89,
- 1.85,
- 2.74,
- 1.46,
- 1.13,
- -0.43,
- -2.26,
- 1.84,
- 5.52,
- 6.08,
- 5.76,
- 4.08,
- 1.47,
- 2.72,
- 4.23,
- 3.42,
- 3.42,
- 4.01,
- 7.4,
- 7.08,
- 6.61,
- 5.98,
- 4.99,
- 5.01,
- 4.25,
- 3.22,
- 1.46,
- 2.58,
- 8.75,
- 4.99,
- 3.32,
- 1.94,
- -0.63,
- -0.76,
- -4.12,
- -4.22,
- -0.54,
- 2.13,
- 2.08,
- 0.1,
- -2.71,
- -4.19,
- -5.34,
- -5.62,
- -5.27,
- -4.87,
- -4.54,
- -4.36,
- -4.57,
- -4.64,
- -4.11,
- -5.09,
- -5.06,
- -2.29,
- -0.66,
- -1.94,
- -1.65,
- 3.39,
- 5.48,
- 7.03,
- 10.21,
- 9.1,
- 8.06,
- 7.52,
- 8.14,
- 8.79,
- 8.72,
- 7.63,
- 6.52,
- 6.67,
- 5.61,
- 4.77,
- 3.91,
- 3.35,
- 2.36,
- 1.96,
- 0.95,
- -0.21,
- -1.13,
- -1.79,
- -2.42,
- -2.96,
- -3.48,
- -4.14,
- -4.82,
- -5.1,
- -5.11,
- -5.28,
- -5.55,
- -5.89,
- -6.38,
- -6.81,
- -7.06,
- -7.29,
- -7.38,
- -6.83,
- -6.3,
- -5.13,
- -0.36,
- 5.06,
- 6.69,
- 7.7,
- 6.5,
- 5.88,
- 5.32,
- 5.36,
- 5.09,
- 5.18,
- 4.98,
- 4.2,
- 3.83,
- 2.7,
- 1.86,
- 1.31,
- 1.16,
- 0.07,
- -1.0,
- -1.79,
- -2.16,
- -2.94,
- -3.52,
- -3.65,
- -4.42,
- -4.87,
- -5.75,
- -6.9,
- -7.48,
- -8.02,
- -8.14,
- -8.69,
- -9.22,
- -9.38,
- -9.77,
- -9.38,
- -7.99,
- -7.32,
- -6.14,
- -5.31,
- -3.49,
- -2.06,
- -0.43,
- 5.02,
- 3.82,
- 4.19,
- 3.6,
- 2.41,
- -0.43,
- -1.31,
- -3.0,
- -2.74,
- -2.22,
- -2.64,
- -0.78,
- -1.79,
- -2.17,
- -5.28,
- -6.97,
- -7.34,
- -4.09,
- -0.83,
- 1.41,
- 2.02,
- 3.98,
- 3.83,
- 1.47,
- 4.16,
- 3.25,
- 3.37,
- 3.23,
- 2.33,
- 1.84,
- 1.07,
- 0.68,
- 4.47,
- 3.14,
- 0.94,
- 1.58,
- 0.74,
- -0.89,
- -2.64,
- -4.3,
- -5.31,
- -5.23,
- -3.55,
- -0.41,
- 5.67,
- 3.36,
- 3.31,
- 3.9,
- 3.87,
- 2.84,
- 3.22,
- 3.89,
- 3.1,
- 2.14,
- 0.99,
- -1.17,
- -0.72,
- 1.84,
- 6.44,
- 7.08,
- 6.39,
- 5.4,
- 4.44,
- 3.21,
- 2.36,
- 3.24,
- 2.67,
- 1.46,
- 0.32,
- -0.38,
- -1.05,
- -1.55,
- -2.27,
- -2.7,
- -2.7,
- -2.66,
- -3.5,
- -4.21,
- -4.8,
- -4.48,
- -3.65,
- -2.42,
- -1.39,
- -0.96,
- -0.53,
- -0.67,
- -1.11,
- -1.24,
- -0.4,
- -0.84,
- -1.55,
- -2.12,
- -2.68,
- -3.42,
- -3.99,
- -4.9,
- -5.68,
- -5.07,
- -7.76,
- -7.86,
- -8.11,
- -8.34,
- -8.49,
- -8.61,
- -8.73,
- -7.48,
- -2.67,
- -2.88,
- -0.13,
- -0.82,
- -1.94,
- -2.21,
- -5.23,
- -3.78,
- -3.82,
- 2.04,
- 3.25,
- 3.1,
- 4.95,
- 4.17,
- 2.57,
- 4.08,
- 0.63,
- 4.99,
- 2.45,
- 1.88,
- 2.81,
- 0.78,
- -0.81,
- -3.79,
- -5.19,
- -5.56,
- -5.54,
- -6.02,
- -6.89,
- -7.71,
- -7.14,
- -6.14,
- -0.8,
- 7.39,
- 10.14,
- 9.8,
- 8.07,
- 5.76,
- 4.32,
- 2.33,
- 0.08,
- -1.05,
- -1.54,
- -2.15,
- -1.08,
- 0.74,
- -1.13,
- -3.19,
- 2.61,
- 4.27,
- 0.01,
- -1.91,
- -0.35,
- 0.03,
- -2.18,
- -3.7,
- -4.43,
- -4.57,
- -2.07,
- 0.08,
- 0.72,
- 1.84,
- 2.82,
- 2.38,
- 3.64,
- 1.87,
- 3.2,
- 3.21,
- 10.62,
- 4.86,
- -1.63,
- 1.65,
- 1.32,
- 1.19,
- 0.06,
- 3.2,
- 3.09,
- 2.24,
- 1.66,
- 0.2,
- 1.23,
- 1.43,
- 0.26,
- -1.18,
- -1.59,
- -1.44,
- -0.98,
- 1.03,
- -3.2,
- -5.18,
- -2.09,
- -2.56,
- -3.29,
- -3.34,
- -1.95,
- 1.68,
- 1.1,
- 2.58,
- 1.89,
- 1.41,
- 3.87,
- 1.65,
- 1.36,
- 1.04,
- 1.07,
- 1.59,
- 0.16,
- 0.2,
- 0.43,
- -0.61,
- -2.16,
- -1.61,
- 0.86,
- 0.84,
- 1.4,
- 2.62,
- 2.17,
- 1.21,
- 0.51,
- -0.36,
- 2.67,
- 5.8,
- 5.51,
- 4.8,
- 2.98,
- 2.58,
- 4.24,
- 1.5,
- 0.71,
- 0.45,
- 3.76,
- 6.28,
- 6.65,
- 5.73,
- 4.9,
- 3.76,
- 1.64,
- 3.55,
- 2.31,
- 0.22,
- 5.8,
- 5.23,
- 3.8,
- 1.8,
- -0.28,
- -1.69,
- -2.05,
- -5.28,
- -5.34,
- -2.94,
- -1.19,
- -1.34,
- -0.54,
- -1.0,
- -2.74,
- -4.05,
- -4.8,
- -5.15,
- -5.16,
- -5.37,
- -5.54,
- -5.55,
- -5.64,
- -5.87,
- -4.66,
- -2.54,
- -3.21,
- -5.11,
- -0.22,
- 5.13,
- 6.22,
- 8.31,
- 8.32,
- 7.56,
- 7.03,
- 6.62,
- 6.33,
- 6.42,
- 6.37,
- 5.81,
- 5.85,
- 5.27,
- 5.01,
- 4.13,
- 3.22,
- 2.36,
- 1.98,
- 2.13,
- 1.09,
- 0.05,
- -0.74,
- -1.45,
- -2.07,
- -2.41,
- -2.88,
- -3.56,
- -3.97,
- -4.37,
- -4.87,
- -5.34,
- -5.75,
- -6.34,
- -6.83,
- -7.05,
- -7.19,
- -7.38,
- -7.06,
- -6.32,
- -5.41,
- -3.05,
- 1.98,
- 4.98,
- 4.79,
- 6.86,
- 5.76,
- 5.35,
- 4.7,
- 4.24,
- 4.56,
- 4.37,
- 4.5,
- 4.42,
- 3.36,
- 2.75,
- 1.74,
- 1.32,
- 0.89,
- 0.21,
- -0.41,
- -1.03,
- -1.95,
- -2.93,
- -3.49,
- -3.68,
- -4.33,
- -5.38,
- -5.63,
- -6.05,
- -6.69,
- -7.38,
- -7.85,
- -8.72,
- -9.66,
- -9.75,
- -9.64,
- -8.98,
- -7.88,
- -7.27,
- -7.87,
- -7.56,
- -6.56,
- -5.81,
- -5.86,
- -1.17,
- 0.77,
- 8.09,
- 4.09,
- 0.34,
- -0.28,
- 0.04,
- 0.94,
- 1.38,
- -1.32,
- -0.14,
- -0.33,
- -0.05,
- 1.12,
- -3.2,
- -3.73,
- -4.22,
- 1.49,
- 2.84,
- 2.84,
- 2.96,
- 4.59,
- -0.84,
- 1.42,
- 5.99,
- 3.29,
- 2.68,
- 2.73,
- 2.2,
- 1.63,
- 1.2,
- 0.69,
- 0.6,
- 2.41,
- 2.04,
- 2.09,
- 0.69,
- -1.02,
- -1.52,
- -2.58,
- -3.65,
- -2.65,
- -1.38,
- 0.26,
- 5.04,
- 2.68,
- 2.08,
- 4.36,
- 4.62,
- 4.1,
- 4.32,
- 3.71,
- 2.89,
- 2.0,
- 0.75,
- -0.9,
- -1.8,
- 1.14,
- 3.75,
- 6.17,
- 7.83,
- 6.11,
- 4.49,
- 3.11,
- 1.87,
- 1.55,
- 2.89,
- 2.13,
- 1.15,
- -0.3,
- -1.38,
- -1.7,
- -2.46,
- -3.1,
- -3.56,
- -3.35,
- -4.15,
- -5.46,
- -5.68,
- -5.87,
- -5.16,
- -3.45,
- -2.01,
- -1.09,
- -0.67,
- -0.77,
- -0.46,
- 1.87,
- 3.33,
- 0.68,
- -0.68,
- -1.51,
- -2.34,
- -3.33,
- -3.97,
- -4.21,
- -4.74,
- -4.07,
- -5.31,
- -5.58,
- -6.37,
- -7.63,
- -8.45,
- -9.18,
- -9.91,
- -11.06,
- -10.23,
- -0.81,
- -0.92,
- -1.89,
- -1.49,
- -1.95,
- -2.14,
- -3.77,
- 2.49,
- 2.96,
- 0.5,
- 1.78,
- 3.05,
- 4.38,
- 3.61,
- 4.72,
- 4.99,
- 4.01,
- 0.38,
- -0.28,
- 0.96,
- -1.32,
- -2.59,
- -4.57,
- -5.71,
- -6.4,
- -5.69,
- -6.23,
- -7.22,
- -7.11,
- -5.55,
- -3.57,
- -2.45,
- 2.44,
- 6.22,
- 7.56,
- 6.61,
- 1.97,
- 1.64,
- 1.74,
- -0.73,
- -2.98,
- -1.95,
- -0.47,
- -1.26,
- -2.84,
- 1.64,
- 0.35,
- -3.72,
- -1.16,
- 2.66,
- 0.23,
- -0.24,
- 0.22,
- -1.21,
- -2.17,
- -3.11,
- -3.05,
- -4.11,
- -4.89,
- -4.62,
- -0.35,
- -0.16,
- 2.34,
- 3.56,
- 1.45,
- 4.04,
- 0.15,
- -1.39,
- 10.44,
- 8.98,
- 0.24,
- 0.26,
- 1.49,
- -0.36,
- 0.98,
- 2.19,
- 1.37,
- 0.96,
- 0.35,
- 1.1,
- 0.35,
- 4.58,
- 3.92,
- -1.63,
- -3.9,
- -2.11,
- 0.48,
- 3.43,
- 0.48,
- 2.17,
- -0.03,
- 2.11,
- 3.0,
- 3.63,
- 4.05,
- 4.18,
- 3.16,
- 1.57,
- 2.0,
- 2.41,
- 1.49,
- 2.53,
- 1.25,
- 3.11,
- 0.59,
- 0.64,
- 1.72,
- 0.04,
- -1.05,
- -1.3,
- -1.49,
- -0.07,
- -0.64,
- -0.06,
- 0.99,
- 1.04,
- 0.71,
- -0.03,
- 1.31,
- 1.16,
- 2.98,
- 5.36,
- 5.76,
- 2.16,
- 1.27,
- 2.67,
- 2.29,
- 1.4,
- 1.12,
- 0.43,
- 0.68,
- 6.09,
- 5.61,
- 4.45,
- 3.11,
- 1.6,
- 0.04,
- 4.18,
- 2.91,
- 3.92,
- 4.6,
- 3.79,
- 2.2,
- 0.21,
- -1.07,
- -2.04,
- -2.19,
- -4.44,
- -4.77,
- -3.72,
- -2.4,
- -2.41,
- -2.9,
- -3.16,
- -3.92,
- -3.93,
- -3.61,
- -3.91,
- -4.49,
- -4.97,
- -5.3,
- -5.5,
- -5.58,
- -4.86,
- -4.15,
- -5.59,
- -5.96,
- 3.24,
- 6.49,
- 7.88,
- 8.26,
- 7.8,
- 7.8,
- 6.97,
- 6.12,
- 5.57,
- 5.42,
- 5.33,
- 4.79,
- 4.35,
- 4.12,
- 3.89,
- 3.19,
- 2.61,
- 1.86,
- 1.26,
- 0.44,
- -0.2,
- -0.49,
- -1.03,
- -1.35,
- -1.93,
- -2.14,
- -2.44,
- -2.8,
- -3.31,
- -4.05,
- -4.89,
- -5.4,
- -5.81,
- -6.34,
- -6.69,
- -7.0,
- -7.64,
- -6.89,
- -6.07,
- -5.21,
- -3.09,
- -0.57,
- 1.57,
- 4.72,
- 3.27,
- 5.49,
- 4.92,
- 4.65,
- 4.27,
- 4.11,
- 4.29,
- 5.07,
- 4.53,
- 4.57,
- 3.67,
- 2.45,
- 1.63,
- 0.95,
- 0.69,
- 0.11,
- -0.41,
- -0.66,
- -1.1,
- -1.81,
- -2.72,
- -3.62,
- -4.08,
- -5.17,
- -6.04,
- -6.55,
- -6.33,
- -6.58,
- -6.76,
- -7.22,
- -8.08,
- -8.61,
- -9.14,
- -9.34,
- -8.8,
- -8.12,
- -7.88,
- -7.95,
- -7.71,
- -7.73,
- -7.58,
- -7.65,
- -7.5,
- 0.31,
- 3.81,
- 4.45,
- 0.95,
- -2.02,
- 1.5,
- 2.05,
- 2.06,
- 1.56,
- -1.15,
- -2.04,
- -2.14,
- -5.01,
- -5.2,
- -4.32,
- -2.13,
- 0.06,
- 1.81,
- 1.9,
- 4.99,
- 3.77,
- 6.85,
- 6.24,
- 5.04,
- 2.3,
- 5.16,
- 5.65,
- 4.21,
- 2.73,
- 1.77,
- -0.27,
- -2.0,
- -1.0,
- 1.91,
- 2.11,
- 0.99,
- -0.12,
- 0.02,
- -0.07,
- -0.27,
- 0.26,
- 1.8,
- 3.74,
- 1.82,
- 1.03,
- 3.55,
- 4.29,
- 4.42,
- 3.81,
- 2.96,
- 2.48,
- 1.76,
- 0.85,
- -0.15,
- -1.01,
- 0.22,
- 2.87,
- 3.82,
- 5.12,
- 6.8,
- 5.28,
- 3.2,
- 2.52,
- 1.2,
- 2.98,
- 3.0,
- 1.87,
- 0.59,
- -0.69,
- -1.6,
- -2.41,
- -3.22,
- -3.58,
- -4.35,
- -4.66,
- -5.59,
- -6.65,
- -7.39,
- -7.2,
- -5.4,
- -3.45,
- -2.01,
- -1.1,
- -0.47,
- -0.18,
- 0.55,
- 2.41,
- 3.44,
- 2.26,
- 0.32,
- -0.84,
- -1.61,
- -2.43,
- -3.68,
- -4.79,
- -5.14,
- -4.67,
- -4.57,
- -4.94,
- -5.59,
- -7.28,
- -8.37,
- -9.36,
- -10.5,
- -11.87,
- -5.13,
- 0.41,
- -4.47,
- -1.27,
- 0.16,
- 1.06,
- 2.88,
- 2.67,
- 2.45,
- 1.07,
- 1.11,
- 2.11,
- 3.45,
- 3.81,
- 5.06,
- 5.29,
- 0.37,
- -1.91,
- -1.9,
- -2.12,
- -2.9,
- -3.85,
- -4.0,
- -4.32,
- -5.03,
- -3.46,
- -3.05,
- -4.66,
- -4.69,
- -6.35,
- -5.1,
- -4.01,
- 0.0,
- 4.86,
- 7.12,
- 6.36,
- 3.95,
- 3.44,
- 2.58,
- -0.72,
- -3.39,
- -3.22,
- -1.25,
- -3.51,
- 0.55,
- -2.4,
- -0.85,
- 1.83,
- -2.43,
- -2.81,
- -0.57,
- -0.16,
- -0.28,
- 1.62,
- 2.92,
- 4.06,
- -1.23,
- -1.64,
- -4.93,
- -7.53,
- -7.84,
- -3.98,
- -2.39,
- 1.72,
- 3.32,
- 1.82,
- 2.26,
- -1.21,
- 2.97,
- 4.15,
- 9.72,
- 4.76,
- 2.04,
- 1.83,
- 2.03,
- -0.27,
- 2.16,
- 1.24,
- -1.75,
- 2.52,
- 3.21,
- 2.27,
- 5.07,
- 3.97,
- 0.34,
- -2.92,
- -2.89,
- -0.94,
- 1.97,
- 1.85,
- 2.4,
- 2.38,
- 4.22,
- 2.56,
- 2.24,
- 5.54,
- 3.5,
- 4.31,
- 1.46,
- -0.9,
- 3.21,
- 0.6,
- -0.17,
- 1.16,
- 2.67,
- 1.94,
- 2.59,
- 3.53,
- 0.05,
- 1.52,
- 0.25,
- 0.25,
- 1.72,
- -1.13,
- -0.76,
- -0.09,
- -0.87,
- -0.43,
- 0.41,
- 0.66,
- 1.64,
- 0.97,
- 2.71,
- 5.73,
- 2.3,
- 2.09,
- 2.89,
- 1.79,
- -0.18,
- -0.1,
- 0.92,
- 1.64,
- 5.68,
- 4.11,
- 2.57,
- 0.82,
- -0.5,
- 3.29,
- 3.97,
- 3.02,
- 3.1,
- 2.97,
- 2.73,
- 1.06,
- -0.35,
- -1.6,
- -2.65,
- -2.9,
- -3.82,
- -4.63,
- -4.19,
- -4.16,
- -4.37,
- -4.49,
- -4.64,
- -4.51,
- -4.35,
- -4.35,
- -4.21,
- -4.26,
- -4.73,
- -5.24,
- -5.77,
- -5.33,
- -5.6,
- -7.73,
- -4.6,
- 6.47,
- 7.4,
- 7.97,
- 7.42,
- 7.34,
- 7.17,
- 6.81,
- 6.01,
- 4.99,
- 4.27,
- 4.52,
- 4.61,
- 3.83,
- 2.45,
- 2.41,
- 2.09,
- 1.64,
- 1.1,
- -0.15,
- -0.99,
- -1.1,
- -1.81,
- -2.62,
- -3.01,
- -3.4,
- -3.02,
- -3.57,
- -3.86,
- -4.56,
- -5.0,
- -5.5,
- -5.88,
- -5.9,
- -5.93,
- -6.58,
- -7.56,
- -7.56,
- -5.86,
- -4.96,
- -3.47,
- -2.35,
- -0.18,
- 1.16,
- 3.16,
- 3.54,
- 4.74,
- 4.01,
- 3.83,
- 3.97,
- 3.72,
- 3.85,
- 4.75,
- 4.87,
- 4.03,
- 3.57,
- 2.38,
- 1.33,
- 0.84,
- 0.47,
- 0.03,
- -0.45,
- -0.64,
- -0.57,
- -0.96,
- -1.81,
- -2.79,
- -4.07,
- -4.54,
- -5.66,
- -5.97,
- -5.96,
- -5.91,
- -5.96,
- -6.39,
- -6.94,
- -7.29,
- -7.47,
- -7.74,
- -7.86,
- -7.7,
- -7.24,
- -6.87,
- -7.05,
- -7.2,
- -7.6,
- -7.85,
- -7.5,
- -7.46,
- -5.02,
- 2.14,
- 0.68,
- -0.08,
- 1.8,
- -0.16,
- 2.37,
- -0.4,
- -0.02,
- -1.3,
- 0.34,
- -0.57,
- -1.81,
- -2.49,
- -4.51,
- -4.0,
- -0.47,
- 3.71,
- 5.01,
- 5.86,
- 7.39,
- 6.92,
- 7.32,
- 7.75,
- 5.57,
- 6.28,
- 4.15,
- 3.93,
- 2.27,
- 1.73,
- 0.63,
- -0.53,
- -0.75,
- 2.05,
- 2.07,
- 2.99,
- 2.4,
- 2.36,
- 1.81,
- 1.33,
- 1.56,
- 2.04,
- 0.59,
- -0.78,
- 1.22,
- 3.32,
- 4.14,
- 3.45,
- 2.96,
- 2.33,
- 1.71,
- 0.97,
- 0.47,
- 0.0,
- 0.18,
- 1.32,
- 3.04,
- 3.51,
- 4.37,
- 6.16,
- 4.7,
- 3.02,
- 2.07,
- 1.86,
- 3.76,
- 2.54,
- 1.06,
- -0.05,
- -0.96,
- -1.95,
- -2.83,
- -3.79,
- -4.36,
- -4.83,
- -5.5,
- -6.96,
- -8.02,
- -8.52,
- -7.92,
- -6.07,
- -2.86,
- -0.38,
- -0.29,
- 0.06,
- 1.57,
- 2.63,
- 4.62,
- 6.24,
- 5.18,
- 3.32,
- 1.01,
- -1.15,
- -2.22,
- -3.16,
- -4.08,
- -4.85,
- -5.11,
- -3.75,
- -5.2,
- -6.32,
- -7.28,
- -7.8,
- -8.92,
- -9.88,
- -9.77,
- -1.43,
- -1.5,
- 2.72,
- 0.56,
- 0.66,
- 2.08,
- 1.39,
- 1.04,
- 0.15,
- -0.11,
- 0.71,
- 1.33,
- 1.8,
- 0.54,
- -0.02,
- -2.67,
- -4.38,
- -6.33,
- -4.42,
- -4.32,
- -3.93,
- -2.49,
- -2.13,
- 0.62,
- -3.05,
- -1.84,
- -1.73,
- -2.01,
- -4.08,
- -7.91,
- -1.43,
- -0.03,
- 3.62,
- 4.87,
- 6.03,
- 5.7,
- 3.99,
- 2.5,
- 0.56,
- -1.89,
- -4.19,
- -3.53,
- -1.47,
- -2.83,
- -2.36,
- -4.25,
- -1.58,
- 2.14,
- -1.25,
- -2.52,
- -0.69,
- -1.02,
- -1.18,
- 3.49,
- 4.86,
- 5.53,
- 3.28,
- -3.04,
- -5.89,
- -7.84,
- -8.16,
- -6.97,
- 0.55,
- 0.75,
- 0.43,
- 0.38,
- 1.18,
- 1.45,
- -0.93,
- 5.04,
- 5.74,
- 2.91,
- 1.85,
- -1.03,
- -1.34,
- 1.42,
- 3.37,
- 1.07,
- -0.01,
- 1.82,
- 1.68,
- 1.97,
- 2.39,
- 2.16,
- -0.67,
- -3.28,
- -4.34,
- -3.45,
- -0.94,
- -0.3,
- 1.28,
- 0.56,
- 0.72,
- 3.37,
- -0.91,
- 1.17,
- 5.78,
- 5.69,
- 4.4,
- 4.89,
- 4.12,
- 4.95,
- 6.1,
- 1.76,
- 2.32,
- -0.83,
- -1.13,
- 0.4,
- 3.29,
- 2.05,
- 1.43,
- 2.53,
- 3.19,
- 2.07,
- -2.04,
- -2.53,
- -0.1,
- 0.94,
- 0.86,
- 1.71,
- 1.85,
- 1.36,
- 3.47,
- 4.57,
- 1.06,
- 3.73,
- 1.74,
- 1.02,
- 0.17,
- 0.65,
- 0.59,
- 2.6,
- 2.63,
- 2.24,
- 0.32,
- -0.89,
- 3.58,
- 3.78,
- 3.56,
- 2.66,
- 2.32,
- 1.9,
- 1.56,
- 0.03,
- -0.82,
- -1.55,
- -1.94,
- -3.18,
- -4.66,
- -5.05,
- -4.73,
- -4.35,
- -4.15,
- -4.56,
- -5.31,
- -5.45,
- -5.18,
- -4.65,
- -4.31,
- -4.92,
- -5.28,
- -5.33,
- -6.08,
- -7.31,
- -7.64,
- 2.66,
- 6.71,
- 7.12,
- 8.03,
- 7.06,
- 7.06,
- 6.46,
- 5.73,
- 5.32,
- 4.7,
- 4.11,
- 3.58,
- 3.92,
- 3.28,
- 3.01,
- 1.62,
- 0.47,
- 0.53,
- 0.92,
- -0.89,
- -1.85,
- -1.93,
- -1.69,
- -2.29,
- -3.28,
- -3.73,
- -4.18,
- -4.4,
- -4.55,
- -4.48,
- -4.8,
- -5.57,
- -6.02,
- -6.19,
- -6.24,
- -6.54,
- -6.55,
- -5.82,
- -4.37,
- -2.53,
- -2.01,
- -0.72,
- 0.12,
- 0.72,
- 2.04,
- 3.07,
- 3.84,
- 3.5,
- 3.48,
- 3.94,
- 4.3,
- 4.06,
- 4.09,
- 4.06,
- 4.04,
- 3.29,
- 2.71,
- 1.54,
- 0.39,
- -0.06,
- -0.34,
- -0.68,
- -0.85,
- -0.92,
- -1.14,
- -1.95,
- -2.73,
- -3.5,
- -4.32,
- -5.15,
- -5.62,
- -5.73,
- -5.37,
- -5.1,
- -5.56,
- -6.15,
- -6.65,
- -7.17,
- -7.29,
- -7.37,
- -7.37,
- -7.2,
- -6.96,
- -6.78,
- -6.87,
- -7.2,
- -7.32,
- -7.24,
- -6.97,
- -6.93,
- -5.07,
- -5.83,
- 1.63,
- 1.04,
- -1.21,
- -0.12,
- -0.37,
- 0.66,
- 0.26,
- -0.54,
- -1.41,
- -1.01,
- -3.19,
- -1.87,
- -3.0,
- 0.16,
- 5.38,
- 5.54,
- 7.94,
- 5.51,
- 5.19,
- 6.08,
- 6.49,
- 6.12,
- 5.81,
- 5.75,
- 5.01,
- 3.6,
- 2.7,
- 2.73,
- 1.65,
- 0.18,
- -0.66,
- 2.53,
- 2.04,
- 4.12,
- 2.98,
- 2.17,
- 1.33,
- 0.75,
- 0.36,
- -0.93,
- -1.71,
- -1.52,
- 0.75,
- 3.06,
- 3.7,
- 2.56,
- 2.05,
- 1.71,
- 1.13,
- 0.37,
- -0.2,
- -0.56,
- 0.52,
- 2.42,
- 3.26,
- 3.34,
- 2.85,
- 6.29,
- 5.75,
- 3.31,
- 1.75,
- 2.13,
- 2.73,
- 2.11,
- 0.96,
- -0.12,
- -1.4,
- -2.59,
- -3.49,
- -4.12,
- -4.64,
- -5.16,
- -5.65,
- -7.56,
- -8.86,
- -9.57,
- -9.25,
- -6.51,
- -1.21,
- 1.11,
- 1.77,
- 3.15,
- 4.96,
- 3.13,
- 4.17,
- 6.91,
- 5.97,
- 3.5,
- 1.29,
- -0.36,
- -1.66,
- -2.97,
- -3.98,
- -5.74,
- -4.89,
- -7.09,
- -4.06,
- -9.18,
- -8.11,
- -7.63,
- -8.68,
- -7.11,
- -6.89,
- -1.77,
- -1.36,
- -0.96,
- 0.34,
- 1.14,
- 0.76,
- -0.35,
- -1.32,
- 0.17,
- -0.59,
- 2.31,
- 2.69,
- 0.21,
- -1.1,
- -2.65,
- -3.06,
- -1.99,
- -2.07,
- -1.92,
- 2.5,
- 0.97,
- 2.25,
- 0.91,
- -0.03,
- 1.63,
- 1.38,
- 1.28,
- 1.24,
- -4.26,
- -2.23,
- 5.5,
- 6.39,
- 6.19,
- 5.5,
- 6.37,
- 4.85,
- 2.97,
- 2.21,
- -0.36,
- -3.07,
- -4.18,
- -2.65,
- -0.74,
- -1.75,
- -6.58,
- -7.09,
- -0.9,
- -0.43,
- -0.49,
- 1.07,
- 1.44,
- 0.92,
- 1.42,
- 4.58,
- 4.09,
- 1.69,
- 0.77,
- 1.22,
- -4.74,
- -6.56,
- -6.28,
- -3.51,
- -2.64,
- -0.96,
- 1.98,
- 2.47,
- 1.31,
- 1.81,
- -1.8,
- 0.31,
- 0.15,
- -2.48,
- -0.37,
- 0.03,
- -0.29,
- -0.72,
- 0.48,
- 1.76,
- -0.31,
- 2.45,
- 3.21,
- 1.52,
- -1.24,
- 0.33,
- 0.69,
- -0.31,
- -0.67,
- -1.25,
- -1.14,
- -0.47,
- -0.48,
- -0.3,
- 0.19,
- -0.24,
- -1.54,
- -0.13,
- 3.32,
- 4.43,
- 4.41,
- 4.24,
- 6.02,
- 3.6,
- 4.03,
- 1.67,
- -0.56,
- -1.82,
- 0.56,
- 0.67,
- 2.51,
- 0.23,
- 0.23,
- 2.72,
- 2.64,
- 1.77,
- 1.22,
- 0.28,
- 0.94,
- 1.3,
- 1.28,
- 1.62,
- 1.72,
- 2.08,
- 3.4,
- 4.19,
- 1.32,
- 3.42,
- 3.29,
- 1.57,
- 1.55,
- 1.27,
- 1.75,
- -0.32,
- 0.51,
- 0.96,
- 2.4,
- 3.14,
- 3.67,
- 3.93,
- 1.43,
- 3.09,
- 1.86,
- 0.9,
- 1.55,
- -0.7,
- -2.23,
- -2.37,
- -2.4,
- -3.72,
- -5.32,
- -5.77,
- -4.95,
- -4.11,
- -3.92,
- -4.08,
- -4.71,
- -5.04,
- -5.14,
- -4.73,
- -5.22,
- -4.69,
- -5.22,
- -6.0,
- -7.87,
- -0.4,
- 4.71,
- 5.8,
- 6.66,
- 6.81,
- 6.25,
- 5.82,
- 5.6,
- 5.5,
- 5.03,
- 4.56,
- 4.22,
- 4.34,
- 3.83,
- 3.37,
- 2.87,
- 1.87,
- 1.03,
- 0.15,
- -0.9,
- -1.99,
- -1.03,
- -0.4,
- -1.6,
- -1.47,
- -1.37,
- -1.41,
- -2.22,
- -3.61,
- -3.71,
- -2.78,
- -4.36,
- -5.42,
- -5.36,
- -4.86,
- -4.39,
- -3.3,
- -2.71,
- -2.91,
- -3.28,
- -3.0,
- -3.12,
- -1.15,
- 0.71,
- 0.82,
- 1.33,
- 2.29,
- 2.53,
- 2.52,
- 3.13,
- 3.42,
- 3.56,
- 3.76,
- 3.48,
- 3.53,
- 3.31,
- 3.05,
- 2.36,
- 1.63,
- 0.68,
- 0.06,
- -0.47,
- -0.69,
- -1.09,
- -1.16,
- -1.0,
- -1.59,
- -2.49,
- -2.89,
- -3.76,
- -4.74,
- -4.57,
- -4.68,
- -4.86,
- -4.92,
- -4.89,
- -5.22,
- -5.53,
- -5.92,
- -6.39,
- -6.48,
- -6.52,
- -6.7,
- -7.01,
- -6.92,
- -6.56,
- -6.25,
- -7.05,
- -7.21,
- -7.21,
- -7.39,
- -7.01,
- -7.28,
- -5.02,
- -3.15,
- 0.42,
- -1.97,
- -2.88,
- -1.08,
- 0.17,
- 2.11,
- 0.69,
- -2.2,
- -4.73,
- -2.68,
- -1.33,
- 0.25,
- 3.15,
- 6.07,
- 5.42,
- 8.25,
- 7.6,
- 7.26,
- 7.55,
- 7.46,
- 7.0,
- 6.35,
- 5.77,
- 5.43,
- 4.89,
- 4.17,
- 3.51,
- 1.7,
- -0.12,
- -0.05,
- 0.27,
- 2.56,
- 3.34,
- 3.3,
- 2.5,
- 0.83,
- -0.75,
- -1.79,
- -2.37,
- -2.7,
- -1.56,
- 1.73,
- 3.04,
- 2.65,
- 2.81,
- 2.02,
- 1.41,
- 0.49,
- -0.35,
- -0.81,
- -0.74,
- -0.24,
- 1.72,
- 4.56,
- 3.17,
- 2.87,
- 4.51,
- 5.88,
- 3.95,
- 1.5,
- 1.36,
- 1.66,
- 1.66,
- 0.51,
- -0.38,
- -1.19,
- -2.51,
- -3.55,
- -3.7,
- -4.34,
- -5.32,
- -5.8,
- -7.93,
- -9.43,
- -9.87,
- -9.49,
- -6.38,
- -0.45,
- 2.69,
- 3.15,
- 4.91,
- 6.19,
- 5.09,
- 5.75,
- 7.54,
- 6.27,
- 3.54,
- 1.25,
- -0.46,
- -1.73,
- -3.28,
- -4.85,
- -4.89,
- -5.39,
- -3.16,
- -6.68,
- -6.92,
- -7.7,
- -8.24,
- -5.81,
- -5.69,
- -5.17,
- -2.59,
- -3.65,
- -2.39,
- -0.73,
- -1.4,
- -1.08,
- -2.38,
- -0.53,
- -0.6,
- 0.43,
- 2.29,
- 2.33,
- 1.06,
- -1.32,
- -1.38,
- -2.91,
- -1.09,
- 3.28,
- 3.0,
- 1.85,
- 1.37,
- 2.99,
- 3.88,
- 1.59,
- 0.37,
- 2.6,
- 4.59,
- 1.65,
- 0.84,
- 1.26,
- 5.68,
- 6.95,
- 6.72,
- 5.71,
- 4.14,
- 3.14,
- 2.57,
- 0.81,
- -1.48,
- -2.78,
- -3.36,
- -4.5,
- -0.83,
- -1.11,
- -2.26,
- -6.68,
- -1.02,
- 1.4,
- 0.75,
- 0.95,
- 1.95,
- 1.41,
- -0.27,
- 0.43,
- 0.86,
- 1.55,
- 1.81,
- -0.21,
- -6.13,
- -7.54,
- -6.55,
- -3.14,
- -2.37,
- -1.49,
- -0.22,
- 0.54,
- -0.66,
- 0.79,
- 1.95,
- 1.03,
- -0.64,
- 1.01,
- 1.89,
- 2.48,
- 0.59,
- 1.53,
- 1.74,
- 1.19,
- 0.84,
- 3.59,
- 3.07,
- 0.5,
- -0.25,
- -0.87,
- -1.56,
- -0.88,
- 1.75,
- 0.99,
- 0.24,
- 0.68,
- 1.49,
- 1.56,
- 2.36,
- 1.27,
- -1.1,
- -2.86,
- -2.94,
- 0.87,
- 2.24,
- 1.99,
- -0.39,
- -2.05,
- -2.32,
- 0.91,
- -0.43,
- 0.69,
- 0.38,
- 0.5,
- 2.15,
- 1.38,
- 2.72,
- 2.09,
- 3.25,
- 1.67,
- 3.16,
- -0.14,
- 2.54,
- 2.45,
- 2.03,
- 1.65,
- 2.73,
- 3.34,
- 3.16,
- 3.3,
- 1.96,
- 4.39,
- 4.05,
- 3.04,
- 1.79,
- 2.05,
- -2.67,
- -3.06,
- 0.52,
- 1.63,
- 2.2,
- 2.73,
- 2.64,
- 2.36,
- 2.02,
- 2.22,
- 1.29,
- 0.69,
- 0.92,
- -1.16,
- -2.9,
- -3.18,
- -2.85,
- -3.47,
- -4.68,
- -4.97,
- -4.47,
- -3.86,
- -4.04,
- -4.55,
- -5.3,
- -5.94,
- -5.76,
- -5.81,
- -5.58,
- -5.97,
- -7.55,
- -3.22,
- 3.41,
- 4.53,
- 5.26,
- 6.0,
- 6.23,
- 5.87,
- 5.4,
- 4.95,
- 5.39,
- 5.16,
- 4.92,
- 4.66,
- 4.54,
- 4.18,
- 3.34,
- 2.53,
- 1.9,
- 1.26,
- 0.94,
- 0.71,
- 0.44,
- 0.72,
- 0.84,
- 0.22,
- -0.36,
- -0.6,
- -0.84,
- -1.25,
- -1.32,
- -1.1,
- -0.82,
- -2.12,
- -3.2,
- -1.62,
- -2.55,
- -1.88,
- -2.48,
- -2.63,
- -3.2,
- -3.92,
- -4.08,
- -3.56,
- -0.95,
- 0.3,
- 0.05,
- 0.1,
- 0.69,
- 0.75,
- 1.2,
- 1.96,
- 2.81,
- 3.18,
- 3.5,
- 3.23,
- 3.2,
- 2.94,
- 2.75,
- 2.2,
- 1.64,
- 1.06,
- 0.22,
- -0.27,
- -0.52,
- -1.09,
- -1.28,
- -1.31,
- -1.9,
- -2.32,
- -2.51,
- -3.11,
- -4.2,
- -4.02,
- -4.1,
- -4.4,
- -4.33,
- -4.12,
- -3.97,
- -4.32,
- -4.69,
- -5.61,
- -6.16,
- -6.01,
- -6.18,
- -6.41,
- -6.42,
- -5.91,
- -5.66,
- -5.75,
- -6.19,
- -6.63,
- -6.78,
- -6.92,
- -7.25,
- -7.04,
- -7.68,
- -7.65,
- -1.48,
- -1.29,
- -2.87,
- -2.73,
- -0.42,
- 1.15,
- 0.44,
- -0.1,
- -1.24,
- -4.36,
- 2.08,
- 0.97,
- 1.78,
- 4.52,
- 4.63,
- 6.42,
- 8.05,
- 8.15,
- 8.16,
- 7.76,
- 7.44,
- 7.25,
- 6.57,
- 6.09,
- 5.56,
- 4.58,
- 3.71,
- 3.01,
- 1.4,
- 0.97,
- 0.9,
- 0.92,
- 1.72,
- 1.35,
- 0.6,
- -0.54,
- -1.98,
- -2.85,
- -2.93,
- -1.89,
- 0.4,
- 2.36,
- 2.94,
- 2.45,
- 2.13,
- 1.68,
- 1.29,
- 0.49,
- -0.52,
- -1.14,
- -1.26,
- 0.33,
- 3.02,
- 5.16,
- 5.24,
- 3.64,
- 3.94,
- 5.36,
- 4.6,
- 1.9,
- 0.91,
- 0.83,
- 1.1,
- 0.09,
- -1.04,
- -1.44,
- -2.71,
- -3.16,
- -3.2,
- -4.05,
- -5.39,
- -6.33,
- -7.49,
- -8.88,
- -9.21,
- -8.68,
- -6.48,
- -1.98,
- 2.17,
- 3.67,
- 5.78,
- 6.4,
- 5.24,
- 5.8,
- 6.39,
- 6.0,
- 3.94,
- 1.35,
- -0.65,
- -2.3,
- -3.64,
- -4.47,
- -5.07,
- -4.27,
- -5.86,
- -5.96,
- -7.69,
- -8.38,
- -5.25,
- -6.47,
- -3.82,
- -5.85,
- -5.58,
- -4.13,
- -3.47,
- -3.09,
- -3.55,
- -3.94,
- -0.09,
- 0.06,
- 2.2,
- 2.58,
- -0.03,
- -0.95,
- -0.56,
- -3.01,
- -2.41,
- -0.79,
- 0.87,
- 1.88,
- 0.64,
- 1.02,
- 2.85,
- 1.75,
- 1.93,
- 1.03,
- 4.33,
- 5.15,
- 2.03,
- 1.66,
- 3.3,
- 2.0,
- 6.9,
- 5.11,
- 5.63,
- 3.05,
- 1.57,
- 0.9,
- 1.44,
- 0.57,
- -2.75,
- -3.34,
- -3.21,
- -3.85,
- -2.16,
- -2.51,
- -0.99,
- -5.42,
- -4.21,
- -2.5,
- 0.92,
- 3.43,
- 0.62,
- 1.19,
- 0.19,
- 3.03,
- 7.69,
- 6.85,
- 3.6,
- -2.77,
- -4.39,
- -4.99,
- -4.08,
- -2.16,
- -2.47,
- -0.98,
- -0.55,
- -0.13,
- -0.3,
- 0.88,
- 0.11,
- -0.36,
- 0.08,
- 0.98,
- 1.8,
- 2.52,
- 1.91,
- 1.99,
- 1.51,
- 1.8,
- 3.55,
- 3.52,
- 2.17,
- 1.92,
- 0.9,
- -2.35,
- -1.95,
- -1.33,
- 1.26,
- 1.14,
- -1.08,
- -0.79,
- 0.42,
- 1.96,
- 2.13,
- -0.55,
- -1.62,
- -2.82,
- -2.67,
- -3.53,
- -1.94,
- 4.37,
- 2.04,
- 0.8,
- 0.3,
- 1.51,
- 0.41,
- 1.87,
- 1.38,
- 1.41,
- -0.97,
- 1.2,
- 2.68,
- 1.96,
- 2.64,
- 2.77,
- 2.16,
- 3.14,
- 1.14,
- 1.05,
- 1.15,
- 0.68,
- 0.97,
- 1.21,
- 2.25,
- 1.45,
- 1.32,
- 2.29,
- 0.95,
- 0.54,
- 1.11,
- -3.37,
- -8.57,
- -5.56,
- 6.0,
- 4.08,
- 3.49,
- 2.91,
- 2.53,
- 1.92,
- 1.75,
- 1.31,
- 1.01,
- 0.62,
- -0.45,
- -1.7,
- -2.76,
- -3.11,
- -3.13,
- -3.49,
- -4.16,
- -4.6,
- -4.29,
- -4.13,
- -4.68,
- -5.23,
- -5.54,
- -6.29,
- -7.02,
- -7.04,
- -7.28,
- -6.91,
- 3.31,
- 4.12,
- 5.2,
- 5.35,
- 6.02,
- 6.0,
- 5.79,
- 5.38,
- 4.98,
- 4.69,
- 4.79,
- 4.57,
- 4.73,
- 4.55,
- 4.01,
- 3.24,
- 2.38,
- 1.82,
- 1.44,
- 1.09,
- 0.83,
- 0.68,
- 0.55,
- 0.43,
- 0.12,
- -0.37,
- -1.03,
- -1.47,
- -1.77,
- -2.16,
- -2.24,
- -2.28,
- -2.57,
- -2.93,
- -3.41,
- -3.65,
- -2.3,
- -3.31,
- -3.24,
- -3.74,
- -4.23,
- -4.46,
- -3.76,
- -1.22,
- -0.89,
- -1.1,
- -0.99,
- -0.92,
- -0.38,
- 0.26,
- 0.84,
- 1.66,
- 2.37,
- 2.73,
- 2.85,
- 2.86,
- 2.67,
- 2.44,
- 1.95,
- 1.52,
- 1.08,
- 0.26,
- -0.65,
- -1.05,
- -1.27,
- -1.63,
- -1.4,
- -1.6,
- -2.02,
- -2.39,
- -2.83,
- -3.62,
- -3.74,
- -3.74,
- -3.75,
- -3.73,
- -3.57,
- -3.39,
- -3.47,
- -4.07,
- -4.7,
- -5.23,
- -5.85,
- -6.3,
- -6.33,
- -6.34,
- -6.31,
- -5.84,
- -5.95,
- -6.55,
- -6.99,
- -7.48,
- -7.72,
- -7.71,
- -7.69,
- -8.08,
- -8.27,
- -7.28,
- -3.93,
- -0.35,
- -3.79,
- -5.05,
- -2.48,
- -0.47,
- 0.92,
- 0.36,
- 2.01,
- 1.29,
- 2.42,
- 2.41,
- 1.38,
- 4.15,
- 7.4,
- 8.02,
- 6.57,
- 7.38,
- 7.97,
- 7.03,
- 7.01,
- 7.05,
- 7.18,
- 6.67,
- 5.01,
- 3.83,
- 3.26,
- 3.88,
- 3.57,
- 2.94,
- 1.89,
- 0.26,
- 0.2,
- 0.13,
- -0.46,
- -1.82,
- -2.62,
- -2.04,
- -1.6,
- -0.69,
- 0.58,
- 2.26,
- 2.79,
- 2.56,
- 2.11,
- 2.23,
- 2.05,
- 1.04,
- -0.37,
- -0.81,
- 0.88,
- 3.27,
- 3.91,
- 3.83,
- 3.86,
- 2.9,
- 3.59,
- 5.32,
- 4.86,
- 2.58,
- 0.81,
- 0.46,
- 0.21,
- -0.14,
- -1.11,
- -2.27,
- -2.98,
- -3.1,
- -3.25,
- -4.14,
- -5.13,
- -6.0,
- -6.93,
- -8.0,
- -8.24,
- -7.94,
- -6.35,
- -2.74,
- 1.02,
- 4.83,
- 5.47,
- 5.72,
- 4.4,
- 4.51,
- 6.64,
- 5.29,
- 2.95,
- 0.88,
- -0.93,
- -2.91,
- -4.11,
- -4.75,
- -5.21,
- -5.83,
- -5.82,
- -7.35,
- -7.64,
- -6.89,
- -5.89,
- -6.26,
- -4.73,
- -6.72,
- -6.17,
- -5.83,
- -4.5,
- -3.69,
- -4.08,
- -3.55,
- 1.74,
- 1.92,
- 1.73,
- 0.84,
- -1.96,
- -4.54,
- -7.35,
- -5.02,
- 0.87,
- 0.7,
- 0.97,
- 1.43,
- 0.71,
- -1.47,
- -0.36,
- 1.1,
- 0.34,
- 3.64,
- 2.02,
- 1.87,
- 4.03,
- 5.77,
- 5.31,
- 6.66,
- 6.93,
- 4.18,
- 4.3,
- 1.31,
- 0.16,
- 1.01,
- 0.16,
- -2.92,
- -4.17,
- -4.52,
- -5.01,
- -3.42,
- -2.27,
- -2.95,
- -0.2,
- -1.16,
- -5.52,
- -4.39,
- 1.69,
- -0.56,
- 1.39,
- 1.88,
- 1.4,
- 2.76,
- 3.91,
- 2.27,
- -0.42,
- -4.26,
- -4.82,
- -3.49,
- -0.51,
- -2.03,
- -1.42,
- -0.66,
- -0.41,
- -0.06,
- 1.9,
- -0.05,
- -2.72,
- -0.69,
- 0.72,
- 2.23,
- 1.44,
- 1.14,
- 1.22,
- 1.83,
- 1.72,
- 2.1,
- 3.42,
- 2.74,
- 2.09,
- -0.39,
- -0.01,
- -0.96,
- 0.95,
- -1.36,
- -3.75,
- -1.31,
- 0.17,
- -1.09,
- -0.14,
- 2.73,
- 2.85,
- 3.27,
- 0.8,
- 0.1,
- -1.35,
- -2.79,
- -1.3,
- 3.24,
- 3.28,
- 2.51,
- 0.85,
- -0.31,
- 0.19,
- 1.17,
- 1.68,
- 0.02,
- -0.39,
- 1.12,
- 0.43,
- 1.58,
- 2.35,
- 2.27,
- 1.91,
- 0.6,
- 0.78,
- 0.99,
- 0.42,
- 0.9,
- 1.14,
- -0.71,
- -0.07,
- 0.52,
- 1.34,
- 0.94,
- 2.43,
- 1.2,
- -4.04,
- -7.83,
- -7.63,
- -0.65,
- 2.53,
- 2.69,
- 2.25,
- 2.06,
- 1.52,
- 0.78,
- 0.56,
- 0.37,
- 0.21,
- -0.23,
- -1.07,
- -1.94,
- -2.99,
- -3.52,
- -3.8,
- -4.14,
- -4.55,
- -4.52,
- -4.35,
- -4.5,
- -4.66,
- -5.4,
- -6.38,
- -7.45,
- -7.93,
- -7.61,
- 1.29,
- 3.64,
- 4.64,
- 5.19,
- 5.6,
- 6.07,
- 5.55,
- 5.72,
- 5.36,
- 4.83,
- 4.38,
- 4.5,
- 4.0,
- 4.2,
- 4.09,
- 3.67,
- 3.1,
- 2.31,
- 1.6,
- 1.07,
- 0.79,
- 0.33,
- 0.3,
- 0.73,
- 0.78,
- 0.13,
- -0.32,
- -0.68,
- -1.1,
- -1.61,
- -2.27,
- -2.72,
- -2.96,
- -2.95,
- -2.96,
- -3.32,
- -4.08,
- -4.01,
- -4.47,
- -3.87,
- -4.34,
- -4.76,
- -4.19,
- -3.47,
- -2.93,
- -1.84,
- -2.07,
- -1.73,
- -1.72,
- -1.89,
- -0.74,
- 0.02,
- 0.44,
- 1.22,
- 1.9,
- 1.92,
- 2.03,
- 1.92,
- 1.87,
- 1.7,
- 1.18,
- 0.74,
- 0.22,
- -0.57,
- -1.38,
- -2.0,
- -2.06,
- -1.99,
- -1.85,
- -1.85,
- -2.08,
- -2.42,
- -2.79,
- -3.44,
- -3.49,
- -3.55,
- -3.35,
- -3.18,
- -3.08,
- -3.13,
- -3.36,
- -3.87,
- -4.47,
- -5.11,
- -5.85,
- -6.12,
- -6.15,
- -6.05,
- -5.92,
- -5.69,
- -5.74,
- -5.89,
- -6.6,
- -7.26,
- -7.59,
- -7.71,
- -7.13,
- -6.74,
- -6.16,
- -5.73,
- -6.26,
- -5.4,
- -0.99,
- -4.39,
- -3.62,
- -0.94,
- -0.7,
- 1.13,
- 1.27,
- 2.08,
- 3.26,
- 2.2,
- 3.19,
- 1.62,
- 5.22,
- 7.0,
- 7.21,
- 8.24,
- 7.54,
- 6.94,
- 6.74,
- 7.28,
- 7.7,
- 7.16,
- 4.95,
- 2.91,
- 2.04,
- 2.54,
- 3.38,
- 3.48,
- 2.86,
- 1.63,
- -0.29,
- -0.73,
- -1.32,
- -1.9,
- -1.96,
- -1.46,
- -0.92,
- -1.18,
- 0.33,
- 1.29,
- 1.46,
- 2.09,
- 2.45,
- 2.91,
- 2.38,
- 1.76,
- 1.31,
- 1.83,
- 3.14,
- 3.96,
- 3.75,
- 2.83,
- 2.12,
- 1.76,
- 2.36,
- 5.01,
- 4.29,
- 2.67,
- 0.75,
- 0.11,
- -0.83,
- -0.52,
- -1.11,
- -1.71,
- -2.71,
- -3.31,
- -3.83,
- -4.26,
- -5.19,
- -5.89,
- -6.72,
- -7.35,
- -7.47,
- -7.22,
- -5.47,
- -2.21,
- 3.0,
- 4.03,
- 5.88,
- 5.31,
- 5.1,
- 4.66,
- 5.58,
- 4.22,
- 1.68,
- -0.12,
- -1.64,
- -2.93,
- -3.97,
- -5.04,
- -5.8,
- -6.46,
- -6.96,
- -7.37,
- -8.19,
- -4.56,
- -6.09,
- -4.6,
- -5.6,
- -6.08,
- -4.6,
- -4.83,
- -3.97,
- -4.15,
- -3.81,
- -2.69,
- -0.14,
- -0.66,
- -1.03,
- -1.03,
- -3.15,
- -3.99,
- -5.12,
- -2.77,
- -1.09,
- 1.45,
- -0.42,
- -1.6,
- -3.5,
- -2.17,
- -0.22,
- 0.49,
- 0.6,
- 2.79,
- 1.42,
- 6.5,
- 4.45,
- 3.68,
- 3.65,
- 3.06,
- 2.79,
- 2.57,
- 1.53,
- 1.06,
- 0.66,
- 0.74,
- -2.37,
- -4.41,
- -4.4,
- -4.18,
- -4.73,
- -3.33,
- -2.13,
- -1.6,
- -0.23,
- -0.25,
- -2.1,
- -3.02,
- -3.16,
- -1.7,
- 3.03,
- 2.61,
- 3.2,
- 3.5,
- 2.92,
- -1.19,
- -2.87,
- -4.03,
- -5.15,
- -7.47,
- -5.8,
- -6.12,
- -3.21,
- -1.28,
- -1.85,
- -2.89,
- -3.19,
- 1.13,
- 3.72,
- 1.66,
- 2.39,
- 5.54,
- 1.76,
- 0.82,
- 0.89,
- 0.96,
- 1.42,
- 1.62,
- 1.54,
- 2.15,
- 2.83,
- 0.7,
- -1.05,
- -0.38,
- 0.2,
- -1.6,
- -2.39,
- -1.9,
- -0.12,
- 0.09,
- 1.09,
- 3.61,
- 2.88,
- 2.04,
- 2.87,
- 3.22,
- 1.53,
- 0.66,
- -0.42,
- 2.33,
- 2.98,
- 5.2,
- 1.18,
- 0.47,
- 0.46,
- 0.72,
- 1.55,
- -1.41,
- -0.19,
- -0.14,
- -0.3,
- 1.43,
- 2.44,
- 1.44,
- 2.43,
- 2.05,
- 2.56,
- 0.31,
- 0.14,
- -2.64,
- -2.82,
- -0.31,
- 0.06,
- 1.37,
- 1.72,
- 0.78,
- -0.98,
- -4.92,
- -5.4,
- -5.19,
- -3.39,
- 1.75,
- 1.1,
- 1.43,
- 1.11,
- 0.66,
- 0.21,
- -0.39,
- -0.47,
- -0.66,
- -1.15,
- -1.64,
- -2.38,
- -3.34,
- -3.68,
- -4.14,
- -4.53,
- -4.9,
- -4.9,
- -4.79,
- -4.97,
- -4.98,
- -5.29,
- -5.55,
- -6.32,
- -6.3,
- -1.14,
- 3.88,
- 3.48,
- 4.63,
- 5.26,
- 5.57,
- 5.7,
- 5.25,
- 5.3,
- 5.06,
- 4.41,
- 3.77,
- 3.64,
- 3.64,
- 3.79,
- 3.57,
- 3.1,
- 2.73,
- 2.21,
- 1.74,
- 1.08,
- 0.14,
- 0.74,
- 1.32,
- 0.7,
- -0.09,
- -0.51,
- -0.82,
- -0.69,
- -0.83,
- -1.26,
- -1.67,
- -2.2,
- -2.7,
- -3.0,
- -3.21,
- -3.68,
- -4.17,
- -4.81,
- -4.82,
- -4.54,
- -4.74,
- -4.75,
- -3.91,
- -3.38,
- -3.11,
- -3.17,
- -2.32,
- -2.12,
- -1.96,
- -1.83,
- -1.53,
- 0.0,
- -0.41,
- 0.11,
- 0.34,
- 0.8,
- 0.94,
- 1.18,
- 1.47,
- 1.06,
- 0.86,
- 0.29,
- -0.33,
- -0.66,
- -0.92,
- -1.63,
- -2.13,
- -2.08,
- -1.76,
- -2.43,
- -2.93,
- -2.87,
- -2.63,
- -2.77,
- -3.3,
- -3.53,
- -3.57,
- -3.37,
- -3.15,
- -2.85,
- -2.85,
- -3.03,
- -3.7,
- -4.02,
- -4.62,
- -5.13,
- -5.55,
- -5.63,
- -5.7,
- -5.68,
- -5.51,
- -5.44,
- -5.69,
- -6.17,
- -6.52,
- -6.6,
- -6.7,
- -6.26,
- -6.38,
- -6.43,
- -6.42,
- -6.73,
- -5.88,
- -3.74,
- -3.25,
- -2.45,
- -1.01,
- -0.16,
- -0.83,
- 0.42,
- 2.74,
- 2.32,
- -0.39,
- -1.41,
- 1.18,
- 1.98,
- 6.57,
- 7.98,
- 6.64,
- 5.38,
- 4.81,
- 5.34,
- 7.78,
- 8.12,
- 7.04,
- 4.53,
- 2.94,
- 0.29,
- 1.63,
- 3.2,
- 2.05,
- 0.63,
- 0.55,
- 0.94,
- -0.91,
- -1.44,
- -1.47,
- -1.3,
- -1.23,
- -0.95,
- -0.77,
- -0.72,
- 0.25,
- 1.33,
- 2.25,
- 3.09,
- 3.05,
- 2.73,
- 2.94,
- 3.96,
- 3.49,
- 3.52,
- 4.15,
- 3.76,
- 3.1,
- 1.73,
- 0.65,
- 0.85,
- 4.17,
- 3.7,
- 2.42,
- 0.52,
- -0.41,
- -0.53,
- -1.43,
- -1.38,
- -1.93,
- -2.55,
- -3.09,
- -3.58,
- -3.92,
- -4.79,
- -5.51,
- -5.92,
- -6.34,
- -6.36,
- -5.31,
- -2.85,
- 0.78,
- 2.53,
- 3.87,
- 4.97,
- 4.6,
- 3.91,
- 3.1,
- 4.14,
- 2.09,
- 0.39,
- -0.99,
- -2.06,
- -3.03,
- -4.13,
- -5.3,
- -6.36,
- -6.99,
- -7.72,
- -7.98,
- -5.36,
- -4.09,
- -5.9,
- -6.25,
- -5.31,
- -3.56,
- -6.69,
- -4.5,
- -3.36,
- -2.26,
- 0.18,
- -0.71,
- -1.73,
- -1.42,
- -1.05,
- -2.19,
- -3.51,
- -3.62,
- 0.16,
- 3.68,
- 2.07,
- 1.11,
- -0.13,
- -2.43,
- -1.96,
- -0.63,
- -1.54,
- -0.33,
- 0.53,
- 1.27,
- 4.65,
- 2.7,
- 2.19,
- 2.2,
- 1.9,
- 1.9,
- 1.94,
- 0.17,
- 0.58,
- 0.02,
- -0.35,
- -0.48,
- -3.14,
- -4.77,
- -4.61,
- -4.38,
- -4.07,
- -3.83,
- -2.07,
- -2.2,
- -0.81,
- 0.16,
- -1.56,
- -5.35,
- -4.7,
- -2.41,
- 1.79,
- 3.23,
- 4.51,
- 4.71,
- 2.32,
- 1.66,
- -1.73,
- -5.08,
- -5.56,
- -4.19,
- -6.85,
- -7.81,
- -4.58,
- -3.09,
- -3.07,
- -4.8,
- -3.6,
- 1.14,
- 2.03,
- -1.21,
- 6.52,
- 4.54,
- 2.77,
- 0.78,
- -0.1,
- 0.48,
- 1.02,
- 0.97,
- 0.54,
- 0.27,
- -0.12,
- -0.14,
- 1.03,
- 1.18,
- -0.19,
- -1.44,
- -0.38,
- 0.15,
- -1.29,
- 0.3,
- 2.9,
- 3.12,
- 1.83,
- 0.33,
- 1.82,
- 1.49,
- 0.18,
- -0.71,
- 1.22,
- 3.99,
- 5.08,
- 4.28,
- 3.52,
- 1.19,
- -0.33,
- 1.3,
- 4.12,
- -0.07,
- -0.5,
- -0.21,
- 0.23,
- 1.74,
- 1.2,
- 0.49,
- 1.01,
- 1.56,
- 2.98,
- 2.96,
- 0.94,
- 2.25,
- 3.27,
- 2.99,
- 2.49,
- 1.4,
- -1.53,
- -1.57,
- -1.66,
- 0.51,
- 1.64,
- 1.23,
- 3.12,
- -1.56,
- -0.84,
- -0.47,
- -0.77,
- -0.88,
- -0.92,
- -1.35,
- -1.81,
- -1.71,
- -1.82,
- -2.56,
- -2.96,
- -4.09,
- -4.23,
- -4.22,
- -4.28,
- -4.24,
- -4.43,
- -4.51,
- -4.05,
- -3.7,
- -3.26,
- -3.2,
- -1.26,
- 2.04,
- 4.36,
- 3.3,
- 3.82,
- 4.63,
- 4.84,
- 5.0,
- 4.99,
- 4.74,
- 4.59,
- 3.85,
- 3.16,
- 3.14,
- 2.97,
- 3.0,
- 2.96,
- 2.7,
- 2.28,
- 1.79,
- 1.39,
- 1.03,
- 0.45,
- 0.79,
- 1.04,
- 0.22,
- -0.01,
- 0.33,
- -0.04,
- -0.29,
- -0.45,
- -1.07,
- -1.6,
- -1.96,
- -2.28,
- -2.72,
- -3.33,
- -3.85,
- -4.21,
- -4.62,
- -4.92,
- -4.77,
- -4.63,
- -4.67,
- -4.35,
- -4.01,
- -3.55,
- -2.81,
- -2.5,
- -1.97,
- -1.65,
- -1.77,
- -1.82,
- -1.87,
- -1.89,
- -1.11,
- -1.05,
- -1.5,
- 0.25,
- 0.83,
- 1.05,
- 0.87,
- 0.87,
- 0.29,
- -0.01,
- -0.34,
- -0.86,
- -1.25,
- -1.77,
- -2.44,
- -2.58,
- -1.97,
- -2.25,
- -2.39,
- -2.59,
- -2.86,
- -3.06,
- -3.11,
- -2.97,
- -2.71,
- -2.47,
- -2.33,
- -2.37,
- -2.57,
- -2.77,
- -2.9,
- -3.38,
- -3.82,
- -4.34,
- -4.62,
- -5.01,
- -5.27,
- -5.33,
- -5.31,
- -5.31,
- -5.37,
- -5.72,
- -6.0,
- -6.23,
- -6.29,
- -6.16,
- -5.71,
- -6.06,
- -6.67,
- -7.09,
- -7.52,
- -7.0,
- -4.38,
- -3.11,
- 0.31,
- -0.25,
- -0.8,
- -0.6,
- -0.04,
- 0.23,
- 0.91,
- 1.46,
- -0.91,
- 1.51,
- 5.72,
- 6.93,
- 4.88,
- 3.06,
- 2.57,
- 4.86,
- 8.8,
- 8.34,
- 6.04,
- 4.41,
- 2.62,
- 2.5,
- 1.93,
- 0.22,
- 1.14,
- -1.4,
- -1.44,
- -0.23,
- -0.61,
- -0.37,
- -1.19,
- -1.25,
- -1.0,
- -0.99,
- -0.85,
- 0.22,
- 0.45,
- 1.2,
- 1.29,
- 2.51,
- 3.07,
- 3.46,
- 3.83,
- 3.58,
- 3.16,
- 3.81,
- 5.15,
- 4.28,
- 2.69,
- 1.97,
- 1.91,
- 2.03,
- 4.6,
- 4.39,
- 2.27,
- 0.6,
- -0.57,
- -1.14,
- -1.31,
- -1.8,
- -2.48,
- -2.83,
- -3.35,
- -3.69,
- -3.96,
- -4.03,
- -4.53,
- -5.02,
- -4.58,
- -3.98,
- -2.7,
- -1.06,
- 0.54,
- 1.59,
- 3.05,
- 3.72,
- 3.05,
- 0.74,
- 3.06,
- 3.07,
- 0.94,
- -0.91,
- -2.27,
- -3.24,
- -3.83,
- -4.66,
- -5.74,
- -6.82,
- -7.6,
- -8.32,
- -8.85,
- -5.73,
- -6.86,
- -5.75,
- -4.05,
- -3.37,
- -3.24,
- -4.65,
- -4.68,
- -4.71,
- -2.36,
- -2.63,
- -0.73,
- -0.89,
- -1.0,
- -1.67,
- -2.84,
- -2.91,
- 3.46,
- 3.85,
- 1.03,
- 2.52,
- 2.37,
- 3.41,
- -1.14,
- -2.01,
- -0.5,
- -1.94,
- 0.29,
- 2.51,
- 2.73,
- 3.14,
- 2.42,
- 1.23,
- -0.86,
- 1.27,
- -0.45,
- -1.85,
- -0.64,
- -0.18,
- 0.9,
- 0.08,
- -3.08,
- -4.21,
- -4.51,
- -4.49,
- -5.33,
- -5.12,
- -2.63,
- -2.56,
- -3.54,
- -0.9,
- -0.64,
- -0.99,
- -2.23,
- -4.65,
- -0.22,
- 1.38,
- 3.41,
- 4.63,
- 3.23,
- 0.03,
- -0.91,
- -3.36,
- -5.52,
- -5.61,
- -5.05,
- -5.6,
- -5.47,
- 1.63,
- 2.32,
- -1.04,
- -1.16,
- 1.12,
- 1.42,
- 1.03,
- 2.41,
- 2.05,
- 2.61,
- 2.43,
- 1.7,
- 0.77,
- 0.5,
- 0.47,
- 0.1,
- -0.27,
- -0.33,
- 0.15,
- 1.31,
- 4.99,
- 2.66,
- -1.53,
- -1.67,
- 0.14,
- 1.36,
- 0.2,
- 1.93,
- 2.08,
- 2.41,
- 1.21,
- 0.99,
- 2.84,
- 0.67,
- 0.76,
- 2.31,
- 4.86,
- 5.51,
- 5.16,
- 5.34,
- 5.19,
- 1.81,
- 1.43,
- 2.61,
- 5.37,
- 1.52,
- 1.46,
- 0.97,
- 2.21,
- 1.32,
- 1.65,
- 1.27,
- -0.63,
- 0.7,
- 2.64,
- 3.77,
- 2.21,
- 2.7,
- 1.73,
- 1.78,
- 3.74,
- 3.85,
- 3.35,
- 2.98,
- 3.28,
- 3.02,
- 1.32,
- 0.46,
- 0.06,
- -0.54,
- -1.2,
- -1.4,
- -1.98,
- -1.95,
- -1.94,
- -2.04,
- -2.33,
- -2.81,
- -2.94,
- -3.08,
- -3.47,
- -3.84,
- -4.38,
- -3.88,
- -3.0,
- -2.22,
- -1.67,
- -0.7,
- -0.08,
- 0.74,
- 0.89,
- 1.39,
- 3.46,
- 3.78,
- 3.46,
- 3.36,
- 3.61,
- 4.11,
- 4.38,
- 4.71,
- 4.27,
- 3.95,
- 3.68,
- 2.91,
- 2.58,
- 2.3,
- 2.32,
- 2.25,
- 2.05,
- 1.84,
- 1.45,
- 0.99,
- 0.46,
- 0.16,
- 0.21,
- 0.61,
- 0.16,
- 0.08,
- -0.1,
- 0.1,
- -0.58,
- -0.87,
- -1.03,
- -1.59,
- -2.22,
- -2.41,
- -2.73,
- -3.23,
- -3.78,
- -4.15,
- -4.49,
- -4.75,
- -4.68,
- -4.68,
- -4.9,
- -4.86,
- -4.91,
- -4.62,
- -3.43,
- -2.21,
- -1.62,
- -1.24,
- -1.09,
- -1.3,
- -1.48,
- -1.69,
- -0.96,
- 0.12,
- -1.53,
- -0.02,
- -0.47,
- -2.12,
- 2.05,
- 1.37,
- 0.6,
- -0.02,
- -0.52,
- -0.69,
- -1.15,
- -1.53,
- -2.01,
- -2.58,
- -2.84,
- -2.29,
- -1.95,
- -2.36,
- -2.57,
- -2.6,
- -2.92,
- -3.21,
- -3.55,
- -3.77,
- -3.81,
- -3.84,
- -3.62,
- -3.25,
- -2.63,
- -2.7,
- -3.03,
- -3.39,
- -3.8,
- -4.17,
- -4.52,
- -4.65,
- -4.94,
- -4.97,
- -5.01,
- -5.52,
- -5.88,
- -5.95,
- -6.13,
- -6.24,
- -6.27,
- -6.74,
- -7.25,
- -7.44,
- -7.27,
- -7.12,
- -6.13,
- -4.86,
- -3.1,
- 0.22,
- -0.67,
- -0.36,
- -0.08,
- 0.83,
- 1.36,
- 1.14,
- 1.69,
- 1.14,
- 0.41,
- 5.9,
- 6.55,
- 4.36,
- 2.41,
- 2.41,
- 4.73,
- 6.59,
- 5.53,
- 3.91,
- 1.27,
- 1.45,
- 3.94,
- 3.69,
- 2.88,
- 1.04,
- -0.98,
- -1.18,
- -2.04,
- -1.41,
- -0.58,
- -0.57,
- -0.28,
- -0.08,
- -1.49,
- -0.85,
- 0.43,
- 0.4,
- 0.05,
- 1.08,
- 2.57,
- 3.04,
- 3.05,
- 3.85,
- 5.37,
- 5.16,
- 4.87,
- 4.95,
- 4.52,
- 4.25,
- 4.17,
- 3.01,
- 2.36,
- 3.25,
- 3.23,
- 1.71,
- 0.73,
- -0.59,
- -1.57,
- -2.23,
- -2.36,
- -3.01,
- -3.61,
- -3.71,
- -4.04,
- -4.09,
- -3.9,
- -3.95,
- -3.87,
- -3.36,
- -2.88,
- -1.97,
- -0.81,
- 0.32,
- 1.5,
- 2.37,
- 2.27,
- 0.22,
- 2.04,
- 4.27,
- 2.08,
- 0.16,
- -1.58,
- -2.86,
- -3.66,
- -4.3,
- -5.25,
- -6.37,
- -7.31,
- -8.1,
- -8.77,
- -8.53,
- -6.83,
- -6.3,
- -6.61,
- -4.83,
- -3.68,
- -5.39,
- -5.02,
- -4.73,
- -2.94,
- -3.15,
- -0.69,
- -1.27,
- -2.54,
- -1.31,
- -3.11,
- -3.68,
- 1.52,
- 0.01,
- 2.36,
- 2.01,
- 1.34,
- 2.46,
- 3.81,
- 1.8,
- 1.55,
- 2.81,
- 2.18,
- 3.48,
- 3.02,
- 3.55,
- 3.04,
- 3.37,
- 2.89,
- -1.1,
- -2.58,
- -3.0,
- -3.95,
- -0.58,
- 0.9,
- -0.08,
- -1.1,
- -3.23,
- -4.06,
- -4.8,
- -5.6,
- -6.2,
- -6.66,
- -4.61,
- -4.14,
- -3.39,
- -2.61,
- -1.82,
- -0.43,
- -1.49,
- -4.22,
- 0.56,
- 5.43,
- 0.44,
- 2.17,
- 0.61,
- 2.3,
- -1.15,
- -4.05,
- -5.97,
- -6.22,
- -6.25,
- -3.82,
- 1.83,
- 1.51,
- -1.95,
- -0.83,
- 1.05,
- 1.86,
- 2.46,
- 2.48,
- 2.96,
- 3.07,
- 2.69,
- 1.95,
- 1.78,
- 1.15,
- 0.31,
- 0.17,
- 0.25,
- 0.11,
- 0.0,
- -0.54,
- -0.58,
- 2.65,
- 0.18,
- -1.24,
- -2.14,
- -1.53,
- -1.51,
- -0.55,
- 0.22,
- 1.35,
- 1.28,
- 0.74,
- 0.45,
- -0.5,
- 0.93,
- 4.66,
- 6.69,
- 4.4,
- 4.01,
- 3.39,
- 4.14,
- 3.42,
- 2.62,
- 1.27,
- 2.25,
- 4.52,
- 2.12,
- 1.22,
- 1.26,
- 1.43,
- 0.61,
- 0.4,
- 0.34,
- 0.92,
- 1.6,
- 5.47,
- 1.89,
- 3.64,
- 0.28,
- -3.19,
- 6.5,
- 5.57,
- 3.76,
- 2.86,
- 3.64,
- 2.52,
- 0.91,
- -0.39,
- -0.65,
- -0.57,
- -1.09,
- -1.87,
- -2.45,
- -2.59,
- -2.73,
- -2.79,
- -2.93,
- -3.18,
- -2.94,
- -2.47,
- -2.12,
- -2.66,
- -1.59,
- 0.07,
- 0.42,
- 0.57,
- 0.71,
- 3.04,
- 3.17,
- 3.4,
- 3.0,
- 2.39,
- 2.29,
- 2.37,
- 3.29,
- 3.0,
- 2.72,
- 3.24,
- 4.12,
- 4.39,
- 3.79,
- 3.41,
- 3.37,
- 3.06,
- 2.09,
- 1.69,
- 1.65,
- 1.55,
- 1.29,
- 1.0,
- 0.78,
- 0.21,
- -0.11,
- 0.33,
- 0.18,
- 0.12,
- -0.36,
- -0.28,
- -0.06,
- -0.24,
- -0.34,
- -0.6,
- -0.71,
- -1.6,
- -2.42,
- -2.8,
- -2.86,
- -2.98,
- -3.35,
- -3.83,
- -4.33,
- -4.58,
- -4.66,
- -4.91,
- -5.01,
- -4.93,
- -4.89,
- -4.56,
- -4.15,
- -2.23,
- -1.93,
- -1.15,
- -0.94,
- -1.05,
- -1.39,
- -1.57,
- -1.37,
- -1.04,
- -1.35,
- -0.18,
- -0.31,
- -1.23,
- -1.65,
- -2.25,
- 3.41,
- 0.52,
- -0.1,
- -0.62,
- -1.2,
- -1.61,
- -2.24,
- -2.94,
- -3.03,
- -2.77,
- -2.61,
- -2.45,
- -2.43,
- -2.34,
- -2.45,
- -2.62,
- -3.08,
- -3.57,
- -3.71,
- -3.48,
- -3.37,
- -2.86,
- -3.13,
- -3.35,
- -3.46,
- -3.11,
- -3.52,
- -3.72,
- -4.3,
- -4.64,
- -4.93,
- -4.76,
- -4.92,
- -5.08,
- -5.55,
- -6.03,
- -5.94,
- -5.91,
- -5.85,
- -6.19,
- -6.55,
- -6.91,
- -6.81,
- -6.19,
- -5.73,
- -5.15,
- -3.86,
- -2.7,
- -1.75,
- -3.79,
- -0.2,
- -0.24,
- 1.12,
- 1.42,
- 2.33,
- 2.76,
- 1.81,
- 3.35,
- 1.12,
- 6.69,
- 6.08,
- 4.08,
- 2.92,
- 6.08,
- 5.77,
- 2.89,
- 2.01,
- 0.62,
- 3.43,
- 3.28,
- 3.21,
- 2.44,
- 1.98,
- 0.71,
- -1.39,
- -2.68,
- -2.25,
- -2.28,
- -0.42,
- -1.38,
- -1.69,
- -4.55,
- -0.29,
- 2.38,
- 1.41,
- 0.21,
- 2.11,
- 3.64,
- 4.32,
- 2.79,
- 3.83,
- 4.43,
- 5.1,
- 4.82,
- 4.06,
- 4.31,
- 3.95,
- 3.36,
- 2.72,
- 1.54,
- 1.14,
- 1.83,
- 1.08,
- -0.39,
- -1.49,
- -2.33,
- -2.43,
- -3.29,
- -3.41,
- -3.65,
- -3.89,
- -4.04,
- -4.21,
- -4.21,
- -4.0,
- -3.67,
- -3.03,
- -2.38,
- -1.58,
- -0.48,
- 0.19,
- 0.63,
- 0.76,
- -0.22,
- 1.45,
- 3.08,
- 2.08,
- 0.77,
- -0.92,
- -2.29,
- -3.31,
- -4.29,
- -5.12,
- -5.92,
- -6.64,
- -7.43,
- -8.27,
- -8.52,
- -8.62,
- -4.72,
- -4.85,
- -5.61,
- -3.56,
- -4.47,
- -4.35,
- -5.41,
- -2.48,
- -0.02,
- -0.05,
- -2.56,
- -4.14,
- -2.89,
- -4.02,
- -2.72,
- -1.2,
- 1.09,
- 1.59,
- 1.59,
- 1.66,
- 2.2,
- 4.39,
- 2.99,
- 1.33,
- 1.33,
- 1.8,
- 2.68,
- 2.56,
- 2.88,
- 3.14,
- 2.92,
- 1.85,
- 0.64,
- 0.41,
- -0.46,
- -4.34,
- -2.52,
- -0.46,
- -0.91,
- -0.38,
- -1.69,
- -3.17,
- -4.23,
- -5.35,
- -5.6,
- -6.18,
- -5.24,
- -5.12,
- -5.1,
- -4.12,
- -2.31,
- -2.11,
- -0.1,
- -1.64,
- -3.4,
- 0.3,
- 2.48,
- 2.21,
- 0.84,
- 2.03,
- 3.01,
- 0.3,
- -4.8,
- -6.82,
- -3.92,
- 0.76,
- 2.54,
- 2.22,
- -1.85,
- -2.22,
- 0.3,
- 0.64,
- 3.91,
- 5.32,
- 5.04,
- 4.41,
- 3.47,
- 2.27,
- 1.69,
- 1.57,
- 1.22,
- 0.71,
- 0.38,
- 0.2,
- 0.11,
- -0.62,
- -1.41,
- -0.05,
- 0.87,
- -0.15,
- -0.88,
- -1.92,
- -2.16,
- -1.34,
- -0.07,
- 1.93,
- 4.24,
- 0.82,
- -0.48,
- -2.37,
- -2.04,
- 3.32,
- 2.91,
- 5.33,
- 5.85,
- 5.08,
- 3.41,
- 2.45,
- 1.63,
- 1.0,
- 1.45,
- 1.71,
- 3.55,
- 0.92,
- 1.06,
- 1.78,
- 2.27,
- 0.91,
- 1.3,
- 0.57,
- 0.98,
- 2.08,
- 2.85,
- 3.43,
- 5.31,
- 1.61,
- 1.7,
- 5.67,
- 4.56,
- 3.83,
- 3.63,
- 3.42,
- 1.08,
- -0.61,
- -1.18,
- 0.32,
- -0.95,
- -1.2,
- -0.02,
- -0.53,
- -1.39,
- -0.91,
- -1.53,
- -1.82,
- -1.43,
- -1.08,
- -0.92,
- -0.15,
- 2.89,
- 2.13,
- 1.65,
- 1.02,
- 2.24,
- 3.44,
- 4.15,
- 3.36,
- 2.72,
- 2.35,
- 2.1,
- 2.06,
- 2.31,
- 2.16,
- 1.99,
- 2.38,
- 3.21,
- 3.76,
- 3.42,
- 2.92,
- 2.82,
- 2.95,
- 2.34,
- 1.65,
- 1.53,
- 1.16,
- 0.31,
- -0.18,
- -0.4,
- -0.7,
- -0.67,
- 0.08,
- 0.24,
- -0.05,
- -0.63,
- -0.81,
- -0.66,
- -0.5,
- -0.24,
- -0.44,
- -0.76,
- -1.35,
- -2.18,
- -2.8,
- -2.92,
- -3.05,
- -3.29,
- -3.58,
- -3.83,
- -4.04,
- -4.31,
- -4.49,
- -4.54,
- -4.51,
- -4.18,
- -4.21,
- -4.23,
- -3.06,
- -2.13,
- -2.25,
- -1.38,
- -1.31,
- -0.68,
- -0.92,
- -1.42,
- -1.35,
- -1.32,
- -1.28,
- -1.67,
- -0.68,
- 0.97,
- 2.29,
- 0.02,
- -4.79,
- -0.91,
- -0.51,
- -1.1,
- -1.35,
- -1.71,
- -2.22,
- -2.59,
- -2.75,
- -2.8,
- -2.69,
- -3.17,
- -3.38,
- -3.15,
- -2.95,
- -3.04,
- -3.13,
- -2.94,
- -2.46,
- -2.31,
- -2.25,
- -2.36,
- -2.45,
- -2.79,
- -3.39,
- -4.21,
- -4.59,
- -4.51,
- -5.08,
- -5.19,
- -5.3,
- -5.58,
- -5.56,
- -5.85,
- -5.57,
- -5.45,
- -5.92,
- -6.37,
- -6.57,
- -6.14,
- -5.61,
- -5.23,
- -5.02,
- -4.85,
- -4.38,
- -4.23,
- -3.88,
- -2.91,
- -2.92,
- -4.02,
- -5.22,
- -0.07,
- 0.9,
- 0.94,
- 0.4,
- -1.29,
- 1.69,
- 2.99,
- 0.58,
- 2.58,
- 4.19,
- 5.41,
- 3.65,
- 5.43,
- 2.14,
- 1.41,
- 0.74,
- 0.72,
- 3.81,
- 3.29,
- 2.64,
- 2.07,
- 1.36,
- 1.36,
- 0.91,
- 0.07,
- -0.48,
- 0.8,
- 1.6,
- -1.05,
- -4.84,
- -4.42,
- 0.75,
- -0.33,
- 1.42,
- 0.05,
- 1.95,
- -0.89,
- 0.44,
- 2.25,
- 3.09,
- 3.73,
- 4.07,
- 3.37,
- 3.85,
- 4.08,
- 3.46,
- 2.82,
- 2.06,
- 1.29,
- 0.78,
- 1.44,
- 0.83,
- -0.83,
- -1.29,
- -2.4,
- -3.29,
- -3.67,
- -4.27,
- -4.14,
- -3.96,
- -3.77,
- -3.52,
- -3.25,
- -3.06,
- -2.93,
- -2.64,
- -2.26,
- -1.9,
- -1.58,
- -1.24,
- -1.09,
- -0.76,
- 2.3,
- 2.2,
- 0.98,
- 0.38,
- -0.56,
- -1.88,
- -2.83,
- -3.68,
- -4.42,
- -5.15,
- -5.97,
- -6.5,
- -6.91,
- -6.99,
- -7.83,
- -7.67,
- -4.94,
- -4.2,
- -4.41,
- -3.75,
- -3.68,
- -5.1,
- -3.8,
- -0.56,
- 1.51,
- 0.77,
- -0.77,
- 2.08,
- 1.41,
- -1.78,
- -0.88,
- 1.21,
- 0.55,
- 1.17,
- 0.91,
- 1.38,
- 2.59,
- 2.25,
- 0.46,
- 1.36,
- 1.52,
- 0.7,
- -0.53,
- 2.17,
- 1.76,
- 1.67,
- 0.72,
- -0.34,
- -0.82,
- -0.69,
- -2.64,
- -2.58,
- -0.61,
- -0.79,
- -0.21,
- 0.49,
- -2.19,
- -3.66,
- -3.85,
- -5.55,
- -7.05,
- -6.21,
- -6.08,
- -4.74,
- -4.29,
- -2.98,
- -0.73,
- 0.69,
- -0.51,
- -1.51,
- -1.91,
- 0.01,
- 2.28,
- 2.55,
- 2.41,
- 2.06,
- 2.43,
- 0.85,
- -3.59,
- -5.45,
- 1.28,
- 3.29,
- 0.99,
- -1.2,
- -0.79,
- -0.2,
- 0.94,
- -1.74,
- 6.65,
- 5.0,
- 3.77,
- 3.16,
- 2.52,
- 2.03,
- 1.83,
- 1.4,
- 0.89,
- 0.4,
- 0.13,
- -0.36,
- -1.16,
- -2.1,
- -1.75,
- -0.76,
- -0.13,
- -0.38,
- -1.43,
- -2.21,
- -0.9,
- -0.26,
- 1.21,
- 2.75,
- 2.66,
- 0.12,
- -2.34,
- 0.64,
- 3.81,
- 1.11,
- 3.23,
- 3.95,
- 3.88,
- 3.56,
- 3.22,
- 1.78,
- 0.27,
- -0.76,
- -1.97,
- 1.31,
- 5.16,
- 2.58,
- 1.25,
- 1.19,
- 3.5,
- 1.8,
- 1.48,
- -0.35,
- -0.34,
- 0.42,
- 0.49,
- 2.93,
- 4.06,
- 3.45,
- 3.08,
- 4.78,
- 4.31,
- 2.75,
- 3.1,
- 3.36,
- 1.38,
- -1.89,
- -2.05,
- 3.58,
- 0.92,
- -0.54,
- 0.32,
- 2.62,
- 3.96,
- 3.5,
- 3.35,
- 3.41,
- 2.92,
- 3.01,
- 3.28,
- 3.82,
- 3.95,
- 2.67,
- 1.79,
- 2.75,
- 2.72,
- 2.37,
- 1.86,
- 1.7,
- 1.58,
- 1.62,
- 1.73,
- 1.31,
- 0.57,
- 0.52,
- 1.04,
- 1.77,
- 2.86,
- 3.09,
- 2.88,
- 2.34,
- 2.25,
- 2.3,
- 1.55,
- 1.18,
- 0.58,
- -0.33,
- -1.04,
- -1.2,
- -1.11,
- -0.43,
- -0.26,
- 0.08,
- -0.2,
- -0.49,
- -0.84,
- -0.73,
- -0.65,
- -0.48,
- -0.4,
- -0.73,
- -1.16,
- -1.89,
- -2.58,
- -2.83,
- -2.96,
- -3.08,
- -3.18,
- -3.33,
- -3.56,
- -3.87,
- -4.19,
- -4.38,
- -4.47,
- -4.4,
- -4.48,
- -3.96,
- -3.71,
- -3.52,
- -3.14,
- -2.48,
- -1.29,
- -0.28,
- 0.31,
- -0.18,
- -0.98,
- -1.48,
- -1.35,
- -1.98,
- -2.06,
- -1.28,
- -0.05,
- -0.74,
- -1.86,
- -3.18,
- -1.8,
- -1.23,
- -1.75,
- -2.09,
- -2.54,
- -2.66,
- -2.58,
- -2.69,
- -2.91,
- -3.27,
- -3.36,
- -2.52,
- -1.64,
- -2.32,
- -2.4,
- -2.46,
- -2.24,
- -2.35,
- -2.59,
- -2.84,
- -3.0,
- -2.74,
- -3.32,
- -3.79,
- -4.11,
- -4.46,
- -5.11,
- -5.52,
- -5.25,
- -4.74,
- -5.33,
- -5.79,
- -5.91,
- -6.11,
- -6.33,
- -6.39,
- -6.0,
- -5.93,
- -5.47,
- -4.92,
- -4.8,
- -4.74,
- -4.82,
- -4.66,
- -4.27,
- -3.51,
- -2.91,
- -3.17,
- -4.14,
- -4.72,
- -4.35,
- -0.68,
- -0.11,
- 2.0,
- 0.41,
- 2.01,
- 2.09,
- 1.41,
- -0.57,
- 3.15,
- 1.44,
- -0.96,
- 1.66,
- 1.39,
- 1.43,
- 0.64,
- 3.67,
- 4.28,
- 4.4,
- 3.33,
- 2.27,
- 1.6,
- 0.93,
- -0.07,
- -0.26,
- 1.54,
- -1.05,
- -1.42,
- -3.42,
- -3.95,
- -0.74,
- 1.0,
- 0.25,
- -1.51,
- -0.99,
- 1.05,
- 2.23,
- -0.26,
- 0.18,
- 3.09,
- 4.15,
- 4.07,
- 4.64,
- 3.78,
- 3.25,
- 3.09,
- 2.16,
- 1.52,
- 1.43,
- 1.34,
- 0.85,
- 0.6,
- -0.54,
- -1.87,
- -2.51,
- -3.27,
- -3.68,
- -4.04,
- -3.98,
- -4.13,
- -3.92,
- -3.57,
- -3.36,
- -3.18,
- -2.94,
- -2.77,
- -2.54,
- -2.38,
- -2.27,
- -1.27,
- 0.4,
- 1.49,
- 1.14,
- 0.28,
- -0.04,
- -0.79,
- -1.8,
- -2.68,
- -3.26,
- -3.8,
- -4.53,
- -5.18,
- -5.59,
- -5.75,
- -5.76,
- -7.16,
- -7.77,
- -7.43,
- -6.0,
- -3.35,
- -3.37,
- -4.55,
- -4.61,
- -6.33,
- -1.86,
- 2.0,
- -0.56,
- -1.3,
- 0.35,
- 1.74,
- -1.8,
- -3.51,
- -1.1,
- 2.45,
- -1.19,
- 2.05,
- -0.24,
- -0.06,
- -0.24,
- -1.73,
- -1.49,
- 2.3,
- -0.03,
- -2.41,
- -1.09,
- 1.39,
- -0.11,
- -1.02,
- -2.1,
- -1.45,
- -1.14,
- -1.01,
- -2.27,
- -1.25,
- -1.24,
- -0.93,
- -2.53,
- -3.03,
- -3.81,
- -3.26,
- -3.31,
- -3.44,
- -5.35,
- -5.8,
- -6.48,
- -5.87,
- -4.75,
- -2.64,
- -0.37,
- 0.93,
- -0.71,
- -3.23,
- -0.77,
- -3.06,
- 0.05,
- 2.84,
- 4.78,
- -1.75,
- 0.67,
- 3.12,
- -0.99,
- -3.97,
- -1.06,
- 3.14,
- 3.19,
- 2.92,
- 3.36,
- 1.26,
- 2.82,
- 3.36,
- 3.78,
- 3.35,
- 2.67,
- 2.2,
- 1.76,
- 1.63,
- 1.28,
- 0.58,
- -0.03,
- -0.21,
- -0.88,
- -1.63,
- -2.15,
- -2.29,
- -1.17,
- -0.56,
- -0.46,
- 0.24,
- -0.16,
- -1.73,
- -0.51,
- -0.04,
- 2.03,
- 2.66,
- 2.89,
- 1.63,
- 1.25,
- 2.5,
- 1.78,
- 2.79,
- 2.93,
- 2.79,
- 2.52,
- 2.19,
- 1.63,
- 0.76,
- -0.57,
- -1.18,
- -0.99,
- 0.28,
- 3.49,
- 6.48,
- 1.54,
- 1.04,
- 3.21,
- 3.04,
- 2.19,
- 2.71,
- 1.11,
- -0.31,
- 0.28,
- 0.31,
- 4.07,
- 4.38,
- 4.75,
- 3.68,
- 2.67,
- 2.09,
- 1.75,
- 2.04,
- 1.69,
- -0.03,
- 0.99,
- 2.85,
- 0.79,
- 0.26,
- 0.74,
- 3.12,
- 4.71,
- 4.89,
- 4.36,
- 3.92,
- 3.37,
- 3.54,
- 3.66,
- 3.15,
- 2.94,
- 2.28,
- 2.51,
- 1.9,
- 1.23,
- 0.5,
- 0.37,
- 0.44,
- 0.6,
- 1.0,
- 0.29,
- -0.3,
- -0.42,
- 0.02,
- 0.52,
- 1.58,
- 2.35,
- 2.15,
- 1.98,
- 1.63,
- 1.52,
- 1.24,
- 0.8,
- 0.22,
- -0.57,
- -1.45,
- -1.67,
- -1.23,
- -0.69,
- -0.27,
- 0.04,
- -0.17,
- -0.44,
- -0.79,
- -0.98,
- -0.9,
- -0.98,
- -0.82,
- -0.99,
- -1.37,
- -1.74,
- -2.45,
- -2.9,
- -3.29,
- -3.46,
- -3.45,
- -3.53,
- -3.63,
- -3.94,
- -3.97,
- -4.12,
- -4.28,
- -4.64,
- -4.81,
- -4.69,
- -3.72,
- -3.3,
- -3.81,
- -3.74,
- -2.83,
- -1.65,
- -0.13,
- 0.1,
- -0.32,
- -1.16,
- -1.69,
- -2.09,
- -2.12,
- -1.65,
- -1.51,
- -2.04,
- -2.36,
- -2.47,
- -2.42,
- -2.23,
- -2.44,
- -2.91,
- -3.26,
- -3.43,
- -3.45,
- -3.78,
- -3.75,
- -3.23,
- -2.7,
- -2.28,
- -2.0,
- -1.89,
- -1.87,
- -2.03,
- -2.13,
- -2.24,
- -2.46,
- -2.69,
- -2.8,
- -3.34,
- -3.78,
- -3.96,
- -4.44,
- -5.29,
- -5.15,
- -4.9,
- -5.05,
- -4.91,
- -4.71,
- -4.88,
- -5.7,
- -6.14,
- -6.46,
- -6.14,
- -5.96,
- -6.0,
- -5.83,
- -5.13,
- -4.77,
- -4.57,
- -4.73,
- -4.54,
- -4.36,
- -3.71,
- -3.01,
- -2.79,
- -2.96,
- -3.61,
- -4.26,
- -4.5,
- -3.17,
- -2.56,
- -2.77,
- -0.33,
- -0.39,
- -0.2,
- 1.12,
- 1.57,
- 7.78,
- 3.59,
- 1.93,
- 1.25,
- 1.06,
- -0.05,
- 0.93,
- 1.82,
- 3.1,
- 5.27,
- 4.81,
- 2.76,
- 1.72,
- 1.08,
- 0.57,
- 0.45,
- 0.8,
- -0.32,
- -1.57,
- -1.82,
- -1.12,
- -0.34,
- -0.23,
- 0.08,
- 0.51,
- 1.21,
- 2.17,
- 2.12,
- 2.48,
- 2.49,
- 3.71,
- 3.21,
- 3.64,
- 4.12,
- 3.16,
- 2.65,
- 1.87,
- 1.6,
- 1.25,
- 0.79,
- 0.44,
- 0.58,
- 0.3,
- -0.71,
- -2.32,
- -2.9,
- -3.12,
- -3.27,
- -3.43,
- -3.72,
- -3.8,
- -3.54,
- -3.28,
- -3.25,
- -3.26,
- -3.04,
- -2.79,
- -2.55,
- -1.93,
- -0.28,
- 0.15,
- 0.21,
- -0.26,
- -0.38,
- -0.46,
- -0.91,
- -1.69,
- -2.44,
- -3.08,
- -4.55,
- -4.27,
- -4.35,
- -5.12,
- -5.28,
- -5.74,
- -6.95,
- -7.11,
- -7.85,
- -7.6,
- -5.4,
- -3.72,
- -3.81,
- -4.72,
- -3.71,
- -3.77,
- 1.65,
- 2.91,
- 1.68,
- 1.95,
- 2.07,
- -0.93,
- 1.91,
- -1.04,
- -0.31,
- 0.45,
- 1.3,
- 1.8,
- -0.3,
- -1.73,
- -0.56,
- 0.08,
- 1.69,
- 0.63,
- 0.0,
- -2.05,
- 0.48,
- -0.22,
- -1.78,
- -2.55,
- -1.82,
- -1.24,
- -1.83,
- -0.57,
- -0.88,
- -0.93,
- -0.91,
- -1.11,
- -0.89,
- -3.87,
- -3.31,
- -3.23,
- -3.3,
- -4.61,
- -6.49,
- -5.18,
- -5.98,
- -7.09,
- -6.16,
- -3.74,
- -1.91,
- -1.34,
- -0.83,
- -2.97,
- 0.29,
- -2.06,
- -0.15,
- 6.25,
- 7.02,
- 3.23,
- 0.04,
- -0.93,
- -2.02,
- 1.06,
- 1.1,
- 1.83,
- 0.57,
- 1.44,
- 0.87,
- 1.89,
- 1.8,
- 1.98,
- 2.17,
- 2.14,
- 1.72,
- 1.61,
- 1.47,
- 0.94,
- 0.34,
- -0.24,
- -0.85,
- -1.22,
- -1.55,
- -2.05,
- -2.24,
- -1.83,
- -0.68,
- -0.67,
- -0.12,
- 0.5,
- 0.18,
- -2.46,
- -2.73,
- 1.01,
- 2.15,
- 3.7,
- 3.41,
- 4.83,
- 3.47,
- 3.46,
- 4.13,
- 4.2,
- 3.76,
- 2.69,
- 1.41,
- 0.81,
- 0.92,
- 0.16,
- -0.77,
- -0.53,
- -0.1,
- 3.5,
- 6.66,
- 2.21,
- 0.69,
- -0.49,
- 2.36,
- 4.04,
- 0.79,
- 0.41,
- -0.21,
- 0.49,
- 0.14,
- 0.37,
- -0.5,
- 4.86,
- 4.45,
- 3.51,
- 2.82,
- 1.86,
- 1.53,
- 1.7,
- 1.66,
- 1.55,
- 1.86,
- 2.93,
- 1.78,
- 1.01,
- 1.13,
- 2.83,
- 4.18,
- 4.72,
- 4.2,
- 3.98,
- 3.51,
- 3.21,
- 3.12,
- 2.73,
- 2.28,
- 2.36,
- 1.06,
- 0.56,
- 0.01,
- -0.12,
- 0.01,
- 0.15,
- 0.15,
- -0.63,
- -1.18,
- -0.9,
- -0.23,
- -0.39,
- 0.54,
- 0.89,
- 1.44,
- 1.61,
- 1.31,
- 1.2,
- 1.05,
- 0.79,
- 0.16,
- -0.56,
- -1.28,
- -2.19,
- -2.23,
- -0.99,
- 0.0,
- 0.09,
- -0.08,
- -0.08,
- -0.61,
- -1.06,
- -1.19,
- -1.03,
- -0.88,
- -1.03,
- -1.22,
- -1.65,
- -2.32,
- -2.9,
- -3.35,
- -3.62,
- -3.69,
- -3.64,
- -3.54,
- -3.51,
- -3.55,
- -3.95,
- -4.35,
- -4.7,
- -4.58,
- -5.22,
- -4.88,
- -3.66,
- -4.0,
- -3.43,
- -3.32,
- -2.28,
- -1.43,
- -0.48,
- 0.32,
- -0.52,
- -1.43,
- -1.6,
- -1.85,
- -1.96,
- -2.01,
- -2.21,
- -2.53,
- -2.78,
- -2.92,
- -2.71,
- -2.63,
- -3.46,
- -3.58,
- -3.67,
- -3.49,
- -3.43,
- -3.11,
- -2.63,
- -2.58,
- -2.39,
- -2.24,
- -2.24,
- -2.03,
- -2.03,
- -1.86,
- -1.87,
- -2.05,
- -2.34,
- -2.59,
- -2.96,
- -3.12,
- -3.29,
- -2.95,
- -4.18,
- -4.6,
- -3.15,
- -4.09,
- -4.31,
- -4.26,
- -4.64,
- -5.62,
- -5.4,
- -5.23,
- -5.37,
- -5.44,
- -5.55,
- -4.87,
- -5.19,
- -4.37,
- -4.19,
- -4.26,
- -4.41,
- -4.33,
- -3.76,
- -3.19,
- -2.8,
- -2.81,
- -2.91,
- -3.55,
- -4.12,
- -3.66,
- -2.97,
- -2.84,
- -3.24,
- -2.43,
- -1.74,
- -1.81,
- -0.9,
- -0.01,
- 6.31,
- 0.71,
- 1.64,
- -0.01,
- -1.05,
- 1.29,
- -1.02,
- -0.29,
- 0.79,
- 2.73,
- 5.53,
- 3.37,
- 1.5,
- 0.7,
- 0.41,
- 0.41,
- -0.13,
- -0.71,
- -1.3,
- -1.56,
- -1.43,
- -1.66,
- -1.11,
- -0.6,
- 0.15,
- 0.83,
- 2.18,
- 3.31,
- 3.58,
- 4.2,
- 4.5,
- 3.52,
- 3.87,
- 2.63,
- 2.69,
- 1.83,
- 1.33,
- 0.8,
- 0.46,
- -0.03,
- -0.2,
- -0.3,
- -0.45,
- -1.03,
- -1.99,
- -2.67,
- -3.14,
- -3.3,
- -3.29,
- -3.46,
- -3.5,
- -3.33,
- -3.18,
- -3.22,
- -2.82,
- -2.65,
- -1.39,
- -1.09,
- -1.2,
- -0.87,
- -0.77,
- -0.76,
- -0.6,
- -0.67,
- -0.93,
- -1.36,
- -2.02,
- -2.51,
- -2.56,
- -1.64,
- -3.13,
- -4.83,
- -4.78,
- -5.72,
- -6.65,
- -7.19,
- -7.57,
- -7.64,
- -6.95,
- -3.5,
- -3.73,
- -3.97,
- -4.25,
- -3.01,
- -1.99,
- 0.94,
- 2.52,
- 3.47,
- 1.9,
- 2.1,
- 3.01,
- 2.27,
- 1.11,
- 3.04,
- 2.05,
- 1.97,
- 1.35,
- -0.82,
- -1.18,
- 1.49,
- 2.32,
- 1.38,
- 0.54,
- -0.59,
- -0.58,
- 0.15,
- -0.84,
- -2.13,
- -1.6,
- -2.38,
- -2.39,
- -1.94,
- -2.22,
- -1.58,
- -1.7,
- -2.04,
- -0.99,
- -0.84,
- -1.36,
- -2.48,
- -3.15,
- -3.37,
- -8.61,
- -7.33,
- -7.06,
- -6.48,
- -7.53,
- -6.57,
- -3.73,
- -4.12,
- 2.29,
- 6.29,
- 3.96,
- 1.2,
- 1.23,
- 2.22,
- 3.22,
- 9.98,
- 7.11,
- 0.5,
- 0.11,
- -1.89,
- 1.84,
- 4.0,
- 3.81,
- 2.39,
- 1.7,
- 1.3,
- 1.17,
- 1.15,
- 1.36,
- 1.65,
- 1.17,
- 0.3,
- 0.29,
- 0.54,
- 0.42,
- 0.04,
- -0.55,
- -1.07,
- -1.3,
- -1.65,
- -1.62,
- -1.42,
- -0.99,
- -0.77,
- -1.04,
- -0.65,
- 0.56,
- 0.81,
- -1.48,
- -1.6,
- 0.0,
- 1.63,
- 3.19,
- 4.17,
- 7.29,
- 6.53,
- 5.68,
- 5.15,
- 4.24,
- 3.28,
- 1.81,
- 1.16,
- 1.27,
- 0.91,
- 0.16,
- -0.5,
- 0.03,
- 0.69,
- 0.46,
- 0.82,
- 1.09,
- 0.54,
- -0.03,
- 2.76,
- 3.98,
- -1.36,
- -2.24,
- -2.22,
- -1.55,
- 0.07,
- 0.55,
- 0.95,
- 4.62,
- 3.9,
- 3.21,
- 2.2,
- 1.51,
- 1.78,
- 2.4,
- 1.56,
- 0.91,
- 0.71,
- 4.87,
- 3.54,
- 1.4,
- -1.67,
- 0.98,
- 4.22,
- 4.01,
- 3.37,
- 3.07,
- 2.74,
- 2.71,
- 2.08,
- 1.93,
- 2.06,
- 0.92,
- 0.39,
- 0.03,
- -0.21,
- -0.22,
- -0.17,
- -0.31,
- -0.99,
- -1.75,
- -1.26,
- -0.53,
- -0.3,
- -0.51,
- 0.18,
- 0.79,
- 1.7,
- 0.86,
- 0.63,
- 0.61,
- 0.57,
- 0.26,
- -0.21,
- -0.7,
- -1.47,
- -2.08,
- -2.25,
- -1.53,
- -0.66,
- -0.16,
- -0.11,
- -0.65,
- -0.83,
- -1.16,
- -1.48,
- -1.66,
- -1.32,
- -1.05,
- -1.33,
- -1.76,
- -2.41,
- -3.17,
- -3.68,
- -4.06,
- -3.95,
- -4.0,
- -4.2,
- -4.24,
- -4.29,
- -4.35,
- -4.6,
- -5.29,
- -4.59,
- -4.99,
- -4.99,
- -3.12,
- -1.21,
- -2.33,
- -2.17,
- -2.19,
- -1.51,
- -1.27,
- -1.03,
- -0.77,
- -1.1,
- -1.54,
- -1.96,
- -2.24,
- -2.56,
- -2.91,
- -2.92,
- -2.91,
- -2.97,
- -2.73,
- -2.82,
- -3.34,
- -2.81,
- -2.8,
- -2.66,
- -2.45,
- -1.66,
- -1.93,
- -2.14,
- -1.97,
- -2.04,
- -1.86,
- -1.68,
- -1.62,
- -1.7,
- -1.79,
- -1.91,
- -2.22,
- -2.94,
- -3.78,
- -4.44,
- -4.6,
- -4.97,
- -4.97,
- -4.21,
- -3.68,
- -4.33,
- -4.25,
- -4.82,
- -5.34,
- -4.87,
- -4.99,
- -5.28,
- -4.96,
- -5.26,
- -4.78,
- -4.95,
- -4.52,
- -4.23,
- -4.17,
- -4.07,
- -4.0,
- -4.17,
- -3.81,
- -3.46,
- -3.22,
- -3.32,
- -3.48,
- -3.46,
- -3.26,
- -3.16,
- -2.71,
- -2.35,
- -2.39,
- -2.7,
- -2.37,
- -1.53,
- -0.56,
- 1.26,
- 3.0,
- 1.98,
- -1.86,
- 0.39,
- 0.86,
- 1.09,
- 0.26,
- 0.26,
- 1.52,
- 1.13,
- 0.02,
- 0.88,
- 1.03,
- 0.21,
- -0.53,
- -0.64,
- -1.07,
- -1.4,
- -1.57,
- -1.66,
- -1.96,
- -2.3,
- -1.67,
- -0.36,
- 0.43,
- 1.12,
- 2.26,
- 3.5,
- 4.36,
- 4.22,
- 4.11,
- 3.4,
- 3.1,
- 2.31,
- 1.94,
- 0.98,
- 0.33,
- -0.08,
- -0.59,
- -0.75,
- -0.93,
- -1.06,
- -1.35,
- -1.53,
- -1.66,
- -1.97,
- -2.29,
- -2.41,
- -2.38,
- -2.42,
- -2.38,
- -2.31,
- -2.31,
- -2.06,
- -1.8,
- -1.56,
- -1.39,
- -1.38,
- -1.28,
- -1.24,
- -0.9,
- -0.82,
- -1.1,
- -1.27,
- -1.52,
- -1.93,
- -2.2,
- -2.59,
- -3.24,
- -3.42,
- -4.98,
- -4.54,
- -5.41,
- -5.84,
- -6.37,
- -7.03,
- -7.49,
- -7.48,
- -4.17,
- -3.31,
- -2.91,
- -3.04,
- -3.54,
- -3.14,
- 0.09,
- 1.53,
- 1.65,
- 1.55,
- -1.49,
- 2.87,
- 2.78,
- 2.13,
- 2.55,
- 1.76,
- 1.43,
- 2.0,
- 0.97,
- 0.52,
- 0.58,
- 0.68,
- 2.16,
- 1.17,
- 2.5,
- -1.51,
- -1.53,
- -2.06,
- -2.37,
- -1.67,
- -2.49,
- -2.92,
- -2.67,
- -1.51,
- -0.7,
- -0.72,
- -0.83,
- -1.77,
- -1.71,
- -3.66,
- -3.82,
- -2.14,
- -4.57,
- -6.93,
- -8.49,
- -9.01,
- -7.23,
- -4.9,
- -5.23,
- -4.41,
- -2.08,
- -0.84,
- 5.47,
- 5.3,
- 2.34,
- 2.42,
- 2.17,
- 2.62,
- 4.09,
- 6.75,
- 10.33,
- 0.07,
- 1.3,
- 1.67,
- 1.48,
- 1.54,
- -0.16,
- 0.28,
- 1.06,
- 0.43,
- 0.4,
- 0.69,
- 1.27,
- 0.82,
- 0.32,
- -0.36,
- -0.69,
- -0.33,
- -0.21,
- -0.42,
- -0.74,
- -0.91,
- -1.12,
- -0.96,
- -0.7,
- -0.55,
- -0.85,
- -1.2,
- -1.31,
- -0.89,
- -0.76,
- -0.97,
- -0.42,
- -1.47,
- -0.58,
- -0.4,
- 1.43,
- 3.95,
- 6.98,
- 6.48,
- 5.83,
- 5.06,
- 3.66,
- 2.48,
- 1.93,
- 1.66,
- 1.64,
- 1.22,
- 0.65,
- 0.16,
- 0.29,
- 0.51,
- -0.38,
- -0.9,
- -0.34,
- 0.6,
- -0.31,
- 2.56,
- 3.16,
- 0.2,
- -1.3,
- -1.26,
- -0.68,
- 0.54,
- -0.03,
- 0.58,
- 1.62,
- 2.83,
- 2.35,
- 1.77,
- 2.31,
- 2.03,
- 1.98,
- 1.13,
- 0.2,
- 0.76,
- 2.63,
- 2.91,
- 1.41,
- -3.86,
- -0.86,
- 1.38,
- 3.59,
- 2.83,
- 2.44,
- 2.09,
- 1.54,
- 1.18,
- 1.4,
- 0.56,
- 0.25,
- 0.0,
- -0.19,
- -0.32,
- -0.6,
- -0.89,
- -1.16,
- -1.7,
- -1.88,
- -0.6,
- -0.22,
- -0.87,
- 0.13,
- 0.19,
- 1.5,
- 0.3,
- 0.0,
- 0.04,
- 0.14,
- -0.01,
- -0.34,
- -0.71,
- -0.97,
- -1.27,
- -1.61,
- -1.88,
- -1.65,
- -1.03,
- -0.76,
- -0.65,
- -0.75,
- -0.93,
- -1.53,
- -1.52,
- -0.96,
- -1.4,
- -1.07,
- -1.37,
- -1.77,
- -2.33,
- -2.98,
- -3.7,
- -3.81,
- -4.05,
- -3.73,
- -3.27,
- -3.43,
- -4.2,
- -4.21,
- -4.4,
- -3.31,
- -3.32,
- -4.05,
- -4.25,
- -3.74,
- -2.83,
- -2.26,
- -2.76,
- -2.21,
- -1.8,
- -1.24,
- -0.57,
- -0.97,
- -1.67,
- -1.74,
- -1.84,
- -2.3,
- -2.77,
- -3.27,
- -3.15,
- -3.16,
- -3.28,
- -3.3,
- -3.08,
- -3.16,
- -2.97,
- -2.5,
- -1.91,
- -1.71,
- -2.16,
- -2.55,
- -2.51,
- -2.21,
- -2.26,
- -2.03,
- -2.03,
- -1.86,
- -1.68,
- -1.71,
- -2.23,
- -3.28,
- -4.16,
- -4.7,
- -5.19,
- -6.16,
- -5.59,
- -4.81,
- -4.49,
- -4.88,
- -4.66,
- -4.63,
- -4.75,
- -4.77,
- -5.15,
- -5.43,
- -5.47,
- -5.13,
- -5.18,
- -4.92,
- -4.78,
- -4.96,
- -4.75,
- -4.37,
- -4.28,
- -4.14,
- -4.2,
- -4.38,
- -4.04,
- -3.87,
- -3.69,
- -3.34,
- -3.19,
- -3.18,
- -2.96,
- -2.92,
- -3.0,
- -3.12,
- -2.92,
- -2.05,
- -0.96,
- 0.11,
- 0.78,
- 1.25,
- 1.4,
- -0.24,
- -1.13,
- -1.06,
- -0.22,
- 0.15,
- -0.32,
- 1.43,
- 0.31,
- 0.64,
- -0.26,
- 0.01,
- -0.66,
- -1.02,
- -1.36,
- -1.41,
- -1.3,
- -1.9,
- -2.03,
- -2.31,
- -1.87,
- -0.66,
- -0.41,
- -0.05,
- 0.99,
- 2.2,
- 3.04,
- 3.53,
- 4.16,
- 3.75,
- 3.41,
- 2.24,
- 1.57,
- 0.95,
- 0.27,
- -0.04,
- -0.48,
- -0.81,
- -0.87,
- -1.17,
- -1.62,
- -2.04,
- -2.42,
- -2.63,
- -2.58,
- -2.5,
- -2.54,
- -2.59,
- -2.63,
- -2.75,
- -2.83,
- -2.6,
- -2.44,
- -2.08,
- -1.95,
- -1.65,
- -1.41,
- -1.2,
- -0.89,
- -0.86,
- -1.01,
- -1.61,
- -2.13,
- -2.59,
- -2.59,
- -2.72,
- -3.34,
- -3.81,
- -4.36,
- -1.76,
- -4.08,
- -5.39,
- -5.77,
- -6.09,
- -6.63,
- -7.23,
- -6.94,
- -5.85,
- -2.99,
- -2.38,
- -2.98,
- -0.85,
- -1.49,
- -0.51,
- -0.04,
- 1.96,
- 2.7,
- 2.32,
- 2.83,
- 2.3,
- 2.3,
- 2.81,
- 3.54,
- 2.41,
- 1.95,
- 1.21,
- 0.89,
- 0.74,
- 1.96,
- 1.84,
- 1.89,
- 2.39,
- 2.02,
- 3.09,
- 0.66,
- 1.8,
- 1.3,
- -1.46,
- -2.91,
- -3.3,
- -2.78,
- -1.88,
- -0.18,
- -0.2,
- -1.03,
- -2.01,
- -4.2,
- -2.99,
- -0.96,
- -5.78,
- -5.09,
- -3.83,
- -4.82,
- -5.44,
- -4.33,
- -4.07,
- -3.76,
- -2.12,
- 2.84,
- 4.71,
- 3.61,
- 0.97,
- 1.41,
- -0.38,
- 1.45,
- 1.55,
- 3.18,
- 7.08,
- 3.14,
- 0.42,
- -1.39,
- -2.18,
- -1.38,
- -1.17,
- 0.76,
- 1.53,
- 0.72,
- 0.79,
- 0.03,
- 0.94,
- 0.01,
- -0.61,
- -1.18,
- -1.07,
- -0.75,
- -0.75,
- -0.79,
- -0.59,
- -0.45,
- -0.51,
- -0.33,
- -0.28,
- -0.56,
- -0.9,
- -1.06,
- -0.94,
- -0.71,
- -0.7,
- -0.77,
- 0.12,
- -0.73,
- -0.1,
- 0.69,
- 1.13,
- 3.81,
- 5.02,
- 5.71,
- 5.54,
- 4.8,
- 3.95,
- 3.24,
- 2.52,
- 1.98,
- 1.92,
- 1.47,
- 0.63,
- 0.58,
- -0.01,
- 0.46,
- -1.84,
- -2.02,
- -1.26,
- -1.79,
- 0.66,
- 4.06,
- 3.34,
- 1.17,
- -1.32,
- 0.9,
- 1.32,
- 0.19,
- -0.23,
- -0.89,
- 0.42,
- 1.51,
- 0.64,
- 0.9,
- 1.68,
- 2.19,
- 1.57,
- 0.69,
- 0.14,
- 0.22,
- 1.48,
- 2.72,
- 0.05,
- 0.72,
- 1.32,
- -0.93,
- 2.08,
- 2.88,
- 1.93,
- 1.42,
- 1.22,
- 1.0,
- 0.25,
- 0.17,
- 0.1,
- -0.09,
- -0.42,
- -0.62,
- -0.64,
- -0.54,
- -1.04,
- -1.34,
- -0.96,
- -0.67,
- -0.87,
- 0.04,
- 0.56,
- 1.6,
- 0.39,
- 0.09,
- -0.2,
- -0.23,
- -0.36,
- -0.53,
- -0.85,
- -1.19,
- -1.63,
- -1.84,
- -1.65,
- -1.54,
- -1.42,
- -1.4,
- -1.42,
- -1.11,
- -1.19,
- -1.51,
- -1.72,
- -1.64,
- -1.97,
- -1.62,
- -1.85,
- -1.4,
- -1.78,
- -2.5,
- -3.12,
- -3.48,
- -3.99,
- -4.2,
- -4.2,
- -3.96,
- -4.05,
- -3.29,
- -3.94,
- -3.99,
- -3.43,
- -3.35,
- -3.66,
- -4.16,
- -3.98,
- -3.32,
- -3.08,
- -2.62,
- -2.04,
- -1.92,
- -1.45,
- -1.1,
- -0.97,
- -1.38,
- -1.95,
- -1.95,
- -2.18,
- -2.64,
- -3.12,
- -3.03,
- -2.82,
- -2.54,
- -2.88,
- -3.2,
- -3.38,
- -3.32,
- -3.17,
- -2.96,
- -2.99,
- -3.32,
- -3.01,
- -2.84,
- -2.68,
- -2.34,
- -2.08,
- -2.07,
- -1.56,
- -1.6,
- -1.83,
- -2.63,
- -4.02,
- -4.65,
- -4.61,
- -5.06,
- -5.8,
- -5.53,
- -5.05,
- -5.31,
- -4.97,
- -4.83,
- -4.3,
- -4.61,
- -4.75,
- -5.04,
- -5.02,
- -5.14,
- -5.25,
- -5.21,
- -5.14,
- -5.38,
- -5.2,
- -5.34,
- -5.25,
- -4.89,
- -4.82,
- -4.81,
- -4.83,
- -4.84,
- -4.41,
- -3.92,
- -3.53,
- -3.37,
- -3.42,
- -3.2,
- -3.97,
- -4.01,
- -3.78,
- -3.19,
- -2.18,
- -0.83,
- -0.1,
- 0.14,
- 0.93,
- 0.44,
- -0.07,
- 1.35,
- 1.67,
- 1.24,
- -0.77,
- -0.99,
- 0.27,
- 1.3,
- -0.43,
- -0.05,
- -0.82,
- -1.38,
- -1.39,
- -1.64,
- -1.81,
- -1.99,
- -2.16,
- -3.08,
- -3.17,
- -3.0,
- -2.49,
- -1.75,
- -0.57,
- 0.71,
- 2.26,
- 2.81,
- 2.39,
- 2.71,
- 2.62,
- 2.26,
- 2.12,
- 1.67,
- 0.62,
- 0.52,
- -0.21,
- -0.34,
- -0.66,
- -0.89,
- -1.42,
- -1.71,
- -1.81,
- -2.27,
- -2.87,
- -3.06,
- -3.12,
- -3.1,
- -3.11,
- -3.25,
- -3.22,
- -3.09,
- -2.98,
- -2.61,
- -2.12,
- -2.35,
- -2.24,
- -2.11,
- -1.82,
- -1.85,
- -2.05,
- -2.27,
- -2.5,
- -2.9,
- -3.14,
- -3.06,
- -3.3,
- -3.5,
- -3.71,
- -3.24,
- -3.2,
- -4.94,
- -5.67,
- -5.78,
- -5.97,
- -6.48,
- -6.85,
- -6.69,
- -7.06,
- -2.53,
- -0.69,
- 1.13,
- 1.54,
- -0.08,
- -0.04,
- 0.37,
- 0.85,
- 1.99,
- 2.26,
- 1.27,
- 1.57,
- 1.94,
- 2.33,
- 2.53,
- 2.45,
- 1.83,
- 1.48,
- 1.83,
- 1.58,
- 2.12,
- 1.97,
- 2.29,
- 2.05,
- 0.78,
- 0.94,
- 0.1,
- 1.95,
- 1.96,
- 0.35,
- 0.73,
- -2.05,
- -2.96,
- -2.69,
- -0.78,
- -0.67,
- -1.22,
- -0.38,
- 0.2,
- 1.59,
- -0.27,
- -5.05,
- -4.7,
- -3.59,
- -4.32,
- -4.01,
- -2.01,
- -1.39,
- -2.64,
- 0.67,
- 4.17,
- 3.82,
- 2.12,
- 0.01,
- -1.63,
- -0.77,
- 1.09,
- 0.54,
- 2.89,
- 1.62,
- 2.42,
- -0.38,
- -1.68,
- -1.82,
- -2.48,
- -1.31,
- -0.26,
- 0.4,
- 1.99,
- 0.8,
- 0.52,
- 0.31,
- -0.42,
- -0.85,
- -1.09,
- -0.98,
- -1.08,
- -1.37,
- -1.23,
- -0.65,
- -0.31,
- -0.24,
- -0.3,
- -0.32,
- -0.24,
- -0.56,
- -1.22,
- -1.59,
- -1.65,
- -1.82,
- -1.6,
- -0.67,
- -0.6,
- -1.25,
- 1.2,
- 2.07,
- 5.23,
- 5.02,
- 5.18,
- 4.33,
- 3.33,
- 2.81,
- 2.51,
- 2.09,
- 1.66,
- 1.42,
- 1.12,
- 0.65,
- -0.01,
- 0.07,
- 0.26,
- -2.34,
- -2.82,
- -2.26,
- -1.86,
- -0.45,
- 5.85,
- 4.76,
- 4.58,
- -0.18,
- 0.3,
- 1.34,
- 1.03,
- -0.74,
- 0.44,
- 0.19,
- -1.8,
- -1.31,
- 0.71,
- 1.67,
- 1.83,
- 1.39,
- 0.47,
- 0.0,
- 0.04,
- 0.54,
- 1.26,
- 2.74,
- -1.76,
- 4.55,
- 1.07,
- 0.91,
- 2.87,
- 1.64,
- 1.0,
- 0.47,
- 0.42,
- 0.37,
- 0.17,
- 0.0,
- -0.34,
- -0.61,
- -0.77,
- -0.96,
- -1.2,
- -1.39,
- -1.43,
- -1.24,
- -1.02,
- -1.25,
- -0.94,
- 0.26,
- 0.75,
- 0.44,
- 0.09,
- -0.29,
- -0.59,
- -0.86,
- -1.06,
- -1.26,
- -1.66,
- -2.23,
- -2.51,
- -2.39,
- -2.21,
- -2.0,
- -2.04,
- -2.23,
- -2.17,
- -2.18,
- -2.28,
- -1.94,
- -1.73,
- -1.88,
- -1.75,
- -1.82,
- -1.89,
- -2.07,
- -2.35,
- -2.62,
- -3.07,
- -3.57,
- -3.76,
- -4.06,
- -3.96,
- -3.17,
- -2.75,
- -3.17,
- -3.3,
- -3.27,
- -3.39,
- -3.62,
- -3.93,
- -4.22,
- -4.12,
- -3.75,
- -2.92,
- -2.46,
- -2.25,
- -2.14,
- -2.05,
- -1.61,
- -1.58,
- -1.81,
- -2.43,
- -2.84,
- -2.83,
- -2.72,
- -2.57,
- -2.52,
- -2.43,
- -2.48,
- -3.15,
- -3.71,
- -3.93,
- -4.02,
- -3.96,
- -3.79,
- -3.72,
- -3.67,
- -3.44,
- -2.75,
- -2.17,
- -2.38,
- -2.1,
- -2.26,
- -3.35,
- -3.75,
- -3.83,
- -4.44,
- -4.42,
- -4.47,
- -4.77,
- -4.95,
- -5.22,
- -4.78,
- -5.2,
- -5.11,
- -4.09,
- -4.58,
- -4.61,
- -4.72,
- -4.94,
- -5.45,
- -5.68,
- -5.95,
- -5.71,
- -5.85,
- -5.7,
- -5.79,
- -5.88,
- -5.89,
- -5.91,
- -5.64,
- -5.31,
- -5.2,
- -4.6,
- -4.0,
- -3.89,
- -3.86,
- -4.12,
- -3.91,
- -4.43,
- -4.65,
- -3.94,
- -3.85,
- -3.2,
- -1.53,
- -0.42,
- 0.4,
- 0.73,
- 0.2,
- -0.77,
- 0.07,
- 1.18,
- 2.01,
- 2.29,
- 2.27,
- 2.1,
- 0.77,
- 1.77,
- -0.76,
- 0.16,
- -0.78,
- -1.76,
- -2.28,
- -2.55,
- -2.67,
- -2.65,
- -2.98,
- -2.94,
- -3.6,
- -4.13,
- -3.44,
- -1.28,
- -1.34,
- 1.03,
- 2.05,
- 2.04,
- 2.26,
- 1.9,
- 2.0,
- 2.39,
- 1.85,
- 0.9,
- 0.52,
- 0.3,
- -0.12,
- -0.72,
- -0.61,
- -0.98,
- -1.17,
- -1.56,
- -2.15,
- -2.62,
- -3.05,
- -3.46,
- -3.56,
- -3.68,
- -3.77,
- -3.69,
- -3.61,
- -3.42,
- -3.28,
- -3.0,
- -3.07,
- -2.9,
- -2.56,
- -2.28,
- -2.23,
- -2.44,
- -2.61,
- -2.72,
- -3.25,
- -3.18,
- -3.44,
- -3.3,
- -3.51,
- -3.5,
- -3.19,
- -3.29,
- -4.32,
- -5.05,
- -5.44,
- -5.76,
- -6.06,
- -6.37,
- -6.56,
- -6.27,
- -6.89,
- -1.81,
- 0.53,
- 1.75,
- 0.75,
- 0.0,
- 1.46,
- 2.2,
- 1.5,
- 2.03,
- 1.9,
- 2.11,
- 2.01,
- 1.53,
- 1.87,
- 3.06,
- 2.82,
- 1.62,
- 1.81,
- 1.21,
- 2.17,
- 1.91,
- 2.88,
- 2.27,
- 2.65,
- 2.42,
- 1.6,
- -0.14,
- 2.1,
- 0.42,
- 0.04,
- -0.49,
- -2.35,
- -0.88,
- 1.63,
- 0.46,
- -0.91,
- 0.58,
- -0.42,
- 3.36,
- 3.34,
- -0.85,
- -3.1,
- -3.58,
- -3.55,
- -3.42,
- -2.31,
- -1.57,
- -1.47,
- -0.02,
- 0.35,
- 2.22,
- 1.61,
- -0.28,
- -2.34,
- -0.93,
- -0.13,
- -1.95,
- -0.32,
- -0.61,
- 0.32,
- -1.85,
- -1.12,
- -0.7,
- -2.28,
- -1.22,
- 1.09,
- -0.21,
- 0.17,
- 0.19,
- -0.47,
- -0.33,
- -0.62,
- -0.82,
- -1.14,
- -1.37,
- -1.46,
- -1.61,
- -1.64,
- -1.3,
- -0.95,
- -0.83,
- -1.06,
- -0.78,
- -0.34,
- -0.35,
- -0.97,
- -1.57,
- -1.9,
- -1.81,
- -1.86,
- -2.22,
- -2.04,
- 0.32,
- 0.05,
- 0.82,
- 2.03,
- 4.42,
- 5.21,
- 4.75,
- 3.91,
- 3.31,
- 2.7,
- 2.34,
- 2.2,
- 1.79,
- 1.35,
- 0.42,
- -0.56,
- -1.39,
- -0.98,
- -0.53,
- -2.99,
- -3.64,
- -3.33,
- -2.46,
- -0.38,
- 2.96,
- 3.27,
- 3.15,
- -0.39,
- -0.08,
- 1.43,
- 0.38,
- 0.83,
- 1.76,
- -0.91,
- -2.12,
- -0.81,
- 0.85,
- 1.07,
- 0.65,
- 0.24,
- -0.48,
- -1.23,
- -0.47,
- -3.93,
- -0.46,
- 0.61,
- -0.87,
- -0.37,
- 3.05,
- 1.79,
- 1.87,
- 0.89,
- 0.6,
- 0.24,
- -0.13,
- -0.34,
- -1.24,
- -0.95,
- -1.1,
- -1.19,
- -1.49,
- -1.92,
- -1.81,
- -1.46,
- -1.45,
- -1.27,
- -1.07,
- -1.3,
- -1.42,
- -0.28,
- 0.14,
- -0.31,
- -0.62,
- -0.9,
- -0.96,
- -1.37,
- -1.56,
- -1.68,
- -1.93,
- -2.26,
- -2.4,
- -2.67,
- -2.95,
- -2.98,
- -2.8,
- -2.58,
- -2.38,
- -2.24,
- -2.27,
- -2.13,
- -1.92,
- -2.07,
- -2.12,
- -2.33,
- -2.56,
- -2.73,
- -2.83,
- -2.88,
- -2.82,
- -3.26,
- -3.65,
- -3.9,
- -3.93,
- -3.23,
- -2.8,
- -2.71,
- -3.35,
- -3.92,
- -4.54,
- -4.85,
- -4.96,
- -4.89,
- -4.69,
- -4.32,
- -3.58,
- -2.97,
- -2.47,
- -1.97,
- -2.24,
- -2.71,
- -2.56,
- -2.43,
- -2.59,
- -2.9,
- -2.9,
- -3.06,
- -3.22,
- -3.14,
- -2.98,
- -2.97,
- -3.23,
- -3.79,
- -4.3,
- -4.31,
- -4.14,
- -3.93,
- -3.86,
- -3.79,
- -3.42,
- -2.62,
- -2.25,
- -2.25,
- -2.67,
- -3.43,
- -3.71,
- -3.97,
- -4.3,
- -4.57,
- -4.46,
- -4.6,
- -4.96,
- -5.31,
- -5.09,
- -5.21,
- -5.69,
- -5.34,
- -5.42,
- -5.32,
- -5.14,
- -5.33,
- -5.62,
- -6.03,
- -6.6,
- -6.69,
- -6.98,
- -6.96,
- -6.52,
- -5.84,
- -5.67,
- -5.97,
- -5.99,
- -5.78,
- -5.62,
- -5.04,
- -4.52,
- -4.23,
- -4.32,
- -4.81,
- -4.56,
- -4.69,
- -4.79,
- -4.61,
- -4.37,
- -3.35,
- -1.73,
- -0.13,
- 0.59,
- 0.71,
- 0.95,
- -0.33,
- -0.63,
- 0.14,
- 1.42,
- 2.18,
- 2.41,
- 2.22,
- 2.91,
- 1.67,
- 0.35,
- 2.64,
- 0.26,
- -0.35,
- -2.09,
- -2.55,
- -2.4,
- -2.8,
- -3.12,
- -3.54,
- -3.65,
- -4.95,
- 0.96,
- -0.89,
- -0.82,
- -0.63,
- 0.62,
- 0.67,
- 3.35,
- 1.88,
- 3.8,
- -0.22,
- 1.15,
- 1.42,
- 0.86,
- 0.62,
- -0.67,
- -0.63,
- -0.92,
- -1.91,
- -2.1,
- -2.56,
- -2.84,
- -2.98,
- -3.06,
- -2.98,
- -3.37,
- -3.91,
- -3.97,
- -4.01,
- -4.03,
- -3.75,
- -3.59,
- -3.55,
- -3.39,
- -3.23,
- -2.94,
- -2.85,
- -2.84,
- -2.73,
- -2.69,
- -2.96,
- -3.1,
- -3.42,
- -3.22,
- -3.3,
- -3.46,
- -3.49,
- -3.49,
- -3.6,
- -4.18,
- -4.54,
- -4.62,
- -4.96,
- -5.52,
- -6.12,
- -6.47,
- -6.33,
- -5.83,
- -5.11,
- -3.7,
- -0.22,
- 1.2,
- 0.54,
- 0.58,
- 1.32,
- 1.72,
- 1.3,
- 2.39,
- 3.28,
- 1.58,
- 2.72,
- 2.6,
- 2.3,
- 1.54,
- 1.66,
- 2.65,
- 1.69,
- 1.53,
- 3.08,
- 2.24,
- 2.56,
- 2.09,
- 1.67,
- 2.49,
- 0.87,
- 1.17,
- 4.16,
- 1.17,
- -0.42,
- -0.25,
- 2.86,
- 2.39,
- 1.97,
- 1.4,
- 2.23,
- 1.0,
- 2.52,
- 1.97,
- 0.55,
- -1.44,
- -2.15,
- -2.14,
- -2.57,
- 0.15,
- -0.26,
- -1.08,
- -0.53,
- -0.37,
- 1.33,
- 1.02,
- 0.0,
- 0.41,
- 0.12,
- 1.22,
- 0.45,
- 0.31,
- -0.61,
- 0.76,
- 3.32,
- -0.74,
- -0.65,
- 0.61,
- 3.11,
- 0.86,
- -0.28,
- -0.46,
- -0.48,
- -1.5,
- -1.63,
- -1.17,
- -1.51,
- -1.37,
- -1.61,
- -1.98,
- -2.26,
- -2.24,
- -2.13,
- -1.93,
- -1.76,
- -1.7,
- -1.56,
- -1.17,
- -0.82,
- -0.66,
- -0.71,
- -1.05,
- -1.04,
- -1.14,
- -1.6,
- -2.21,
- -1.95,
- 0.41,
- 0.76,
- 0.92,
- 2.96,
- 1.34,
- 4.68,
- 3.4,
- 3.13,
- 2.56,
- 2.04,
- 1.69,
- 1.36,
- 0.72,
- -0.2,
- -0.91,
- -0.91,
- -0.75,
- -1.24,
- -1.85,
- -3.16,
- -3.68,
- -3.88,
- -3.48,
- -0.05,
- 2.83,
- 2.33,
- 1.95,
- 1.97,
- 2.31,
- 0.28,
- 1.74,
- 1.66,
- -1.16,
- -1.4,
- -2.13,
- -1.05,
- -0.33,
- 0.32,
- -0.36,
- -0.97,
- -0.77,
- -1.68,
- -2.95,
- 1.95,
- -0.28,
- 0.56,
- 1.84,
- 0.21,
- -2.0,
- 0.33,
- 0.68,
- 0.67,
- -0.05,
- -0.78,
- -1.27,
- -1.57,
- -1.31,
- -1.54,
- -1.77,
- -2.14,
- -2.28,
- -1.95,
- -1.07,
- -1.13,
- -1.1,
- -0.84,
- -0.78,
- -1.29,
- -1.77,
- -1.59,
- -1.07,
- -1.32,
- -1.36,
- -1.56,
- -1.63,
- -1.96,
- -2.09,
- -2.2,
- -2.23,
- -2.22,
- -2.65,
- -3.22,
- -3.6,
- -3.7,
- -3.61,
- -3.52,
- -3.38,
- -2.97,
- -2.74,
- -2.53,
- -2.58,
- -2.54,
- -2.45,
- -2.72,
- -3.14,
- -3.47,
- -3.65,
- -3.78,
- -3.88,
- -3.95,
- -3.87,
- -4.02,
- -3.96,
- -3.67,
- -3.3,
- -3.13,
- -3.64,
- -4.24,
- -5.02,
- -4.92,
- -4.78,
- -4.83,
- -4.37,
- -3.96,
- -3.48,
- -3.03,
- -2.45,
- -2.41,
- -2.92,
- -3.11,
- -3.37,
- -3.56,
- -3.39,
- -3.04,
- -3.22,
- -3.47,
- -4.02,
- -4.27,
- -4.34,
- -4.09,
- -3.87,
- -4.2,
- -4.47,
- -4.66,
- -4.46,
- -4.35,
- -4.05,
- -3.8,
- -3.36,
- -3.06,
- -3.07,
- -2.94,
- -3.22,
- -3.13,
- -3.38,
- -3.26,
- -4.01,
- -3.96,
- -4.18,
- -4.36,
- -4.85,
- -4.63,
- -5.24,
- -5.54,
- -5.51,
- -5.57,
- -4.8,
- -4.9,
- -5.31,
- -5.85,
- -6.31,
- -6.76,
- -7.33,
- -7.5,
- -7.32,
- -7.88,
- -7.07,
- -5.49,
- -6.07,
- -5.81,
- -5.42,
- -5.33,
- -5.8,
- -6.17,
- -5.69,
- -5.86,
- -5.65,
- -4.99,
- -4.75,
- -4.7,
- -4.96,
- -5.28,
- -3.87,
- -0.79,
- 1.42,
- 1.77,
- 1.13,
- 0.56,
- 0.22,
- -0.43,
- 0.11,
- 0.24,
- 1.06,
- 2.22,
- 2.89,
- 2.76,
- 2.55,
- 2.81,
- 2.2,
- 1.88,
- 0.23,
- 0.44,
- -1.82,
- -1.55,
- -2.07,
- -2.19,
- -3.01,
- -3.6,
- -4.29,
- -0.71,
- -0.81,
- -0.04,
- -1.77,
- 0.6,
- 1.1,
- 1.91,
- 3.07,
- 0.53,
- 1.49,
- 2.2,
- 0.48,
- -0.64,
- 0.43,
- -0.33,
- -0.36,
- -1.49,
- -1.3,
- -2.0,
- -2.85,
- -2.4,
- -2.63,
- -2.84,
- -3.04,
- -3.25,
- -3.53,
- -3.67,
- -3.84,
- -4.21,
- -4.16,
- -4.1,
- -3.98,
- -3.88,
- -3.88,
- -3.9,
- -3.8,
- -3.76,
- -3.66,
- -3.57,
- -3.7,
- -4.43,
- -3.65,
- -2.99,
- -3.25,
- -3.11,
- -3.32,
- -3.57,
- -3.88,
- -4.14,
- -4.51,
- -4.86,
- -5.09,
- -5.3,
- -5.68,
- -6.03,
- -6.11,
- -6.08,
- -5.81,
- -5.02,
- -3.19,
- -0.97,
- -0.47,
- -0.1,
- 0.52,
- 0.93,
- 1.09,
- 0.82,
- 1.64,
- 1.77,
- 2.75,
- 3.23,
- 2.4,
- 1.55,
- 1.6,
- 1.72,
- 2.91,
- 1.19,
- 1.29,
- 1.88,
- 2.5,
- 2.0,
- 2.14,
- 1.33,
- 0.51,
- -0.15,
- 2.18,
- 2.2,
- 1.32,
- 0.41,
- 1.03,
- 0.71,
- 2.15,
- 3.53,
- 3.63,
- 2.7,
- 2.99,
- 3.02,
- 2.35,
- 0.98,
- 1.02,
- 0.29,
- -1.24,
- -0.93,
- -0.14,
- 0.9,
- 1.52,
- 0.23,
- 0.28,
- 2.31,
- 0.64,
- 0.22,
- -0.08,
- 1.1,
- -0.1,
- 0.2,
- -0.11,
- 1.72,
- 0.44,
- 1.77,
- 3.1,
- 1.78,
- 1.51,
- 1.18,
- 1.04,
- -0.27,
- -0.69,
- -1.35,
- -1.96,
- -2.32,
- -2.25,
- -2.21,
- -1.88,
- -2.18,
- -2.52,
- -2.67,
- -3.14,
- -2.93,
- -2.71,
- -2.12,
- -2.15,
- -2.09,
- -1.63,
- -1.13,
- -0.73,
- -0.75,
- -0.89,
- -1.13,
- -1.07,
- -1.24,
- -1.53,
- -1.97,
- -1.76,
- -0.47,
- 0.99,
- 3.75,
- 1.44,
- 0.39,
- 2.3,
- 1.55,
- 1.12,
- 1.28,
- 0.75,
- 0.46,
- 0.74,
- -0.08,
- -0.16,
- 0.66,
- -0.45,
- -1.54,
- -2.5,
- -3.21,
- -3.42,
- -4.12,
- -4.47,
- 0.13,
- 1.95,
- 1.7,
- 1.22,
- 0.77,
- 0.58,
- 2.46,
- 1.96,
- 0.25,
- -0.91,
- -2.07,
- -2.02,
- -0.71,
- -0.31,
- -0.46,
- -0.45,
- -0.48,
- 0.13,
- -1.92,
- 1.57,
- -1.26,
- -0.63,
- 0.38,
- 1.82,
- 0.14,
- -2.93,
- -4.79,
- 0.0,
- -0.48,
- -1.2,
- -1.4,
- -1.57,
- -1.47,
- -1.71,
- -2.07,
- -2.37,
- -2.65,
- -2.16,
- -1.29,
- -0.68,
- -0.09,
- 0.19,
- -0.15,
- -0.93,
- -1.62,
- -2.39,
- -2.03,
- -2.23,
- -2.61,
- -2.67,
- -2.41,
- -2.5,
- -2.14,
- -1.83,
- -1.91,
- -2.15,
- -2.74,
- -3.41,
- -3.66,
- -4.11,
- -4.06,
- -4.01,
- -3.98,
- -3.92,
- -3.93,
- -3.44,
- -3.3,
- -3.05,
- -2.99,
- -3.0,
- -3.11,
- -3.43,
- -3.82,
- -4.13,
- -4.38,
- -4.51,
- -4.45,
- -4.38,
- -4.36,
- -4.24,
- -3.72,
- -3.18,
- -3.23,
- -3.7,
- -3.91,
- -3.73,
- -3.58,
- -3.67,
- -3.55,
- -3.38,
- -3.69,
- -3.68,
- -3.47,
- -2.9,
- -2.81,
- -2.93,
- -3.19,
- -3.66,
- -3.7,
- -3.67,
- -3.7,
- -3.48,
- -3.34,
- -3.51,
- -3.72,
- -3.88,
- -4.11,
- -4.58,
- -4.94,
- -5.38,
- -5.64,
- -5.27,
- -4.86,
- -4.37,
- -4.14,
- -4.25,
- -4.63,
- -4.16,
- -3.61,
- -3.34,
- -3.42,
- -0.55,
- -1.98,
- -2.94,
- -2.89,
- -1.52,
- -1.8,
- -2.97,
- -4.48,
- -5.27,
- -5.41,
- -5.52,
- -4.99,
- -4.59,
- -4.21,
- -4.26,
- -4.63,
- -5.09,
- -5.92,
- -6.17,
- -5.59,
- -5.07,
- -3.78,
- -2.21,
- -2.71,
- -2.9,
- -4.3,
- -5.62,
- -4.35,
- -4.75,
- -5.46,
- -5.06,
- -6.29,
- -5.92,
- -4.76,
- -4.66,
- -5.16,
- -4.79,
- -3.26,
- -0.18,
- 1.71,
- 2.0,
- 1.84,
- 2.46,
- 2.32,
- 1.57,
- 0.98,
- 1.35,
- 0.12,
- 1.01,
- 1.78,
- 2.52,
- 2.93,
- 2.45,
- 1.89,
- 1.67,
- 1.17,
- -0.84,
- 0.46,
- 1.21,
- 2.28,
- 0.2,
- -0.53,
- -0.44,
- -3.42,
- -0.6,
- -0.55,
- -0.23,
- -0.39,
- -0.51,
- 0.22,
- -0.09,
- 1.85,
- 0.69,
- -0.08,
- 0.11,
- -0.09,
- -0.74,
- -0.29,
- -0.22,
- 0.0,
- 0.37,
- -0.16,
- -2.11,
- -2.53,
- -2.29,
- -2.64,
- -2.86,
- -3.29,
- -3.74,
- -3.93,
- -3.99,
- -4.09,
- -4.16,
- -4.63,
- -4.57,
- -4.56,
- -4.67,
- -4.61,
- -4.42,
- -4.24,
- -4.46,
- -5.28,
- -5.67,
- -5.74,
- -5.66,
- -5.07,
- -4.22,
- -4.32,
- -4.03,
- -4.0,
- -4.43,
- -4.44,
- -4.37,
- -4.63,
- -5.29,
- -5.69,
- -5.92,
- -6.0,
- -5.97,
- -5.84,
- -5.6,
- -5.35,
- -5.22,
- -4.61,
- -3.33,
- -2.38,
- -1.74,
- -0.69,
- 0.01,
- 0.03,
- 1.16,
- 1.3,
- 1.23,
- 1.54,
- 2.69,
- 3.23,
- 2.11,
- 1.68,
- 1.98,
- 2.34,
- 2.63,
- 0.83,
- 1.4,
- 1.5,
- 1.74,
- 2.19,
- 1.74,
- 1.41,
- 1.08,
- 1.51,
- 0.93,
- 0.01,
- -0.32,
- 1.1,
- 1.09,
- 0.3,
- 1.84,
- 3.71,
- 4.05,
- 3.47,
- 2.72,
- 2.5,
- 1.69,
- 1.11,
- 1.92,
- 2.94,
- 2.21,
- 1.25,
- 1.07,
- 1.53,
- 1.71,
- 2.54,
- 2.51,
- 2.3,
- 1.67,
- 0.45,
- 0.16,
- 1.14,
- 0.0,
- -0.26,
- -0.03,
- 0.4,
- -0.14,
- 1.14,
- 1.21,
- 2.35,
- 3.11,
- 1.74,
- 0.37,
- -0.16,
- -0.1,
- -1.08,
- -1.86,
- -2.63,
- -2.79,
- -3.0,
- -2.94,
- -2.84,
- -2.92,
- -3.23,
- -3.88,
- -3.57,
- -2.56,
- -1.78,
- -1.58,
- -0.26,
- 0.01,
- 0.01,
- -0.6,
- -1.14,
- -1.21,
- -1.15,
- -1.15,
- -1.16,
- -1.61,
- -1.65,
- -1.7,
- -0.71,
- 3.85,
- 3.85,
- 1.53,
- 0.51,
- 1.16,
- -0.13,
- -0.34,
- -0.64,
- -0.75,
- -0.33,
- 0.41,
- 0.37,
- -0.01,
- -0.13,
- -0.87,
- -1.92,
- -2.39,
- -2.94,
- -3.01,
- -3.5,
- -2.23,
- 1.11,
- -0.31,
- 2.09,
- 0.81,
- 0.26,
- 0.51,
- 0.5,
- 0.11,
- -0.45,
- -0.47,
- -1.39,
- -1.19,
- -0.35,
- -0.26,
- 0.07,
- -0.55,
- -0.93,
- -0.49,
- 0.55,
- -0.19,
- 0.19,
- 0.26,
- -1.19,
- -2.15,
- 0.0,
- -1.63,
- -0.21,
- -0.89,
- -1.53,
- -3.53,
- -2.17,
- -1.5,
- -1.57,
- -1.93,
- -2.97,
- -2.44,
- -2.52,
- -0.96,
- 0.16,
- 0.5,
- -0.01,
- -0.15,
- -0.42,
- -0.9,
- -1.33,
- -2.05,
- -2.72,
- -3.32,
- -3.56,
- -3.59,
- -3.46,
- -3.04,
- -2.61,
- -2.27,
- -2.31,
- -2.88,
- -3.6,
- -3.76,
- -4.11,
- -4.59,
- -4.79,
- -4.73,
- -4.8,
- -4.66,
- -4.67,
- -4.52,
- -4.02,
- -3.9,
- -3.93,
- -3.98,
- -4.11,
- -4.38,
- -4.73,
- -5.04,
- -5.15,
- -5.29,
- -5.21,
- -4.91,
- -4.49,
- -3.87,
- -3.38,
- -3.22,
- -3.55,
- -3.91,
- -4.03,
- -4.31,
- -4.04,
- -4.19,
- -3.72,
- -3.66,
- -3.35,
- -3.78,
- -3.79,
- -3.84,
- -3.86,
- -3.38,
- -3.23,
- -3.09,
- -2.86,
- -3.55,
- -3.73,
- -3.91,
- -3.79,
- -3.76,
- -3.81,
- -3.68,
- -4.5,
- -4.89,
- -4.94,
- -5.16,
- -5.22,
- -5.42,
- -5.8,
- -5.25,
- -5.15,
- -5.69,
- -5.55,
- -5.57,
- -4.94,
- -2.32,
- 0.06,
- -0.48,
- -2.11,
- -2.59,
- -1.79,
- -1.57,
- -3.86,
- -3.79,
- -3.78,
- -4.72,
- -5.01,
- -5.17,
- -4.62,
- -4.19,
- -4.01,
- -4.13,
- -3.23,
- -4.82,
- -4.58,
- -4.02,
- -3.64,
- -3.21,
- -1.6,
- -0.88,
- 1.04,
- 0.13,
- -2.4,
- -2.55,
- -2.74,
- -1.48,
- -2.01,
- -3.67,
- -4.02,
- -2.92,
- -3.69,
- -3.77,
- -3.6,
- -2.34,
- 0.9,
- 1.91,
- 2.9,
- 2.93,
- 2.7,
- 2.84,
- 2.63,
- 2.39,
- 1.75,
- 2.64,
- 2.66,
- 2.13,
- 2.32,
- 2.55,
- 2.29,
- 1.98,
- 2.41,
- 3.17,
- 2.8,
- 3.07,
- 0.35,
- 1.72,
- 0.66,
- 2.87,
- 0.94,
- -0.09,
- -0.97,
- -0.43,
- -0.05,
- -0.44,
- 0.89,
- 0.51,
- -0.04,
- 1.41,
- 1.46,
- 0.45,
- -0.57,
- -0.94,
- -0.87,
- -0.33,
- -0.69,
- 0.1,
- 0.72,
- 0.48,
- 0.32,
- -1.94,
- -2.77,
- -2.48,
- -3.15,
- -3.71,
- -3.99,
- -4.09,
- -4.39,
- -4.78,
- -4.76,
- -4.7,
- -4.33,
- -4.14,
- -4.27,
- -4.68,
- -4.78,
- -4.96,
- -5.8,
- -5.68,
- -5.89,
- -6.1,
- -5.45,
- -5.27,
- -5.34,
- -5.53,
- -5.44,
- -5.4,
- -5.19,
- -4.53,
- -4.79,
- -5.15,
- -5.59,
- -6.15,
- -6.37,
- -6.37,
- -6.1,
- -5.89,
- -5.4,
- -4.87,
- -4.38,
- -4.06,
- -3.89,
- -3.47,
- -2.21,
- -1.47,
- -1.51,
- -1.0,
- -0.61,
- -0.21,
- 0.36,
- 0.69,
- 1.25,
- 2.35,
- 2.91,
- 1.73,
- 1.07,
- 2.28,
- 2.07,
- 1.35,
- 0.79,
- 1.14,
- 0.66,
- -0.12,
- 0.04,
- 0.49,
- 2.36,
- 2.74,
- 2.26,
- 0.81,
- 0.6,
- -0.26,
- 1.12,
- 0.72,
- 2.69,
- 3.06,
- 4.49,
- 3.33,
- 3.13,
- 3.02,
- 2.17,
- 1.5,
- 1.97,
- 2.01,
- 2.42,
- 2.37,
- 2.06,
- 1.86,
- 2.25,
- 2.67,
- 1.87,
- 2.38,
- 3.49,
- 1.95,
- 1.45,
- 1.05,
- 0.75,
- 0.59,
- -0.6,
- -0.14,
- 0.22,
- -0.18,
- 1.85,
- 2.06,
- 3.19,
- 3.27,
- 1.82,
- 0.51,
- 0.02,
- -0.1,
- -1.2,
- -1.94,
- -2.7,
- -3.27,
- -3.34,
- -3.4,
- -3.43,
- -3.63,
- -3.96,
- -4.05,
- -3.22,
- -3.47,
- -2.98,
- -1.73,
- -0.92,
- 0.34,
- 0.48,
- -0.25,
- -0.6,
- -0.57,
- -0.53,
- -0.88,
- -1.12,
- -1.24,
- -1.12,
- -1.06,
- -0.37,
- 1.28,
- 2.0,
- 0.77,
- 0.38,
- 0.18,
- -0.93,
- -1.28,
- -0.77,
- -0.54,
- -0.82,
- -0.29,
- 0.07,
- 0.17,
- 0.25,
- -0.08,
- -0.51,
- -0.8,
- -1.52,
- -2.12,
- -2.43,
- -2.97,
- 1.02,
- 0.64,
- -4.97,
- 0.93,
- 0.02,
- -0.27,
- -0.17,
- -0.65,
- -1.06,
- -1.18,
- -1.37,
- -1.17,
- -0.37,
- -0.19,
- -0.65,
- -1.24,
- -1.42,
- -2.69,
- -0.57,
- 1.41,
- 0.99,
- 0.24,
- 0.3,
- 0.75,
- 1.59,
- -0.95,
- 0.27,
- 2.43,
- -4.09,
- -0.4,
- -0.38,
- 0.78,
- -1.53,
- -3.08,
- -0.6,
- -0.81,
- -1.46,
- -1.37,
- -0.58,
- 0.17,
- -0.24,
- -0.13,
- -0.24,
- -0.89,
- -1.71,
- -2.5,
- -2.29,
- -2.71,
- -3.52,
- -3.34,
- -2.78,
- -1.78,
- -1.51,
- -0.64,
- -0.16,
- -1.63,
- -3.21,
- -4.23,
- -4.62,
- -5.34,
- -5.32,
- -5.32,
- -5.44,
- -5.63,
- -5.89,
- -6.39,
- -5.69,
- -4.87,
- -4.52,
- -4.45,
- -4.79,
- -4.78,
- -4.96,
- -5.26,
- -5.17,
- -5.11,
- -4.86,
- -4.43,
- -3.95,
- -3.4,
- -3.22,
- -3.15,
- -3.88,
- -3.95,
- -3.81,
- -3.79,
- -3.87,
- -3.62,
- -3.43,
- -3.7,
- -3.49,
- -3.41,
- -3.45,
- -2.88,
- -2.81,
- -2.77,
- -3.03,
- -3.29,
- -2.9,
- -2.95,
- -4.01,
- -4.14,
- -4.39,
- -4.39,
- -4.57,
- -4.73,
- -4.65,
- -4.67,
- -4.99,
- -4.67,
- -4.02,
- -4.94,
- -5.3,
- -5.86,
- -6.08,
- -6.86,
- -7.63,
- -5.8,
- -3.45,
- -2.16,
- -1.73,
- -2.57,
- -2.84,
- -3.76,
- -3.07,
- -3.18,
- -3.03,
- -2.4,
- -2.86,
- -3.41,
- -4.02,
- -3.49,
- -4.47,
- -3.78,
- -3.04,
- -2.83,
- -3.25,
- -3.13,
- -3.25,
- -1.93,
- -1.4,
- -1.37,
- -0.6,
- 0.2,
- 0.42,
- -0.79,
- -2.68,
- -0.56,
- 1.06,
- 1.86,
- 1.27,
- 0.41,
- 0.93,
- 0.41,
- 0.72,
- -0.41,
- -1.3,
- -0.53,
- 1.52,
- 2.17,
- 3.62,
- 3.18,
- 3.06,
- 3.5,
- 4.24,
- 4.31,
- 4.47,
- 4.69,
- 5.3,
- 4.93,
- 3.86,
- 3.52,
- 3.14,
- 2.37,
- 1.99,
- 2.77,
- 3.48,
- 2.69,
- 2.45,
- 2.28,
- 2.11,
- 2.83,
- 1.96,
- 0.12,
- 0.5,
- -0.31,
- 0.48,
- -0.22,
- 0.66,
- -1.29,
- 0.46,
- 1.25,
- 1.61,
- 1.37,
- 1.14,
- -1.09,
- -0.51,
- 0.33,
- -1.4,
- 0.19,
- -0.15,
- -0.3,
- -0.39,
- -1.6,
- -2.66,
- -2.98,
- -3.72,
- -4.34,
- -4.44,
- -4.9,
- -5.21,
- -5.75,
- -6.09,
- -5.84,
- -5.46,
- -5.16,
- -4.57,
- -4.68,
- -4.83,
- -5.02,
- -5.79,
- -6.39,
- -6.25,
- -5.49,
- -5.43,
- -5.62,
- -5.69,
- -6.09,
- -6.26,
- -6.57,
- -6.5,
- -6.02,
- -5.52,
- -5.96,
- -6.36,
- -6.48,
- -6.28,
- -5.92,
- -5.73,
- -5.24,
- -4.52,
- -3.54,
- -3.08,
- -2.86,
- -2.57,
- -2.34,
- -2.23,
- -2.08,
- -1.69,
- -1.94,
- -0.85,
- -0.21,
- -0.05,
- 0.46,
- 0.96,
- 1.05,
- 0.88,
- 0.92,
- 0.96,
- 1.12,
- 1.59,
- 0.54,
- 1.28,
- 2.91,
- 3.06,
- 2.45,
- 0.78,
- 1.05,
- 1.96,
- 2.76,
- 0.37,
- 1.44,
- -0.65,
- -0.48,
- 0.06,
- 0.43,
- 0.79,
- 2.87,
- 3.87,
- 3.13,
- 2.53,
- 1.9,
- 1.7,
- 1.92,
- 2.58,
- 2.31,
- 2.32,
- 1.57,
- 1.42,
- 2.59,
- 3.66,
- 2.52,
- 2.01,
- 2.71,
- 3.89,
- 3.16,
- 2.84,
- 0.29,
- 0.28,
- -0.73,
- -0.12,
- -0.04,
- 1.17,
- 1.05,
- 1.39,
- 2.14,
- 3.14,
- 2.9,
- 1.91,
- 0.56,
- 0.95,
- 0.37,
- -0.66,
- -2.2,
- -2.98,
- -3.47,
- -3.46,
- -3.19,
- -3.18,
- -2.96,
- -3.06,
- -2.45,
- -1.53,
- -1.15,
- -0.9,
- -1.29,
- -0.85,
- -0.71,
- -0.05,
- 0.36,
- 0.63,
- 0.61,
- 0.13,
- -0.06,
- -0.55,
- -0.75,
- -0.53,
- 0.13,
- 0.52,
- 0.92,
- 2.37,
- 3.78,
- 3.03,
- -1.63,
- -0.26,
- 0.77,
- -0.2,
- -0.28,
- -0.43,
- -0.3,
- -0.03,
- 0.45,
- 0.73,
- 0.9,
- 0.22,
- -0.3,
- -0.14,
- -0.02,
- -0.45,
- -1.82,
- -1.52,
- 1.66,
- -0.71,
- -1.96,
- -0.98,
- -0.64,
- -0.69,
- -1.58,
- -2.16,
- -2.09,
- -1.96,
- -2.16,
- -1.34,
- 0.07,
- 0.27,
- -0.09,
- 0.57,
- -1.31,
- 0.53,
- -2.08,
- 0.8,
- 0.71,
- 0.45,
- 1.89,
- 2.62,
- 1.39,
- 1.97,
- -2.49,
- -2.48,
- -0.27,
- 0.08,
- -0.21,
- 0.52,
- 0.08,
- 0.44,
- 0.68,
- 0.98,
- 1.17,
- 0.64,
- 0.39,
- 0.69,
- 0.31,
- -0.11,
- -0.78,
- -1.71,
- -1.79,
- -2.11,
- -3.15,
- -3.84,
- -3.64,
- -2.85,
- -2.36,
- -0.47,
- -0.68,
- -0.87,
- -0.52,
- -1.81,
- -3.15,
- -4.59,
- -3.77,
- -3.82,
- -4.9,
- -5.53,
- -5.4,
- -6.86,
- -4.45,
- -3.95,
- -4.19,
- -4.97,
- -4.28,
- -5.91,
- -6.67,
- -5.54,
- -5.17,
- -5.26,
- -5.04,
- -4.4,
- -3.68,
- -3.23,
- -3.23,
- -3.35,
- -3.68,
- -4.03,
- -3.77,
- -3.36,
- -3.28,
- -3.15,
- -2.93,
- -2.83,
- -2.31,
- -2.84,
- -2.78,
- -2.64,
- -2.79,
- -3.04,
- -2.98,
- -2.84,
- -2.6,
- -3.31,
- -3.46,
- -3.96,
- -4.21,
- -4.61,
- -4.86,
- -4.73,
- -4.5,
- -4.54,
- -4.79,
- -4.66,
- -4.56,
- -3.91,
- -3.99,
- -4.38,
- -4.83,
- -6.07,
- -5.29,
- -5.12,
- -3.17,
- -1.67,
- -1.39,
- -2.35,
- -3.24,
- -4.32,
- -3.71,
- -3.68,
- -3.52,
- -2.38,
- -2.44,
- -3.03,
- -3.62,
- -3.73,
- -2.28,
- -2.64,
- -3.8,
- -1.68,
- -2.01,
- -2.76,
- -0.53,
- 0.07,
- 0.76,
- 1.4,
- 1.9,
- 2.0,
- 2.27,
- 2.19,
- 0.33,
- -0.3,
- 1.85,
- 2.72,
- 2.73,
- 2.69,
- 2.66,
- 1.87,
- 1.17,
- 0.84,
- 1.28,
- 0.78,
- 1.88,
- 2.77,
- 2.73,
- 3.19,
- 4.71,
- 5.09,
- 4.56,
- 5.14,
- 5.56,
- 5.6,
- 5.61,
- 5.61,
- 5.46,
- 4.99,
- 3.92,
- 3.5,
- 3.79,
- 3.57,
- 3.9,
- 3.82,
- 4.27,
- 5.02,
- 4.84,
- 3.56,
- 2.49,
- 1.49,
- 0.67,
- 0.13,
- -0.08,
- -0.27,
- 0.87,
- 0.18,
- 1.03,
- 2.83,
- 2.66,
- 1.82,
- 0.96,
- -0.06,
- -0.33,
- -0.24,
- -0.72,
- -0.55,
- -0.8,
- -0.47,
- 0.46,
- -0.14,
- -1.02,
- -1.2,
- 0.3,
- 0.02,
- -3.58,
- -5.78,
- -6.09,
- -5.95,
- -6.29,
- -7.09,
- -6.92,
- -7.0,
- -6.6,
- -6.31,
- -5.9,
- -5.98,
- -6.38,
- -5.24,
- -4.03,
- -4.5,
- -3.95,
- -3.65,
- -3.6,
- -3.67,
- -4.75,
- -5.5,
- -6.71,
- -6.28,
- -6.37,
- -6.6,
- -6.75,
- -7.12,
- -6.34,
- -5.93,
- -5.54,
- -5.61,
- -5.04,
- -4.32,
- -3.38,
- -2.68,
- -1.91,
- -1.13,
- -0.75,
- -0.61,
- -0.29,
- 0.08,
- 0.0,
- -0.08,
- -0.28,
- 0.23,
- 0.29,
- 0.77,
- 0.62,
- 0.37,
- 0.45,
- 0.82,
- 0.78,
- 0.72,
- 2.03,
- 2.88,
- 3.35,
- 3.42,
- 3.58,
- 4.28,
- 1.45,
- 1.81,
- 1.24,
- 0.69,
- -0.12,
- 0.32,
- 0.68,
- 0.9,
- 1.57,
- 2.07,
- 1.44,
- 1.7,
- 2.06,
- 2.49,
- 1.78,
- 1.65,
- 1.67,
- 1.77,
- 1.98,
- 1.55,
- 0.64,
- 2.45,
- 4.11,
- 3.52,
- 1.86,
- 2.17,
- 2.44,
- 2.33,
- 2.74,
- 0.47,
- 2.56,
- 1.15,
- 0.22,
- 1.18,
- 0.57,
- 1.21,
- 2.97,
- 2.65,
- 1.83,
- 3.3,
- 2.85,
- 1.72,
- 1.32,
- 1.24,
- -0.03,
- -0.6,
- -1.72,
- -3.12,
- -4.06,
- -3.78,
- -3.42,
- -2.98,
- -2.49,
- -2.82,
- -2.89,
- -1.64,
- -1.34,
- -0.63,
- 0.03,
- -0.67,
- -0.44,
- -0.3,
- 1.09,
- 1.61,
- 0.77,
- 0.44,
- 0.06,
- 0.13,
- 0.31,
- 1.16,
- 1.26,
- 1.39,
- 1.13,
- 1.34,
- 0.54,
- 0.01,
- -1.03,
- 0.84,
- -0.2,
- -0.52,
- -0.52,
- 0.38,
- 0.32,
- 1.51,
- 0.81,
- 0.48,
- 0.14,
- 0.02,
- 0.19,
- -0.05,
- -1.44,
- -2.24,
- -1.06,
- -1.71,
- -0.81,
- 0.03,
- -1.27,
- -2.01,
- -1.36,
- -0.91,
- -1.2,
- -0.81,
- -1.95,
- -2.69,
- -1.89,
- -1.45,
- 0.22,
- -0.22,
- -0.25,
- -2.74,
- 0.8,
- 0.77,
- 0.81,
- 2.61,
- 1.99,
- 0.58,
- 1.47,
- 1.41,
- 0.68,
- -0.88,
- -3.32,
- -0.87,
- -0.36,
- -0.15,
- -0.25,
- -0.46,
- -0.81,
- 0.38,
- 1.42,
- 2.23,
- 2.06,
- 1.46,
- 1.52,
- 1.3,
- 0.73,
- 0.36,
- -0.46,
- -1.11,
- -1.63,
- -2.83,
- -3.51,
- -3.32,
- -3.44,
- -2.51,
- -2.22,
- -2.92,
- -2.72,
- -2.61,
- -3.81,
- -4.14,
- -5.28,
- -4.03,
- -4.16,
- -3.75,
- -2.89,
- -2.13,
- -1.99,
- -2.62,
- -1.78,
- -2.05,
- -1.89,
- -2.74,
- -4.1,
- -4.14,
- -3.15,
- -5.78,
- -6.89,
- -5.8,
- -5.34,
- -4.57,
- -4.01,
- -3.66,
- -3.88,
- -3.68,
- -4.16,
- -4.24,
- -3.89,
- -3.47,
- -3.22,
- -3.04,
- -2.64,
- -2.44,
- -2.68,
- -2.8,
- -2.72,
- -2.84,
- -2.5,
- -2.44,
- -2.0,
- -2.34,
- -2.72,
- -2.92,
- -2.58,
- -2.5,
- -3.39,
- -4.2,
- -3.88,
- -3.99,
- -4.28,
- -4.37,
- -4.36,
- -4.19,
- -4.03,
- -3.67,
- -3.36,
- -3.65,
- -4.41,
- -3.98,
- -3.97,
- -2.76,
- -1.97,
- -1.06,
- -0.94,
- -2.29,
- -3.07,
- -4.14,
- -2.74,
- -1.59,
- -0.54,
- -0.1,
- -1.17,
- -2.24,
- -2.96,
- -1.65,
- -1.1,
- -1.29,
- -0.66,
- 0.09,
- -0.76,
- -0.41,
- 0.75,
- 1.36,
- 2.33,
- 3.01,
- 3.16,
- 3.54,
- 3.87,
- 2.7,
- 2.8,
- 2.68,
- 2.59,
- 2.78,
- 3.64,
- 3.16,
- 1.91,
- 1.47,
- 2.09,
- 1.87,
- 0.38,
- 0.88,
- 1.62,
- 2.09,
- 3.67,
- 3.55,
- 4.11,
- 4.76,
- 5.45,
- 5.43,
- 5.7,
- 5.7,
- 5.33,
- 4.99,
- 4.94,
- 4.92,
- 4.85,
- 4.46,
- 5.33,
- 5.76,
- 5.7,
- 5.85,
- 5.14,
- 4.34,
- 3.7,
- 2.67,
- 1.88,
- 0.91,
- 0.79,
- 1.05,
- -0.93,
- 0.75,
- 0.01,
- 0.12,
- 1.91,
- 3.03,
- 2.26,
- 1.44,
- 0.96,
- 0.09,
- -0.29,
- -0.66,
- 0.0,
- -0.76,
- 0.63,
- -0.23,
- -1.43,
- -0.97,
- -1.0,
- -0.46,
- -0.38,
- -0.88,
- -0.55,
- -0.46,
- -2.79,
- -5.59,
- -5.33,
- -4.37,
- -4.77,
- -4.55,
- -4.19,
- -3.94,
- -3.93,
- -4.18,
- -3.42,
- -3.48,
- -3.81,
- -3.88,
- -2.88,
- -2.88,
- -2.58,
- -3.52,
- -4.02,
- -4.25,
- -4.48,
- -5.35,
- -5.88,
- -4.95,
- -5.89,
- -5.3,
- -6.14,
- -6.93,
- -6.12,
- -6.17,
- -5.25,
- -4.84,
- -3.66,
- -2.62,
- -1.45,
- -0.19,
- 0.38,
- 0.94,
- 1.07,
- 1.0,
- 1.22,
- 1.36,
- 0.98,
- 0.21,
- -0.58,
- -0.04,
- -0.79,
- 1.14,
- 2.4,
- 2.63,
- 0.64,
- 1.15,
- 2.1,
- 2.35,
- 2.77,
- 3.99,
- 4.42,
- 4.33,
- 3.63,
- 3.32,
- 3.47,
- 0.69,
- 0.27,
- 0.98,
- 0.55,
- 1.77,
- 1.67,
- 1.84,
- 1.42,
- 1.39,
- 1.84,
- 2.08,
- 1.88,
- 2.43,
- 2.16,
- 1.64,
- 1.26,
- 1.12,
- 1.58,
- 1.93,
- 2.8,
- 2.62,
- 2.56,
- 1.22,
- 2.45,
- 1.02,
- 0.45,
- 2.18,
- 4.61,
- 4.23,
- 3.56,
- 3.59,
- 3.58,
- 2.69,
- 3.01,
- 2.27,
- 1.93,
- 2.81,
- 2.3,
- 1.82,
- 1.39,
- 0.83,
- 0.57,
- -0.53,
- -1.13,
- -1.81,
- -2.96,
- -4.32,
- -4.14,
- -3.71,
- -3.36,
- -2.72,
- -2.25,
- -1.81,
- -0.92,
- -1.02,
- 0.74,
- 0.68,
- 0.04,
- 1.26,
- 1.51,
- 1.22,
- 1.11,
- 0.95,
- 0.92,
- 0.84,
- 0.95,
- 1.14,
- 1.41,
- 1.83,
- 2.05,
- 0.37,
- 0.66,
- 1.19,
- 2.65,
- 0.85,
- 1.0,
- 1.05,
- -0.55,
- -0.84,
- 0.82,
- 0.73,
- 0.95,
- 0.43,
- 0.8,
- 0.17,
- -0.54,
- 0.28,
- 3.37,
- -0.06,
- -2.04,
- -1.26,
- -2.38,
- -0.56,
- -1.33,
- -0.94,
- -2.07,
- -1.61,
- -0.95,
- -1.19,
- -1.2,
- -1.7,
- -1.44,
- -0.61,
- 0.13,
- -0.37,
- -0.93,
- -0.13,
- 0.73,
- 0.9,
- 2.18,
- -0.62,
- 0.42,
- 0.35,
- 0.76,
- 0.43,
- -0.55,
- -2.22,
- -2.03,
- -0.9,
- -0.77,
- -0.15,
- -0.19,
- -0.18,
- -0.14,
- -0.24,
- 1.26,
- 1.53,
- 2.1,
- 1.94,
- 2.29,
- 2.68,
- 2.13,
- 0.95,
- 0.02,
- -0.87,
- -2.02,
- -3.09,
- -3.55,
- -4.14,
- -4.07,
- -3.4,
- -3.09,
- -2.8,
- -2.93,
- -3.95,
- -5.54,
- -4.63,
- -3.16,
- -2.62,
- -1.37,
- -1.52,
- -0.3,
- 0.91,
- -0.05,
- -0.79,
- -1.65,
- -1.94,
- -2.59,
- -2.92,
- -3.06,
- -2.23,
- -2.02,
- -3.61,
- -4.64,
- -3.76,
- -3.32,
- -3.71,
- -3.81,
- -4.24,
- -4.08,
- -4.06,
- -4.21,
- -4.48,
- -4.21,
- -3.94,
- -2.91,
- -2.61,
- -2.91,
- -2.49,
- -1.99,
- -1.84,
- -1.47,
- -2.28,
- -2.69,
- -2.29,
- -2.18,
- -2.47,
- -2.82,
- -2.78,
- -2.46,
- -2.99,
- -2.36,
- -2.68,
- -3.23,
- -3.46,
- -3.97,
- -4.16,
- -3.88,
- -3.85,
- -3.75,
- -3.6,
- -3.46,
- -4.02,
- -4.08,
- -3.81,
- -3.4,
- -1.7,
- -0.15,
- 0.56,
- 0.12,
- -0.76,
- -2.02,
- -1.42,
- -0.95,
- 0.4,
- 1.13,
- 0.63,
- 0.37,
- -0.11,
- -0.2,
- 0.14,
- 0.44,
- 0.86,
- 1.06,
- 1.5,
- 1.43,
- 1.2,
- 1.44,
- 1.7,
- 2.34,
- 3.07,
- 3.39,
- 2.86,
- 2.7,
- 2.97,
- 3.02,
- 3.59,
- 4.2,
- 4.09,
- 3.71,
- 2.84,
- 1.58,
- 2.94,
- 2.35,
- 1.51,
- 2.07,
- 2.3,
- 2.14,
- 2.34,
- 4.37,
- 5.45,
- 5.84,
- 5.79,
- 5.53,
- 5.26,
- 5.01,
- 4.88,
- 5.09,
- 5.0,
- 4.21,
- 3.98,
- 4.58,
- 5.49,
- 4.98,
- 4.68,
- 4.98,
- 4.59,
- 3.82,
- 3.49,
- 3.12,
- 2.28,
- 1.22,
- 0.25,
- 0.2,
- 0.59,
- 1.32,
- 0.55,
- -0.37,
- 2.05,
- 2.28,
- 2.24,
- 1.43,
- 1.02,
- 0.75,
- 0.66,
- 0.28,
- 0.02,
- -0.45,
- 0.47,
- 0.79,
- 3.12,
- 1.38,
- -1.69,
- -1.2,
- -0.46,
- -0.98,
- -0.58,
- -0.6,
- -0.73,
- -0.86,
- -1.21,
- -3.25,
- -1.94,
- -1.77,
- -0.32,
- -0.12,
- 0.22,
- -0.82,
- -0.71,
- 0.63,
- -0.38,
- -0.4,
- 0.59,
- 1.59,
- 1.51,
- 0.44,
- -0.42,
- -1.22,
- -1.4,
- -0.8,
- -1.16,
- -1.26,
- -2.63,
- -2.76,
- -1.57,
- -1.42,
- -2.06,
- -2.14,
- -0.24,
- -2.3,
- -2.07,
- -0.93,
- 0.41,
- 0.84,
- 0.41,
- 0.43,
- 0.91,
- 1.18,
- 1.43,
- 1.4,
- 1.99,
- 2.02,
- 1.61,
- 1.34,
- 1.0,
- 1.72,
- 2.48,
- 2.96,
- 2.42,
- 2.12,
- 1.74,
- 3.84,
- 3.49,
- 3.84,
- 3.35,
- 2.58,
- 3.35,
- 4.18,
- 4.01,
- 3.53,
- 3.33,
- 1.38,
- 0.57,
- 0.44,
- 0.52,
- 0.74,
- 0.94,
- 0.8,
- 1.18,
- 1.26,
- 1.84,
- 1.88,
- 1.81,
- 0.83,
- 0.95,
- 0.4,
- 0.09,
- 0.85,
- 1.32,
- 1.53,
- 2.04,
- 1.9,
- 0.39,
- 0.88,
- 1.36,
- 1.99,
- 0.63,
- 1.67,
- 5.19,
- 3.22,
- 4.78,
- 3.8,
- 3.61,
- 4.22,
- 3.32,
- 1.69,
- 1.82,
- 1.46,
- 1.67,
- 1.29,
- 0.77,
- 0.21,
- -0.4,
- -0.77,
- -1.24,
- -1.6,
- -1.38,
- -1.99,
- -1.4,
- -3.05,
- -4.6,
- -3.91,
- -2.59,
- -1.9,
- -0.55,
- -0.81,
- 0.84,
- 0.72,
- 0.99,
- 1.01,
- 0.82,
- 0.98,
- 1.66,
- 1.55,
- 1.4,
- 1.0,
- 1.16,
- 1.37,
- 2.11,
- 1.99,
- 2.3,
- 3.28,
- 2.72,
- 2.1,
- 2.58,
- 2.42,
- 1.1,
- 0.65,
- 0.9,
- 0.69,
- -0.25,
- 1.38,
- 1.64,
- 0.93,
- -0.24,
- -0.93,
- -0.84,
- -0.9,
- 0.73,
- -0.75,
- -2.25,
- -2.92,
- -1.15,
- -0.2,
- -1.09,
- -2.68,
- -1.96,
- -0.87,
- -0.29,
- -0.27,
- -0.74,
- -0.51,
- -0.65,
- -2.7,
- -1.38,
- -0.27,
- 0.32,
- 0.03,
- -0.06,
- -1.87,
- -0.42,
- 0.21,
- 0.26,
- 0.44,
- 0.14,
- -0.97,
- -0.92,
- -2.13,
- -2.25,
- -2.09,
- -1.85,
- -0.92,
- -0.43,
- -0.19,
- 0.27,
- 0.41,
- 1.26,
- 1.89,
- 3.31,
- 3.58,
- 2.87,
- 1.77,
- 0.93,
- 0.4,
- -0.86,
- -1.79,
- -2.65,
- -3.52,
- -4.05,
- -3.79,
- -3.61,
- -3.57,
- -3.02,
- -5.21,
- -4.63,
- -1.93,
- -0.7,
- -1.57,
- -0.91,
- -0.16,
- -0.92,
- -0.56,
- -0.37,
- -0.7,
- -1.18,
- -1.43,
- -1.86,
- -2.01,
- -2.1,
- -2.21,
- -2.77,
- -5.45,
- -5.27,
- -4.04,
- -2.9,
- -2.81,
- -3.81,
- -4.09,
- -4.11,
- -3.87,
- -4.08,
- -4.1,
- -3.87,
- -3.93,
- -3.25,
- -2.71,
- -2.84,
- -3.08,
- -2.77,
- -1.35,
- -1.63,
- -1.73,
- -2.09,
- -2.54,
- -2.61,
- -2.5,
- -2.33,
- -2.21,
- -2.81,
- -2.95,
- -2.77,
- -3.03,
- -2.72,
- -2.93,
- -3.12,
- -3.24,
- -3.38,
- -3.68,
- -3.79,
- -3.75,
- -3.44,
- -2.94,
- -3.24,
- -3.41,
- -3.21,
- -2.89,
- -1.14,
- -0.37,
- 0.11,
- 0.24,
- 0.24,
- 0.68,
- 1.07,
- 2.07,
- 2.5,
- 1.46,
- 0.84,
- 0.54,
- 0.2,
- -0.23,
- -0.28,
- -0.24,
- 0.48,
- 0.82,
- 1.34,
- 1.4,
- 1.04,
- 1.05,
- 1.24,
- 1.51,
- 1.56,
- 1.62,
- 1.64,
- 1.84,
- 2.58,
- 3.63,
- 3.7,
- 3.27,
- 3.46,
- 4.04,
- 4.1,
- 3.69,
- 2.66,
- 3.06,
- 2.98,
- 2.99,
- 2.09,
- 3.24,
- 3.83,
- 6.4,
- 5.93,
- 5.66,
- 5.41,
- 5.4,
- 5.42,
- 5.5,
- 5.41,
- 5.2,
- 4.74,
- 4.0,
- 3.95,
- 4.14,
- 4.49,
- 4.31,
- 4.4,
- 4.42,
- 4.08,
- 3.48,
- 2.7,
- 2.02,
- 1.74,
- 0.49,
- -0.27,
- 0.16,
- 0.11,
- 0.46,
- 1.2,
- 0.86,
- 2.29,
- 2.55,
- 1.33,
- 1.69,
- 1.27,
- 0.96,
- 0.79,
- 0.52,
- 0.34,
- 0.78,
- 1.02,
- 1.37,
- 1.97,
- 1.61,
- 0.59,
- -0.31,
- -0.2,
- 0.06,
- -0.58,
- -0.8,
- -0.78,
- -0.55,
- -0.66,
- -1.18,
- -1.09,
- -0.29,
- 0.08,
- 0.85,
- 0.87,
- 0.35,
- 0.85,
- 1.0,
- 1.53,
- 2.4,
- 3.41,
- 3.74,
- 3.7,
- 2.92,
- 3.38,
- 3.55,
- 3.48,
- 3.05,
- 2.18,
- 1.84,
- 0.66,
- -0.25,
- -0.77,
- -0.46,
- 0.44,
- 0.86,
- 1.08,
- 1.59,
- 0.93,
- 0.85,
- 0.58,
- 0.39,
- 0.65,
- 1.3,
- 1.6,
- 2.09,
- 2.13,
- 1.97,
- 2.09,
- 2.28,
- 2.51,
- 2.3,
- 1.65,
- 2.76,
- 3.47,
- 3.72,
- 3.45,
- 3.12,
- 3.44,
- 3.85,
- 4.45,
- 4.0,
- 3.93,
- 3.7,
- 4.25,
- 4.36,
- 3.91,
- 3.97,
- 3.17,
- 1.24,
- 0.37,
- -0.13,
- 0.19,
- 0.74,
- 0.89,
- 0.86,
- 0.94,
- 1.29,
- 1.12,
- 1.52,
- 1.06,
- 0.69,
- 0.9,
- 0.4,
- 1.36,
- 1.14,
- 0.96,
- 1.07,
- 1.5,
- 1.41,
- 1.25,
- 0.5,
- 0.51,
- 1.38,
- 0.86,
- 1.8,
- 1.01,
- 3.4,
- 5.48,
- 4.83,
- 4.11,
- 3.21,
- 2.71,
- 1.92,
- 1.67,
- 0.51,
- 0.68,
- 0.96,
- 0.24,
- -0.19,
- -0.68,
- -0.73,
- -0.74,
- -1.76,
- -2.22,
- -2.46,
- -3.03,
- -2.78,
- -1.82,
- -2.31,
- -1.85,
- -1.58,
- -0.86,
- -0.12,
- 0.08,
- 0.46,
- 0.81,
- 0.17,
- 1.55,
- 1.72,
- 2.08,
- 1.86,
- 1.41,
- 1.51,
- 1.31,
- 2.57,
- 2.7,
- 3.15,
- 3.57,
- 3.14,
- 2.82,
- 3.56,
- 3.93,
- 2.55,
- 2.65,
- 2.09,
- 2.36,
- 1.24,
- 1.38,
- 1.22,
- 1.44,
- 1.1,
- -0.09,
- -0.81,
- -1.94,
- -2.51,
- -2.25,
- -0.57,
- 0.39,
- -1.93,
- -1.47,
- 1.36,
- -0.13,
- -2.61,
- -2.46,
- -2.02,
- -1.58,
- -1.5,
- -2.27,
- -1.52,
- -1.01,
- 2.16,
- 0.52,
- 0.71,
- 1.02,
- -0.9,
- -0.85,
- -1.85,
- -1.56,
- -0.7,
- -0.02,
- 0.35,
- -0.44,
- -0.87,
- -1.9,
- -2.14,
- -2.88,
- -1.48,
- -1.45,
- -1.25,
- -0.95,
- -0.62,
- -0.35,
- -0.1,
- -0.58,
- -0.34,
- 2.15,
- 3.21,
- 2.63,
- 1.95,
- 1.02,
- -0.11,
- -0.87,
- -1.54,
- -2.43,
- -2.84,
- -3.29,
- -4.07,
- -3.96,
- -3.55,
- -4.15,
- -2.85,
- -1.6,
- -3.61,
- -1.05,
- -0.5,
- -1.17,
- -0.19,
- 0.6,
- 0.1,
- -0.12,
- -0.19,
- -0.44,
- -0.58,
- -1.64,
- -2.83,
- -2.11,
- -2.0,
- -1.8,
- -2.41,
- -3.09,
- -2.05,
- -2.87,
- -2.52,
- -2.87,
- -4.21,
- -4.42,
- -3.76,
- -3.44,
- -3.57,
- -3.51,
- -3.35,
- -2.96,
- -2.87,
- -3.38,
- -2.9,
- -2.45,
- -2.4,
- -1.97,
- -2.14,
- -2.38,
- -2.69,
- -2.67,
- -2.49,
- -2.13,
- -2.41,
- -2.36,
- -2.02,
- -2.06,
- -1.41,
- -1.87,
- -1.57,
- -2.08,
- -2.61,
- -3.06,
- -3.59,
- -3.47,
- -3.4,
- -3.32,
- -3.43,
- -3.07,
- -3.15,
- -2.98,
- -2.04,
- -1.16,
- -0.59,
- -0.58,
- -0.39,
- -0.25,
- -0.07,
- 0.12,
- 0.71,
- 0.77,
- 1.18,
- 0.94,
- 0.86,
- 0.27,
- -0.07,
- 0.03,
- -0.05,
- 0.08,
- 0.7,
- 0.99,
- 0.67,
- 0.23,
- 0.57,
- 0.73,
- 0.32,
- 0.19,
- 0.0,
- 0.24,
- 0.72,
- 1.4,
- 1.86,
- 2.33,
- 2.89,
- 3.22,
- 3.68,
- 4.11,
- 4.5,
- 4.36,
- 4.19,
- 3.93,
- 3.86,
- 3.33,
- 4.07,
- 6.27,
- 5.73,
- 5.65,
- 5.2,
- 5.12,
- 5.11,
- 4.94,
- 4.7,
- 4.43,
- 4.21,
- 3.55,
- 2.83,
- 2.67,
- 3.79,
- 4.13,
- 4.13,
- 4.49,
- 4.48,
- 4.19,
- 3.86,
- 3.54,
- 2.27,
- 1.45,
- 0.26,
- -1.1,
- 0.69,
- 0.94,
- 0.59,
- 0.29,
- 0.55,
- 1.28,
- 1.04,
- 1.05,
- 1.3,
- 0.85,
- 1.13,
- 0.94,
- 0.61,
- 0.58,
- 0.86,
- 1.39,
- 0.55,
- 1.39,
- 2.0,
- 0.75,
- 1.17,
- 0.91,
- 0.28,
- -0.21,
- -0.37,
- -0.41,
- -0.85,
- -0.8,
- -0.06,
- -0.82,
- -0.32,
- -0.09,
- -0.05,
- 0.12,
- 0.7,
- 0.75,
- 1.11,
- 1.61,
- 2.15,
- 2.32,
- 2.68,
- 2.89,
- 2.79,
- 3.04,
- 3.17,
- 3.19,
- 2.95,
- 2.4,
- 1.84,
- 1.13,
- 0.51,
- 0.32,
- 0.82,
- 0.66,
- 0.46,
- 0.71,
- 2.99,
- 3.57,
- 3.14,
- 3.27,
- 2.64,
- 1.68,
- 1.85,
- 2.87,
- 3.31,
- 3.93,
- 3.45,
- 3.53,
- 3.69,
- 3.06,
- 2.85,
- 3.7,
- 4.91,
- 5.19,
- 5.03,
- 4.5,
- 5.3,
- 4.58,
- 5.68,
- 5.34,
- 5.26,
- 5.18,
- 5.19,
- 4.92,
- 4.42,
- 4.25,
- 3.05,
- 1.65,
- 0.27,
- -0.36,
- -0.26,
- 0.2,
- 0.55,
- 0.95,
- 1.09,
- 1.15,
- 1.29,
- 1.62,
- 0.84,
- 0.82,
- 0.42,
- 0.81,
- 0.78,
- 0.62,
- 1.21,
- 1.26,
- 0.92,
- 0.79,
- 0.62,
- 0.57,
- 0.15,
- 1.39,
- 1.64,
- 1.05,
- 2.9,
- 0.9,
- 4.12,
- 6.36,
- 5.63,
- 3.68,
- 3.18,
- 2.49,
- 2.94,
- 1.91,
- 1.46,
- 0.93,
- 0.27,
- 0.5,
- 0.33,
- -0.25,
- -0.19,
- -0.48,
- -0.68,
- -1.82,
- -2.1,
- -1.32,
- -1.09,
- -1.34,
- -1.51,
- -2.17,
- -2.24,
- -1.8,
- -1.06,
- -0.51,
- 0.19,
- 1.78,
- 1.51,
- 1.43,
- 1.62,
- 1.96,
- 1.96,
- 1.89,
- 1.56,
- 1.61,
- 2.46,
- 2.84,
- 2.84,
- 3.03,
- 2.99,
- 2.88,
- 2.37,
- 2.28,
- 2.67,
- 2.33,
- 2.37,
- 2.28,
- 1.31,
- 1.2,
- 0.71,
- 0.92,
- 1.04,
- 0.49,
- -0.63,
- -1.85,
- -1.89,
- -3.27,
- -3.35,
- -0.04,
- -1.78,
- -0.85,
- -0.54,
- -1.3,
- 0.81,
- -2.4,
- -1.72,
- -1.36,
- -1.53,
- -0.83,
- 0.18,
- 1.03,
- -0.02,
- 0.77,
- 0.0,
- -1.28,
- -0.08,
- -0.97,
- -0.99,
- -2.5,
- -3.39,
- -0.42,
- -0.63,
- -4.21,
- -3.39,
- 0.93,
- -1.11,
- 0.39,
- -0.63,
- -0.63,
- -0.93,
- -1.27,
- -1.12,
- -0.89,
- -0.52,
- -0.44,
- -0.01,
- 1.88,
- 1.7,
- 1.7,
- 1.36,
- 0.78,
- 0.16,
- -0.69,
- -1.25,
- -1.18,
- -1.99,
- -2.74,
- -2.96,
- -3.62,
- -2.28,
- -1.31,
- -1.58,
- -2.7,
- -1.33,
- -0.79,
- -0.1,
- 0.25,
- 0.54,
- 0.87,
- 1.01,
- 0.78,
- 0.42,
- 0.19,
- -0.71,
- -1.31,
- -1.95,
- -2.38,
- -2.43,
- -2.32,
- -2.51,
- -2.01,
- -1.57,
- -2.49,
- -2.6,
- -2.88,
- -3.08,
- -2.78,
- -3.77,
- -3.73,
- -3.48,
- -3.59,
- -3.26,
- -2.79,
- -2.94,
- -3.58,
- -3.34,
- -2.51,
- -2.72,
- -2.48,
- -2.61,
- -2.14,
- -2.45,
- -2.31,
- -2.3,
- -2.64,
- -2.68,
- -2.39,
- -2.22,
- -2.0,
- -1.84,
- -2.21,
- -2.04,
- -1.51,
- -2.12,
- -2.95,
- -3.07,
- -3.56,
- -3.69,
- -3.69,
- -3.35,
- -3.21,
- -2.78,
- -2.16,
- -1.75,
- -1.47,
- -1.75,
- -1.56,
- -1.35,
- -1.08,
- -0.98,
- -0.47,
- 0.1,
- 0.26,
- 0.34,
- 0.54,
- -0.02,
- -0.13,
- 0.22,
- 0.34,
- 0.44,
- 0.71,
- 0.74,
- 0.72,
- 0.19,
- 0.29,
- 0.66,
- 0.36,
- 0.4,
- 0.45,
- -0.15,
- -0.47,
- -0.11,
- 0.65,
- 1.15,
- 1.55,
- 1.72,
- 1.75,
- 2.03,
- 2.68,
- 2.85,
- 2.48,
- 2.07,
- 3.16,
- 3.27,
- 4.54,
- 4.73,
- 4.71,
- 4.64,
- 4.37,
- 4.23,
- 4.25,
- 4.24,
- 4.35,
- 3.95,
- 3.66,
- 3.43,
- 2.97,
- 2.92,
- 0.13,
- 3.6,
- 4.36,
- 3.84,
- 3.61,
- 3.85,
- 4.18,
- 4.02,
- 3.49,
- 2.66,
- 1.41,
- 0.21,
- -0.34,
- 1.45,
- 0.13,
- 0.34,
- 0.33,
- 0.69,
- 0.11,
- 1.06,
- 0.84,
- 1.16,
- 0.9,
- 1.0,
- 1.08,
- 0.95,
- 0.96,
- 0.7,
- 0.75,
- 0.5,
- 1.32,
- 0.92,
- 0.91,
- 1.48,
- 1.53,
- 0.74,
- 0.66,
- 0.08,
- -0.19,
- -0.31,
- -0.86,
- -0.95,
- -0.61,
- -0.61,
- -0.14,
- 0.16,
- 0.46,
- 0.89,
- 1.45,
- 1.67,
- 2.28,
- 2.62,
- 2.91,
- 2.93,
- 2.9,
- 3.07,
- 2.94,
- 2.49,
- 2.19,
- 1.65,
- 1.33,
- 1.04,
- 0.54,
- 0.28,
- 0.67,
- 1.12,
- 1.02,
- 0.92,
- 1.93,
- 3.25,
- 3.47,
- 3.18,
- 3.67,
- 3.42,
- 4.26,
- 4.02,
- 3.94,
- 4.18,
- 3.97,
- 4.13,
- 3.72,
- 3.72,
- 3.88,
- 4.87,
- 5.49,
- 5.69,
- 5.62,
- 5.69,
- 5.68,
- 5.18,
- 5.29,
- 5.81,
- 5.92,
- 5.56,
- 5.63,
- 5.25,
- 4.36,
- 4.2,
- 4.15,
- 2.78,
- 1.74,
- -0.61,
- 0.52,
- 0.08,
- -0.04,
- 0.07,
- 0.67,
- 0.91,
- 0.95,
- 1.22,
- 0.99,
- 0.59,
- 1.0,
- 1.16,
- 0.88,
- 0.7,
- 0.95,
- 0.96,
- 0.95,
- 0.89,
- 1.53,
- -0.16,
- -0.15,
- 0.75,
- 1.56,
- 0.39,
- 0.21,
- 2.66,
- 0.38,
- 1.46,
- 5.19,
- 6.08,
- 3.98,
- 3.35,
- 3.3,
- 2.31,
- 1.85,
- 2.57,
- 1.76,
- 0.26,
- 0.33,
- 0.3,
- 0.64,
- 0.41,
- 0.04,
- -0.45,
- -0.46,
- -0.11,
- -0.07,
- -0.12,
- -0.69,
- -0.75,
- -0.45,
- -1.23,
- -1.22,
- -1.36,
- -0.79,
- 0.35,
- 1.5,
- 2.0,
- 1.69,
- 1.86,
- 1.93,
- 1.96,
- 1.86,
- 1.48,
- 1.41,
- 2.46,
- 2.95,
- 3.12,
- 3.42,
- 3.42,
- 3.25,
- 3.1,
- 3.12,
- 2.58,
- 1.59,
- 2.82,
- 3.46,
- 3.27,
- 2.36,
- 2.19,
- 1.22,
- 1.35,
- 0.46,
- 0.03,
- -0.2,
- -1.17,
- -2.13,
- -2.22,
- -3.5,
- 0.45,
- -1.04,
- -0.25,
- -0.57,
- -0.48,
- -1.65,
- -1.17,
- -1.13,
- -1.19,
- 0.47,
- 0.78,
- -0.03,
- 0.05,
- 0.39,
- -0.02,
- -0.5,
- -1.39,
- -0.29,
- -3.34,
- -2.8,
- 0.3,
- -0.46,
- 0.72,
- 1.18,
- 1.04,
- -1.09,
- -0.83,
- -0.43,
- 0.9,
- -1.07,
- -1.36,
- -2.12,
- -2.06,
- -1.8,
- -2.03,
- -1.12,
- -0.09,
- 0.68,
- -0.21,
- -0.02,
- 0.96,
- 0.63,
- 0.31,
- 0.06,
- -0.32,
- -0.29,
- -0.6,
- -1.61,
- -1.36,
- -1.14,
- -0.84,
- -0.46,
- 0.83,
- 1.09,
- 0.61,
- 1.31,
- 1.38,
- 0.08,
- 0.23,
- 0.7,
- 1.16,
- 0.88,
- 0.51,
- -0.26,
- -0.63,
- -1.38,
- -2.14,
- -3.5,
- -3.35,
- -2.03,
- -1.79,
- -1.9,
- -1.8,
- -2.13,
- -2.43,
- -2.43,
- -2.76,
- -2.76,
- -2.81,
- -2.95,
- -2.44,
- -2.11,
- -2.47,
- -2.19,
- -2.57,
- -1.67,
- -0.78,
- -1.21,
- -2.16,
- -2.48,
- -2.81,
- -2.35,
- -1.68,
- -2.45,
- -2.76,
- -2.52,
- -2.48,
- -2.74,
- -2.89,
- -3.02,
- -2.96,
- -2.79,
- -2.68,
- -2.93,
- -3.34,
- -3.34,
- -3.55,
- -3.94,
- -4.02,
- -3.78,
- -3.71,
- -3.28,
- -2.7,
- -2.66,
- -2.57,
- -2.61,
- -2.48,
- -2.11,
- -1.8,
- -1.8,
- -1.55,
- -1.26,
- -0.83,
- -0.5,
- -0.45,
- -0.68,
- -0.79,
- -0.45,
- -0.19,
- 0.1,
- 0.36,
- 0.57,
- 0.63,
- 0.32,
- 0.31,
- 0.71,
- 0.67,
- 0.92,
- 1.03,
- 0.58,
- 0.39,
- 0.23,
- 0.21,
- 0.39,
- 0.9,
- 1.25,
- 1.04,
- 1.1,
- 1.25,
- 1.37,
- 2.0,
- 2.7,
- 2.67,
- 2.68,
- 3.19,
- 3.68,
- 3.51,
- 3.49,
- 3.21,
- 2.72,
- 2.36,
- 2.51,
- 2.49,
- 2.31,
- 1.95,
- 1.71,
- 1.93,
- 2.56,
- 4.2,
- 0.31,
- 3.38,
- 3.95,
- 3.66,
- 3.31,
- 3.38,
- 3.26,
- 3.23,
- 2.81,
- 2.24,
- 1.14,
- -0.05,
- -0.76,
- 0.88,
- -0.71,
- -0.36,
- 0.37,
- -0.21,
- 0.01,
- 0.67,
- 0.61,
- 0.79,
- 0.95,
- 1.02,
- 0.94,
- 0.62,
- 0.57,
- 0.76,
- 0.91,
- 1.06,
- 1.05,
- 0.94,
- 0.79,
- 0.92,
- 0.93,
- 0.87,
- 0.78,
- 0.43,
- 0.06,
- -0.24,
- -2.03,
- -0.39,
- 0.26,
- 0.21,
- -0.33,
- 0.07,
- 0.37,
- 0.34,
- 1.24,
- 2.11,
- 2.56,
- 3.0,
- 3.18,
- 3.36,
- 3.59,
- 3.46,
- 3.42,
- 3.16,
- 2.82,
- 2.08,
- 1.49,
- 0.9,
- 0.58,
- 0.28,
- 0.68,
- 0.99,
- 1.96,
- 1.75,
- 1.74,
- 1.35,
- 1.41,
- 3.25,
- 3.66,
- 3.58,
- 4.75,
- 5.39,
- 4.44,
- 4.15,
- 4.3,
- 4.13,
- 4.15,
- 3.38,
- 3.77,
- 4.08,
- 4.61,
- 4.98,
- 5.03,
- 4.84,
- 4.98,
- 5.25,
- 5.23,
- 6.37,
- 5.8,
- 6.02,
- 5.62,
- 4.82,
- 4.42,
- 4.03,
- 2.21,
- 1.71,
- 0.47,
- 0.99,
- -0.11,
- 0.55,
- -0.21,
- 0.21,
- -0.02,
- 0.65,
- 0.55,
- 0.85,
- 0.84,
- 0.8,
- 0.65,
- 0.79,
- 0.67,
- 0.8,
- 0.79,
- 1.03,
- 0.46,
- 0.78,
- 0.08,
- 0.22,
- 0.48,
- 2.93,
- 1.98,
- -0.59,
- -1.36,
- -0.81,
- -0.2,
- 2.64,
- 5.23,
- 5.54,
- 3.82,
- 3.03,
- 3.47,
- 4.41,
- 3.0,
- 2.75,
- 2.97,
- 1.02,
- 1.02,
- 0.42,
- 0.43,
- 0.62,
- 0.24,
- 0.03,
- 0.43,
- 0.29,
- -0.23,
- 0.04,
- -0.02,
- -0.73,
- -1.08,
- -0.5,
- -0.72,
- -0.48,
- -0.66,
- 0.06,
- 0.39,
- 1.52,
- 2.4,
- 2.29,
- 1.83,
- 1.63,
- 1.81,
- 1.52,
- 1.36,
- 2.21,
- 2.37,
- 3.12,
- 3.23,
- 3.3,
- 3.56,
- 3.33,
- 3.23,
- 3.17,
- 3.42,
- 3.04,
- 3.12,
- 2.85,
- 2.72,
- 2.59,
- 2.07,
- 0.61,
- 0.25,
- 0.6,
- 0.54,
- 0.81,
- 0.12,
- -0.96,
- -2.55,
- -1.56,
- -1.17,
- -0.15,
- -0.01,
- -1.32,
- 0.21,
- -0.92,
- -0.58,
- -0.51,
- 0.93,
- 0.99,
- 0.04,
- -0.03,
- -0.6,
- -0.48,
- -0.27,
- -0.82,
- -0.89,
- -3.5,
- -1.5,
- -1.67,
- 0.42,
- -1.42,
- 1.34,
- -0.41,
- -0.73,
- -0.11,
- 0.69,
- 2.04,
- -0.62,
- -0.69,
- -1.02,
- -0.02,
- 0.58,
- -2.37,
- -2.76,
- -0.77,
- -0.8,
- -2.0,
- -1.4,
- -0.65,
- -0.53,
- 0.21,
- 0.49,
- -0.01,
- -0.64,
- -0.86,
- -0.17,
- -0.86,
- -0.63,
- 0.03,
- -0.13,
- 0.46,
- 2.44,
- 4.05,
- 2.58,
- 1.46,
- 1.71,
- 2.08,
- 1.27,
- 1.08,
- 0.89,
- 0.7,
- 0.62,
- -0.49,
- -1.33,
- -1.89,
- -2.26,
- -1.87,
- -2.76,
- -2.71,
- -1.83,
- -2.31,
- -2.51,
- -2.32,
- -1.73,
- -1.53,
- -2.42,
- -2.5,
- -2.31,
- -1.57,
- -0.41,
- -0.51,
- -0.59,
- -0.53,
- -0.17,
- -0.53,
- -0.9,
- -0.74,
- -0.79,
- -2.07,
- -2.51,
- -2.33,
- -1.97,
- -2.55,
- -2.6,
- -2.36,
- -2.9,
- -3.26,
- -3.35,
- -3.55,
- -3.44,
- -3.3,
- -3.82,
- -4.05,
- -3.97,
- -3.92,
- -4.05,
- -4.21,
- -4.16,
- -3.86,
- -3.64,
- -3.48,
- -3.33,
- -3.0,
- -2.79,
- -2.71,
- -2.74,
- -2.97,
- -2.89,
- -2.46,
- -2.17,
- -1.77,
- -1.57,
- -1.73,
- -1.91,
- -1.99,
- -2.01,
- -1.69,
- -1.27,
- -0.9,
- -0.44,
- -0.43,
- -0.45,
- 0.18,
- 0.73,
- 0.63,
- 0.83,
- 0.79,
- 0.27,
- 0.24,
- 0.41,
- 0.65,
- 1.06,
- 1.37,
- 1.46,
- 1.59,
- 1.3,
- 1.45,
- 1.89,
- 2.3,
- 2.67,
- 2.99,
- 3.26,
- 3.68,
- 4.05,
- 4.1,
- 3.82,
- 3.12,
- 2.58,
- 2.46,
- 1.99,
- 1.48,
- 0.74,
- -0.12,
- -0.07,
- 0.46,
- 1.69,
- 2.56,
- 0.18,
- 1.63,
- 2.31,
- 2.88,
- 3.33,
- 3.24,
- 2.76,
- 2.64,
- 2.63,
- 2.54,
- 1.88,
- -0.61,
- 0.88,
- -0.48,
- -0.55,
- -0.06,
- -0.65,
- -0.48,
- -0.18,
- 0.2,
- 0.14,
- 0.27,
- 0.64,
- 0.89,
- 0.88,
- 0.51,
- 0.65,
- 0.77,
- 1.01,
- 0.74,
- 0.79,
- 0.58,
- 0.16,
- 0.08,
- 0.3,
- 0.29,
- 0.27,
- 0.57,
- 0.04,
- -1.12,
- -0.52,
- -0.61,
- -0.62,
- 0.86,
- 0.67,
- -0.11,
- -0.87,
- -0.83,
- -0.07,
- 0.57,
- 1.39,
- 2.22,
- 3.21,
- 3.89,
- 4.29,
- 3.88,
- 3.51,
- 3.83,
- 3.48,
- 2.77,
- 1.01,
- 0.24,
- 0.11,
- 0.06,
- 0.01,
- 0.58,
- 0.71,
- 0.4,
- 0.06,
- 0.41,
- 1.36,
- 2.11,
- 3.35,
- 4.27,
- 4.45,
- 4.65,
- 4.59,
- 4.51,
- 4.45,
- 4.47,
- 4.68,
- 5.06,
- 4.34,
- 4.27,
- 4.2,
- 4.42,
- 5.02,
- 4.65,
- 4.8,
- 5.32,
- 6.3,
- 6.48,
- 6.84,
- 6.21,
- 5.74,
- 5.8,
- 5.61,
- 3.55,
- 1.97,
- 0.83,
- 0.53,
- -0.54,
- -0.8,
- -0.15,
- 0.38,
- 0.75,
- -0.25,
- 0.13,
- 0.4,
- 0.44,
- 0.41,
- 0.44,
- 0.4,
- 0.52,
- 0.82,
- 0.8,
- 0.98,
- 1.43,
- 1.01,
- 1.05,
- 1.22,
- 0.92,
- 2.64,
- 3.77,
- 2.02,
- 0.08,
- -1.15,
- 1.15,
- 0.68,
- 2.07,
- 5.36,
- 5.45,
- 3.57,
- 4.81,
- 4.63,
- 3.68,
- 3.33,
- 3.13,
- 3.01,
- 3.3,
- 2.69,
- 1.85,
- 1.7,
- 1.13,
- 0.8,
- 0.23,
- 0.35,
- 0.1,
- 0.14,
- -0.3,
- -0.59,
- -0.4,
- -0.42,
- -1.13,
- -0.68,
- -0.66,
- -0.58,
- -0.1,
- 0.25,
- 0.71,
- 1.51,
- 2.35,
- 2.65,
- 1.76,
- 1.04,
- 1.32,
- 1.96,
- 2.31,
- 3.51,
- 3.19,
- 3.45,
- 3.07,
- 3.24,
- 3.18,
- 3.1,
- 3.49,
- 3.4,
- 3.05,
- 2.98,
- 2.44,
- 1.83,
- 1.8,
- 1.32,
- 0.77,
- 0.59,
- 0.52,
- 0.73,
- 0.53,
- 0.73,
- 0.44,
- 0.74,
- -0.41,
- -0.01,
- -0.51,
- 0.59,
- 0.21,
- 0.67,
- -0.01,
- 0.32,
- 0.28,
- -0.6,
- -0.06,
- 0.46,
- -0.21,
- -0.48,
- -0.1,
- -0.33,
- 0.98,
- -1.06,
- -2.38,
- -1.33,
- -1.0,
- -0.12,
- 2.94,
- -0.36,
- -1.57,
- 0.51,
- -0.28,
- 0.09,
- 1.69,
- -1.12,
- 1.13,
- 1.03,
- 2.4,
- 1.56,
- 0.37,
- -1.06,
- 1.52,
- -4.9,
- -1.49,
- -3.0,
- -4.07,
- -1.86,
- -0.53,
- 0.15,
- 0.25,
- -0.33,
- -0.1,
- -0.39,
- 0.42,
- 1.67,
- 1.0,
- 0.77,
- 3.72,
- 4.19,
- 1.13,
- 1.99,
- 2.96,
- 2.49,
- 2.36,
- 2.86,
- 2.9,
- 2.49,
- 1.83,
- 0.98,
- -0.1,
- -1.51,
- -1.59,
- -1.93,
- -2.99,
- -4.46,
- -3.68,
- -3.2,
- -2.73,
- -2.63,
- -2.52,
- -2.36,
- -1.16,
- -1.75,
- -1.81,
- -0.53,
- 0.74,
- -0.37,
- -0.03,
- -0.02,
- -0.74,
- -1.17,
- -1.49,
- -1.96,
- 0.04,
- 0.26,
- -0.93,
- -2.65,
- -3.13,
- -3.14,
- -3.14,
- -3.27,
- -3.36,
- -3.54,
- -3.42,
- -3.28,
- -3.18,
- -3.26,
- -4.13,
- -3.81,
- -3.92,
- -3.68,
- -4.0,
- -4.31,
- -3.69,
- -4.28,
- -4.28,
- -3.99,
- -3.76,
- -3.52,
- -3.19,
- -2.99,
- -3.21,
- -4.08,
- -3.9,
- -3.93,
- -3.66,
- -2.85,
- -2.66,
- -2.46,
- -2.43,
- -2.69,
- -3.08,
- -3.78,
- -3.17,
- -2.41,
- -1.92,
- -1.37,
- -1.29,
- -0.72,
- -0.16,
- 0.11,
- 0.38,
- 0.54,
- 0.28,
- 0.08,
- 0.05,
- 0.4,
- 0.82,
- 1.11,
- 1.23,
- 1.64,
- 2.08,
- 2.23,
- 2.74,
- 3.26,
- 3.5,
- 3.67,
- 4.08,
- 5.31,
- 5.24,
- 5.28,
- 4.91,
- 4.15,
- 3.67,
- 3.2,
- 2.3,
- 1.93,
- 1.61,
- 1.25,
- 0.49,
- 0.19,
- 0.6,
- 0.01,
- 0.18,
- 0.6,
- 0.83,
- 1.36,
- 1.74,
- 2.11,
- 2.72,
- 2.36,
- 2.44,
- 3.03,
- 3.18,
- 1.39,
- 0.43,
- -0.47,
- -0.37,
- 0.28,
- -0.29,
- 0.04,
- -0.02,
- -0.16,
- -0.41,
- -0.55,
- -0.37,
- -0.22,
- 0.42,
- 0.49,
- 0.24,
- 0.44,
- 0.36,
- 0.23,
- -0.16,
- 0.28,
- 0.1,
- 0.11,
- 0.64,
- 0.45,
- 0.8,
- 0.5,
- 0.53,
- 0.82,
- 0.4,
- -0.29,
- -0.68,
- 0.18,
- 0.04,
- 0.01,
- 0.13,
- 0.05,
- -2.33,
- -2.12,
- -0.67,
- 0.57,
- 1.71,
- 2.7,
- 3.9,
- 4.24,
- 4.62,
- 4.56,
- 4.26,
- 3.92,
- 3.34,
- 1.58,
- -0.42,
- -0.4,
- -0.58,
- -0.38,
- -0.02,
- 0.13,
- 0.59,
- 1.0,
- -0.17,
- 2.55,
- 3.51,
- 3.69,
- 4.04,
- 4.31,
- 4.61,
- 4.79,
- 4.92,
- 4.85,
- 4.8,
- 4.86,
- 4.94,
- 5.0,
- 4.37,
- 3.99,
- 3.88,
- 5.03,
- 5.53,
- 5.53,
- 5.92,
- 6.24,
- 6.43,
- 6.63,
- 6.57,
- 6.15,
- 5.88,
- 5.36,
- 4.7,
- 3.83,
- 1.97,
- 0.74,
- -0.29,
- -0.32,
- -0.64,
- -0.33,
- -0.26,
- -0.16,
- -0.02,
- -0.59,
- -0.71,
- -0.18,
- 0.24,
- 0.44,
- 0.47,
- 0.43,
- 0.75,
- 1.06,
- 0.79,
- 0.37,
- 0.42,
- 0.52,
- 1.01,
- 2.44,
- 4.32,
- 1.65,
- 0.27,
- -0.59,
- 1.9,
- 0.6,
- 2.67,
- 5.21,
- 4.57,
- 5.72,
- 5.56,
- 5.24,
- 4.7,
- 3.89,
- 3.44,
- 3.83,
- 3.66,
- 3.22,
- 3.76,
- 3.51,
- 2.81,
- 1.66,
- 0.85,
- 1.28,
- 0.69,
- -0.47,
- -0.52,
- -0.24,
- 0.33,
- 0.13,
- -0.17,
- -0.31,
- -0.82,
- 0.77,
- 0.54,
- 0.31,
- 0.46,
- 0.2,
- 0.94,
- 1.2,
- 1.42,
- 1.6,
- 1.93,
- 1.66,
- 1.98,
- 2.4,
- 2.89,
- 2.75,
- 2.76,
- 2.84,
- 2.87,
- 2.53,
- 3.16,
- 3.26,
- 2.89,
- 2.8,
- 2.16,
- 1.8,
- 1.45,
- 1.65,
- 0.99,
- 0.5,
- 0.29,
- 0.18,
- 0.47,
- 0.92,
- 0.44,
- 0.93,
- 1.12,
- 1.13,
- 0.7,
- -0.12,
- 0.16,
- 0.4,
- 1.95,
- 1.62,
- 0.74,
- 0.38,
- 2.14,
- 1.8,
- 0.79,
- 1.38,
- 0.7,
- 0.17,
- 0.53,
- -1.09,
- -1.75,
- -0.69,
- -0.34,
- 1.07,
- -0.1,
- 0.62,
- -0.54,
- 0.25,
- 0.73,
- 0.4,
- -1.31,
- -0.79,
- -1.92,
- -1.18,
- 1.21,
- 0.34,
- -0.53,
- -3.12,
- -1.67,
- -0.82,
- 0.22,
- 0.0,
- -0.22,
- -0.73,
- -2.78,
- -2.53,
- -1.32,
- -0.34,
- 1.05,
- 0.79,
- 0.34,
- 0.72,
- 1.12,
- 2.67,
- 0.77,
- 3.79,
- 4.17,
- 3.12,
- 3.51,
- 3.22,
- 2.58,
- 2.72,
- 2.73,
- 2.67,
- 2.02,
- 1.78,
- 0.71,
- 0.46,
- -0.59,
- -0.84,
- 0.26,
- -0.57,
- -2.24,
- -1.53,
- -1.14,
- -1.34,
- -0.44,
- -0.47,
- -0.42,
- -0.63,
- 0.15,
- 0.46,
- 0.82,
- 0.5,
- -0.74,
- -1.01,
- -1.13,
- -1.45,
- -2.09,
- -2.51,
- -1.66,
- 0.08,
- -1.43,
- -2.32,
- -2.93,
- -2.76,
- -2.8,
- -2.76,
- -3.08,
- -3.76,
- -3.86,
- -3.43,
- -3.33,
- -3.55,
- -3.41,
- -3.79,
- -4.16,
- -5.27,
- -4.23,
- -3.36,
- -4.06,
- -4.07,
- -4.51,
- -4.4,
- -4.03,
- -3.76,
- -3.72,
- -3.73,
- -2.49,
- -1.8,
- -2.29,
- -3.1,
- -2.81,
- -3.27,
- -3.08,
- -2.99,
- -2.73,
- -2.83,
- -3.28,
- -2.77,
- -2.6,
- -3.14,
- -2.5,
- -1.84,
- -1.36,
- -0.59,
- -0.12,
- 0.1,
- -0.27,
- -0.99,
- -0.93,
- -0.26,
- 0.01,
- -0.08,
- 0.44,
- 0.94,
- 1.69,
- 1.94,
- 2.12,
- 2.64,
- 3.11,
- 3.52,
- 3.78,
- 3.75,
- 3.74,
- 4.19,
- 4.18,
- 4.28,
- 4.56,
- 4.21,
- 4.2,
- 3.68,
- 2.99,
- 1.87,
- 1.27,
- 2.1,
- 2.48,
- 1.6,
- 1.49,
- 1.17,
- 1.21,
- 1.95,
- 1.98,
- 2.18,
- 1.7,
- 1.81,
- 1.85,
- 2.09,
- 2.9,
- 3.82,
- 4.57,
- 2.95,
- -0.66,
- -1.52,
- 0.11,
- 0.87,
- 0.39,
- 0.3,
- -0.6,
- -0.71,
- -0.76,
- -0.63,
- -0.48,
- -0.75,
- -0.41,
- 0.28,
- 0.44,
- 0.05,
- 0.21,
- 0.63,
- 0.31,
- 0.66,
- 0.45,
- 0.33,
- 0.37,
- 0.62,
- 0.62,
- 1.01,
- 0.84,
- 0.87,
- 1.05,
- 0.66,
- 0.41,
- 0.43,
- 0.5,
- -0.49,
- -0.62,
- -0.86,
- -0.34,
- -0.59,
- -0.47,
- 2.34,
- 1.68,
- 2.69,
- 3.58,
- 4.48,
- 5.15,
- 5.29,
- 4.77,
- 4.8,
- 4.31,
- 2.04,
- -0.51,
- -1.22,
- -1.23,
- -1.06,
- -0.39,
- 1.22,
- 0.97,
- -0.97,
- 3.86,
- 3.27,
- 3.37,
- 3.64,
- 4.12,
- 4.39,
- 4.82,
- 5.16,
- 4.93,
- 4.84,
- 5.02,
- 5.11,
- 4.93,
- 5.05,
- 5.32,
- 5.65,
- 5.29,
- 4.9,
- 5.19,
- 5.74,
- 5.76,
- 5.98,
- 6.65,
- 6.85,
- 7.06,
- 6.92,
- 6.66,
- 6.08,
- 5.2,
- 4.39,
- 3.79,
- 2.55,
- 1.3,
- 0.01,
- -0.45,
- -1.4,
- -0.84,
- -0.32,
- -0.01,
- 0.1,
- -1.19,
- -0.4,
- 0.43,
- 0.57,
- 0.16,
- 0.17,
- 0.42,
- 0.62,
- 0.27,
- 0.42,
- 1.01,
- -1.08,
- 0.66,
- 1.69,
- 1.25,
- 1.39,
- 0.05,
- -0.53,
- 0.95,
- 1.29,
- 0.71,
- 2.91,
- 3.63,
- 4.53,
- 5.14,
- 5.24,
- 5.45,
- 5.33,
- 4.98,
- 4.7,
- 4.57,
- 3.94,
- 3.56,
- 3.28,
- 3.6,
- 4.0,
- 3.08,
- 1.19,
- 0.98,
- 0.48,
- 0.0,
- -0.09,
- -0.88,
- -0.74,
- -0.5,
- -0.85,
- -0.58,
- -0.25,
- 0.21,
- 0.72,
- 0.84,
- 0.5,
- 0.43,
- 0.6,
- 0.47,
- 0.52,
- 0.31,
- 0.81,
- 1.29,
- 1.79,
- 2.2,
- 2.22,
- 2.02,
- 2.21,
- 2.23,
- 2.69,
- 3.49,
- 2.76,
- 2.45,
- 2.07,
- 0.98,
- 0.51,
- 1.27,
- 0.33,
- 0.53,
- 0.33,
- 0.1,
- 0.33,
- 0.5,
- 1.03,
- 1.52,
- 1.8,
- 1.21,
- 0.58,
- 1.57,
- 0.76,
- -0.06,
- 0.48,
- 2.64,
- 2.12,
- 1.07,
- 0.56,
- 0.77,
- 0.37,
- 0.93,
- 1.01,
- 1.63,
- 1.1,
- 0.58,
- -1.23,
- -0.9,
- 2.13,
- -1.51,
- -0.71,
- -0.47,
- 0.57,
- 1.64,
- 1.17,
- 2.28,
- 1.2,
- 2.03,
- 0.28,
- 0.95,
- 0.92,
- -0.56,
- 0.11,
- 2.49,
- 0.52,
- 0.17,
- 0.51,
- -0.52,
- -0.73,
- -1.38,
- 0.15,
- -0.67,
- -1.43,
- -1.82,
- -3.17,
- 0.15,
- 1.92,
- 1.26,
- 0.64,
- 0.32,
- -0.39,
- 0.57,
- 0.47,
- 4.05,
- 3.52,
- 2.59,
- 2.42,
- 2.92,
- 2.64,
- 2.62,
- 2.95,
- 2.72,
- 1.85,
- 2.64,
- 1.9,
- 0.61,
- 0.89,
- 0.98,
- 1.1,
- 0.24,
- 0.69,
- 0.53,
- 0.54,
- -0.72,
- 0.24,
- 0.65,
- 0.25,
- 1.24,
- 1.98,
- 0.61,
- 0.99,
- 0.78,
- 0.61,
- 0.8,
- -0.1,
- -0.56,
- -0.59,
- -1.23,
- -1.96,
- -1.68,
- -2.88,
- -3.04,
- -2.73,
- -2.33,
- -2.13,
- -2.93,
- -3.36,
- -3.77,
- -3.92,
- -3.86,
- -3.27,
- -2.97,
- -2.83,
- -2.73,
- -3.63,
- -3.06,
- -3.44,
- -3.58,
- -3.32,
- -3.52,
- -3.55,
- -3.6,
- -3.56,
- -3.43,
- -1.83,
- -1.98,
- -2.01,
- -2.36,
- -1.99,
- -2.48,
- -2.53,
- -3.1,
- -2.6,
- -2.32,
- -1.99,
- -1.86,
- -1.62,
- -2.23,
- -3.39,
- -2.6,
- -2.16,
- -1.44,
- -1.22,
- -0.98,
- -0.71,
- -0.76,
- -1.02,
- -0.99,
- -0.43,
- -0.43,
- -0.07,
- 1.56,
- 1.4,
- 1.0,
- 1.3,
- 2.16,
- 2.77,
- 2.85,
- 2.69,
- 2.7,
- 2.87,
- 2.79,
- 2.9,
- 3.23,
- 3.47,
- 3.58,
- 3.6,
- 3.84,
- 4.2,
- 3.86,
- 3.05,
- 2.38,
- 2.05,
- 2.82,
- 3.12,
- 2.39,
- 2.09,
- 2.22,
- 2.19,
- 2.72,
- 2.6,
- 2.8,
- 2.88,
- 2.33,
- 1.85,
- 2.42,
- 3.71,
- 5.48,
- 2.13,
- 0.3,
- -0.65,
- -0.32,
- 0.69,
- -0.06,
- -0.44,
- -0.94,
- -0.97,
- -0.44,
- -0.65,
- -0.91,
- -1.04,
- -0.94,
- -0.53,
- -0.31,
- 0.66,
- 0.79,
- 0.91,
- 0.87,
- 0.09,
- 0.25,
- -0.21,
- 0.07,
- 0.77,
- 0.64,
- 1.0,
- 1.02,
- 0.98,
- 0.83,
- 0.58,
- 0.37,
- -0.27,
- 0.32,
- 0.24,
- -0.8,
- -1.34,
- -1.42,
- -1.48,
- -1.15,
- -0.3,
- 0.73,
- 1.46,
- 3.94,
- 5.23,
- 5.52,
- 6.0,
- 5.81,
- 5.55,
- 5.06,
- 3.49,
- -0.62,
- -2.14,
- -2.04,
- -1.45,
- 0.4,
- 1.6,
- 1.47,
- 4.35,
- 3.4,
- 2.94,
- 3.1,
- 3.53,
- 3.63,
- 4.1,
- 4.41,
- 4.62,
- 4.82,
- 5.15,
- 4.79,
- 4.96,
- 4.88,
- 5.11,
- 4.98,
- 4.99,
- 5.4,
- 5.53,
- 5.53,
- 4.95,
- 5.68,
- 6.11,
- 6.95,
- 7.08,
- 6.58,
- 6.38,
- 6.55,
- 6.04,
- 6.01,
- 6.13,
- 5.7,
- 5.14,
- 4.06,
- 3.0,
- 1.65,
- 0.96,
- 0.21,
- 0.58,
- 0.95,
- 0.66,
- 0.89,
- 0.53,
- 0.7,
- 1.05,
- 0.39,
- -0.29,
- -0.23,
- 0.31,
- 0.4,
- -0.16,
- -0.47,
- -0.43,
- 0.0,
- 0.05,
- 0.73,
- 0.82,
- 0.56,
- -0.09,
- -0.9,
- 0.71,
- 1.5,
- 2.37,
- 1.81,
- 3.43,
- 4.41,
- 4.22,
- 4.17,
- 4.3,
- 4.55,
- 4.82,
- 5.39,
- 4.91,
- 4.26,
- 3.71,
- 3.94,
- 4.27,
- 3.71,
- 3.3,
- 2.15,
- 0.5,
- -0.28,
- -0.57,
- -0.23,
- -0.72,
- -0.83,
- -1.28,
- -1.05,
- -0.37,
- -0.1,
- -0.16,
- 0.23,
- 0.62,
- 0.43,
- 0.3,
- 0.26,
- 0.35,
- 0.36,
- 0.7,
- 0.78,
- 1.07,
- 1.26,
- 1.12,
- 0.99,
- 1.15,
- 1.94,
- 2.07,
- 2.34,
- 2.23,
- 2.07,
- 2.06,
- 2.1,
- 1.83,
- 1.46,
- 0.92,
- 0.82,
- 0.05,
- 0.0,
- 0.28,
- 1.11,
- 0.86,
- 1.34,
- 2.03,
- 2.02,
- 2.32,
- 0.3,
- 1.48,
- 1.02,
- 0.28,
- 1.18,
- 1.62,
- 0.97,
- 1.29,
- 1.23,
- 1.18,
- 1.56,
- 1.66,
- 1.61,
- 2.16,
- 2.29,
- 1.19,
- 1.22,
- 1.21,
- -0.36,
- -0.25,
- 0.16,
- 0.26,
- 0.59,
- 1.12,
- 1.13,
- 0.77,
- 0.91,
- 1.31,
- 1.65,
- 0.76,
- -0.35,
- -0.09,
- -0.71,
- 1.12,
- 3.52,
- 4.53,
- 1.47,
- 0.28,
- 1.68,
- -0.1,
- -0.91,
- -1.66,
- -1.67,
- -0.58,
- -1.05,
- 2.28,
- 1.3,
- -1.84,
- -1.51,
- -3.31,
- 1.86,
- 4.75,
- 1.32,
- 3.28,
- 3.23,
- 2.59,
- 2.75,
- 2.58,
- 2.58,
- 2.26,
- 1.92,
- 2.5,
- 2.72,
- 2.51,
- 1.74,
- 2.34,
- 2.38,
- 1.58,
- 1.97,
- 2.02,
- 1.93,
- 2.25,
- 2.5,
- 1.39,
- 1.24,
- 1.08,
- 1.28,
- 1.9,
- 1.94,
- 2.3,
- 2.29,
- 2.47,
- 1.8,
- 0.23,
- -0.75,
- -1.77,
- -2.37,
- -2.81,
- -2.76,
- -3.51,
- -3.29,
- -3.49,
- -3.03,
- -2.7,
- -2.45,
- -2.9,
- -3.19,
- -3.7,
- -3.83,
- -2.78,
- -2.42,
- -1.68,
- -0.58,
- -0.44,
- -2.01,
- -2.55,
- -3.4,
- -3.83,
- -3.65,
- -3.31,
- -3.24,
- -2.77,
- -2.42,
- -2.29,
- -1.85,
- -1.71,
- -1.57,
- -1.2,
- -1.34,
- -1.3,
- -1.59,
- -1.91,
- -1.48,
- -1.25,
- -0.69,
- 0.03,
- -0.14,
- -1.19,
- -2.93,
- -2.44,
- -1.58,
- -1.06,
- -0.69,
- -0.66,
- -0.82,
- -0.73,
- -0.96,
- -0.71,
- 0.69,
- 1.05,
- 1.43,
- 1.24,
- 1.16,
- 1.19,
- 1.57,
- 2.11,
- 2.99,
- 2.85,
- 2.74,
- 2.56,
- 2.28,
- 2.37,
- 2.35,
- 2.95,
- 2.91,
- 2.65,
- 2.57,
- 3.06,
- 3.39,
- 2.85,
- 2.48,
- 3.18,
- 3.27,
- 3.17,
- 3.09,
- 2.8,
- 2.59,
- 2.52,
- 3.06,
- 3.58,
- 3.79,
- 3.46,
- 3.12,
- 2.66,
- 2.96,
- 3.73,
- 4.14,
- 3.05,
- -0.05,
- -0.1,
- -0.3,
- -0.39,
- 0.16,
- -0.97,
- -0.86,
- -0.86,
- -0.68,
- -0.77,
- -0.23,
- -0.71,
- -0.44,
- -0.09,
- -0.05,
- 0.93,
- 1.04,
- 0.72,
- 0.32,
- -0.05,
- -0.97,
- 0.3,
- 0.58,
- 0.23,
- 0.7,
- 0.97,
- 1.04,
- 0.76,
- 0.42,
- 0.17,
- 0.34,
- 0.23,
- -0.65,
- -0.19,
- -0.33,
- -1.37,
- -1.4,
- -1.47,
- -0.26,
- -1.09,
- -0.41,
- -0.48,
- 0.87,
- 3.13,
- 6.01,
- 6.45,
- 6.37,
- 5.9,
- 5.19,
- 3.8,
- 0.12,
- -3.5,
- -2.82,
- -1.53,
- 0.25,
- 2.33,
- 4.63,
- 3.45,
- 3.09,
- 3.08,
- 3.26,
- 3.33,
- 3.63,
- 3.96,
- 3.94,
- 3.97,
- 4.35,
- 4.5,
- 5.13,
- 5.16,
- 5.04,
- 5.1,
- 5.22,
- 5.23,
- 5.24,
- 5.62,
- 5.66,
- 5.92,
- 6.4,
- 6.67,
- 6.65,
- 6.75,
- 6.81,
- 6.2,
- 5.49,
- 5.63,
- 6.28,
- 5.98,
- 5.96,
- 5.61,
- 4.96,
- 4.28,
- 4.58,
- 1.76,
- 0.52,
- 1.45,
- 0.98,
- 0.78,
- 1.27,
- 1.31,
- 0.85,
- 0.53,
- 0.18,
- 0.43,
- 0.59,
- 1.08,
- 0.76,
- 0.65,
- -0.27,
- 0.12,
- -0.12,
- 1.44,
- 0.78,
- 0.07,
- 0.87,
- -0.97,
- 0.16,
- 0.79,
- 1.82,
- 3.95,
- 3.9,
- 3.21,
- 3.26,
- 3.56,
- 3.82,
- 3.97,
- 4.02,
- 4.52,
- 5.15,
- 5.13,
- 4.97,
- 4.91,
- 5.01,
- 5.5,
- 5.24,
- 4.5,
- 3.64,
- 2.32,
- 0.62,
- -1.15,
- -1.55,
- -1.36,
- -1.18,
- -1.07,
- -0.86,
- -0.88,
- -0.54,
- -1.02,
- -1.24,
- -1.0,
- -0.8,
- -0.19,
- 0.63,
- 0.82,
- 0.98,
- 0.58,
- 0.28,
- 0.38,
- 0.4,
- 0.34,
- 0.49,
- 0.82,
- 1.39,
- 1.78,
- 2.25,
- 1.74,
- 1.89,
- 1.79,
- 1.7,
- 1.74,
- 1.36,
- 1.33,
- 0.71,
- 0.17,
- 0.59,
- 0.93,
- 1.2,
- 1.58,
- 1.72,
- 2.41,
- 3.49,
- 4.11,
- 2.64,
- 1.12,
- 3.41,
- 0.85,
- -2.05,
- -2.93,
- -0.38,
- 2.0,
- 1.17,
- 2.18,
- 2.22,
- 2.27,
- 2.53,
- 2.74,
- 2.34,
- 1.41,
- 1.85,
- 2.92,
- -0.45,
- 0.5,
- 1.47,
- 0.87,
- 1.23,
- 1.42,
- 1.58,
- 2.04,
- 1.09,
- 1.87,
- 2.05,
- 0.88,
- 1.23,
- 0.15,
- -1.08,
- 2.46,
- 1.81,
- 2.2,
- 3.05,
- 0.38,
- 0.41,
- 0.34,
- 0.89,
- 1.74,
- 0.04,
- 0.02,
- -0.09,
- -1.45,
- 4.34,
- 3.55,
- 2.1,
- 2.18,
- 2.82,
- 4.05,
- 3.71,
- 0.64,
- 2.24,
- 2.75,
- 2.44,
- 3.0,
- 3.46,
- 3.19,
- 2.97,
- 2.35,
- 1.89,
- 2.47,
- 2.87,
- 2.37,
- 2.24,
- 2.15,
- 2.08,
- 2.08,
- 2.09,
- 2.18,
- 2.12,
- 1.96,
- 2.01,
- 2.14,
- 2.55,
- 3.07,
- 3.52,
- 3.17,
- 2.91,
- 2.86,
- 1.85,
- 0.01,
- -1.99,
- -2.73,
- -2.7,
- -3.43,
- -3.93,
- -3.09,
- -3.11,
- -3.21,
- -3.5,
- -2.73,
- -2.85,
- -2.63,
- -2.86,
- -3.11,
- -3.28,
- -2.92,
- -1.95,
- -1.22,
- -0.94,
- -1.01,
- -2.7,
- -2.31,
- -2.46,
- -2.98,
- -3.1,
- -2.67,
- -2.58,
- -3.3,
- -2.16,
- -2.7,
- -2.18,
- -1.05,
- 0.12,
- -0.59,
- -0.32,
- 1.03,
- 1.35,
- 1.2,
- 0.29,
- 0.24,
- 0.57,
- 0.56,
- 0.83,
- -0.06,
- -1.81,
- -2.5,
- -1.87,
- -1.43,
- -0.4,
- -0.09,
- 0.16,
- 0.03,
- -0.27,
- -0.27,
- 0.33,
- 1.01,
- 1.52,
- 2.19,
- 1.17,
- 0.92,
- 1.37,
- 2.26,
- 2.47,
- 3.07,
- 3.15,
- 3.3,
- 3.37,
- 3.05,
- 3.12,
- 2.88,
- 2.92,
- 3.07,
- 2.9,
- 2.75,
- 2.77,
- 2.76,
- 2.36,
- 2.54,
- 3.11,
- 3.13,
- 3.21,
- 3.24,
- 3.7,
- 3.1,
- 2.75,
- 3.79,
- 4.33,
- 3.82,
- 3.38,
- 3.04,
- 3.41,
- 4.07,
- 4.83,
- 4.76,
- 3.21,
- -0.45,
- 1.57,
- 0.68,
- -0.14,
- -0.75,
- -0.99,
- -1.1,
- -0.13,
- 0.42,
- 0.68,
- 0.81,
- 0.96,
- 1.11,
- 1.02,
- 0.89,
- 1.02,
- 0.55,
- 0.28,
- 0.54,
- 1.0,
- 0.3,
- 1.12,
- 0.69,
- 0.88,
- 0.97,
- 0.3,
- 0.54,
- 0.03,
- 0.61,
- 0.43,
- 0.26,
- -0.64,
- -0.98,
- 0.42,
- 0.55,
- -0.96,
- -2.78,
- -0.45,
- -2.0,
- -2.69,
- -0.86,
- 1.9,
- 2.32,
- 3.85,
- 6.4,
- 6.29,
- 6.39,
- 6.27,
- 6.45,
- 3.69,
- 0.8,
- -1.85,
- -1.12,
- 0.24,
- 1.81,
- 2.8,
- 2.9,
- 2.87,
- 3.1,
- 3.2,
- 3.1,
- 3.25,
- 3.1,
- 3.28,
- 3.09,
- 3.04,
- 3.45,
- 3.84,
- 3.5,
- 3.97,
- 4.66,
- 4.98,
- 5.08,
- 5.36,
- 5.68,
- 6.17,
- 5.88,
- 6.17,
- 6.4,
- 5.14,
- 5.58,
- 6.28,
- 6.58,
- 6.31,
- 5.54,
- 5.5,
- 5.79,
- 5.68,
- 5.69,
- 5.65,
- 5.48,
- 5.15,
- 2.22,
- 1.87,
- 0.96,
- 1.13,
- 0.49,
- 1.11,
- 1.86,
- 1.47,
- 1.12,
- 1.31,
- 1.22,
- 1.48,
- 1.52,
- 1.27,
- 1.4,
- 0.4,
- 1.65,
- -0.71,
- 0.54,
- 0.35,
- 0.35,
- -0.01,
- -0.05,
- 0.0,
- 1.94,
- 2.63,
- 2.31,
- 4.15,
- 2.7,
- 2.15,
- 2.93,
- 3.43,
- 3.49,
- 3.64,
- 4.24,
- 4.75,
- 4.98,
- 5.22,
- 5.68,
- 6.3,
- 6.51,
- 6.02,
- 5.74,
- 5.11,
- 4.12,
- 3.06,
- 0.2,
- -1.32,
- -1.46,
- -1.44,
- -1.23,
- -1.54,
- -1.61,
- -1.19,
- 0.04,
- -0.27,
- -0.58,
- -0.87,
- -1.31,
- -0.43,
- 0.1,
- 0.08,
- -0.02,
- 0.18,
- -0.01,
- -0.43,
- -0.85,
- 0.18,
- 1.25,
- 1.79,
- 2.42,
- 1.67,
- 1.73,
- 1.7,
- 1.54,
- 1.4,
- 1.15,
- 1.21,
- 1.47,
- 0.24,
- 0.6,
- 0.5,
- 1.02,
- 0.71,
- 1.05,
- 2.14,
- 3.09,
- 4.69,
- 5.3,
- 4.7,
- 3.18,
- 3.08,
- 1.71,
- 2.53,
- 0.49,
- -1.53,
- -1.71,
- -1.59,
- 0.69,
- -0.38,
- 0.33,
- 1.37,
- 3.31,
- 2.42,
- 1.36,
- 1.35,
- 0.96,
- 0.59,
- 0.17,
- 0.36,
- 0.77,
- 1.94,
- 2.11,
- 2.55,
- 2.62,
- 2.47,
- 2.09,
- 2.21,
- -1.69,
- 2.62,
- 1.84,
- 3.74,
- 1.58,
- 1.85,
- 1.54,
- 0.06,
- -0.08,
- -0.98,
- -0.14,
- 1.0,
- 1.77,
- 1.5,
- 1.37,
- 0.17,
- 0.89,
- 2.55,
- 2.95,
- 3.21,
- 3.5,
- 3.38,
- 2.98,
- 2.6,
- 4.48,
- 2.37,
- 0.49,
- 1.13,
- 3.57,
- 3.29,
- 3.13,
- 2.86,
- 3.13,
- 2.94,
- 1.97,
- 1.57,
- 1.84,
- 1.8,
- 2.23,
- 2.42,
- 2.82,
- 2.49,
- 1.93,
- 1.9,
- 2.02,
- 2.21,
- 1.9,
- 1.62,
- 1.76,
- 2.7,
- 3.31,
- 3.88,
- 4.39,
- 4.02,
- 0.18,
- -4.0,
- -3.26,
- -2.53,
- -2.0,
- -3.28,
- -2.73,
- -2.45,
- -2.65,
- -3.23,
- -2.84,
- -3.09,
- -2.98,
- -2.35,
- -2.39,
- -2.9,
- -2.73,
- -2.17,
- -1.35,
- -0.3,
- 0.24,
- -2.93,
- -2.18,
- -2.0,
- -1.82,
- -1.65,
- -1.8,
- -1.27,
- -2.16,
- -2.98,
- -2.57,
- -1.87,
- -0.5,
- 0.05,
- -0.21,
- 0.12,
- 1.45,
- 1.83,
- 1.76,
- 1.69,
- 1.2,
- 1.11,
- 1.51,
- 1.88,
- 1.28,
- -0.03,
- -1.9,
- -2.06,
- -0.32,
- 0.43,
- 1.22,
- 1.0,
- 0.15,
- -0.11,
- -0.09,
- 0.18,
- 0.25,
- 0.94,
- 1.72,
- 1.86,
- 1.65,
- 1.65,
- 2.39,
- 2.56,
- 2.79,
- 2.97,
- 3.19,
- 3.3,
- 3.36,
- 3.26,
- 3.21,
- 3.38,
- 3.67,
- 3.9,
- 3.48,
- 3.01,
- 2.61,
- 2.54,
- 2.68,
- 2.86,
- 2.96,
- 4.05,
- 4.51,
- 4.95,
- 4.76,
- 4.07,
- 3.6,
- 4.42,
- 4.15,
- 3.76,
- 3.89,
- 3.47,
- 3.87,
- 4.91,
- 4.49,
- 4.79,
- -1.39,
- -1.47,
- -0.1,
- 0.78,
- 0.23,
- 0.39,
- -0.24,
- 0.17,
- -0.14,
- 0.8,
- 1.02,
- 1.14,
- 1.25,
- 1.34,
- 0.68,
- 0.92,
- 0.8,
- 0.84,
- 0.96,
- 0.66,
- 0.88,
- 0.71,
- 1.39,
- 0.97,
- 0.98,
- 0.42,
- 0.24,
- 0.64,
- 0.86,
- 0.52,
- 0.79,
- -0.39,
- -0.91,
- -0.88,
- -0.03,
- 0.63,
- 0.84,
- -0.99,
- -1.79,
- -1.01,
- -0.11,
- 0.2,
- 4.57,
- 3.5,
- 2.48,
- 5.53,
- 5.78,
- 5.57,
- 5.17,
- 5.23,
- 4.88,
- 3.57,
- 2.37,
- 2.09,
- 2.39,
- 2.73,
- 2.97,
- 3.12,
- 3.19,
- 3.27,
- 3.06,
- 2.74,
- 2.6,
- 2.49,
- 2.81,
- 2.72,
- 2.58,
- 2.6,
- 2.98,
- 3.45,
- 3.59,
- 3.96,
- 4.96,
- 5.19,
- 5.42,
- 5.41,
- 5.92,
- 5.42,
- 5.32,
- 5.31,
- 5.45,
- 5.83,
- 6.35,
- 6.52,
- 6.57,
- 6.58,
- 6.67,
- 6.48,
- 6.21,
- 5.73,
- 5.59,
- 5.25,
- 4.02,
- 1.04,
- 0.83,
- 1.35,
- 0.96,
- 0.71,
- 1.43,
- 1.26,
- 1.74,
- 1.65,
- 1.09,
- 1.26,
- 1.45,
- 0.26,
- 0.76,
- 0.71,
- 0.03,
- -0.56,
- -0.62,
- 0.53,
- -0.35,
- 1.01,
- 0.25,
- 1.32,
- 0.29,
- 1.33,
- 1.9,
- 3.28,
- 2.58,
- 1.43,
- 1.74,
- 2.49,
- 3.37,
- 3.44,
- 3.89,
- 4.73,
- 5.05,
- 5.42,
- 6.05,
- 6.69,
- 7.1,
- 6.85,
- 6.32,
- 5.73,
- 5.31,
- 3.87,
- 2.56,
- -0.07,
- -1.4,
- -0.44,
- -0.11,
- -0.5,
- -0.62,
- -0.84,
- -0.67,
- 0.15,
- -0.21,
- -0.78,
- -0.99,
- -0.54,
- 0.14,
- 0.29,
- 0.41,
- 0.38,
- 0.05,
- -0.76,
- 0.32,
- -0.23,
- -0.25,
- 1.46,
- 2.45,
- 1.16,
- 0.97,
- 1.11,
- 1.31,
- 0.85,
- 0.43,
- 1.31,
- 0.36,
- -0.54,
- 0.49,
- 1.36,
- 0.79,
- 0.73,
- 0.41,
- 1.0,
- 1.89,
- 0.81,
- 3.84,
- 4.98,
- 4.59,
- 3.02,
- 2.02,
- 0.88,
- 2.5,
- 2.45,
- 3.96,
- 5.94,
- 2.67,
- 4.11,
- -0.09,
- -0.86,
- -2.74,
- 0.9,
- 0.12,
- -1.29,
- 2.07,
- -1.75,
- -1.79,
- -1.25,
- -1.81,
- -2.31,
- 0.4,
- 0.76,
- 1.77,
- 2.73,
- 3.51,
- 3.19,
- 3.97,
- 2.31,
- 1.7,
- 1.93,
- 1.81,
- 1.95,
- 1.44,
- -0.37,
- 0.34,
- 1.48,
- -0.64,
- -1.75,
- -1.08,
- 3.59,
- 3.63,
- 1.87,
- -0.83,
- -1.38,
- 1.49,
- 2.66,
- 2.85,
- 3.26,
- 3.08,
- 1.85,
- 1.26,
- 2.46,
- 0.55,
- 4.84,
- 1.31,
- 1.95,
- 4.81,
- 3.9,
- 3.68,
- 3.27,
- 2.6,
- 1.5,
- 1.91,
- 2.3,
- 2.15,
- 2.31,
- 2.5,
- 2.84,
- 2.87,
- 2.81,
- 2.64,
- 2.63,
- 2.68,
- 2.75,
- 2.89,
- 3.53,
- 3.88,
- 4.23,
- 4.75,
- 6.42,
- 3.22,
- -4.74,
- -4.45,
- -2.63,
- -1.63,
- -3.71,
- -2.46,
- -1.6,
- -2.38,
- -2.02,
- -1.95,
- -4.36,
- -3.49,
- -2.31,
- -2.25,
- -2.89,
- -3.16,
- -3.05,
- -1.52,
- -0.7,
- 0.85,
- -0.91,
- -2.06,
- -1.61,
- -1.39,
- -1.46,
- -1.27,
- -0.92,
- -0.68,
- -1.7,
- -1.18,
- -0.58,
- -0.26,
- -0.08,
- 0.19,
- 0.7,
- 0.54,
- 0.94,
- 0.9,
- 1.27,
- 1.22,
- 0.83,
- 1.16,
- 1.69,
- 2.18,
- 0.98,
- -0.14,
- -1.17,
- -1.2,
- 0.39,
- 0.68,
- 0.78,
- 0.1,
- -0.16,
- -0.24,
- -0.29,
- 0.17,
- 0.56,
- 1.35,
- 2.04,
- 1.89,
- 2.08,
- 1.74,
- 1.87,
- 2.2,
- 2.54,
- 2.69,
- 2.76,
- 2.82,
- 2.79,
- 2.92,
- 3.13,
- 3.08,
- 3.8,
- 4.12,
- 3.69,
- 3.05,
- 3.62,
- 3.33,
- 3.13,
- 3.2,
- 4.32,
- 5.57,
- 6.01,
- 6.78,
- 5.98,
- 5.4,
- 4.55,
- 4.68,
- 3.89,
- 4.08,
- 3.61,
- 4.12,
- 4.81,
- 5.02,
- 3.93,
- 1.59,
- -1.19,
- 1.09,
- 0.9,
- 0.28,
- 0.29,
- 0.42,
- 0.57,
- 0.67,
- 0.31,
- 0.94,
- 1.04,
- 1.27,
- 1.21,
- 1.25,
- 1.11,
- 1.14,
- 1.23,
- 1.03,
- 1.06,
- 0.78,
- 0.93,
- 0.67,
- 1.2,
- 0.92,
- 0.48,
- 0.54,
- 0.68,
- 0.77,
- 0.86,
- 0.81,
- 0.88,
- -0.97,
- -0.65,
- -0.14,
- 1.26,
- 2.21,
- 1.04,
- 2.76,
- 1.24,
- 0.82,
- 0.2,
- 0.8,
- 2.08,
- 1.87,
- 4.64,
- 5.08,
- 5.2,
- 4.52,
- 4.14,
- 3.33,
- 2.45,
- 2.39,
- 2.94,
- 2.67,
- 2.69,
- 2.96,
- 2.79,
- 2.46,
- 2.51,
- 2.97,
- 2.82,
- 2.59,
- 2.36,
- 2.28,
- 2.44,
- 2.35,
- 2.57,
- 3.19,
- 3.79,
- 3.96,
- 4.05,
- 4.45,
- 4.68,
- 4.45,
- 4.62,
- 4.78,
- 5.07,
- 5.35,
- 5.54,
- 5.74,
- 5.82,
- 6.1,
- 6.34,
- 6.81,
- 7.18,
- 7.52,
- 7.62,
- 7.32,
- 6.59,
- 5.99,
- 5.7,
- 4.91,
- 1.16,
- 0.93,
- 0.94,
- 1.17,
- 1.17,
- 1.39,
- 1.74,
- 1.6,
- 1.45,
- 1.24,
- 0.54,
- 0.77,
- -0.08,
- 0.72,
- 0.92,
- 0.65,
- -0.23,
- -0.53,
- 0.05,
- 0.81,
- 1.61,
- 0.69,
- -0.39,
- -0.3,
- 1.46,
- 2.07,
- 5.45,
- 1.8,
- 1.49,
- 0.73,
- 1.08,
- 1.99,
- 2.57,
- 3.27,
- 4.23,
- 5.57,
- 6.32,
- 6.47,
- 6.98,
- 7.36,
- 7.27,
- 6.5,
- 6.08,
- 5.47,
- 3.72,
- 2.32,
- 1.25,
- 0.65,
- 0.46,
- -0.15,
- -0.49,
- -1.5,
- -1.94,
- -1.03,
- 0.57,
- 0.2,
- 0.07,
- -0.42,
- -0.66,
- -1.28,
- -1.22,
- -0.56,
- 0.59,
- 1.14,
- -1.62,
- -0.22,
- 0.13,
- -0.32,
- 1.19,
- 1.77,
- 1.49,
- 0.52,
- 0.46,
- 1.03,
- 0.76,
- 0.34,
- 0.86,
- -0.14,
- -0.21,
- 0.33,
- 0.97,
- 1.07,
- 0.48,
- -0.32,
- 0.72,
- 0.34,
- 1.16,
- 1.13,
- 2.71,
- 3.3,
- 4.24,
- 4.04,
- 3.37,
- 3.15,
- 2.98,
- 3.13,
- 3.14,
- 2.17,
- 1.84,
- 1.16,
- 1.52,
- 1.06,
- 4.46,
- 1.77,
- 2.96,
- -1.3,
- 1.67,
- 2.59,
- 2.32,
- -0.18,
- -2.59,
- -2.51,
- 2.41,
- 0.82,
- 1.96,
- 2.31,
- 2.61,
- 3.1,
- 3.53,
- 2.15,
- 1.65,
- 1.58,
- 1.86,
- 2.07,
- 2.42,
- 1.46,
- 4.28,
- 1.07,
- 1.82,
- 1.57,
- 2.14,
- 1.84,
- -0.03,
- 0.58,
- -1.5,
- -1.99,
- -0.59,
- 3.14,
- 4.1,
- 3.18,
- 2.13,
- 1.54,
- 1.98,
- 2.58,
- 2.06,
- 2.86,
- 2.94,
- 0.54,
- 3.84,
- 3.76,
- 3.28,
- 2.04,
- 2.17,
- 1.91,
- 2.09,
- 2.17,
- 2.53,
- 2.63,
- 2.94,
- 3.31,
- 3.25,
- 2.81,
- 3.0,
- 3.34,
- 3.91,
- 3.99,
- 4.05,
- 4.1,
- 4.34,
- 5.26,
- 6.04,
- 3.91,
- -1.11,
- -3.29,
- -3.13,
- -1.96,
- -3.24,
- -2.58,
- -1.32,
- -2.25,
- -2.01,
- -1.9,
- -3.25,
- -3.22,
- -2.4,
- -2.72,
- -3.31,
- -2.88,
- -2.79,
- -2.79,
- -1.73,
- -0.39,
- -0.74,
- -1.6,
- -2.7,
- -2.86,
- -2.0,
- -1.43,
- -0.75,
- 0.1,
- -0.14,
- -0.52,
- -1.19,
- -1.07,
- -0.17,
- 0.57,
- 0.76,
- 0.06,
- -0.61,
- -0.31,
- -0.27,
- 0.34,
- 0.6,
- 0.78,
- 1.09,
- 1.61,
- 2.16,
- 1.27,
- 0.2,
- 1.09,
- 1.12,
- 0.63,
- 0.27,
- 0.08,
- -0.57,
- -0.64,
- -0.26,
- 0.15,
- 0.64,
- 0.87,
- 0.99,
- 1.49,
- 0.9,
- 0.94,
- 1.53,
- 2.11,
- 2.34,
- 2.77,
- 2.91,
- 2.72,
- 2.55,
- 2.55,
- 2.53,
- 2.43,
- 2.75,
- 3.78,
- 3.5,
- 3.55,
- 3.37,
- 3.21,
- 3.48,
- 4.36,
- 4.91,
- 5.14,
- 5.57,
- 6.22,
- 6.51,
- 6.52,
- 5.81,
- 5.25,
- 4.67,
- 4.33,
- 4.41,
- 4.19,
- 4.55,
- 5.45,
- 6.26,
- 5.82,
- -1.52,
- -0.96,
- 0.06,
- 0.38,
- 0.69,
- 0.76,
- 0.73,
- 0.54,
- 0.59,
- 0.95,
- 1.27,
- 1.37,
- 1.5,
- 1.53,
- 1.26,
- 1.33,
- 1.37,
- 1.41,
- 1.12,
- 1.1,
- 1.12,
- 1.18,
- 1.32,
- 1.37,
- 1.1,
- 1.27,
- 1.19,
- 0.64,
- 0.48,
- 1.22,
- 1.08,
- 0.87,
- -0.38,
- 0.15,
- 0.66,
- 1.92,
- 2.22,
- 1.4,
- 1.11,
- 2.19,
- 0.63,
- 0.2,
- 0.37,
- 2.88,
- 3.53,
- 3.96,
- 4.62,
- 4.32,
- 3.74,
- 2.91,
- 2.84,
- 3.02,
- 2.62,
- 2.48,
- 2.31,
- 2.53,
- 2.5,
- 2.6,
- 2.7,
- 2.84,
- 3.09,
- 3.06,
- 2.91,
- 2.65,
- 2.49,
- 2.62,
- 2.7,
- 3.01,
- 3.58,
- 4.18,
- 3.83,
- 4.13,
- 4.72,
- 4.66,
- 4.86,
- 4.97,
- 5.19,
- 5.33,
- 5.49,
- 5.97,
- 6.12,
- 6.3,
- 6.38,
- 6.73,
- 7.23,
- 7.61,
- 7.42,
- 7.07,
- 6.43,
- 5.79,
- 5.26,
- 5.26,
- 2.11,
- 1.96,
- 1.41,
- 1.17,
- 1.38,
- 0.86,
- 1.32,
- 1.13,
- 0.88,
- 1.44,
- 1.28,
- 1.29,
- 1.1,
- 0.47,
- 1.1,
- 1.16,
- 1.13,
- 1.1,
- -0.07,
- -0.66,
- 0.24,
- -1.36,
- -0.61,
- -0.27,
- 1.03,
- 1.46,
- 4.35,
- 2.42,
- 0.9,
- 0.18,
- -0.83,
- -0.02,
- 0.88,
- 2.37,
- 4.33,
- 5.9,
- 6.82,
- 7.21,
- 7.32,
- 7.28,
- 7.14,
- 6.29,
- 5.72,
- 5.53,
- 4.79,
- 3.02,
- 1.68,
- 0.5,
- 0.03,
- -0.83,
- -1.68,
- -1.69,
- -1.47,
- -0.81,
- -0.01,
- 0.25,
- 0.07,
- 0.03,
- 0.16,
- -0.14,
- -0.62,
- -0.82,
- -0.46,
- 0.35,
- -0.69,
- -0.19,
- -0.59,
- 0.52,
- 1.96,
- 2.22,
- 1.69,
- 0.66,
- 1.11,
- 0.9,
- 0.57,
- 0.0,
- -1.2,
- -0.68,
- -0.44,
- 0.46,
- 0.73,
- 0.32,
- 0.58,
- 0.72,
- 0.85,
- 1.69,
- 2.55,
- 3.01,
- 2.45,
- 2.39,
- 2.92,
- 3.13,
- 3.54,
- 3.24,
- 3.2,
- 3.46,
- 3.0,
- 2.49,
- 1.88,
- 2.28,
- 0.95,
- 0.75,
- 1.12,
- 0.99,
- 0.49,
- 2.67,
- 1.76,
- 0.06,
- -0.26,
- -1.27,
- 2.03,
- -0.88,
- -0.24,
- 0.72,
- 1.5,
- 1.84,
- 2.39,
- 3.12,
- 3.48,
- 2.5,
- 0.55,
- 0.62,
- 1.16,
- 1.2,
- 0.84,
- 0.34,
- 0.6,
- 0.74,
- 1.52,
- 1.72,
- 2.28,
- 3.41,
- 2.38,
- 1.94,
- 2.46,
- 1.4,
- -1.97,
- 1.31,
- 2.93,
- 2.6,
- 1.43,
- 0.48,
- 0.72,
- 0.98,
- 1.86,
- 3.7,
- 3.1,
- 1.01,
- 4.4,
- 3.52,
- 2.82,
- 2.72,
- 1.97,
- 2.21,
- 2.37,
- 2.51,
- 3.0,
- 3.41,
- 3.38,
- 3.25,
- 3.3,
- 3.87,
- 4.2,
- 4.52,
- 4.47,
- 4.48,
- 4.58,
- 5.52,
- 5.6,
- 6.03,
- 5.31,
- 4.46,
- 1.45,
- -1.34,
- -2.32,
- -3.02,
- -3.41,
- -3.04,
- -2.8,
- -2.42,
- -2.08,
- -2.61,
- -2.78,
- -2.61,
- -2.73,
- -2.75,
- -3.26,
- -2.62,
- -2.5,
- -2.21,
- -2.73,
- -1.7,
- -1.53,
- -1.54,
- -3.3,
- -2.37,
- -1.79,
- -1.31,
- -1.16,
- -1.31,
- -0.43,
- 0.15,
- 0.29,
- 1.1,
- 1.14,
- 1.22,
- 0.42,
- -0.34,
- -0.81,
- -1.16,
- -1.13,
- -0.88,
- -0.56,
- -0.03,
- 0.42,
- 0.89,
- 1.13,
- 1.1,
- 1.7,
- 1.25,
- 0.91,
- 1.17,
- 1.3,
- 0.99,
- 0.92,
- 0.45,
- 0.21,
- 0.44,
- 0.46,
- 0.85,
- 0.84,
- 1.3,
- 1.07,
- 0.59,
- 1.63,
- 1.69,
- 2.54,
- 3.23,
- 3.39,
- 2.94,
- 2.63,
- 2.36,
- 2.16,
- 2.05,
- 1.95,
- 2.68,
- 3.23,
- 3.29,
- 3.04,
- 3.07,
- 3.97,
- 4.73,
- 4.8,
- 4.97,
- 5.53,
- 5.76,
- 6.26,
- 5.9,
- 5.52,
- 5.53,
- 5.39,
- 5.26,
- 4.6,
- 4.62,
- 4.35,
- 4.85,
- 6.47,
- 6.72,
- 0.84,
- -1.26,
- -0.83,
- -0.17,
- 0.91,
- 0.51,
- 1.22,
- 1.13,
- 1.12,
- 1.42,
- 1.54,
- 1.66,
- 1.68,
- 1.43,
- 1.2,
- 1.91,
- 1.64,
- 1.58,
- 1.29,
- 1.15,
- 1.32,
- 1.75,
- 1.97,
- 0.8,
- 1.36,
- 0.86,
- 1.22,
- 1.06,
- 1.69,
- 0.73,
- 1.11,
- 0.5,
- 1.64,
- 0.98,
- 1.11,
- 2.08,
- 0.71,
- 2.2,
- 2.87,
- 1.01,
- 1.06,
- -0.11,
- 0.5,
- 2.29,
- 2.64,
- 2.87,
- 3.4,
- 3.59,
- 3.3,
- 3.01,
- 2.43,
- 2.12,
- 1.99,
- 1.92,
- 2.13,
- 2.33,
- 2.56,
- 2.71,
- 2.74,
- 3.13,
- 3.05,
- 3.0,
- 3.21,
- 2.98,
- 2.9,
- 2.67,
- 2.72,
- 2.35,
- 2.68,
- 3.04,
- 3.17,
- 4.01,
- 4.11,
- 4.59,
- 4.91,
- 5.1,
- 5.3,
- 5.44,
- 5.56,
- 5.97,
- 6.36,
- 6.68,
- 6.79,
- 6.95,
- 7.21,
- 7.33,
- 7.28,
- 6.92,
- 6.29,
- 5.45,
- 4.44,
- 3.59,
- 1.38,
- 1.08,
- 1.29,
- 1.46,
- 0.4,
- 0.58,
- 0.67,
- 1.16,
- 1.19,
- 0.18,
- 1.05,
- 1.48,
- 0.26,
- 0.27,
- 1.03,
- 1.06,
- 1.03,
- 0.28,
- 0.66,
- -0.01,
- -1.77,
- -0.08,
- -0.65,
- -0.59,
- 0.72,
- 0.48,
- 1.87,
- 2.73,
- 0.41,
- -0.49,
- -1.32,
- -1.94,
- -0.95,
- 1.4,
- 4.18,
- 6.85,
- 7.41,
- 7.69,
- 7.69,
- 7.36,
- 6.86,
- 6.1,
- 5.62,
- 5.02,
- 4.13,
- 2.46,
- 1.83,
- 0.76,
- 0.01,
- -1.07,
- -1.27,
- -1.31,
- -0.65,
- 0.11,
- -0.01,
- -0.08,
- 0.2,
- 0.28,
- 0.1,
- -0.59,
- -1.72,
- -2.6,
- -3.05,
- -2.44,
- -1.35,
- -0.19,
- -0.4,
- 1.48,
- 1.98,
- 1.58,
- 0.84,
- 0.93,
- 1.75,
- 2.2,
- 1.42,
- -0.61,
- -0.23,
- -0.47,
- -0.13,
- 0.32,
- 0.75,
- 0.78,
- 0.8,
- 1.05,
- 1.06,
- 1.89,
- 2.44,
- 2.33,
- 2.76,
- 3.44,
- 3.61,
- 3.44,
- 2.94,
- 3.16,
- 3.68,
- 3.41,
- 3.55,
- 3.48,
- 2.79,
- 2.13,
- 1.57,
- 0.4,
- 0.4,
- 0.59,
- 1.38,
- 1.22,
- 0.6,
- 0.83,
- 1.21,
- 1.4,
- -0.22,
- -0.06,
- 1.04,
- 2.08,
- 2.69,
- 2.03,
- -0.15,
- -1.61,
- -0.46,
- 1.05,
- 0.36,
- -0.03,
- -0.81,
- -0.47,
- -0.9,
- -1.13,
- -1.54,
- -3.37,
- -1.92,
- 2.98,
- 3.13,
- 3.26,
- 3.06,
- 2.94,
- 3.09,
- 3.25,
- 2.33,
- 2.22,
- 2.93,
- 2.01,
- 1.57,
- 1.05,
- 0.89,
- 1.07,
- 2.27,
- 2.78,
- 2.15,
- 3.31,
- 1.17,
- 2.52,
- 2.8,
- 2.94,
- 2.95,
- 3.25,
- 3.28,
- 3.14,
- 2.79,
- 2.75,
- 2.86,
- 3.31,
- 3.65,
- 3.73,
- 4.11,
- 4.51,
- 4.61,
- 4.65,
- 4.77,
- 5.0,
- 4.82,
- 4.99,
- 5.12,
- 4.9,
- 3.67,
- 2.16,
- 0.17,
- -1.56,
- -0.79,
- -2.14,
- -2.76,
- -2.36,
- -2.44,
- -2.16,
- -2.87,
- -3.03,
- -2.55,
- -2.59,
- -2.9,
- -2.53,
- -2.13,
- -1.4,
- -2.65,
- -2.42,
- -1.78,
- -2.09,
- -1.67,
- -2.69,
- -2.95,
- -2.26,
- -1.74,
- -1.36,
- -0.4,
- -0.34,
- 0.54,
- 0.63,
- 0.15,
- -0.23,
- -0.22,
- -0.27,
- -1.16,
- -1.68,
- -1.91,
- -1.82,
- -1.38,
- -0.96,
- -0.31,
- 0.36,
- 0.79,
- 0.83,
- 0.77,
- 0.8,
- 0.86,
- 0.86,
- 0.97,
- 0.76,
- 0.47,
- 0.47,
- 0.84,
- 0.84,
- 0.33,
- 0.27,
- 0.3,
- 0.45,
- 0.86,
- 1.39,
- 1.21,
- 1.62,
- 2.33,
- 3.06,
- 3.45,
- 3.22,
- 2.73,
- 2.46,
- 2.08,
- 1.7,
- 2.19,
- 2.7,
- 2.98,
- 2.7,
- 2.76,
- 3.31,
- 4.09,
- 3.9,
- 4.53,
- 4.62,
- 5.54,
- 5.98,
- 5.2,
- 5.49,
- 6.03,
- 5.52,
- 5.65,
- 5.02,
- 4.8,
- 4.74,
- 4.34,
- 4.57,
- 5.97,
- 7.15,
- 6.75,
- -1.83,
- -0.96,
- 1.14,
- -0.56,
- 1.16,
- 0.76,
- 1.15,
- 1.37,
- 1.34,
- 1.81,
- 1.52,
- 1.79,
- 1.9,
- 1.12,
- 1.65,
- 1.41,
- 1.41,
- 1.37,
- 1.18,
- 1.44,
- 1.58,
- 1.77,
- 1.19,
- 1.3,
- 1.3,
- 1.43,
- 1.86,
- 1.72,
- 1.66,
- 0.67,
- 0.32,
- 0.18,
- 0.47,
- -0.51,
- 1.01,
- 2.77,
- 2.02,
- 0.79,
- 0.27,
- 0.0,
- -0.8,
- 0.6,
- 1.6,
- 1.95,
- 2.0,
- 2.44,
- 2.84,
- 2.8,
- 2.22,
- 1.36,
- 1.18,
- 1.32,
- 1.51,
- 1.92,
- 2.26,
- 2.5,
- 2.53,
- 2.92,
- 3.31,
- 3.44,
- 3.5,
- 3.24,
- 3.19,
- 3.03,
- 3.21,
- 2.95,
- 2.58,
- 2.52,
- 3.15,
- 3.51,
- 3.74,
- 3.85,
- 4.2,
- 4.69,
- 5.02,
- 5.27,
- 5.47,
- 5.7,
- 5.89,
- 6.46,
- 6.87,
- 7.01,
- 7.15,
- 7.47,
- 7.5,
- 7.36,
- 7.14,
- 6.22,
- 4.88,
- 3.63,
- 2.8,
- 1.0,
- 0.46,
- 0.44,
- 0.41,
- 0.4,
- 0.65,
- -0.54,
- -1.36,
- 0.44,
- 0.1,
- 1.3,
- 0.6,
- 0.85,
- 0.34,
- 0.33,
- -0.02,
- 0.37,
- 1.44,
- -0.41,
- -0.79,
- -0.06,
- -0.82,
- -0.65,
- -0.86,
- 0.25,
- 1.0,
- 1.09,
- 2.88,
- 2.17,
- -0.14,
- -1.83,
- -1.78,
- -0.98,
- 0.57,
- 2.09,
- 3.64,
- 8.54,
- 7.84,
- 7.45,
- 7.31,
- 6.7,
- 5.86,
- 4.57,
- 4.54,
- 3.62,
- 2.21,
- 1.94,
- 1.43,
- 0.55,
- -0.44,
- -0.42,
- -0.36,
- -0.29,
- 0.06,
- -0.27,
- 0.12,
- 0.84,
- 1.19,
- 0.91,
- 0.1,
- -1.66,
- -3.48,
- -4.47,
- -4.74,
- -2.93,
- -1.75,
- -0.36,
- 0.7,
- 0.89,
- 0.93,
- 1.31,
- 1.52,
- 1.83,
- 1.78,
- 1.34,
- 0.43,
- -0.11,
- -0.07,
- -0.01,
- 0.08,
- -0.24,
- 0.08,
- 1.61,
- 1.42,
- 3.53,
- 3.54,
- 3.32,
- 2.92,
- 3.86,
- 4.46,
- 4.52,
- 4.51,
- 4.31,
- 4.34,
- 4.15,
- 3.89,
- 3.65,
- 3.33,
- 3.18,
- 3.0,
- 2.54,
- 1.39,
- 0.42,
- 0.03,
- 0.14,
- 0.3,
- 0.02,
- -0.2,
- -0.15,
- 0.53,
- 1.1,
- 1.95,
- 2.79,
- 3.05,
- 2.93,
- 2.4,
- 3.38,
- -0.35,
- -2.91,
- -1.37,
- -1.37,
- -1.61,
- -2.52,
- -1.1,
- -1.48,
- -1.56,
- -1.74,
- -2.35,
- -0.52,
- 1.55,
- 4.32,
- 4.29,
- 4.15,
- 3.24,
- 1.83,
- 1.19,
- 1.21,
- 1.38,
- 1.64,
- 2.07,
- 1.05,
- 0.69,
- 0.96,
- 1.83,
- 2.47,
- 3.47,
- 2.44,
- 1.25,
- 1.67,
- 2.16,
- 2.62,
- 2.96,
- 2.72,
- 2.99,
- 2.9,
- 2.98,
- 2.87,
- 2.72,
- 2.57,
- 2.65,
- 3.03,
- 3.34,
- 3.91,
- 4.05,
- 4.69,
- 5.02,
- 5.24,
- 5.6,
- 5.58,
- 5.06,
- 4.95,
- 4.61,
- 4.19,
- 3.58,
- 2.27,
- 0.53,
- -0.97,
- -1.97,
- -2.72,
- -1.82,
- -1.35,
- -1.27,
- -2.83,
- -2.89,
- -1.9,
- -1.42,
- -2.15,
- -1.36,
- -0.53,
- -1.78,
- -3.89,
- -2.76,
- -1.65,
- -0.99,
- -2.41,
- -3.39,
- -3.64,
- -3.07,
- -2.27,
- -1.01,
- -1.14,
- -0.82,
- -1.03,
- -0.74,
- -0.86,
- -1.21,
- -1.31,
- -1.09,
- -1.54,
- -2.14,
- -2.3,
- -2.46,
- -2.02,
- -1.48,
- -1.1,
- -0.64,
- 0.17,
- 0.87,
- 0.82,
- 0.86,
- 0.8,
- 0.67,
- 0.57,
- 0.4,
- 0.5,
- 0.73,
- 0.56,
- 0.66,
- -0.24,
- -0.04,
- 0.34,
- 0.53,
- 0.97,
- 0.87,
- 0.67,
- 0.9,
- 1.41,
- 2.36,
- 3.13,
- 3.11,
- 2.48,
- 2.11,
- 1.97,
- 1.5,
- 1.95,
- 2.86,
- 2.95,
- 3.18,
- 2.83,
- 2.96,
- 2.89,
- 3.05,
- 3.49,
- 4.45,
- 5.09,
- 5.37,
- 5.59,
- 5.72,
- 5.97,
- 5.87,
- 5.63,
- 5.44,
- 5.33,
- 4.91,
- 4.81,
- 4.98,
- 5.28,
- 7.06,
- 6.69,
- 2.07,
- -1.29,
- -0.53,
- -0.62,
- -0.66,
- 0.37,
- 1.22,
- 0.88,
- 0.97,
- 1.38,
- 1.56,
- 1.58,
- 1.69,
- 1.49,
- 1.35,
- 2.32,
- 1.62,
- 1.58,
- 1.57,
- 1.7,
- 1.7,
- 1.79,
- 1.83,
- 1.37,
- 1.4,
- 1.36,
- 2.43,
- 2.14,
- 1.95,
- 1.51,
- -0.72,
- -0.37,
- -0.05,
- 0.12,
- 0.2,
- 1.83,
- 0.19,
- 0.76,
- 0.32,
- -0.25,
- 0.32,
- 0.1,
- 1.01,
- 1.17,
- 1.5,
- 1.78,
- 1.82,
- 2.39,
- 2.14,
- 0.91,
- 0.64,
- 0.67,
- 1.06,
- 1.4,
- 1.67,
- 2.02,
- 2.58,
- 2.79,
- 3.06,
- 3.21,
- 3.46,
- 3.42,
- 3.31,
- 3.13,
- 3.07,
- 2.97,
- 2.71,
- 2.63,
- 2.89,
- 3.26,
- 3.51,
- 3.76,
- 4.22,
- 4.83,
- 5.13,
- 5.38,
- 5.68,
- 5.7,
- 5.92,
- 6.22,
- 6.75,
- 7.08,
- 7.32,
- 7.67,
- 7.73,
- 7.83,
- 7.7,
- 6.95,
- 5.11,
- 3.34,
- 0.38,
- 0.25,
- 0.44,
- -0.24,
- 0.19,
- -1.19,
- -0.76,
- 0.45,
- 1.25,
- -0.41,
- -0.37,
- -0.27,
- 0.5,
- 0.67,
- 0.61,
- -1.07,
- -0.16,
- 0.89,
- 0.59,
- -0.73,
- -0.76,
- -1.21,
- -0.89,
- -1.26,
- -1.25,
- -0.66,
- 0.13,
- 0.92,
- 1.91,
- 1.62,
- 1.11,
- 0.17,
- -1.1,
- -0.59,
- 0.67,
- 0.69,
- 0.32,
- 8.17,
- 8.09,
- 7.28,
- 7.14,
- 6.53,
- 5.54,
- 3.61,
- 3.48,
- 2.77,
- 1.72,
- 1.61,
- 1.7,
- 0.75,
- 0.2,
- -0.45,
- -0.67,
- -0.36,
- -0.16,
- 0.29,
- 1.47,
- 2.46,
- 2.68,
- 1.93,
- 0.17,
- -2.25,
- -4.16,
- -5.98,
- -6.36,
- -4.34,
- -2.85,
- -1.27,
- -0.01,
- 0.17,
- 0.67,
- 0.91,
- 1.08,
- 1.13,
- 1.26,
- 1.24,
- -0.23,
- -1.3,
- -1.38,
- -0.64,
- 0.28,
- -0.05,
- 0.65,
- 2.04,
- 3.16,
- 2.78,
- 3.71,
- 4.43,
- 4.66,
- 4.31,
- 3.89,
- 4.31,
- 4.46,
- 5.0,
- 5.6,
- 5.89,
- 5.96,
- 5.56,
- 4.91,
- 3.73,
- 2.49,
- 2.45,
- 1.71,
- 0.14,
- -0.34,
- -0.35,
- -0.35,
- -0.4,
- 0.01,
- 0.37,
- 0.47,
- 0.46,
- 0.68,
- 1.46,
- 1.37,
- 2.54,
- 2.89,
- 0.77,
- -0.74,
- 0.4,
- -0.5,
- -0.46,
- -0.6,
- 0.16,
- -1.4,
- -1.65,
- -1.49,
- -1.21,
- -0.23,
- -0.73,
- 0.45,
- 4.15,
- 4.93,
- 4.87,
- 4.04,
- 2.55,
- 1.76,
- 1.74,
- 1.66,
- 1.4,
- 1.15,
- 0.89,
- 1.07,
- 1.06,
- 1.68,
- 3.07,
- 2.72,
- 2.0,
- 1.96,
- 1.92,
- 2.36,
- 2.47,
- 2.48,
- 2.7,
- 2.95,
- 2.99,
- 2.79,
- 2.55,
- 2.81,
- 2.9,
- 2.73,
- 2.68,
- 2.86,
- 3.17,
- 3.86,
- 4.14,
- 4.73,
- 5.26,
- 5.3,
- 5.44,
- 5.25,
- 4.86,
- 4.77,
- 4.63,
- 2.31,
- 2.84,
- 1.13,
- 0.65,
- 0.0,
- -2.25,
- -2.85,
- -2.08,
- -0.02,
- -0.68,
- -3.18,
- -2.72,
- -0.94,
- 0.08,
- -0.22,
- -1.35,
- 1.09,
- -1.12,
- -1.1,
- -1.63,
- -1.67,
- -1.91,
- -3.84,
- -4.77,
- -4.31,
- -3.5,
- -2.43,
- -1.41,
- -0.94,
- -0.74,
- -0.67,
- -1.15,
- -1.82,
- -1.91,
- -1.93,
- -2.35,
- -2.6,
- -2.44,
- -2.49,
- -2.4,
- -1.91,
- -1.33,
- -0.98,
- -0.53,
- -0.35,
- -0.03,
- 0.28,
- 0.37,
- 0.57,
- 0.46,
- 0.56,
- 0.74,
- 0.89,
- 0.4,
- 0.51,
- 0.62,
- 0.31,
- 0.26,
- 0.61,
- 0.62,
- 0.26,
- 0.15,
- 0.78,
- 0.69,
- 1.86,
- 2.78,
- 2.68,
- 1.99,
- 2.3,
- 2.14,
- 1.69,
- 1.1,
- 2.03,
- 2.57,
- 2.86,
- 3.03,
- 2.51,
- 2.67,
- 3.12,
- 3.42,
- 3.63,
- 4.46,
- 4.76,
- 5.3,
- 5.42,
- 5.15,
- 5.1,
- 5.37,
- 5.44,
- 5.52,
- 5.19,
- 5.29,
- 5.04,
- 5.09,
- 6.3,
- 6.56,
- 6.83,
- -0.27,
- -1.05,
- -1.39,
- 0.31,
- 0.51,
- 0.02,
- 1.42,
- 0.99,
- 1.6,
- 1.76,
- 2.2,
- 2.32,
- 2.27,
- 1.76,
- 1.98,
- 1.63,
- 1.06,
- 1.73,
- 2.2,
- 2.03,
- 2.58,
- 2.14,
- 1.25,
- 1.48,
- 2.01,
- 2.29,
- 2.53,
- 1.84,
- 1.5,
- 1.2,
- 0.26,
- 1.75,
- 0.26,
- -1.0,
- -1.74,
- 0.14,
- 1.75,
- 0.39,
- -0.63,
- -0.06,
- 0.06,
- 0.58,
- 0.65,
- 0.7,
- 1.03,
- 0.98,
- 1.18,
- 1.47,
- 1.38,
- 0.88,
- 0.89,
- 0.59,
- 0.71,
- 1.17,
- 1.84,
- 2.41,
- 2.75,
- 2.72,
- 2.87,
- 2.99,
- 3.13,
- 3.14,
- 3.02,
- 2.95,
- 2.9,
- 3.22,
- 3.12,
- 3.27,
- 3.18,
- 3.59,
- 4.11,
- 4.65,
- 4.78,
- 5.26,
- 5.45,
- 5.54,
- 6.08,
- 6.13,
- 6.3,
- 6.49,
- 7.12,
- 7.36,
- 7.66,
- 7.71,
- 7.96,
- 8.37,
- 7.93,
- 6.42,
- 3.22,
- -1.09,
- -0.49,
- -1.71,
- -1.53,
- -0.87,
- 0.26,
- -0.39,
- -0.86,
- -0.44,
- 1.98,
- 0.24,
- 0.14,
- 0.63,
- 0.53,
- 0.19,
- -1.16,
- -0.45,
- -0.2,
- -1.12,
- -1.29,
- -1.54,
- -1.19,
- -0.82,
- -1.77,
- -1.25,
- -1.21,
- -0.73,
- -0.21,
- 0.99,
- 1.07,
- 1.03,
- 1.12,
- 1.16,
- 1.2,
- 1.56,
- 1.1,
- 0.81,
- 2.14,
- 7.65,
- 6.94,
- 6.86,
- 6.36,
- 5.07,
- 2.57,
- 2.62,
- 2.3,
- 1.47,
- 0.65,
- 0.93,
- 0.85,
- 0.5,
- 0.44,
- 0.56,
- 0.97,
- 1.38,
- 1.81,
- 1.92,
- 2.46,
- 2.95,
- 3.53,
- 2.88,
- 0.54,
- -2.84,
- -5.01,
- -6.78,
- -4.95,
- -2.52,
- -1.59,
- -1.32,
- -0.6,
- 0.39,
- 0.6,
- 0.8,
- 0.64,
- 1.26,
- 0.56,
- -1.2,
- -1.49,
- -1.06,
- -1.01,
- -0.59,
- 0.38,
- 1.62,
- 1.35,
- 2.36,
- 3.47,
- 3.58,
- 3.96,
- 4.13,
- 4.29,
- 4.46,
- 4.44,
- 4.56,
- 4.8,
- 5.17,
- 5.59,
- 6.38,
- 6.83,
- 5.99,
- 5.09,
- 4.46,
- 2.25,
- 1.34,
- 1.13,
- 0.19,
- 0.14,
- -0.07,
- -0.05,
- 0.6,
- 1.5,
- 1.84,
- 2.54,
- 1.47,
- -2.29,
- -3.53,
- -0.56,
- 2.51,
- -0.92,
- 0.75,
- 1.26,
- 0.92,
- 0.12,
- 0.32,
- -0.38,
- -0.66,
- -1.18,
- -0.92,
- -0.12,
- 1.5,
- -0.37,
- -0.03,
- 0.24,
- 5.54,
- 5.33,
- 4.18,
- 2.39,
- 2.09,
- 2.42,
- 2.69,
- 2.08,
- 1.79,
- 1.28,
- 1.2,
- 1.4,
- 1.8,
- 3.0,
- 2.46,
- 2.73,
- 2.21,
- 2.43,
- 3.08,
- 2.59,
- 2.37,
- 3.41,
- 3.29,
- 3.15,
- 2.99,
- 3.05,
- 3.01,
- 3.29,
- 3.04,
- 2.93,
- 3.25,
- 3.51,
- 3.45,
- 3.92,
- 4.27,
- 4.82,
- 5.15,
- 4.7,
- 4.83,
- 4.55,
- 4.48,
- 4.36,
- 3.77,
- 2.96,
- 0.85,
- 1.33,
- 1.96,
- 0.81,
- -0.66,
- -0.9,
- 0.22,
- 0.96,
- 0.53,
- 1.54,
- 1.59,
- 2.58,
- 2.6,
- 4.91,
- 2.79,
- 4.09,
- 3.74,
- -0.43,
- -1.46,
- -1.4,
- -1.96,
- -4.3,
- -5.59,
- -4.62,
- -3.69,
- -2.47,
- -1.43,
- -0.87,
- -1.15,
- -1.45,
- -2.27,
- -1.87,
- -2.19,
- -2.9,
- -2.94,
- -2.97,
- -2.6,
- -2.29,
- -1.96,
- -1.58,
- -1.29,
- -0.83,
- -0.7,
- -1.22,
- -0.96,
- -0.54,
- -0.4,
- -0.7,
- -0.73,
- -0.93,
- -0.03,
- 0.22,
- 0.29,
- 0.47,
- 0.82,
- 0.72,
- 0.03,
- -0.08,
- -0.26,
- -0.03,
- 0.49,
- 0.66,
- 1.18,
- 2.12,
- 2.08,
- 1.33,
- 1.28,
- 1.56,
- 1.65,
- 0.93,
- 1.4,
- 2.36,
- 3.15,
- 2.85,
- 2.57,
- 2.77,
- 2.84,
- 2.63,
- 3.17,
- 3.95,
- 4.3,
- 4.68,
- 4.69,
- 4.98,
- 5.03,
- 5.21,
- 5.33,
- 5.52,
- 5.36,
- 5.22,
- 5.0,
- 4.94,
- 5.51,
- 6.61,
- 7.42,
- 0.88,
- 0.35,
- -1.56,
- -1.23,
- -0.47,
- 0.02,
- 0.76,
- 0.72,
- 1.74,
- 1.92,
- 2.07,
- 2.06,
- 1.99,
- 1.92,
- 1.6,
- 1.65,
- 1.41,
- 2.77,
- 4.15,
- 3.17,
- 2.86,
- 3.05,
- 2.9,
- 2.63,
- 2.48,
- 2.31,
- 1.61,
- 1.63,
- 1.07,
- 1.02,
- 1.76,
- 2.15,
- 1.72,
- -0.54,
- 0.69,
- -0.68,
- 1.05,
- 0.73,
- -0.41,
- -0.57,
- -0.79,
- -0.53,
- 0.1,
- -0.16,
- -0.11,
- 0.12,
- 0.16,
- 0.59,
- 1.47,
- 1.46,
- 1.36,
- 1.03,
- 1.0,
- 1.0,
- 1.17,
- 1.65,
- 2.24,
- 2.39,
- 2.45,
- 2.81,
- 3.38,
- 3.08,
- 2.92,
- 2.69,
- 2.97,
- 3.34,
- 3.14,
- 3.18,
- 3.52,
- 3.99,
- 4.26,
- 4.63,
- 5.06,
- 5.33,
- 5.61,
- 5.68,
- 5.96,
- 6.12,
- 6.28,
- 6.52,
- 6.9,
- 7.04,
- 7.19,
- 7.51,
- 8.06,
- 8.86,
- 8.73,
- 7.37,
- 2.25,
- -0.02,
- 2.01,
- 1.39,
- 0.28,
- -0.86,
- -1.41,
- -1.22,
- -1.33,
- 0.08,
- 1.05,
- 0.83,
- 0.76,
- 0.99,
- 1.05,
- -0.74,
- -1.17,
- -0.05,
- -0.53,
- -0.5,
- -0.45,
- -0.97,
- -1.44,
- -1.75,
- -2.17,
- -1.57,
- -1.96,
- -1.73,
- -1.31,
- -0.45,
- 0.52,
- 1.13,
- 1.08,
- 0.86,
- 1.62,
- 2.26,
- 1.38,
- 0.08,
- 1.39,
- 6.8,
- 6.03,
- 6.29,
- 5.6,
- 3.89,
- 2.02,
- 1.87,
- 1.94,
- 1.69,
- 1.15,
- 0.73,
- 0.31,
- -0.22,
- 0.25,
- 0.98,
- 1.65,
- 1.93,
- 2.21,
- 2.99,
- 3.55,
- 3.88,
- 4.0,
- 3.52,
- 2.23,
- 1.0,
- -0.67,
- -3.91,
- -4.23,
- -3.36,
- -2.13,
- -1.78,
- -1.66,
- -0.75,
- 0.54,
- 0.08,
- -1.11,
- 0.03,
- -0.14,
- -0.82,
- -1.47,
- -0.11,
- 0.03,
- 0.51,
- 1.16,
- 1.21,
- 2.35,
- 2.56,
- 3.03,
- 3.12,
- 3.49,
- 3.69,
- 3.97,
- 4.47,
- 4.65,
- 4.61,
- 4.93,
- 5.13,
- 5.45,
- 5.46,
- 4.98,
- 4.97,
- 4.97,
- 4.25,
- 4.01,
- 1.56,
- 0.68,
- 1.1,
- 0.56,
- 0.53,
- 1.05,
- 1.54,
- 1.75,
- 2.56,
- 3.29,
- -2.02,
- -1.29,
- -0.03,
- -1.9,
- -2.11,
- 0.21,
- -0.2,
- 0.59,
- 0.41,
- -0.48,
- -1.15,
- -0.55,
- -0.34,
- -0.17,
- -0.45,
- 0.0,
- 2.03,
- -0.5,
- -0.87,
- 0.78,
- 2.58,
- 6.4,
- 5.5,
- 4.34,
- 3.4,
- 3.49,
- 3.49,
- 2.72,
- 2.08,
- 1.48,
- 1.82,
- 1.76,
- 1.57,
- 1.82,
- 1.85,
- 2.04,
- 2.91,
- 3.19,
- 3.27,
- 3.57,
- 3.99,
- 3.37,
- 2.81,
- 3.88,
- 3.41,
- 3.37,
- 3.36,
- 3.16,
- 3.04,
- 2.86,
- 3.07,
- 3.63,
- 3.52,
- 3.42,
- 3.85,
- 4.5,
- 4.8,
- 4.68,
- 4.25,
- 4.19,
- 3.66,
- 4.45,
- 3.44,
- 3.71,
- 2.86,
- 2.0,
- 2.22,
- 2.34,
- 2.1,
- 1.72,
- 1.67,
- 1.73,
- 2.36,
- 2.81,
- 3.32,
- 4.84,
- 5.56,
- 4.95,
- 5.98,
- 4.01,
- 4.12,
- 3.83,
- 3.91,
- 1.1,
- -2.45,
- -3.61,
- -5.76,
- -5.42,
- -4.77,
- -4.26,
- -3.02,
- -2.32,
- -2.19,
- -2.32,
- -2.9,
- -2.66,
- -2.53,
- -3.18,
- -3.51,
- -3.59,
- -3.59,
- -3.14,
- -2.54,
- -2.25,
- -2.01,
- -1.62,
- -1.59,
- -1.35,
- -1.55,
- -1.75,
- -1.31,
- -1.4,
- -1.7,
- -1.54,
- -1.0,
- -0.5,
- -0.01,
- 0.0,
- -0.16,
- -0.37,
- -0.31,
- -0.26,
- -0.2,
- -0.1,
- 0.83,
- 0.86,
- 0.66,
- 1.68,
- 1.67,
- 0.69,
- 0.58,
- 0.96,
- 1.15,
- 0.74,
- 0.99,
- 1.81,
- 2.42,
- 2.39,
- 2.36,
- 2.35,
- 2.16,
- 2.3,
- 2.93,
- 3.46,
- 3.97,
- 4.25,
- 4.66,
- 5.42,
- 5.21,
- 5.13,
- 5.16,
- 5.03,
- 5.31,
- 4.92,
- 4.55,
- 4.42,
- 4.63,
- 5.33,
- 5.92,
- 6.82,
- 0.69,
- -0.25,
- -1.85,
- -1.32,
- -0.97,
- -0.5,
- -1.28,
- -0.16,
- 0.36,
- 3.8,
- 3.16,
- 2.19,
- 1.96,
- 2.07,
- 1.77,
- 1.47,
- 0.83,
- 1.33,
- 1.57,
- 2.89,
- 3.4,
- 2.61,
- 1.76,
- 2.26,
- 2.66,
- 2.44,
- 1.78,
- 1.41,
- 1.76,
- 0.79,
- 1.2,
- -0.16,
- -0.28,
- -0.03,
- -0.35,
- 0.12,
- 0.78,
- -0.85,
- -1.42,
- -0.94,
- -0.66,
- -0.5,
- -0.66,
- -1.21,
- -0.9,
- -0.82,
- -0.39,
- 0.6,
- 0.87,
- 0.89,
- 1.24,
- 1.35,
- 1.48,
- 1.52,
- 1.36,
- 1.19,
- 1.69,
- 1.74,
- 1.96,
- 2.68,
- 2.62,
- 2.61,
- 2.38,
- 2.61,
- 2.45,
- 2.72,
- 3.26,
- 3.65,
- 4.22,
- 4.53,
- 4.8,
- 5.28,
- 5.61,
- 5.77,
- 5.83,
- 5.69,
- 5.91,
- 5.96,
- 6.25,
- 6.46,
- 6.85,
- 6.77,
- 7.32,
- 7.85,
- 9.05,
- 9.42,
- 9.58,
- -0.3,
- 0.98,
- 0.16,
- 1.21,
- -0.11,
- -0.67,
- -0.65,
- -2.12,
- -0.87,
- 0.17,
- 1.15,
- 0.38,
- 0.82,
- 0.64,
- 0.83,
- -0.34,
- -0.43,
- -0.04,
- 0.53,
- -0.27,
- -0.01,
- -1.04,
- -1.04,
- -2.04,
- -2.83,
- -1.63,
- -3.07,
- -2.29,
- -1.96,
- -1.5,
- 0.01,
- 1.33,
- 2.8,
- 0.87,
- -1.21,
- -0.47,
- 0.97,
- 1.66,
- 1.94,
- 5.26,
- 5.14,
- 5.42,
- 4.61,
- 2.75,
- 1.83,
- 1.89,
- 1.94,
- 1.91,
- 1.39,
- 0.9,
- 0.76,
- 0.6,
- 0.74,
- 0.86,
- 1.08,
- 1.86,
- 2.37,
- 2.68,
- 3.45,
- 4.03,
- 4.22,
- 3.92,
- 3.2,
- 2.48,
- 1.28,
- -0.31,
- -0.61,
- -0.67,
- -0.75,
- -1.44,
- -1.45,
- -1.75,
- -0.64,
- -0.16,
- 0.42,
- -0.32,
- -0.3,
- -0.89,
- 0.55,
- -0.2,
- 0.75,
- 0.82,
- 0.82,
- 1.58,
- 2.49,
- 3.02,
- 3.13,
- 3.33,
- 3.36,
- 3.68,
- 4.03,
- 4.2,
- 4.54,
- 4.82,
- 5.09,
- 5.34,
- 5.44,
- 5.39,
- 5.38,
- 4.78,
- 4.3,
- 3.64,
- 2.6,
- 2.23,
- 0.8,
- -0.75,
- 0.51,
- 1.06,
- 1.75,
- 2.37,
- 2.39,
- 1.0,
- -3.23,
- 1.13,
- -0.4,
- -0.99,
- -0.36,
- 0.17,
- -0.9,
- 0.52,
- -0.28,
- -0.35,
- -0.54,
- -1.03,
- -2.69,
- -2.14,
- -0.49,
- -0.45,
- 1.11,
- 2.84,
- 0.0,
- -1.31,
- -1.28,
- 1.17,
- 6.89,
- 5.79,
- 5.58,
- 5.03,
- 4.63,
- 3.46,
- 2.28,
- 1.77,
- 1.56,
- 1.22,
- 0.93,
- 0.71,
- 1.11,
- 1.93,
- 2.29,
- 2.86,
- 3.18,
- 3.69,
- 3.83,
- 3.8,
- 3.33,
- 1.1,
- 2.68,
- 3.31,
- 3.44,
- 2.66,
- 2.69,
- 3.0,
- 3.45,
- 3.92,
- 4.12,
- 3.99,
- 3.58,
- 4.13,
- 4.84,
- 4.33,
- 4.34,
- 3.84,
- 4.66,
- 5.02,
- 4.75,
- 3.97,
- 3.34,
- 2.67,
- 2.63,
- 2.36,
- 2.76,
- 3.34,
- 3.35,
- 3.1,
- 3.09,
- 3.76,
- 4.49,
- 4.76,
- 5.2,
- 4.84,
- 5.08,
- 5.45,
- 5.93,
- 5.6,
- 5.72,
- 3.35,
- 2.01,
- 0.6,
- -0.1,
- -2.32,
- -4.48,
- -4.19,
- -3.64,
- -3.19,
- -3.43,
- -2.9,
- -2.68,
- -2.92,
- -2.97,
- -2.95,
- -3.63,
- -4.16,
- -3.94,
- -4.0,
- -4.1,
- -3.63,
- -2.86,
- -2.63,
- -1.95,
- -1.72,
- -1.53,
- -1.36,
- -1.49,
- -1.92,
- -2.19,
- -2.47,
- -2.31,
- -1.65,
- -0.74,
- -0.72,
- -1.0,
- -1.55,
- -0.85,
- -0.41,
- -0.5,
- -0.75,
- -0.46,
- 1.09,
- 1.5,
- 0.44,
- 1.66,
- 1.01,
- 0.72,
- 0.04,
- 0.61,
- -0.04,
- 0.05,
- 0.78,
- 1.52,
- 1.65,
- 1.37,
- 1.57,
- 1.92,
- 1.99,
- 2.37,
- 2.69,
- 3.26,
- 3.37,
- 3.94,
- 4.53,
- 5.33,
- 5.49,
- 5.41,
- 5.22,
- 5.31,
- 5.27,
- 4.98,
- 4.38,
- 3.67,
- 3.61,
- 4.43,
- 4.99,
- 5.38,
- 4.12,
- 2.07,
- 0.01,
- -1.5,
- -1.09,
- 0.77,
- -1.18,
- 0.08,
- 1.05,
- 1.4,
- 1.92,
- 2.1,
- 2.79,
- 2.86,
- 2.42,
- 2.61,
- 2.15,
- 1.46,
- 1.76,
- 1.91,
- 1.38,
- 0.51,
- 1.99,
- 1.45,
- 2.89,
- 2.17,
- 2.11,
- 1.94,
- 0.84,
- 0.84,
- 0.82,
- 1.77,
- 0.5,
- -1.59,
- -0.81,
- 0.14,
- 0.53,
- -2.17,
- -2.36,
- -2.61,
- -1.99,
- -1.23,
- -1.22,
- -2.07,
- -1.99,
- -1.57,
- -1.55,
- -0.73,
- 0.11,
- 0.17,
- 0.48,
- 1.0,
- 0.96,
- 1.32,
- 1.47,
- 0.81,
- 0.7,
- 1.24,
- 1.0,
- 1.45,
- 2.02,
- 1.89,
- 1.98,
- 2.04,
- 2.19,
- 2.66,
- 3.19,
- 3.93,
- 4.07,
- 4.26,
- 4.66,
- 4.78,
- 5.01,
- 5.03,
- 5.25,
- 5.14,
- 5.51,
- 6.22,
- 6.56,
- 6.82,
- 7.26,
- 7.35,
- 7.51,
- 8.3,
- 9.11,
- 9.39,
- 11.08,
- -1.24,
- 0.62,
- -0.39,
- 1.97,
- -0.4,
- -0.44,
- 1.05,
- -1.68,
- -1.56,
- -1.42,
- -1.11,
- 0.04,
- -0.08,
- -0.28,
- 1.03,
- 0.85,
- 0.99,
- -0.18,
- -0.12,
- 0.78,
- 1.18,
- 0.12,
- -1.08,
- -1.37,
- -2.02,
- -2.11,
- -2.69,
- -4.24,
- -4.45,
- -2.2,
- -0.26,
- 1.54,
- 2.15,
- -1.05,
- -0.72,
- 0.73,
- 1.63,
- 1.91,
- 4.14,
- 4.33,
- 4.1,
- 4.24,
- 3.13,
- 1.44,
- 0.96,
- 1.16,
- 1.8,
- 1.95,
- 1.84,
- 1.47,
- 0.94,
- 0.41,
- 0.38,
- 0.95,
- 1.67,
- 1.58,
- 2.3,
- 2.94,
- 3.08,
- 3.81,
- 4.07,
- 4.06,
- 3.01,
- 2.57,
- 1.43,
- 1.13,
- 0.98,
- 1.04,
- 0.5,
- 0.33,
- 0.04,
- -1.23,
- -0.26,
- 0.2,
- -0.06,
- 0.96,
- 1.51,
- 1.53,
- 1.17,
- 1.51,
- 1.18,
- 0.75,
- 0.96,
- 1.76,
- 2.66,
- 3.39,
- 3.57,
- 3.74,
- 3.88,
- 4.03,
- 4.34,
- 4.48,
- 4.75,
- 4.96,
- 5.31,
- 5.58,
- 5.54,
- 5.57,
- 5.56,
- 5.64,
- 4.87,
- 3.41,
- 2.24,
- 0.8,
- -0.37,
- -1.19,
- -0.82,
- 1.22,
- 2.02,
- 2.49,
- 2.64,
- -2.45,
- 1.72,
- 1.03,
- 0.45,
- -1.15,
- -1.94,
- -0.5,
- -0.9,
- -1.56,
- -0.93,
- -0.89,
- -0.67,
- -0.76,
- -1.14,
- -2.37,
- -3.14,
- -0.03,
- -0.94,
- -0.79,
- -0.33,
- -0.5,
- -0.83,
- 0.27,
- 5.48,
- 5.47,
- 5.26,
- 4.81,
- 4.36,
- 4.2,
- 2.84,
- 1.77,
- 1.21,
- 1.49,
- 1.44,
- 1.6,
- 1.79,
- 1.94,
- 2.08,
- 2.69,
- 3.08,
- 3.29,
- 3.27,
- 3.5,
- 3.38,
- 2.86,
- 2.46,
- 2.95,
- 3.34,
- 3.47,
- 3.57,
- 3.84,
- 4.04,
- 4.29,
- 4.06,
- 1.43,
- 4.89,
- 3.7,
- 4.28,
- 3.58,
- 3.67,
- 3.98,
- 4.11,
- 4.05,
- 3.8,
- 3.52,
- 3.24,
- 3.11,
- 2.61,
- 3.16,
- 3.3,
- 3.66,
- 4.59,
- 4.49,
- 4.66,
- 4.29,
- 4.26,
- 4.28,
- 4.66,
- 4.77,
- 5.14,
- 5.19,
- 5.33,
- 5.23,
- 5.64,
- 5.97,
- 5.96,
- 5.44,
- 2.72,
- 2.68,
- 0.79,
- -0.12,
- -0.49,
- -0.94,
- -1.87,
- -2.59,
- -3.1,
- -3.4,
- -2.78,
- -2.88,
- -2.96,
- -4.04,
- -4.19,
- -3.65,
- -2.59,
- -2.62,
- -2.69,
- -3.16,
- -3.27,
- -2.99,
- -2.02,
- -1.88,
- -2.05,
- -2.18,
- -3.38,
- -4.05,
- -2.89,
- -1.82,
- -1.82,
- -1.35,
- -1.64,
- -1.31,
- -1.06,
- -0.68,
- -0.43,
- -0.75,
- -0.26,
- 0.91,
- 0.99,
- -0.16,
- 1.25,
- 0.21,
- 0.86,
- 0.34,
- -0.17,
- -1.17,
- -0.22,
- 0.45,
- 0.64,
- 0.82,
- 1.06,
- 1.42,
- 1.33,
- 1.88,
- 2.34,
- 2.51,
- 2.6,
- 3.06,
- 3.86,
- 4.34,
- 5.02,
- 5.13,
- 5.08,
- 5.17,
- 5.36,
- 5.05,
- 4.88,
- 4.39,
- 3.6,
- 3.6,
- 3.73,
- 4.27,
- 4.4,
- 3.78,
- 2.04,
- 2.55,
- 2.79,
- 0.78,
- -0.37,
- -2.34,
- -0.64,
- -0.42,
- -0.41,
- -0.07,
- 1.87,
- 2.77,
- 2.29,
- 2.09,
- 2.45,
- 2.02,
- 2.38,
- 2.29,
- 1.88,
- 1.96,
- 2.39,
- 2.14,
- 2.64,
- 2.68,
- 1.75,
- 1.44,
- 1.78,
- 1.44,
- 0.39,
- 0.37,
- -0.05,
- -0.39,
- -0.51,
- -0.95,
- -1.08,
- -0.02,
- -3.36,
- -4.33,
- -4.13,
- -3.2,
- -2.3,
- -2.38,
- -2.88,
- -2.56,
- -2.05,
- -2.2,
- -1.48,
- -0.83,
- -0.51,
- 0.08,
- 0.32,
- 0.62,
- 0.73,
- 0.44,
- 0.21,
- 0.17,
- 0.32,
- 0.62,
- 0.76,
- 1.27,
- 1.53,
- 1.55,
- 1.62,
- 2.07,
- 2.61,
- 3.02,
- 3.48,
- 3.83,
- 4.03,
- 4.2,
- 4.45,
- 4.63,
- 4.75,
- 4.82,
- 4.99,
- 5.2,
- 5.51,
- 6.21,
- 6.97,
- 7.48,
- 7.4,
- 7.44,
- 8.03,
- 9.58,
- 10.08,
- 10.69,
- 5.65,
- -1.18,
- -0.36,
- 1.96,
- 1.89,
- -0.15,
- 1.11,
- 0.4,
- -2.44,
- -2.46,
- -1.79,
- -1.6,
- -1.6,
- -0.6,
- 0.15,
- 0.89,
- 1.01,
- 0.55,
- 0.16,
- 0.75,
- 1.07,
- 0.15,
- -1.21,
- -1.6,
- -1.99,
- -5.23,
- -7.95,
- -6.7,
- -4.6,
- -2.56,
- -1.05,
- 0.48,
- 0.14,
- -0.94,
- -1.69,
- 0.51,
- 2.15,
- 1.73,
- 3.48,
- 3.19,
- 3.35,
- 3.45,
- 2.21,
- 0.59,
- 0.87,
- 0.94,
- 0.5,
- 1.75,
- 1.96,
- 1.76,
- 1.09,
- 0.38,
- 0.57,
- 1.01,
- 1.51,
- 1.91,
- 2.44,
- 2.86,
- 3.63,
- 3.56,
- 3.94,
- 3.7,
- 3.45,
- 2.66,
- 1.78,
- 1.55,
- 1.39,
- 1.76,
- 1.48,
- 1.32,
- 0.2,
- 1.53,
- 0.64,
- 1.88,
- 1.48,
- 1.51,
- 1.48,
- 2.28,
- 2.37,
- 1.49,
- 2.68,
- 1.73,
- 1.04,
- 2.27,
- 3.45,
- 3.35,
- 3.37,
- 3.69,
- 4.02,
- 4.4,
- 4.69,
- 4.86,
- 4.87,
- 4.56,
- 4.69,
- 5.29,
- 5.75,
- 6.06,
- 6.21,
- 6.24,
- 6.17,
- 6.06,
- 4.8,
- 1.13,
- -2.1,
- -2.49,
- -1.43,
- 0.76,
- 1.76,
- 2.45,
- 1.53,
- -1.11,
- 0.92,
- 1.2,
- 0.16,
- -0.32,
- -1.2,
- -1.44,
- -1.19,
- -3.21,
- -2.64,
- -0.79,
- -0.49,
- -0.54,
- 0.2,
- -0.1,
- -1.21,
- -3.03,
- -2.77,
- 0.45,
- 0.09,
- 0.18,
- 0.44,
- 0.46,
- 1.5,
- 4.37,
- 4.5,
- 4.51,
- 4.19,
- 3.53,
- 3.16,
- 2.28,
- 1.72,
- 1.29,
- 1.35,
- 0.89,
- 1.39,
- 1.8,
- 2.37,
- 2.46,
- 2.71,
- 3.18,
- 3.4,
- 3.53,
- 3.57,
- 3.88,
- 2.92,
- 3.5,
- 3.41,
- 3.42,
- 3.73,
- 3.88,
- 4.16,
- 4.51,
- 5.27,
- 6.35,
- 0.77,
- 3.75,
- 3.64,
- 3.26,
- 3.3,
- 3.39,
- 3.42,
- 3.9,
- 3.09,
- 2.74,
- 3.02,
- 2.63,
- 4.02,
- 4.13,
- 4.23,
- 4.51,
- 4.54,
- 4.88,
- 4.17,
- 3.89,
- 3.56,
- 3.83,
- 4.38,
- 5.28,
- 5.4,
- 5.72,
- 6.22,
- 5.66,
- 4.9,
- 5.08,
- 5.7,
- 5.15,
- 4.43,
- 5.11,
- 5.86,
- 4.88,
- 3.29,
- 1.6,
- 1.26,
- -1.36,
- -0.65,
- -1.42,
- -1.8,
- -2.57,
- -1.54,
- -2.05,
- -2.18,
- -1.27,
- -1.89,
- -1.86,
- -0.78,
- -1.82,
- -1.92,
- -1.72,
- -2.32,
- -2.94,
- -2.44,
- -2.69,
- -2.86,
- -3.39,
- -4.25,
- -3.19,
- -2.88,
- -2.65,
- -2.61,
- -2.46,
- -2.47,
- -1.63,
- -1.02,
- -0.48,
- -0.26,
- 0.72,
- 1.68,
- -0.98,
- 1.02,
- -0.44,
- 0.45,
- 0.71,
- 0.01,
- -1.05,
- -0.54,
- 0.08,
- 0.51,
- 0.34,
- 0.83,
- 1.22,
- 1.09,
- 2.03,
- 2.38,
- 2.18,
- 2.44,
- 2.59,
- 3.41,
- 4.1,
- 4.65,
- 4.93,
- 4.94,
- 4.8,
- 4.99,
- 5.06,
- 4.93,
- 4.54,
- 3.97,
- 3.52,
- 3.25,
- 3.19,
- 3.2,
- 2.86,
- 2.5,
- 2.05,
- 2.18,
- 1.36,
- 0.45,
- -1.12,
- -3.28,
- -1.76,
- 1.16,
- 1.46,
- 2.29,
- 4.14,
- 2.83,
- 2.63,
- 3.72,
- 3.21,
- 4.09,
- 3.85,
- 2.51,
- 1.43,
- 1.41,
- 1.42,
- 1.54,
- 1.65,
- 2.02,
- 1.34,
- 1.05,
- 1.09,
- 2.27,
- 0.74,
- -1.26,
- -0.99,
- -0.92,
- -0.39,
- -0.05,
- -0.01,
- -5.07,
- -5.49,
- -5.62,
- -4.93,
- -3.98,
- -2.98,
- -3.71,
- -3.82,
- -3.08,
- -2.95,
- -2.14,
- -1.93,
- -1.54,
- -1.23,
- -0.91,
- -0.85,
- -0.67,
- -0.6,
- -0.6,
- -0.38,
- -0.53,
- 0.11,
- 0.43,
- 0.57,
- 1.3,
- 1.41,
- 1.68,
- 2.08,
- 2.36,
- 2.59,
- 2.63,
- 3.13,
- 3.58,
- 3.92,
- 4.08,
- 4.33,
- 4.6,
- 4.75,
- 4.62,
- 4.88,
- 5.37,
- 5.94,
- 6.41,
- 6.94,
- 7.27,
- 7.51,
- 8.02,
- 9.22,
- 10.33,
- 10.09,
- 8.67,
- 1.24,
- -1.36,
- 1.61,
- 2.01,
- -0.86,
- -1.76,
- 0.59,
- 0.81,
- -2.05,
- -1.67,
- -2.01,
- -1.51,
- -1.74,
- -1.58,
- -0.53,
- -0.18,
- 1.09,
- 0.37,
- -0.58,
- -1.56,
- -0.14,
- -1.11,
- -2.76,
- -4.92,
- -7.48,
- -7.24,
- -5.93,
- -4.61,
- -2.65,
- -1.4,
- -0.75,
- -0.14,
- -0.92,
- -1.72,
- -0.66,
- 0.63,
- 0.22,
- 1.69,
- 1.66,
- 1.82,
- 2.22,
- 0.7,
- 0.09,
- 0.43,
- 0.6,
- 0.69,
- 1.05,
- 1.79,
- 1.73,
- 1.4,
- 0.82,
- 0.09,
- 0.84,
- 1.84,
- 2.24,
- 2.74,
- 3.38,
- 3.67,
- 3.97,
- 4.31,
- 4.28,
- 3.41,
- 3.36,
- 3.01,
- 2.64,
- 3.17,
- 2.85,
- 2.87,
- 2.49,
- 2.75,
- 1.72,
- 1.59,
- 1.69,
- 2.44,
- 2.57,
- 2.33,
- 1.8,
- 1.6,
- 2.75,
- 3.33,
- 5.39,
- 4.99,
- 3.73,
- 3.22,
- 3.34,
- 3.87,
- 3.85,
- 4.2,
- 4.76,
- 4.76,
- 4.97,
- 4.85,
- 5.45,
- 5.86,
- 5.8,
- 6.36,
- 6.69,
- 6.87,
- 7.42,
- 7.36,
- 7.57,
- 6.64,
- 3.41,
- -2.38,
- -3.68,
- -2.47,
- -0.89,
- 0.69,
- 1.91,
- -0.6,
- 0.72,
- 1.35,
- -0.53,
- -0.02,
- -0.2,
- -0.85,
- -1.26,
- -1.7,
- -1.76,
- -3.46,
- -3.08,
- -2.37,
- -0.26,
- 0.29,
- 0.27,
- 0.19,
- -1.04,
- -0.15,
- 1.47,
- 0.88,
- -0.13,
- -0.57,
- -1.46,
- -1.51,
- 1.49,
- 3.57,
- 3.87,
- 3.92,
- 3.34,
- 2.73,
- 2.64,
- 1.78,
- 1.71,
- 1.26,
- 1.5,
- 1.33,
- 1.97,
- 2.34,
- 2.47,
- 2.67,
- 3.12,
- 3.9,
- 4.55,
- 4.56,
- 4.43,
- 4.19,
- 2.65,
- 2.77,
- 2.48,
- 2.87,
- 3.69,
- 4.21,
- 4.12,
- 4.07,
- 4.3,
- 3.64,
- 3.35,
- 3.13,
- 2.92,
- 3.0,
- 2.38,
- 2.16,
- 2.55,
- 2.84,
- 2.97,
- 3.11,
- 3.9,
- 3.7,
- 4.22,
- 4.02,
- 3.8,
- 3.38,
- 3.02,
- 2.78,
- 2.92,
- 3.44,
- 3.8,
- 3.92,
- 4.15,
- 4.68,
- 5.64,
- 6.37,
- 6.77,
- 5.71,
- 5.27,
- 5.16,
- 5.36,
- 5.73,
- 5.36,
- 5.22,
- 5.48,
- 5.91,
- 6.1,
- 6.16,
- 4.97,
- 4.32,
- 3.76,
- 2.6,
- 0.13,
- 0.59,
- 1.11,
- 0.76,
- 0.56,
- 0.72,
- -0.53,
- -1.06,
- -0.28,
- -0.81,
- -0.5,
- -1.78,
- -2.85,
- -3.4,
- -4.64,
- -4.38,
- -4.03,
- -5.46,
- -4.89,
- -4.19,
- -3.75,
- -3.39,
- -2.71,
- -2.42,
- -4.06,
- -3.59,
- -2.18,
- -0.98,
- -0.39,
- -0.71,
- -0.73,
- -0.73,
- -0.34,
- 0.0,
- 0.38,
- 0.33,
- -0.7,
- -0.93,
- -0.9,
- -0.28,
- 0.08,
- 0.21,
- 0.63,
- 0.31,
- 0.82,
- 2.22,
- 2.37,
- 2.76,
- 2.84,
- 3.09,
- 3.92,
- 4.37,
- 4.26,
- 4.74,
- 4.7,
- 4.88,
- 5.08,
- 4.95,
- 4.54,
- 4.05,
- 3.49,
- 2.89,
- 2.57,
- 2.63,
- 2.53,
- 2.17,
- 2.46,
- 1.99,
- 2.23,
- 0.46,
- -0.73,
- -2.61,
- -2.74,
- -1.35,
- 0.58,
- 0.35,
- 2.88,
- 3.02,
- 2.72,
- 2.4,
- 2.83,
- 3.01,
- 2.59,
- 2.3,
- 0.75,
- 1.17,
- 0.95,
- 1.44,
- 1.09,
- 1.75,
- 1.75,
- 1.38,
- 0.87,
- 1.68,
- 1.13,
- -0.91,
- -0.23,
- 0.11,
- -1.06,
- -0.2,
- 3.78,
- -8.14,
- -6.29,
- -6.48,
- -5.87,
- -5.28,
- -4.24,
- -4.37,
- -4.31,
- -4.02,
- -3.84,
- -3.51,
- -2.65,
- -1.78,
- -1.57,
- -1.07,
- -0.78,
- -1.08,
- -1.31,
- -0.9,
- -0.74,
- -0.52,
- -0.52,
- -0.3,
- 0.24,
- 0.86,
- 1.28,
- 1.86,
- 1.97,
- 2.14,
- 2.44,
- 2.61,
- 3.04,
- 3.26,
- 3.32,
- 3.33,
- 3.34,
- 3.61,
- 4.15,
- 3.98,
- 4.46,
- 5.42,
- 5.81,
- 6.24,
- 6.4,
- 6.91,
- 7.26,
- 7.69,
- 8.5,
- 9.44,
- 10.31,
- 8.93,
- 6.4,
- 0.44,
- 0.46,
- 0.85,
- 0.35,
- 0.98,
- 2.25,
- -1.29,
- -1.09,
- -0.81,
- -1.72,
- -2.19,
- -2.18,
- -2.06,
- -2.07,
- -0.32,
- -1.56,
- -1.2,
- -1.69,
- -2.01,
- -1.36,
- -1.84,
- -6.73,
- -8.52,
- -8.39,
- -7.54,
- -6.39,
- -4.78,
- -2.77,
- -1.19,
- -1.17,
- -0.55,
- -0.76,
- -0.69,
- -0.43,
- 0.2,
- 0.19,
- 0.4,
- -0.11,
- -0.1,
- 1.27,
- 1.34,
- 1.0,
- 0.52,
- -0.77,
- 0.68,
- 1.09,
- 1.22,
- 1.38,
- 0.33,
- 1.34,
- 0.96,
- 1.41,
- 1.66,
- 2.99,
- 3.47,
- 3.67,
- 3.87,
- 4.11,
- 4.83,
- 4.78,
- 4.5,
- 4.0,
- 3.66,
- 3.27,
- 3.76,
- 4.7,
- 4.66,
- 4.14,
- 3.6,
- 3.28,
- 3.62,
- 4.35,
- 4.93,
- 5.02,
- 4.98,
- 4.92,
- 4.5,
- 3.83,
- 3.67,
- 3.97,
- 4.12,
- 4.56,
- 4.19,
- 3.94,
- 4.04,
- 4.25,
- 4.36,
- 4.73,
- 5.18,
- 5.57,
- 5.96,
- 6.03,
- 6.41,
- 6.47,
- 6.67,
- 7.38,
- 7.58,
- 8.34,
- 8.8,
- 8.88,
- 8.47,
- 4.49,
- -3.4,
- -4.85,
- -2.96,
- -2.95,
- -4.49,
- -4.53,
- -0.86,
- 0.74,
- 1.33,
- 0.25,
- -1.61,
- 0.3,
- -1.04,
- -0.92,
- -1.78,
- -2.66,
- -2.84,
- -2.69,
- -3.58,
- -2.72,
- -0.61,
- 0.47,
- -0.26,
- -0.46,
- 0.49,
- 0.31,
- 1.65,
- 1.51,
- -2.25,
- -1.51,
- -1.92,
- -2.82,
- -0.39,
- 4.11,
- 3.67,
- 3.29,
- 2.51,
- 1.92,
- 1.69,
- 1.11,
- 1.21,
- 1.42,
- 1.83,
- 2.0,
- 2.4,
- 2.89,
- 3.35,
- 3.21,
- 1.72,
- 5.17,
- 4.76,
- 4.93,
- 4.5,
- 3.15,
- 2.59,
- 2.22,
- 2.15,
- 2.61,
- 3.47,
- 3.67,
- 3.52,
- 3.58,
- 3.87,
- 2.83,
- 3.27,
- 2.79,
- 2.64,
- 2.88,
- 2.98,
- 3.04,
- 2.92,
- 3.47,
- 3.63,
- 3.46,
- 3.54,
- 3.5,
- 3.4,
- 3.12,
- 2.77,
- 2.62,
- 2.65,
- 2.94,
- 3.24,
- 3.49,
- 3.86,
- 4.39,
- 4.64,
- 4.87,
- 5.24,
- 6.45,
- 6.58,
- 5.73,
- 4.37,
- 4.38,
- 5.24,
- 6.12,
- 6.41,
- 5.96,
- 5.46,
- 5.19,
- 5.08,
- 4.94,
- 3.8,
- 3.16,
- 2.66,
- 2.34,
- 3.08,
- 2.38,
- 2.69,
- 2.81,
- 2.11,
- 0.69,
- 0.46,
- -0.41,
- -1.19,
- -0.28,
- -0.62,
- -1.22,
- -2.45,
- -2.81,
- -3.76,
- -4.13,
- -5.59,
- -6.21,
- -5.21,
- -3.98,
- -3.97,
- -3.36,
- -1.73,
- -1.53,
- -2.47,
- -0.9,
- 1.32,
- 2.09,
- 2.26,
- 0.13,
- -1.71,
- -0.28,
- 0.29,
- 0.65,
- 0.23,
- -0.8,
- -2.29,
- -2.11,
- -0.63,
- -0.17,
- -0.39,
- -0.07,
- -0.12,
- 0.14,
- 0.65,
- 2.02,
- 2.33,
- 3.37,
- 3.14,
- 3.69,
- 4.03,
- 4.03,
- 4.25,
- 4.5,
- 4.81,
- 5.06,
- 4.88,
- 4.73,
- 4.46,
- 3.6,
- 2.86,
- 2.41,
- 2.33,
- 2.37,
- 2.46,
- 2.03,
- 2.35,
- 2.4,
- 0.15,
- -0.25,
- 0.74,
- -0.51,
- -0.06,
- 0.59,
- 1.82,
- 2.3,
- 2.38,
- 2.44,
- 2.4,
- 2.29,
- 2.75,
- 2.39,
- 2.98,
- 1.62,
- 1.71,
- 0.12,
- 0.01,
- 1.23,
- 1.51,
- 1.1,
- 0.81,
- 0.75,
- 1.09,
- 1.33,
- -0.59,
- -0.92,
- -0.54,
- 0.58,
- 3.2,
- 4.77,
- -5.07,
- -7.69,
- -7.17,
- -6.62,
- -6.44,
- -5.81,
- -5.49,
- -5.45,
- -4.88,
- -4.45,
- -3.56,
- -2.77,
- -1.97,
- -1.35,
- -1.36,
- -1.44,
- -1.13,
- -0.74,
- -0.81,
- -0.94,
- -0.94,
- -1.06,
- -1.24,
- -0.12,
- 0.11,
- 0.78,
- 1.67,
- 1.89,
- 2.0,
- 2.19,
- 2.57,
- 2.7,
- 2.51,
- 2.68,
- 2.76,
- 3.05,
- 3.53,
- 3.83,
- 4.8,
- 5.03,
- 5.22,
- 5.71,
- 6.16,
- 6.71,
- 6.7,
- 6.96,
- 7.1,
- 7.69,
- 8.41,
- 9.15,
- 9.69,
- 8.97,
- 2.0,
- 0.6,
- -0.24,
- 1.12,
- 2.48,
- 2.13,
- 1.87,
- 1.03,
- -1.28,
- -1.74,
- -2.46,
- -1.51,
- 0.7,
- -0.55,
- -2.53,
- -1.76,
- -1.91,
- -1.43,
- -2.89,
- -1.43,
- -2.31,
- -4.64,
- -7.64,
- -7.75,
- -6.9,
- -6.14,
- -4.94,
- -3.23,
- -1.18,
- -0.56,
- -1.04,
- -1.49,
- 0.2,
- -0.8,
- -0.58,
- -0.21,
- -0.38,
- -1.44,
- -1.06,
- 0.61,
- 0.56,
- 0.16,
- 0.73,
- -0.8,
- -0.73,
- -0.05,
- 0.47,
- 0.74,
- 1.32,
- 0.7,
- 0.54,
- 1.14,
- 2.37,
- 2.54,
- 2.77,
- 3.3,
- 3.85,
- 4.38,
- 4.41,
- 4.68,
- 4.66,
- 4.31,
- 4.07,
- 3.95,
- 4.27,
- 4.64,
- 5.4,
- 5.44,
- 5.62,
- 5.62,
- 5.34,
- 5.51,
- 5.79,
- 5.86,
- 5.6,
- 5.41,
- 5.08,
- 4.95,
- 4.72,
- 4.74,
- 4.42,
- 4.28,
- 3.76,
- 3.94,
- 4.01,
- 4.04,
- 4.28,
- 4.83,
- 5.43,
- 5.67,
- 5.91,
- 6.25,
- 6.38,
- 6.41,
- 6.32,
- 6.87,
- 7.42,
- 8.2,
- 9.27,
- 9.45,
- 8.58,
- 3.85,
- -6.8,
- -5.69,
- -4.2,
- -4.46,
- -4.9,
- -2.68,
- -0.5,
- 1.68,
- 2.14,
- 2.06,
- 0.16,
- -0.65,
- -0.26,
- 0.04,
- -1.08,
- -3.22,
- -2.95,
- -2.76,
- -3.59,
- -3.34,
- -3.57,
- -2.35,
- -1.12,
- -0.02,
- 0.04,
- -0.31,
- -0.34,
- -0.12,
- -0.46,
- -2.36,
- -1.81,
- -1.5,
- -1.36,
- 1.29,
- 3.05,
- 3.05,
- 2.54,
- 1.78,
- 0.62,
- -0.06,
- 0.07,
- 0.66,
- 0.97,
- 1.51,
- 2.5,
- 3.15,
- 3.74,
- 5.24,
- 9.04,
- 0.2,
- 5.88,
- 4.78,
- 4.37,
- 3.54,
- 2.53,
- 1.83,
- 1.97,
- 2.2,
- 1.97,
- 3.12,
- 3.17,
- 3.15,
- 3.82,
- 4.57,
- 4.3,
- 3.95,
- 3.1,
- 2.99,
- 3.26,
- 4.28,
- 4.57,
- 3.9,
- 3.57,
- 3.04,
- 2.79,
- 2.59,
- 2.46,
- 2.43,
- 2.02,
- 1.8,
- 2.06,
- 2.46,
- 2.86,
- 3.37,
- 3.27,
- 3.56,
- 3.99,
- 3.79,
- 4.16,
- 4.89,
- 5.8,
- 6.25,
- 5.7,
- 4.55,
- 4.72,
- 5.33,
- 6.49,
- 7.03,
- 6.7,
- 5.94,
- 5.42,
- 4.25,
- 3.65,
- 3.95,
- 3.06,
- 3.05,
- 2.76,
- 3.86,
- 4.03,
- 3.26,
- 3.52,
- 4.49,
- 3.58,
- 1.14,
- 0.0,
- 0.1,
- -0.09,
- 0.25,
- -0.12,
- -2.06,
- -3.2,
- -4.82,
- -7.29,
- -7.32,
- -5.9,
- -5.76,
- -5.1,
- -3.93,
- -2.78,
- -1.36,
- -1.14,
- -0.57,
- 0.55,
- 1.6,
- 2.61,
- 3.69,
- 2.98,
- 2.75,
- 1.44,
- -0.81,
- -1.24,
- -1.67,
- -1.88,
- -3.44,
- -1.68,
- -0.67,
- -1.14,
- -0.91,
- -0.72,
- -0.62,
- 0.3,
- 0.82,
- 1.08,
- 2.11,
- 3.59,
- 3.65,
- 3.5,
- 3.77,
- 4.26,
- 4.45,
- 4.78,
- 4.82,
- 4.79,
- 4.72,
- 4.63,
- 3.7,
- 3.09,
- 2.73,
- 2.4,
- 2.39,
- 2.45,
- 2.34,
- 2.5,
- 1.88,
- 0.39,
- 0.29,
- 1.16,
- -1.2,
- -0.49,
- 0.27,
- -0.64,
- 1.34,
- 2.02,
- 2.36,
- 2.51,
- 2.6,
- 2.64,
- 2.19,
- 2.25,
- 2.78,
- 1.81,
- 1.74,
- 1.07,
- 1.09,
- 0.69,
- 1.11,
- 1.1,
- 0.21,
- 0.93,
- 0.32,
- 0.09,
- 0.78,
- 0.11,
- -0.09,
- 4.25,
- 1.83,
- -3.69,
- -8.13,
- -7.74,
- -6.78,
- -6.6,
- -5.66,
- -7.5,
- -6.44,
- -6.04,
- -5.96,
- -4.45,
- -2.99,
- -2.02,
- -1.58,
- -1.49,
- -1.81,
- -1.89,
- -1.23,
- -0.83,
- -1.0,
- -0.96,
- -1.15,
- -0.7,
- -0.62,
- -0.09,
- 0.53,
- 0.82,
- 1.4,
- 2.0,
- 2.2,
- 2.19,
- 2.15,
- 2.23,
- 2.27,
- 2.6,
- 2.9,
- 3.6,
- 4.1,
- 5.56,
- 5.7,
- 5.95,
- 5.92,
- 6.14,
- 6.4,
- 6.87,
- 6.87,
- 7.05,
- 7.38,
- 7.89,
- 8.35,
- 8.87,
- 9.17,
- 5.88,
- -0.12,
- -1.39,
- -0.06,
- 0.45,
- 2.45,
- 3.4,
- 1.99,
- -0.27,
- -1.84,
- -1.81,
- -2.58,
- -1.13,
- -0.56,
- -0.11,
- 0.47,
- -0.32,
- -1.59,
- -2.15,
- -2.65,
- -3.87,
- -3.71,
- -8.28,
- -7.66,
- -7.11,
- -6.93,
- -5.82,
- -3.7,
- -1.58,
- -0.08,
- -0.64,
- -0.47,
- 1.07,
- -0.64,
- -0.76,
- -1.19,
- -1.77,
- -2.14,
- -1.48,
- 0.0,
- 0.21,
- -1.12,
- -1.62,
- -1.47,
- -1.63,
- -0.8,
- -0.21,
- -0.2,
- -0.28,
- -0.5,
- -0.47,
- -0.06,
- 0.42,
- 1.54,
- 2.78,
- 3.2,
- 3.43,
- 3.79,
- 4.17,
- 4.25,
- 4.29,
- 4.42,
- 4.88,
- 4.9,
- 4.89,
- 4.78,
- 5.01,
- 4.8,
- 4.41,
- 4.16,
- 3.8,
- 4.15,
- 4.41,
- 4.82,
- 4.41,
- 4.29,
- 4.49,
- 4.69,
- 4.4,
- 4.08,
- 3.69,
- 3.42,
- 3.45,
- 3.46,
- 3.8,
- 4.3,
- 5.1,
- 5.49,
- 5.8,
- 6.05,
- 6.16,
- 6.24,
- 6.25,
- 6.22,
- 6.31,
- 6.71,
- 7.23,
- 7.79,
- 9.1,
- 9.98,
- 6.33,
- 3.96,
- -2.72,
- -3.17,
- -2.74,
- -3.52,
- -5.24,
- -2.09,
- 0.27,
- 1.67,
- 3.94,
- 5.31,
- 5.74,
- 3.21,
- 2.94,
- 3.08,
- -2.43,
- -2.78,
- -3.85,
- -3.46,
- -4.36,
- -3.13,
- -3.83,
- -4.42,
- -2.81,
- -1.43,
- -1.01,
- 0.06,
- -0.74,
- -1.13,
- -1.65,
- -1.58,
- -0.99,
- 0.26,
- 0.16,
- -0.99,
- 0.16,
- 3.43,
- 2.39,
- 1.75,
- 0.12,
- -2.17,
- -1.05,
- -0.07,
- 1.0,
- 1.85,
- 2.13,
- 2.58,
- 3.22,
- 4.12,
- 5.33,
- 7.39,
- 5.43,
- 4.86,
- 4.1,
- 3.22,
- 2.26,
- 1.53,
- 1.74,
- 2.05,
- 2.39,
- 2.2,
- 2.24,
- 2.49,
- 3.34,
- 3.54,
- 4.11,
- 4.26,
- 3.99,
- 3.19,
- 2.25,
- 3.18,
- 3.99,
- 3.83,
- 3.57,
- 2.97,
- 2.11,
- 2.23,
- 2.67,
- 2.36,
- 2.23,
- 1.88,
- 2.31,
- 2.48,
- 2.52,
- 2.13,
- 2.37,
- 3.11,
- 3.31,
- 3.47,
- 4.1,
- 4.43,
- 5.26,
- 5.96,
- 5.56,
- 5.35,
- 4.64,
- 4.63,
- 5.7,
- 6.61,
- 6.83,
- 6.74,
- 6.6,
- 6.48,
- 6.47,
- 5.04,
- 2.78,
- 1.91,
- 2.02,
- 2.74,
- 3.02,
- 2.35,
- 2.3,
- 3.4,
- 4.21,
- 4.76,
- 3.88,
- 1.7,
- 0.08,
- 0.88,
- 1.39,
- -1.78,
- -4.78,
- -5.15,
- -8.02,
- -7.86,
- -6.98,
- -7.4,
- -5.8,
- -4.28,
- -3.39,
- -2.29,
- -1.74,
- -1.23,
- -0.04,
- 0.7,
- 1.68,
- 2.37,
- 3.05,
- 3.17,
- 3.33,
- 1.99,
- -1.57,
- -2.88,
- -2.82,
- -4.26,
- -3.21,
- -1.47,
- -1.65,
- -1.87,
- -1.17,
- -0.99,
- -1.0,
- -0.27,
- 0.31,
- 1.31,
- 1.76,
- 3.59,
- 3.34,
- 3.38,
- 3.93,
- 4.04,
- 4.17,
- 4.57,
- 4.6,
- 4.58,
- 4.3,
- 3.85,
- 3.59,
- 3.55,
- 3.47,
- 3.5,
- 3.57,
- 3.77,
- 4.21,
- 4.62,
- -0.21,
- -0.06,
- 0.92,
- 0.48,
- -0.5,
- -0.05,
- -0.05,
- 1.5,
- 2.14,
- 2.36,
- 2.53,
- 2.74,
- 2.84,
- 1.9,
- 1.87,
- 2.3,
- 2.15,
- 1.79,
- 1.48,
- 1.51,
- 1.14,
- 0.32,
- 1.25,
- 0.96,
- 0.23,
- 0.48,
- -0.03,
- 0.64,
- 0.63,
- 2.66,
- 2.8,
- -4.75,
- -6.83,
- -8.16,
- -7.37,
- -6.52,
- -8.21,
- -6.37,
- -7.77,
- -7.77,
- -6.89,
- -6.54,
- -5.18,
- -3.79,
- -2.57,
- -2.04,
- -2.3,
- -2.35,
- -2.49,
- -1.96,
- -0.93,
- -0.77,
- -0.75,
- -0.67,
- -0.93,
- -0.96,
- -0.35,
- 0.25,
- 0.85,
- 1.11,
- 1.26,
- 1.58,
- 1.68,
- 1.85,
- 2.05,
- 2.43,
- 3.07,
- 3.73,
- 4.37,
- 5.13,
- 5.69,
- 5.8,
- 5.65,
- 5.73,
- 6.06,
- 6.44,
- 7.02,
- 7.1,
- 7.06,
- 7.09,
- 7.39,
- 8.49,
- 9.08,
- 8.94,
- 8.58,
- -1.54,
- -1.45,
- -1.01,
- 1.26,
- 2.56,
- 3.87,
- 4.47,
- 4.68,
- 2.51,
- -0.03,
- -0.83,
- -2.28,
- -0.28,
- 1.53,
- 1.08,
- -0.49,
- -0.6,
- -0.87,
- -3.65,
- -4.08,
- -3.57,
- -8.36,
- -7.62,
- -6.89,
- -6.57,
- -6.26,
- -4.86,
- -2.29,
- -0.11,
- -2.08,
- -1.63,
- -1.65,
- -0.29,
- -1.58,
- -1.89,
- -2.13,
- -2.74,
- -1.79,
- -1.07,
- -1.68,
- -1.62,
- -2.06,
- -2.43,
- -2.29,
- -1.48,
- -0.96,
- -0.71,
- -0.55,
- -0.47,
- -0.97,
- -0.9,
- -0.33,
- 0.0,
- 1.15,
- 2.16,
- 2.94,
- 3.4,
- 3.47,
- 3.62,
- 3.94,
- 4.38,
- 4.69,
- 4.89,
- 4.94,
- 4.91,
- 4.4,
- 4.4,
- 3.66,
- 3.59,
- 3.49,
- 3.09,
- 3.49,
- 3.81,
- 4.06,
- 4.19,
- 3.99,
- 3.71,
- 3.53,
- 2.98,
- 2.62,
- 2.64,
- 2.9,
- 3.33,
- 3.74,
- 4.18,
- 4.84,
- 5.48,
- 5.27,
- 5.72,
- 6.06,
- 6.51,
- 6.51,
- 6.78,
- 6.86,
- 7.06,
- 7.18,
- 7.4,
- 8.73,
- 9.02,
- 5.87,
- 5.15,
- 3.83,
- 3.74,
- -0.77,
- -2.81,
- -2.5,
- -0.17,
- 1.08,
- 2.5,
- 2.01,
- 2.65,
- 5.06,
- 5.16,
- 5.26,
- 4.84,
- 3.57,
- -0.87,
- -4.22,
- -3.5,
- -3.93,
- -4.04,
- -4.06,
- -3.49,
- -2.25,
- -2.74,
- -0.77,
- 0.33,
- -1.5,
- -0.83,
- -1.12,
- -0.69,
- -1.15,
- 0.13,
- -0.81,
- -0.61,
- 0.71,
- 2.5,
- 2.61,
- 0.97,
- -1.32,
- -2.44,
- -0.97,
- -0.29,
- 0.05,
- 0.71,
- 1.32,
- 2.02,
- 2.52,
- 3.04,
- 3.81,
- 4.31,
- 4.15,
- 4.0,
- 3.66,
- 3.44,
- 2.47,
- 2.38,
- 2.63,
- 2.48,
- 2.73,
- 2.24,
- 2.56,
- 2.6,
- 2.99,
- 3.5,
- 3.66,
- 3.96,
- 3.72,
- 3.65,
- 2.9,
- 3.1,
- 3.11,
- 3.27,
- 3.27,
- 2.82,
- 2.57,
- 2.61,
- 3.28,
- 3.96,
- 2.95,
- 1.71,
- 1.35,
- 1.27,
- 1.54,
- 2.3,
- 2.52,
- 2.39,
- 3.34,
- 3.78,
- 3.38,
- 3.44,
- 3.77,
- 4.19,
- 4.52,
- 5.07,
- 5.1,
- 4.7,
- 4.91,
- 5.84,
- 6.66,
- 6.89,
- 7.38,
- 8.23,
- 8.22,
- 8.45,
- 7.28,
- 4.31,
- 3.08,
- 2.8,
- 2.09,
- 1.39,
- 1.79,
- 2.4,
- 2.04,
- 2.75,
- 4.14,
- 5.36,
- 4.54,
- 2.44,
- 1.73,
- -1.41,
- -5.71,
- -6.56,
- -7.59,
- -8.3,
- -9.18,
- -7.98,
- -7.03,
- -5.34,
- -4.7,
- -3.23,
- -2.17,
- -1.59,
- -1.04,
- -0.96,
- 0.63,
- 1.72,
- 2.32,
- 3.19,
- 3.24,
- 3.48,
- 2.45,
- -3.0,
- -3.16,
- -4.52,
- -4.11,
- -2.59,
- -2.08,
- -2.18,
- -2.21,
- -1.52,
- -1.13,
- -0.87,
- -0.64,
- -0.27,
- 0.85,
- 1.84,
- 3.21,
- 2.61,
- 3.24,
- 3.93,
- 4.28,
- 4.1,
- 4.45,
- 4.13,
- 4.34,
- 4.29,
- 4.0,
- 4.0,
- 4.17,
- 4.29,
- 4.38,
- 4.47,
- 4.79,
- 6.05,
- -2.24,
- -0.67,
- -0.5,
- -1.1,
- -1.13,
- 0.84,
- 0.62,
- 1.84,
- 2.15,
- 2.27,
- 2.43,
- 2.58,
- 2.41,
- 2.08,
- 1.65,
- 2.53,
- 1.75,
- 1.64,
- 2.75,
- 1.36,
- 0.7,
- 0.48,
- 0.83,
- 1.18,
- 0.87,
- 1.49,
- 1.53,
- 0.83,
- 1.17,
- 6.05,
- 3.77,
- 2.82,
- -3.92,
- -9.49,
- -7.08,
- -4.67,
- -7.41,
- -8.68,
- -8.58,
- -8.15,
- -7.87,
- -7.45,
- -6.06,
- -5.06,
- -3.86,
- -2.65,
- -2.28,
- -2.74,
- -2.57,
- -2.67,
- -1.87,
- -1.17,
- -1.14,
- -0.9,
- -0.2,
- -0.41,
- -0.48,
- -0.14,
- 0.8,
- 1.22,
- 1.29,
- 1.48,
- 1.63,
- 1.84,
- 2.4,
- 3.02,
- 3.77,
- 4.16,
- 4.78,
- 5.39,
- 5.35,
- 4.87,
- 5.2,
- 6.27,
- 6.49,
- 6.61,
- 6.86,
- 7.17,
- 7.04,
- 6.82,
- 7.66,
- 8.62,
- 9.0,
- 9.64,
- 9.03,
- 0.67,
- -1.44,
- -0.11,
- 2.67,
- 3.46,
- 4.89,
- 5.35,
- 5.25,
- 4.62,
- 3.7,
- 0.85,
- -0.51,
- -1.4,
- 0.04,
- 0.03,
- 0.98,
- 2.47,
- 4.91,
- 1.41,
- -2.22,
- -4.22,
- -8.28,
- -7.74,
- -6.51,
- -6.28,
- -6.17,
- -5.56,
- -3.28,
- -2.05,
- -2.72,
- -4.29,
- -1.17,
- -0.76,
- -4.69,
- -2.95,
- -2.72,
- -3.11,
- -2.36,
- -1.82,
- -1.62,
- -2.24,
- -1.93,
- -2.72,
- -2.11,
- -1.74,
- -1.39,
- -1.46,
- -1.43,
- -1.36,
- -1.24,
- -1.5,
- -1.27,
- -0.28,
- 0.54,
- 1.5,
- 1.89,
- 2.07,
- 2.11,
- 2.06,
- 2.25,
- 2.82,
- 3.58,
- 4.14,
- 4.38,
- 4.24,
- 4.25,
- 3.92,
- 4.02,
- 3.75,
- 3.39,
- 3.36,
- 3.19,
- 3.54,
- 3.82,
- 3.65,
- 3.26,
- 3.42,
- 3.63,
- 3.54,
- 3.36,
- 3.57,
- 3.94,
- 4.39,
- 4.5,
- 4.48,
- 4.55,
- 5.0,
- 5.49,
- 5.64,
- 5.89,
- 6.18,
- 6.58,
- 6.3,
- 6.16,
- 6.34,
- 6.98,
- 7.28,
- 7.76,
- 9.69,
- 6.5,
- 5.36,
- 3.95,
- 2.33,
- 2.85,
- 0.43,
- 0.25,
- 0.32,
- 0.88,
- 1.41,
- 2.51,
- 2.27,
- 1.32,
- 2.55,
- 3.48,
- 3.58,
- 5.93,
- 2.79,
- -1.76,
- 1.12,
- -1.18,
- -4.07,
- -3.37,
- -2.48,
- -1.99,
- -2.09,
- -2.38,
- -0.5,
- -2.71,
- -2.39,
- -1.76,
- 0.11,
- -0.2,
- -1.47,
- -0.96,
- -0.4,
- -1.36,
- -0.72,
- 3.78,
- 0.65,
- -2.23,
- -2.37,
- -2.02,
- -1.18,
- -0.09,
- 0.55,
- 1.19,
- 1.79,
- 2.32,
- 2.72,
- 3.0,
- 3.32,
- 3.62,
- 3.8,
- 3.81,
- 2.75,
- 2.51,
- 2.94,
- 3.31,
- 3.44,
- 3.28,
- 2.63,
- 1.79,
- 2.03,
- 2.73,
- 3.67,
- 3.84,
- 3.9,
- 3.49,
- 3.2,
- 3.22,
- 2.7,
- 2.63,
- 2.58,
- 2.52,
- 2.69,
- 2.87,
- 3.05,
- 3.33,
- 3.41,
- 3.66,
- 2.94,
- 1.92,
- 1.49,
- 1.79,
- 1.68,
- 1.92,
- 2.2,
- 3.11,
- 3.65,
- 4.27,
- 3.54,
- 3.54,
- 4.12,
- 4.32,
- 4.71,
- 4.9,
- 4.67,
- 4.52,
- 4.9,
- 5.19,
- 5.68,
- 6.45,
- 6.76,
- 7.34,
- 7.59,
- 8.51,
- 8.31,
- 7.41,
- 6.63,
- 5.58,
- 3.17,
- 2.58,
- 2.29,
- 0.36,
- 0.33,
- 1.93,
- 3.5,
- 4.97,
- 6.64,
- 5.88,
- 1.42,
- -6.95,
- -7.89,
- -8.34,
- -8.73,
- -9.21,
- -9.3,
- -8.05,
- -6.85,
- -6.16,
- -4.16,
- -2.69,
- -2.02,
- -1.92,
- -1.25,
- -0.71,
- 1.16,
- 2.06,
- 3.18,
- 3.19,
- 3.9,
- 4.35,
- 3.13,
- -3.56,
- -3.29,
- -4.17,
- -2.73,
- -2.25,
- -1.83,
- -2.09,
- -1.96,
- -1.37,
- -1.14,
- -1.7,
- -1.69,
- -1.09,
- -0.26,
- 1.27,
- 2.04,
- 2.56,
- 3.35,
- 3.66,
- 3.49,
- 3.82,
- 4.24,
- 4.45,
- 4.51,
- 4.61,
- 4.64,
- 4.71,
- 4.83,
- 4.87,
- 4.71,
- 4.46,
- 3.22,
- 0.54,
- -0.13,
- -0.14,
- -0.2,
- -1.25,
- 1.39,
- 2.59,
- 1.73,
- 2.1,
- 2.29,
- 2.32,
- 2.51,
- 2.73,
- 2.36,
- 2.1,
- 2.57,
- 2.62,
- 2.63,
- 2.13,
- 1.51,
- 1.26,
- 0.5,
- 0.63,
- -0.05,
- 2.49,
- 4.27,
- -0.39,
- 2.48,
- 5.93,
- 5.94,
- 6.89,
- 5.7,
- 6.76,
- 0.83,
- -5.0,
- -4.64,
- -4.09,
- -9.0,
- -9.16,
- -8.98,
- -8.94,
- -7.76,
- -6.45,
- -6.05,
- -5.32,
- -3.98,
- -3.14,
- -3.29,
- -3.12,
- -3.18,
- -3.02,
- -2.01,
- -1.29,
- -1.02,
- -0.18,
- 0.25,
- 0.18,
- 0.54,
- 0.49,
- 0.72,
- 1.1,
- 1.53,
- 1.57,
- 2.07,
- 3.05,
- 3.33,
- 3.89,
- 4.59,
- 4.71,
- 5.49,
- 5.19,
- 5.26,
- 5.9,
- 6.61,
- 6.89,
- 6.84,
- 6.96,
- 7.15,
- 7.23,
- 6.53,
- 7.08,
- 7.87,
- 8.16,
- 10.2,
- 11.3,
- 2.05,
- -0.47,
- -0.2,
- 4.18,
- 3.06,
- 5.71,
- 6.6,
- 6.37,
- 5.67,
- 3.68,
- 3.26,
- 2.27,
- 1.73,
- 0.81,
- 1.65,
- 1.99,
- -0.2,
- 8.17,
- 6.23,
- 2.1,
- -1.75,
- -6.01,
- -8.14,
- -6.85,
- -6.3,
- -6.07,
- -5.75,
- -3.87,
- -2.83,
- -3.08,
- -3.03,
- -2.47,
- -1.47,
- -6.04,
- -4.02,
- -3.12,
- -3.7,
- -2.93,
- -2.6,
- -2.82,
- -3.18,
- -3.74,
- -2.88,
- -3.27,
- -1.93,
- -1.74,
- -1.7,
- -1.61,
- -1.57,
- -1.86,
- -1.94,
- -1.57,
- -0.42,
- 0.91,
- 1.46,
- 1.64,
- 1.94,
- 1.74,
- 1.18,
- 1.29,
- 2.07,
- 2.75,
- 3.21,
- 3.29,
- 3.06,
- 3.25,
- 2.39,
- 2.82,
- 2.73,
- 2.58,
- 2.83,
- 3.07,
- 3.28,
- 3.4,
- 3.45,
- 3.61,
- 3.84,
- 4.18,
- 4.3,
- 4.4,
- 4.91,
- 5.41,
- 5.18,
- 4.81,
- 4.1,
- 4.03,
- 4.73,
- 5.77,
- 6.29,
- 6.41,
- 6.89,
- 6.85,
- 6.48,
- 6.42,
- 6.45,
- 6.73,
- 6.99,
- 7.08,
- 7.38,
- 5.71,
- 4.38,
- 3.55,
- 3.13,
- 2.71,
- 2.55,
- 2.37,
- 2.22,
- 2.25,
- 3.13,
- 2.89,
- 2.84,
- 3.06,
- 2.75,
- 2.38,
- 1.51,
- -1.63,
- 2.76,
- 2.02,
- 1.99,
- -1.02,
- 3.61,
- -3.01,
- -2.96,
- -2.8,
- -2.75,
- -3.77,
- -3.2,
- -3.23,
- -2.32,
- -2.08,
- -0.08,
- 0.58,
- -1.09,
- -1.44,
- -1.3,
- -0.37,
- -0.23,
- 0.7,
- 1.39,
- -2.05,
- -2.18,
- -2.32,
- -1.66,
- -0.51,
- 0.33,
- 0.77,
- 1.17,
- 1.41,
- 1.68,
- 1.98,
- 2.24,
- 2.23,
- 2.48,
- 2.97,
- 3.47,
- 3.36,
- 3.51,
- 3.74,
- 4.22,
- 3.81,
- 3.47,
- 3.13,
- 2.77,
- 2.62,
- 3.49,
- 3.8,
- 3.49,
- 3.68,
- 3.75,
- 3.25,
- 3.06,
- 3.16,
- 3.03,
- 2.93,
- 2.34,
- 1.73,
- 1.87,
- 2.56,
- 3.41,
- 3.51,
- 3.43,
- 2.81,
- 2.65,
- 2.12,
- 1.83,
- 2.37,
- 2.7,
- 2.89,
- 3.74,
- 3.53,
- 3.92,
- 4.31,
- 3.83,
- 3.86,
- 4.36,
- 4.66,
- 4.68,
- 5.03,
- 4.98,
- 4.95,
- 4.87,
- 5.73,
- 6.35,
- 6.48,
- 6.63,
- 6.82,
- 7.69,
- 8.7,
- 8.76,
- 8.5,
- 6.29,
- 3.54,
- 2.3,
- 1.78,
- -0.02,
- 1.38,
- 2.23,
- 3.29,
- 4.66,
- 6.44,
- 7.04,
- -2.59,
- -10.25,
- -9.25,
- -9.37,
- -9.24,
- -9.27,
- -8.72,
- -8.15,
- -7.26,
- -5.3,
- -3.88,
- -3.31,
- -2.25,
- -1.6,
- -0.3,
- 0.8,
- 1.41,
- 1.87,
- 2.97,
- 3.48,
- 4.26,
- 3.95,
- 3.04,
- 2.19,
- -1.49,
- -1.5,
- -0.53,
- -0.43,
- -3.37,
- -3.16,
- -2.66,
- -1.6,
- -1.69,
- -3.08,
- -2.18,
- -1.09,
- -0.44,
- 1.04,
- 1.25,
- 1.61,
- 2.53,
- 3.09,
- 3.43,
- 3.83,
- 4.11,
- 4.33,
- 4.78,
- 5.11,
- 5.47,
- 5.68,
- 5.6,
- 5.38,
- 5.38,
- 6.77,
- 1.41,
- -0.99,
- 1.37,
- -1.34,
- -0.4,
- 2.1,
- 2.01,
- 1.64,
- 2.02,
- 2.18,
- 2.3,
- 2.44,
- 3.49,
- 2.82,
- 2.5,
- 2.36,
- 2.35,
- 3.19,
- 1.61,
- 1.27,
- 1.04,
- 0.34,
- 0.1,
- 4.0,
- 4.74,
- 3.3,
- 2.73,
- -0.04,
- 0.45,
- 3.59,
- 5.2,
- 5.16,
- 4.63,
- 6.66,
- 3.43,
- -5.83,
- -5.56,
- -8.37,
- -8.55,
- -9.84,
- -9.93,
- -8.51,
- -7.27,
- -6.29,
- -6.92,
- -5.47,
- -4.5,
- -3.85,
- -3.88,
- -3.29,
- -3.61,
- -3.17,
- -2.42,
- -1.39,
- -1.08,
- -0.64,
- -0.41,
- -0.57,
- -0.46,
- -0.14,
- 0.65,
- 0.89,
- 1.49,
- 2.64,
- 2.87,
- 3.15,
- 3.9,
- 4.3,
- 4.93,
- 5.05,
- 5.36,
- 5.65,
- 6.07,
- 6.38,
- 6.74,
- 6.72,
- 6.82,
- 6.59,
- 6.57,
- 6.21,
- 7.09,
- 7.96,
- 8.52,
- 9.67,
- 11.77,
- 5.68,
- 0.18,
- 0.73,
- 3.86,
- 3.13,
- 7.07,
- 7.1,
- 7.24,
- 4.94,
- 4.23,
- 5.61,
- 4.67,
- 6.51,
- 4.46,
- 4.36,
- 0.46,
- 1.45,
- 5.41,
- 13.0,
- 11.2,
- 1.69,
- -5.8,
- -7.56,
- -6.95,
- -6.56,
- -5.84,
- -5.81,
- -4.29,
- -2.66,
- -2.15,
- -2.88,
- -3.6,
- -7.19,
- -6.15,
- -4.81,
- -3.9,
- -3.66,
- -2.86,
- -2.23,
- -2.79,
- -4.32,
- -4.29,
- -3.93,
- -2.29,
- -1.88,
- -2.1,
- -2.36,
- -2.56,
- -2.7,
- -2.69,
- -2.68,
- -2.46,
- -0.55,
- 0.11,
- 0.51,
- 1.09,
- 1.5,
- 1.34,
- 1.63,
- 2.25,
- 2.8,
- 3.03,
- 3.27,
- 3.46,
- 2.98,
- 2.2,
- 2.27,
- 1.89,
- 2.64,
- 2.47,
- 2.85,
- 3.17,
- 3.23,
- 3.38,
- 3.7,
- 4.15,
- 4.72,
- 4.92,
- 5.07,
- 5.37,
- 5.26,
- 4.96,
- 5.05,
- 5.28,
- 5.06,
- 5.43,
- 5.27,
- 5.29,
- 5.53,
- 6.08,
- 6.18,
- 6.32,
- 6.35,
- 6.23,
- 6.28,
- 6.51,
- 6.65,
- 6.76,
- 7.29,
- 3.77,
- 4.38,
- 3.53,
- 2.3,
- 2.85,
- 2.56,
- 2.56,
- 2.68,
- 2.61,
- 2.7,
- 2.99,
- 3.31,
- 3.42,
- 2.63,
- 1.33,
- 0.68,
- 1.9,
- -1.44,
- -2.84,
- 0.34,
- 3.14,
- 1.42,
- 1.28,
- 3.06,
- 0.5,
- -3.43,
- -4.94,
- -3.39,
- -3.36,
- -2.38,
- -2.25,
- -0.95,
- -0.56,
- -0.5,
- -1.31,
- -1.09,
- -0.62,
- -0.5,
- -0.47,
- 1.7,
- -0.77,
- -2.24,
- -2.22,
- -1.74,
- -1.19,
- -0.42,
- 0.06,
- 0.2,
- 0.43,
- 0.58,
- 1.33,
- 1.63,
- 1.09,
- 1.16,
- 1.92,
- 2.74,
- 3.01,
- 3.3,
- 3.8,
- 3.97,
- 4.1,
- 3.6,
- 3.1,
- 2.81,
- 2.97,
- 3.47,
- 4.09,
- 3.29,
- 2.5,
- 3.25,
- 3.33,
- 3.32,
- 3.1,
- 2.93,
- 2.91,
- 3.15,
- 2.99,
- 2.69,
- 2.29,
- 2.12,
- 2.51,
- 2.12,
- 2.28,
- 2.19,
- 2.09,
- 2.19,
- 2.0,
- 1.83,
- 2.57,
- 2.54,
- 2.75,
- 3.75,
- 3.69,
- 3.74,
- 4.1,
- 4.03,
- 4.1,
- 4.79,
- 4.97,
- 5.0,
- 5.12,
- 5.09,
- 5.39,
- 5.76,
- 6.01,
- 6.22,
- 6.49,
- 6.94,
- 7.63,
- 8.51,
- 8.96,
- 8.5,
- 6.19,
- 3.95,
- 3.17,
- 0.8,
- -1.04,
- 1.19,
- 2.45,
- 3.1,
- 3.61,
- 5.01,
- 6.08,
- -3.73,
- -10.95,
- -10.27,
- -9.89,
- -10.16,
- -9.35,
- -8.71,
- -7.65,
- -5.71,
- -5.26,
- -4.07,
- -3.25,
- -2.38,
- -1.56,
- -0.04,
- 0.8,
- 1.32,
- 1.83,
- 1.47,
- 1.51,
- 2.19,
- 2.08,
- 1.2,
- 0.67,
- -0.21,
- -0.76,
- -0.46,
- -0.51,
- -1.31,
- -2.34,
- -3.23,
- -2.76,
- -3.62,
- -3.91,
- -2.36,
- 0.19,
- 1.15,
- 0.93,
- 1.09,
- 1.66,
- 2.13,
- 2.52,
- 2.9,
- 3.21,
- 3.7,
- 4.47,
- 5.32,
- 6.03,
- 6.6,
- 6.84,
- 6.24,
- 5.27,
- 5.17,
- -0.08,
- -0.76,
- -0.68,
- -0.36,
- -0.61,
- 0.41,
- 1.19,
- 1.31,
- 1.89,
- 2.47,
- 2.49,
- 2.27,
- 2.64,
- 2.4,
- 1.77,
- 2.29,
- 2.48,
- 2.59,
- 1.9,
- 0.93,
- 1.53,
- 0.11,
- 6.3,
- 6.96,
- 8.55,
- 6.2,
- -1.0,
- -2.53,
- -3.41,
- -1.86,
- 1.28,
- 3.45,
- 3.24,
- 2.76,
- 7.53,
- 4.29,
- -2.06,
- -7.0,
- -7.56,
- -9.11,
- -10.14,
- -8.78,
- -7.42,
- -5.95,
- -6.97,
- -6.85,
- -5.63,
- -5.09,
- -4.63,
- -4.06,
- -4.24,
- -3.83,
- -2.83,
- -1.82,
- -1.69,
- -0.61,
- -0.37,
- 0.31,
- 1.09,
- 1.58,
- 1.77,
- 1.69,
- 2.03,
- 2.67,
- 2.93,
- 3.85,
- 4.21,
- 4.42,
- 4.54,
- 4.44,
- 6.02,
- 4.18,
- 5.67,
- 5.62,
- 6.2,
- 6.4,
- 6.53,
- 6.05,
- 6.19,
- 6.45,
- 7.03,
- 7.63,
- 8.01,
- 8.69,
- 10.38,
- 11.73,
- 2.83,
- 0.16,
- 2.69,
- 2.53,
- 6.19,
- 6.47,
- 6.58,
- 4.31,
- 5.64,
- 5.69,
- 4.63,
- 3.94,
- 4.36,
- 2.85,
- 0.5,
- 0.59,
- 3.84,
- 13.03,
- 14.45,
- 10.67,
- -6.73,
- -8.67,
- -8.11,
- -6.9,
- -6.0,
- -5.5,
- -4.63,
- -2.24,
- -2.06,
- -3.45,
- -7.81,
- -7.5,
- -5.96,
- -5.01,
- -4.39,
- -3.76,
- -3.33,
- -3.2,
- -3.79,
- -4.68,
- -5.18,
- -4.69,
- -2.9,
- -2.13,
- -2.44,
- -2.66,
- -3.08,
- -3.21,
- -3.19,
- -4.03,
- -2.74,
- -1.34,
- -0.46,
- 0.19,
- 0.52,
- 0.82,
- 1.32,
- 2.39,
- 2.57,
- 2.36,
- 2.65,
- 3.12,
- 3.77,
- 3.46,
- 2.73,
- 2.36,
- 1.89,
- 2.27,
- 3.54,
- 3.25,
- 2.81,
- 3.1,
- 3.36,
- 3.6,
- 4.01,
- 3.91,
- 3.71,
- 3.9,
- 4.05,
- 4.09,
- 4.12,
- 4.35,
- 4.49,
- 4.75,
- 4.93,
- 5.43,
- 5.47,
- 5.32,
- 5.4,
- 5.73,
- 5.72,
- 5.41,
- 5.44,
- 5.43,
- 5.62,
- 5.97,
- 6.32,
- 5.68,
- 5.38,
- 3.8,
- 3.37,
- 3.1,
- 3.26,
- 3.15,
- 3.52,
- 3.3,
- 3.19,
- 3.29,
- 3.09,
- 2.9,
- 3.12,
- 2.63,
- 1.97,
- 1.29,
- 0.48,
- 0.36,
- -0.74,
- -5.42,
- -6.69,
- -2.92,
- 1.19,
- 6.56,
- 1.0,
- 2.71,
- 3.04,
- -2.54,
- -3.28,
- -2.52,
- -1.93,
- -1.9,
- -1.26,
- -1.09,
- -1.1,
- -2.04,
- -1.94,
- -1.54,
- -0.49,
- -0.34,
- -0.51,
- -1.86,
- -2.09,
- -1.99,
- -1.62,
- -1.09,
- -0.51,
- -0.25,
- -0.26,
- -0.31,
- 0.01,
- 0.49,
- 1.34,
- 0.94,
- 1.31,
- 1.84,
- 1.99,
- 2.52,
- 3.23,
- 3.56,
- 3.72,
- 4.0,
- 3.0,
- 2.55,
- 3.22,
- 3.87,
- 4.22,
- 4.79,
- 3.46,
- 3.12,
- 3.64,
- 3.74,
- 3.97,
- 3.98,
- 2.88,
- 2.37,
- 2.34,
- 2.39,
- 2.32,
- 2.57,
- 1.7,
- 1.69,
- 1.56,
- 1.45,
- 1.76,
- 2.25,
- 2.71,
- 2.83,
- 2.58,
- 2.37,
- 2.58,
- 3.1,
- 3.15,
- 3.59,
- 3.45,
- 3.29,
- 3.67,
- 3.93,
- 4.28,
- 4.68,
- 4.95,
- 4.85,
- 4.81,
- 4.94,
- 5.12,
- 5.24,
- 5.61,
- 6.3,
- 6.99,
- 7.73,
- 8.38,
- 8.86,
- 8.47,
- 7.38,
- 5.62,
- 3.78,
- 2.37,
- 2.64,
- 2.5,
- 2.28,
- 1.62,
- 2.85,
- 4.69,
- 6.28,
- -5.97,
- -13.08,
- -11.82,
- -11.24,
- -10.19,
- -8.68,
- -6.94,
- -6.46,
- -6.07,
- -4.02,
- -3.26,
- -1.72,
- -0.03,
- 0.85,
- 1.3,
- 1.03,
- 0.54,
- 0.85,
- 0.96,
- 0.64,
- 0.85,
- 1.21,
- 1.41,
- 0.57,
- -0.11,
- -0.76,
- -1.44,
- -0.9,
- -0.33,
- -1.46,
- -4.36,
- -4.41,
- -5.4,
- -3.79,
- -2.19,
- -0.04,
- -0.01,
- 0.08,
- 0.67,
- 1.13,
- 1.51,
- 1.73,
- 2.09,
- 2.93,
- 4.31,
- 5.41,
- 6.22,
- 6.86,
- 7.18,
- 6.99,
- 5.12,
- 3.01,
- 0.48,
- -0.58,
- -1.94,
- 0.19,
- 1.58,
- 0.25,
- -0.07,
- 1.04,
- 2.08,
- 2.56,
- 2.34,
- 2.15,
- 2.28,
- 2.22,
- 1.83,
- 1.72,
- 1.61,
- 1.56,
- 1.34,
- 1.15,
- 1.33,
- 0.75,
- 7.99,
- 9.93,
- 11.03,
- 12.34,
- 0.34,
- -5.09,
- -5.27,
- -4.84,
- -2.93,
- -0.14,
- 1.67,
- 1.23,
- 1.24,
- 5.21,
- 5.07,
- 1.08,
- -7.82,
- -8.11,
- -9.9,
- -8.93,
- -7.91,
- -6.63,
- -5.95,
- -7.16,
- -6.53,
- -6.0,
- -5.85,
- -4.69,
- -4.74,
- -5.07,
- -4.14,
- -3.17,
- -2.32,
- -1.81,
- -0.45,
- -0.67,
- -0.5,
- 1.64,
- 2.61,
- 1.81,
- 2.06,
- 2.62,
- 2.9,
- 3.89,
- 4.26,
- 4.4,
- 4.49,
- 5.64,
- 5.48,
- 4.72,
- 4.39,
- 5.52,
- 6.53,
- 6.18,
- 5.79,
- 5.59,
- 5.75,
- 5.88,
- 6.05,
- 6.67,
- 6.7,
- 6.81,
- 8.37,
- 9.94,
- 7.22,
- 0.76,
- 3.98,
- 3.82,
- 5.55,
- 5.81,
- 4.96,
- 5.31,
- 6.17,
- 4.11,
- 3.78,
- 3.14,
- 1.37,
- -1.13,
- 0.29,
- 0.82,
- 5.45,
- 15.48,
- 15.47,
- 15.04,
- -7.14,
- -9.26,
- -9.49,
- -7.99,
- -6.91,
- -6.57,
- -5.02,
- -2.85,
- -3.93,
- -5.36,
- -7.01,
- -6.8,
- -6.04,
- -4.91,
- -4.36,
- -4.05,
- -3.54,
- -3.0,
- -3.41,
- -4.73,
- -4.87,
- -4.61,
- -3.39,
- -2.86,
- -2.55,
- -2.66,
- -3.56,
- -4.13,
- -4.73,
- -3.84,
- -2.84,
- -1.95,
- -1.0,
- -0.56,
- -0.54,
- -0.12,
- 1.02,
- 1.46,
- 1.75,
- 1.87,
- 1.98,
- 2.5,
- 3.11,
- 3.65,
- 4.1,
- 4.31,
- 4.31,
- 2.79,
- 2.02,
- 1.4,
- 1.29,
- 1.93,
- 3.07,
- 3.71,
- 3.88,
- 3.96,
- 3.9,
- 3.7,
- 3.49,
- 3.64,
- 3.51,
- 3.76,
- 4.2,
- 4.75,
- 5.74,
- 6.42,
- 6.69,
- 6.53,
- 6.37,
- 6.51,
- 6.5,
- 6.59,
- 6.2,
- 6.16,
- 6.48,
- 6.71,
- 6.62,
- 7.06,
- 7.26,
- 3.24,
- 3.75,
- 3.48,
- 3.36,
- 3.4,
- 3.59,
- 3.58,
- 3.65,
- 4.03,
- 3.49,
- 3.53,
- 3.2,
- 2.76,
- 2.59,
- 1.88,
- 0.85,
- 0.39,
- -0.15,
- 0.03,
- -2.36,
- -4.25,
- -5.74,
- -3.05,
- 3.18,
- 3.94,
- -3.38,
- 1.14,
- 3.68,
- -0.23,
- -0.59,
- -1.06,
- -0.55,
- -1.54,
- -1.15,
- -1.97,
- -2.14,
- -2.06,
- -2.12,
- -1.12,
- -3.32,
- -2.89,
- -2.41,
- -2.27,
- -1.7,
- -1.22,
- -0.86,
- -0.24,
- -0.25,
- -1.61,
- -1.37,
- -0.83,
- -0.43,
- -0.15,
- 0.47,
- 1.44,
- 2.28,
- 2.54,
- 3.19,
- 3.69,
- 3.85,
- 3.88,
- 3.39,
- 3.06,
- 2.52,
- 3.45,
- 3.91,
- 3.97,
- 4.81,
- 5.28,
- 5.4,
- 5.78,
- 5.49,
- 4.11,
- 3.57,
- 2.96,
- 2.91,
- 2.93,
- 2.71,
- 2.87,
- 2.45,
- 1.04,
- 0.66,
- 0.64,
- 1.46,
- 2.36,
- 2.78,
- 2.75,
- 3.51,
- 4.24,
- 3.75,
- 2.63,
- 2.75,
- 2.73,
- 2.29,
- 2.29,
- 2.65,
- 3.31,
- 3.64,
- 3.8,
- 4.02,
- 4.34,
- 4.46,
- 4.44,
- 4.47,
- 4.33,
- 4.77,
- 5.39,
- 6.15,
- 6.65,
- 6.96,
- 7.26,
- 8.39,
- 8.38,
- 8.38,
- 6.95,
- 4.84,
- 3.14,
- 3.19,
- 3.64,
- 3.01,
- 2.68,
- 2.91,
- 3.99,
- 7.19,
- -14.61,
- -13.41,
- -11.87,
- -10.1,
- -8.51,
- -7.49,
- -6.72,
- -6.32,
- -4.89,
- -2.43,
- -0.89,
- 0.19,
- 0.95,
- 2.15,
- 1.96,
- 1.54,
- 1.46,
- 1.15,
- 0.05,
- -0.39,
- -0.06,
- -0.2,
- -0.3,
- 0.45,
- 0.7,
- 0.05,
- -1.41,
- -1.64,
- 0.01,
- -2.21,
- -6.2,
- -5.38,
- -4.75,
- -3.09,
- -2.3,
- -1.4,
- -0.69,
- -0.28,
- 0.03,
- 0.2,
- 0.47,
- 1.05,
- 2.3,
- 3.89,
- 5.45,
- 6.54,
- 7.11,
- 7.38,
- 7.24,
- 5.62,
- 0.14,
- 0.33,
- -2.59,
- 1.18,
- 1.43,
- -0.76,
- 0.22,
- 0.1,
- 1.22,
- 2.06,
- 2.31,
- 2.05,
- 2.37,
- 2.22,
- 2.38,
- 1.97,
- 0.97,
- 1.41,
- 1.93,
- 2.02,
- 2.04,
- 2.36,
- 0.93,
- 9.67,
- 9.69,
- 9.73,
- 10.84,
- 6.93,
- -4.31,
- -7.3,
- -7.22,
- -4.14,
- -2.1,
- -0.92,
- 0.48,
- 0.4,
- 2.91,
- 1.94,
- 5.31,
- 3.13,
- -8.66,
- -9.38,
- -10.12,
- -8.86,
- -7.69,
- -6.62,
- -6.23,
- -7.39,
- -7.04,
- -6.94,
- -6.24,
- -5.34,
- -5.32,
- -5.02,
- -4.71,
- -3.62,
- -2.25,
- -0.62,
- -0.2,
- 1.19,
- 0.86,
- 0.25,
- 0.98,
- 1.92,
- 3.11,
- 3.16,
- 3.0,
- 2.81,
- 3.46,
- 5.62,
- 6.28,
- 3.2,
- 4.02,
- 4.81,
- 5.53,
- 5.73,
- 5.37,
- 5.14,
- 5.42,
- 5.31,
- 5.17,
- 5.37,
- 5.81,
- 5.96,
- 6.33,
- 7.46,
- 8.29,
- 10.33,
- 3.64,
- 2.38,
- 2.8,
- 7.68,
- 6.75,
- 6.23,
- 7.32,
- 7.23,
- 6.17,
- 6.09,
- 2.58,
- 0.52,
- -1.03,
- 1.22,
- 2.56,
- 14.88,
- 14.56,
- 14.85,
- 14.87,
- 4.81,
- -6.62,
- -7.37,
- -8.75,
- -8.06,
- -7.1,
- -5.48,
- -3.91,
- -5.78,
- -5.7,
- -6.39,
- -6.64,
- -5.97,
- -4.87,
- -3.59,
- -3.08,
- -3.09,
- -2.66,
- -3.54,
- -4.8,
- -5.84,
- -5.01,
- -3.57,
- -3.67,
- -2.93,
- -3.14,
- -3.56,
- -5.04,
- -4.91,
- -3.98,
- -3.06,
- -2.33,
- -1.46,
- -1.24,
- -2.05,
- -1.02,
- 0.06,
- 0.78,
- 1.2,
- 1.28,
- 1.72,
- 2.36,
- 3.04,
- 3.41,
- 3.75,
- 3.8,
- 3.72,
- 3.8,
- 3.23,
- 3.26,
- 3.29,
- 2.91,
- 2.4,
- 2.3,
- 2.57,
- 2.92,
- 3.43,
- 4.1,
- 4.72,
- 4.56,
- 4.32,
- 4.49,
- 4.47,
- 5.14,
- 6.26,
- 6.72,
- 6.64,
- 6.45,
- 6.43,
- 6.18,
- 6.31,
- 6.52,
- 6.43,
- 6.5,
- 6.58,
- 7.04,
- 6.82,
- 7.47,
- 6.74,
- 4.44,
- 3.48,
- 2.59,
- 2.97,
- 2.93,
- 3.2,
- 3.05,
- 3.59,
- 4.04,
- 4.32,
- 4.13,
- 4.13,
- 4.06,
- 3.32,
- 2.12,
- 1.62,
- 0.98,
- 0.18,
- -0.76,
- -1.66,
- -2.08,
- -4.78,
- -7.52,
- -6.42,
- -2.07,
- 1.25,
- -6.0,
- -6.48,
- -1.77,
- 1.43,
- -1.26,
- 0.31,
- 0.73,
- 0.97,
- -1.73,
- 0.32,
- -1.86,
- -0.91,
- -2.12,
- -5.56,
- -4.46,
- -3.55,
- -2.4,
- -1.84,
- -1.83,
- -2.17,
- -1.36,
- 0.04,
- -1.25,
- -2.85,
- -1.51,
- -1.15,
- -0.58,
- -0.36,
- 0.32,
- 1.38,
- 2.43,
- 3.15,
- 3.67,
- 4.05,
- 3.9,
- 3.83,
- 3.33,
- 3.51,
- 3.07,
- 3.39,
- 3.85,
- 4.2,
- 4.67,
- 5.47,
- 5.59,
- 5.63,
- 6.37,
- 5.56,
- 2.52,
- 2.22,
- 2.64,
- 3.3,
- 3.65,
- 3.61,
- 3.08,
- 1.25,
- 0.84,
- 1.4,
- 2.31,
- 3.36,
- 3.55,
- 4.01,
- 4.15,
- 4.02,
- 3.76,
- 3.67,
- 3.84,
- 3.21,
- 2.89,
- 3.72,
- 3.15,
- 2.79,
- 2.92,
- 2.58,
- 2.14,
- 2.08,
- 2.86,
- 3.65,
- 3.98,
- 3.98,
- 4.22,
- 4.67,
- 5.08,
- 5.82,
- 6.28,
- 6.8,
- 6.89,
- 6.92,
- 7.81,
- 7.31,
- 5.93,
- 4.73,
- 4.78,
- 4.87,
- 4.31,
- 4.24,
- 4.38,
- 3.02,
- -7.11,
- -14.66,
- -11.89,
- -10.11,
- -8.84,
- -8.36,
- -7.32,
- -6.41,
- -5.02,
- -3.33,
- -0.98,
- -0.02,
- 1.01,
- 1.7,
- 1.84,
- 2.1,
- 2.08,
- 1.59,
- 0.87,
- -0.75,
- -1.72,
- -2.22,
- -1.88,
- -1.61,
- -0.99,
- -0.19,
- -0.35,
- -1.3,
- -1.07,
- 1.91,
- -7.23,
- -6.62,
- -5.14,
- -3.69,
- -2.77,
- -2.83,
- -1.37,
- -0.99,
- -0.85,
- -0.89,
- -0.65,
- 0.12,
- 1.48,
- 3.33,
- 5.14,
- 6.57,
- 7.37,
- 7.51,
- 8.01,
- 7.53,
- 0.77,
- -0.64,
- -2.52,
- 0.27,
- -0.98,
- 0.22,
- -2.99,
- 0.09,
- 1.25,
- 1.61,
- 2.31,
- 2.38,
- 2.23,
- 2.26,
- 2.47,
- 2.46,
- 1.88,
- 1.95,
- 0.06,
- -0.17,
- 0.52,
- -0.02,
- 5.2,
- 7.95,
- 6.87,
- 7.22,
- 8.16,
- 7.0,
- -0.61,
- -7.68,
- -8.08,
- -5.19,
- -3.84,
- -1.57,
- -1.06,
- 0.1,
- 0.63,
- 2.79,
- 0.19,
- 4.33,
- 6.34,
- -7.62,
- -9.57,
- -9.7,
- -8.5,
- -7.43,
- -6.51,
- -6.64,
- -7.95,
- -7.51,
- -7.21,
- -6.3,
- -5.77,
- -5.3,
- -5.18,
- -5.33,
- -4.24,
- -2.71,
- -0.68,
- -0.6,
- -0.16,
- 0.11,
- 0.73,
- 1.05,
- 1.66,
- 1.77,
- 1.29,
- 1.56,
- 4.46,
- 4.53,
- 5.36,
- 2.71,
- 4.13,
- 4.72,
- 5.05,
- 5.13,
- 4.87,
- 4.58,
- 4.89,
- 4.37,
- 4.51,
- 4.95,
- 5.12,
- 5.68,
- 6.61,
- 7.31,
- 8.17,
- 9.38,
- 9.0,
- 0.18,
- 4.64,
- 5.6,
- 5.68,
- 6.13,
- 8.82,
- 7.45,
- 8.36,
- 9.13,
- 6.01,
- 0.97,
- 2.97,
- 2.23,
- 10.14,
- 16.4,
- 14.12,
- 14.05,
- 14.39,
- 13.53,
- -2.46,
- -6.85,
- -7.59,
- -7.94,
- -7.15,
- -5.67,
- -4.97,
- -6.15,
- -6.94,
- -5.98,
- -5.2,
- -4.32,
- -4.91,
- -4.53,
- -3.94,
- -3.26,
- -3.04,
- -4.25,
- -5.58,
- -5.56,
- -5.26,
- -4.62,
- -4.31,
- -3.45,
- -3.15,
- -3.87,
- -4.99,
- -5.43,
- -4.89,
- -3.99,
- -2.34,
- -1.38,
- -1.67,
- -2.72,
- -2.01,
- -0.56,
- 0.4,
- 0.65,
- 0.98,
- 1.25,
- 1.64,
- 2.09,
- 2.46,
- 2.55,
- 2.59,
- 2.31,
- 1.66,
- 1.26,
- 1.37,
- 1.64,
- 2.33,
- 3.33,
- 4.32,
- 4.66,
- 4.47,
- 4.97,
- 5.36,
- 4.17,
- 4.3,
- 5.11,
- 5.52,
- 5.83,
- 5.9,
- 5.8,
- 5.88,
- 6.32,
- 6.53,
- 6.17,
- 5.77,
- 5.77,
- 6.04,
- 6.26,
- 6.29,
- 6.41,
- 6.81,
- 6.97,
- 6.76,
- 6.65,
- 4.42,
- 3.55,
- 3.8,
- 3.84,
- 3.65,
- 3.28,
- 4.29,
- 4.54,
- 4.58,
- 4.81,
- 5.22,
- 5.11,
- 4.52,
- 4.81,
- 3.82,
- 2.54,
- 1.54,
- 0.33,
- -1.28,
- -3.17,
- -4.47,
- -3.88,
- -7.03,
- -8.81,
- -7.93,
- -6.49,
- -5.21,
- -5.57,
- -6.52,
- -5.26,
- -5.25,
- -3.34,
- -1.97,
- -2.49,
- -2.98,
- -2.6,
- -1.75,
- -1.48,
- -2.27,
- -7.24,
- -5.79,
- -4.2,
- -2.96,
- -2.5,
- -2.61,
- -3.07,
- -1.96,
- -0.47,
- -0.63,
- -3.54,
- -2.14,
- -1.55,
- -0.89,
- -0.09,
- 0.68,
- 1.45,
- 2.17,
- 2.62,
- 3.17,
- 3.6,
- 3.98,
- 4.28,
- 4.83,
- 4.29,
- 3.67,
- 3.52,
- 3.86,
- 4.45,
- 5.13,
- 5.59,
- 6.13,
- 5.54,
- 5.22,
- 4.94,
- 5.19,
- 3.08,
- 1.84,
- 2.74,
- 4.18,
- 4.61,
- 3.9,
- 2.88,
- 1.83,
- 1.95,
- 2.1,
- 2.57,
- 2.97,
- 3.44,
- 3.85,
- 4.75,
- 3.65,
- 3.86,
- 4.78,
- 3.75,
- 3.66,
- 4.05,
- 4.23,
- 4.31,
- 4.82,
- 5.25,
- 5.4,
- 4.25,
- 3.07,
- 2.46,
- 2.61,
- 3.0,
- 3.47,
- 3.59,
- 3.66,
- 4.2,
- 4.49,
- 4.97,
- 5.6,
- 6.29,
- 6.93,
- 7.45,
- 7.03,
- 6.65,
- 6.75,
- 7.38,
- 7.01,
- 6.02,
- 4.99,
- 3.48,
- -2.35,
- -12.25,
- -11.78,
- -10.35,
- -9.6,
- -8.76,
- -7.35,
- -5.9,
- -4.35,
- -3.08,
- -1.19,
- 0.66,
- 1.32,
- 1.55,
- 1.57,
- 0.86,
- 0.98,
- 0.98,
- 0.7,
- 0.52,
- -0.15,
- -1.18,
- -2.3,
- -2.64,
- -2.32,
- -1.57,
- -1.21,
- -1.08,
- -2.12,
- -2.58,
- -2.78,
- -5.45,
- -6.07,
- -4.63,
- -4.64,
- -3.77,
- -2.66,
- -2.08,
- -1.41,
- -1.7,
- -1.49,
- -0.67,
- 0.85,
- 2.94,
- 4.82,
- 6.35,
- 6.91,
- 8.18,
- 9.52,
- 9.17,
- 0.19,
- -1.38,
- -1.42,
- 1.28,
- -0.38,
- -1.79,
- -1.92,
- 1.45,
- 1.83,
- 2.45,
- 3.63,
- 2.54,
- 2.13,
- 2.23,
- 2.77,
- 4.01,
- 3.63,
- 2.12,
- 1.47,
- 0.81,
- -0.98,
- 1.24,
- 4.81,
- 5.12,
- 4.75,
- 3.92,
- 4.92,
- 5.16,
- 4.82,
- 3.19,
- 0.43,
- -2.11,
- -3.19,
- -3.24,
- -2.36,
- -1.97,
- -0.62,
- -0.41,
- 1.11,
- -0.53,
- 1.83,
- 3.34,
- 3.87,
- -9.36,
- -8.83,
- -7.49,
- -7.21,
- -6.16,
- -6.11,
- -8.23,
- -7.56,
- -7.23,
- -6.18,
- -5.75,
- -5.6,
- -5.85,
- -5.69,
- -5.27,
- -4.01,
- -1.67,
- -0.73,
- -0.89,
- -0.47,
- 0.99,
- 1.16,
- 0.95,
- 2.99,
- 3.51,
- 3.82,
- 5.17,
- 2.17,
- 1.93,
- 3.27,
- 3.72,
- 4.26,
- 4.44,
- 4.58,
- 4.26,
- 4.19,
- 3.83,
- 3.98,
- 4.51,
- 4.92,
- 5.78,
- 6.55,
- 7.1,
- 7.8,
- 8.4,
- 8.94,
- 1.77,
- -0.93,
- 4.45,
- 5.84,
- 6.72,
- 8.39,
- 6.97,
- 7.54,
- 6.13,
- 5.95,
- 2.93,
- -0.04,
- 2.1,
- 12.19,
- 12.05,
- 12.02,
- 12.46,
- 12.62,
- 12.74,
- 12.54,
- -6.41,
- -7.82,
- -7.6,
- -6.85,
- -5.5,
- -5.5,
- -6.43,
- -7.51,
- -6.15,
- -4.62,
- -3.86,
- -4.51,
- -5.05,
- -4.41,
- -3.83,
- -3.75,
- -4.64,
- -6.11,
- -5.96,
- -5.91,
- -4.77,
- -4.2,
- -3.47,
- -2.37,
- -2.82,
- -3.9,
- -6.14,
- -5.74,
- -3.91,
- -2.41,
- -1.58,
- -2.09,
- -3.11,
- -2.63,
- -1.34,
- -0.45,
- 0.22,
- 0.82,
- 1.65,
- 1.83,
- 1.7,
- 1.71,
- 1.46,
- 1.41,
- 1.37,
- 1.62,
- 1.68,
- 1.94,
- 2.33,
- 3.11,
- 3.75,
- 4.36,
- 4.6,
- 4.62,
- 4.62,
- 5.11,
- 5.11,
- 4.59,
- 4.95,
- 5.34,
- 5.36,
- 5.44,
- 5.96,
- 6.29,
- 6.63,
- 7.02,
- 6.62,
- 6.01,
- 5.41,
- 5.61,
- 5.71,
- 5.62,
- 5.57,
- 5.63,
- 5.57,
- 5.67,
- 5.74,
- 4.81,
- 1.81,
- 3.26,
- 3.64,
- 3.42,
- 4.02,
- 4.23,
- 4.23,
- 4.14,
- 4.46,
- 4.98,
- 5.19,
- 5.14,
- 4.14,
- 3.0,
- 2.87,
- 1.2,
- -0.57,
- -1.28,
- -3.07,
- -4.9,
- -5.46,
- -5.81,
- -8.9,
- -8.98,
- -7.69,
- -5.7,
- -6.74,
- -6.51,
- -6.8,
- -4.77,
- -3.47,
- -2.49,
- -3.01,
- -3.42,
- -1.79,
- -0.72,
- -0.19,
- -3.51,
- -8.77,
- -6.88,
- -5.04,
- -4.03,
- -3.4,
- -2.91,
- -2.27,
- -2.32,
- -1.87,
- -1.45,
- -3.46,
- -2.08,
- -1.7,
- -1.17,
- -0.11,
- 0.72,
- 1.86,
- 2.72,
- 3.5,
- 3.16,
- 3.23,
- 3.73,
- 4.26,
- 4.41,
- 4.31,
- 4.23,
- 3.47,
- 2.99,
- 3.69,
- 4.8,
- 5.45,
- 5.72,
- 5.82,
- 5.51,
- 3.89,
- 3.55,
- 3.17,
- 3.14,
- 2.62,
- 3.26,
- 4.36,
- 4.55,
- 3.32,
- 2.6,
- 2.88,
- 3.34,
- 3.63,
- 3.04,
- 2.25,
- 3.27,
- 3.79,
- 3.59,
- 3.28,
- 4.1,
- 4.08,
- 3.75,
- 3.92,
- 4.02,
- 4.2,
- 4.64,
- 5.22,
- 5.52,
- 5.51,
- 5.46,
- 5.29,
- 5.45,
- 4.82,
- 3.65,
- 2.21,
- 1.19,
- 2.15,
- 2.78,
- 3.2,
- 4.0,
- 5.0,
- 5.71,
- 6.01,
- 6.05,
- 6.42,
- 6.95,
- 7.18,
- 7.91,
- 7.72,
- 5.2,
- 3.68,
- -2.76,
- -12.12,
- -13.57,
- -12.3,
- -11.28,
- -10.06,
- -8.44,
- -6.39,
- -4.6,
- -3.13,
- -0.82,
- 0.7,
- 1.36,
- 1.64,
- 1.24,
- 1.47,
- 1.45,
- 0.98,
- 0.34,
- 0.01,
- 0.16,
- -0.17,
- -0.91,
- -1.43,
- -1.95,
- -2.56,
- -2.39,
- -1.69,
- -1.2,
- -1.66,
- -2.58,
- -1.87,
- -5.97,
- -6.27,
- -5.56,
- -5.41,
- -4.35,
- -3.56,
- -1.94,
- -2.32,
- -2.04,
- -1.29,
- 0.01,
- 2.12,
- 4.22,
- 6.08,
- 7.38,
- 8.45,
- 9.88,
- 11.06,
- 1.74,
- 0.41,
- -1.36,
- 0.41,
- -3.18,
- -4.47,
- -0.21,
- 2.97,
- 2.31,
- 2.55,
- 2.85,
- 2.32,
- 2.29,
- 2.56,
- 2.66,
- 3.24,
- 3.63,
- 3.31,
- 2.33,
- 1.48,
- 5.75,
- 6.88,
- 6.9,
- 6.36,
- 2.78,
- 2.11,
- 1.89,
- 2.05,
- 0.01,
- -2.91,
- -0.87,
- 2.77,
- 0.64,
- 2.06,
- -3.3,
- -3.94,
- -2.85,
- -1.35,
- -0.95,
- 0.87,
- -0.66,
- -0.28,
- 0.72,
- 3.8,
- -4.4,
- -8.9,
- -7.73,
- -6.81,
- -4.89,
- -7.28,
- -7.1,
- -7.38,
- -7.04,
- -6.04,
- -5.93,
- -6.33,
- -5.73,
- -5.82,
- -4.64,
- -3.29,
- -2.09,
- -0.47,
- -0.45,
- -1.15,
- -0.25,
- 4.38,
- 3.64,
- 0.5,
- 3.06,
- 6.56,
- 2.7,
- 0.3,
- 1.48,
- 3.01,
- 3.55,
- 3.58,
- 3.89,
- 3.64,
- 3.17,
- 2.98,
- 3.24,
- 3.82,
- 4.23,
- 5.02,
- 6.06,
- 6.83,
- 7.29,
- 8.04,
- 8.04,
- 5.8,
- 0.98,
- 0.48,
- 4.06,
- 6.18,
- 3.97,
- 3.31,
- 3.02,
- 2.48,
- 1.31,
- 2.55,
- 2.54,
- 11.16,
- 12.23,
- 9.92,
- 8.76,
- 9.55,
- 10.78,
- 12.77,
- 11.99,
- 12.3,
- -5.66,
- -6.97,
- -5.54,
- -4.62,
- -4.15,
- -6.76,
- -8.52,
- -7.85,
- -6.87,
- -4.43,
- -4.07,
- -5.65,
- -5.06,
- -4.39,
- -3.5,
- -4.56,
- -5.99,
- -7.12,
- -7.39,
- -6.28,
- -5.79,
- -5.07,
- -3.82,
- -3.36,
- -3.76,
- -4.72,
- -5.02,
- -4.12,
- -2.96,
- -2.58,
- -2.44,
- -3.38,
- -3.02,
- -2.12,
- -1.15,
- -0.5,
- -0.31,
- 0.45,
- 0.5,
- 0.94,
- 1.19,
- 1.44,
- 1.35,
- 0.98,
- 1.03,
- 1.55,
- 2.17,
- 2.6,
- 2.99,
- 4.53,
- 5.2,
- 5.66,
- 5.38,
- 4.48,
- 4.57,
- 5.4,
- 5.5,
- 5.1,
- 4.66,
- 4.95,
- 5.84,
- 6.51,
- 6.69,
- 6.95,
- 7.1,
- 6.83,
- 6.51,
- 5.6,
- 5.15,
- 5.17,
- 5.44,
- 5.21,
- 5.39,
- 5.52,
- 5.44,
- 4.39,
- 4.07,
- 1.98,
- 3.08,
- 3.25,
- 3.77,
- 3.62,
- 3.62,
- 4.18,
- 5.19,
- 4.6,
- 4.4,
- 5.62,
- 6.04,
- 6.02,
- 6.51,
- 4.85,
- 2.87,
- 0.28,
- -0.64,
- -2.49,
- -5.63,
- -6.24,
- -7.72,
- -6.2,
- -7.1,
- -7.0,
- -6.44,
- -5.78,
- -5.71,
- -5.67,
- -4.51,
- -3.72,
- -3.18,
- -2.74,
- -4.0,
- -2.16,
- -0.89,
- 0.94,
- -8.39,
- -9.12,
- -7.6,
- -6.23,
- -5.31,
- -4.73,
- -3.86,
- -3.24,
- -3.04,
- -3.11,
- -3.71,
- -4.46,
- -3.81,
- -2.31,
- -0.92,
- -0.02,
- 0.88,
- 1.78,
- 2.92,
- 3.67,
- 4.19,
- 4.89,
- 5.46,
- 5.88,
- 5.54,
- 5.5,
- 5.39,
- 5.17,
- 4.22,
- 3.95,
- 4.33,
- 4.66,
- 4.7,
- 4.75,
- 5.3,
- 4.49,
- 2.02,
- 1.99,
- 3.8,
- 3.2,
- 2.95,
- 3.73,
- 4.15,
- 4.06,
- 3.0,
- 2.76,
- 3.04,
- 3.48,
- 3.21,
- 2.48,
- 2.29,
- 3.13,
- 3.33,
- 3.0,
- 2.62,
- 2.84,
- 3.08,
- 3.05,
- 3.1,
- 3.63,
- 3.98,
- 4.35,
- 4.54,
- 4.72,
- 5.06,
- 5.73,
- 6.16,
- 6.56,
- 6.63,
- 6.15,
- 4.13,
- 0.78,
- -0.03,
- 1.04,
- 2.15,
- 3.34,
- 4.49,
- 5.31,
- 5.72,
- 5.73,
- 5.73,
- 5.95,
- 6.41,
- 7.0,
- 6.19,
- 3.22,
- 1.04,
- -11.47,
- -13.33,
- -12.51,
- -11.42,
- -9.8,
- -8.25,
- -6.44,
- -4.08,
- -2.58,
- -0.56,
- 0.8,
- 1.72,
- 2.1,
- 1.91,
- 1.6,
- 1.24,
- 0.72,
- 0.78,
- 0.16,
- -0.74,
- -1.39,
- -1.56,
- -2.21,
- -2.15,
- -2.22,
- -3.22,
- -3.18,
- -2.47,
- -1.45,
- -1.42,
- -3.13,
- -4.13,
- -7.76,
- -7.81,
- -7.87,
- -6.88,
- -5.57,
- -3.82,
- -3.0,
- -2.46,
- -1.92,
- -0.84,
- 1.01,
- 3.35,
- 5.37,
- 6.96,
- 8.26,
- 9.38,
- 9.88,
- 0.86,
- 0.92,
- -2.47,
- 0.67,
- -1.14,
- -0.1,
- -0.42,
- 1.54,
- 1.18,
- 2.12,
- 2.87,
- 3.27,
- 2.65,
- 2.55,
- 2.86,
- 2.88,
- 2.74,
- 2.19,
- 2.67,
- 6.35,
- 8.7,
- 9.07,
- 8.37,
- 7.42,
- 6.26,
- 3.93,
- 1.36,
- 0.87,
- -0.97,
- -2.74,
- -4.67,
- -4.39,
- -1.52,
- -1.14,
- -1.43,
- -3.69,
- -4.43,
- -3.02,
- -1.8,
- -1.26,
- -0.23,
- 0.7,
- 0.84,
- -0.01,
- 0.68,
- 1.47,
- -7.32,
- -6.54,
- -5.92,
- -6.8,
- -7.8,
- -6.81,
- -6.79,
- -6.64,
- -5.27,
- -5.15,
- -5.77,
- -6.05,
- -4.87,
- -3.76,
- -3.61,
- -2.97,
- 0.46,
- -2.46,
- 0.15,
- 2.63,
- 3.35,
- 1.16,
- 2.46,
- 5.09,
- 3.69,
- -1.04,
- -1.4,
- 0.14,
- 2.39,
- 3.21,
- 2.7,
- 2.54,
- 2.15,
- 2.03,
- 2.25,
- 2.94,
- 3.54,
- 4.21,
- 5.18,
- 5.78,
- 6.49,
- 7.03,
- 8.69,
- 4.26,
- 0.04,
- 3.56,
- 0.74,
- 0.44,
- 4.46,
- 0.75,
- 0.15,
- 2.63,
- -0.89,
- 6.95,
- 13.24,
- 13.15,
- 12.91,
- 11.61,
- 9.34,
- 7.8,
- 7.32,
- 9.45,
- 10.47,
- 10.62,
- 10.76,
- -4.18,
- -7.24,
- -5.38,
- -4.73,
- -5.21,
- -7.35,
- -8.91,
- -7.83,
- -6.08,
- -3.47,
- -5.97,
- -6.34,
- -5.52,
- -4.49,
- -4.09,
- -4.62,
- -6.81,
- -8.04,
- -6.49,
- -6.11,
- -5.96,
- -5.39,
- -4.8,
- -5.11,
- -5.25,
- -4.66,
- -3.94,
- -3.84,
- -3.62,
- -3.05,
- -3.0,
- -3.44,
- -2.74,
- -1.87,
- -1.18,
- -1.07,
- -0.52,
- -0.13,
- 0.32,
- 1.0,
- 1.5,
- 1.66,
- 0.89,
- 0.58,
- 1.48,
- 2.24,
- 3.22,
- 4.09,
- 4.82,
- 5.62,
- 5.93,
- 6.97,
- 6.43,
- 5.02,
- 5.47,
- 6.01,
- 5.27,
- 4.55,
- 4.88,
- 5.75,
- 6.56,
- 7.01,
- 6.94,
- 7.01,
- 6.54,
- 6.55,
- 5.36,
- 5.09,
- 5.29,
- 5.51,
- 4.86,
- 4.98,
- 5.67,
- 6.05,
- 5.48,
- 4.56,
- 2.66,
- 2.35,
- 3.39,
- 3.95,
- 3.39,
- 4.25,
- 5.24,
- 5.47,
- 5.2,
- 7.27,
- 6.75,
- 6.79,
- 6.02,
- 5.38,
- 4.09,
- 2.89,
- 1.46,
- -3.79,
- -5.04,
- -4.13,
- -7.12,
- -9.01,
- -6.03,
- -6.15,
- -6.78,
- -7.13,
- -6.01,
- -5.73,
- -5.31,
- -4.09,
- -2.92,
- -3.6,
- -4.38,
- -2.6,
- -0.83,
- -1.86,
- -1.37,
- -5.16,
- -8.38,
- -8.35,
- -7.32,
- -5.68,
- -5.1,
- -4.56,
- -3.29,
- -2.66,
- -2.96,
- -5.14,
- -6.04,
- -5.03,
- -3.28,
- -1.84,
- -0.45,
- 0.35,
- 1.5,
- 2.74,
- 3.12,
- 3.74,
- 4.4,
- 5.01,
- 5.42,
- 5.58,
- 5.96,
- 6.08,
- 5.92,
- 5.73,
- 5.3,
- 5.67,
- 5.42,
- 4.92,
- 3.76,
- 3.61,
- 3.82,
- 3.51,
- 1.66,
- 3.25,
- 3.07,
- 2.55,
- 2.74,
- 2.9,
- 2.77,
- 2.45,
- 1.58,
- 1.57,
- 1.97,
- 2.51,
- 2.93,
- 2.47,
- 1.92,
- 1.94,
- 2.08,
- 2.4,
- 2.82,
- 2.52,
- 2.42,
- 2.81,
- 3.18,
- 3.49,
- 3.89,
- 3.81,
- 3.94,
- 4.23,
- 4.85,
- 5.4,
- 5.66,
- 5.95,
- 6.17,
- 6.06,
- 5.09,
- 2.03,
- -1.04,
- -0.18,
- 1.28,
- 2.84,
- 4.12,
- 5.12,
- 5.86,
- 6.02,
- 5.9,
- 6.0,
- 6.14,
- 6.33,
- 4.29,
- 2.72,
- -7.26,
- -13.68,
- -12.94,
- -11.4,
- -8.4,
- -7.37,
- -6.04,
- -3.85,
- -1.91,
- -0.05,
- 1.18,
- 1.61,
- 1.73,
- 1.7,
- 2.05,
- 2.17,
- 1.15,
- 0.8,
- 0.34,
- -0.8,
- -1.05,
- -2.55,
- -2.82,
- -2.9,
- -2.49,
- -3.12,
- -3.98,
- -4.09,
- -2.76,
- 0.58,
- -1.95,
- -5.86,
- -8.83,
- -9.36,
- -7.92,
- -8.18,
- -6.94,
- -5.98,
- -4.49,
- -3.52,
- -2.73,
- -1.63,
- -0.2,
- 1.83,
- 3.93,
- 5.79,
- 7.34,
- 8.54,
- 8.88,
- 1.19,
- 0.23,
- 0.25,
- 3.24,
- -3.74,
- -3.34,
- -1.07,
- 0.56,
- 0.55,
- 2.05,
- 3.26,
- 2.77,
- 2.16,
- 2.39,
- 3.74,
- 3.6,
- 2.73,
- 2.66,
- 4.95,
- 8.39,
- 9.35,
- 9.15,
- 6.99,
- 5.53,
- 5.07,
- 5.35,
- 4.17,
- 1.96,
- 0.08,
- -1.37,
- -3.35,
- -3.55,
- -1.75,
- -2.04,
- -2.81,
- -4.07,
- -5.0,
- -5.03,
- -3.38,
- -2.57,
- -1.98,
- -1.21,
- -0.06,
- 0.36,
- -2.29,
- -1.39,
- 1.96,
- -6.21,
- -6.65,
- -7.44,
- -8.2,
- -8.12,
- -6.67,
- -6.38,
- -6.2,
- -5.67,
- -5.4,
- -5.46,
- -4.87,
- -3.82,
- -4.2,
- -3.71,
- -1.41,
- -1.83,
- -2.3,
- 0.26,
- 2.58,
- -1.25,
- 0.52,
- 4.11,
- 4.62,
- -1.85,
- -3.49,
- -2.43,
- -1.31,
- -0.09,
- 0.89,
- 1.05,
- 0.91,
- 0.51,
- 1.08,
- 2.23,
- 2.86,
- 3.54,
- 4.09,
- 4.64,
- 4.91,
- 6.45,
- 6.48,
- 7.26,
- 1.4,
- 0.85,
- 1.1,
- 0.51,
- 1.83,
- 3.42,
- 6.26,
- 8.79,
- 10.99,
- 12.77,
- 13.31,
- 13.29,
- 12.44,
- 11.1,
- 10.5,
- 8.59,
- 6.7,
- 3.61,
- 5.25,
- 7.64,
- 9.1,
- 8.94,
- 0.08,
- -8.55,
- -7.72,
- -4.69,
- -7.12,
- -7.86,
- -7.82,
- -7.28,
- -5.12,
- -3.18,
- -6.69,
- -6.78,
- -6.12,
- -5.21,
- -4.72,
- -4.95,
- -7.01,
- -6.86,
- -6.29,
- -6.1,
- -6.26,
- -5.83,
- -5.61,
- -5.88,
- -5.61,
- -4.63,
- -3.94,
- -4.39,
- -4.27,
- -3.9,
- -3.73,
- -3.13,
- -2.51,
- -2.02,
- -1.76,
- -1.53,
- -0.8,
- 0.16,
- 0.0,
- 0.46,
- 1.18,
- 0.92,
- 0.41,
- 0.69,
- 1.62,
- 2.72,
- 3.93,
- 4.99,
- 5.78,
- 5.59,
- 5.56,
- 6.57,
- 6.52,
- 5.61,
- 5.77,
- 5.14,
- 4.47,
- 4.78,
- 5.57,
- 6.27,
- 6.67,
- 6.71,
- 6.8,
- 7.0,
- 6.48,
- 6.05,
- 4.79,
- 4.7,
- 5.29,
- 5.17,
- 4.97,
- 5.48,
- 5.91,
- 6.46,
- 5.75,
- 2.66,
- 2.29,
- 2.8,
- 3.21,
- 5.07,
- 5.88,
- 6.01,
- 6.13,
- 6.42,
- 6.65,
- 6.9,
- 6.75,
- 6.51,
- 5.84,
- 4.31,
- 2.53,
- 2.3,
- -0.69,
- -6.44,
- -6.98,
- -4.9,
- -6.07,
- -6.42,
- -5.73,
- -5.14,
- -6.63,
- -6.46,
- -6.3,
- -5.79,
- -4.74,
- -4.34,
- -3.51,
- -2.98,
- -1.3,
- 0.33,
- -0.57,
- -5.51,
- -4.87,
- -8.75,
- -9.25,
- -8.44,
- -7.65,
- -6.06,
- -5.59,
- -4.1,
- -2.56,
- -2.4,
- -5.04,
- -5.53,
- -5.24,
- -3.78,
- -1.97,
- -0.2,
- 0.47,
- 1.09,
- 1.83,
- 2.23,
- 2.17,
- 4.07,
- 4.97,
- 4.59,
- 4.68,
- 5.27,
- 5.8,
- 5.87,
- 6.1,
- 5.89,
- 5.78,
- 6.06,
- 5.54,
- 4.78,
- 3.39,
- 2.17,
- 2.24,
- 2.25,
- 2.78,
- 2.23,
- 1.97,
- 2.34,
- 2.41,
- 2.47,
- 1.92,
- 1.01,
- 0.16,
- 0.18,
- 0.56,
- 0.78,
- 1.14,
- 1.42,
- 1.43,
- 1.39,
- 1.42,
- 1.8,
- 2.51,
- 2.15,
- 2.37,
- 3.1,
- 3.63,
- 3.96,
- 3.68,
- 3.68,
- 3.92,
- 4.51,
- 5.22,
- 5.8,
- 6.32,
- 6.55,
- 5.92,
- 5.2,
- 4.37,
- 0.47,
- -2.78,
- -1.04,
- 0.95,
- 2.76,
- 4.44,
- 5.32,
- 5.99,
- 6.32,
- 6.43,
- 6.3,
- 6.37,
- 4.66,
- 2.27,
- -1.66,
- -12.43,
- -12.44,
- -10.33,
- -7.86,
- -6.84,
- -4.83,
- -2.77,
- -0.79,
- 0.49,
- 1.54,
- 1.94,
- 1.87,
- 2.24,
- 1.95,
- 1.61,
- 1.09,
- 0.22,
- -0.7,
- -1.31,
- -2.06,
- -2.42,
- -2.32,
- -2.03,
- -3.45,
- -3.29,
- -4.41,
- -5.76,
- -4.54,
- -3.68,
- -0.38,
- -4.68,
- -4.31,
- -2.45,
- -6.63,
- -7.14,
- -7.77,
- -7.1,
- -6.68,
- -5.59,
- -4.3,
- -2.62,
- -1.39,
- 0.73,
- 2.69,
- 4.38,
- 6.19,
- 7.6,
- 5.48,
- 0.95,
- 0.33,
- -2.84,
- -0.21,
- -0.17,
- -2.58,
- -1.51,
- 0.4,
- 1.32,
- 2.73,
- 3.62,
- 3.34,
- 3.32,
- 4.08,
- 3.6,
- 3.17,
- 2.34,
- 2.82,
- 11.1,
- 11.3,
- 10.5,
- 7.33,
- 5.58,
- 4.61,
- 3.75,
- 2.93,
- 2.71,
- 2.99,
- 1.62,
- -1.72,
- -3.83,
- -4.37,
- -3.69,
- -3.29,
- -3.22,
- -3.73,
- -4.67,
- -5.09,
- -5.29,
- -4.46,
- -3.32,
- -3.06,
- -3.02,
- -1.87,
- -1.19,
- -2.55,
- -1.19,
- 2.09,
- -4.15,
- -2.59,
- -6.27,
- -8.86,
- -7.92,
- -7.14,
- -6.61,
- -6.27,
- -6.08,
- -5.53,
- -4.85,
- -4.27,
- -4.2,
- -4.16,
- -3.89,
- -2.83,
- -3.19,
- -2.57,
- -0.42,
- 1.49,
- 1.34,
- 1.65,
- 4.94,
- 2.73,
- -3.86,
- -4.09,
- -2.65,
- -2.14,
- -1.61,
- -1.09,
- -0.74,
- -0.92,
- 0.24,
- 1.11,
- 2.03,
- 2.43,
- 3.01,
- 3.52,
- 4.18,
- 4.91,
- 5.16,
- 5.6,
- 4.89,
- 4.9,
- 6.53,
- 7.24,
- 8.16,
- 9.31,
- 9.38,
- 10.06,
- 11.89,
- 12.11,
- 11.85,
- 11.76,
- 11.41,
- 10.56,
- 9.43,
- 9.55,
- 7.89,
- 4.0,
- 0.2,
- 1.4,
- 5.08,
- 7.34,
- 7.52,
- 7.21,
- -4.22,
- -8.9,
- -7.71,
- -8.13,
- -9.18,
- -7.47,
- -7.04,
- -4.95,
- -4.98,
- -7.0,
- -6.43,
- -6.23,
- -5.42,
- -5.54,
- -6.63,
- -7.44,
- -7.52,
- -6.94,
- -7.13,
- -7.12,
- -6.45,
- -6.44,
- -6.35,
- -5.62,
- -4.63,
- -4.78,
- -5.18,
- -4.97,
- -4.24,
- -3.61,
- -3.28,
- -3.01,
- -2.39,
- -1.98,
- -1.8,
- -0.97,
- -0.07,
- -0.64,
- -0.26,
- 0.23,
- 0.27,
- 0.51,
- 1.27,
- 2.29,
- 3.42,
- 4.35,
- 5.09,
- 5.98,
- 5.83,
- 5.06,
- 5.72,
- 5.78,
- 5.28,
- 4.59,
- 4.21,
- 3.94,
- 4.88,
- 5.52,
- 6.46,
- 6.49,
- 6.37,
- 6.58,
- 6.37,
- 6.14,
- 5.65,
- 5.0,
- 5.09,
- 5.2,
- 5.13,
- 5.47,
- 5.54,
- 5.83,
- 6.08,
- 5.38,
- 4.34,
- 4.07,
- 6.58,
- 6.23,
- 6.05,
- 6.74,
- 7.06,
- 7.34,
- 7.92,
- 7.78,
- 7.05,
- 6.69,
- 6.06,
- 4.88,
- 2.95,
- 2.45,
- 4.56,
- -4.82,
- -8.13,
- -7.71,
- -5.23,
- -6.6,
- -5.54,
- -6.82,
- -6.21,
- -6.25,
- -6.08,
- -6.11,
- -5.24,
- -4.81,
- -4.58,
- -1.82,
- -1.22,
- -0.74,
- -3.31,
- -4.12,
- -4.99,
- -9.65,
- -10.02,
- -9.29,
- -9.04,
- -8.23,
- -6.68,
- -5.13,
- -3.8,
- -3.99,
- -4.76,
- -4.75,
- -4.92,
- -3.75,
- -1.8,
- -0.02,
- 1.0,
- 1.23,
- 1.55,
- 2.06,
- 2.47,
- 2.47,
- 2.48,
- 2.53,
- 5.23,
- 6.23,
- 6.84,
- 7.02,
- 7.3,
- 7.33,
- 7.12,
- 6.86,
- 6.56,
- 6.22,
- 6.11,
- 5.75,
- 2.59,
- 1.11,
- 0.41,
- -0.01,
- 0.63,
- 1.29,
- 1.67,
- 1.92,
- 1.7,
- 0.85,
- 0.67,
- 0.3,
- 0.37,
- 0.58,
- 0.92,
- 0.96,
- 1.03,
- 0.89,
- 0.86,
- 0.78,
- 0.98,
- 1.94,
- 2.72,
- 3.24,
- 3.71,
- 3.73,
- 3.8,
- 3.89,
- 4.35,
- 4.94,
- 5.45,
- 5.94,
- 6.84,
- 6.51,
- 6.12,
- 5.33,
- 4.46,
- 2.6,
- -2.58,
- -3.67,
- -1.12,
- 1.16,
- 3.41,
- 5.03,
- 6.07,
- 6.5,
- 7.03,
- 6.62,
- 6.16,
- 4.15,
- 1.98,
- -3.0,
- -9.54,
- -12.02,
- -10.08,
- -6.58,
- -4.89,
- -3.6,
- -1.67,
- -0.3,
- 1.03,
- 1.01,
- 1.55,
- 1.77,
- 2.0,
- 2.13,
- 1.97,
- 1.36,
- 0.55,
- -0.09,
- -1.14,
- -2.06,
- -1.9,
- -2.97,
- -2.58,
- -1.52,
- -2.45,
- -4.79,
- -6.16,
- -6.49,
- -6.08,
- -6.21,
- -6.4,
- -4.35,
- -4.03,
- 2.28,
- -2.92,
- -9.87,
- -8.81,
- -9.04,
- -6.89,
- -5.38,
- -3.84,
- -1.99,
- 0.56,
- 1.71,
- 3.77,
- 5.21,
- 7.12,
- 2.41,
- 1.1,
- -0.86,
- -4.46,
- -1.79,
- -2.42,
- -2.17,
- -0.57,
- 0.96,
- 1.43,
- 2.4,
- 3.36,
- 3.28,
- 3.31,
- 3.37,
- 8.15,
- 8.41,
- 9.37,
- 11.31,
- 11.35,
- 11.93,
- 11.71,
- 7.39,
- 5.6,
- 4.16,
- 2.75,
- 2.77,
- 2.62,
- 1.91,
- 1.76,
- 0.58,
- -1.33,
- -3.13,
- -3.4,
- -3.26,
- -3.91,
- -3.49,
- -4.63,
- -6.27,
- -6.43,
- -6.04,
- -5.18,
- -4.6,
- -4.41,
- -3.94,
- -2.52,
- -1.07,
- -0.56,
- -0.76,
- -1.42,
- -1.01,
- 1.0,
- -0.05,
- -7.41,
- -7.77,
- -6.94,
- -6.54,
- -6.33,
- -6.08,
- -5.8,
- -5.4,
- -4.19,
- -3.24,
- -2.95,
- -4.23,
- -3.7,
- -3.08,
- -2.94,
- -0.48,
- 1.77,
- 2.45,
- 2.27,
- 1.35,
- -1.17,
- -5.97,
- -5.64,
- -4.34,
- -3.44,
- -3.1,
- -2.82,
- -2.69,
- -1.75,
- -0.42,
- 0.86,
- 1.54,
- 1.82,
- 2.44,
- 3.69,
- 5.07,
- 5.52,
- 4.9,
- 5.34,
- 6.3,
- 7.18,
- 7.94,
- 8.5,
- 9.15,
- 10.32,
- 11.89,
- 11.9,
- 12.08,
- 12.52,
- 12.2,
- 11.34,
- 10.93,
- 10.3,
- 9.51,
- 8.87,
- 5.52,
- 0.98,
- -0.56,
- -0.23,
- 3.53,
- 5.72,
- 5.84,
- 7.14,
- 3.32,
- -9.17,
- -10.0,
- -8.54,
- -9.42,
- -7.81,
- -7.57,
- -5.53,
- -8.36,
- -6.81,
- -6.2,
- -6.81,
- -6.86,
- -8.0,
- -8.63,
- -8.63,
- -8.03,
- -7.07,
- -7.35,
- -7.33,
- -7.06,
- -6.41,
- -5.53,
- -4.94,
- -4.56,
- -4.41,
- -4.86,
- -4.99,
- -4.24,
- -3.91,
- -3.91,
- -3.37,
- -2.61,
- -2.34,
- -1.85,
- -1.07,
- -1.33,
- -1.46,
- -0.64,
- -0.34,
- 0.21,
- 0.94,
- 2.2,
- 3.49,
- 4.55,
- 5.23,
- 5.48,
- 5.48,
- 5.76,
- 4.67,
- 5.31,
- 5.39,
- 5.24,
- 3.84,
- 4.17,
- 3.92,
- 4.58,
- 5.32,
- 5.95,
- 6.11,
- 5.89,
- 5.96,
- 5.83,
- 5.31,
- 5.59,
- 5.4,
- 5.17,
- 5.09,
- 5.11,
- 4.92,
- 5.62,
- 6.12,
- 5.93,
- 6.22,
- 6.08,
- 6.75,
- 6.6,
- 6.87,
- 6.97,
- 7.63,
- 8.29,
- 8.07,
- 8.64,
- 7.67,
- 6.83,
- 6.37,
- 5.06,
- 2.73,
- 1.0,
- 2.75,
- 4.92,
- -9.31,
- -9.01,
- -8.42,
- -8.12,
- -7.01,
- -6.48,
- -7.72,
- -7.35,
- -8.09,
- -4.36,
- -4.04,
- -3.29,
- -3.15,
- -1.33,
- -1.68,
- -1.38,
- -6.97,
- -4.5,
- -5.44,
- -9.32,
- -9.84,
- -9.52,
- -9.75,
- -8.92,
- -6.52,
- -6.12,
- -5.16,
- -5.31,
- -5.4,
- -4.13,
- -3.43,
- -3.02,
- -1.45,
- 0.19,
- 1.57,
- 1.92,
- 2.45,
- 2.26,
- 1.93,
- 0.12,
- -1.45,
- -0.05,
- 5.85,
- 6.56,
- 7.52,
- 7.77,
- 8.3,
- 8.71,
- 8.94,
- 8.85,
- 8.55,
- 8.04,
- 7.59,
- 7.26,
- 7.15,
- 5.85,
- 2.72,
- -0.16,
- -0.85,
- -0.58,
- -0.38,
- -0.07,
- 0.28,
- 0.67,
- 0.0,
- 0.05,
- 0.13,
- 0.28,
- 0.59,
- 0.66,
- 0.86,
- 0.76,
- 0.5,
- 0.26,
- 0.29,
- 0.97,
- 1.98,
- 2.72,
- 3.26,
- 2.98,
- 2.81,
- 3.24,
- 4.1,
- 5.12,
- 5.57,
- 6.15,
- 6.27,
- 6.11,
- 5.61,
- 5.06,
- 4.55,
- 3.23,
- -0.42,
- -4.34,
- -3.36,
- -0.31,
- 2.37,
- 4.85,
- 6.55,
- 7.89,
- 8.13,
- 6.91,
- 5.93,
- 3.18,
- -0.44,
- -6.6,
- -10.44,
- -10.77,
- -8.82,
- -6.88,
- -4.94,
- -3.13,
- -1.38,
- 0.31,
- 1.33,
- 2.11,
- 2.25,
- 2.45,
- 2.11,
- 1.69,
- 1.3,
- 0.99,
- -0.16,
- -1.83,
- -2.16,
- -2.03,
- -3.51,
- -3.96,
- -3.99,
- -3.27,
- -2.14,
- -4.41,
- -6.04,
- -7.64,
- -7.08,
- -7.83,
- -7.31,
- -5.99,
- -5.32,
- -2.91,
- 1.72,
- 4.96,
- -1.66,
- -7.0,
- -4.73,
- -3.08,
- -3.07,
- -0.7,
- 0.9,
- 0.52,
- 3.18,
- 4.58,
- 4.26,
- 1.58,
- 0.97,
- -1.82,
- -3.9,
- -5.61,
- -3.96,
- -2.77,
- -1.22,
- 0.53,
- 1.16,
- 2.08,
- 2.89,
- 2.98,
- 2.68,
- 2.71,
- 8.17,
- 8.79,
- 9.57,
- 10.78,
- 11.49,
- 12.94,
- 11.0,
- 8.68,
- 6.2,
- 6.05,
- 5.37,
- 4.26,
- 3.3,
- 2.45,
- 1.44,
- -0.29,
- -0.51,
- -1.92,
- -3.36,
- -3.91,
- -3.97,
- -4.26,
- -4.18,
- -5.37,
- -6.97,
- -7.26,
- -6.7,
- -5.46,
- -5.39,
- -5.45,
- -4.54,
- -2.71,
- -1.28,
- -0.98,
- -0.52,
- -1.33,
- -1.82,
- -1.64,
- 0.92,
- 1.38,
- -6.98,
- -6.87,
- -6.82,
- -6.61,
- -6.32,
- -6.12,
- -6.08,
- -5.49,
- -5.03,
- -4.6,
- -4.12,
- -3.4,
- -3.86,
- -1.9,
- -1.5,
- -0.47,
- 0.32,
- -1.26,
- -2.13,
- -6.62,
- -6.88,
- -6.47,
- -5.55,
- -4.83,
- -4.51,
- -4.02,
- -3.31,
- -2.49,
- -1.04,
- 0.03,
- 0.55,
- 1.19,
- 3.54,
- 4.6,
- 5.3,
- 4.8,
- 5.07,
- 7.0,
- 8.06,
- 8.79,
- 8.91,
- 10.2,
- 11.49,
- 11.25,
- 11.61,
- 13.98,
- 12.82,
- 11.98,
- 11.84,
- 11.47,
- 10.96,
- 9.68,
- 8.7,
- 7.5,
- 4.12,
- 1.36,
- -0.69,
- -1.28,
- 0.94,
- 3.35,
- 3.4,
- 4.08,
- 4.69,
- -9.05,
- -11.01,
- -9.03,
- -9.34,
- -8.24,
- -8.2,
- -7.7,
- -8.75,
- -7.0,
- -7.13,
- -8.11,
- -8.38,
- -9.28,
- -9.65,
- -9.04,
- -8.34,
- -7.61,
- -7.35,
- -7.24,
- -6.52,
- -5.93,
- -5.33,
- -5.11,
- -4.95,
- -4.92,
- -5.33,
- -5.3,
- -4.52,
- -4.06,
- -3.76,
- -3.45,
- -3.03,
- -2.72,
- -2.14,
- -1.51,
- -1.26,
- -0.93,
- -0.27,
- 0.53,
- 1.33,
- 2.19,
- 3.17,
- 4.05,
- 4.64,
- 5.17,
- 5.45,
- 5.31,
- 5.33,
- 4.39,
- 4.9,
- 5.19,
- 5.24,
- 4.33,
- 3.42,
- 3.35,
- 4.06,
- 4.87,
- 5.12,
- 4.88,
- 5.2,
- 5.12,
- 5.44,
- 4.8,
- 4.85,
- 5.07,
- 5.18,
- 5.09,
- 4.91,
- 5.57,
- 6.27,
- 6.29,
- 7.09,
- 7.16,
- 7.61,
- 7.37,
- 7.85,
- 7.75,
- 8.06,
- 7.93,
- 8.97,
- 9.0,
- 9.46,
- 8.79,
- 6.66,
- 4.86,
- 3.63,
- 2.6,
- -0.48,
- 2.05,
- 3.15,
- -10.49,
- -9.75,
- -9.61,
- -9.98,
- -4.8,
- -5.1,
- -5.72,
- -6.32,
- -4.05,
- -2.23,
- -2.52,
- -2.46,
- -2.56,
- -0.3,
- -1.08,
- -3.1,
- -3.4,
- -4.54,
- -8.54,
- -9.93,
- -9.73,
- -9.59,
- -9.71,
- -9.02,
- -7.92,
- -6.55,
- -5.71,
- -5.37,
- -5.27,
- -4.31,
- -3.17,
- -1.57,
- -0.32,
- 1.43,
- 2.1,
- 3.4,
- 2.22,
- -1.4,
- -1.54,
- -1.93,
- -0.72,
- -0.65,
- 8.18,
- 8.73,
- 8.89,
- 9.08,
- 9.39,
- 9.59,
- 9.86,
- 10.38,
- 10.88,
- 10.88,
- 10.64,
- 9.69,
- 8.45,
- 6.63,
- 5.17,
- 2.76,
- -0.44,
- -1.84,
- -1.64,
- -1.53,
- -1.3,
- -0.9,
- -0.38,
- -0.49,
- -0.65,
- -0.26,
- 0.39,
- 0.93,
- 0.47,
- -0.09,
- 0.01,
- -0.46,
- 0.12,
- 0.97,
- 1.58,
- 2.05,
- 2.16,
- 2.12,
- 2.37,
- 3.47,
- 4.78,
- 5.44,
- 5.91,
- 5.88,
- 5.77,
- 5.79,
- 5.25,
- 4.28,
- 3.19,
- 0.65,
- -4.48,
- -5.01,
- -1.84,
- 1.26,
- 4.37,
- 7.12,
- 9.06,
- 9.36,
- 10.04,
- 6.78,
- -2.19,
- -5.24,
- -7.71,
- -8.45,
- -8.45,
- -7.56,
- -6.31,
- -4.28,
- -2.73,
- -0.73,
- 0.77,
- 2.5,
- 3.04,
- 3.02,
- 2.66,
- 2.35,
- 1.59,
- 0.73,
- 0.04,
- -0.95,
- -1.54,
- -1.41,
- -1.79,
- -2.92,
- -4.33,
- -4.75,
- -3.29,
- -2.47,
- -3.88,
- -6.4,
- -8.46,
- -7.46,
- -9.34,
- -7.03,
- -4.54,
- -4.79,
- -3.7,
- -1.37,
- 0.01,
- 0.16,
- -1.55,
- -1.56,
- -1.56,
- -1.62,
- -0.92,
- -0.59,
- 0.37,
- 2.37,
- 4.83,
- 0.97,
- 0.87,
- 1.16,
- -0.79,
- -0.98,
- -7.36,
- -4.11,
- -3.37,
- -1.35,
- 0.09,
- 0.82,
- 1.73,
- 2.41,
- 2.5,
- 2.08,
- 1.82,
- 3.54,
- 8.56,
- 9.51,
- 10.43,
- 10.97,
- 11.89,
- 10.25,
- 7.3,
- 6.78,
- 6.71,
- 6.59,
- 6.48,
- 6.23,
- 5.29,
- 3.5,
- 1.46,
- -0.5,
- -1.88,
- -3.18,
- -4.3,
- -5.45,
- -5.57,
- -4.98,
- -5.79,
- -6.96,
- -8.03,
- -8.6,
- -7.85,
- -7.43,
- -6.35,
- -5.56,
- -4.45,
- -3.23,
- -1.57,
- -0.75,
- -0.85,
- -0.95,
- -1.01,
- -1.57,
- -1.43,
- 1.04,
- 0.73,
- -7.08,
- -7.31,
- -7.07,
- -6.93,
- -6.66,
- -6.35,
- -6.05,
- -5.95,
- -5.55,
- -5.14,
- -4.62,
- -4.22,
- -4.18,
- -4.14,
- -2.37,
- -2.66,
- -2.69,
- -5.57,
- -8.49,
- -9.01,
- -8.04,
- -7.12,
- -5.94,
- -5.27,
- -5.12,
- -4.81,
- -3.38,
- -2.18,
- -1.43,
- 0.0,
- 2.84,
- 3.62,
- 5.51,
- 4.7,
- 5.83,
- 6.86,
- 7.86,
- 9.65,
- 9.4,
- 10.65,
- 10.64,
- 10.75,
- 12.34,
- 12.34,
- 12.51,
- 12.41,
- 11.94,
- 10.72,
- 10.28,
- 9.94,
- 10.3,
- 9.06,
- 6.35,
- 2.9,
- 0.38,
- -0.76,
- -1.78,
- -1.23,
- 0.37,
- 1.4,
- 1.41,
- 4.05,
- -9.99,
- -11.73,
- -10.0,
- -9.98,
- -9.17,
- -8.42,
- -9.62,
- -8.97,
- -7.14,
- -7.65,
- -9.12,
- -9.98,
- -10.19,
- -10.37,
- -9.44,
- -8.62,
- -7.72,
- -7.25,
- -6.89,
- -6.48,
- -5.83,
- -5.63,
- -5.49,
- -5.48,
- -5.32,
- -5.15,
- -4.73,
- -4.07,
- -3.66,
- -3.55,
- -3.41,
- -3.15,
- -2.73,
- -2.0,
- -1.17,
- -0.43,
- 0.12,
- 0.58,
- 1.24,
- 1.82,
- 2.39,
- 3.12,
- 3.6,
- 3.82,
- 4.4,
- 4.56,
- 4.04,
- 3.3,
- 3.59,
- 4.23,
- 4.9,
- 4.92,
- 4.47,
- 3.48,
- 2.63,
- 3.24,
- 3.8,
- 3.99,
- 4.01,
- 4.07,
- 4.36,
- 4.32,
- 4.38,
- 3.79,
- 3.65,
- 4.23,
- 4.78,
- 5.09,
- 5.66,
- 6.39,
- 6.78,
- 7.61,
- 7.82,
- 7.65,
- 7.93,
- 8.19,
- 8.13,
- 8.45,
- 8.71,
- 9.74,
- 10.26,
- 9.46,
- 7.52,
- 4.97,
- 4.14,
- 3.12,
- 0.45,
- 0.26,
- 2.51,
- -1.04,
- -10.1,
- -9.9,
- -12.05,
- -10.51,
- -3.93,
- -3.57,
- -3.06,
- -2.76,
- -6.64,
- -2.39,
- -1.15,
- 0.33,
- 0.05,
- -1.09,
- -1.44,
- -2.69,
- -3.46,
- -5.16,
- -8.48,
- -9.58,
- -10.67,
- -10.22,
- -10.78,
- -9.83,
- -8.23,
- -6.8,
- -5.88,
- -5.53,
- -4.97,
- -3.68,
- -2.28,
- -0.54,
- 0.98,
- 2.85,
- 4.54,
- 2.34,
- -2.34,
- -3.52,
- -1.64,
- 1.26,
- 3.39,
- 3.08,
- 9.09,
- 9.55,
- 9.92,
- 10.32,
- 10.61,
- 11.03,
- 11.55,
- 12.14,
- 12.6,
- 12.47,
- 11.78,
- 11.02,
- 10.42,
- 8.8,
- 6.62,
- 4.47,
- 1.47,
- -2.92,
- -3.8,
- -3.25,
- -2.78,
- -2.51,
- -2.19,
- -1.55,
- -0.68,
- -0.17,
- 0.25,
- 0.55,
- 0.86,
- 0.56,
- -0.24,
- -0.54,
- -0.13,
- 0.38,
- 0.98,
- 1.25,
- 1.35,
- 1.61,
- 2.36,
- 3.64,
- 4.55,
- 5.05,
- 5.51,
- 5.81,
- 6.16,
- 5.66,
- 4.15,
- 2.8,
- 0.73,
- -3.02,
- -5.44,
- -3.81,
- -0.52,
- 2.94,
- 6.25,
- 8.68,
- 10.19,
- 11.25,
- -0.12,
- -4.76,
- -6.1,
- -6.04,
- -6.6,
- -6.92,
- -6.26,
- -5.67,
- -3.95,
- -1.35,
- 0.3,
- 1.89,
- 3.01,
- 3.66,
- 4.08,
- 3.99,
- 3.23,
- 2.06,
- 0.77,
- -0.18,
- -0.98,
- -0.7,
- -1.37,
- -2.26,
- -3.78,
- -2.37,
- -3.53,
- -3.7,
- -3.61,
- -4.41,
- -7.8,
- -8.88,
- -8.5,
- -6.76,
- -7.95,
- -6.47,
- -5.48,
- -5.13,
- -4.91,
- -4.24,
- -2.55,
- -0.47,
- -1.26,
- -1.62,
- -1.73,
- -1.71,
- -1.29,
- 0.71,
- 1.61,
- 3.63,
- 0.42,
- 1.18,
- -0.39,
- -0.14,
- -1.79,
- -2.55,
- -3.77,
- -3.14,
- -2.35,
- -0.48,
- 0.34,
- 0.97,
- 2.94,
- 1.82,
- 2.11,
- 3.31,
- 8.18,
- 8.05,
- 9.25,
- 9.84,
- 11.66,
- 11.81,
- 10.32,
- 7.76,
- 6.55,
- 6.26,
- 6.59,
- 6.43,
- 5.3,
- 5.59,
- 5.53,
- 4.6,
- 2.29,
- -0.54,
- -2.79,
- -3.42,
- -4.26,
- -6.38,
- -6.9,
- -5.24,
- -8.57,
- -9.43,
- -8.85,
- -7.9,
- -7.13,
- -6.22,
- -5.68,
- -4.88,
- -3.88,
- -3.1,
- -2.57,
- -1.49,
- -1.08,
- -1.48,
- -1.15,
- -1.03,
- -0.84,
- -0.4,
- 0.8,
- -0.12,
- -6.47,
- -7.29,
- -6.69,
- -6.36,
- -6.09,
- -5.71,
- -5.86,
- -5.93,
- -5.65,
- -5.83,
- -5.89,
- -4.89,
- -3.46,
- -5.0,
- -4.39,
- -5.74,
- -8.93,
- -10.29,
- -10.08,
- -9.12,
- -8.25,
- -7.44,
- -6.69,
- -6.31,
- -5.61,
- -4.15,
- -2.65,
- -0.87,
- 1.89,
- 2.58,
- 3.51,
- 3.77,
- 5.62,
- 6.5,
- 8.71,
- 8.97,
- 10.04,
- 10.02,
- 10.14,
- 10.2,
- 11.26,
- 11.31,
- 13.09,
- 12.24,
- 11.16,
- 11.17,
- 10.53,
- 10.62,
- 9.66,
- 8.58,
- 6.43,
- 3.03,
- 0.83,
- -1.59,
- -2.67,
- -1.96,
- -2.48,
- -1.48,
- -0.18,
- 0.45,
- 1.8,
- -10.23,
- -11.77,
- -10.43,
- -10.13,
- -10.1,
- -9.84,
- -9.78,
- -8.63,
- -8.02,
- -8.36,
- -10.08,
- -11.01,
- -10.07,
- -10.54,
- -10.03,
- -8.82,
- -8.1,
- -7.56,
- -7.03,
- -6.65,
- -6.18,
- -6.0,
- -5.89,
- -5.58,
- -5.12,
- -4.68,
- -4.43,
- -4.12,
- -3.78,
- -3.44,
- -3.21,
- -2.87,
- -2.41,
- -1.76,
- -1.15,
- -0.75,
- -0.36,
- 0.01,
- 0.49,
- 1.05,
- 1.67,
- 1.79,
- 1.88,
- 2.41,
- 3.11,
- 2.85,
- 2.2,
- 1.85,
- 2.59,
- 3.31,
- 3.78,
- 4.08,
- 3.89,
- 2.54,
- 0.99,
- 1.57,
- 2.68,
- 2.85,
- 2.66,
- 2.88,
- 3.29,
- 3.25,
- 2.93,
- 3.19,
- 3.33,
- 3.45,
- 4.25,
- 5.07,
- 5.88,
- 6.48,
- 7.34,
- 7.63,
- 7.65,
- 8.21,
- 8.18,
- 8.57,
- 8.29,
- 8.51,
- 9.43,
- 10.16,
- 9.76,
- 7.53,
- 5.79,
- 3.31,
- 2.86,
- 1.9,
- 0.03,
- -0.43,
- 1.38,
- -1.87,
- -9.47,
- -10.89,
- -11.42,
- -8.86,
- -4.49,
- -0.87,
- -3.29,
- -8.29,
- -4.33,
- -3.56,
- -2.62,
- -2.31,
- -2.34,
- -2.33,
- -2.1,
- -3.77,
- -4.98,
- -5.77,
- -8.15,
- -9.85,
- -10.91,
- -10.55,
- -10.36,
- -9.39,
- -8.14,
- -6.77,
- -6.06,
- -5.16,
- -3.99,
- -2.79,
- -1.28,
- 0.03,
- -0.29,
- 2.07,
- 3.78,
- 2.55,
- 0.21,
- -1.82,
- 1.3,
- 1.69,
- 6.82,
- 8.32,
- 9.28,
- 9.61,
- 9.88,
- 10.55,
- 11.31,
- 12.02,
- 12.72,
- 13.08,
- 12.92,
- 12.33,
- 11.56,
- 10.68,
- 9.71,
- 9.01,
- 7.99,
- 5.96,
- 3.28,
- -1.39,
- -5.3,
- -5.15,
- -4.17,
- -3.37,
- -2.7,
- -1.7,
- -0.87,
- -0.23,
- -0.03,
- 0.49,
- 0.63,
- 0.17,
- -0.18,
- -0.33,
- -0.23,
- 0.19,
- 0.29,
- 0.56,
- 0.74,
- 0.99,
- 1.67,
- 2.73,
- 3.86,
- 4.91,
- 5.56,
- 6.01,
- 5.94,
- 4.54,
- 2.53,
- 0.96,
- -1.71,
- -5.57,
- -5.39,
- -2.72,
- 0.6,
- 4.19,
- 6.86,
- 9.14,
- 9.89,
- 3.15,
- -5.88,
- -5.62,
- -6.06,
- -6.19,
- -6.33,
- -5.94,
- -4.86,
- -2.01,
- -0.28,
- 1.47,
- 2.57,
- 3.48,
- 4.54,
- 4.86,
- 4.82,
- 4.76,
- 3.7,
- 1.53,
- -1.15,
- -2.37,
- -1.91,
- -1.67,
- -3.42,
- -4.01,
- -2.34,
- -3.46,
- -4.29,
- -3.13,
- -5.08,
- -8.65,
- -8.24,
- -7.12,
- -6.63,
- -7.41,
- -6.7,
- -5.59,
- -4.08,
- -3.49,
- -2.9,
- -2.56,
- -2.37,
- -2.27,
- -1.98,
- -1.96,
- -1.27,
- -0.31,
- 0.51,
- 1.28,
- 1.72,
- 1.0,
- 0.06,
- -1.44,
- -2.92,
- -2.11,
- -1.15,
- -3.17,
- -3.07,
- -2.88,
- -1.51,
- 0.1,
- 2.61,
- 3.52,
- 5.61,
- 6.54,
- 7.51,
- 7.11,
- 7.7,
- 8.64,
- 9.71,
- 11.4,
- 10.89,
- 9.68,
- 7.13,
- 6.8,
- 6.52,
- 6.56,
- 5.31,
- 4.85,
- 4.1,
- 4.1,
- 4.68,
- 3.91,
- 2.73,
- 0.41,
- -1.37,
- -2.73,
- -4.25,
- -6.8,
- -6.57,
- -7.7,
- -11.03,
- -9.69,
- -8.97,
- -8.08,
- -7.32,
- -6.55,
- -5.32,
- -4.22,
- -3.46,
- -3.01,
- -3.01,
- -2.57,
- -1.88,
- -1.71,
- -2.12,
- -1.33,
- -0.94,
- -0.65,
- -0.27,
- -0.42,
- -1.5,
- -4.82,
- -6.27,
- -6.28,
- -5.88,
- -5.53,
- -5.49,
- -5.54,
- -5.77,
- -6.1,
- -6.37,
- -5.79,
- -4.66,
- -4.69,
- -4.7,
- -8.52,
- -11.61,
- -11.63,
- -11.21,
- -10.23,
- -9.41,
- -8.34,
- -7.73,
- -6.49,
- -5.59,
- -4.14,
- -2.03,
- 0.84,
- 2.19,
- 3.04,
- 4.5,
- 4.36,
- 6.08,
- 7.99,
- 9.5,
- 9.82,
- 9.07,
- 9.58,
- 10.67,
- 9.24,
- 12.56,
- 11.98,
- 11.99,
- 13.06,
- 12.34,
- 11.53,
- 12.03,
- 10.12,
- 7.49,
- 6.69,
- 2.02,
- -2.9,
- -3.66,
- -4.35,
- -3.84,
- -0.97,
- 0.88,
- -1.23,
- -1.6,
- 1.04,
- 0.05,
- -10.91,
- -12.67,
- -11.36,
- -10.03,
- -10.69,
- -10.93,
- -9.84,
- -9.1,
- -9.59,
- -9.85,
- -10.81,
- -11.26,
- -10.44,
- -9.39,
- -9.01,
- -8.73,
- -8.16,
- -7.75,
- -7.46,
- -7.26,
- -7.09,
- -6.83,
- -6.44,
- -6.02,
- -5.46,
- -4.94,
- -4.56,
- -4.31,
- -3.99,
- -3.6,
- -3.17,
- -2.7,
- -2.16,
- -1.7,
- -1.2,
- -0.83,
- -0.51,
- -0.32,
- 0.16,
- 0.79,
- 1.13,
- 1.31,
- 1.82,
- 2.43,
- 2.98,
- 2.68,
- 2.18,
- 1.91,
- 2.02,
- 2.54,
- 2.68,
- 2.2,
- 1.16,
- 0.07,
- -0.89,
- 0.35,
- 0.89,
- 1.13,
- 1.73,
- 2.25,
- 1.84,
- 1.88,
- 1.84,
- 1.95,
- 2.67,
- 3.29,
- 4.49,
- 5.39,
- 5.86,
- 6.54,
- 7.03,
- 7.26,
- 7.93,
- 8.1,
- 7.95,
- 8.47,
- 8.34,
- 9.72,
- 10.05,
- 8.65,
- 6.73,
- 5.1,
- 3.38,
- 2.78,
- 2.72,
- 1.21,
- -1.45,
- -2.17,
- -1.29,
- -2.51,
- -6.93,
- -10.83,
- -10.93,
- -8.33,
- -5.69,
- -3.23,
- -4.52,
- -7.64,
- -5.39,
- -1.84,
- -5.0,
- -4.42,
- -3.18,
- -2.7,
- -3.09,
- -4.66,
- -4.28,
- -7.83,
- -8.33,
- -11.4,
- -12.12,
- -11.86,
- -10.69,
- -8.94,
- -6.87,
- -5.68,
- -4.91,
- -4.42,
- -3.15,
- -1.64,
- -0.51,
- -4.08,
- -2.59,
- 0.13,
- 3.61,
- 5.51,
- 3.25,
- 0.33,
- 5.01,
- 6.72,
- 8.07,
- 8.82,
- 9.42,
- 10.13,
- 11.0,
- 11.61,
- 12.42,
- 13.09,
- 13.53,
- 13.46,
- 13.33,
- 12.53,
- 10.79,
- 8.88,
- 7.82,
- 7.45,
- 7.49,
- 6.71,
- 4.71,
- 0.85,
- -4.44,
- -6.36,
- -5.32,
- -3.95,
- -3.38,
- -2.89,
- -2.34,
- -1.79,
- -1.01,
- 0.02,
- 0.13,
- -0.2,
- -0.59,
- -0.55,
- -0.86,
- -0.64,
- -0.42,
- -0.34,
- -0.04,
- 0.36,
- 0.89,
- 1.85,
- 3.23,
- 4.55,
- 5.17,
- 5.08,
- 4.62,
- 3.46,
- 1.37,
- -1.3,
- -4.59,
- -6.68,
- -4.76,
- -1.84,
- 1.34,
- 4.43,
- 6.66,
- 9.42,
- 9.04,
- -6.91,
- -6.85,
- -5.69,
- -5.27,
- -5.77,
- -5.51,
- -3.84,
- -1.29,
- 0.67,
- 2.02,
- 2.84,
- 4.25,
- 4.76,
- 3.86,
- 3.91,
- 3.97,
- 3.13,
- 1.72,
- 0.29,
- 0.03,
- -0.97,
- -2.33,
- -2.93,
- -3.04,
- -2.59,
- -4.0,
- -4.77,
- -4.21,
- -6.86,
- -7.42,
- -6.17,
- -6.73,
- -7.03,
- -7.12,
- -7.28,
- -6.39,
- -3.84,
- -2.8,
- -1.66,
- -1.91,
- -1.83,
- -0.9,
- -0.23,
- -0.19,
- -0.04,
- 0.43,
- 0.64,
- 1.9,
- -0.36,
- 0.75,
- 0.36,
- 1.27,
- -3.39,
- -2.8,
- -1.81,
- -2.16,
- -3.54,
- -2.89,
- -2.52,
- -0.15,
- 2.27,
- 3.75,
- 5.57,
- 6.27,
- 7.02,
- 7.0,
- 7.71,
- 8.54,
- 9.15,
- 10.89,
- 11.7,
- 10.02,
- 7.98,
- 8.08,
- 7.87,
- 7.21,
- 6.72,
- 5.0,
- 3.16,
- 3.05,
- 4.02,
- 4.12,
- 3.44,
- 2.13,
- 0.29,
- -1.9,
- -3.18,
- -4.45,
- -6.2,
- -6.7,
- -8.57,
- -8.62,
- -9.08,
- -8.83,
- -7.9,
- -7.3,
- -6.06,
- -5.09,
- -4.23,
- -3.64,
- -3.26,
- -2.78,
- -2.82,
- -2.76,
- -2.01,
- -2.34,
- -2.66,
- -1.6,
- -0.94,
- -0.75,
- -0.95,
- -1.32,
- -1.6,
- -3.41,
- -5.53,
- -6.17,
- -5.89,
- -5.19,
- -4.98,
- -4.93,
- -4.96,
- -4.8,
- -5.44,
- -5.36,
- -5.85,
- -8.3,
- -11.31,
- -12.71,
- -12.69,
- -12.23,
- -11.78,
- -10.55,
- -9.7,
- -8.69,
- -7.1,
- -5.62,
- -3.23,
- 0.41,
- 1.26,
- 2.93,
- 3.54,
- 4.08,
- 5.42,
- 7.17,
- 8.74,
- 8.6,
- 8.92,
- 9.37,
- 10.2,
- 10.12,
- 10.89,
- 11.34,
- 11.94,
- 12.15,
- 12.38,
- 12.42,
- 12.44,
- 12.48,
- 10.59,
- 9.26,
- 5.23,
- -4.8,
- -6.39,
- -7.97,
- -5.89,
- -3.67,
- -0.6,
- 4.52,
- 6.07,
- 2.18,
- 2.36,
- 5.44,
- -8.9,
- -11.88,
- -13.01,
- -9.84,
- -9.66,
- -9.16,
- -9.3,
- -10.43,
- -11.08,
- -10.83,
- -11.04,
- -10.92,
- -10.69,
- -10.36,
- -9.72,
- -9.09,
- -8.46,
- -8.23,
- -7.82,
- -7.81,
- -7.41,
- -7.19,
- -7.25,
- -6.93,
- -6.74,
- -6.32,
- -5.69,
- -5.22,
- -4.71,
- -4.21,
- -3.91,
- -3.52,
- -2.86,
- -2.02,
- -1.21,
- -1.09,
- -0.89,
- -0.6,
- 0.11,
- 0.66,
- 1.04,
- 2.03,
- 2.3,
- 2.62,
- 3.27,
- 3.42,
- 3.05,
- 2.61,
- 2.52,
- 2.33,
- 1.82,
- 1.15,
- 0.12,
- -0.51,
- -0.7,
- -0.65,
- -0.97,
- -0.42,
- 0.93,
- 1.47,
- 1.13,
- 0.74,
- 1.22,
- 1.47,
- 2.2,
- 3.07,
- 3.82,
- 4.91,
- 5.4,
- 6.11,
- 7.07,
- 7.57,
- 7.96,
- 8.14,
- 8.01,
- 8.24,
- 8.96,
- 9.38,
- 9.32,
- 7.9,
- 6.64,
- 5.02,
- 3.32,
- 2.18,
- 1.19,
- 0.09,
- -2.9,
- -4.02,
- -4.45,
- -5.05,
- -6.12,
- -9.9,
- -10.95,
- -9.27,
- -7.73,
- -4.53,
- -4.0,
- -5.66,
- -2.53,
- -6.77,
- -5.7,
- -4.56,
- -2.92,
- -3.43,
- -2.56,
- -3.89,
- -6.35,
- -9.73,
- -8.97,
- -11.86,
- -11.53,
- -10.85,
- -9.11,
- -7.64,
- -5.91,
- -5.41,
- -4.85,
- -3.41,
- -1.7,
- -0.74,
- -4.95,
- -8.25,
- -2.49,
- -1.75,
- 4.73,
- 2.13,
- 1.47,
- 5.16,
- 6.64,
- 7.65,
- 8.59,
- 9.32,
- 10.31,
- 11.14,
- 12.0,
- 13.06,
- 13.93,
- 14.39,
- 14.6,
- 14.51,
- 14.33,
- 13.56,
- 11.99,
- 9.87,
- 7.87,
- 5.73,
- 5.99,
- 5.36,
- 5.2,
- 3.41,
- -1.65,
- -6.06,
- -5.43,
- -4.35,
- -4.1,
- -3.83,
- -3.4,
- -2.73,
- -0.9,
- -0.51,
- -0.42,
- -0.5,
- -0.86,
- -1.34,
- -1.35,
- -1.25,
- -1.8,
- -1.63,
- -1.12,
- -0.64,
- 0.19,
- 1.14,
- 2.63,
- 3.81,
- 4.12,
- 3.9,
- 4.02,
- 3.04,
- 0.73,
- -3.46,
- -7.43,
- -6.91,
- -4.46,
- -1.3,
- 1.49,
- 4.58,
- 6.93,
- 9.1,
- -4.59,
- -6.06,
- -5.66,
- -5.22,
- -5.07,
- -4.06,
- -2.89,
- -0.67,
- 0.56,
- 1.38,
- 3.17,
- 3.38,
- 3.42,
- 3.41,
- 3.91,
- 3.95,
- 3.3,
- 2.61,
- 1.36,
- -0.05,
- -0.08,
- -1.04,
- -2.52,
- -3.64,
- -4.91,
- -5.27,
- -4.96,
- -5.62,
- -8.56,
- -6.39,
- -6.69,
- -6.4,
- -6.75,
- -7.52,
- -6.38,
- -5.24,
- -3.34,
- -1.97,
- -1.73,
- -1.88,
- -0.58,
- 0.72,
- 1.42,
- 1.02,
- 0.82,
- 1.63,
- 0.64,
- 0.43,
- -0.85,
- -0.54,
- -0.1,
- -1.24,
- -2.4,
- -3.49,
- -1.56,
- 0.59,
- -3.18,
- -5.43,
- -3.78,
- -1.97,
- 0.77,
- 3.08,
- 4.17,
- 5.39,
- 6.19,
- 6.92,
- 7.45,
- 9.29,
- 10.62,
- 12.36,
- 12.93,
- 11.6,
- 10.59,
- 9.7,
- 9.39,
- 8.67,
- 8.68,
- 7.3,
- 4.95,
- 2.99,
- 2.19,
- 2.9,
- 3.34,
- 3.67,
- 1.69,
- -0.84,
- -3.13,
- -3.96,
- -4.24,
- -5.22,
- -6.38,
- -7.5,
- -9.79,
- -9.47,
- -7.79,
- -6.74,
- -5.71,
- -4.64,
- -3.97,
- -3.41,
- -3.12,
- -3.26,
- -3.19,
- -2.59,
- -2.18,
- -2.55,
- -2.69,
- -2.92,
- -2.65,
- -1.5,
- -0.57,
- -0.23,
- -0.39,
- -0.68,
- -1.1,
- -2.34,
- -3.28,
- -4.23,
- -5.6,
- -6.42,
- -6.23,
- -5.7,
- -6.07,
- -6.52,
- -6.54,
- -8.51,
- -11.42,
- -14.32,
- -15.08,
- -14.32,
- -13.63,
- -12.47,
- -11.12,
- -10.09,
- -8.3,
- -6.53,
- -4.4,
- -1.17,
- 0.36,
- 1.56,
- 2.66,
- 3.81,
- 4.9,
- 6.52,
- 8.03,
- 8.35,
- 8.84,
- 9.5,
- 9.18,
- 9.36,
- 10.42,
- 10.24,
- 10.98,
- 12.01,
- 12.35,
- 12.44,
- 12.57,
- 13.65,
- 13.1,
- 9.96,
- 13.39,
- -10.66,
- -9.27,
- -4.77,
- -2.04,
- -2.25,
- -2.17,
- -2.37,
- -0.45,
- 3.1,
- 5.08,
- 5.42,
- 2.4,
- 6.67,
- 0.48,
- -9.85,
- -11.35,
- -10.52,
- -9.1,
- -9.45,
- -10.3,
- -10.98,
- -10.92,
- -10.68,
- -10.61,
- -10.18,
- -9.74,
- -8.94,
- -8.58,
- -8.29,
- -8.04,
- -8.24,
- -8.15,
- -7.61,
- -7.47,
- -7.12,
- -6.85,
- -6.68,
- -6.22,
- -5.75,
- -5.36,
- -5.04,
- -4.91,
- -4.7,
- -4.37,
- -3.67,
- -3.03,
- -2.1,
- -1.32,
- -0.8,
- -0.01,
- 0.0,
- 0.19,
- 1.0,
- 1.47,
- 1.72,
- 2.68,
- 3.57,
- 3.77,
- 3.67,
- 3.49,
- 3.15,
- 2.88,
- 2.66,
- 2.31,
- 1.63,
- 0.76,
- -0.51,
- -1.46,
- -2.13,
- -2.05,
- -0.98,
- 0.15,
- 0.04,
- -0.06,
- 0.21,
- 0.77,
- 1.6,
- 2.38,
- 3.19,
- 4.36,
- 5.05,
- 6.13,
- 7.03,
- 6.98,
- 7.22,
- 7.31,
- 7.92,
- 8.53,
- 8.75,
- 8.94,
- 8.24,
- 7.3,
- 6.12,
- 4.65,
- 2.99,
- 1.59,
- -0.69,
- -2.53,
- -4.26,
- -5.98,
- -5.4,
- -5.6,
- -5.6,
- -10.32,
- -11.37,
- -10.13,
- -8.07,
- -6.37,
- -7.26,
- -3.93,
- -9.03,
- -6.72,
- -4.17,
- -3.17,
- -3.37,
- -0.97,
- -2.2,
- -6.2,
- -10.17,
- -9.32,
- -9.85,
- -11.63,
- -10.89,
- -9.23,
- -7.95,
- -6.76,
- -5.76,
- -4.91,
- -3.65,
- -1.74,
- 0.63,
- 0.32,
- -9.63,
- -1.07,
- -2.03,
- -3.6,
- -0.35,
- 2.84,
- 5.01,
- 6.77,
- 7.7,
- 8.44,
- 9.43,
- 10.48,
- 11.79,
- 12.83,
- 13.78,
- 14.34,
- 14.61,
- 14.33,
- 14.27,
- 14.28,
- 13.7,
- 12.25,
- 10.95,
- 8.78,
- 6.82,
- 5.11,
- 4.35,
- 4.21,
- 3.67,
- 3.34,
- 2.19,
- -0.78,
- -4.29,
- -5.77,
- -4.66,
- -3.55,
- -3.56,
- -3.54,
- -2.83,
- -1.79,
- -0.88,
- -0.56,
- -0.23,
- -1.18,
- -0.7,
- -0.86,
- -3.09,
- -3.13,
- -2.48,
- -1.58,
- -0.69,
- 0.62,
- 2.07,
- 2.75,
- 2.84,
- 2.98,
- 3.57,
- 2.69,
- -0.33,
- -7.79,
- -8.54,
- -5.31,
- -3.22,
- -0.58,
- 2.12,
- 4.25,
- 6.13,
- 1.02,
- -8.4,
- -7.49,
- -5.46,
- -3.82,
- -3.55,
- -2.06,
- -1.09,
- -0.27,
- 2.19,
- 2.77,
- 3.56,
- 4.27,
- 4.79,
- 4.7,
- 3.82,
- 2.83,
- 2.88,
- 3.14,
- 2.28,
- 0.78,
- -1.48,
- -4.74,
- -5.66,
- -6.21,
- -6.5,
- -6.84,
- -6.28,
- -7.19,
- -5.63,
- -4.96,
- -5.4,
- -6.14,
- -7.16,
- -6.05,
- -4.25,
- -2.59,
- -2.21,
- -2.03,
- -1.8,
- 0.34,
- 1.87,
- 1.67,
- 1.09,
- 0.19,
- 0.37,
- 0.08,
- -1.53,
- 0.49,
- -2.74,
- -0.18,
- -4.65,
- -4.86,
- -6.38,
- -3.36,
- -3.41,
- -1.59,
- -5.32,
- -6.31,
- -2.62,
- 0.02,
- 1.75,
- 3.17,
- 4.53,
- 4.8,
- 5.71,
- 7.81,
- 9.05,
- 10.66,
- 12.41,
- 12.81,
- 12.06,
- 10.9,
- 10.69,
- 10.57,
- 10.82,
- 10.42,
- 9.95,
- 9.47,
- 6.66,
- 3.91,
- 1.52,
- 2.74,
- 3.99,
- 4.82,
- 2.24,
- -1.06,
- -3.6,
- -5.28,
- -4.82,
- -5.35,
- -7.68,
- -9.13,
- -8.84,
- -8.68,
- -8.09,
- -6.15,
- -4.9,
- -4.09,
- -3.14,
- -2.58,
- -2.4,
- -2.58,
- -2.75,
- -2.59,
- -2.42,
- -2.41,
- -2.51,
- -2.98,
- -3.11,
- -2.18,
- -1.35,
- -1.06,
- -0.61,
- -0.91,
- -1.83,
- -2.17,
- -1.99,
- -1.79,
- -2.27,
- -3.27,
- -4.64,
- -2.46,
- -2.83,
- -3.6,
- -5.16,
- -7.78,
- -11.55,
- -13.81,
- -14.98,
- -14.8,
- -13.71,
- -12.75,
- -12.43,
- -10.7,
- -8.66,
- -6.51,
- -3.59,
- -1.11,
- 0.53,
- 2.1,
- 2.78,
- 4.32,
- 6.39,
- 7.85,
- 8.51,
- 8.17,
- 8.68,
- 9.17,
- 9.49,
- 9.16,
- 9.08,
- 9.81,
- 10.61,
- 11.26,
- 10.67,
- 10.23,
- 11.08,
- 11.71,
- 9.2,
- 4.27,
- 7.3,
- -0.86,
- 0.57,
- -2.54,
- -1.81,
- -1.66,
- -1.83,
- -1.9,
- -1.66,
- -1.64,
- 0.58,
- 4.56,
- 3.18,
- 1.08,
- 5.54,
- 2.09,
- -9.41,
- -12.12,
- -10.72,
- -9.43,
- -10.7,
- -11.39,
- -11.11,
- -10.73,
- -10.51,
- -10.42,
- -9.59,
- -8.98,
- -8.88,
- -8.06,
- -7.47,
- -7.52,
- -7.58,
- -7.24,
- -6.67,
- -6.09,
- -6.06,
- -5.96,
- -5.81,
- -5.05,
- -4.57,
- -4.64,
- -4.74,
- -5.0,
- -4.83,
- -4.35,
- -3.56,
- -2.61,
- -2.12,
- -1.16,
- -0.47,
- -0.21,
- 0.3,
- 0.81,
- 0.99,
- 3.06,
- 5.16,
- 5.36,
- 5.21,
- 5.22,
- 4.9,
- 4.85,
- 4.7,
- 4.31,
- 3.98,
- 3.46,
- 2.81,
- 1.68,
- 0.12,
- -1.58,
- -3.12,
- -3.64,
- -2.01,
- -1.47,
- -1.04,
- -0.66,
- -0.01,
- 0.85,
- 2.02,
- 2.79,
- 3.93,
- 5.03,
- 6.04,
- 6.3,
- 6.29,
- 6.61,
- 7.15,
- 7.71,
- 8.09,
- 7.4,
- 7.97,
- 7.74,
- 7.38,
- 5.97,
- 3.53,
- 0.67,
- -0.5,
- -3.5,
- -5.12,
- -6.07,
- -6.63,
- -6.29,
- -5.94,
- -5.88,
- -10.43,
- -11.09,
- -11.73,
- -4.78,
- -2.69,
- -7.52,
- -8.81,
- -7.22,
- -6.08,
- -5.25,
- -4.25,
- -2.47,
- -4.39,
- -7.62,
- -9.71,
- -9.03,
- -9.51,
- -10.31,
- -11.02,
- -10.17,
- -9.2,
- -7.76,
- -6.41,
- -5.51,
- -4.3,
- -2.44,
- -2.71,
- -1.03,
- -0.23,
- -2.47,
- -3.03,
- -4.28,
- -0.25,
- 2.59,
- 4.76,
- 6.09,
- 7.34,
- 8.44,
- 9.4,
- 10.64,
- 11.83,
- 12.89,
- 13.71,
- 14.05,
- 14.26,
- 14.16,
- 14.3,
- 14.11,
- 13.85,
- 13.02,
- 10.7,
- 9.09,
- 7.32,
- 5.47,
- 4.09,
- 2.79,
- 2.52,
- 2.15,
- 1.72,
- 1.49,
- 0.82,
- 0.08,
- -1.67,
- -3.7,
- -4.67,
- -4.49,
- -4.08,
- -3.26,
- -1.86,
- -1.14,
- -1.31,
- -1.43,
- -1.31,
- -0.71,
- -2.14,
- -3.91,
- -4.26,
- -4.03,
- -3.46,
- -2.23,
- -0.49,
- 1.02,
- 1.66,
- 1.94,
- 2.52,
- 2.91,
- 1.18,
- -7.1,
- -9.15,
- -6.75,
- -4.12,
- -1.73,
- 0.18,
- 2.06,
- 3.31,
- 5.27,
- -10.44,
- -8.58,
- -5.44,
- -4.43,
- -3.55,
- -2.17,
- -2.05,
- 0.51,
- 1.87,
- 3.76,
- 5.43,
- 5.62,
- 5.54,
- 5.29,
- 3.97,
- 2.15,
- 3.84,
- 4.83,
- 3.34,
- 0.96,
- -3.86,
- -5.89,
- -5.72,
- -6.54,
- -7.41,
- -4.9,
- -6.36,
- -5.63,
- -4.57,
- -5.25,
- -5.46,
- -5.17,
- -5.9,
- -4.26,
- -2.88,
- -2.4,
- -2.62,
- -1.91,
- 0.16,
- 1.2,
- 1.61,
- 1.28,
- 1.08,
- 0.49,
- -0.26,
- -0.8,
- -1.5,
- -0.23,
- 0.32,
- -0.4,
- -2.13,
- -3.65,
- -5.05,
- -4.5,
- -0.4,
- -2.77,
- -4.48,
- -5.92,
- -3.63,
- -1.03,
- 1.14,
- 2.74,
- 2.21,
- 4.78,
- 5.56,
- 7.36,
- 8.63,
- 9.98,
- 11.48,
- 11.61,
- 11.49,
- 10.55,
- 10.34,
- 10.47,
- 10.84,
- 10.62,
- 10.74,
- 10.49,
- 9.35,
- 7.69,
- 4.71,
- 3.52,
- 3.62,
- 3.67,
- 4.86,
- 3.18,
- -1.55,
- -4.47,
- -6.25,
- -6.32,
- -6.94,
- -7.86,
- -9.63,
- -9.83,
- -8.99,
- -6.55,
- -5.29,
- -4.76,
- -3.33,
- -2.76,
- -2.87,
- -2.77,
- -2.5,
- -2.36,
- -2.49,
- -2.59,
- -2.43,
- -2.76,
- -3.26,
- -3.4,
- -3.31,
- -2.83,
- -1.82,
- -1.69,
- -1.52,
- -1.97,
- -2.42,
- -2.62,
- -2.39,
- -2.05,
- -2.28,
- -1.7,
- -2.22,
- -2.7,
- -3.56,
- -5.59,
- -9.48,
- -13.12,
- -14.46,
- -14.56,
- -14.42,
- -14.69,
- -13.94,
- -12.57,
- -10.67,
- -8.41,
- -5.61,
- -2.8,
- -0.79,
- 0.61,
- 1.98,
- 3.64,
- 5.58,
- 7.09,
- 7.47,
- 7.98,
- 8.21,
- 8.49,
- 8.52,
- 9.04,
- 9.31,
- 8.12,
- 9.27,
- 10.0,
- 10.48,
- 9.36,
- 8.64,
- 9.29,
- 8.58,
- 2.28,
- -0.64,
- 0.02,
- -0.99,
- -1.23,
- -1.89,
- -2.14,
- -1.64,
- -0.39,
- 0.35,
- 0.05,
- -0.8,
- -1.33,
- 1.45,
- 2.05,
- 2.2,
- 0.1,
- 3.83,
- 2.38,
- -8.38,
- -11.49,
- -11.15,
- -9.1,
- -9.43,
- -10.23,
- -10.6,
- -10.58,
- -10.15,
- -9.61,
- -9.96,
- -9.57,
- -9.45,
- -8.98,
- -8.48,
- -7.48,
- -6.41,
- -5.79,
- -5.73,
- -5.05,
- -4.35,
- -3.18,
- -2.91,
- -3.95,
- -4.44,
- -4.68,
- -5.3,
- -5.36,
- -4.23,
- -2.97,
- -2.98,
- -2.66,
- -1.42,
- -0.49,
- -0.31,
- 0.37,
- 1.74,
- 3.36,
- 4.6,
- 5.32,
- 5.99,
- 6.56,
- 6.61,
- 7.1,
- 7.06,
- 6.92,
- 6.94,
- 6.5,
- 5.96,
- 4.98,
- 4.08,
- 2.45,
- -0.59,
- -3.28,
- -3.81,
- -3.88,
- -3.44,
- -2.48,
- -1.61,
- -0.27,
- 0.87,
- 1.97,
- 2.68,
- 4.02,
- 4.98,
- 5.44,
- 5.52,
- 5.98,
- 6.91,
- 7.49,
- 7.41,
- 7.73,
- 7.88,
- 8.53,
- 8.5,
- 8.28,
- 5.9,
- 1.73,
- -2.53,
- -4.17,
- -6.97,
- -8.31,
- -8.42,
- -8.24,
- -7.43,
- -5.99,
- -6.5,
- -11.12,
- -11.73,
- -10.36,
- -4.87,
- -7.32,
- -9.53,
- -7.61,
- -6.74,
- -6.41,
- -5.52,
- -4.17,
- -3.66,
- -6.49,
- -7.94,
- -8.96,
- -9.6,
- -11.3,
- -10.4,
- -10.36,
- -9.96,
- -8.96,
- -7.88,
- -6.08,
- -4.98,
- -4.01,
- -0.53,
- -2.05,
- -0.11,
- -6.32,
- -6.02,
- -3.7,
- -0.76,
- 1.5,
- 3.78,
- 5.7,
- 7.13,
- 8.18,
- 9.22,
- 10.43,
- 11.78,
- 12.91,
- 13.75,
- 14.13,
- 14.07,
- 14.01,
- 14.26,
- 14.69,
- 14.26,
- 13.19,
- 12.66,
- 10.69,
- 8.24,
- 6.71,
- 4.84,
- 3.66,
- 2.6,
- 1.67,
- 1.05,
- 0.49,
- 0.42,
- 0.26,
- 0.14,
- 0.3,
- -0.16,
- -2.72,
- -4.62,
- -4.13,
- -3.48,
- -3.45,
- -3.31,
- -2.9,
- -2.34,
- -1.05,
- -1.33,
- -2.54,
- -4.52,
- -6.26,
- -5.76,
- -5.03,
- -3.53,
- -1.37,
- 0.22,
- 1.0,
- 1.69,
- 2.09,
- 1.03,
- -6.17,
- -9.54,
- -6.96,
- -4.87,
- -2.62,
- -0.96,
- 0.26,
- 1.12,
- 3.27,
- -11.06,
- -9.12,
- -6.24,
- -5.51,
- -3.61,
- -3.28,
- -1.44,
- 0.5,
- 2.48,
- 4.32,
- 3.71,
- 5.01,
- 5.64,
- 5.2,
- 4.58,
- 1.91,
- 2.36,
- 4.96,
- 6.68,
- 2.05,
- -1.78,
- -4.47,
- -5.19,
- -3.58,
- -4.03,
- -5.0,
- -4.19,
- -3.42,
- -2.88,
- -3.86,
- -4.71,
- -4.45,
- -4.05,
- -3.66,
- -2.82,
- -1.83,
- -0.06,
- 0.75,
- 1.56,
- 2.41,
- 2.87,
- 2.55,
- 1.38,
- 0.27,
- -0.37,
- -1.67,
- -1.78,
- -0.06,
- 0.15,
- -1.07,
- -3.35,
- -3.64,
- -1.23,
- -1.66,
- -2.68,
- -3.35,
- -5.24,
- -4.91,
- -3.45,
- -1.5,
- 0.68,
- 1.86,
- 1.56,
- 4.23,
- 4.99,
- 6.56,
- 7.79,
- 9.25,
- 10.63,
- 9.99,
- 10.39,
- 10.43,
- 10.21,
- 9.85,
- 10.02,
- 10.93,
- 11.35,
- 10.82,
- 9.6,
- 8.03,
- 6.5,
- 3.8,
- 2.3,
- 1.85,
- 3.05,
- 3.36,
- -0.12,
- -3.72,
- -6.16,
- -7.24,
- -6.78,
- -7.48,
- -9.87,
- -10.7,
- -9.32,
- -7.07,
- -5.92,
- -4.95,
- -3.83,
- -3.13,
- -3.21,
- -3.43,
- -3.3,
- -2.81,
- -2.48,
- -2.92,
- -3.0,
- -2.19,
- -2.48,
- -3.04,
- -3.21,
- -3.24,
- -3.11,
- -2.59,
- -2.21,
- -2.01,
- -2.61,
- -2.35,
- -1.51,
- -0.89,
- -1.01,
- -0.67,
- -0.96,
- -1.69,
- -2.98,
- -4.5,
- -7.26,
- -11.1,
- -12.92,
- -14.59,
- -15.25,
- -15.27,
- -14.69,
- -13.31,
- -11.46,
- -8.99,
- -6.05,
- -3.45,
- -1.56,
- 0.32,
- 1.41,
- 2.6,
- 4.59,
- 6.16,
- 7.07,
- 7.22,
- 6.92,
- 7.47,
- 8.19,
- 8.36,
- 8.12,
- 8.6,
- 9.21,
- 9.92,
- 9.41,
- 8.42,
- 8.04,
- 6.48,
- 7.22,
- 3.83,
- -1.37,
- -1.57,
- -2.04,
- -2.12,
- -2.45,
- -2.27,
- -1.02,
- -0.47,
- -0.68,
- -0.7,
- -0.1,
- 0.13,
- -1.29,
- -1.53,
- -0.53,
- 0.36,
- 1.63,
- -1.02,
- 1.39,
- 0.18,
- -8.19,
- -10.67,
- -11.79,
- -11.22,
- -10.21,
- -9.62,
- -9.24,
- -8.32,
- -8.48,
- -8.64,
- -8.69,
- -9.02,
- -8.67,
- -7.8,
- -7.57,
- -6.93,
- -6.93,
- -6.59,
- -5.78,
- -5.22,
- -3.84,
- -3.15,
- -4.02,
- -4.4,
- -4.59,
- -4.99,
- -4.84,
- -3.9,
- -3.23,
- -2.92,
- -2.84,
- -2.59,
- -1.61,
- -0.86,
- -0.05,
- 1.83,
- 3.39,
- 4.04,
- 5.07,
- 6.27,
- 6.94,
- 7.39,
- 7.68,
- 7.93,
- 8.43,
- 8.72,
- 8.71,
- 7.93,
- 6.91,
- 5.41,
- 3.79,
- 0.72,
- -2.72,
- -4.67,
- -5.13,
- -4.66,
- -3.74,
- -2.15,
- -0.84,
- 0.35,
- 1.41,
- 2.35,
- 3.64,
- 4.25,
- 4.8,
- 5.21,
- 6.16,
- 7.0,
- 7.87,
- 8.21,
- 9.23,
- 9.46,
- 9.87,
- 9.54,
- 7.05,
- 2.3,
- -2.94,
- -7.55,
- -8.72,
- -9.93,
- -10.74,
- -10.17,
- -8.67,
- -7.01,
- -6.15,
- -8.31,
- -12.21,
- -11.99,
- -11.73,
- -9.69,
- -6.55,
- -6.56,
- -7.24,
- -6.56,
- -5.69,
- -4.75,
- -3.96,
- -5.29,
- -6.59,
- -8.76,
- -9.75,
- -10.78,
- -10.62,
- -10.34,
- -10.26,
- -9.45,
- -8.13,
- -6.97,
- -4.43,
- -2.34,
- -0.89,
- -1.86,
- -5.74,
- -7.13,
- -6.6,
- -4.29,
- -1.97,
- 0.44,
- 2.99,
- 5.17,
- 6.85,
- 7.98,
- 8.88,
- 10.1,
- 11.65,
- 12.95,
- 13.65,
- 13.93,
- 14.18,
- 14.28,
- 14.45,
- 14.63,
- 14.28,
- 13.87,
- 12.41,
- 10.31,
- 9.86,
- 8.84,
- 7.1,
- 5.04,
- 3.04,
- 1.64,
- 0.82,
- 0.42,
- 0.33,
- 0.1,
- -0.12,
- 0.1,
- 0.08,
- 0.41,
- 1.06,
- 0.06,
- -3.46,
- -5.49,
- -5.51,
- -5.03,
- -3.88,
- -2.55,
- -1.47,
- -1.21,
- -0.46,
- -3.46,
- -6.61,
- -7.55,
- -6.45,
- -4.07,
- -1.82,
- -0.39,
- 0.52,
- 1.57,
- -0.26,
- -7.6,
- -8.89,
- -6.93,
- -5.18,
- -3.2,
- -1.68,
- -1.31,
- -1.26,
- -0.7,
- -10.3,
- -9.42,
- -7.44,
- -5.76,
- -4.28,
- -3.33,
- -1.18,
- 0.44,
- 3.21,
- 2.47,
- 2.65,
- 3.86,
- 4.77,
- 4.29,
- 2.68,
- 1.46,
- 2.04,
- 3.42,
- 3.7,
- 1.65,
- 0.11,
- -1.95,
- -2.26,
- -3.46,
- -4.2,
- -3.85,
- -3.52,
- -2.66,
- -2.68,
- -3.92,
- -3.32,
- -2.89,
- -2.44,
- -2.61,
- -2.32,
- -0.99,
- 0.19,
- 1.61,
- 2.52,
- 3.65,
- 4.03,
- 3.19,
- 1.6,
- -0.38,
- -1.92,
- -2.53,
- -1.49,
- 0.24,
- 0.52,
- -1.28,
- -0.46,
- -5.21,
- -2.71,
- -1.68,
- -3.48,
- -4.39,
- -4.81,
- -4.9,
- -4.07,
- -2.01,
- -0.14,
- 0.17,
- 0.8,
- 3.28,
- 4.55,
- 5.64,
- 6.82,
- 8.12,
- 9.36,
- 9.69,
- 9.28,
- 8.98,
- 9.23,
- 9.04,
- 9.4,
- 10.09,
- 10.57,
- 10.85,
- 10.13,
- 9.06,
- 8.61,
- 7.22,
- 4.82,
- 1.03,
- 2.97,
- 4.38,
- 4.48,
- -0.48,
- -6.38,
- -7.25,
- -7.2,
- -8.64,
- -10.55,
- -11.22,
- -9.79,
- -7.64,
- -5.19,
- -3.16,
- -2.01,
- -1.8,
- -2.34,
- -3.55,
- -3.75,
- -3.66,
- -3.42,
- -2.92,
- -2.9,
- -2.73,
- -2.29,
- -2.06,
- -2.09,
- -2.17,
- -2.51,
- -2.76,
- -3.03,
- -3.08,
- -2.89,
- -1.98,
- -0.77,
- 0.05,
- -0.28,
- 0.49,
- -0.09,
- -0.79,
- -2.03,
- -2.94,
- -5.37,
- -8.44,
- -12.56,
- -15.26,
- -15.68,
- -15.89,
- -14.87,
- -13.31,
- -11.3,
- -9.25,
- -6.83,
- -4.2,
- -2.02,
- -0.69,
- 0.81,
- 2.55,
- 4.22,
- 5.91,
- 6.54,
- 6.26,
- 6.85,
- 7.19,
- 7.25,
- 8.22,
- 7.71,
- 8.13,
- 8.85,
- 9.53,
- 8.22,
- 8.34,
- 8.3,
- 6.9,
- 5.19,
- 5.86,
- -2.04,
- -1.79,
- -2.16,
- -2.97,
- -4.15,
- -2.66,
- -1.08,
- -0.2,
- -0.08,
- -0.6,
- -0.96,
- -1.06,
- -1.3,
- -1.27,
- -2.75,
- -3.02,
- -3.04,
- -1.37,
- -1.82,
- -2.14,
- -0.02,
- -3.93,
- -9.73,
- -10.84,
- -11.84,
- -12.33,
- -11.65,
- -10.48,
- -9.92,
- -8.92,
- -8.61,
- -8.68,
- -8.13,
- -8.39,
- -8.54,
- -7.78,
- -6.93,
- -6.5,
- -6.08,
- -5.75,
- -5.25,
- -5.25,
- -5.71,
- -5.65,
- -5.25,
- -5.33,
- -5.49,
- -4.45,
- -3.77,
- -4.02,
- -4.78,
- -4.19,
- -3.22,
- -2.17,
- -1.22,
- -0.15,
- 1.72,
- 3.03,
- 4.51,
- 5.62,
- 6.36,
- 6.78,
- 7.37,
- 8.02,
- 8.13,
- 7.9,
- 8.2,
- 8.17,
- 7.73,
- 6.19,
- 3.3,
- 2.11,
- 1.09,
- -2.5,
- -5.81,
- -6.52,
- -5.48,
- -4.42,
- -2.94,
- -1.41,
- -0.32,
- 1.16,
- 2.5,
- 3.38,
- 3.92,
- 4.51,
- 5.34,
- 6.41,
- 7.54,
- 8.57,
- 9.17,
- 10.1,
- 11.18,
- 12.38,
- 11.78,
- 7.09,
- -2.79,
- -9.07,
- -12.12,
- -12.5,
- -12.23,
- -11.47,
- -10.06,
- -8.03,
- -7.03,
- -7.24,
- -9.95,
- -11.37,
- -11.79,
- -11.82,
- -9.67,
- -7.3,
- -8.03,
- -7.03,
- -6.04,
- -4.92,
- -4.91,
- -4.67,
- -5.15,
- -6.78,
- -9.65,
- -10.15,
- -10.9,
- -10.43,
- -9.74,
- -9.53,
- -9.94,
- -10.76,
- -1.9,
- -2.39,
- -1.68,
- -3.01,
- -11.0,
- -8.84,
- -6.81,
- -5.1,
- -3.04,
- -0.4,
- 2.18,
- 4.51,
- 6.17,
- 7.31,
- 8.63,
- 10.0,
- 11.57,
- 12.97,
- 13.83,
- 14.15,
- 14.59,
- 14.69,
- 14.96,
- 14.91,
- 14.94,
- 14.56,
- 13.7,
- 12.27,
- 9.97,
- 7.96,
- 7.34,
- 6.77,
- 5.55,
- 5.23,
- 4.5,
- 2.96,
- 1.08,
- -0.22,
- -0.45,
- -0.36,
- -0.35,
- -0.35,
- -0.62,
- -1.09,
- -1.12,
- -1.12,
- -1.2,
- -1.35,
- -1.27,
- -1.08,
- -0.95,
- -0.88,
- -1.37,
- -2.35,
- -5.17,
- -8.2,
- -8.49,
- -6.67,
- -3.89,
- -1.7,
- -0.14,
- 0.22,
- -5.67,
- -8.88,
- -7.81,
- -5.8,
- -4.11,
- -2.97,
- -2.49,
- -2.95,
- -4.13,
- -4.42,
- -9.8,
- -9.58,
- -7.69,
- -5.82,
- -4.57,
- -3.15,
- -1.59,
- 1.76,
- 2.12,
- 2.06,
- 1.94,
- 2.41,
- 3.23,
- 3.11,
- 0.9,
- 0.82,
- 1.46,
- 2.68,
- 4.09,
- 3.19,
- 2.18,
- 1.18,
- -0.6,
- -1.95,
- -2.34,
- -1.96,
- -2.05,
- -2.38,
- -3.14,
- -3.47,
- -3.64,
- -3.52,
- -2.92,
- -2.35,
- -1.48,
- -0.98,
- -0.18,
- 1.14,
- 2.85,
- 3.84,
- 3.99,
- 2.83,
- 0.2,
- -1.12,
- -1.82,
- -2.25,
- -0.45,
- -0.01,
- -0.96,
- -0.08,
- 0.04,
- -1.83,
- -1.61,
- -3.56,
- -1.32,
- -5.17,
- -5.29,
- -4.75,
- -3.71,
- -1.95,
- -0.92,
- -0.65,
- 0.08,
- 2.39,
- 3.8,
- 4.93,
- 6.34,
- 7.22,
- 8.2,
- 9.07,
- 8.89,
- 8.27,
- 8.18,
- 8.3,
- 8.28,
- 8.87,
- 9.8,
- 10.01,
- 9.63,
- 9.28,
- 8.3,
- 8.35,
- 9.05,
- 3.26,
- 1.43,
- 3.34,
- 3.58,
- 3.22,
- 1.27,
- -2.09,
- -7.18,
- -9.14,
- -10.56,
- -11.23,
- -10.21,
- -8.35,
- -6.68,
- -5.4,
- -4.36,
- -4.16,
- -4.63,
- -4.74,
- -4.44,
- -4.16,
- -3.68,
- -3.04,
- -2.7,
- -2.57,
- -2.45,
- -2.4,
- -2.4,
- -2.79,
- -3.56,
- -4.15,
- -4.14,
- -4.1,
- -4.14,
- -4.02,
- -2.77,
- -0.73,
- 0.48,
- -1.1,
- -0.04,
- -0.01,
- -0.42,
- -1.75,
- -4.36,
- -9.6,
- -15.33,
- -17.73,
- -18.05,
- -16.94,
- -15.38,
- -13.7,
- -11.56,
- -9.16,
- -7.02,
- -4.56,
- -2.65,
- -1.49,
- 0.27,
- 2.13,
- 3.61,
- 4.7,
- 5.33,
- 5.52,
- 6.33,
- 6.9,
- 6.8,
- 7.12,
- 7.67,
- 7.86,
- 8.27,
- 8.26,
- 7.47,
- 6.87,
- 6.53,
- 7.15,
- 5.41,
- 3.35,
- 2.96,
- 0.39,
- -3.2,
- -5.53,
- -3.59,
- -2.17,
- -1.13,
- -0.21,
- 0.75,
- 0.81,
- 0.43,
- 0.45,
- -0.76,
- -2.06,
- -2.16,
- -3.23,
- -3.39,
- -3.16,
- -3.33,
- -4.36,
- -4.41,
- -2.09,
- 0.22,
- -2.73,
- -9.57,
- -11.68,
- -12.03,
- -12.48,
- -11.96,
- -11.04,
- -10.5,
- -10.3,
- -10.17,
- -10.04,
- -9.68,
- -9.24,
- -8.86,
- -7.83,
- -7.42,
- -7.21,
- -7.05,
- -6.59,
- -6.05,
- -5.94,
- -5.72,
- -5.69,
- -6.12,
- -5.45,
- -5.03,
- -5.69,
- -6.41,
- -5.62,
- -4.58,
- -3.35,
- -2.14,
- -0.68,
- 0.63,
- 1.49,
- 3.13,
- 4.73,
- 5.48,
- 5.24,
- 5.94,
- 6.84,
- 7.34,
- 8.76,
- 8.91,
- 9.18,
- 8.82,
- 7.39,
- 5.42,
- 4.22,
- 3.16,
- 1.53,
- -2.71,
- -5.85,
- -7.08,
- -6.49,
- -5.1,
- -3.52,
- -2.26,
- -0.53,
- 0.96,
- 1.97,
- 3.04,
- 3.68,
- 4.65,
- 5.86,
- 7.23,
- 8.12,
- 9.29,
- 10.27,
- 11.54,
- 12.83,
- 13.22,
- 10.05,
- 3.63,
- -4.33,
- -12.87,
- -15.02,
- -14.42,
- -12.2,
- -11.33,
- -10.08,
- -8.64,
- -7.79,
- -9.0,
- -11.52,
- -10.29,
- -9.19,
- -9.91,
- -8.24,
- -8.03,
- -7.45,
- -6.47,
- -5.32,
- -4.96,
- -5.06,
- -4.84,
- -4.94,
- -5.73,
- -9.24,
- -9.93,
- -9.31,
- -10.58,
- -10.05,
- -10.48,
- -11.1,
- -10.01,
- -3.14,
- -4.62,
- -8.95,
- -10.76,
- -8.93,
- -6.94,
- -5.67,
- -3.68,
- -1.15,
- 1.71,
- 3.91,
- 5.35,
- 6.59,
- 8.14,
- 9.8,
- 11.45,
- 12.92,
- 13.95,
- 14.62,
- 15.09,
- 15.41,
- 15.69,
- 15.45,
- 15.17,
- 14.29,
- 13.25,
- 12.49,
- 10.46,
- 8.61,
- 7.28,
- 6.13,
- 5.93,
- 6.4,
- 6.47,
- 6.31,
- 5.6,
- 4.57,
- 2.64,
- 0.85,
- -0.45,
- -0.63,
- -0.58,
- -1.04,
- -1.24,
- -1.02,
- -0.89,
- -0.75,
- -0.69,
- -0.61,
- -0.44,
- -0.43,
- -0.41,
- -1.37,
- -4.64,
- -8.69,
- -10.24,
- -8.46,
- -5.89,
- -3.05,
- -1.63,
- -4.99,
- -9.26,
- -7.7,
- -5.66,
- -3.62,
- -2.61,
- -2.81,
- -3.83,
- -5.5,
- -6.96,
- -7.49,
- -11.05,
- -10.2,
- -8.35,
- -6.4,
- -4.86,
- -3.57,
- -1.49,
- 0.51,
- 1.95,
- 1.88,
- 1.23,
- 1.99,
- 2.4,
- 2.39,
- 1.42,
- 0.38,
- 0.03,
- 1.38,
- 2.66,
- 2.71,
- 1.49,
- 0.88,
- 0.15,
- -0.64,
- -1.12,
- -1.63,
- -1.82,
- -2.46,
- -2.9,
- -2.96,
- -2.92,
- -2.97,
- -2.87,
- -2.0,
- -0.78,
- -0.96,
- 0.93,
- 2.35,
- 3.2,
- 3.63,
- 3.48,
- 1.47,
- -1.33,
- -1.89,
- -1.91,
- -0.04,
- 0.25,
- -0.41,
- -0.09,
- -2.9,
- -1.35,
- -0.83,
- 0.84,
- -3.04,
- -2.0,
- -3.88,
- -4.65,
- -4.0,
- -2.97,
- -2.08,
- -1.54,
- -1.14,
- -0.56,
- 1.36,
- 2.76,
- 4.05,
- 5.63,
- 6.84,
- 7.67,
- 8.73,
- 8.78,
- 8.94,
- 7.71,
- 8.13,
- 7.56,
- 7.61,
- 8.68,
- 9.76,
- 10.03,
- 9.85,
- 8.6,
- 7.92,
- 8.41,
- 7.44,
- 2.76,
- 2.41,
- 3.72,
- 3.64,
- 2.9,
- -0.34,
- -5.5,
- -9.11,
- -10.91,
- -10.91,
- -10.29,
- -8.98,
- -7.28,
- -5.57,
- -3.49,
- -3.29,
- -3.51,
- -3.15,
- -3.28,
- -3.13,
- -2.31,
- -1.33,
- 0.2,
- 1.17,
- 1.62,
- 1.94,
- 1.7,
- 0.91,
- -0.02,
- -1.02,
- -2.24,
- -3.0,
- -3.06,
- -3.14,
- -3.3,
- -3.12,
- -2.53,
- -2.87,
- -3.1,
- -2.24,
- -1.58,
- -2.55,
- -5.34,
- -11.22,
- -16.66,
- -18.08,
- -18.0,
- -17.64,
- -15.55,
- -13.1,
- -11.56,
- -9.25,
- -7.21,
- -5.14,
- -3.04,
- -1.61,
- 0.19,
- 2.1,
- 3.44,
- 4.37,
- 4.77,
- 5.22,
- 5.59,
- 6.16,
- 6.31,
- 6.48,
- 7.66,
- 8.76,
- 6.4,
- 6.91,
- 6.9,
- 6.45,
- 5.36,
- 5.95,
- 5.54,
- 3.46,
- 1.88,
- 0.62,
- -1.45,
- -3.67,
- -3.42,
- -1.98,
- -0.72,
- 0.25,
- 0.95,
- 0.66,
- 0.37,
- 1.71,
- 1.77,
- -0.48,
- -3.64,
- -4.42,
- -4.25,
- -3.72,
- -3.67,
- -4.06,
- -4.11,
- -3.73,
- -3.75,
- -3.72,
- -1.57,
- 1.13,
- -2.23,
- -8.82,
- -10.92,
- -10.78,
- -10.88,
- -11.17,
- -10.97,
- -11.08,
- -10.98,
- -10.56,
- -10.13,
- -9.45,
- -8.7,
- -8.18,
- -7.86,
- -7.8,
- -7.48,
- -7.8,
- -7.94,
- -7.77,
- -7.99,
- -7.1,
- -6.66,
- -7.48,
- -8.08,
- -7.12,
- -6.0,
- -4.91,
- -3.62,
- -2.36,
- -0.85,
- 0.6,
- 2.22,
- 3.81,
- 4.33,
- 5.12,
- 5.87,
- 6.42,
- 8.16,
- 8.58,
- 7.19,
- 7.84,
- 8.82,
- 7.53,
- 6.33,
- 5.34,
- 3.74,
- 2.29,
- -0.21,
- -5.4,
- -7.85,
- -8.55,
- -7.28,
- -5.97,
- -4.55,
- -2.69,
- -0.63,
- 1.04,
- 2.17,
- 3.28,
- 4.07,
- 5.22,
- 6.71,
- 8.04,
- 9.36,
- 10.07,
- 11.39,
- 12.45,
- 12.81,
- 13.32,
- 7.89,
- -0.81,
- -10.12,
- -15.0,
- -15.97,
- -13.85,
- -12.16,
- -12.22,
- -10.62,
- -9.33,
- -9.67,
- -11.5,
- -11.35,
- -9.52,
- -10.13,
- -9.03,
- -8.34,
- -7.83,
- -7.0,
- -6.07,
- -5.34,
- -4.95,
- -4.93,
- -5.22,
- -4.78,
- -4.66,
- -6.87,
- -9.89,
- -9.32,
- -10.54,
- -11.16,
- -10.78,
- -10.06,
- -9.43,
- -9.91,
- -10.6,
- -10.22,
- -8.5,
- -7.31,
- -5.68,
- -3.88,
- -1.53,
- 1.01,
- 3.21,
- 4.77,
- 5.91,
- 7.29,
- 8.91,
- 10.58,
- 12.44,
- 14.01,
- 14.95,
- 15.79,
- 16.6,
- 16.98,
- 16.44,
- 15.53,
- 14.33,
- 13.25,
- 12.62,
- 11.9,
- 10.77,
- 8.78,
- 6.35,
- 5.52,
- 6.15,
- 6.17,
- 5.94,
- 5.5,
- 5.02,
- 4.44,
- 3.88,
- 3.07,
- 1.65,
- 0.48,
- -0.53,
- -1.12,
- -1.48,
- -1.62,
- -1.34,
- -0.72,
- 0.13,
- 0.65,
- 0.6,
- -0.16,
- -2.01,
- -4.04,
- -8.31,
- -11.94,
- -9.98,
- -7.17,
- -4.48,
- -4.61,
- -9.54,
- -8.48,
- -5.58,
- -3.02,
- -1.41,
- -1.0,
- -2.53,
- -5.87,
- -9.9,
- -11.93,
- -10.68,
- -12.18,
- -10.97,
- -9.01,
- -7.53,
- -5.88,
- -4.73,
- -3.01,
- -0.74,
- 1.13,
- 1.44,
- 0.58,
- 0.71,
- 1.44,
- 1.85,
- 1.63,
- 1.21,
- 1.17,
- 1.04,
- 1.1,
- 1.15,
- 0.4,
- -0.19,
- -0.56,
- -0.77,
- -0.71,
- -0.52,
- -0.67,
- -0.65,
- -0.93,
- -0.81,
- 0.02,
- 0.03,
- -0.32,
- 0.83,
- -0.36,
- 1.3,
- 2.78,
- 2.94,
- 3.05,
- 3.18,
- 2.27,
- -0.12,
- -2.3,
- -2.3,
- -2.36,
- -1.36,
- -0.18,
- 0.07,
- -2.83,
- -1.05,
- -2.57,
- -0.89,
- -0.82,
- -0.29,
- -3.19,
- -3.73,
- -4.1,
- -3.58,
- -3.01,
- -2.52,
- -1.46,
- -1.05,
- -0.72,
- 0.01,
- 1.43,
- 3.11,
- 5.32,
- 6.81,
- 7.61,
- 8.53,
- 8.78,
- 8.86,
- 8.05,
- 6.61,
- 6.45,
- 6.45,
- 7.58,
- 9.2,
- 10.3,
- 10.13,
- 9.44,
- 8.58,
- 7.09,
- 7.55,
- 3.42,
- 3.35,
- 4.07,
- 4.68,
- 4.22,
- 3.55,
- -4.49,
- -10.55,
- -10.24,
- -9.72,
- -9.27,
- -7.9,
- -6.91,
- -5.74,
- -4.25,
- -3.39,
- -4.69,
- -5.03,
- -4.91,
- -3.53,
- -2.63,
- -1.33,
- 0.6,
- 1.76,
- 2.36,
- 3.04,
- 3.7,
- 3.2,
- 2.19,
- 1.38,
- 0.74,
- 0.53,
- 0.06,
- -0.55,
- -1.5,
- -2.36,
- -2.64,
- -2.53,
- -3.4,
- -3.57,
- -3.69,
- -4.13,
- -6.74,
- -12.31,
- -16.78,
- -19.05,
- -19.28,
- -18.17,
- -16.04,
- -13.27,
- -10.98,
- -8.7,
- -6.57,
- -4.81,
- -3.17,
- -1.83,
- -0.39,
- 1.19,
- 2.57,
- 3.18,
- 3.93,
- 4.58,
- 4.82,
- 5.23,
- 5.75,
- 6.44,
- 8.2,
- 9.05,
- 6.36,
- 5.2,
- 5.34,
- 4.91,
- 4.4,
- 5.42,
- 4.67,
- 0.99,
- -0.47,
- -1.24,
- -2.56,
- -3.69,
- -2.58,
- -1.2,
- -0.31,
- 0.25,
- 0.79,
- 0.08,
- -2.34,
- -0.8,
- 1.65,
- 0.45,
- -2.29,
- -4.26,
- -5.07,
- -4.64,
- -4.28,
- -4.68,
- -4.79,
- -4.45,
- -4.05,
- -3.62,
- -3.44,
- -3.05,
- -2.63,
- -1.69,
- -0.25,
- -0.3,
- -4.22,
- -9.85,
- -10.01,
- -10.78,
- -10.92,
- -10.31,
- -9.63,
- -9.62,
- -9.66,
- -9.07,
- -8.79,
- -8.54,
- -8.13,
- -8.04,
- -8.65,
- -8.74,
- -8.84,
- -8.68,
- -8.66,
- -9.0,
- -8.97,
- -8.46,
- -7.63,
- -6.6,
- -5.25,
- -3.55,
- -2.08,
- -0.48,
- 1.6,
- 2.75,
- 3.98,
- 5.52,
- 6.53,
- 6.56,
- 7.97,
- 9.03,
- 8.24,
- 7.77,
- 8.32,
- 8.65,
- 8.27,
- 6.86,
- 5.08,
- 3.47,
- 1.15,
- -2.68,
- -6.25,
- -8.36,
- -8.73,
- -7.91,
- -6.6,
- -4.58,
- -1.84,
- 0.07,
- 1.56,
- 2.67,
- 3.36,
- 4.3,
- 5.94,
- 7.75,
- 9.15,
- 9.87,
- 10.88,
- 11.98,
- 12.53,
- 12.91,
- 12.92,
- 2.27,
- -6.57,
- -14.38,
- -14.54,
- -13.94,
- -13.12,
- -12.65,
- -11.86,
- -10.23,
- -9.75,
- -12.27,
- -12.26,
- -10.32,
- -10.19,
- -9.45,
- -8.41,
- -7.89,
- -7.44,
- -6.98,
- -6.22,
- -5.6,
- -5.11,
- -4.64,
- -5.21,
- -5.05,
- -4.42,
- -5.92,
- -10.13,
- -10.45,
- -10.94,
- -12.2,
- -12.59,
- -11.69,
- -12.1,
- -11.62,
- -10.17,
- -8.93,
- -7.57,
- -5.85,
- -3.83,
- -1.66,
- 0.48,
- 2.62,
- 4.04,
- 5.09,
- 6.3,
- 7.91,
- 9.69,
- 11.91,
- 13.95,
- 15.45,
- 16.63,
- 17.63,
- 17.92,
- 17.19,
- 16.05,
- 14.88,
- 13.58,
- 12.67,
- 12.43,
- 11.56,
- 10.14,
- 8.43,
- 6.94,
- 6.1,
- 6.18,
- 6.08,
- 6.08,
- 5.58,
- 4.86,
- 4.21,
- 3.66,
- 3.53,
- 2.49,
- 1.14,
- -0.18,
- -1.28,
- -1.55,
- -1.56,
- -1.2,
- -0.44,
- 0.52,
- 0.31,
- -0.18,
- -0.28,
- -1.7,
- -6.3,
- -12.69,
- -10.96,
- -7.76,
- -6.33,
- -9.17,
- -9.79,
- -6.83,
- -3.14,
- -0.27,
- 2.2,
- 1.66,
- -0.77,
- -8.59,
- -17.35,
- -18.84,
- -14.59,
- -13.64,
- -11.52,
- -10.05,
- -7.61,
- -6.47,
- -5.31,
- -3.94,
- -2.28,
- -0.9,
- 0.4,
- 0.09,
- -0.45,
- 0.2,
- 0.7,
- 1.0,
- 1.18,
- 1.03,
- 0.69,
- 0.52,
- 0.36,
- 0.25,
- 0.09,
- -0.16,
- -0.25,
- -0.26,
- 0.04,
- 0.75,
- 1.4,
- 2.04,
- 2.33,
- 2.2,
- 2.62,
- 2.92,
- 3.3,
- 3.65,
- 3.02,
- 3.08,
- 3.19,
- 2.03,
- 1.18,
- 0.1,
- -1.36,
- -3.12,
- -3.03,
- -2.65,
- -3.14,
- -1.15,
- 0.48,
- -0.18,
- -3.95,
- 0.47,
- -3.94,
- 1.53,
- -0.29,
- -3.14,
- -3.62,
- -3.9,
- -3.28,
- -2.66,
- -1.86,
- -1.24,
- -0.81,
- -0.33,
- -0.1,
- 0.59,
- 2.99,
- 3.21,
- 3.74,
- 5.1,
- 7.48,
- 7.5,
- 7.78,
- 7.1,
- 3.04,
- 3.3,
- 5.2,
- 6.18,
- 7.7,
- 9.45,
- 9.19,
- 8.33,
- 7.99,
- 6.85,
- 5.36,
- 4.27,
- 2.79,
- 3.19,
- 4.65,
- 6.35,
- -1.23,
- 1.7,
- -0.47,
- -6.86,
- -6.67,
- -6.07,
- -6.05,
- -6.23,
- -5.29,
- -4.3,
- -4.36,
- -4.49,
- -4.3,
- -4.17,
- -4.16,
- -3.31,
- -1.15,
- -0.18,
- 0.84,
- 1.86,
- 2.99,
- 4.0,
- 3.85,
- 2.76,
- 1.58,
- 1.13,
- 0.7,
- 0.11,
- -0.87,
- -1.28,
- -1.65,
- -1.88,
- -4.94,
- -5.03,
- -4.97,
- -4.87,
- -5.54,
- -8.08,
- -13.0,
- -16.98,
- -18.63,
- -19.0,
- -17.6,
- -15.65,
- -13.13,
- -10.81,
- -8.83,
- -6.5,
- -4.6,
- -3.31,
- -2.17,
- -0.84,
- 1.05,
- 2.08,
- 1.13,
- 2.21,
- 3.69,
- 4.46,
- 4.83,
- 5.18,
- 6.19,
- 7.46,
- 6.87,
- 5.47,
- 4.4,
- 4.11,
- 4.16,
- 3.91,
- 4.43,
- 5.11,
- 2.53,
- -1.52,
- -1.26,
- -1.35,
- -2.38,
- -2.4,
- -0.82,
- 0.27,
- 0.1,
- -0.4,
- -0.54,
- -2.68,
- -3.86,
- -1.94,
- 0.21,
- 0.96,
- -0.64,
- -2.38,
- -3.08,
- -3.15,
- -3.73,
- -3.93,
- -4.26,
- -4.35,
- -4.34,
- -4.14,
- -3.65,
- -3.31,
- -3.44,
- -3.3,
- -2.94,
- -2.82,
- -1.19,
- -2.06,
- -4.26,
- -7.49,
- -9.96,
- -10.73,
- -10.55,
- -10.27,
- -9.64,
- -9.06,
- -8.94,
- -8.76,
- -9.04,
- -10.08,
- -10.56,
- -10.37,
- -10.21,
- -10.2,
- -10.0,
- -10.0,
- -9.65,
- -8.8,
- -7.85,
- -6.8,
- -5.01,
- -3.06,
- -1.3,
- 0.34,
- 1.7,
- 3.1,
- 4.79,
- 6.09,
- 6.99,
- 8.05,
- 9.21,
- 9.32,
- 8.91,
- 8.87,
- 8.92,
- 8.99,
- 8.27,
- 6.67,
- 4.67,
- 1.82,
- -1.63,
- -5.12,
- -8.15,
- -9.9,
- -9.8,
- -8.44,
- -6.3,
- -3.85,
- -1.26,
- 0.29,
- 1.5,
- 2.63,
- 3.59,
- 4.99,
- 6.73,
- 7.91,
- 9.2,
- 10.53,
- 11.94,
- 12.9,
- 13.99,
- 13.82,
- 9.99,
- -7.0,
- -11.46,
- -14.47,
- -12.73,
- -13.41,
- -12.42,
- -12.27,
- -11.54,
- -11.18,
- -12.96,
- -12.41,
- -11.25,
- -10.85,
- -9.49,
- -8.06,
- -7.08,
- -6.6,
- -6.53,
- -6.22,
- -5.42,
- -4.85,
- -4.28,
- -4.17,
- -4.61,
- -4.47,
- -4.8,
- -7.23,
- -11.38,
- -12.54,
- -13.52,
- -14.48,
- -14.22,
- -12.97,
- -11.84,
- -10.6,
- -9.26,
- -7.73,
- -5.91,
- -3.69,
- -1.69,
- 0.06,
- 1.96,
- 3.42,
- 4.54,
- 6.02,
- 7.75,
- 9.72,
- 11.95,
- 14.08,
- 15.84,
- 17.33,
- 17.99,
- 18.4,
- 17.55,
- 16.52,
- 14.98,
- 14.07,
- 13.31,
- 12.45,
- 11.9,
- 11.09,
- 9.7,
- 8.01,
- 6.49,
- 6.1,
- 6.27,
- 6.47,
- 6.29,
- 5.8,
- 5.0,
- 4.22,
- 3.7,
- 2.88,
- 1.66,
- 0.55,
- -0.15,
- -0.93,
- -1.25,
- -1.41,
- -1.11,
- 0.11,
- 1.16,
- 0.87,
- -1.43,
- -3.2,
- -5.46,
- -12.9,
- -10.26,
- -8.39,
- -9.69,
- -11.59,
- -8.55,
- -5.18,
- -1.38,
- 2.36,
- 4.19,
- 5.62,
- -4.55,
- -14.85,
- -22.77,
- -19.17,
- -16.85,
- -14.53,
- -12.01,
- -9.62,
- -8.17,
- -7.1,
- -5.96,
- -4.94,
- -3.81,
- -2.08,
- -0.93,
- -0.24,
- -0.36,
- -0.36,
- -0.66,
- -0.67,
- -0.39,
- -0.2,
- -0.07,
- -0.03,
- -0.02,
- -0.34,
- -0.63,
- -0.88,
- -0.97,
- -1.13,
- -1.29,
- -1.07,
- -0.49,
- 0.13,
- 0.21,
- 0.39,
- 0.7,
- 1.28,
- 1.53,
- 2.43,
- 3.57,
- 4.51,
- 4.67,
- 3.46,
- 1.37,
- -1.2,
- -2.35,
- -3.5,
- -3.38,
- -3.07,
- -3.76,
- -2.46,
- -2.34,
- -0.46,
- -1.68,
- -0.16,
- 0.11,
- -0.55,
- -1.48,
- -1.38,
- -2.71,
- -2.98,
- -2.92,
- -2.42,
- -1.8,
- -1.62,
- -1.33,
- -0.76,
- 0.35,
- 1.04,
- 2.39,
- 3.71,
- 5.14,
- 5.64,
- 6.03,
- 6.17,
- 6.81,
- 6.66,
- 3.9,
- 2.01,
- 2.81,
- 4.39,
- 6.12,
- 7.5,
- 8.06,
- 5.8,
- 4.87,
- 4.91,
- 3.9,
- 2.55,
- 0.4,
- 1.25,
- 1.95,
- 2.85,
- 5.29,
- -4.67,
- -5.56,
- -4.93,
- -5.43,
- -5.62,
- -5.55,
- -5.23,
- -5.09,
- -4.47,
- -4.09,
- -3.45,
- -2.91,
- -2.28,
- -1.86,
- -1.73,
- -1.47,
- -0.3,
- 0.04,
- 0.72,
- 2.68,
- 4.19,
- 4.53,
- 4.56,
- 4.46,
- 3.89,
- 2.65,
- 0.66,
- -1.02,
- -2.47,
- -3.54,
- -4.42,
- -5.63,
- -5.79,
- -5.48,
- -5.34,
- -6.65,
- -10.11,
- -14.0,
- -17.62,
- -18.83,
- -18.17,
- -16.55,
- -14.21,
- -11.99,
- -9.63,
- -7.5,
- -5.46,
- -3.42,
- -1.84,
- -1.1,
- -0.36,
- 0.49,
- 1.46,
- 2.4,
- 2.93,
- 3.36,
- 4.3,
- 4.7,
- 4.95,
- 5.48,
- 5.22,
- 4.26,
- 4.27,
- 3.75,
- 3.95,
- 4.07,
- 3.24,
- 1.81,
- 2.54,
- 3.09,
- 2.25,
- -1.38,
- -2.2,
- -1.82,
- -1.1,
- 1.83,
- 3.21,
- -0.83,
- -3.13,
- -3.67,
- -4.79,
- -5.09,
- -4.6,
- -3.78,
- -2.74,
- -2.27,
- -2.1,
- -2.02,
- -2.39,
- -2.92,
- -3.02,
- -2.54,
- -2.18,
- -1.97,
- -1.68,
- -1.44,
- -1.46,
- -1.75,
- -2.23,
- -2.91,
- -3.64,
- -3.23,
- -3.88,
- -4.37,
- -4.99,
- -6.62,
- -8.33,
- -9.16,
- -9.93,
- -10.29,
- -9.74,
- -9.83,
- -10.14,
- -10.53,
- -10.92,
- -11.35,
- -11.93,
- -12.26,
- -11.16,
- -10.26,
- -10.79,
- -10.76,
- -9.26,
- -8.5,
- -7.76,
- -6.52,
- -4.74,
- -3.04,
- -1.24,
- -0.09,
- 1.16,
- 2.94,
- 4.85,
- 6.05,
- 7.34,
- 8.65,
- 9.63,
- 9.68,
- 10.42,
- 9.72,
- 9.74,
- 9.07,
- 7.38,
- 5.34,
- 2.85,
- -0.6,
- -4.6,
- -7.89,
- -10.14,
- -11.05,
- -9.82,
- -7.9,
- -5.72,
- -3.35,
- -1.33,
- 0.34,
- 1.84,
- 2.65,
- 3.58,
- 5.09,
- 6.86,
- 8.29,
- 9.86,
- 11.33,
- 12.67,
- 13.47,
- 15.34,
- 14.91,
- -3.66,
- -10.81,
- -11.54,
- -12.96,
- -12.65,
- -12.08,
- -12.38,
- -12.08,
- -13.27,
- -14.34,
- -13.31,
- -12.1,
- -11.0,
- -9.81,
- -8.3,
- -7.31,
- -6.91,
- -6.76,
- -5.89,
- -4.68,
- -4.31,
- -4.12,
- -3.81,
- -3.64,
- -4.33,
- -5.24,
- -6.44,
- -10.26,
- -14.71,
- -15.88,
- -16.49,
- -15.42,
- -13.96,
- -12.34,
- -11.03,
- -9.59,
- -7.92,
- -5.95,
- -3.97,
- -2.2,
- -0.39,
- 1.41,
- 3.01,
- 4.57,
- 6.16,
- 8.04,
- 10.03,
- 12.29,
- 14.43,
- 16.35,
- 17.88,
- 18.72,
- 18.76,
- 17.64,
- 16.25,
- 15.55,
- 14.75,
- 13.73,
- 12.84,
- 11.9,
- 10.69,
- 9.66,
- 8.27,
- 7.28,
- 6.21,
- 5.91,
- 5.92,
- 5.97,
- 6.03,
- 6.0,
- 5.76,
- 5.29,
- 4.74,
- 3.69,
- 2.43,
- 1.73,
- 1.1,
- 0.27,
- -0.64,
- -0.66,
- -0.21,
- 0.48,
- 0.77,
- -1.98,
- -6.44,
- -7.14,
- -9.92,
- -9.03,
- -10.03,
- -12.76,
- -10.75,
- -7.98,
- -4.84,
- -1.3,
- 3.08,
- 4.19,
- -1.36,
- -5.52,
- -13.1,
- -15.96,
- -16.75,
- -15.6,
- -13.84,
- -12.28,
- -10.27,
- -8.95,
- -7.78,
- -7.05,
- -6.32,
- -4.77,
- -4.12,
- -4.26,
- -3.43,
- -2.82,
- -1.14,
- -0.76,
- -0.85,
- -1.24,
- -1.48,
- -1.52,
- -1.52,
- -1.52,
- -1.4,
- -1.45,
- -1.57,
- -1.74,
- -1.65,
- -0.85,
- -0.12,
- 0.39,
- 0.38,
- 0.73,
- 0.97,
- 1.76,
- 3.78,
- 4.02,
- 3.81,
- 4.32,
- 4.76,
- 5.42,
- 5.43,
- 4.24,
- 0.19,
- -2.49,
- -3.75,
- -3.7,
- -3.13,
- -3.56,
- -3.33,
- -2.81,
- -1.43,
- -0.42,
- 0.02,
- -0.51,
- 1.17,
- -0.4,
- -1.9,
- -2.39,
- -2.64,
- -2.85,
- -2.67,
- -2.38,
- -2.25,
- -1.94,
- -1.34,
- 0.07,
- 1.54,
- 1.99,
- 3.1,
- 3.73,
- 4.09,
- 4.76,
- 5.49,
- 6.11,
- 6.78,
- 6.16,
- 3.0,
- 1.08,
- 2.07,
- 3.4,
- 5.15,
- 5.82,
- 5.73,
- 5.96,
- 4.87,
- 3.54,
- 3.42,
- 1.95,
- -0.02,
- 1.54,
- 0.41,
- -0.36,
- -1.04,
- -3.53,
- -4.39,
- -4.19,
- -4.12,
- -3.92,
- -4.41,
- -4.35,
- -4.53,
- -5.19,
- -4.27,
- -2.89,
- -2.15,
- -1.34,
- -0.59,
- 0.11,
- 0.29,
- 0.5,
- 1.06,
- 2.97,
- 4.06,
- 4.53,
- 5.06,
- 5.74,
- 5.35,
- 3.4,
- 1.2,
- -1.39,
- -3.41,
- -4.35,
- -4.9,
- -5.66,
- -6.12,
- -6.11,
- -6.4,
- -9.15,
- -12.5,
- -14.87,
- -16.48,
- -16.95,
- -16.08,
- -14.59,
- -12.23,
- -10.0,
- -8.74,
- -7.57,
- -5.97,
- -4.09,
- -2.75,
- -1.97,
- -0.87,
- 0.19,
- 1.02,
- 1.5,
- 1.96,
- 2.39,
- 3.3,
- 4.05,
- 4.38,
- 4.56,
- 3.2,
- 3.08,
- 3.64,
- 3.7,
- 3.81,
- 4.09,
- 3.24,
- 2.37,
- 1.11,
- 0.69,
- 0.18,
- 0.39,
- 0.12,
- -0.05,
- 0.57,
- 0.87,
- 6.12,
- 2.54,
- -4.77,
- -6.71,
- -7.29,
- -6.11,
- -5.09,
- -4.39,
- -4.05,
- -3.72,
- -3.02,
- -2.16,
- -1.4,
- -0.96,
- -1.04,
- -1.24,
- -1.19,
- -0.87,
- -0.07,
- 0.87,
- 1.3,
- 0.94,
- -0.14,
- -1.35,
- -2.3,
- -2.88,
- -3.02,
- -3.62,
- -4.38,
- -5.3,
- -6.97,
- -8.54,
- -9.65,
- -10.3,
- -10.9,
- -10.67,
- -10.57,
- -10.74,
- -11.36,
- -11.83,
- -12.69,
- -13.21,
- -13.03,
- -12.21,
- -11.93,
- -11.66,
- -10.33,
- -9.2,
- -8.24,
- -7.26,
- -5.88,
- -4.18,
- -2.54,
- -0.99,
- 0.16,
- 1.35,
- 2.95,
- 4.38,
- 5.98,
- 7.79,
- 9.02,
- 10.01,
- 10.9,
- 11.04,
- 10.81,
- 9.59,
- 8.74,
- 7.16,
- 4.91,
- 1.55,
- -2.89,
- -6.76,
- -9.92,
- -12.25,
- -12.74,
- -10.79,
- -8.2,
- -5.32,
- -2.66,
- -0.51,
- 0.82,
- 1.49,
- 2.04,
- 3.45,
- 5.35,
- 6.94,
- 8.76,
- 10.33,
- 11.65,
- 12.73,
- 13.54,
- 14.44,
- 14.65,
- -14.03,
- -11.03,
- -11.91,
- -11.51,
- -11.54,
- -11.87,
- -12.23,
- -14.88,
- -15.62,
- -15.61,
- -13.5,
- -11.31,
- -9.33,
- -7.76,
- -7.18,
- -7.02,
- -6.29,
- -5.6,
- -5.21,
- -4.9,
- -4.34,
- -3.43,
- -2.47,
- -3.26,
- -4.65,
- -6.58,
- -9.75,
- -13.45,
- -15.81,
- -17.02,
- -16.21,
- -14.46,
- -12.7,
- -11.5,
- -10.19,
- -8.21,
- -6.32,
- -4.66,
- -2.88,
- -0.87,
- 1.03,
- 2.97,
- 5.04,
- 6.69,
- 8.92,
- 10.82,
- 12.95,
- 15.07,
- 17.08,
- 18.34,
- 19.14,
- 18.76,
- 17.6,
- 16.41,
- 15.56,
- 14.51,
- 13.53,
- 12.64,
- 11.88,
- 10.9,
- 9.61,
- 8.52,
- 7.16,
- 6.28,
- 5.78,
- 5.56,
- 5.77,
- 5.91,
- 6.17,
- 6.41,
- 6.27,
- 5.66,
- 4.55,
- 3.07,
- 1.41,
- 0.13,
- -0.03,
- -0.06,
- 0.25,
- 0.01,
- -0.55,
- -1.44,
- -3.01,
- -8.19,
- -8.55,
- -8.85,
- -10.22,
- -12.4,
- -12.01,
- -9.55,
- -7.68,
- -5.4,
- -2.05,
- -0.38,
- 0.71,
- -6.0,
- -6.34,
- -9.53,
- -11.97,
- -13.05,
- -13.06,
- -12.98,
- -12.01,
- -10.7,
- -9.39,
- -8.27,
- -7.89,
- -6.82,
- -5.77,
- -4.78,
- -3.93,
- -4.35,
- -3.9,
- -2.1,
- -2.21,
- -2.02,
- -1.9,
- -1.86,
- -1.67,
- -1.54,
- -1.66,
- -1.99,
- -1.81,
- -1.97,
- -2.09,
- -2.1,
- -1.29,
- -0.51,
- 0.36,
- 1.39,
- 2.09,
- 2.47,
- 2.87,
- 3.0,
- 4.35,
- 4.48,
- 4.52,
- 4.75,
- 4.64,
- 4.53,
- 4.26,
- 3.61,
- 2.81,
- 2.02,
- 1.17,
- 0.23,
- -1.49,
- -2.44,
- -4.66,
- 0.2,
- 1.01,
- -0.51,
- 0.38,
- 0.01,
- -0.74,
- -1.48,
- -1.7,
- -2.06,
- -2.58,
- -3.18,
- -3.57,
- -3.28,
- -3.42,
- -2.75,
- -1.51,
- 0.9,
- 2.4,
- 2.75,
- 3.57,
- 3.98,
- 4.38,
- 4.9,
- 5.64,
- 6.26,
- 6.28,
- 5.68,
- 3.71,
- 1.29,
- 1.02,
- 2.73,
- 4.22,
- 5.14,
- 5.24,
- 4.23,
- 2.76,
- 2.03,
- 1.91,
- 0.76,
- -1.37,
- -1.5,
- -1.17,
- -2.05,
- -3.23,
- -4.03,
- -4.45,
- -4.26,
- -4.12,
- -4.08,
- -4.46,
- -4.32,
- -3.47,
- -3.47,
- -3.45,
- -2.71,
- -1.17,
- -0.16,
- 0.47,
- 0.47,
- 0.77,
- 1.42,
- 3.0,
- 4.4,
- 4.84,
- 6.4,
- 7.82,
- 8.55,
- 7.27,
- 4.03,
- 0.01,
- -2.97,
- -4.19,
- -5.01,
- -5.76,
- -5.95,
- -7.17,
- -9.72,
- -11.0,
- -11.66,
- -12.52,
- -13.4,
- -13.81,
- -12.94,
- -11.35,
- -9.98,
- -8.54,
- -7.29,
- -6.43,
- -5.41,
- -4.29,
- -3.22,
- -2.31,
- -0.87,
- -0.12,
- 0.02,
- 0.22,
- 0.38,
- 0.43,
- 1.34,
- 2.26,
- 3.28,
- 3.4,
- 1.9,
- 2.24,
- 3.12,
- 3.6,
- 4.31,
- 4.48,
- 4.26,
- 2.13,
- 0.88,
- -0.47,
- -0.56,
- -0.42,
- -1.45,
- -1.73,
- -0.68,
- 0.77,
- 2.01,
- 2.82,
- 1.52,
- -1.87,
- -4.43,
- -5.99,
- -5.68,
- -5.05,
- -4.33,
- -3.66,
- -2.78,
- -1.82,
- -1.06,
- -0.5,
- -0.55,
- -1.1,
- -1.27,
- -1.16,
- -0.23,
- 1.15,
- 2.31,
- 3.06,
- 2.71,
- 1.18,
- -0.78,
- -2.36,
- -3.1,
- -3.28,
- -3.48,
- -4.77,
- -5.94,
- -6.92,
- -8.08,
- -8.94,
- -10.22,
- -10.95,
- -11.52,
- -11.33,
- -12.15,
- -13.1,
- -13.6,
- -14.28,
- -14.42,
- -14.52,
- -14.83,
- -14.16,
- -12.71,
- -10.88,
- -9.34,
- -8.01,
- -6.62,
- -5.1,
- -3.39,
- -1.71,
- -0.32,
- 0.87,
- 2.06,
- 3.22,
- 4.92,
- 7.08,
- 8.73,
- 10.06,
- 11.12,
- 11.39,
- 10.92,
- 9.73,
- 8.48,
- 7.54,
- 6.03,
- 3.81,
- -0.2,
- -5.04,
- -9.08,
- -11.75,
- -12.74,
- -11.93,
- -9.95,
- -7.14,
- -4.08,
- -1.4,
- 0.31,
- 0.85,
- 0.94,
- 1.45,
- 3.18,
- 5.27,
- 7.51,
- 9.35,
- 10.64,
- 11.69,
- 12.27,
- 12.4,
- 12.04,
- 13.65,
- -11.55,
- -11.14,
- -12.17,
- -12.75,
- -13.12,
- -14.54,
- -17.05,
- -16.95,
- -15.41,
- -13.09,
- -11.88,
- -10.23,
- -8.22,
- -6.99,
- -5.99,
- -5.5,
- -5.6,
- -5.68,
- -5.24,
- -5.17,
- -4.17,
- -2.68,
- -2.49,
- -5.07,
- -6.97,
- -9.32,
- -12.59,
- -15.16,
- -16.05,
- -15.86,
- -14.25,
- -13.14,
- -11.99,
- -10.37,
- -8.52,
- -6.78,
- -5.17,
- -3.21,
- -1.07,
- 1.07,
- 3.53,
- 5.71,
- 7.7,
- 9.69,
- 11.87,
- 13.75,
- 15.68,
- 17.39,
- 18.37,
- 18.85,
- 18.34,
- 17.61,
- 16.45,
- 15.24,
- 14.16,
- 13.25,
- 12.38,
- 11.39,
- 10.21,
- 8.94,
- 7.79,
- 6.95,
- 5.98,
- 5.4,
- 5.16,
- 5.12,
- 5.4,
- 5.81,
- 6.2,
- 6.25,
- 5.82,
- 4.69,
- 3.84,
- 1.17,
- -1.0,
- -0.9,
- -0.19,
- 0.75,
- -1.2,
- -3.98,
- -4.63,
- -5.62,
- -7.57,
- -8.84,
- -12.69,
- -12.78,
- -11.94,
- -9.69,
- -8.79,
- -7.6,
- -5.74,
- -3.09,
- -2.78,
- -4.52,
- -5.65,
- -9.11,
- -10.31,
- -10.44,
- -11.02,
- -11.78,
- -11.69,
- -11.42,
- -10.53,
- -9.7,
- -8.83,
- -8.16,
- -7.25,
- -6.83,
- -5.25,
- -4.46,
- -4.91,
- -5.05,
- -3.71,
- -2.96,
- -2.51,
- -2.13,
- -1.88,
- -1.83,
- -1.8,
- -1.78,
- -1.86,
- -2.1,
- -2.16,
- -2.21,
- -1.92,
- -1.76,
- -1.59,
- -1.58,
- -0.97,
- 0.43,
- 0.67,
- 0.96,
- 1.2,
- 2.33,
- 3.47,
- 4.5,
- 4.87,
- 4.87,
- 4.85,
- 4.69,
- 4.09,
- 3.45,
- 2.88,
- 2.21,
- 1.72,
- 0.89,
- -0.88,
- -3.59,
- -1.03,
- 0.3,
- -0.24,
- 0.25,
- 0.06,
- 0.44,
- -0.44,
- -0.72,
- -0.89,
- -1.22,
- -2.35,
- -3.5,
- -4.05,
- -3.89,
- -2.21,
- -0.02,
- 1.69,
- 2.86,
- 3.35,
- 3.34,
- 3.95,
- 4.79,
- 5.03,
- 5.55,
- 5.86,
- 5.61,
- 5.02,
- 4.18,
- 2.27,
- -0.45,
- -0.85,
- -0.4,
- 1.22,
- 2.29,
- 2.3,
- 2.21,
- 1.63,
- 1.92,
- 1.37,
- -0.61,
- -2.57,
- -3.19,
- -3.06,
- -2.89,
- -3.26,
- -4.18,
- -4.52,
- -4.2,
- -4.03,
- -3.69,
- -3.73,
- -3.55,
- -3.39,
- -3.82,
- -3.25,
- -1.9,
- -0.54,
- -0.36,
- 0.31,
- 1.06,
- 1.28,
- 2.5,
- 4.01,
- 4.97,
- 6.77,
- 9.27,
- 11.05,
- 10.88,
- 7.64,
- 0.87,
- -2.77,
- -4.14,
- -4.98,
- -6.86,
- -8.61,
- -9.82,
- -10.16,
- -10.48,
- -11.09,
- -11.46,
- -11.76,
- -11.71,
- -11.02,
- -9.91,
- -8.92,
- -7.91,
- -6.92,
- -5.73,
- -4.32,
- -3.14,
- -2.37,
- -1.68,
- -0.67,
- -0.31,
- -0.44,
- -0.46,
- -0.73,
- -1.04,
- -0.43,
- 1.07,
- 2.48,
- 2.81,
- 1.42,
- 1.67,
- 2.75,
- 3.55,
- 4.08,
- 4.17,
- 3.8,
- 3.1,
- 2.33,
- 1.94,
- 0.47,
- 0.87,
- 1.16,
- 0.16,
- -0.69,
- -0.52,
- -1.29,
- -1.33,
- -0.87,
- -1.22,
- -2.61,
- -3.88,
- -4.45,
- -4.14,
- -3.32,
- -2.34,
- -1.27,
- -0.26,
- 0.57,
- 0.89,
- 0.79,
- 0.45,
- -0.32,
- -0.52,
- 0.36,
- 2.02,
- 4.1,
- 5.07,
- 4.36,
- 2.14,
- -0.56,
- -2.68,
- -3.92,
- -4.51,
- -4.86,
- -5.11,
- -5.19,
- -6.19,
- -7.08,
- -8.2,
- -9.09,
- -9.5,
- -9.98,
- -11.23,
- -12.36,
- -12.51,
- -13.45,
- -14.16,
- -14.84,
- -15.63,
- -15.19,
- -14.74,
- -14.51,
- -13.38,
- -11.51,
- -9.44,
- -7.5,
- -5.87,
- -4.4,
- -2.9,
- -1.29,
- 0.01,
- 1.15,
- 2.14,
- 3.15,
- 5.57,
- 7.85,
- 9.33,
- 10.5,
- 11.0,
- 10.55,
- 9.66,
- 8.43,
- 8.07,
- 7.41,
- 5.59,
- 2.35,
- -2.93,
- -7.89,
- -11.63,
- -13.28,
- -13.01,
- -11.2,
- -8.52,
- -5.41,
- -2.48,
- -0.67,
- -0.03,
- -0.36,
- -0.19,
- 1.26,
- 3.55,
- 5.89,
- 7.86,
- 9.41,
- 10.12,
- 10.66,
- 10.72,
- 10.29,
- 10.44,
- 12.21,
- 0.04,
- -13.68,
- -13.55,
- -15.39,
- -16.96,
- -16.83,
- -15.53,
- -13.31,
- -11.52,
- -10.79,
- -10.16,
- -7.82,
- -6.81,
- -6.02,
- -5.42,
- -4.76,
- -4.56,
- -5.12,
- -5.08,
- -4.38,
- -4.24,
- -3.6,
- -4.25,
- -7.43,
- -9.37,
- -12.12,
- -15.1,
- -16.4,
- -16.35,
- -15.43,
- -13.45,
- -12.35,
- -10.82,
- -9.03,
- -7.3,
- -5.37,
- -3.11,
- -0.88,
- 1.57,
- 4.23,
- 6.51,
- 8.65,
- 10.64,
- 12.65,
- 14.4,
- 15.82,
- 17.01,
- 17.86,
- 18.17,
- 17.77,
- 17.3,
- 15.87,
- 14.77,
- 13.85,
- 13.04,
- 11.97,
- 10.9,
- 9.78,
- 8.89,
- 7.87,
- 6.62,
- 5.24,
- 4.53,
- 4.08,
- 3.96,
- 4.14,
- 4.56,
- 5.24,
- 6.05,
- 6.5,
- 6.67,
- 5.88,
- 3.83,
- 0.69,
- -1.41,
- 0.66,
- 1.16,
- -1.86,
- -5.92,
- -7.25,
- -8.48,
- -7.89,
- -8.3,
- -8.82,
- -9.43,
- -8.73,
- -7.39,
- -6.76,
- -5.87,
- -5.75,
- -4.32,
- -3.67,
- -8.28,
- -8.03,
- -9.28,
- -11.45,
- -11.72,
- -11.36,
- -11.36,
- -11.31,
- -10.96,
- -10.37,
- -9.01,
- -8.92,
- -8.67,
- -8.27,
- -7.12,
- -5.67,
- -5.16,
- -4.58,
- -4.41,
- -4.21,
- -4.05,
- -3.77,
- -3.57,
- -4.16,
- -4.06,
- -3.23,
- -2.46,
- -2.5,
- -2.55,
- -2.17,
- -2.03,
- -1.46,
- -0.62,
- 0.01,
- 0.58,
- 1.4,
- 2.35,
- 3.08,
- 2.75,
- 1.77,
- 1.35,
- 1.19,
- 1.29,
- 1.64,
- 1.99,
- 2.81,
- 3.79,
- 4.34,
- 4.22,
- 3.82,
- 3.26,
- 2.63,
- 2.08,
- 1.01,
- -0.33,
- -4.2,
- -0.63,
- 2.59,
- -0.83,
- -0.19,
- 0.58,
- 0.51,
- 0.48,
- 1.16,
- 0.83,
- -0.77,
- -2.12,
- -2.34,
- -1.55,
- -0.54,
- 0.87,
- 2.34,
- 3.22,
- 2.73,
- 2.53,
- 2.76,
- 3.3,
- 3.89,
- 4.58,
- 5.04,
- 5.37,
- 5.18,
- 4.9,
- 4.73,
- 3.49,
- 0.15,
- -2.09,
- -2.5,
- -1.14,
- -0.07,
- 0.68,
- 2.54,
- -0.47,
- -1.39,
- -2.43,
- -3.55,
- -3.8,
- -3.13,
- -2.92,
- -3.44,
- -3.92,
- -4.44,
- -5.04,
- -5.17,
- -4.5,
- -3.73,
- -3.72,
- -4.22,
- -3.57,
- -2.63,
- -2.14,
- -1.58,
- -1.05,
- -0.31,
- 0.35,
- 0.74,
- 1.7,
- 3.37,
- 3.81,
- 6.42,
- 9.18,
- 10.97,
- 11.87,
- 12.61,
- 5.69,
- -0.33,
- -2.39,
- -4.75,
- -5.46,
- -7.66,
- -8.71,
- -8.82,
- -8.69,
- -8.87,
- -9.51,
- -10.27,
- -10.79,
- -10.54,
- -9.52,
- -8.05,
- -6.56,
- -5.22,
- -4.2,
- -3.45,
- -2.8,
- -2.04,
- -1.28,
- -0.89,
- -0.91,
- -0.85,
- -0.78,
- -1.01,
- -1.98,
- -2.11,
- -0.93,
- 1.32,
- 2.06,
- 0.91,
- 1.09,
- 2.34,
- 3.08,
- 3.38,
- 3.86,
- 4.0,
- 3.41,
- 2.48,
- 1.45,
- 1.15,
- 1.54,
- 1.2,
- -0.95,
- -1.37,
- -1.68,
- -2.54,
- -2.44,
- -2.43,
- -2.08,
- -2.47,
- -3.26,
- -3.8,
- -3.66,
- -3.08,
- -2.05,
- -0.96,
- -0.1,
- 0.49,
- 0.75,
- 0.89,
- 0.81,
- 0.28,
- 0.38,
- 1.22,
- 2.98,
- 4.66,
- 5.92,
- 6.13,
- 5.17,
- 3.13,
- 0.67,
- -2.04,
- -4.21,
- -5.88,
- -6.94,
- -7.64,
- -7.43,
- -7.23,
- -7.36,
- -8.26,
- -9.27,
- -9.69,
- -10.12,
- -10.76,
- -11.39,
- -12.02,
- -12.81,
- -13.81,
- -15.1,
- -16.21,
- -16.41,
- -15.59,
- -14.82,
- -13.04,
- -10.47,
- -8.17,
- -6.05,
- -4.28,
- -2.49,
- -0.81,
- 0.52,
- 1.69,
- 2.63,
- 3.63,
- 4.78,
- 6.22,
- 7.74,
- 8.78,
- 9.31,
- 9.6,
- 9.23,
- 9.63,
- 8.95,
- 8.54,
- 7.3,
- 4.34,
- -0.29,
- -6.18,
- -11.09,
- -13.13,
- -13.25,
- -11.65,
- -9.05,
- -6.27,
- -3.8,
- -2.21,
- -1.41,
- -1.19,
- -1.06,
- 0.06,
- 2.0,
- 4.28,
- 6.3,
- 7.99,
- 8.92,
- 9.14,
- 9.14,
- 8.76,
- 8.22,
- 7.48,
- 7.12,
- 5.14,
- -5.32,
- -14.31,
- -15.58,
- -15.01,
- -13.07,
- -11.76,
- -10.69,
- -9.68,
- -7.9,
- -6.72,
- -6.46,
- -6.03,
- -5.25,
- -4.22,
- -3.69,
- -3.79,
- -4.2,
- -4.83,
- -5.21,
- -5.25,
- -5.27,
- -7.55,
- -9.85,
- -11.39,
- -13.86,
- -15.76,
- -15.81,
- -15.04,
- -14.15,
- -12.5,
- -11.45,
- -9.87,
- -8.0,
- -5.7,
- -3.06,
- -0.47,
- 2.34,
- 4.84,
- 7.49,
- 9.27,
- 11.48,
- 13.36,
- 14.94,
- 16.19,
- 16.95,
- 17.31,
- 17.15,
- 17.05,
- 16.47,
- 16.0,
- 15.42,
- 14.53,
- 13.82,
- 12.91,
- 11.76,
- 10.22,
- 9.09,
- 7.56,
- 6.37,
- 4.84,
- 3.79,
- 3.19,
- 2.91,
- 3.18,
- 3.7,
- 4.47,
- 5.23,
- 5.96,
- 6.4,
- 5.27,
- 2.12,
- -1.54,
- -1.14,
- 0.95,
- -1.22,
- -5.84,
- -9.29,
- -8.41,
- -9.58,
- -9.54,
- -9.22,
- -8.14,
- -7.43,
- -7.05,
- -6.55,
- -6.04,
- -5.73,
- -4.73,
- -3.53,
- -3.5,
- -9.27,
- -9.4,
- -10.27,
- -11.99,
- -12.86,
- -12.27,
- -11.56,
- -11.48,
- -11.33,
- -10.3,
- -9.1,
- -8.58,
- -8.72,
- -8.36,
- -7.66,
- -6.81,
- -5.66,
- -5.69,
- -5.96,
- -5.92,
- -4.48,
- -4.0,
- -3.59,
- -3.25,
- -3.75,
- -4.18,
- -3.56,
- -2.79,
- -2.5,
- -2.14,
- -1.33,
- -0.67,
- 0.32,
- 1.38,
- 2.33,
- 2.84,
- 3.2,
- 3.43,
- 3.6,
- 3.57,
- 3.17,
- 2.7,
- 2.19,
- 1.88,
- 1.95,
- 2.33,
- 2.46,
- 2.24,
- 2.2,
- 2.58,
- 3.34,
- 3.58,
- 3.23,
- 2.57,
- 1.69,
- 0.69,
- -0.11,
- -1.73,
- -1.76,
- -0.19,
- -0.14,
- 0.93,
- 2.53,
- 3.04,
- 2.2,
- 2.26,
- 0.84,
- -0.19,
- -0.31,
- 0.39,
- 1.56,
- 2.66,
- 2.58,
- 1.76,
- 1.8,
- 2.65,
- 2.78,
- 2.4,
- 2.75,
- 3.09,
- 4.0,
- 4.42,
- 4.54,
- 4.5,
- 4.64,
- 4.07,
- 0.97,
- -3.19,
- -4.08,
- -3.2,
- -2.72,
- -3.5,
- -3.61,
- 1.14,
- 0.63,
- -1.63,
- -3.2,
- -3.35,
- -2.54,
- -2.12,
- -2.24,
- -3.38,
- -4.52,
- -4.55,
- -4.53,
- -4.74,
- -4.38,
- -3.93,
- -3.53,
- -3.3,
- -3.1,
- -2.56,
- -2.36,
- -2.15,
- -1.01,
- 0.19,
- -0.19,
- 1.56,
- 2.59,
- 4.18,
- 7.04,
- 9.38,
- 10.04,
- 10.36,
- 9.65,
- 6.11,
- 1.04,
- -2.3,
- -1.22,
- -3.01,
- -4.46,
- -5.49,
- -6.27,
- -7.19,
- -8.12,
- -8.62,
- -8.61,
- -8.19,
- -7.33,
- -6.34,
- -5.37,
- -4.44,
- -3.46,
- -2.5,
- -1.94,
- -1.77,
- -1.62,
- -1.42,
- -1.19,
- -0.86,
- -0.59,
- -0.68,
- -2.08,
- -3.0,
- -1.65,
- 0.01,
- 0.7,
- -0.1,
- 0.26,
- 1.71,
- 2.64,
- 2.89,
- 2.79,
- 3.27,
- 3.52,
- 3.24,
- 2.6,
- 1.72,
- 0.99,
- 0.75,
- 0.81,
- 0.4,
- -0.16,
- -0.71,
- -1.38,
- -2.24,
- -1.8,
- -1.71,
- -2.15,
- -2.92,
- -3.74,
- -3.67,
- -3.12,
- -1.63,
- -0.5,
- 0.03,
- 0.48,
- 0.42,
- 0.15,
- 0.62,
- 1.13,
- 2.02,
- 3.65,
- 5.42,
- 7.1,
- 8.13,
- 8.0,
- 6.58,
- 3.16,
- -0.72,
- -3.37,
- -5.43,
- -7.52,
- -8.6,
- -8.64,
- -8.49,
- -8.87,
- -9.15,
- -9.35,
- -9.59,
- -9.97,
- -10.65,
- -11.28,
- -11.72,
- -12.35,
- -13.95,
- -14.92,
- -15.44,
- -15.84,
- -15.94,
- -14.95,
- -13.01,
- -10.78,
- -8.35,
- -5.84,
- -3.69,
- -1.84,
- -0.17,
- 0.89,
- 1.48,
- 1.94,
- 2.7,
- 3.91,
- 5.41,
- 6.56,
- 7.32,
- 7.77,
- 8.23,
- 9.22,
- 9.58,
- 9.36,
- 8.85,
- 8.04,
- 6.24,
- 1.83,
- -5.5,
- -11.0,
- -13.68,
- -13.66,
- -11.84,
- -9.6,
- -7.31,
- -5.04,
- -3.16,
- -2.36,
- -2.35,
- -2.0,
- -1.07,
- 0.67,
- 3.04,
- 4.95,
- 6.88,
- 8.07,
- 8.24,
- 7.61,
- 6.89,
- 5.6,
- 3.58,
- 1.28,
- 0.27,
- -1.64,
- -4.2,
- -7.61,
- -10.83,
- -11.45,
- -10.88,
- -10.05,
- -9.38,
- -8.05,
- -6.87,
- -6.05,
- -5.02,
- -3.59,
- -3.16,
- -3.33,
- -3.49,
- -4.23,
- -5.73,
- -6.05,
- -5.75,
- -6.07,
- -7.54,
- -9.95,
- -12.12,
- -13.77,
- -15.33,
- -15.36,
- -14.27,
- -12.62,
- -12.1,
- -11.57,
- -10.31,
- -8.39,
- -5.82,
- -2.85,
- 0.19,
- 2.82,
- 5.48,
- 7.77,
- 9.59,
- 11.51,
- 13.55,
- 15.21,
- 16.22,
- 16.7,
- 16.69,
- 16.73,
- 16.39,
- 16.03,
- 15.69,
- 15.5,
- 15.33,
- 14.53,
- 13.25,
- 11.6,
- 9.86,
- 8.14,
- 6.91,
- 5.83,
- 4.42,
- 2.72,
- 2.18,
- 2.16,
- 2.59,
- 3.26,
- 3.87,
- 4.59,
- 5.28,
- 5.95,
- 4.05,
- -0.01,
- -1.15,
- 0.15,
- -0.77,
- -5.52,
- -11.88,
- -10.33,
- -10.1,
- -8.96,
- -8.86,
- -9.63,
- -9.17,
- -8.49,
- -8.11,
- -7.54,
- -7.2,
- -6.98,
- -6.71,
- -5.47,
- -4.23,
- -8.65,
- -10.62,
- -10.03,
- -11.76,
- -12.83,
- -12.91,
- -12.01,
- -11.83,
- -11.38,
- -10.4,
- -8.99,
- -8.1,
- -7.92,
- -7.96,
- -7.58,
- -6.63,
- -5.65,
- -5.3,
- -5.65,
- -5.68,
- -5.3,
- -4.72,
- -4.73,
- -4.61,
- -4.18,
- -4.17,
- -3.85,
- -2.97,
- -2.49,
- -2.5,
- -1.59,
- 0.02,
- 1.79,
- 2.85,
- 3.04,
- 3.3,
- 3.99,
- 4.47,
- 4.72,
- 4.67,
- 4.4,
- 4.34,
- 4.39,
- 4.52,
- 4.53,
- 4.44,
- 4.18,
- 3.8,
- 3.37,
- 2.95,
- 2.71,
- 2.67,
- 2.75,
- 2.61,
- 2.25,
- 1.77,
- 1.36,
- 0.85,
- 0.56,
- 1.03,
- 2.08,
- 3.23,
- 3.52,
- 2.48,
- 1.04,
- 0.01,
- -0.15,
- -0.01,
- 0.37,
- 1.18,
- 2.34,
- 2.68,
- 2.09,
- 1.19,
- 1.14,
- 1.98,
- 2.87,
- 2.84,
- 2.03,
- 1.65,
- 1.6,
- 1.85,
- 2.38,
- 3.3,
- 3.84,
- 3.71,
- 3.0,
- 1.02,
- -3.65,
- -5.6,
- -4.54,
- -4.2,
- -4.19,
- -3.43,
- -2.79,
- -2.68,
- -4.15,
- -4.69,
- -4.7,
- -3.73,
- -2.22,
- -1.53,
- -1.76,
- -2.91,
- -4.29,
- -4.51,
- -4.12,
- -3.75,
- -3.78,
- -3.8,
- -3.81,
- -3.89,
- -4.15,
- -3.36,
- -1.67,
- -0.83,
- -0.77,
- -0.98,
- 0.8,
- 0.51,
- 3.33,
- 5.21,
- 6.4,
- 6.9,
- 6.56,
- 5.07,
- 3.11,
- 0.96,
- -2.34,
- -3.39,
- -4.3,
- -5.01,
- -5.36,
- -5.51,
- -5.95,
- -6.39,
- -6.47,
- -6.17,
- -5.49,
- -4.56,
- -3.66,
- -2.82,
- -2.11,
- -1.68,
- -1.49,
- -1.4,
- -1.33,
- -1.23,
- -1.02,
- -0.74,
- -0.6,
- -0.92,
- -2.3,
- -3.25,
- -2.42,
- -0.99,
- -0.54,
- -1.2,
- -0.71,
- 0.8,
- 1.9,
- 1.38,
- 0.88,
- 1.73,
- 2.85,
- 3.07,
- 2.81,
- 3.03,
- 3.39,
- 3.13,
- 2.91,
- 2.72,
- 1.53,
- -0.22,
- -0.67,
- -1.48,
- -0.75,
- -0.96,
- -1.49,
- -1.43,
- -1.03,
- -0.43,
- 0.27,
- 1.04,
- 1.84,
- 2.01,
- 1.59,
- 0.47,
- 0.4,
- 0.5,
- 2.28,
- 4.29,
- 6.46,
- 8.42,
- 9.75,
- 10.22,
- 10.88,
- 11.58,
- 11.07,
- 6.82,
- 0.5,
- -4.34,
- -7.35,
- -8.7,
- -8.87,
- -9.11,
- -9.68,
- -10.09,
- -10.12,
- -10.15,
- -10.18,
- -10.41,
- -10.89,
- -10.98,
- -11.54,
- -12.76,
- -14.32,
- -14.75,
- -15.36,
- -15.27,
- -13.98,
- -12.11,
- -9.99,
- -7.67,
- -5.39,
- -3.54,
- -2.15,
- -0.83,
- 0.25,
- 1.17,
- 1.97,
- 2.55,
- 3.35,
- 3.8,
- 4.88,
- 5.99,
- 6.45,
- 6.96,
- 7.86,
- 8.79,
- 8.93,
- 8.28,
- 8.1,
- 6.51,
- 2.44,
- -5.16,
- -11.83,
- -13.48,
- -13.22,
- -11.58,
- -9.55,
- -7.48,
- -5.29,
- -3.67,
- -3.08,
- -2.63,
- -2.16,
- -1.17,
- 0.51,
- 2.19,
- 3.92,
- 5.63,
- 7.04,
- 7.37,
- 6.71,
- 5.1,
- 2.86,
- 0.39,
- -1.23,
- -3.63,
- -5.69,
- -6.13,
- -7.37,
- -9.0,
- -10.0,
- -10.48,
- -10.46,
- -10.01,
- -9.09,
- -7.78,
- -6.72,
- -5.48,
- -4.2,
- -3.36,
- -2.93,
- -3.32,
- -4.23,
- -5.22,
- -6.31,
- -7.08,
- -7.88,
- -9.21,
- -11.22,
- -12.88,
- -14.01,
- -16.13,
- -16.46,
- -15.37,
- -13.61,
- -11.9,
- -10.82,
- -9.66,
- -7.75,
- -5.13,
- -2.09,
- 0.87,
- 3.31,
- 5.65,
- 7.54,
- 9.42,
- 11.55,
- 13.63,
- 15.23,
- 16.15,
- 16.36,
- 16.46,
- 16.26,
- 16.07,
- 15.91,
- 15.95,
- 15.58,
- 15.44,
- 14.75,
- 13.34,
- 11.62,
- 9.62,
- 7.59,
- 6.12,
- 5.12,
- 4.41,
- 3.31,
- 2.41,
- 1.87,
- 1.87,
- 2.56,
- 3.43,
- 4.25,
- 5.24,
- 4.01,
- 0.5,
- -0.75,
- -0.56,
- -1.7,
- -6.9,
- -9.33,
- -7.37,
- -7.09,
- -7.29,
- -7.6,
- -8.37,
- -8.38,
- -7.95,
- -8.29,
- -8.15,
- -8.57,
- -9.11,
- -9.09,
- -8.83,
- -7.76,
- -6.63,
- -9.3,
- -12.03,
- -10.97,
- -11.77,
- -13.03,
- -12.98,
- -12.94,
- -12.24,
- -12.25,
- -12.03,
- -10.13,
- -8.88,
- -7.99,
- -7.75,
- -7.34,
- -6.83,
- -6.28,
- -5.6,
- -5.57,
- -5.79,
- -5.65,
- -5.45,
- -4.43,
- -4.63,
- -5.08,
- -4.99,
- -4.92,
- -3.94,
- -1.57,
- 0.0,
- 0.49,
- 0.8,
- 1.01,
- 1.46,
- 1.9,
- 2.38,
- 3.34,
- 3.78,
- 4.42,
- 4.98,
- 5.42,
- 5.98,
- 6.83,
- 7.65,
- 8.18,
- 8.51,
- 8.51,
- 8.26,
- 7.86,
- 7.44,
- 7.06,
- 6.89,
- 6.42,
- 5.99,
- 5.07,
- 3.54,
- 2.11,
- 1.21,
- 0.71,
- 0.88,
- 1.29,
- 1.2,
- 0.66,
- 0.22,
- -0.11,
- -0.23,
- -0.14,
- -0.03,
- -0.03,
- -0.21,
- -0.15,
- 0.19,
- 0.66,
- 1.19,
- 1.59,
- 1.74,
- 1.77,
- 1.52,
- 1.45,
- 1.27,
- 1.31,
- 1.55,
- 1.73,
- 1.63,
- 1.62,
- 1.87,
- 2.47,
- 2.33,
- 1.13,
- -3.2,
- -6.05,
- -6.06,
- -5.18,
- -5.55,
- -5.2,
- -4.64,
- -4.56,
- -4.74,
- -5.34,
- -5.22,
- -4.15,
- -2.66,
- -2.1,
- -1.86,
- -1.78,
- -2.06,
- -2.3,
- -2.41,
- -2.58,
- -3.01,
- -3.93,
- -4.89,
- -5.24,
- -4.48,
- -3.18,
- -2.24,
- -1.79,
- -1.98,
- -1.74,
- 0.02,
- -0.59,
- 0.16,
- 1.59,
- 1.92,
- 1.78,
- 1.23,
- 0.14,
- -1.17,
- -3.85,
- -4.45,
- -4.85,
- -4.93,
- -4.79,
- -4.62,
- -4.45,
- -4.26,
- -4.07,
- -3.86,
- -3.51,
- -3.03,
- -2.49,
- -2.04,
- -1.75,
- -1.65,
- -1.62,
- -1.63,
- -1.56,
- -1.31,
- -1.13,
- -0.77,
- -0.32,
- -0.43,
- -2.4,
- -4.22,
- -3.9,
- -2.53,
- -1.81,
- -1.75,
- -1.06,
- 0.33,
- 1.3,
- 0.37,
- -0.2,
- 1.36,
- 2.48,
- 0.41,
- 1.36,
- 2.77,
- 2.87,
- 2.49,
- 1.78,
- 1.0,
- 0.94,
- 1.08,
- 0.75,
- 1.25,
- 1.39,
- 0.61,
- 0.61,
- 0.9,
- 0.88,
- 0.45,
- 1.22,
- 2.33,
- 4.74,
- 6.04,
- 4.06,
- 0.63,
- 1.49,
- 2.99,
- 4.03,
- 5.58,
- 7.32,
- 9.35,
- 10.9,
- 11.31,
- 11.86,
- 13.37,
- 15.48,
- 17.4,
- 14.8,
- 2.38,
- -6.08,
- -8.72,
- -8.81,
- -8.35,
- -9.24,
- -10.44,
- -11.12,
- -11.43,
- -11.52,
- -11.57,
- -11.88,
- -12.48,
- -13.31,
- -14.42,
- -14.96,
- -14.62,
- -14.4,
- -13.5,
- -12.12,
- -10.23,
- -8.28,
- -6.23,
- -4.24,
- -2.61,
- -1.4,
- -0.33,
- 0.64,
- 1.41,
- 1.88,
- 2.12,
- 2.35,
- 2.68,
- 2.91,
- 3.96,
- 4.72,
- 5.09,
- 5.9,
- 7.06,
- 7.79,
- 7.36,
- 6.99,
- 5.98,
- 1.62,
- -7.27,
- -12.52,
- -12.61,
- -11.41,
- -10.19,
- -8.44,
- -6.5,
- -4.7,
- -3.42,
- -2.78,
- -2.25,
- -1.24,
- -0.28,
- 0.7,
- 1.84,
- 3.29,
- 4.67,
- 5.59,
- 6.17,
- 5.97,
- 4.42,
- 2.18,
- -0.57,
- -3.94,
- -5.36,
- -6.09,
- -7.43,
- -8.25,
- -7.97,
- -8.57,
- -9.56,
- -10.35,
- -10.41,
- -9.58,
- -8.24,
- -6.36,
- -4.89,
- -3.52,
- -2.47,
- -2.34,
- -2.98,
- -3.74,
- -4.76,
- -6.16,
- -7.59,
- -8.82,
- -10.6,
- -12.86,
- -14.75,
- -16.24,
- -17.64,
- -18.14,
- -16.87,
- -14.66,
- -12.2,
- -10.18,
- -8.48,
- -6.42,
- -3.85,
- -0.98,
- 1.66,
- 4.09,
- 6.04,
- 7.97,
- 10.1,
- 12.07,
- 13.69,
- 15.09,
- 15.97,
- 16.46,
- 16.63,
- 16.81,
- 16.96,
- 16.72,
- 16.47,
- 16.54,
- 15.84,
- 14.47,
- 12.92,
- 11.17,
- 9.08,
- 7.09,
- 5.33,
- 3.93,
- 2.92,
- 2.13,
- 1.42,
- 1.1,
- 1.78,
- 2.23,
- 2.56,
- 4.44,
- 4.41,
- 0.17,
- -1.72,
- -2.15,
- -5.26,
- -5.76,
- -4.14,
- -4.36,
- -5.05,
- -5.61,
- -6.33,
- -7.1,
- -8.1,
- -8.96,
- -9.27,
- -9.34,
- -9.68,
- -10.96,
- -12.0,
- -12.22,
- -12.05,
- -11.06,
- -9.36,
- -11.12,
- -13.35,
- -12.51,
- -12.99,
- -13.36,
- -12.28,
- -12.33,
- -12.19,
- -11.82,
- -12.05,
- -10.63,
- -9.61,
- -8.7,
- -7.79,
- -6.98,
- -6.32,
- -6.1,
- -5.88,
- -5.73,
- -5.26,
- -5.24,
- -5.66,
- -5.45,
- -4.97,
- -4.84,
- -4.47,
- -3.56,
- -2.36,
- -1.21,
- 0.1,
- 0.34,
- -0.09,
- 0.2,
- 0.69,
- 1.27,
- 1.83,
- 2.39,
- 3.06,
- 3.94,
- 4.27,
- 4.84,
- 5.56,
- 6.23,
- 6.75,
- 7.13,
- 7.71,
- 7.84,
- 7.83,
- 7.76,
- 7.58,
- 7.67,
- 7.76,
- 7.98,
- 8.29,
- 8.6,
- 8.72,
- 8.84,
- 8.86,
- 8.87,
- 8.65,
- 7.98,
- 7.16,
- 6.52,
- 5.76,
- 4.93,
- 4.2,
- 4.08,
- 3.74,
- 2.93,
- 2.13,
- 1.7,
- 1.74,
- 2.13,
- 2.5,
- 2.49,
- 2.14,
- 1.53,
- 0.86,
- 0.34,
- 0.19,
- 0.6,
- 1.29,
- 2.07,
- 2.0,
- 1.51,
- 0.89,
- 0.69,
- 0.84,
- 0.87,
- 0.18,
- -3.1,
- -6.95,
- -7.62,
- -6.58,
- -6.56,
- -6.5,
- -6.3,
- -6.63,
- -6.94,
- -6.8,
- -5.34,
- -3.67,
- -2.59,
- -1.49,
- -1.42,
- -2.16,
- -2.1,
- -2.32,
- -3.15,
- -3.54,
- -3.73,
- -3.75,
- -3.38,
- -2.77,
- -2.1,
- -1.94,
- -2.6,
- -2.89,
- -2.84,
- -2.8,
- -1.5,
- -0.59,
- -0.84,
- -1.22,
- -1.49,
- -1.88,
- -2.44,
- -3.14,
- -4.23,
- -4.85,
- -5.21,
- -5.18,
- -4.8,
- -4.24,
- -3.73,
- -3.4,
- -3.2,
- -3.05,
- -2.94,
- -2.88,
- -2.66,
- -2.33,
- -2.14,
- -2.27,
- -2.28,
- -1.83,
- -1.06,
- -0.47,
- -0.22,
- -0.22,
- -0.32,
- -0.05,
- -0.55,
- -3.69,
- -5.44,
- -4.09,
- -2.99,
- -2.24,
- -1.12,
- 0.55,
- 0.47,
- -0.46,
- -1.17,
- -0.99,
- -0.12,
- 1.08,
- 2.05,
- 3.21,
- 3.98,
- 3.37,
- 2.27,
- 1.77,
- 0.95,
- -0.94,
- -1.32,
- -0.81,
- -1.64,
- 0.01,
- 1.0,
- 1.47,
- 1.43,
- -1.06,
- -1.17,
- 1.84,
- 3.92,
- 5.64,
- 6.63,
- 6.89,
- 6.3,
- 6.05,
- 6.55,
- 7.34,
- 7.97,
- 8.55,
- 8.82,
- 9.2,
- 10.29,
- 11.83,
- 14.18,
- 17.11,
- 20.24,
- 19.54,
- 7.9,
- -5.31,
- -8.02,
- -8.51,
- -9.7,
- -10.91,
- -11.86,
- -12.59,
- -12.71,
- -12.75,
- -13.15,
- -13.57,
- -14.03,
- -14.2,
- -13.76,
- -12.78,
- -11.64,
- -10.27,
- -8.93,
- -7.28,
- -5.51,
- -3.86,
- -2.33,
- -0.7,
- 0.83,
- 1.86,
- 2.41,
- 2.47,
- 2.52,
- 2.41,
- 2.11,
- 1.77,
- 1.68,
- 1.77,
- 2.55,
- 3.0,
- 3.55,
- 4.38,
- 5.07,
- 5.65,
- 5.26,
- 4.21,
- -1.89,
- -11.54,
- -13.19,
- -11.78,
- -10.25,
- -8.62,
- -7.09,
- -5.51,
- -4.27,
- -3.4,
- -2.51,
- -1.34,
- -0.55,
- 0.15,
- 1.06,
- 2.29,
- 3.44,
- 4.41,
- 5.23,
- 5.62,
- 4.55,
- 2.96,
- 1.14,
- -0.82,
- -3.24,
- -7.07,
- -9.13,
- -8.33,
- -8.21,
- -8.87,
- -9.08,
- -9.44,
- -10.14,
- -10.33,
- -9.65,
- -8.55,
- -6.64,
- -4.75,
- -3.13,
- -2.18,
- -2.33,
- -3.42,
- -4.49,
- -5.26,
- -6.15,
- -7.28,
- -9.12,
- -11.42,
- -13.71,
- -15.73,
- -16.69,
- -17.63,
- -17.57,
- -16.52,
- -14.66,
- -12.14,
- -10.08,
- -7.94,
- -5.5,
- -2.65,
- 0.22,
- 2.59,
- 4.6,
- 6.35,
- 8.05,
- 9.64,
- 11.52,
- 13.15,
- 14.53,
- 15.63,
- 16.47,
- 17.11,
- 17.36,
- 17.39,
- 17.52,
- 17.14,
- 16.73,
- 15.68,
- 14.12,
- 12.37,
- 10.65,
- 8.85,
- 6.7,
- 4.18,
- 2.22,
- 1.42,
- 1.17,
- 0.63,
- 0.41,
- 1.22,
- 2.75,
- 4.47,
- 3.33,
- -0.63,
- -2.07,
- -4.98,
- -5.88,
- -3.66,
- -2.76,
- -1.81,
- -0.37,
- 0.37,
- -0.02,
- -1.47,
- -3.89,
- -6.79,
- -9.48,
- -11.38,
- -12.19,
- -12.86,
- -13.2,
- -14.76,
- -15.41,
- -15.44,
- -14.79,
- -12.71,
- -13.74,
- -14.76,
- -14.18,
- -13.54,
- -13.33,
- -12.54,
- -11.47,
- -11.39,
- -11.37,
- -10.51,
- -10.09,
- -9.45,
- -8.63,
- -8.03,
- -7.38,
- -6.95,
- -6.5,
- -6.12,
- -5.46,
- -4.82,
- -4.54,
- -4.61,
- -4.18,
- -4.18,
- -3.95,
- -3.54,
- -3.04,
- -2.6,
- -2.38,
- -1.51,
- -0.15,
- 1.05,
- 1.62,
- 1.85,
- 1.96,
- 2.16,
- 2.56,
- 2.95,
- 3.16,
- 3.6,
- 4.15,
- 5.1,
- 6.33,
- 7.14,
- 7.54,
- 7.5,
- 7.22,
- 6.96,
- 6.9,
- 6.75,
- 6.69,
- 6.64,
- 6.99,
- 7.51,
- 7.86,
- 8.17,
- 8.16,
- 8.39,
- 8.39,
- 8.23,
- 7.98,
- 7.17,
- 7.08,
- 6.06,
- 5.37,
- 6.26,
- 6.78,
- 6.35,
- 5.34,
- 4.24,
- 3.74,
- 4.02,
- 4.58,
- 5.2,
- 4.88,
- 3.9,
- 2.67,
- 1.78,
- 1.5,
- 1.24,
- 1.53,
- 2.53,
- 2.95,
- 2.74,
- 1.83,
- 1.02,
- 0.63,
- 0.42,
- 0.25,
- -0.3,
- -1.48,
- -4.71,
- -8.76,
- -9.54,
- -8.13,
- -7.6,
- -7.1,
- -6.73,
- -7.13,
- -8.01,
- -7.39,
- -5.45,
- -5.22,
- -5.6,
- -2.12,
- -0.31,
- -0.56,
- -1.98,
- -2.36,
- -1.86,
- -0.99,
- -0.32,
- 0.25,
- 0.0,
- -0.82,
- -0.37,
- 0.56,
- 0.1,
- -2.15,
- -3.35,
- -3.12,
- -2.87,
- -2.5,
- -2.12,
- -1.98,
- -2.18,
- -2.75,
- -3.5,
- -2.71,
- -3.56,
- -4.08,
- -4.14,
- -3.85,
- -3.38,
- -2.99,
- -2.74,
- -2.6,
- -2.51,
- -2.5,
- -2.49,
- -2.54,
- -2.64,
- -2.55,
- -2.12,
- -1.21,
- 0.13,
- 1.48,
- 2.13,
- 1.86,
- 1.22,
- 0.48,
- -0.38,
- -1.47,
- -3.33,
- -6.29,
- -5.51,
- -4.32,
- -3.18,
- -1.61,
- -0.26,
- -1.3,
- -1.55,
- -1.77,
- -1.21,
- 0.22,
- 1.56,
- 2.81,
- 3.97,
- 4.11,
- 3.58,
- 3.02,
- 3.06,
- 2.53,
- 0.6,
- -2.54,
- -3.45,
- -2.86,
- -0.94,
- -4.2,
- -3.08,
- -1.71,
- -0.35,
- 0.58,
- 1.97,
- 4.06,
- 6.18,
- 7.82,
- 8.73,
- 9.03,
- 9.06,
- 8.86,
- 8.66,
- 8.56,
- 8.51,
- 8.49,
- 8.43,
- 8.38,
- 9.08,
- 10.99,
- 13.7,
- 14.91,
- 17.07,
- 18.07,
- 14.43,
- 5.52,
- -4.11,
- -8.31,
- -9.55,
- -9.88,
- -10.23,
- -10.56,
- -10.41,
- -10.06,
- -9.57,
- -9.16,
- -9.07,
- -8.94,
- -8.79,
- -8.28,
- -7.22,
- -5.83,
- -4.23,
- -2.48,
- -0.96,
- 0.12,
- 1.19,
- 2.27,
- 3.16,
- 3.94,
- 4.52,
- 4.47,
- 3.72,
- 2.55,
- 1.17,
- -0.02,
- -0.83,
- -1.09,
- -0.79,
- -0.05,
- 1.08,
- 1.95,
- 2.77,
- 2.82,
- 0.4,
- -9.65,
- -14.32,
- -13.3,
- -11.34,
- -9.22,
- -7.53,
- -6.04,
- -4.81,
- -3.75,
- -2.61,
- -1.63,
- -0.88,
- -0.07,
- 0.8,
- 1.75,
- 2.43,
- 3.21,
- 4.45,
- 5.21,
- 5.25,
- 4.8,
- 3.57,
- 0.89,
- -1.74,
- -4.1,
- -6.68,
- -9.69,
- -12.01,
- -11.25,
- -10.7,
- -10.68,
- -10.7,
- -10.79,
- -10.52,
- -9.74,
- -8.29,
- -6.54,
- -4.6,
- -2.95,
- -1.89,
- -2.44,
- -3.55,
- -4.54,
- -5.49,
- -6.7,
- -9.05,
- -10.97,
- -12.53,
- -14.26,
- -15.13,
- -15.64,
- -16.24,
- -16.14,
- -15.01,
- -13.2,
- -10.92,
- -9.27,
- -7.0,
- -4.47,
- -1.67,
- 0.96,
- 3.09,
- 4.53,
- 6.53,
- 8.43,
- 9.95,
- 11.32,
- 12.93,
- 14.4,
- 15.71,
- 16.8,
- 17.51,
- 18.07,
- 18.68,
- 18.84,
- 18.98,
- 17.32,
- 15.72,
- 13.86,
- 11.74,
- 9.66,
- 7.71,
- 5.9,
- 3.52,
- 1.04,
- 0.48,
- 0.5,
- 0.3,
- 0.98,
- 2.17,
- 3.93,
- 1.92,
- -2.03,
- -5.17,
- -4.75,
- -2.73,
- -2.06,
- -1.04,
- 0.3,
- 1.97,
- 3.59,
- 4.79,
- 5.16,
- 4.41,
- 2.04,
- -2.4,
- -7.84,
- -13.34,
- -17.28,
- -18.6,
- -19.27,
- -19.59,
- -19.93,
- -19.03,
- -17.65,
- -15.92,
- -16.45,
- -15.98,
- -14.54,
- -13.96,
- -13.25,
- -12.54,
- -11.96,
- -11.36,
- -10.57,
- -10.02,
- -9.52,
- -9.07,
- -8.71,
- -8.34,
- -7.89,
- -7.48,
- -6.83,
- -5.78,
- -5.23,
- -5.03,
- -4.77,
- -4.59,
- -4.44,
- -4.49,
- -4.49,
- -4.16,
- -3.38,
- -2.28,
- -1.18,
- -0.21,
- 0.72,
- 1.45,
- 1.86,
- 2.14,
- 2.43,
- 3.05,
- 3.49,
- 3.66,
- 3.64,
- 4.37,
- 5.2,
- 6.0,
- 6.89,
- 7.39,
- 7.45,
- 7.38,
- 7.16,
- 6.92,
- 7.14,
- 6.97,
- 6.71,
- 6.35,
- 6.35,
- 7.43,
- 7.83,
- 7.89,
- 7.56,
- 6.9,
- 6.39,
- 6.13,
- 5.85,
- 6.31,
- 6.11,
- 5.66,
- 5.6,
- 5.69,
- 5.59,
- 5.41,
- 4.94,
- 4.24,
- 3.79,
- 3.94,
- 4.5,
- 4.81,
- 4.72,
- 4.34,
- 3.23,
- 1.98,
- 1.92,
- 2.6,
- 3.04,
- 3.31,
- 3.14,
- 2.36,
- 1.49,
- 0.9,
- 0.62,
- 0.71,
- 0.53,
- -0.14,
- -1.58,
- -3.99,
- -7.77,
- -10.82,
- -10.37,
- -8.93,
- -8.03,
- -7.57,
- -7.43,
- -8.63,
- -8.99,
- -7.62,
- -7.07,
- -6.77,
- -4.33,
- -3.28,
- -3.31,
- -3.91,
- -4.08,
- -3.36,
- -2.43,
- -1.49,
- -0.54,
- 0.26,
- 0.04,
- 0.01,
- 0.41,
- 1.64,
- 3.3,
- 3.41,
- 1.18,
- 0.56,
- 0.24,
- 0.38,
- 0.34,
- -0.15,
- -0.87,
- -1.73,
- 1.11,
- 0.43,
- -0.19,
- -0.5,
- -0.44,
- -0.07,
- 0.47,
- 0.88,
- 1.03,
- 1.01,
- 0.87,
- 0.76,
- 0.74,
- 0.79,
- 0.88,
- 1.04,
- 1.26,
- 1.26,
- 1.27,
- 1.42,
- 1.44,
- 1.12,
- 0.73,
- 0.62,
- -0.16,
- -4.65,
- -7.36,
- -6.41,
- -5.41,
- -4.31,
- -2.71,
- -2.49,
- -3.34,
- -2.75,
- -2.43,
- -1.64,
- -0.28,
- 1.58,
- 3.68,
- 4.66,
- 4.29,
- 3.98,
- 3.43,
- 4.18,
- 4.06,
- 0.29,
- -3.77,
- -4.84,
- -2.12,
- -6.01,
- -5.49,
- -3.71,
- -2.24,
- -1.39,
- 0.18,
- 2.18,
- 4.44,
- 6.56,
- 8.3,
- 9.12,
- 9.75,
- 10.4,
- 10.4,
- 9.7,
- 9.29,
- 9.28,
- 9.2,
- 8.92,
- 8.72,
- 8.66,
- 8.61,
- 8.42,
- 9.83,
- 11.06,
- 9.44,
- 10.58,
- 10.53,
- 7.28,
- 3.44,
- -0.17,
- -3.0,
- -5.0,
- -6.08,
- -6.56,
- -6.8,
- -7.13,
- -7.52,
- -7.56,
- -7.04,
- -6.14,
- -5.05,
- -3.9,
- -2.83,
- -1.7,
- -0.22,
- 1.17,
- 2.18,
- 3.16,
- 4.11,
- 4.34,
- 4.01,
- 3.68,
- 3.33,
- 2.87,
- 1.64,
- -0.54,
- -2.93,
- -4.65,
- -5.08,
- -4.33,
- -3.09,
- -2.14,
- -1.4,
- -0.46,
- -0.76,
- -9.0,
- -14.33,
- -13.64,
- -12.03,
- -9.67,
- -7.52,
- -6.02,
- -4.85,
- -3.79,
- -2.78,
- -1.77,
- -0.63,
- 0.63,
- 1.5,
- 1.71,
- 1.72,
- 2.4,
- 3.12,
- 3.65,
- 4.41,
- 4.76,
- 5.1,
- 3.56,
- 0.64,
- -1.31,
- -3.5,
- -6.41,
- -9.03,
- -11.27,
- -12.36,
- -12.11,
- -12.02,
- -12.25,
- -12.07,
- -11.2,
- -9.56,
- -7.89,
- -6.36,
- -4.87,
- -3.53,
- -3.23,
- -3.66,
- -5.12,
- -6.42,
- -7.66,
- -9.23,
- -10.7,
- -11.96,
- -12.87,
- -13.47,
- -14.0,
- -14.69,
- -14.92,
- -14.19,
- -12.71,
- -11.46,
- -10.04,
- -8.13,
- -5.7,
- -2.96,
- -0.69,
- 1.49,
- 3.49,
- 5.43,
- 6.89,
- 8.31,
- 9.74,
- 11.29,
- 13.03,
- 14.67,
- 16.28,
- 17.33,
- 18.0,
- 18.78,
- 19.34,
- 19.72,
- 19.41,
- 18.71,
- 15.78,
- 13.15,
- 10.91,
- 8.75,
- 7.4,
- 6.09,
- 3.34,
- 1.43,
- 0.5,
- 0.16,
- 0.99,
- 1.79,
- 4.06,
- -0.33,
- -5.66,
- -7.37,
- -5.2,
- -3.69,
- -2.21,
- -0.45,
- 1.52,
- 3.68,
- 5.87,
- 7.76,
- 9.53,
- 11.18,
- 12.54,
- 8.98,
- -1.39,
- -5.38,
- -10.07,
- -17.41,
- -21.15,
- -22.1,
- -22.56,
- -22.22,
- -21.0,
- -19.37,
- -18.51,
- -17.89,
- -16.47,
- -14.68,
- -13.97,
- -13.56,
- -13.1,
- -12.43,
- -11.67,
- -10.84,
- -10.02,
- -9.26,
- -8.75,
- -8.46,
- -8.21,
- -7.81,
- -7.52,
- -7.17,
- -6.66,
- -7.04,
- -7.26,
- -6.69,
- -6.13,
- -5.71,
- -5.18,
- -4.53,
- -3.71,
- -2.77,
- -1.76,
- -0.73,
- 0.17,
- 0.77,
- 1.22,
- 1.55,
- 1.85,
- 2.21,
- 2.8,
- 3.23,
- 3.4,
- 3.68,
- 4.26,
- 4.86,
- 5.1,
- 5.59,
- 6.05,
- 6.31,
- 6.1,
- 5.71,
- 5.81,
- 6.35,
- 6.97,
- 7.28,
- 7.5,
- 7.7,
- 7.82,
- 8.01,
- 8.35,
- 8.2,
- 7.68,
- 7.01,
- 7.31,
- 8.35,
- 8.57,
- 8.31,
- 7.98,
- 7.46,
- 7.07,
- 6.78,
- 6.43,
- 6.14,
- 5.6,
- 5.16,
- 5.14,
- 5.28,
- 4.81,
- 4.03,
- 3.18,
- 3.22,
- 2.97,
- 2.65,
- 2.56,
- 2.53,
- 2.23,
- 1.19,
- 0.71,
- 0.35,
- 0.5,
- 0.66,
- 0.55,
- 0.48,
- 0.01,
- -1.27,
- -3.54,
- -7.3,
- -10.95,
- -10.88,
- -9.37,
- -8.19,
- -7.42,
- -6.93,
- -8.39,
- -9.77,
- -8.82,
- -7.88,
- -7.47,
- -7.16,
- -6.75,
- -6.3,
- -5.88,
- -5.53,
- -4.54,
- -3.28,
- -2.11,
- -1.12,
- -0.39,
- -0.01,
- 0.17,
- 0.23,
- 0.57,
- 0.94,
- 1.15,
- -0.59,
- -0.61,
- 0.52,
- 1.27,
- 1.61,
- 1.81,
- 1.81,
- 1.58,
- 0.33,
- 0.02,
- -0.26,
- -0.4,
- -0.35,
- -0.13,
- 0.18,
- 0.43,
- 0.53,
- 0.53,
- 0.42,
- 0.29,
- 0.22,
- 0.22,
- 0.32,
- 0.46,
- 0.55,
- 0.59,
- 0.64,
- 0.74,
- 0.83,
- 0.82,
- 0.58,
- -0.13,
- -1.31,
- -4.63,
- -7.29,
- -6.56,
- -5.78,
- -4.73,
- -3.37,
- -3.38,
- -4.45,
- -3.9,
- -3.32,
- -2.54,
- -0.97,
- 0.96,
- 2.62,
- 3.45,
- 4.12,
- 4.44,
- 3.64,
- 4.03,
- 1.88,
- 0.35,
- -3.39,
- -5.77,
- -7.53,
- -5.9,
- -5.6,
- -4.29,
- -2.53,
- -0.47,
- 1.32,
- 2.22,
- 3.39,
- 5.84,
- 7.27,
- 7.9,
- 9.35,
- 10.15,
- 10.12,
- 9.91,
- 9.89,
- 9.69,
- 9.19,
- 8.97,
- 9.17,
- 9.53,
- 9.64,
- 9.59,
- 8.94,
- 7.13,
- 6.36,
- 5.92,
- 2.13,
- -0.65,
- -1.29,
- -2.03,
- -3.09,
- -4.11,
- -4.77,
- -5.25,
- -4.57,
- -4.37,
- -4.83,
- -5.33,
- -4.1,
- -2.93,
- -1.7,
- -0.65,
- 0.2,
- 1.21,
- 2.21,
- 2.85,
- 2.43,
- 2.95,
- 4.8,
- 6.22,
- 8.68,
- 9.45,
- 9.23,
- 8.7,
- 6.33,
- 1.79,
- -3.3,
- -6.69,
- -8.12,
- -7.94,
- -6.74,
- -4.72,
- -2.42,
- -4.2,
- -11.42,
- -13.39,
- -12.21,
- -10.66,
- -8.95,
- -7.24,
- -6.02,
- -4.84,
- -3.58,
- -2.3,
- -0.89,
- 0.35,
- 1.03,
- 1.22,
- 1.65,
- 2.13,
- 2.08,
- 1.87,
- 2.0,
- 2.56,
- 3.06,
- 4.32,
- 3.13,
- 1.45,
- 0.76,
- 0.57,
- -0.64,
- -4.71,
- -7.97,
- -9.68,
- -10.37,
- -10.83,
- -11.29,
- -11.36,
- -11.19,
- -10.43,
- -9.45,
- -8.4,
- -7.06,
- -5.71,
- -5.17,
- -5.59,
- -6.45,
- -7.82,
- -9.04,
- -10.0,
- -10.84,
- -11.74,
- -11.99,
- -12.69,
- -13.52,
- -14.0,
- -14.3,
- -13.74,
- -12.62,
- -11.33,
- -9.82,
- -8.42,
- -6.73,
- -4.55,
- -1.91,
- 0.35,
- 2.25,
- 4.02,
- 5.68,
- 7.12,
- 8.4,
- 10.09,
- 11.69,
- 13.43,
- 15.01,
- 16.36,
- 17.37,
- 18.43,
- 19.31,
- 19.58,
- 19.84,
- 21.12,
- 15.95,
- 13.47,
- 13.29,
- 11.51,
- 9.59,
- 7.69,
- 5.73,
- 4.01,
- 2.96,
- 2.1,
- 1.93,
- 2.84,
- 4.0,
- -3.41,
- -7.88,
- -7.57,
- -5.93,
- -4.63,
- -2.76,
- -0.74,
- 1.47,
- 3.63,
- 5.97,
- 8.6,
- 10.73,
- 13.15,
- 15.33,
- 16.36,
- 8.16,
- 0.41,
- -3.43,
- -7.97,
- -12.79,
- -16.38,
- -18.79,
- -20.19,
- -20.23,
- -19.72,
- -19.2,
- -18.73,
- -17.55,
- -16.12,
- -14.55,
- -13.52,
- -12.74,
- -12.51,
- -12.46,
- -11.9,
- -11.04,
- -10.19,
- -9.46,
- -8.75,
- -8.38,
- -8.31,
- -8.18,
- -7.71,
- -7.28,
- -7.42,
- -8.14,
- -8.21,
- -7.34,
- -6.51,
- -5.81,
- -5.1,
- -4.24,
- -3.23,
- -2.24,
- -1.33,
- -0.43,
- 0.41,
- 1.18,
- 1.84,
- 2.5,
- 2.94,
- 3.05,
- 2.92,
- 3.16,
- 3.64,
- 3.8,
- 3.79,
- 4.17,
- 5.0,
- 5.54,
- 5.66,
- 5.77,
- 5.85,
- 5.78,
- 5.66,
- 5.82,
- 6.34,
- 7.23,
- 8.15,
- 8.49,
- 8.76,
- 8.76,
- 9.0,
- 9.39,
- 9.36,
- 9.26,
- 9.32,
- 9.14,
- 9.04,
- 8.92,
- 8.86,
- 9.0,
- 8.42,
- 8.08,
- 7.48,
- 6.9,
- 5.78,
- 4.68,
- 4.61,
- 4.52,
- 4.31,
- 3.98,
- 3.64,
- 3.39,
- 2.85,
- 1.95,
- 1.7,
- 1.88,
- 1.83,
- 1.25,
- 0.31,
- -0.44,
- -0.64,
- -0.11,
- -0.01,
- 0.0,
- -0.52,
- -2.34,
- -3.61,
- -7.69,
- -10.81,
- -10.6,
- -9.22,
- -7.77,
- -6.81,
- -6.11,
- -6.64,
- -9.4,
- -9.94,
- -9.85,
- -9.55,
- -9.01,
- -8.58,
- -8.17,
- -7.49,
- -6.62,
- -5.62,
- -4.45,
- -3.15,
- -1.99,
- -1.08,
- -0.52,
- -0.33,
- -0.46,
- -0.65,
- -0.89,
- -1.23,
- -1.36,
- -1.11,
- -0.71,
- -0.28,
- 0.07,
- 0.37,
- 0.54,
- 0.54,
- 0.1,
- 0.05,
- 0.03,
- 0.09,
- 0.24,
- 0.46,
- 0.75,
- 1.03,
- 1.22,
- 1.32,
- 1.33,
- 1.28,
- 1.23,
- 1.2,
- 1.19,
- 1.21,
- 1.18,
- 1.04,
- 0.85,
- 0.67,
- 0.53,
- 0.34,
- -0.18,
- -1.07,
- -2.37,
- -5.85,
- -7.4,
- -6.32,
- -5.41,
- -4.45,
- -3.55,
- -3.28,
- -4.14,
- -4.95,
- -4.37,
- -3.14,
- -1.97,
- -0.8,
- 1.02,
- 1.69,
- 2.15,
- 3.25,
- 3.18,
- 2.9,
- -3.42,
- -4.46,
- -6.58,
- -5.89,
- -5.2,
- -5.4,
- -3.84,
- -1.43,
- 0.91,
- 2.71,
- 4.68,
- 6.67,
- 8.54,
- 10.08,
- 9.34,
- 5.54,
- 7.37,
- 8.25,
- 9.0,
- 9.4,
- 9.51,
- 9.97,
- 10.39,
- 10.16,
- 10.23,
- 10.09,
- 8.45,
- 8.35,
- 7.9,
- 7.13,
- 6.52,
- 4.88,
- 1.63,
- -0.57,
- -1.38,
- -1.96,
- -2.59,
- -3.18,
- -3.41,
- -2.92,
- -3.31,
- -3.84,
- -3.88,
- -3.56,
- -2.71,
- -1.41,
- -0.23,
- 0.49,
- 1.46,
- 2.68,
- 3.52,
- 3.51,
- 3.05,
- 2.6,
- 3.06,
- 4.07,
- 5.23,
- 7.08,
- 9.62,
- 12.91,
- 14.53,
- 12.66,
- 7.49,
- 0.65,
- -5.34,
- -7.77,
- -8.1,
- -8.86,
- -10.03,
- -9.96,
- -9.03,
- -8.52,
- -8.11,
- -7.37,
- -6.39,
- -5.25,
- -3.64,
- -1.88,
- -0.39,
- 0.4,
- 1.21,
- 2.56,
- 4.08,
- 4.85,
- 4.45,
- 3.36,
- 1.87,
- 0.38,
- -0.44,
- -0.46,
- 1.39,
- -0.32,
- -0.61,
- -1.56,
- -3.21,
- -1.2,
- -0.76,
- -2.29,
- -4.47,
- -6.62,
- -7.96,
- -8.73,
- -9.17,
- -9.38,
- -9.32,
- -9.02,
- -8.5,
- -7.95,
- -7.26,
- -6.8,
- -7.37,
- -8.74,
- -10.12,
- -10.58,
- -10.88,
- -11.08,
- -10.79,
- -10.28,
- -10.17,
- -11.55,
- -12.62,
- -12.85,
- -12.78,
- -12.03,
- -11.09,
- -9.94,
- -8.9,
- -7.72,
- -6.16,
- -4.23,
- -2.12,
- 0.44,
- 2.63,
- 4.29,
- 5.81,
- 7.36,
- 8.67,
- 10.51,
- 12.13,
- 13.65,
- 15.05,
- 16.21,
- 17.18,
- 18.31,
- 19.25,
- 19.61,
- 19.99,
- 21.07,
- 14.82,
- 10.84,
- 10.78,
- 10.12,
- 9.29,
- 8.04,
- 6.68,
- 5.12,
- 4.1,
- 3.79,
- 3.65,
- 1.02,
- -5.86,
- -7.09,
- -6.63,
- -5.56,
- -4.68,
- -2.52,
- -0.85,
- 1.23,
- 2.92,
- 4.81,
- 7.16,
- 9.48,
- 11.52,
- 13.6,
- 15.35,
- 15.95,
- 11.13,
- 1.08,
- -3.1,
- -5.29,
- -7.56,
- -10.16,
- -12.69,
- -14.6,
- -16.0,
- -16.8,
- -16.94,
- -16.79,
- -16.21,
- -15.26,
- -14.17,
- -12.72,
- -11.6,
- -10.86,
- -10.56,
- -10.83,
- -10.84,
- -10.34,
- -9.61,
- -9.11,
- -8.5,
- -8.09,
- -7.81,
- -7.55,
- -7.97,
- -8.71,
- -8.61,
- -7.43,
- -6.27,
- -5.41,
- -4.65,
- -3.84,
- -2.95,
- -2.0,
- -1.17,
- -0.33,
- 0.48,
- 1.1,
- 1.57,
- 1.91,
- 2.61,
- 3.24,
- 3.52,
- 3.38,
- 3.6,
- 4.02,
- 4.34,
- 4.66,
- 4.99,
- 5.23,
- 5.15,
- 5.0,
- 5.22,
- 5.54,
- 5.66,
- 5.77,
- 5.81,
- 5.84,
- 6.27,
- 7.7,
- 8.91,
- 8.88,
- 9.14,
- 9.51,
- 9.5,
- 9.46,
- 9.75,
- 9.72,
- 10.04,
- 9.8,
- 9.49,
- 9.62,
- 9.55,
- 9.24,
- 9.83,
- 9.06,
- 6.02,
- 6.27,
- 6.57,
- 4.26,
- 3.29,
- 3.09,
- 3.33,
- 2.35,
- 1.83,
- 1.43,
- 0.56,
- -0.35,
- -1.03,
- -1.05,
- -0.82,
- -0.73,
- -0.82,
- -0.71,
- -0.49,
- -0.77,
- -0.64,
- -1.79,
- -3.68,
- -5.26,
- -8.81,
- -11.14,
- -10.22,
- -8.89,
- -7.47,
- -6.46,
- -5.66,
- -4.69,
- -7.94,
- -10.53,
- -10.93,
- -11.04,
- -10.54,
- -10.05,
- -9.47,
- -8.71,
- -7.7,
- -6.49,
- -5.09,
- -3.6,
- -2.19,
- -1.07,
- -0.54,
- -0.48,
- -0.68,
- -1.1,
- -1.51,
- -1.7,
- -1.7,
- -1.56,
- -1.34,
- -1.13,
- -0.91,
- -0.56,
- -0.18,
- 0.05,
- -0.64,
- -0.42,
- -0.27,
- -0.09,
- 0.18,
- 0.52,
- 0.92,
- 1.31,
- 1.62,
- 1.79,
- 1.78,
- 1.69,
- 1.6,
- 1.39,
- 1.14,
- 0.99,
- 0.92,
- 0.81,
- 0.59,
- 0.28,
- -0.1,
- -0.53,
- -1.1,
- -2.53,
- -4.74,
- -7.07,
- -7.54,
- -6.33,
- -5.07,
- -4.09,
- -3.5,
- -3.58,
- -4.11,
- -4.61,
- -4.59,
- -3.82,
- -2.47,
- -0.95,
- -0.11,
- -0.19,
- -0.16,
- 0.31,
- 0.61,
- 0.2,
- -1.73,
- -2.81,
- -3.44,
- -5.84,
- -5.5,
- -3.92,
- -2.3,
- -0.17,
- 1.97,
- 4.03,
- 6.57,
- 8.71,
- 8.59,
- 7.43,
- 6.77,
- 7.04,
- 4.79,
- 4.3,
- 5.88,
- 7.48,
- 7.41,
- 7.33,
- 8.7,
- 9.26,
- 8.3,
- 9.06,
- 9.48,
- 6.52,
- 5.78,
- 5.79,
- 4.37,
- 3.13,
- 2.84,
- 1.19,
- -2.04,
- -4.59,
- -4.65,
- -4.16,
- -4.18,
- -3.34,
- -2.82,
- -3.33,
- -2.94,
- -2.16,
- -0.96,
- 0.29,
- 0.42,
- -0.28,
- -0.69,
- -0.65,
- -0.07,
- 0.82,
- 1.75,
- 2.46,
- 3.04,
- 3.26,
- 3.42,
- 4.48,
- 6.24,
- 8.26,
- 9.89,
- 10.5,
- 9.69,
- 7.41,
- 4.85,
- 2.72,
- 1.35,
- 0.37,
- -0.37,
- -1.23,
- -1.91,
- -1.66,
- -1.54,
- -0.81,
- -1.01,
- -0.87,
- -0.72,
- -0.12,
- 1.66,
- 3.54,
- 4.59,
- 5.18,
- 5.28,
- 5.25,
- 4.08,
- 2.93,
- 3.96,
- 4.86,
- 1.96,
- -3.62,
- -2.48,
- 0.99,
- 2.31,
- 3.85,
- 5.71,
- 5.87,
- 5.08,
- 3.8,
- 1.55,
- -1.66,
- -4.69,
- -5.74,
- -6.02,
- -6.69,
- -7.18,
- -7.39,
- -6.85,
- -7.37,
- -8.07,
- -9.07,
- -10.03,
- -12.08,
- -11.2,
- -10.84,
- -10.59,
- -9.81,
- -8.73,
- -8.28,
- -8.36,
- -8.92,
- -9.61,
- -10.84,
- -10.4,
- -10.01,
- -9.49,
- -8.94,
- -8.04,
- -7.17,
- -5.94,
- -3.37,
- -0.84,
- 0.65,
- 2.28,
- 4.22,
- 6.28,
- 7.61,
- 9.26,
- 10.8,
- 12.08,
- 13.46,
- 14.65,
- 15.64,
- 16.68,
- 17.69,
- 18.4,
- 19.17,
- 19.92,
- 20.13,
- 17.43,
- 12.15,
- 10.1,
- 8.68,
- 7.52,
- 6.54,
- 5.26,
- 3.7,
- 1.75,
- -0.74,
- -3.73,
- -5.54,
- -5.58,
- -5.27,
- -4.71,
- -4.23,
- -3.28,
- -2.41,
- -0.72,
- 0.72,
- 2.23,
- 4.28,
- 6.51,
- 8.52,
- 10.26,
- 11.85,
- 13.4,
- 14.15,
- 13.02,
- 8.67,
- 0.57,
- -5.44,
- -7.09,
- -7.82,
- -8.97,
- -10.25,
- -11.54,
- -12.61,
- -13.33,
- -13.78,
- -13.77,
- -13.48,
- -13.08,
- -13.08,
- -12.31,
- -11.37,
- -10.83,
- -10.59,
- -10.32,
- -10.46,
- -10.31,
- -9.38,
- -8.76,
- -8.57,
- -8.68,
- -9.02,
- -8.93,
- -8.05,
- -6.87,
- -5.92,
- -5.2,
- -4.34,
- -3.3,
- -2.38,
- -1.7,
- -0.97,
- -0.19,
- 0.8,
- 2.14,
- 3.19,
- 3.81,
- 4.14,
- 4.37,
- 4.61,
- 5.07,
- 5.16,
- 5.0,
- 4.95,
- 4.87,
- 4.83,
- 4.87,
- 4.87,
- 4.66,
- 4.82,
- 5.21,
- 5.46,
- 5.67,
- 5.84,
- 5.61,
- 5.4,
- 6.16,
- 7.46,
- 7.66,
- 8.1,
- 8.75,
- 9.17,
- 9.44,
- 9.85,
- 10.3,
- 10.5,
- 10.89,
- 10.76,
- 10.55,
- 10.35,
- 11.09,
- 9.51,
- 4.39,
- 5.13,
- 1.28,
- -0.07,
- 2.08,
- 2.92,
- 5.52,
- 5.35,
- 4.99,
- 4.46,
- 3.83,
- 3.05,
- 2.26,
- 1.62,
- 0.68,
- -0.42,
- -0.83,
- -0.55,
- -0.34,
- -0.46,
- -0.64,
- -1.05,
- -1.93,
- -3.59,
- -6.26,
- -7.42,
- -7.39,
- -8.13,
- -7.7,
- -7.02,
- -5.88,
- -4.35,
- -4.47,
- -5.42,
- -4.8,
- -8.29,
- -12.38,
- -12.22,
- -11.92,
- -11.41,
- -10.43,
- -9.24,
- -8.12,
- -7.19,
- -6.16,
- -5.03,
- -3.53,
- -1.77,
- -0.76,
- -0.67,
- -0.89,
- -1.25,
- -1.61,
- -1.85,
- -1.92,
- -1.89,
- -1.84,
- -1.75,
- -1.68,
- -1.57,
- -1.32,
- -0.98,
- -0.76,
- -0.47,
- -0.27,
- -0.14,
- 0.01,
- 0.26,
- 0.65,
- 1.17,
- 1.63,
- 1.91,
- 2.0,
- 1.9,
- 1.74,
- 1.53,
- 1.33,
- 1.17,
- 1.07,
- 0.84,
- 0.27,
- -0.48,
- -1.03,
- -1.67,
- -3.35,
- -5.57,
- -7.03,
- -7.42,
- -6.81,
- -5.84,
- -4.88,
- -4.14,
- -3.68,
- -3.44,
- -3.59,
- -3.88,
- -3.89,
- -3.32,
- -2.45,
- -1.51,
- -0.55,
- -0.18,
- -0.56,
- -1.14,
- -1.63,
- -1.22,
- -1.13,
- -1.9,
- -3.58,
- -4.2,
- -3.72,
- -2.81,
- -1.58,
- 1.45,
- 3.89,
- 4.18,
- 3.47,
- 2.34,
- 1.57,
- 4.28,
- 5.13,
- 4.11,
- 2.01,
- 0.41,
- 1.03,
- 2.53,
- 4.18,
- 5.97,
- 7.23,
- 8.76,
- 9.92,
- 9.41,
- 8.71,
- 6.75,
- 2.5,
- 0.21,
- 0.69,
- 0.97,
- 0.53,
- 0.23,
- 0.43,
- -0.44,
- -4.28,
- -3.7,
- -2.22,
- -1.67,
- -1.42,
- -1.29,
- -1.35,
- -1.54,
- -1.58,
- -1.41,
- -1.12,
- -0.7,
- -0.24,
- 0.16,
- 0.43,
- 1.08,
- 2.05,
- 2.41,
- 2.8,
- 3.03,
- 2.78,
- 3.94,
- 4.96,
- 7.2,
- 7.94,
- 7.62,
- 7.35,
- 6.47,
- 4.78,
- 3.15,
- 1.91,
- 1.75,
- 2.4,
- 2.83,
- 2.69,
- 1.58,
- 0.47,
- -0.33,
- -0.82,
- -0.63,
- 0.32,
- 1.47,
- 2.51,
- 2.82,
- 3.29,
- 3.61,
- 3.29,
- 3.35,
- 3.18,
- 2.95,
- 2.94,
- 3.41,
- 4.16,
- 4.41,
- 3.7,
- 3.16,
- 3.21,
- 3.37,
- 3.46,
- 3.9,
- 4.28,
- 4.34,
- 3.85,
- 3.31,
- 2.35,
- 0.45,
- -2.89,
- -4.89,
- -5.7,
- -6.24,
- -6.56,
- -7.14,
- -8.07,
- -9.68,
- -11.15,
- -12.08,
- -12.0,
- -11.48,
- -10.59,
- -9.54,
- -8.95,
- -8.57,
- -8.3,
- -8.24,
- -8.91,
- -9.93,
- -9.18,
- -8.5,
- -7.81,
- -7.41,
- -6.95,
- -5.8,
- -3.89,
- -2.28,
- -0.69,
- 1.26,
- 2.96,
- 4.54,
- 6.09,
- 7.76,
- 9.24,
- 10.68,
- 11.98,
- 12.96,
- 13.88,
- 14.94,
- 15.99,
- 16.67,
- 17.38,
- 18.05,
- 18.35,
- 18.37,
- 16.26,
- 12.23,
- 9.71,
- 7.93,
- 5.74,
- 3.31,
- 1.3,
- -0.43,
- -2.21,
- -3.53,
- -4.16,
- -4.4,
- -4.19,
- -4.18,
- -4.52,
- -4.45,
- -3.69,
- -2.63,
- -1.47,
- 0.38,
- 2.18,
- 3.67,
- 5.19,
- 6.48,
- 7.66,
- 8.86,
- 10.1,
- 11.19,
- 11.55,
- 10.76,
- 8.76,
- 5.61,
- 0.88,
- -3.86,
- -7.38,
- -9.45,
- -10.27,
- -10.61,
- -11.63,
- -12.73,
- -12.86,
- -12.42,
- -12.07,
- -11.51,
- -11.12,
- -10.93,
- -10.59,
- -10.22,
- -9.98,
- -9.74,
- -9.66,
- -9.68,
- -9.56,
- -9.4,
- -8.89,
- -8.24,
- -7.6,
- -7.13,
- -6.56,
- -5.9,
- -5.19,
- -4.29,
- -3.08,
- -1.83,
- -0.87,
- -0.11,
- 1.04,
- 2.07,
- 2.43,
- 3.05,
- 3.68,
- 4.12,
- 4.48,
- 4.84,
- 5.56,
- 6.31,
- 6.12,
- 5.84,
- 5.8,
- 5.69,
- 5.47,
- 5.29,
- 5.24,
- 5.33,
- 5.43,
- 5.51,
- 5.72,
- 5.66,
- 5.32,
- 5.45,
- 6.17,
- 6.92,
- 7.83,
- 8.69,
- 9.09,
- 9.54,
- 10.05,
- 10.55,
- 10.79,
- 10.73,
- 10.71,
- 10.6,
- 10.25,
- 9.92,
- 8.26,
- 1.64,
- -2.27,
- 2.2,
- 5.94,
- 7.4,
- 7.27,
- 7.02,
- 7.25,
- 7.55,
- 7.79,
- 7.79,
- 7.51,
- 7.06,
- 6.39,
- 5.25,
- 3.62,
- 1.75,
- 0.14,
- -0.77,
- -0.89,
- -0.61,
- -0.87,
- -2.33,
- -4.05,
- -6.03,
- -7.29,
- -7.37,
- -6.68,
- -6.49,
- -6.48,
- -4.83,
- -2.46,
- -0.8,
- 0.23,
- 0.82,
- 1.34,
- 2.24,
- 1.69,
- -2.55,
- -6.72,
- -7.65,
- -7.28,
- -5.74,
- -3.99,
- -2.72,
- -1.96,
- -1.35,
- -0.83,
- -0.83,
- -0.89,
- -0.81,
- -0.76,
- -0.75,
- -0.84,
- -0.97,
- -1.1,
- -1.27,
- -1.39,
- -1.45,
- -1.48,
- -1.45,
- -1.3,
- -1.07,
- -0.91,
- -0.41,
- 0.04,
- 0.35,
- 0.53,
- 0.74,
- 1.0,
- 1.33,
- 1.64,
- 1.83,
- 1.69,
- 1.33,
- 1.18,
- 1.27,
- 1.36,
- 1.4,
- 1.37,
- 0.97,
- 0.28,
- -1.11,
- -3.54,
- -5.6,
- -6.33,
- -6.57,
- -6.63,
- -6.4,
- -5.87,
- -5.12,
- -4.32,
- -3.6,
- -2.82,
- -2.15,
- -1.78,
- -1.2,
- -0.86,
- -1.47,
- -2.05,
- -1.51,
- -0.66,
- -1.01,
- -1.24,
- -0.14,
- 0.35,
- -1.84,
- -0.91,
- 1.68,
- 1.0,
- 0.24,
- 0.16,
- 0.77,
- 1.34,
- 1.08,
- 2.94,
- 4.31,
- 1.97,
- -0.61,
- 0.09,
- 3.44,
- 4.13,
- 3.94,
- 3.19,
- 1.82,
- 1.21,
- 0.99,
- 2.4,
- 4.79,
- 7.06,
- 9.65,
- 11.73,
- 11.95,
- 12.47,
- 13.08,
- 5.17,
- 0.26,
- 0.15,
- -0.32,
- -0.43,
- -1.15,
- -1.31,
- -1.02,
- -1.21,
- -1.61,
- -1.45,
- -1.47,
- -1.71,
- -1.95,
- -1.79,
- -1.56,
- -1.66,
- -1.87,
- -1.58,
- -1.18,
- -0.41,
- -0.1,
- 0.34,
- 1.3,
- 1.64,
- 3.14,
- 3.58,
- 2.66,
- 1.61,
- -0.71,
- 1.1,
- 5.37,
- 3.72,
- 5.51,
- 7.03,
- 8.17,
- 7.9,
- 6.22,
- 4.47,
- 1.02,
- 2.46,
- 7.76,
- 8.7,
- 7.2,
- 4.53,
- 2.4,
- 1.23,
- 0.38,
- 0.54,
- 1.42,
- 2.17,
- 2.06,
- 1.6,
- 1.78,
- 2.58,
- 2.22,
- 1.27,
- 0.01,
- 0.09,
- 2.03,
- 0.74,
- 3.06,
- 4.0,
- 2.45,
- 2.28,
- 2.27,
- 2.5,
- 2.54,
- 3.7,
- 5.17,
- 6.17,
- 6.18,
- 6.16,
- 5.69,
- 2.52,
- -3.47,
- -6.62,
- -6.2,
- -7.01,
- -7.93,
- -9.46,
- -11.09,
- -12.24,
- -12.67,
- -12.24,
- -11.53,
- -10.48,
- -9.34,
- -8.46,
- -8.08,
- -7.5,
- -7.37,
- -6.9,
- -7.05,
- -7.54,
- -6.91,
- -6.15,
- -5.23,
- -4.23,
- -3.21,
- -2.13,
- -0.86,
- 0.6,
- 2.11,
- 3.38,
- 4.67,
- 6.29,
- 8.07,
- 9.65,
- 10.79,
- 11.64,
- 12.5,
- 13.32,
- 14.15,
- 14.92,
- 15.54,
- 16.04,
- 16.33,
- 16.53,
- 16.46,
- 14.2,
- 11.15,
- 7.16,
- 4.16,
- 2.25,
- 0.86,
- -0.42,
- -1.69,
- -2.72,
- -3.45,
- -3.67,
- -3.9,
- -4.76,
- -5.14,
- -5.1,
- -4.8,
- -4.06,
- -2.67,
- -1.0,
- -0.04,
- 1.03,
- 2.03,
- 2.95,
- 3.97,
- 4.86,
- 5.6,
- 6.35,
- 7.22,
- 8.03,
- 8.42,
- 8.18,
- 7.35,
- 5.98,
- 4.19,
- 2.17,
- 0.16,
- -1.62,
- -3.39,
- -4.89,
- -6.48,
- -7.89,
- -8.37,
- -8.37,
- -8.29,
- -7.99,
- -7.5,
- -7.13,
- -7.09,
- -7.15,
- -7.13,
- -6.88,
- -6.74,
- -6.82,
- -7.07,
- -7.23,
- -7.2,
- -6.99,
- -6.42,
- -5.53,
- -4.42,
- -3.42,
- -2.66,
- -2.01,
- -1.37,
- -0.64,
- 0.3,
- 1.89,
- 3.0,
- 3.42,
- 3.87,
- 4.29,
- 4.77,
- 5.22,
- 5.36,
- 5.48,
- 5.75,
- 5.82,
- 5.71,
- 5.53,
- 5.36,
- 5.19,
- 5.0,
- 4.92,
- 5.11,
- 5.45,
- 5.5,
- 5.44,
- 5.38,
- 5.23,
- 4.92,
- 6.06,
- 7.8,
- 8.7,
- 8.54,
- 8.61,
- 7.78,
- 7.65,
- 7.58,
- 7.68,
- 7.98,
- 8.35,
- 10.56,
- 10.48,
- 1.62,
- -5.63,
- -0.45,
- 3.5,
- 4.32,
- 6.2,
- 6.69,
- 6.81,
- 7.05,
- 7.54,
- 8.28,
- 8.86,
- 9.2,
- 9.28,
- 8.9,
- 8.11,
- 6.83,
- 4.97,
- 3.06,
- 0.85,
- -1.67,
- -2.32,
- -2.54,
- -4.68,
- -6.77,
- -8.0,
- -8.85,
- -8.83,
- -8.51,
- -8.29,
- -7.78,
- -6.12,
- -4.35,
- -3.08,
- -1.97,
- -1.14,
- -0.78,
- -0.28,
- -0.09,
- -0.11,
- -0.39,
- -0.91,
- -1.28,
- -1.33,
- -1.24,
- -1.38,
- -1.58,
- -1.49,
- -1.08,
- -0.64,
- -0.28,
- -0.08,
- 0.11,
- 0.02,
- 0.1,
- -0.19,
- -0.56,
- -0.77,
- -1.14,
- -1.52,
- -1.82,
- -1.91,
- -1.8,
- -1.57,
- -1.32,
- 1.24,
- 1.72,
- 1.84,
- 1.57,
- 1.22,
- 1.14,
- 1.39,
- 1.67,
- 1.83,
- 2.46,
- 2.72,
- 2.66,
- 1.59,
- 0.73,
- -0.08,
- -0.68,
- -0.9,
- -0.9,
- -0.98,
- -1.65,
- -2.61,
- -3.36,
- -3.98,
- -4.65,
- -5.06,
- -5.0,
- -4.41,
- -3.46,
- -2.29,
- -1.27,
- -0.55,
- -0.06,
- 0.33,
- 0.51,
- 0.54,
- -0.21,
- -1.56,
- -1.28,
- -0.08,
- 0.01,
- -0.1,
- 0.4,
- 0.86,
- 1.26,
- 1.74,
- 1.81,
- 1.15,
- 2.15,
- 1.89,
- -0.75,
- -0.08,
- -0.39,
- -0.87,
- -0.77,
- -0.35,
- 0.87,
- 3.19,
- 2.86,
- 3.61,
- 3.14,
- 2.62,
- 3.07,
- 1.97,
- 0.91,
- 1.56,
- 2.46,
- 4.51,
- 5.71,
- 9.2,
- 14.23,
- 16.84,
- 16.15,
- 14.56,
- 8.01,
- 3.69,
- 1.33,
- -0.47,
- -1.31,
- -1.71,
- -1.95,
- -2.11,
- -2.15,
- -1.7,
- -1.61,
- -1.58,
- -0.71,
- -0.86,
- -0.39,
- 0.21,
- 0.5,
- 2.36,
- 4.21,
- 5.55,
- 6.61,
- 6.01,
- 6.89,
- 9.43,
- 9.65,
- 11.78,
- 9.47,
- 5.46,
- 7.6,
- 5.73,
- 5.79,
- 8.26,
- 10.42,
- 11.6,
- 13.32,
- 14.77,
- 13.59,
- 13.75,
- 12.48,
- 5.68,
- 2.47,
- 3.33,
- 4.09,
- 3.58,
- 4.56,
- 4.24,
- 2.28,
- 2.59,
- 2.79,
- 2.28,
- 4.22,
- 6.1,
- 6.8,
- 6.7,
- 5.95,
- 4.47,
- 3.18,
- 1.29,
- 1.88,
- 2.64,
- 4.05,
- 5.0,
- 5.17,
- 6.38,
- 7.41,
- 9.13,
- 10.92,
- 12.13,
- 12.28,
- 10.29,
- 12.95,
- 13.09,
- 11.38,
- 11.96,
- 9.27,
- 1.99,
- -3.4,
- -6.47,
- -7.33,
- -8.1,
- -9.1,
- -9.74,
- -10.19,
- -9.92,
- -8.51,
- -6.83,
- -5.35,
- -4.09,
- -3.3,
- -3.27,
- -2.91,
- -2.42,
- -2.31,
- -1.91,
- -2.0,
- -2.46,
- -3.16,
- -2.94,
- -1.96,
- -0.73,
- 0.38,
- 1.23,
- 1.84,
- 2.83,
- 4.85,
- 6.47,
- 6.41,
- 6.72,
- 7.07,
- 8.02,
- 11.14,
- 12.57,
- 13.53,
- 14.1,
- 14.39,
- 14.5,
- 14.41,
- 15.0,
- 14.68,
- 10.88,
- 8.12,
- 4.53,
- 1.15,
- -0.76,
- -2.14,
- -3.05,
- -3.63,
- -3.86,
- -3.92,
- -4.04,
- -4.89,
- -5.58,
- -5.61,
- -5.52,
- -4.82,
- -3.59,
- -2.76,
- -2.12,
- -1.49,
- -0.94,
- 0.11,
- 1.14,
- 1.87,
- 2.45,
- 2.91,
- 3.31,
- 3.73,
- 4.02,
- 4.16,
- 4.25,
- 4.19,
- 3.86,
- 3.37,
- 2.75,
- 2.12,
- 1.5,
- 0.8,
- 0.03,
- -0.79,
- -1.54,
- -2.34,
- -3.22,
- -3.82,
- -4.18,
- -4.49,
- -4.79,
- -5.04,
- -5.31,
- -5.59,
- -5.86,
- -5.98,
- -5.91,
- -5.63,
- -5.26,
- -4.66,
- -3.68,
- -2.75,
- -2.08,
- -1.63,
- -1.31,
- -0.89,
- -0.19,
- 0.62,
- 1.53,
- 2.61,
- 3.77,
- 4.82,
- 5.59,
- 6.17,
- 6.59,
- 6.93,
- 7.26,
- 7.46,
- 7.52,
- 7.51,
- 7.31,
- 6.96,
- 6.45,
- 5.97,
- 5.55,
- 5.32,
- 4.93,
- 4.61,
- 4.56,
- 4.44,
- 4.11,
- 3.59,
- 3.31,
- 5.25,
- 7.17,
- 6.41,
- 5.8,
- 5.64,
- 5.72,
- 6.27,
- 7.0,
- 7.31,
- 6.74,
- 8.33,
- 5.63,
- 2.21,
- 0.7,
- 0.49,
- 1.25,
- 2.01,
- 3.54,
- 4.61,
- 5.94,
- 6.04,
- 6.73,
- 7.57,
- 8.24,
- 8.84,
- 9.33,
- 9.93,
- 10.44,
- 10.9,
- 11.17,
- 10.87,
- 10.11,
- 6.92,
- 1.29,
- -1.72,
- -2.94,
- -5.28,
- -7.95,
- -9.3,
- -9.6,
- -9.29,
- -9.05,
- -8.73,
- -8.06,
- -7.16,
- -6.25,
- -5.35,
- -4.26,
- -3.09,
- -2.17,
- -1.44,
- -0.89,
- -0.61,
- -0.65,
- -0.69,
- -0.79,
- -0.93,
- -1.07,
- -1.09,
- -1.03,
- -0.82,
- -0.39,
- 0.49,
- 1.8,
- 2.82,
- 3.04,
- 3.12,
- 3.41,
- 3.56,
- 3.78,
- 3.32,
- 2.92,
- 2.28,
- 1.45,
- 0.16,
- -0.21,
- 0.16,
- 0.58,
- 0.81,
- 0.44,
- 0.25,
- 0.29,
- 0.47,
- 0.34,
- 0.07,
- 0.11,
- -0.02,
- -0.61,
- -0.42,
- 0.77,
- 1.91,
- 2.63,
- 2.83,
- 3.02,
- 3.23,
- 3.36,
- 3.39,
- 3.27,
- 2.95,
- 2.29,
- 1.71,
- 1.49,
- 1.39,
- 1.32,
- 1.13,
- 0.42,
- -0.79,
- -1.7,
- -1.37,
- -1.04,
- -1.63,
- 0.99,
- 4.67,
- 4.87,
- 1.65,
- -1.03,
- -2.04,
- -1.7,
- -0.54,
- -0.77,
- -1.55,
- -1.82,
- 1.99,
- 4.93,
- 7.98,
- 9.58,
- 7.16,
- 6.12,
- 1.5,
- 0.65,
- 1.38,
- 3.11,
- 5.42,
- 8.16,
- 7.52,
- 6.37,
- 6.46,
- 7.44,
- 9.97,
- 9.87,
- 8.2,
- 9.1,
- 9.72,
- 9.42,
- 10.88,
- 13.61,
- 16.44,
- 19.66,
- 21.06,
- 20.03,
- 17.02,
- 13.82,
- 10.95,
- 5.24,
- 2.79,
- 0.35,
- -2.11,
- -4.19,
- -3.64,
- -1.32,
- 0.49,
- 1.89,
- 2.59,
- 2.68,
- 2.75,
- 3.28,
- 3.38,
- 3.55,
- 3.91,
- 3.62,
- 3.77,
- 4.47,
- 5.67,
- 6.12,
- 5.63,
- 6.89,
- 10.54,
- 11.16,
- 10.26,
- 7.7,
- 5.91,
- 6.58,
- 7.57,
- 8.71,
- 9.94,
- 10.7,
- 11.23,
- 12.35,
- 14.02,
- 14.64,
- 15.23,
- 14.26,
- 12.67,
- 11.41,
- 9.83,
- 8.01,
- 7.67,
- 7.02,
- 5.65,
- 4.86,
- 4.17,
- 3.96,
- 3.59,
- 4.08,
- 5.68,
- 6.6,
- 6.61,
- 6.03,
- 5.97,
- 4.69,
- 3.21,
- 2.75,
- 3.54,
- 4.39,
- 4.57,
- 4.82,
- 5.64,
- 6.41,
- 7.3,
- 8.02,
- 8.59,
- 8.0,
- 5.72,
- 6.46,
- 10.69,
- 9.45,
- 7.7,
- 5.77,
- 5.6,
- 6.32,
- 5.28,
- 2.49,
- 3.18,
- 4.56,
- 2.04,
- 0.45,
- 0.69,
- 0.91,
- 0.56,
- 0.13,
- -0.17,
- -0.44,
- -0.63,
- -0.89,
- -1.29,
- -1.73,
- -1.99,
- -1.96,
- -1.84,
- -1.59,
- -1.21,
- -0.57,
- 0.42,
- 1.26,
- 2.09,
- 2.57,
- 3.15,
- 4.09,
- 4.27,
- 5.94,
- 6.81,
- 7.11,
- 7.75,
- 8.56,
- 9.26,
- 9.82,
- 10.08,
- 10.24,
- 10.56,
- 10.85,
- 9.96,
- 5.69,
- 3.62,
- 1.92,
- -0.97,
- -2.81,
- -4.48,
- -4.79,
- -4.43,
- -4.39,
- -4.56,
- -4.76,
- -5.19,
- -5.21,
- -4.12,
- -3.47,
- -3.42,
- -3.72,
- -3.8,
- -3.72,
- -2.93,
- -1.87,
- -1.16,
- -0.5,
- 0.12,
- 0.54,
- 0.89,
- 1.09,
- 1.2,
- 1.23,
- 1.16,
- 0.91,
- 0.46,
- 0.04,
- -0.24,
- -0.4,
- -0.46,
- -0.46,
- -0.52,
- -0.69,
- -1.03,
- -1.48,
- -2.0,
- -2.59,
- -3.22,
- -3.76,
- -4.11,
- -4.41,
- -4.62,
- -4.73,
- -4.68,
- -4.6,
- -4.47,
- -4.18,
- -3.74,
- -3.1,
- -2.36,
- -1.57,
- -0.8,
- -0.1,
- 0.47,
- 0.98,
- 1.58,
- 2.26,
- 2.93,
- 3.62,
- 4.26,
- 4.79,
- 5.32,
- 5.84,
- 6.38,
- 6.88,
- 7.28,
- 7.64,
- 7.93,
- 8.13,
- 8.3,
- 8.29,
- 8.2,
- 8.31,
- 7.44,
- 5.44,
- 4.88,
- 4.42,
- 3.9,
- 3.35,
- 2.94,
- 2.77,
- 2.82,
- 3.11,
- 3.35,
- 3.42,
- 3.54,
- 3.69,
- 4.54,
- 5.91,
- 6.93,
- 7.52,
- 7.88,
- 6.78,
- 3.25,
- -1.89,
- -4.37,
- -0.15,
- 0.12,
- 2.74,
- 3.41,
- 3.94,
- 4.84,
- 5.94,
- 6.48,
- 7.47,
- 8.14,
- 8.45,
- 8.91,
- 9.45,
- 10.07,
- 10.62,
- 11.39,
- 12.44,
- 12.72,
- 12.61,
- 11.32,
- 6.36,
- 0.38,
- -3.47,
- -5.35,
- -6.37,
- -7.37,
- -8.15,
- -8.74,
- -8.89,
- -8.66,
- -7.87,
- -7.17,
- -6.24,
- -5.42,
- -4.49,
- -3.79,
- -3.16,
- -2.47,
- -1.96,
- -1.71,
- -1.36,
- -0.89,
- -0.93,
- -1.03,
- -1.07,
- -0.94,
- -0.53,
- 0.38,
- 0.97,
- 0.63,
- 0.53,
- 0.8,
- 1.0,
- 0.98,
- 0.83,
- 0.97,
- 1.06,
- 0.99,
- 0.88,
- 0.72,
- 0.61,
- 0.52,
- 0.55,
- 0.69,
- 0.7,
- 0.61,
- 1.04,
- 1.31,
- -0.47,
- -2.18,
- -1.91,
- -1.06,
- -0.39,
- 0.13,
- 0.8,
- 1.52,
- 2.01,
- 2.27,
- 2.54,
- 2.86,
- 3.06,
- 3.08,
- 3.24,
- 3.16,
- 2.85,
- 2.42,
- 1.89,
- 1.59,
- 1.56,
- 2.21,
- 2.75,
- 1.05,
- -1.62,
- -2.8,
- -3.41,
- -4.27,
- -2.94,
- -1.92,
- -3.16,
- 0.19,
- 4.27,
- 4.96,
- 4.53,
- 4.75,
- 4.9,
- 3.03,
- 1.05,
- 1.55,
- 1.7,
- 2.19,
- 3.3,
- 4.15,
- 6.97,
- 9.44,
- 9.66,
- 5.76,
- 2.89,
- 1.59,
- 1.55,
- 2.92,
- 5.52,
- 6.56,
- 6.48,
- 7.12,
- 8.46,
- 9.91,
- 10.19,
- 9.07,
- 9.04,
- 9.41,
- 9.14,
- 10.25,
- 11.22,
- 10.9,
- 8.6,
- 7.02,
- 11.74,
- 12.87,
- 11.73,
- 10.27,
- 6.55,
- 2.99,
- 2.56,
- 3.02,
- 2.24,
- 0.17,
- -0.83,
- -1.01,
- 0.27,
- 1.49,
- 1.78,
- 1.61,
- 1.58,
- 2.21,
- 2.44,
- 2.66,
- 2.9,
- 2.73,
- 2.81,
- 3.54,
- 4.38,
- 5.26,
- 6.4,
- 7.09,
- 7.27,
- 8.44,
- 7.89,
- 6.3,
- 5.76,
- 5.71,
- 6.46,
- 7.51,
- 9.1,
- 9.59,
- 9.57,
- 10.02,
- 10.89,
- 11.86,
- 12.39,
- 11.97,
- 10.97,
- 9.88,
- 8.96,
- 7.99,
- 6.91,
- 5.98,
- 5.1,
- 4.24,
- 3.84,
- 3.77,
- 3.76,
- 4.06,
- 4.63,
- 4.68,
- 4.69,
- 4.73,
- 4.21,
- 3.84,
- 3.84,
- 3.34,
- 3.65,
- 4.04,
- 3.73,
- 3.81,
- 4.48,
- 5.77,
- 7.01,
- 8.25,
- 8.59,
- 7.01,
- 4.23,
- 2.25,
- 2.08,
- 2.91,
- 2.55,
- 1.34,
- 0.8,
- 1.12,
- 1.02,
- 0.23,
- -0.44,
- 0.36,
- 2.2,
- 2.55,
- 3.97,
- 4.16,
- 3.54,
- 2.78,
- 2.08,
- 1.25,
- 0.19,
- -0.8,
- -1.53,
- -1.77,
- -1.82,
- -1.61,
- -1.12,
- -0.29,
- 0.71,
- 1.46,
- 2.33,
- 3.23,
- 4.06,
- 4.78,
- 5.71,
- 6.72,
- 7.5,
- 8.24,
- 7.91,
- 7.91,
- 8.22,
- 8.71,
- 9.33,
- 9.3,
- 9.19,
- 9.29,
- 9.35,
- 8.01,
- 3.63,
- 1.44,
- 0.38,
- -1.61,
- -3.32,
- -4.79,
- -5.55,
- -5.55,
- -5.4,
- -5.12,
- -4.95,
- -4.63,
- -4.13,
- -3.82,
- -3.68,
- -3.48,
- -3.48,
- -3.18,
- -1.93,
- -1.22,
- -0.83,
- -0.62,
- -0.73,
- -1.16,
- -0.99,
- -0.7,
- -0.6,
- -0.56,
- -0.27,
- 0.04,
- -0.37,
- -1.11,
- -1.3,
- -1.54,
- -1.76,
- -1.93,
- -2.04,
- -2.12,
- -2.17,
- -2.2,
- -2.27,
- -2.41,
- -2.61,
- -2.89,
- -3.21,
- -3.53,
- -3.79,
- -3.95,
- -3.94,
- -3.78,
- -3.44,
- -2.96,
- -2.37,
- -1.75,
- -1.14,
- -0.54,
- 0.01,
- 0.52,
- 1.06,
- 1.64,
- 2.31,
- 3.04,
- 3.76,
- 4.4,
- 5.02,
- 5.32,
- 5.91,
- 6.4,
- 6.88,
- 7.35,
- 7.81,
- 8.26,
- 8.68,
- 8.06,
- 7.14,
- 6.21,
- 5.41,
- 4.43,
- 4.49,
- 4.84,
- 4.72,
- 4.3,
- 3.97,
- 3.64,
- 3.42,
- 3.21,
- 2.99,
- 2.82,
- 2.54,
- 2.66,
- 2.89,
- 2.92,
- 3.08,
- 4.07,
- 4.53,
- 6.35,
- 9.01,
- 7.36,
- 3.69,
- 2.91,
- 0.1,
- -3.34,
- 1.4,
- 2.36,
- -1.9,
- 0.38,
- 6.27,
- 5.8,
- 5.78,
- 6.8,
- 7.42,
- 8.13,
- 8.72,
- 8.75,
- 8.99,
- 9.45,
- 10.06,
- 10.47,
- 10.82,
- 11.34,
- 11.06,
- 9.06,
- 6.41,
- 3.82,
- 0.93,
- -1.97,
- -3.98,
- -5.28,
- -6.6,
- -7.48,
- -7.91,
- -7.86,
- -7.5,
- -6.74,
- -6.15,
- -5.75,
- -5.13,
- -4.5,
- -3.79,
- -3.11,
- -2.63,
- -2.18,
- -1.64,
- -1.13,
- -0.76,
- -0.58,
- -0.47,
- -0.3,
- -0.2,
- -0.22,
- -0.18,
- -0.02,
- 0.16,
- 0.24,
- 0.19,
- 0.15,
- -0.01,
- -0.3,
- -0.7,
- -0.98,
- -1.04,
- -1.15,
- -1.29,
- -1.32,
- -1.32,
- -1.23,
- -0.89,
- -0.06,
- -1.44,
- -0.63,
- -0.25,
- -0.16,
- 0.31,
- 1.09,
- 1.78,
- 1.85,
- 2.12,
- 2.4,
- 2.84,
- 3.1,
- 3.03,
- 3.15,
- 3.1,
- 2.35,
- 3.02,
- 3.71,
- 3.91,
- 4.79,
- 3.71,
- 2.9,
- 3.94,
- 4.14,
- 4.7,
- 4.64,
- 3.45,
- 1.91,
- 0.55,
- 0.14,
- 1.05,
- 2.52,
- 3.64,
- 1.31,
- 0.87,
- 5.26,
- 8.07,
- 11.76,
- 12.14,
- 3.31,
- -1.35,
- -0.81,
- -0.44,
- -0.46,
- -0.44,
- 0.61,
- 2.24,
- 3.97,
- 4.83,
- 5.23,
- 5.22,
- 4.91,
- 4.25,
- 3.8,
- 4.0,
- 5.14,
- 6.1,
- 6.95,
- 7.9,
- 8.85,
- 9.52,
- 10.05,
- 11.12,
- 11.0,
- 8.78,
- 8.21,
- 8.18,
- 5.45,
- 0.8,
- 3.73,
- 9.59,
- 10.87,
- 10.34,
- 4.5,
- 1.32,
- 3.48,
- 1.22,
- -0.95,
- -1.31,
- -1.08,
- -0.75,
- -1.06,
- -1.36,
- -1.07,
- -0.07,
- 0.54,
- 0.5,
- 0.57,
- 0.62,
- 0.56,
- 0.57,
- 0.67,
- 1.17,
- 1.72,
- 2.31,
- 3.11,
- 3.65,
- 4.24,
- 5.3,
- 6.02,
- 6.05,
- 6.01,
- 5.83,
- 5.71,
- 6.45,
- 7.53,
- 8.82,
- 9.96,
- 9.82,
- 9.78,
- 9.97,
- 10.05,
- 10.33,
- 10.46,
- 9.95,
- 8.98,
- 8.3,
- 7.83,
- 7.1,
- 6.1,
- 5.17,
- 4.43,
- 3.66,
- 3.05,
- 2.87,
- 2.99,
- 3.46,
- 4.12,
- 3.8,
- 2.49,
- 2.38,
- 2.88,
- 3.25,
- 4.04,
- 4.49,
- 4.36,
- 3.77,
- 3.83,
- 4.74,
- 5.87,
- 6.47,
- 6.76,
- 6.65,
- 6.1,
- 5.55,
- 4.68,
- 3.26,
- 0.99,
- -0.89,
- -1.95,
- -2.46,
- -2.46,
- -2.73,
- -4.19,
- -5.53,
- -4.69,
- -3.83,
- -3.28,
- -2.4,
- 0.78,
- 2.13,
- -0.04,
- 0.52,
- 2.55,
- 2.59,
- 1.3,
- 0.78,
- 0.2,
- -0.77,
- -0.73,
- -0.19,
- 0.89,
- 2.01,
- 2.97,
- 3.63,
- 4.24,
- 4.91,
- 5.64,
- 6.38,
- 7.04,
- 7.88,
- 8.52,
- 8.63,
- 8.72,
- 9.02,
- 9.05,
- 8.98,
- 8.88,
- 8.86,
- 8.85,
- 8.49,
- 6.49,
- 2.09,
- -0.54,
- -1.21,
- -2.31,
- -4.12,
- -5.98,
- -6.75,
- -6.61,
- -6.52,
- -6.21,
- -5.76,
- -5.44,
- -4.95,
- -4.66,
- -4.49,
- -3.98,
- -3.39,
- -2.76,
- -2.41,
- -1.6,
- -0.89,
- -0.49,
- -0.36,
- -0.76,
- -1.06,
- -0.95,
- -0.2,
- 0.55,
- 0.26,
- -0.27,
- -0.86,
- -2.09,
- -2.15,
- -1.41,
- -2.5,
- -2.59,
- -2.23,
- -2.52,
- -2.32,
- -2.18,
- -2.03,
- -1.91,
- -1.9,
- -2.0,
- -2.06,
- -1.86,
- -1.66,
- -1.58,
- -1.4,
- -1.14,
- -0.65,
- 0.0,
- 0.57,
- 1.2,
- 1.85,
- 2.49,
- 2.68,
- 2.18,
- 1.96,
- 2.3,
- 3.16,
- 3.74,
- 3.97,
- 3.96,
- 3.89,
- 3.76,
- 3.91,
- 3.94,
- 4.0,
- 3.86,
- 3.93,
- 4.23,
- 4.7,
- 5.31,
- 5.18,
- 4.9,
- 4.91,
- 4.68,
- 4.5,
- 4.38,
- 4.24,
- 3.95,
- 3.45,
- 3.05,
- 2.61,
- 2.35,
- 2.37,
- 2.35,
- 2.69,
- 2.78,
- 2.53,
- 2.64,
- 1.76,
- 1.95,
- 1.21,
- -1.42,
- -4.28,
- -5.68,
- -2.26,
- 1.58,
- 0.03,
- 1.82,
- 2.28,
- 1.63,
- 2.7,
- -0.43,
- 1.3,
- 5.3,
- 6.69,
- 7.0,
- 7.14,
- 7.3,
- 7.5,
- 7.67,
- 7.91,
- 8.11,
- 8.26,
- 8.56,
- 8.89,
- 9.15,
- 9.08,
- 8.83,
- 8.23,
- 6.59,
- 4.12,
- 1.5,
- -0.97,
- -2.53,
- -3.55,
- -4.8,
- -5.95,
- -6.48,
- -6.52,
- -6.62,
- -6.35,
- -5.92,
- -5.22,
- -4.6,
- -4.03,
- -3.36,
- -2.77,
- -2.28,
- -1.77,
- -1.39,
- -1.15,
- -1.1,
- -1.11,
- -1.08,
- -1.16,
- -1.24,
- -1.1,
- -0.7,
- -0.16,
- 0.28,
- 0.8,
- 0.92,
- 0.48,
- 0.04,
- -0.25,
- -0.8,
- -1.73,
- -2.63,
- -3.35,
- -3.43,
- -3.17,
- -3.33,
- -3.27,
- -2.69,
- -2.1,
- -2.91,
- -1.33,
- 1.95,
- 4.45,
- 5.2,
- 6.25,
- 6.26,
- 4.59,
- 4.21,
- 5.07,
- 5.83,
- 6.13,
- 6.48,
- 7.79,
- 6.75,
- 5.64,
- 5.57,
- 5.74,
- 6.19,
- 6.03,
- 4.75,
- 3.64,
- 4.02,
- 4.91,
- 5.95,
- 5.61,
- 4.69,
- 4.36,
- 3.58,
- 2.85,
- 2.84,
- 2.53,
- 2.43,
- 2.03,
- 1.83,
- 3.67,
- 5.89,
- 7.28,
- 7.38,
- 6.67,
- 4.98,
- 3.91,
- 3.5,
- 3.27,
- 2.89,
- 2.57,
- 2.53,
- 3.04,
- 3.39,
- 3.77,
- 4.57,
- 5.13,
- 5.28,
- 5.38,
- 5.7,
- 5.9,
- 5.9,
- 5.97,
- 5.74,
- 5.47,
- 5.31,
- 5.13,
- 6.39,
- 9.09,
- 10.49,
- 9.86,
- 8.82,
- 8.85,
- 8.15,
- 7.46,
- 6.94,
- 2.54,
- -3.43,
- -3.66,
- -3.65,
- -3.65,
- -2.89,
- -3.02,
- -3.51,
- -3.61,
- -3.1,
- -2.52,
- -2.34,
- -2.24,
- -1.81,
- -1.18,
- -0.77,
- -0.65,
- -0.71,
- -0.8,
- -0.78,
- -0.86,
- -0.56,
- 0.23,
- 1.14,
- 1.98,
- 2.62,
- 3.1,
- 3.89,
- 4.42,
- 4.48,
- 4.5,
- 4.63,
- 4.8,
- 5.28,
- 6.02,
- 6.52,
- 6.87,
- 7.04,
- 6.82,
- 6.63,
- 6.83,
- 7.29,
- 7.67,
- 7.6,
- 7.29,
- 6.94,
- 6.41,
- 5.59,
- 4.85,
- 4.07,
- 3.29,
- 2.56,
- 1.94,
- 1.55,
- 1.48,
- 1.87,
- 2.49,
- 2.84,
- 2.69,
- 2.15,
- 1.94,
- 2.27,
- 3.1,
- 3.78,
- 4.2,
- 4.42,
- 4.71,
- 5.17,
- 5.46,
- 6.04,
- 6.44,
- 5.96,
- 5.59,
- 5.78,
- 5.71,
- 5.43,
- 4.71,
- 3.3,
- 1.91,
- 0.5,
- -1.24,
- -2.4,
- -2.97,
- -3.69,
- -4.26,
- -4.0,
- -3.45,
- -1.69,
- 1.88,
- 4.7,
- 1.59,
- -1.93,
- -1.22,
- 0.91,
- 1.93,
- -0.53,
- -2.39,
- -1.57,
- 0.14,
- 1.57,
- 2.18,
- 2.81,
- 3.2,
- 3.91,
- 4.95,
- 5.81,
- 6.57,
- 7.25,
- 7.84,
- 8.46,
- 8.91,
- 9.2,
- 9.35,
- 9.27,
- 9.2,
- 9.0,
- 9.02,
- 9.18,
- 8.83,
- 6.24,
- 1.32,
- -1.7,
- -2.28,
- -3.92,
- -5.26,
- -5.92,
- -6.75,
- -7.43,
- -7.33,
- -6.88,
- -6.4,
- -5.82,
- -5.32,
- -5.03,
- -4.71,
- -3.59,
- -2.38,
- -2.23,
- -2.1,
- -1.67,
- -1.36,
- -1.13,
- -0.7,
- -0.28,
- 0.01,
- 0.28,
- 0.49,
- 0.6,
- 0.63,
- 0.53,
- 0.33,
- 0.41,
- 0.59,
- 0.61,
- 0.68,
- 0.49,
- 0.37,
- 0.54,
- 0.42,
- 0.42,
- 0.7,
- 0.99,
- 1.17,
- 1.32,
- 1.14,
- 0.71,
- 0.42,
- 0.4,
- 0.47,
- 0.42,
- 0.15,
- -0.15,
- -0.27,
- -0.3,
- -0.16,
- -0.09,
- -0.1,
- -0.1,
- 0.04,
- 0.36,
- 0.81,
- 1.21,
- 1.59,
- 2.32,
- 3.21,
- 3.64,
- 4.23,
- 5.0,
- 5.02,
- 4.63,
- 4.21,
- 4.01,
- 4.05,
- 4.3,
- 4.47,
- 4.65,
- 4.78,
- 4.67,
- 4.52,
- 4.44,
- 4.06,
- 3.58,
- 3.23,
- 2.93,
- 2.67,
- 2.52,
- 2.48,
- 2.53,
- 2.56,
- 2.26,
- 2.27,
- 2.0,
- 1.44,
- 0.88,
- 0.13,
- -1.99,
- -3.44,
- -2.87,
- -4.49,
- -2.52,
- -1.51,
- -3.03,
- -2.53,
- -2.27,
- 1.36,
- 0.33,
- -1.14,
- 1.99,
- 6.44,
- 7.25,
- 6.94,
- 6.73,
- 6.81,
- 6.66,
- 6.67,
- 6.85,
- 6.95,
- 6.92,
- 6.68,
- 6.46,
- 6.4,
- 6.47,
- 6.47,
- 6.41,
- 5.91,
- 5.05,
- 3.81,
- 2.09,
- -0.02,
- -2.09,
- -3.43,
- -4.3,
- -5.03,
- -5.49,
- -5.48,
- -5.35,
- -4.91,
- -4.18,
- -3.59,
- -3.04,
- -2.46,
- -2.06,
- -1.78,
- -1.48,
- -1.25,
- -1.02,
- -0.86,
- -1.09,
- -1.43,
- -1.42,
- -0.99,
- -0.3,
- 0.41,
- 0.79,
- 1.38,
- 1.16,
- -1.38,
- -3.4,
- -2.38,
- -1.98,
- -1.53,
- 1.16,
- 1.69,
- 1.41,
- 1.01,
- 0.48,
- 0.7,
- -0.04,
- 2.82,
- 4.29,
- 4.7,
- 3.63,
- 4.16,
- 4.79,
- 6.67,
- 7.19,
- 6.32,
- 5.04,
- 5.33,
- 3.55,
- 3.32,
- 7.31,
- 9.26,
- 7.91,
- 7.24,
- 8.87,
- 8.2,
- 7.08,
- 6.97,
- 5.17,
- 2.91,
- 3.16,
- 4.79,
- 4.97,
- 7.65,
- 13.48,
- 11.46,
- 8.71,
- 6.14,
- 5.13,
- 5.3,
- 4.89,
- 4.73,
- 5.37,
- 6.27,
- 7.15,
- 7.65,
- 7.81,
- 7.62,
- 7.15,
- 6.71,
- 6.4,
- 5.92,
- 5.26,
- 4.58,
- 4.16,
- 4.07,
- 4.19,
- 4.36,
- 4.74,
- 5.37,
- 5.73,
- 5.74,
- 5.62,
- 5.63,
- 5.95,
- 6.63,
- 6.67,
- 6.2,
- 6.14,
- 6.59,
- 7.57,
- 9.29,
- 10.41,
- 10.03,
- 9.81,
- 11.3,
- 8.24,
- 1.98,
- -1.72,
- -3.35,
- -3.19,
- -3.13,
- -2.88,
- -2.72,
- -3.11,
- -3.46,
- -3.98,
- -4.52,
- -4.62,
- -4.42,
- -3.96,
- -3.71,
- -3.68,
- -3.63,
- -3.39,
- -2.98,
- -2.52,
- -2.19,
- -1.82,
- -1.49,
- -1.36,
- -1.35,
- -0.99,
- -0.37,
- 0.15,
- 0.75,
- 1.51,
- 2.23,
- 2.63,
- 2.61,
- 2.56,
- 2.92,
- 3.56,
- 4.19,
- 4.65,
- 5.05,
- 5.23,
- 5.35,
- 5.38,
- 5.42,
- 5.48,
- 5.53,
- 5.52,
- 5.38,
- 5.31,
- 5.16,
- 4.83,
- 4.46,
- 3.9,
- 3.13,
- 2.12,
- 1.09,
- 0.43,
- -0.1,
- -0.57,
- -0.78,
- -0.81,
- -0.73,
- -0.69,
- -0.46,
- 0.4,
- 1.49,
- 2.46,
- 3.22,
- 3.9,
- 4.32,
- 4.42,
- 4.51,
- 4.94,
- 5.38,
- 5.44,
- 5.17,
- 4.86,
- 4.75,
- 4.74,
- 4.67,
- 4.35,
- 3.67,
- 2.84,
- 1.91,
- 1.15,
- 0.41,
- -0.57,
- -1.62,
- -2.46,
- -2.32,
- -0.69,
- 1.03,
- 2.21,
- 5.1,
- 3.19,
- 0.98,
- 3.1,
- 2.22,
- -1.12,
- -2.4,
- -0.23,
- -0.24,
- -0.3,
- 0.87,
- 1.59,
- 2.93,
- 3.86,
- 4.49,
- 4.83,
- 5.91,
- 6.86,
- 7.01,
- 7.4,
- 8.32,
- 8.52,
- 8.38,
- 8.74,
- 8.94,
- 8.99,
- 8.97,
- 9.04,
- 8.96,
- 7.84,
- 5.24,
- 1.21,
- -2.42,
- -4.37,
- -5.51,
- -6.46,
- -7.12,
- -7.35,
- -7.04,
- -6.61,
- -6.38,
- -6.4,
- -6.57,
- -6.84,
- -6.3,
- -5.63,
- -5.16,
- -3.88,
- -3.08,
- -2.95,
- -2.92,
- -2.63,
- -1.97,
- -1.19,
- -0.98,
- -0.97,
- -0.9,
- -0.68,
- -0.49,
- -0.34,
- -0.3,
- -0.34,
- -0.37,
- -0.26,
- 0.1,
- 0.48,
- 0.74,
- 0.9,
- 1.18,
- 1.45,
- 1.59,
- 1.42,
- 1.04,
- 0.53,
- 0.0,
- -0.41,
- -0.57,
- -0.55,
- -0.48,
- -0.42,
- -0.4,
- -0.38,
- -0.37,
- -0.32,
- -0.16,
- 0.09,
- 0.41,
- 0.51,
- 0.8,
- 1.24,
- 1.97,
- 2.99,
- 3.72,
- 4.05,
- 4.25,
- 4.71,
- 5.54,
- 6.53,
- 6.98,
- 6.97,
- 6.21,
- 4.94,
- 4.18,
- 4.6,
- 5.41,
- 5.83,
- 5.53,
- 4.74,
- 4.05,
- 3.85,
- 3.57,
- 3.35,
- 2.97,
- 2.49,
- 1.96,
- 1.63,
- 1.42,
- 1.24,
- 1.51,
- 2.0,
- 1.32,
- 0.77,
- -0.17,
- -1.76,
- -1.82,
- -3.86,
- -6.94,
- -8.68,
- -8.6,
- -6.41,
- -1.05,
- -0.15,
- -1.5,
- -2.12,
- -0.64,
- -1.48,
- -1.51,
- 0.83,
- 3.79,
- 5.66,
- 6.22,
- 5.66,
- 5.66,
- 5.76,
- 5.55,
- 5.27,
- 5.11,
- 4.98,
- 4.83,
- 4.63,
- 4.49,
- 4.4,
- 4.29,
- 4.01,
- 3.66,
- 3.29,
- 2.86,
- 2.26,
- 1.48,
- 0.63,
- -0.4,
- -1.4,
- -2.22,
- -2.87,
- -3.21,
- -3.2,
- -3.09,
- -3.02,
- -2.88,
- -2.8,
- -2.51,
- -2.32,
- -2.07,
- -1.92,
- -1.88,
- -1.69,
- -1.65,
- -1.44,
- -1.55,
- -1.44,
- -0.92,
- -0.3,
- 0.05,
- 0.9,
- 0.2,
- -2.47,
- -4.22,
- -5.74,
- -5.48,
- -2.89,
- -0.6,
- 0.27,
- 0.18,
- 0.71,
- 3.81,
- 5.51,
- 4.49,
- 3.11,
- 1.22,
- -3.29,
- -3.31,
- -2.92,
- -2.67,
- -2.36,
- -1.67,
- 0.15,
- 1.96,
- 2.72,
- 2.87,
- 2.98,
- 3.02,
- 3.66,
- 4.72,
- 6.07,
- 6.81,
- 6.98,
- 7.37,
- 7.99,
- 8.48,
- 9.0,
- 8.99,
- 8.13,
- 6.96,
- 6.46,
- 8.14,
- 10.51,
- 11.77,
- 11.75,
- 9.34,
- 7.14,
- 7.13,
- 7.26,
- 6.39,
- 5.31,
- 4.73,
- 5.22,
- 6.25,
- 6.97,
- 7.13,
- 7.26,
- 7.32,
- 7.15,
- 6.97,
- 6.79,
- 6.58,
- 6.39,
- 6.13,
- 5.96,
- 5.91,
- 5.89,
- 5.91,
- 5.88,
- 5.84,
- 5.85,
- 5.98,
- 6.24,
- 6.24,
- 6.48,
- 7.77,
- 8.82,
- 9.13,
- 9.27,
- 8.51,
- 8.5,
- 11.3,
- 8.64,
- -0.04,
- -0.62,
- -0.71,
- -1.99,
- -2.99,
- -3.56,
- -3.47,
- -3.88,
- -4.06,
- -3.46,
- -3.41,
- -3.75,
- -3.95,
- -4.26,
- -4.59,
- -4.8,
- -4.87,
- -4.91,
- -4.85,
- -4.69,
- -4.52,
- -4.27,
- -4.05,
- -3.99,
- -3.9,
- -3.67,
- -3.31,
- -2.9,
- -2.4,
- -1.82,
- -1.12,
- -0.4,
- 0.36,
- 1.15,
- 1.11,
- 0.03,
- -0.04,
- 1.53,
- 3.05,
- 3.82,
- 4.06,
- 4.28,
- 4.55,
- 4.66,
- 4.62,
- 4.56,
- 4.46,
- 4.46,
- 4.54,
- 4.55,
- 4.3,
- 4.03,
- 3.74,
- 3.36,
- 2.9,
- 2.37,
- 1.83,
- 1.5,
- 1.4,
- 1.39,
- 1.24,
- 0.92,
- 0.92,
- 1.42,
- 2.08,
- 2.42,
- 2.48,
- 2.58,
- 2.97,
- 3.44,
- 3.75,
- 3.69,
- 3.46,
- 3.48,
- 3.54,
- 3.48,
- 3.36,
- 3.21,
- 3.07,
- 2.9,
- 2.69,
- 2.46,
- 2.19,
- 1.7,
- 1.11,
- 0.45,
- -0.41,
- -1.41,
- -2.21,
- -2.58,
- -2.7,
- -2.15,
- -0.23,
- 2.32,
- 2.54,
- -0.51,
- -4.79,
- -2.61,
- -1.09,
- -4.25,
- -2.36,
- -1.93,
- -3.33,
- -0.67,
- 1.24,
- 1.66,
- 2.5,
- 3.45,
- 4.15,
- 4.85,
- 5.47,
- 6.01,
- 6.72,
- 7.5,
- 8.01,
- 8.22,
- 8.37,
- 8.25,
- 7.92,
- 7.83,
- 7.79,
- 7.74,
- 7.69,
- 7.5,
- 6.96,
- 5.57,
- 3.23,
- 0.63,
- -1.46,
- -2.97,
- -4.22,
- -5.15,
- -5.62,
- -5.73,
- -5.51,
- -5.03,
- -4.53,
- -4.18,
- -3.84,
- -3.45,
- -3.14,
- -3.0,
- -2.72,
- -2.39,
- -2.0,
- -1.69,
- -1.35,
- -1.25,
- -1.29,
- -1.24,
- -1.11,
- -1.09,
- -1.13,
- -1.17,
- -1.08,
- -0.8,
- -0.42,
- -0.1,
- 0.08,
- 0.09,
- -0.03,
- -0.13,
- -0.2,
- -0.02,
- 0.69,
- 1.54,
- -0.6,
- -2.64,
- -2.07,
- -1.61,
- -1.41,
- -1.01,
- -0.77,
- -0.81,
- -0.86,
- -0.85,
- -0.78,
- -0.47,
- 0.19,
- 1.22,
- 2.17,
- 2.64,
- 2.55,
- 2.63,
- 3.47,
- 4.02,
- 3.96,
- 4.03,
- 4.06,
- 4.24,
- 5.06,
- 4.38,
- 4.15,
- 5.0,
- 4.21,
- 2.29,
- 1.38,
- 2.09,
- 2.39,
- 0.47,
- -1.47,
- -0.75,
- 0.94,
- 0.9,
- 0.76,
- 0.69,
- 1.13,
- 1.06,
- 0.83,
- 2.04,
- 2.99,
- 2.82,
- 2.26,
- 0.0,
- 0.52,
- 4.38,
- 5.31,
- 3.32,
- 2.11,
- -0.99,
- -4.02,
- -3.67,
- -3.17,
- -3.28,
- -4.83,
- -6.29,
- -6.22,
- -5.05,
- -1.99,
- 0.48,
- -0.77,
- 0.41,
- 5.34,
- 8.4,
- 7.25,
- 5.65,
- 4.93,
- 4.74,
- 4.6,
- 4.46,
- 4.22,
- 4.04,
- 3.77,
- 3.39,
- 2.98,
- 2.59,
- 2.16,
- 1.71,
- 1.32,
- 0.94,
- 0.5,
- -0.01,
- -0.59,
- -1.15,
- -1.62,
- -1.98,
- -2.2,
- -2.27,
- -2.4,
- -2.61,
- -2.8,
- -3.05,
- -3.13,
- -3.21,
- -3.11,
- -2.94,
- -2.79,
- -2.57,
- -2.48,
- -2.21,
- -2.33,
- -2.81,
- -2.92,
- -2.25,
- -1.75,
- -2.13,
- -2.54,
- -0.31,
- 1.28,
- 0.26,
- -1.74,
- -4.41,
- -5.41,
- -4.83,
- -4.83,
- -4.4,
- -1.95,
- 0.84,
- 1.03,
- 3.02,
- 7.28,
- 7.31,
- 2.93,
- 0.48,
- -1.35,
- -2.29,
- -2.81,
- -2.87,
- -2.55,
- -2.08,
- -1.57,
- -0.95,
- -0.28,
- 0.35,
- 0.88,
- 1.41,
- 2.13,
- 2.92,
- 3.49,
- 3.76,
- 3.98,
- 4.36,
- 4.85,
- 5.27,
- 5.56,
- 5.71,
- 5.76,
- 5.78,
- 6.28,
- 7.12,
- 7.8,
- 8.4,
- 8.44,
- 7.63,
- 6.99,
- 6.83,
- 6.48,
- 5.87,
- 5.56,
- 5.77,
- 6.08,
- 6.3,
- 6.53,
- 6.77,
- 7.08,
- 7.18,
- 7.11,
- 7.18,
- 7.31,
- 7.41,
- 7.53,
- 7.61,
- 7.62,
- 7.57,
- 7.45,
- 7.2,
- 7.11,
- 7.24,
- 7.27,
- 7.16,
- 7.21,
- 7.73,
- 8.95,
- 10.68,
- 12.37,
- 13.29,
- 14.25,
- 15.87,
- 13.58,
- 7.07,
- 2.25,
- -1.15,
- -3.14,
- -3.93,
- -3.83,
- -3.5,
- -3.27,
- -3.61,
- -4.24,
- -4.29,
- -4.3,
- -4.46,
- -4.63,
- -4.72,
- -4.96,
- -5.02,
- -4.92,
- -4.91,
- -5.06,
- -5.14,
- -5.1,
- -4.99,
- -4.8,
- -4.58,
- -4.4,
- -4.04,
- -3.51,
- -2.88,
- -2.27,
- -1.77,
- -1.25,
- -0.66,
- -0.17,
- 0.37,
- 0.8,
- 0.0,
- -1.33,
- -0.55,
- 1.78,
- 3.28,
- 3.72,
- 3.84,
- 3.89,
- 3.94,
- 3.83,
- 3.66,
- 3.51,
- 3.33,
- 3.19,
- 3.08,
- 2.97,
- 2.9,
- 2.82,
- 2.68,
- 2.55,
- 2.42,
- 2.27,
- 2.07,
- 1.87,
- 1.59,
- 1.24,
- 1.07,
- 1.07,
- 0.98,
- 0.96,
- 1.01,
- 1.22,
- 1.66,
- 1.76,
- 1.71,
- 1.89,
- 2.07,
- 2.28,
- 2.15,
- 1.85,
- 1.72,
- 1.61,
- 1.42,
- 1.11,
- 0.75,
- 0.33,
- -0.22,
- -0.76,
- -1.22,
- -1.58,
- -1.84,
- -2.13,
- -2.5,
- -3.05,
- -3.53,
- -3.38,
- -2.71,
- -3.9,
- -6.03,
- -7.47,
- -3.64,
- 1.59,
- 2.93,
- 0.34,
- 0.65,
- 0.12,
- -0.05,
- -0.84,
- -0.57,
- 0.45,
- 1.5,
- 2.2,
- 2.67,
- 3.27,
- 3.88,
- 4.41,
- 4.72,
- 5.08,
- 5.66,
- 6.04,
- 6.35,
- 6.61,
- 6.9,
- 7.06,
- 6.92,
- 6.67,
- 6.73,
- 6.93,
- 6.76,
- 6.14,
- 5.41,
- 4.71,
- 3.86,
- 2.78,
- 1.71,
- 0.73,
- -0.29,
- -1.29,
- -2.11,
- -2.61,
- -2.67,
- -2.44,
- -2.27,
- -2.19,
- -2.02,
- -1.74,
- -1.37,
- -1.27,
- -1.44,
- -1.63,
- -1.52,
- -1.56,
- -1.62,
- -1.7,
- -1.75,
- -1.73,
- -1.51,
- -0.99,
- -0.35,
- 0.27,
- 0.63,
- 0.43,
- -0.05,
- -0.24,
- -0.11,
- -0.45,
- -1.16,
- -1.83,
- -2.52,
- -2.37,
- -1.7,
- 0.04,
- 2.6,
- 3.71,
- 3.79,
- 4.23,
- 4.76,
- 3.98,
- 3.36,
- 3.28,
- 2.38,
- 0.97,
- 1.46,
- 3.53,
- 7.21,
- 7.39,
- 3.03,
- -1.14,
- 0.12,
- 3.58,
- 6.08,
- 5.54,
- 4.41,
- 3.5,
- 1.98,
- 1.11,
- 3.09,
- 4.43,
- 5.17,
- 6.38,
- 7.59,
- 7.33,
- 5.39,
- 3.59,
- 4.79,
- 6.76,
- 7.61,
- 7.89,
- 8.86,
- 10.4,
- 11.92,
- 12.6,
- 12.73,
- 13.58,
- 13.61,
- 11.24,
- 9.54,
- 10.27,
- 12.7,
- 14.58,
- 16.47,
- 16.96,
- 15.53,
- 10.44,
- 5.06,
- 5.15,
- 4.9,
- 1.47,
- -0.7,
- -0.73,
- 0.01,
- 1.15,
- 0.69,
- 0.66,
- 0.93,
- 0.24,
- 3.09,
- 8.4,
- 8.83,
- 7.7,
- 7.04,
- 6.56,
- 5.93,
- 5.22,
- 4.73,
- 4.42,
- 4.09,
- 3.82,
- 3.14,
- 2.27,
- 1.62,
- 1.09,
- 0.55,
- -0.05,
- -0.77,
- -1.53,
- -2.26,
- -2.86,
- -3.24,
- -3.48,
- -3.58,
- -3.88,
- -3.89,
- -4.0,
- -4.01,
- -3.98,
- -4.01,
- -3.92,
- -3.63,
- -3.57,
- -3.91,
- -4.25,
- -4.37,
- -4.07,
- -4.05,
- -3.98,
- -3.32,
- -2.81,
- -2.17,
- -0.69,
- 0.99,
- 0.68,
- -0.95,
- -2.14,
- -2.9,
- -3.71,
- -3.93,
- -3.69,
- -3.03,
- -1.65,
- 0.06,
- 0.97,
- 0.71,
- 0.56,
- 1.86,
- 3.28,
- 3.9,
- -3.44,
- -3.22,
- -3.16,
- -3.41,
- -3.66,
- -3.7,
- -3.74,
- -3.7,
- -3.5,
- -3.16,
- -2.87,
- -2.62,
- -2.27,
- -1.86,
- -1.36,
- -0.81,
- -0.21,
- 0.41,
- 0.96,
- 1.44,
- 1.82,
- 2.11,
- 2.43,
- 2.92,
- 3.53,
- 4.17,
- 4.7,
- 5.13,
- 5.52,
- 5.96,
- 6.37,
- 6.48,
- 6.28,
- 5.99,
- 5.78,
- 5.54,
- 5.3,
- 5.29,
- 5.49,
- 5.69,
- 5.88,
- 6.03,
- 6.2,
- 6.46,
- 6.8,
- 7.17,
- 7.39,
- 7.49,
- 7.64,
- 7.68,
- 7.78,
- 8.33,
- 8.65,
- 8.85,
- 9.63,
- 10.55,
- 10.96,
- 11.18,
- 11.84,
- 12.58,
- 12.59,
- 12.28,
- 12.34,
- 13.02,
- 14.05,
- 14.38,
- 13.04,
- 10.27,
- 7.23,
- 4.42,
- 2.16,
- 0.68,
- -0.46,
- -1.51,
- -2.58,
- -3.63,
- -4.17,
- -4.55,
- -4.68,
- -4.74,
- -4.9,
- -5.03,
- -5.17,
- -5.37,
- -5.44,
- -5.39,
- -5.36,
- -5.26,
- -5.14,
- -5.03,
- -4.94,
- -4.8,
- -4.43,
- -3.87,
- -3.24,
- -2.69,
- -2.29,
- -1.97,
- -1.61,
- -1.17,
- -0.67,
- -0.11,
- 0.27,
- 0.3,
- 0.5,
- 1.55,
- 2.89,
- 3.62,
- 3.88,
- 4.02,
- 4.07,
- 4.0,
- 3.86,
- 3.67,
- 3.42,
- 3.14,
- 2.87,
- 2.63,
- 2.4,
- 2.18,
- 1.99,
- 1.83,
- 1.75,
- 1.68,
- 1.6,
- 1.59,
- 1.58,
- 1.48,
- 1.35,
- 1.23,
- 1.08,
- 0.96,
- 0.82,
- 0.43,
- 0.1,
- 0.22,
- 0.6,
- 0.67,
- 0.31,
- 0.05,
- 0.1,
- 0.35,
- 0.44,
- 0.23,
- -0.1,
- -0.39,
- -0.58,
- -0.72,
- -0.74,
- -0.73,
- -0.71,
- -0.54,
- -0.33,
- -0.16,
- 0.23,
- 0.58,
- 0.39,
- -0.08,
- -0.17,
- -0.7,
- -2.06,
- -3.72,
- -3.78,
- 0.61,
- 3.45,
- 2.25,
- -0.36,
- -3.22,
- -5.0,
- -5.1,
- -4.31,
- -3.34,
- -2.21,
- -0.96,
- 0.03,
- 0.68,
- 1.18,
- 1.68,
- 2.16,
- 2.42,
- 2.89,
- 3.51,
- 4.13,
- 4.61,
- 5.1,
- 5.53,
- 5.91,
- 6.33,
- 6.66,
- 6.79,
- 6.66,
- 6.42,
- 6.28,
- 6.14,
- 5.87,
- 5.43,
- 4.85,
- 4.26,
- 3.64,
- 2.99,
- 2.39,
- 1.84,
- 1.25,
- 0.6,
- 0.05,
- -0.41,
- -0.81,
- -0.99,
- -1.1,
- -1.16,
- -1.29,
- -1.29,
- -1.4,
- -1.55,
- -1.47,
- -1.14,
- -1.06,
- -0.77,
- -0.07,
- 0.25,
- 0.4,
- 0.67,
- 0.83,
- 0.73,
- 2.0,
- 2.56,
- 0.72,
- 2.05,
- 6.3,
- 7.66,
- 4.81,
- 1.93,
- 2.29,
- 4.8,
- 6.03,
- 7.05,
- 7.88,
- 8.46,
- 9.25,
- 9.81,
- 10.41,
- 11.42,
- 12.1,
- 10.87,
- 7.99,
- 5.39,
- 7.21,
- 10.12,
- 4.92,
- 0.25,
- 1.57,
- 5.3,
- 6.75,
- 5.27,
- 3.51,
- 2.62,
- 2.47,
- 2.01,
- 0.76,
- 0.12,
- -0.88,
- -2.81,
- -2.66,
- -0.91,
- 1.14,
- 2.55,
- 2.41,
- 1.4,
- 0.72,
- 0.37,
- 0.14,
- 0.21,
- 0.4,
- 1.16,
- 2.61,
- 3.45,
- 3.24,
- 2.62,
- 1.42,
- 0.53,
- 1.26,
- 2.21,
- 1.18,
- -1.27,
- -2.37,
- -1.28,
- -0.08,
- 0.06,
- -0.12,
- -0.13,
- -0.09,
- 0.05,
- -0.49,
- -1.05,
- 0.18,
- 0.52,
- 0.28,
- 1.7,
- 3.51,
- 5.12,
- 5.89,
- 7.27,
- 7.44,
- 7.39,
- 7.38,
- 7.43,
- 7.3,
- 6.72,
- 6.05,
- 5.58,
- 5.02,
- 4.42,
- 3.77,
- 2.91,
- 1.95,
- 0.81,
- -0.49,
- -1.65,
- -2.48,
- -3.14,
- -3.84,
- -4.33,
- -4.73,
- -4.73,
- -4.76,
- -4.81,
- -4.65,
- -4.53,
- -4.08,
- -3.98,
- -4.33,
- -4.55,
- -4.39,
- -4.38,
- -4.22,
- -3.93,
- -3.44,
- -3.4,
- -3.72,
- -3.85,
- -3.48,
- -3.13,
- -4.56,
- -6.77,
- -7.73,
- -7.64,
- -7.04,
- -5.71,
- -4.5,
- -4.66,
- -5.29,
- -5.08,
- -4.07,
- -3.23,
- -3.26,
- -3.67,
- -3.78,
- -3.78,
- -3.84,
- -3.72,
- -4.87,
- -4.99,
- -5.24,
- -5.33,
- -5.31,
- -5.29,
- -5.21,
- -5.05,
- -4.96,
- -4.94,
- -4.8,
- -4.53,
- -4.26,
- -4.01,
- -3.78,
- -3.55,
- -3.28,
- -2.95,
- -2.61,
- -2.27,
- -1.85,
- -1.37,
- -0.79,
- -0.09,
- 0.71,
- 1.56,
- 2.39,
- 3.11,
- 3.63,
- 3.99,
- 4.27,
- 4.54,
- 4.79,
- 4.97,
- 5.09,
- 5.2,
- 5.27,
- 5.36,
- 5.47,
- 5.61,
- 5.85,
- 6.15,
- 6.4,
- 6.58,
- 6.74,
- 6.94,
- 7.15,
- 7.39,
- 7.63,
- 7.91,
- 8.24,
- 8.52,
- 8.68,
- 8.74,
- 9.15,
- 9.85,
- 10.32,
- 10.65,
- 11.1,
- 11.81,
- 12.4,
- 12.33,
- 11.89,
- 11.35,
- 10.76,
- 10.24,
- 9.84,
- 9.64,
- 9.23,
- 8.17,
- 6.54,
- 4.63,
- 2.75,
- 1.1,
- -0.44,
- -1.84,
- -2.9,
- -3.68,
- -4.17,
- -4.36,
- -4.46,
- -4.62,
- -4.71,
- -4.79,
- -4.89,
- -4.97,
- -4.96,
- -4.88,
- -4.83,
- -4.78,
- -4.71,
- -4.58,
- -4.25,
- -3.77,
- -3.03,
- -2.15,
- -1.47,
- -1.16,
- -1.04,
- -0.96,
- -0.8,
- -0.38,
- 0.41,
- 1.47,
- 2.41,
- 3.0,
- 3.35,
- 3.62,
- 3.86,
- 3.99,
- 4.03,
- 4.0,
- 3.93,
- 3.81,
- 3.65,
- 3.46,
- 3.28,
- 3.04,
- 2.74,
- 2.35,
- 1.92,
- 1.54,
- 1.22,
- 0.98,
- 0.84,
- 0.79,
- 0.87,
- 1.07,
- 1.38,
- 1.62,
- 1.55,
- 1.24,
- 0.9,
- 0.57,
- 0.17,
- -0.24,
- -0.31,
- -0.18,
- -0.15,
- -0.27,
- -0.47,
- -0.83,
- -0.97,
- -0.85,
- -0.73,
- -0.67,
- -0.67,
- -0.68,
- -0.55,
- -0.24,
- 0.28,
- 0.89,
- 1.51,
- 2.43,
- 3.8,
- 4.72,
- 5.13,
- 6.25,
- 7.19,
- 7.67,
- 7.32,
- 4.28,
- 1.3,
- 0.67,
- 1.42,
- 2.01,
- 1.11,
- -0.23,
- -1.94,
- -3.37,
- -3.82,
- -3.22,
- -2.77,
- -2.36,
- -1.8,
- -1.15,
- -0.51,
- 0.05,
- 0.57,
- 1.09,
- 1.5,
- 1.85,
- 2.29,
- 2.86,
- 3.5,
- 4.08,
- 4.57,
- 4.97,
- 5.28,
- 5.54,
- 5.78,
- 5.93,
- 6.01,
- 5.97,
- 5.82,
- 5.63,
- 5.31,
- 4.76,
- 3.92,
- 2.98,
- 2.18,
- 1.57,
- 1.06,
- 0.67,
- 0.45,
- 0.31,
- 0.11,
- -0.11,
- -0.3,
- -0.51,
- -0.96,
- -1.1,
- -0.77,
- -1.1,
- -0.75,
- -0.15,
- -0.29,
- 1.03,
- 2.91,
- 2.44,
- 1.05,
- 1.3,
- 2.2,
- 2.49,
- 2.6,
- 3.15,
- 2.89,
- 1.87,
- 2.83,
- 4.98,
- 4.7,
- 4.53,
- 5.49,
- 7.01,
- 8.17,
- 7.44,
- 6.95,
- 7.11,
- 6.6,
- 6.57,
- 6.71,
- 6.93,
- 6.76,
- 5.06,
- 3.28,
- 5.3,
- 9.2,
- 11.26,
- 10.44,
- 9.8,
- 12.42,
- 14.16,
- 14.34,
- 13.89,
- 12.51,
- 11.18,
- 11.27,
- 12.56,
- 13.96,
- 14.14,
- 12.92,
- 11.01,
- 8.98,
- 7.63,
- 6.78,
- 5.9,
- 5.1,
- 4.87,
- 4.67,
- 3.87,
- 2.89,
- 2.15,
- 1.48,
- 1.42,
- 2.55,
- 3.51,
- 3.55,
- 2.81,
- 2.27,
- 2.67,
- 2.72,
- 1.15,
- -1.38,
- -3.94,
- -4.97,
- -4.75,
- -3.94,
- -3.24,
- -3.42,
- -3.62,
- -3.69,
- -3.86,
- -3.31,
- -0.07,
- 3.22,
- 3.95,
- 4.07,
- 4.24,
- 4.13,
- 4.09,
- 4.24,
- 4.44,
- 4.74,
- 5.25,
- 5.91,
- 6.61,
- 8.09,
- 8.27,
- 7.75,
- 7.57,
- 7.01,
- 6.22,
- 5.3,
- 4.04,
- 2.57,
- 1.0,
- -0.52,
- -1.88,
- -2.89,
- -3.56,
- -4.02,
- -4.53,
- -5.03,
- -5.37,
- -5.44,
- -5.45,
- -5.71,
- -5.78,
- -6.06,
- -6.53,
- -7.29,
- -7.72,
- -7.61,
- -6.94,
- -5.8,
- -5.31,
- -4.91,
- -4.59,
- -4.65,
- -5.37,
- -6.55,
- -7.28,
- -7.26,
- -6.72,
- -5.58,
- -3.94,
- -3.06,
- -3.19,
- -3.82,
- -4.19,
- -3.87,
- -3.43,
- -3.45,
- -3.79,
- -4.08,
- -4.3,
- -4.52,
- -4.71,
- -4.81,
- -4.87,
- -4.9,
- -4.89,
- -5.1,
- -5.48,
- -5.81,
- -6.01,
- -6.08,
- -6.02,
- -5.85,
- -5.79,
- -5.81,
- -5.74,
- -5.49,
- -5.13,
- -4.87,
- -4.75,
- -4.62,
- -4.53,
- -4.39,
- -4.09,
- -3.71,
- -3.31,
- -2.76,
- -1.94,
- -0.94,
- -0.05,
- 0.62,
- 1.16,
- 1.67,
- 2.08,
- 2.39,
- 2.67,
- 3.03,
- 3.43,
- 3.81,
- 4.17,
- 4.49,
- 4.76,
- 5.03,
- 5.27,
- 5.47,
- 5.65,
- 5.82,
- 5.96,
- 6.12,
- 6.36,
- 6.59,
- 6.72,
- 6.92,
- 7.21,
- 7.44,
- 7.46,
- 7.49,
- 7.7,
- 8.1,
- 8.45,
- 8.7,
- 8.94,
- 8.98,
- 8.81,
- 8.73,
- 8.83,
- 8.88,
- 8.71,
- 8.46,
- 8.35,
- 8.4,
- 8.58,
- 8.86,
- 9.14,
- 9.17,
- 8.65,
- 7.76,
- 6.99,
- 6.18,
- 4.85,
- 3.23,
- 1.65,
- 0.11,
- -1.16,
- -1.99,
- -2.52,
- -2.89,
- -3.16,
- -3.36,
- -3.52,
- -3.68,
- -3.81,
- -3.93,
- -3.94,
- -3.88,
- -3.8,
- -3.62,
- -3.28,
- -2.82,
- -2.32,
- -1.88,
- -1.47,
- -0.91,
- -0.11,
- 0.87,
- 1.8,
- 2.45,
- 2.8,
- 3.01,
- 3.25,
- 3.47,
- 3.66,
- 3.76,
- 3.83,
- 3.88,
- 3.86,
- 3.78,
- 3.66,
- 3.52,
- 3.35,
- 3.14,
- 2.89,
- 2.64,
- 2.44,
- 2.19,
- 1.89,
- 1.57,
- 1.26,
- 0.99,
- 0.82,
- 0.84,
- 1.09,
- 1.25,
- 1.18,
- 1.13,
- 1.08,
- 0.94,
- 0.78,
- 0.64,
- 0.39,
- 0.07,
- -0.18,
- -0.42,
- -0.65,
- -0.78,
- -0.86,
- -1.05,
- -1.39,
- -1.7,
- -1.87,
- -1.89,
- -1.79,
- -1.64,
- -1.42,
- -1.11,
- -0.64,
- 0.0,
- 0.79,
- 1.8,
- 3.14,
- 4.48,
- 5.55,
- 6.55,
- 6.01,
- 2.7,
- 0.25,
- 0.63,
- 1.7,
- 1.48,
- 0.3,
- -0.76,
- -0.93,
- -1.4,
- -1.93,
- -2.69,
- -3.15,
- -3.35,
- -3.35,
- -2.88,
- -2.07,
- -1.39,
- -0.76,
- -0.3,
- 0.09,
- 0.46,
- 0.85,
- 1.23,
- 1.58,
- 1.87,
- 2.17,
- 2.63,
- 3.03,
- 3.48,
- 3.82,
- 4.02,
- 4.18,
- 4.38,
- 4.55,
- 4.68,
- 4.69,
- 4.65,
- 4.7,
- 4.7,
- 4.25,
- 2.93,
- 0.82,
- -0.74,
- -0.01,
- 2.13,
- 3.71,
- 3.46,
- 2.4,
- 1.82,
- 1.51,
- 1.1,
- 0.99,
- 1.25,
- 1.0,
- 0.12,
- -1.15,
- -2.54,
- -4.53,
- -5.0,
- -5.17,
- -4.79,
- -4.53,
- -4.48,
- -4.47,
- -4.42,
- -4.03,
- -3.24,
- -2.48,
- -2.24,
- -2.48,
- -2.66,
- -2.51,
- -1.86,
- -0.87,
- -0.99,
- -0.72,
- 0.13,
- 1.17,
- 2.26,
- 3.22,
- 3.72,
- 3.13,
- 1.99,
- 3.16,
- 5.51,
- 6.67,
- 6.81,
- 6.24,
- 5.82,
- 5.82,
- 6.24,
- 6.92,
- 7.7,
- 8.09,
- 8.0,
- 7.87,
- 7.76,
- 7.58,
- 7.49,
- 7.88,
- 8.78,
- 9.65,
- 10.39,
- 10.9,
- 11.08,
- 10.97,
- 10.55,
- 9.95,
- 9.61,
- 9.84,
- 9.92,
- 8.23,
- 5.02,
- 2.2,
- 1.17,
- 0.81,
- -0.22,
- -1.41,
- -1.36,
- -0.11,
- 1.8,
- 3.81,
- 3.59,
- 0.13,
- -3.53,
- -4.35,
- -3.22,
- -2.09,
- -1.39,
- -0.63,
- 0.28,
- 0.8,
- 0.98,
- 1.11,
- 1.29,
- 1.53,
- 1.81,
- 2.14,
- 2.49,
- 2.82,
- 3.12,
- 3.49,
- 3.93,
- 4.38,
- 4.87,
- 5.56,
- 6.41,
- 7.18,
- 7.78,
- 8.26,
- 8.41,
- 7.78,
- 6.35,
- 4.95,
- 4.39,
- 4.4,
- 3.46,
- 0.73,
- -2.3,
- -3.99,
- -4.4,
- -4.69,
- -4.92,
- -5.31,
- -6.22,
- -7.57,
- -8.98,
- -10.22,
- -11.08,
- -11.33,
- -11.05,
- -10.93,
- -11.42,
- -12.48,
- -13.67,
- -14.55,
- -14.82,
- -14.66,
- -14.08,
- -13.1,
- -11.89,
- -10.58,
- -9.1,
- -7.35,
- -5.63,
- -4.6,
- -4.67,
- -4.97,
- -4.99,
- -4.83,
- -4.7,
- -4.59,
- -4.53,
- -4.58,
- -4.72,
- -4.8,
- -4.86,
- -4.92,
- -4.95,
- -4.93,
- -4.5,
- -4.59,
- -4.78,
- -4.97,
- -5.12,
- -5.23,
- -5.32,
- -5.42,
- -5.58,
- -5.74,
- -5.83,
- -5.81,
- -5.74,
- -5.71,
- -5.65,
- -5.51,
- -5.33,
- -5.12,
- -4.82,
- -4.49,
- -4.13,
- -3.75,
- -3.28,
- -2.75,
- -2.16,
- -1.55,
- -0.99,
- -0.54,
- -0.17,
- 0.14,
- 0.37,
- 0.64,
- 0.94,
- 1.23,
- 1.56,
- 1.95,
- 2.35,
- 2.7,
- 3.02,
- 3.37,
- 3.74,
- 4.13,
- 4.52,
- 4.85,
- 5.14,
- 5.43,
- 5.73,
- 6.0,
- 6.27,
- 6.56,
- 6.78,
- 7.0,
- 7.28,
- 7.55,
- 7.75,
- 8.02,
- 8.4,
- 8.81,
- 9.02,
- 8.9,
- 8.6,
- 8.3,
- 8.08,
- 7.89,
- 7.73,
- 7.61,
- 7.44,
- 7.16,
- 6.86,
- 6.67,
- 6.69,
- 6.79,
- 6.74,
- 6.45,
- 6.24,
- 6.57,
- 7.23,
- 7.3,
- 6.53,
- 5.51,
- 4.71,
- 4.03,
- 3.3,
- 2.55,
- 1.91,
- 1.39,
- 1.0,
- 0.68,
- 0.32,
- -0.09,
- -0.39,
- -0.55,
- -0.75,
- -0.92,
- -0.76,
- -0.18,
- 0.66,
- 1.54,
- 2.28,
- 2.77,
- 3.05,
- 3.23,
- 3.37,
- 3.41,
- 3.31,
- 3.16,
- 3.1,
- 3.15,
- 3.23,
- 3.3,
- 3.36,
- 3.39,
- 3.41,
- 3.41,
- 3.37,
- 3.33,
- 3.29,
- 3.25,
- 3.19,
- 3.11,
- 2.97,
- 2.84,
- 2.72,
- 2.52,
- 2.22,
- 1.96,
- 1.89,
- 2.04,
- 2.22,
- 2.32,
- 2.26,
- 2.16,
- 2.06,
- 1.79,
- 1.32,
- 0.83,
- 0.47,
- 0.11,
- -0.29,
- -0.67,
- -0.97,
- -1.21,
- -1.44,
- -1.62,
- -1.66,
- -1.73,
- -1.89,
- -2.05,
- -2.13,
- -2.1,
- -1.96,
- -1.79,
- -1.86,
- -2.21,
- -2.56,
- -3.05,
- -3.95,
- -4.18,
- -3.59,
- -2.85,
- -1.51,
- 2.98,
- 4.88,
- 2.65,
- -0.39,
- 0.09,
- 2.18,
- 3.46,
- 3.22,
- 0.4,
- -3.63,
- -5.7,
- -5.27,
- -4.4,
- -4.01,
- -3.72,
- -3.12,
- -2.37,
- -1.83,
- -1.52,
- -1.14,
- -0.65,
- -0.21,
- 0.25,
- 0.67,
- 1.06,
- 1.45,
- 1.71,
- 1.96,
- 2.07,
- 2.16,
- 2.28,
- 2.44,
- 2.69,
- 2.99,
- 3.25,
- 3.32,
- 3.2,
- 2.86,
- 3.02,
- 3.76,
- 3.63,
- 1.28,
- -1.25,
- -2.35,
- -2.97,
- -4.52,
- -5.21,
- -3.72,
- -1.07,
- 0.6,
- 0.37,
- -0.86,
- -1.56,
- -1.51,
- -2.09,
- -3.66,
- -4.72,
- -4.93,
- -4.92,
- -5.17,
- -5.47,
- -5.6,
- -5.6,
- -5.66,
- -5.73,
- -5.38,
- -4.9,
- -4.49,
- -4.24,
- -3.99,
- -3.61,
- -3.15,
- -2.72,
- -2.36,
- -1.96,
- -1.48,
- -0.89,
- -0.21,
- 0.55,
- 1.41,
- 2.39,
- 3.34,
- 4.16,
- 4.93,
- 5.58,
- 6.06,
- 6.33,
- 6.39,
- 6.49,
- 6.71,
- 7.05,
- 7.45,
- 8.07,
- 9.13,
- 10.18,
- 10.62,
- 10.51,
- 10.27,
- 10.07,
- 9.98,
- 10.03,
- 10.14,
- 10.14,
- 9.91,
- 9.44,
- 8.94,
- 8.54,
- 8.25,
- 8.37,
- 9.13,
- 9.91,
- 9.56,
- 7.65,
- 5.04,
- 1.21,
- -1.35,
- -0.68,
- 1.15,
- 0.87,
- -0.9,
- -1.79,
- -1.23,
- -0.26,
- 0.55,
- 1.47,
- 2.46,
- 2.85,
- 2.41,
- 1.72,
- 1.19,
- 0.91,
- 0.82,
- 0.82,
- 0.86,
- 0.95,
- 1.08,
- 1.28,
- 1.55,
- 1.88,
- 2.29,
- 2.73,
- 3.24,
- 3.71,
- 4.13,
- 4.6,
- 5.15,
- 5.88,
- 6.91,
- 7.99,
- 8.01,
- 6.02,
- 3.74,
- 4.48,
- 7.98,
- 10.46,
- 10.93,
- 6.94,
- 0.59,
- -3.57,
- -4.2,
- -4.25,
- -5.53,
- -7.14,
- -7.7,
- -8.51,
- -9.11,
- -9.72,
- -9.51,
- -9.63,
- -10.28,
- -10.57,
- -10.03,
- -9.25,
- -8.78,
- -8.3,
- -7.71,
- -7.24,
- -7.0,
- -6.7,
- -6.29,
- -6.16,
- -6.3,
- -6.3,
- -5.91,
- -5.13,
- -4.33,
- -3.84,
- -3.62,
- -3.49,
- -3.39,
- -3.33,
- -3.31,
- -3.34,
- -3.47,
- -3.7,
- -3.97,
- -4.2,
- -4.34,
- -4.45,
- -5.08,
- -5.04,
- -4.96,
- -4.85,
- -4.73,
- -4.73,
- -4.9,
- -5.09,
- -5.19,
- -5.22,
- -5.33,
- -5.49,
- -5.57,
- -5.53,
- -5.47,
- -5.43,
- -5.36,
- -5.29,
- -5.19,
- -4.98,
- -4.64,
- -4.26,
- -3.93,
- -3.65,
- -3.37,
- -3.0,
- -2.6,
- -2.25,
- -1.91,
- -1.51,
- -1.09,
- -0.68,
- -0.3,
- 0.04,
- 0.38,
- 0.75,
- 1.14,
- 1.54,
- 1.92,
- 2.27,
- 2.62,
- 3.02,
- 3.42,
- 3.86,
- 4.28,
- 4.65,
- 4.98,
- 5.29,
- 5.61,
- 5.91,
- 6.18,
- 6.37,
- 6.54,
- 6.67,
- 6.81,
- 6.99,
- 7.18,
- 7.42,
- 7.53,
- 7.54,
- 7.45,
- 7.26,
- 7.02,
- 6.74,
- 6.47,
- 6.28,
- 6.22,
- 6.21,
- 6.27,
- 6.43,
- 6.44,
- 6.19,
- 5.9,
- 5.76,
- 5.72,
- 5.63,
- 5.6,
- 5.89,
- 6.41,
- 6.78,
- 6.71,
- 6.27,
- 5.76,
- 5.23,
- 4.64,
- 4.0,
- 3.39,
- 2.93,
- 2.52,
- 2.12,
- 1.75,
- 1.55,
- 1.59,
- 1.84,
- 2.22,
- 2.67,
- 3.05,
- 3.32,
- 3.52,
- 3.62,
- 3.61,
- 3.58,
- 3.59,
- 3.62,
- 3.61,
- 3.58,
- 3.52,
- 3.45,
- 3.42,
- 3.46,
- 3.6,
- 3.79,
- 3.96,
- 4.09,
- 4.16,
- 4.2,
- 4.21,
- 4.21,
- 4.18,
- 4.11,
- 4.0,
- 3.89,
- 3.78,
- 3.66,
- 3.54,
- 3.47,
- 3.48,
- 3.58,
- 3.66,
- 3.68,
- 3.71,
- 3.75,
- 3.59,
- 3.25,
- 2.84,
- 2.43,
- 2.0,
- 1.44,
- 0.78,
- 0.14,
- -0.46,
- -0.99,
- -1.46,
- -1.81,
- -1.98,
- -2.03,
- -2.03,
- -1.99,
- -1.88,
- -1.65,
- -1.18,
- -0.48,
- 0.33,
- 1.48,
- 3.48,
- 5.39,
- 4.87,
- 4.22,
- 2.65,
- -0.86,
- -5.94,
- -7.28,
- -4.09,
- -1.03,
- 1.2,
- 1.72,
- 0.91,
- 0.29,
- 0.31,
- -0.13,
- -1.64,
- -3.75,
- -5.08,
- -5.34,
- -5.15,
- -4.85,
- -4.51,
- -4.1,
- -3.71,
- -3.36,
- -2.91,
- -2.27,
- -1.53,
- -0.86,
- -0.32,
- 0.06,
- 0.35,
- 0.59,
- 0.78,
- 0.94,
- 1.01,
- 0.94,
- 0.89,
- 1.1,
- 1.58,
- 1.81,
- 1.59,
- 1.08,
- 0.37,
- -0.3,
- -0.25,
- 0.53,
- 1.4,
- 2.0,
- 2.03,
- 1.22,
- 0.29,
- 0.14,
- 0.19,
- -0.49,
- -1.68,
- -2.85,
- -3.41,
- -3.76,
- -4.13,
- -4.27,
- -3.98,
- -3.59,
- -3.54,
- -3.92,
- -4.51,
- -4.97,
- -5.22,
- -5.35,
- -5.41,
- -5.33,
- -5.14,
- -4.91,
- -4.62,
- -4.35,
- -4.16,
- -3.89,
- -3.36,
- -2.65,
- -1.99,
- -1.42,
- -0.89,
- -0.42,
- -0.04,
- 0.3,
- 0.65,
- 1.06,
- 1.52,
- 2.01,
- 2.58,
- 3.29,
- 4.19,
- 5.31,
- 6.38,
- 7.19,
- 7.73,
- 8.19,
- 8.68,
- 8.96,
- 8.97,
- 8.89,
- 8.92,
- 9.19,
- 9.58,
- 9.93,
- 10.14,
- 10.28,
- 10.38,
- 10.37,
- 10.13,
- 9.73,
- 9.36,
- 9.21,
- 9.32,
- 9.52,
- 9.59,
- 9.15,
- 7.94,
- 4.94,
- 1.0,
- 0.09,
- 1.2,
- 1.95,
- 0.92,
- 0.12,
- 0.53,
- 1.66,
- 2.57,
- 2.93,
- 2.95,
- 2.96,
- 2.91,
- 2.88,
- 3.24,
- 3.89,
- 3.83,
- 3.21,
- 2.89,
- 2.89,
- 2.65,
- 2.32,
- 2.11,
- 2.07,
- 2.16,
- 2.33,
- 2.57,
- 2.83,
- 3.15,
- 3.52,
- 3.85,
- 4.1,
- 4.19,
- 4.22,
- 4.2,
- 3.81,
- 2.92,
- 1.49,
- 0.8,
- 1.36,
- 3.05,
- 5.16,
- 6.74,
- 7.48,
- 7.5,
- 6.68,
- 4.52,
- 0.86,
- -2.21,
- -3.56,
- -3.21,
- -3.12,
- -3.9,
- -4.59,
- -4.58,
- -4.28,
- -4.4,
- -5.03,
- -6.1,
- -7.24,
- -8.02,
- -8.4,
- -8.67,
- -8.87,
- -8.98,
- -8.97,
- -8.71,
- -8.01,
- -6.8,
- -5.45,
- -4.63,
- -4.89,
- -5.55,
- -5.96,
- -5.92,
- -5.69,
- -5.41,
- -5.13,
- -4.83,
- -4.86,
- -5.19,
- -5.36,
- -5.31,
- -5.15,
- -5.04,
- -5.04,
- -4.86,
- -4.95,
- -5.01,
- -5.04,
- -5.13,
- -5.3,
- -5.51,
- -5.71,
- -5.86,
- -5.92,
- -5.85,
- -5.76,
- -5.72,
- -5.74,
- -5.75,
- -5.73,
- -5.69,
- -5.6,
- -5.48,
- -5.36,
- -5.24,
- -5.08,
- -4.89,
- -4.67,
- -4.39,
- -4.08,
- -3.76,
- -3.52,
- -3.32,
- -3.08,
- -2.75,
- -2.37,
- -2.0,
- -1.67,
- -1.32,
- -0.93,
- -0.53,
- -0.13,
- 0.29,
- 0.71,
- 1.12,
- 1.52,
- 1.91,
- 2.33,
- 2.75,
- 3.19,
- 3.61,
- 3.99,
- 4.33,
- 4.61,
- 4.84,
- 5.04,
- 5.21,
- 5.37,
- 5.52,
- 5.67,
- 5.76,
- 5.82,
- 5.84,
- 5.82,
- 5.78,
- 5.69,
- 5.57,
- 5.43,
- 5.29,
- 5.17,
- 5.09,
- 4.98,
- 4.83,
- 4.65,
- 4.46,
- 4.28,
- 4.11,
- 3.94,
- 3.88,
- 4.07,
- 4.44,
- 4.76,
- 4.85,
- 4.83,
- 4.77,
- 4.76,
- 4.79,
- 4.83,
- 4.77,
- 4.63,
- 4.44,
- 4.24,
- 4.08,
- 3.98,
- 3.94,
- 3.93,
- 3.96,
- 4.01,
- 4.04,
- 4.03,
- 4.04,
- 4.13,
- 4.27,
- 4.4,
- 4.48,
- 4.5,
- 4.54,
- 4.66,
- 4.79,
- 4.86,
- 4.86,
- 4.86,
- 4.86,
- 4.88,
- 4.92,
- 4.99,
- 5.06,
- 5.09,
- 5.14,
- 5.24,
- 5.35,
- 5.45,
- 5.5,
- 5.54,
- 5.56,
- 5.57,
- 5.58,
- 5.56,
- 5.52,
- 5.45,
- 5.37,
- 5.37,
- 5.46,
- 5.55,
- 5.63,
- 5.76,
- 5.97,
- 6.06,
- 5.88,
- 5.6,
- 5.43,
- 5.31,
- 5.16,
- 4.92,
- 4.53,
- 3.96,
- 3.2,
- 2.37,
- 1.57,
- 0.93,
- 0.65,
- 0.63,
- 0.45,
- -0.15,
- -0.88,
- -1.56,
- -2.44,
- -4.02,
- -4.53,
- -2.62,
- 0.58,
- 2.98,
- 3.27,
- 2.13,
- 1.66,
- 1.95,
- 2.39,
- 2.41,
- 1.63,
- 0.14,
- -1.68,
- -3.12,
- -3.65,
- -3.51,
- -3.29,
- -3.41,
- -3.73,
- -4.05,
- -4.22,
- -4.26,
- -4.19,
- -3.99,
- -3.7,
- -3.38,
- -3.02,
- -2.63,
- -2.25,
- -1.9,
- -1.59,
- -1.33,
- -1.09,
- -0.93,
- -0.87,
- -0.87,
- -0.84,
- -0.7,
- -0.55,
- -0.52,
- -0.61,
- -0.63,
- -0.44,
- -0.26,
- -0.3,
- -0.35,
- -0.15,
- 0.11,
- 0.1,
- -0.1,
- -0.34,
- -0.59,
- -0.84,
- -0.96,
- -0.74,
- -0.18,
- 0.45,
- 0.77,
- 0.64,
- 0.39,
- 0.27,
- 0.04,
- -0.49,
- -1.18,
- -1.86,
- -2.41,
- -2.77,
- -3.06,
- -3.42,
- -3.94,
- -4.49,
- -4.88,
- -5.05,
- -5.11,
- -5.12,
- -5.04,
- -4.92,
- -4.69,
- -4.27,
- -3.7,
- -3.13,
- -2.62,
- -2.12,
- -1.66,
- -1.27,
- -0.93,
- -0.63,
- -0.29,
- 0.08,
- 0.54,
- 1.09,
- 1.67,
- 2.23,
- 2.67,
- 2.98,
- 3.21,
- 3.42,
- 3.68,
- 4.02,
- 4.44,
- 4.95,
- 5.54,
- 6.2,
- 6.95,
- 7.74,
- 8.49,
- 9.16,
- 9.71,
- 10.11,
- 10.28,
- 10.41,
- 10.7,
- 10.93,
- 10.79,
- 10.48,
- 10.56,
- 11.07,
- 11.42,
- 11.15,
- 10.34,
- 9.24,
- 7.86,
- 7.06,
- 6.73,
- 12.3,
- 15.0,
- 14.85,
- 11.65,
- 8.39,
- 6.48,
- 5.98,
- 6.02,
- 6.0,
- 5.64,
- 4.96,
- 4.2,
- 3.69,
- 3.39,
- 3.18,
- 3.09,
- 3.04,
- 2.89,
- 2.55,
- 2.22,
- 2.13,
- 2.3,
- 2.53,
- 2.84,
- 3.35,
- 3.98,
- 4.41,
- 4.44,
- 4.21,
- 3.95,
- 3.61,
- 2.91,
- 1.92,
- 1.09,
- 0.86,
- 1.07,
- 1.47,
- 2.14,
- 3.47,
- 5.08,
- 6.18,
- 5.36,
- 3.25,
- 0.93,
- -0.48,
- -0.71,
- -0.47,
- -0.55,
- -0.97,
- -1.27,
- -1.23,
- -0.79,
- 0.02,
- 0.96,
- 1.72,
- 2.06,
- 2.04,
- 1.81,
- 1.35,
- 0.35,
- -1.25,
- -2.94,
- -3.93,
- -3.92,
- -3.46,
- -3.19,
- -3.24,
- -3.31,
- -3.25,
- -3.11,
- -3.08,
- -3.16,
- -3.3,
- -3.57,
- -3.94,
- -4.29,
- -4.35,
- -4.41,
- -4.49,
- -4.59,
- -4.68,
- -4.76,
- -6.68,
- -6.39,
- -6.19,
- -6.16,
- -6.15,
- -6.21,
- -6.29,
- -6.36,
- -6.4,
- -6.39,
- -6.33,
- -6.26,
- -6.2,
- -6.17,
- -6.22,
- -6.28,
- -6.31,
- -6.28,
- -6.21,
- -6.13,
- -6.03,
- -5.93,
- -5.75,
- -5.51,
- -5.25,
- -5.03,
- -4.89,
- -4.82,
- -4.73,
- -4.6,
- -4.41,
- -4.18,
- -3.95,
- -3.76,
- -3.53,
- -3.17,
- -2.69,
- -2.16,
- -1.64,
- -1.15,
- -0.71,
- -0.3,
- 0.07,
- 0.41,
- 0.73,
- 1.03,
- 1.31,
- 1.58,
- 1.86,
- 2.15,
- 2.44,
- 2.69,
- 2.91,
- 3.11,
- 3.29,
- 3.47,
- 3.64,
- 3.75,
- 3.81,
- 3.82,
- 3.83,
- 3.82,
- 3.76,
- 3.69,
- 3.62,
- 3.6,
- 3.61,
- 3.62,
- 3.61,
- 3.57,
- 3.49,
- 3.42,
- 3.38,
- 3.38,
- 3.38,
- 3.37,
- 3.4,
- 3.49,
- 3.65,
- 3.8,
- 3.92,
- 4.02,
- 4.14,
- 4.28,
- 4.42,
- 4.54,
- 4.64,
- 4.71,
- 4.72,
- 4.68,
- 4.66,
- 4.62,
- 4.56,
- 4.51,
- 4.51,
- 4.53,
- 4.56,
- 4.61,
- 4.7,
- 4.76,
- 4.81,
- 4.85,
- 4.96,
- 5.19,
- 5.6,
- 6.0,
- 6.28,
- 6.44,
- 6.5,
- 6.48,
- 6.43,
- 6.35,
- 6.24,
- 6.16,
- 6.19,
- 6.28,
- 6.38,
- 6.42,
- 6.41,
- 6.38,
- 6.34,
- 6.29,
- 6.25,
- 6.2,
- 6.13,
- 5.94,
- 5.7,
- 5.39,
- 5.06,
- 4.76,
- 4.59,
- 4.6,
- 4.79,
- 5.06,
- 5.39,
- 5.65,
- 5.74,
- 5.68,
- 5.46,
- 5.17,
- 4.87,
- 4.64,
- 4.5,
- 4.39,
- 4.23,
- 4.08,
- 4.01,
- 4.03,
- 4.05,
- 4.0,
- 3.88,
- 3.6,
- 2.87,
- 1.35,
- -0.38,
- -1.33,
- -0.76,
- 0.75,
- 2.08,
- 2.69,
- 3.1,
- 3.56,
- 3.84,
- 3.93,
- 3.52,
- 2.39,
- 0.5,
- -1.48,
- -2.98,
- -3.71,
- -3.76,
- -3.58,
- -3.41,
- -3.3,
- -3.21,
- -3.08,
- -2.93,
- -2.74,
- -2.52,
- -2.27,
- -2.02,
- -1.8,
- -1.61,
- -1.48,
- -1.4,
- -1.36,
- -1.33,
- -1.28,
- -1.22,
- -1.15,
- -1.08,
- -1.03,
- -1.01,
- -1.01,
- -1.0,
- -0.98,
- -0.94,
- -0.91,
- -0.92,
- -0.96,
- -1.05,
- -1.28,
- -1.72,
- -2.2,
- -2.4,
- -2.23,
- -1.97,
- -1.88,
- -1.97,
- -2.03,
- -1.96,
- -1.82,
- -1.83,
- -2.08,
- -2.41,
- -2.61,
- -2.6,
- -2.45,
- -2.3,
- -2.27,
- -2.47,
- -3.0,
- -3.86,
- -4.78,
- -5.42,
- -5.68,
- -5.53,
- -5.12,
- -4.64,
- -4.3,
- -4.14,
- -4.06,
- -4.0,
- -3.9,
- -3.79,
- -3.65,
- -3.47,
- -3.15,
- -2.74,
- -2.34,
- -1.97,
- -1.63,
- -1.25,
- -0.83,
- -0.42,
- -0.04,
- 0.4,
- 0.97,
- 1.65,
- 2.34,
- 2.97,
- 3.51,
- 3.95,
- 4.28,
- 4.52,
- 4.7,
- 4.91,
- 5.21,
- 5.6,
- 6.09,
- 6.61,
- 7.19,
- 7.7,
- 8.16,
- 8.57,
- 8.87,
- 9.07,
- 9.26,
- 9.54,
- 10.0,
- 10.53,
- 11.04,
- 11.49,
- 11.93,
- 12.27,
- 12.13,
- 11.36,
- 10.25,
- 9.5,
- 9.34,
- 9.44,
- 9.47,
- 9.34,
- 9.07,
- 8.57,
- 7.85,
- 6.94,
- 6.02,
- 5.31,
- 4.83,
- 4.34,
- 3.78,
- 3.31,
- 3.08,
- 3.03,
- 3.04,
- 2.92,
- 2.6,
- 2.27,
- 2.3,
- 2.6,
- 2.81,
- 2.85,
- 2.87,
- 3.0,
- 3.07,
- 2.69,
- 2.03,
- 1.66,
- 1.56,
- 1.27,
- 0.53,
- -0.38,
- -1.01,
- -0.91,
- -0.32,
- 0.26,
- 0.63,
- 0.79,
- 0.88,
- 1.15,
- 1.51,
- 1.55,
- 0.81,
- -0.6,
- -2.15,
- -2.92,
- -2.73,
- -2.16,
- -1.81,
- -2.06,
- -3.05,
- -4.25,
- -4.98,
- -4.93,
- -4.37,
- -3.99,
- -4.14,
- -4.77,
- -5.63,
- -6.33,
- -6.59,
- -6.17,
- -5.24,
- -4.27,
- -3.84,
- -3.96,
- -4.19,
- -4.38,
- -4.46,
- -4.51,
- -4.71,
- -5.1,
- -5.6,
- -6.06,
- -6.36,
- -6.69,
- -6.9,
- -7.0,
- -6.9,
- -3.3,
- -3.37,
- -3.41,
- -3.4,
- -3.39,
- -3.45,
- -3.56,
- -3.69,
- -3.84,
- -3.99,
- -4.13,
- -4.26,
- -4.38,
- -4.48,
- -4.55,
- -4.6,
- -4.63,
- -4.66,
- -4.71,
- -4.77,
- -4.85,
- -4.94,
- -5.06,
- -5.19,
- -5.29,
- -5.34,
- -5.29,
- -5.18,
- -5.04,
- -4.94,
- -4.88,
- -4.87,
- -4.85,
- -4.79,
- -4.66,
- -4.51,
- -4.33,
- -4.1,
- -3.76,
- -3.3,
- -2.73,
- -2.17,
- -1.7,
- -1.39,
- -1.17,
- -1.0,
- -0.8,
- -0.57,
- -0.34,
- -0.12,
- 0.08,
- 0.27,
- 0.47,
- 0.66,
- 0.82,
- 0.93,
- 1.02,
- 1.11,
- 1.24,
- 1.38,
- 1.52,
- 1.64,
- 1.76,
- 1.89,
- 2.03,
- 2.17,
- 2.32,
- 2.48,
- 2.63,
- 2.79,
- 2.93,
- 3.07,
- 3.19,
- 3.32,
- 3.46,
- 3.59,
- 3.69,
- 3.75,
- 3.78,
- 3.79,
- 3.79,
- 3.78,
- 3.76,
- 3.72,
- 3.7,
- 3.69,
- 3.7,
- 3.71,
- 3.76,
- 3.83,
- 3.92,
- 4.0,
- 4.06,
- 4.09,
- 4.13,
- 4.2,
- 4.31,
- 4.46,
- 4.64,
- 4.82,
- 5.11,
- 5.43,
- 5.73,
- 5.91,
- 6.01,
- 6.11,
- 6.26,
- 6.42,
- 6.55,
- 6.62,
- 6.69,
- 6.67,
- 6.56,
- 6.42,
- 6.28,
- 6.2,
- 6.18,
- 6.17,
- 6.17,
- 6.18,
- 6.21,
- 6.27,
- 6.34,
- 6.43,
- 6.5,
- 6.53,
- 6.46,
- 6.32,
- 6.19,
- 6.11,
- 6.08,
- 6.07,
- 6.08,
- 6.09,
- 6.1,
- 6.11,
- 6.13,
- 6.1,
- 5.97,
- 5.65,
- 5.22,
- 4.72,
- 4.24,
- 3.84,
- 3.56,
- 3.4,
- 3.33,
- 3.33,
- 3.38,
- 3.44,
- 3.52,
- 3.61,
- 3.71,
- 3.78,
- 3.75,
- 3.48,
- 2.94,
- 2.26,
- 1.91,
- 2.03,
- 1.88,
- 1.4,
- 1.31,
- 2.14,
- 3.21,
- 3.74,
- 3.33,
- 2.55,
- 1.79,
- 1.21,
- 0.71,
- 0.24,
- -0.24,
- -0.69,
- -1.09,
- -1.41,
- -1.66,
- -1.83,
- -1.9,
- -1.89,
- -1.78,
- -1.56,
- -1.27,
- -0.94,
- -0.63,
- -0.37,
- -0.18,
- -0.06,
- 0.0,
- 0.02,
- 0.0,
- -0.01,
- -0.01,
- 0.0,
- -0.01,
- -0.07,
- -0.2,
- -0.4,
- -0.67,
- -1.06,
- -1.58,
- -2.23,
- -2.89,
- -3.38,
- -3.6,
- -3.6,
- -3.66,
- -3.94,
- -4.29,
- -4.36,
- -4.25,
- -4.12,
- -4.2,
- -4.54,
- -5.01,
- -5.42,
- -6.09,
- -6.27,
- -6.14,
- -5.82,
- -5.45,
- -5.16,
- -4.96,
- -4.88,
- -4.8,
- -4.67,
- -4.48,
- -4.31,
- -4.15,
- -4.01,
- -3.82,
- -3.63,
- -3.47,
- -3.33,
- -3.18,
- -2.99,
- -2.78,
- -2.6,
- -2.54,
- -2.66,
- -2.93,
- -3.17,
- -3.22,
- -3.02,
- -2.69,
- -2.4,
- -2.16,
- -1.95,
- -1.68,
- -1.25,
- -0.64,
- 0.06,
- 0.82,
- 1.65,
- 2.56,
- 3.62,
- 4.81,
- 5.86,
- 6.63,
- 7.09,
- 7.44,
- 7.75,
- 8.07,
- 8.41,
- 8.8,
- 9.32,
- 9.92,
- 10.48,
- 10.93,
- 11.3,
- 11.65,
- 12.0,
- 12.24,
- 12.31,
- 12.21,
- 12.11,
- 12.15,
- 12.33,
- 12.52,
- 12.59,
- 12.47,
- 12.17,
- 11.75,
- 11.17,
- 10.38,
- 9.37,
- 8.26,
- 7.26,
- 6.51,
- 6.01,
- 5.63,
- 5.28,
- 4.85,
- 4.34,
- 3.81,
- 3.42,
- 3.2,
- 3.07,
- 2.98,
- 2.89,
- 2.85,
- 2.96,
- 3.2,
- 3.37,
- 3.2,
- 2.68,
- 1.94,
- 1.45,
- 1.81,
- 2.97,
- 4.48,
- 5.57,
- 5.73,
- 4.59,
- 2.53,
- 0.2,
- -1.47,
- -2.2,
- -2.19,
- -1.97,
- -1.88,
- -1.94,
- -2.08,
- -2.09,
- -2.06,
- -2.13,
- -2.37,
- -2.72,
- -3.04,
- -3.22,
- -3.18,
- -2.84,
- -2.35,
- -1.89,
- -1.78,
- -2.03,
- -2.52,
- -3.05,
- -3.49,
- -3.84,
- -4.14,
- -4.4,
- -4.6,
- -4.69,
- -4.69,
- -4.6,
- -4.36,
- -4.05,
- -3.78,
- -3.56,
- -3.49,
- -3.48,
- -3.5,
- -3.51,
- -3.5,
- -3.48,
- -3.44,
- -3.36,
- -3.29,
- -3.27,
- -3.12,
- -3.17,
- -3.23,
- -3.29,
- -3.38,
- -3.46,
- -3.52,
- -3.58,
- -3.65,
- -3.71,
- -3.75,
- -3.79,
- -3.78,
- -3.78,
- -3.79,
- -3.82,
- -3.87,
- -3.92,
- -4.0,
- -4.05,
- -4.14,
- -4.23,
- -4.32,
- -4.4,
- -4.48,
- -4.54,
- -4.6,
- -4.65,
- -4.7,
- -4.73,
- -4.72,
- -4.68,
- -4.64,
- -4.6,
- -4.56,
- -4.5,
- -4.44,
- -4.33,
- -4.15,
- -3.91,
- -3.59,
- -3.24,
- -2.91,
- -2.65,
- -2.46,
- -2.32,
- -2.21,
- -2.1,
- -1.97,
- -1.8,
- -1.59,
- -1.36,
- -1.11,
- -0.85,
- -0.62,
- -0.4,
- -0.21,
- -0.06,
- 0.07,
- 0.2,
- 0.32,
- 0.49,
- 0.69,
- 0.95,
- 1.25,
- 1.56,
- 1.86,
- 2.11,
- 2.33,
- 2.48,
- 2.59,
- 2.69,
- 2.77,
- 2.87,
- 2.97,
- 3.09,
- 3.2,
- 3.3,
- 3.42,
- 3.52,
- 3.63,
- 3.73,
- 3.83,
- 3.9,
- 3.96,
- 4.0,
- 4.05,
- 4.1,
- 4.14,
- 4.18,
- 4.21,
- 4.26,
- 4.32,
- 4.41,
- 4.51,
- 4.62,
- 4.73,
- 4.83,
- 4.97,
- 5.14,
- 5.34,
- 5.58,
- 5.83,
- 6.07,
- 6.28,
- 6.45,
- 6.6,
- 6.75,
- 6.93,
- 7.17,
- 7.42,
- 7.67,
- 7.83,
- 7.87,
- 7.77,
- 7.6,
- 7.55,
- 7.46,
- 7.43,
- 7.39,
- 7.31,
- 7.17,
- 7.0,
- 6.83,
- 6.66,
- 6.5,
- 6.37,
- 6.29,
- 6.27,
- 6.26,
- 6.27,
- 6.27,
- 6.25,
- 6.24,
- 6.2,
- 6.16,
- 6.09,
- 6.0,
- 5.87,
- 5.69,
- 5.45,
- 5.15,
- 4.85,
- 4.54,
- 4.27,
- 4.05,
- 3.9,
- 3.83,
- 3.82,
- 3.88,
- 4.03,
- 4.27,
- 4.53,
- 4.74,
- 4.76,
- 4.38,
- 3.37,
- 1.51,
- -0.11,
- -1.17,
- -1.86,
- -2.64,
- -3.38,
- -3.52,
- -2.26,
- 0.27,
- 3.02,
- 3.28,
- 2.16,
- 0.22,
- -0.73,
- -0.34,
- 0.67,
- 1.46,
- 1.63,
- 1.21,
- 0.59,
- 0.03,
- -0.42,
- -0.76,
- -1.06,
- -1.29,
- -1.41,
- -1.42,
- -1.32,
- -1.11,
- -0.84,
- -0.54,
- -0.26,
- -0.03,
- 0.12,
- 0.24,
- 0.32,
- 0.36,
- 0.33,
- 0.19,
- -0.06,
- -0.41,
- -0.85,
- -1.32,
- -1.75,
- -2.11,
- -2.39,
- -2.63,
- -2.84,
- -3.05,
- -3.24,
- -3.34,
- -3.28,
- -2.92,
- -2.22,
- -1.31,
- -0.61,
- -0.5,
- -1.21,
- -2.69,
- -4.54,
- -5.82,
- -6.51,
- -6.82,
- -6.68,
- -6.34,
- -5.91,
- -5.45,
- -4.99,
- -4.6,
- -4.37,
- -4.25,
- -4.18,
- -4.12,
- -4.06,
- -4.01,
- -3.97,
- -3.95,
- -3.93,
- -3.9,
- -3.88,
- -3.88,
- -3.87,
- -3.83,
- -3.72,
- -3.47,
- -3.12,
- -2.72,
- -2.35,
- -2.05,
- -1.86,
- -1.73,
- -1.58,
- -1.38,
- -1.1,
- -0.86,
- -0.75,
- -0.68,
- -0.45,
- 0.22,
- 1.45,
- 3.01,
- 4.56,
- 5.78,
- 6.64,
- 7.2,
- 7.63,
- 8.06,
- 8.58,
- 9.22,
- 9.91,
- 10.54,
- 10.96,
- 11.08,
- 10.95,
- 10.69,
- 10.43,
- 10.21,
- 10.04,
- 9.94,
- 9.92,
- 10.11,
- 10.42,
- 10.7,
- 10.87,
- 10.86,
- 10.72,
- 10.49,
- 10.18,
- 9.76,
- 9.26,
- 8.72,
- 8.17,
- 7.62,
- 7.09,
- 6.7,
- 6.42,
- 6.32,
- 6.42,
- 6.72,
- 6.96,
- 6.95,
- 6.55,
- 5.62,
- 4.04,
- 1.95,
- 0.4,
- -0.36,
- -0.1,
- 1.04,
- 2.41,
- 3.42,
- 3.91,
- 4.06,
- 4.04,
- 3.9,
- 3.55,
- 3.0,
- 2.05,
- 1.03,
- 0.33,
- 0.06,
- 0.07,
- 0.1,
- 0.0,
- -0.17,
- -0.4,
- -0.69,
- -0.98,
- -1.15,
- -1.15,
- -1.06,
- -0.97,
- -1.0,
- -1.16,
- -1.44,
- -1.69,
- -1.9,
- -2.06,
- -2.19,
- -2.31,
- -2.44,
- -2.59,
- -2.75,
- -2.94,
- -3.13,
- -3.3,
- -3.46,
- -3.57,
- -3.62,
- -3.61,
- -3.55,
- -3.47,
- -3.41,
- -3.36,
- -3.31,
- -3.25,
- -3.17,
- -3.11,
- -3.05,
- -3.04,
- -3.05,
- -3.07,
- -3.09,
- -3.27,
- -3.3,
- -3.3,
- -3.32,
- -3.32,
- -3.32,
- -3.35,
- -3.38,
- -3.42,
- -3.44,
- -3.48,
- -3.54,
- -3.6,
- -3.67,
- -3.76,
- -3.82,
- -3.89,
- -3.96,
- -4.03,
- -4.11,
- -4.19,
- -4.28,
- -4.36,
- -4.41,
- -4.43,
- -4.42,
- -4.39,
- -4.37,
- -4.39,
- -4.44,
- -4.52,
- -4.59,
- -4.63,
- -4.63,
- -4.59,
- -4.57,
- -4.56,
- -4.55,
- -4.52,
- -4.44,
- -4.3,
- -4.1,
- -3.86,
- -3.62,
- -3.4,
- -3.25,
- -3.13,
- -3.04,
- -2.94,
- -2.84,
- -2.72,
- -2.59,
- -2.47,
- -2.33,
- -2.19,
- -2.05,
- -1.89,
- -1.74,
- -1.59,
- -1.45,
- -1.33,
- -1.23,
- -1.13,
- -1.04,
- -0.93,
- -0.82,
- -0.71,
- -0.59,
- -0.45,
- -0.28,
- -0.07,
- 0.16,
- 0.41,
- 0.67,
- 0.94,
- 1.2,
- 1.44,
- 1.66,
- 1.87,
- 2.06,
- 2.25,
- 2.44,
- 2.63,
- 2.81,
- 2.98,
- 3.15,
- 3.3,
- 3.44,
- 3.56,
- 3.68,
- 3.79,
- 3.93,
- 4.1,
- 4.25,
- 4.4,
- 4.53,
- 4.68,
- 4.83,
- 4.99,
- 5.17,
- 5.39,
- 5.63,
- 5.89,
- 6.17,
- 6.46,
- 6.71,
- 6.96,
- 7.16,
- 7.31,
- 7.44,
- 7.56,
- 7.69,
- 7.78,
- 7.84,
- 7.85,
- 7.82,
- 7.73,
- 7.67,
- 7.65,
- 7.58,
- 7.49,
- 7.35,
- 7.16,
- 6.95,
- 6.73,
- 6.51,
- 6.31,
- 6.11,
- 5.96,
- 5.86,
- 5.77,
- 5.68,
- 5.57,
- 5.44,
- 5.29,
- 5.14,
- 5.0,
- 4.87,
- 4.76,
- 4.67,
- 4.6,
- 4.56,
- 4.56,
- 4.57,
- 4.58,
- 4.57,
- 4.55,
- 4.51,
- 4.51,
- 4.54,
- 4.64,
- 4.76,
- 4.9,
- 5.0,
- 5.03,
- 4.95,
- 4.72,
- 4.26,
- 3.49,
- 2.35,
- 1.07,
- 0.01,
- -0.98,
- -1.65,
- -1.69,
- -1.21,
- -0.47,
- -0.15,
- -0.52,
- -1.52,
- -2.68,
- -3.43,
- -2.73,
- -1.23,
- -0.21,
- 0.33,
- 0.15,
- -0.53,
- -1.24,
- -1.54,
- -1.27,
- -0.59,
- 0.1,
- 0.58,
- 0.87,
- 1.05,
- 1.2,
- 1.31,
- 1.32,
- 1.17,
- 0.83,
- 0.36,
- -0.2,
- -0.74,
- -1.26,
- -1.68,
- -1.99,
- -2.18,
- -2.27,
- -2.3,
- -2.29,
- -2.27,
- -2.25,
- -2.24,
- -2.23,
- -2.24,
- -2.25,
- -2.25,
- -2.19,
- -2.01,
- -1.69,
- -1.24,
- -0.74,
- -0.31,
- -0.06,
- -0.14,
- -0.54,
- -1.22,
- -2.06,
- -2.9,
- -3.52,
- -3.86,
- -3.96,
- -3.93,
- -3.89,
- -3.88,
- -3.92,
- -3.98,
- -3.99,
- -3.97,
- -3.9,
- -3.8,
- -3.7,
- -3.6,
- -3.5,
- -3.42,
- -3.33,
- -3.22,
- -3.05,
- -2.84,
- -2.58,
- -2.27,
- -1.91,
- -1.53,
- -1.14,
- -0.78,
- -0.44,
- -0.1,
- 0.23,
- 0.52,
- 0.73,
- 0.89,
- 1.01,
- 1.15,
- 1.27,
- 1.36,
- 1.46,
- 1.39,
- 1.22,
- 1.11,
- 1.23,
- 1.79,
- 2.82,
- 4.3,
- 5.9,
- 7.37,
- 8.5,
- 9.25,
- 9.74,
- 10.06,
- 10.2,
- 10.29,
- 10.49,
- 10.95,
- 11.64,
- 12.51,
- 13.28,
- 13.79,
- 13.94,
- 13.76,
- 13.37,
- 12.86,
- 12.29,
- 11.66,
- 10.92,
- 10.03,
- 8.97,
- 7.77,
- 6.56,
- 5.49,
- 4.73,
- 4.33,
- 4.23,
- 4.33,
- 4.43,
- 4.31,
- 3.81,
- 2.87,
- 1.76,
- 0.66,
- -0.31,
- -1.1,
- -1.69,
- -2.08,
- -2.78,
- -2.98,
- -2.84,
- -2.25,
- -1.42,
- -0.63,
- -0.17,
- -0.13,
- -0.44,
- -0.91,
- -1.37,
- -1.71,
- -1.93,
- -2.03,
- -2.03,
- -1.96,
- -1.88,
- -1.85,
- -1.93,
- -2.1,
- -2.32,
- -2.49,
- -2.59,
- -2.57,
- -2.5,
- -2.42,
- -2.36,
- -2.38,
- -2.41,
- -2.51,
- -2.61,
- -2.74,
- -2.85,
- -2.95,
- -3.04,
- -3.15,
- -3.23,
- -3.31,
- -3.37,
- -3.42,
- -3.45,
- -3.44,
- -3.43,
- -3.43,
- -3.46,
- -3.5,
- -3.53,
- -3.56,
- -3.52,
- -3.46,
- -3.41,
- -3.34,
- -3.31,
- -3.3,
- -3.3,
- -3.29,
- -3.86,
- -3.83,
- -3.83,
- -3.8,
- -3.82,
- -3.84,
- -3.81,
- -3.79,
- -3.77,
- -3.76,
- -3.75,
- -3.76,
- -3.78,
- -3.8,
- -3.82,
- -3.84,
- -3.86,
- -3.89,
- -3.92,
- -3.96,
- -4.0,
- -4.07,
- -4.15,
- -4.22,
- -4.3,
- -4.38,
- -4.45,
- -4.53,
- -4.62,
- -4.66,
- -4.72,
- -4.75,
- -4.78,
- -4.79,
- -4.79,
- -4.79,
- -4.77,
- -4.74,
- -4.7,
- -4.65,
- -4.59,
- -4.52,
- -4.44,
- -4.32,
- -4.16,
- -3.97,
- -3.77,
- -3.58,
- -3.41,
- -3.27,
- -3.16,
- -3.07,
- -2.99,
- -2.9,
- -2.82,
- -2.73,
- -2.64,
- -2.54,
- -2.44,
- -2.33,
- -2.23,
- -2.11,
- -1.99,
- -1.86,
- -1.72,
- -1.57,
- -1.43,
- -1.28,
- -1.13,
- -0.98,
- -0.83,
- -0.68,
- -0.53,
- -0.38,
- -0.22,
- -0.07,
- 0.08,
- 0.23,
- 0.38,
- 0.54,
- 0.72,
- 0.91,
- 1.12,
- 1.35,
- 1.58,
- 1.8,
- 2.01,
- 2.2,
- 2.38,
- 2.54,
- 2.7,
- 2.86,
- 3.02,
- 3.19,
- 3.36,
- 3.54,
- 3.72,
- 3.91,
- 4.11,
- 4.3,
- 4.5,
- 4.7,
- 4.9,
- 5.11,
- 5.32,
- 5.54,
- 5.73,
- 5.93,
- 6.11,
- 6.28,
- 6.45,
- 6.6,
- 6.74,
- 6.86,
- 6.95,
- 7.03,
- 7.1,
- 7.16,
- 7.21,
- 7.25,
- 7.27,
- 7.28,
- 7.27,
- 7.26,
- 7.23,
- 7.18,
- 7.12,
- 7.05,
- 6.98,
- 6.89,
- 6.76,
- 6.6,
- 6.42,
- 6.21,
- 6.0,
- 5.79,
- 5.6,
- 5.44,
- 5.33,
- 5.23,
- 5.13,
- 5.03,
- 4.93,
- 4.8,
- 4.66,
- 4.53,
- 4.39,
- 4.29,
- 4.21,
- 4.16,
- 4.14,
- 4.15,
- 4.19,
- 4.29,
- 4.44,
- 4.62,
- 4.78,
- 4.84,
- 4.73,
- 4.4,
- 3.85,
- 3.29,
- 2.91,
- 2.73,
- 2.83,
- 3.25,
- 3.59,
- 3.8,
- 3.52,
- 2.52,
- 1.09,
- -0.33,
- -1.41,
- -2.06,
- -2.47,
- -2.1,
- -1.53,
- -0.86,
- -0.17,
- 0.32,
- 0.55,
- 0.56,
- 0.79,
- 1.11,
- 1.44,
- 1.7,
- 1.8,
- 1.6,
- 0.92,
- 0.08,
- -0.48,
- -0.42,
- 0.38,
- 1.83,
- 3.48,
- 4.44,
- 4.6,
- 4.21,
- 3.59,
- 3.0,
- 2.62,
- 2.47,
- 2.42,
- 2.32,
- 2.14,
- 1.84,
- 1.48,
- 1.1,
- 0.77,
- 0.48,
- 0.23,
- 0.0,
- -0.19,
- -0.36,
- -0.49,
- -0.61,
- -0.72,
- -0.83,
- -0.94,
- -1.06,
- -1.17,
- -1.28,
- -1.41,
- -1.58,
- -1.78,
- -2.01,
- -2.29,
- -2.58,
- -2.85,
- -3.08,
- -3.2,
- -3.15,
- -2.95,
- -2.62,
- -2.25,
- -1.91,
- -1.71,
- -1.64,
- -1.63,
- -1.56,
- -1.37,
- -1.02,
- -0.49,
- 0.2,
- 0.98,
- 1.84,
- 2.67,
- 3.4,
- 3.99,
- 4.37,
- 4.43,
- 4.22,
- 3.76,
- 3.15,
- 2.53,
- 2.0,
- 1.72,
- 1.76,
- 2.1,
- 2.68,
- 3.36,
- 4.2,
- 5.31,
- 6.43,
- 7.37,
- 8.03,
- 8.37,
- 7.9,
- 7.48,
- 8.26,
- 8.33,
- 8.67,
- 9.31,
- 10.08,
- 10.74,
- 11.14,
- 11.23,
- 10.97,
- 10.43,
- 9.8,
- 9.19,
- 8.67,
- 8.24,
- 7.87,
- 7.48,
- 6.88,
- 6.19,
- 5.33,
- 4.32,
- 3.24,
- 2.26,
- 1.53,
- 1.17,
- 1.12,
- 1.31,
- 1.58,
- 1.89,
- 2.24,
- 2.18,
- 1.75,
- 1.14,
- 0.47,
- -0.1,
- -0.51,
- -0.78,
- -0.89,
- -0.97,
- -1.08,
- -1.24,
- -1.44,
- -1.69,
- -1.98,
- -2.3,
- -2.6,
- -2.91,
- -3.23,
- -3.53,
- -3.8,
- -3.97,
- -4.05,
- -4.06,
- -4.02,
- -3.98,
- -3.93,
- -3.91,
- -3.88,
- -3.84,
- -3.77,
- -3.71,
- -3.64,
- -3.59,
- -3.58,
- -3.64,
- -3.73,
- -3.88,
- -4.0,
- -4.06,
- -4.08,
- -4.05,
- -3.99,
- -3.91,
- -3.86,
- -3.82,
- -3.81,
- -3.79,
- -3.77,
- -3.76,
- -3.73,
- -3.72,
- -3.71,
- -3.75,
- -3.8,
- -3.86,
- -3.92,
- -3.96,
- -3.96,
- -3.95,
- -3.94,
- -3.92,
- -3.89,
- -5.16,
- -5.14,
- -5.13,
- -5.11,
- -5.1,
- -5.1,
- -5.1,
- -5.1,
- -5.09,
- -5.06,
- -5.03,
- -5.02,
- -5.01,
- -5.0,
- -4.99,
- -4.98,
- -4.98,
- -4.97,
- -4.96,
- -4.95,
- -4.96,
- -4.96,
- -4.98,
- -5.0,
- -5.05,
- -5.09,
- -5.14,
- -5.19,
- -5.25,
- -5.3,
- -5.34,
- -5.36,
- -5.38,
- -5.38,
- -5.36,
- -5.32,
- -5.26,
- -5.15,
- -5.02,
- -4.87,
- -4.69,
- -4.51,
- -4.35,
- -4.18,
- -4.05,
- -3.94,
- -3.82,
- -3.72,
- -3.63,
- -3.52,
- -3.42,
- -3.33,
- -3.23,
- -3.14,
- -3.06,
- -2.98,
- -2.9,
- -2.83,
- -2.75,
- -2.67,
- -2.6,
- -2.5,
- -2.4,
- -2.3,
- -2.17,
- -2.05,
- -1.92,
- -1.78,
- -1.63,
- -1.49,
- -1.33,
- -1.18,
- -1.03,
- -0.86,
- -0.7,
- -0.52,
- -0.35,
- -0.17,
- 0.0,
- 0.17,
- 0.33,
- 0.49,
- 0.64,
- 0.79,
- 0.93,
- 1.07,
- 1.21,
- 1.36,
- 1.52,
- 1.68,
- 1.85,
- 2.04,
- 2.23,
- 2.43,
- 2.63,
- 2.83,
- 3.03,
- 3.23,
- 3.41,
- 3.59,
- 3.77,
- 3.93,
- 4.09,
- 4.24,
- 4.39,
- 4.55,
- 4.71,
- 4.86,
- 5.02,
- 5.16,
- 5.3,
- 5.44,
- 5.59,
- 5.73,
- 5.86,
- 6.0,
- 6.13,
- 6.27,
- 6.39,
- 6.51,
- 6.62,
- 6.72,
- 6.81,
- 6.88,
- 6.95,
- 7.01,
- 7.06,
- 7.09,
- 7.1,
- 7.09,
- 7.08,
- 7.03,
- 6.98,
- 6.92,
- 6.82,
- 6.72,
- 6.58,
- 6.44,
- 6.27,
- 6.1,
- 5.95,
- 5.81,
- 5.68,
- 5.54,
- 5.41,
- 5.27,
- 5.13,
- 4.99,
- 4.86,
- 4.75,
- 4.65,
- 4.59,
- 4.54,
- 4.52,
- 4.5,
- 4.5,
- 4.5,
- 4.5,
- 4.52,
- 4.53,
- 4.53,
- 4.49,
- 4.43,
- 4.34,
- 4.25,
- 4.19,
- 4.15,
- 4.1,
- 4.0,
- 3.82,
- 3.53,
- 3.05,
- 2.56,
- 2.07,
- 1.79,
- 1.74,
- 1.88,
- 2.24,
- 2.69,
- 3.12,
- 3.48,
- 3.57,
- 3.51,
- 3.33,
- 3.03,
- 2.74,
- 2.48,
- 2.3,
- 2.16,
- 1.9,
- 1.5,
- 0.75,
- -0.14,
- -1.06,
- -1.72,
- -1.7,
- -1.34,
- -0.74,
- 0.47,
- 1.79,
- 3.24,
- 4.34,
- 5.08,
- 5.44,
- 5.19,
- 4.11,
- 3.01,
- 2.6,
- 2.13,
- 1.63,
- 1.07,
- 0.83,
- 0.53,
- 0.15,
- -0.2,
- -0.53,
- -0.78,
- -0.92,
- -0.9,
- -0.75,
- -0.55,
- -0.28,
- 0.03,
- 0.37,
- 0.76,
- 1.26,
- 1.84,
- 2.39,
- 2.56,
- 2.55,
- 2.29,
- 1.59,
- 1.08,
- 0.68,
- 0.32,
- 0.2,
- 0.34,
- 0.76,
- 1.4,
- 2.1,
- 2.81,
- 3.42,
- 3.92,
- 4.3,
- 4.54,
- 4.7,
- 4.81,
- 4.92,
- 5.05,
- 5.21,
- 5.43,
- 5.69,
- 5.98,
- 6.32,
- 6.65,
- 7.02,
- 7.4,
- 7.74,
- 8.09,
- 8.38,
- 8.6,
- 8.67,
- 8.61,
- 8.41,
- 7.98,
- 7.47,
- 6.95,
- 6.48,
- 6.18,
- 6.02,
- 6.02,
- 6.12,
- 6.19,
- 6.22,
- 6.18,
- 6.08,
- 6.0,
- 5.97,
- 6.05,
- 6.19,
- 6.38,
- 6.57,
- 6.61,
- 6.49,
- 6.13,
- 5.58,
- 4.97,
- 4.3,
- 3.71,
- 3.27,
- 2.97,
- 2.88,
- 2.94,
- 3.07,
- 3.24,
- 3.39,
- 3.48,
- 3.49,
- 3.41,
- 3.26,
- 3.04,
- 2.74,
- 2.38,
- 1.96,
- 1.48,
- 0.96,
- 0.43,
- -0.09,
- -0.56,
- -0.97,
- -1.33,
- -1.6,
- -1.81,
- -1.97,
- -2.14,
- -2.28,
- -2.42,
- -2.57,
- -2.75,
- -2.95,
- -3.18,
- -3.43,
- -3.68,
- -3.93,
- -4.13,
- -4.31,
- -4.46,
- -4.56,
- -4.63,
- -4.69,
- -4.72,
- -4.79,
- -4.87,
- -5.0,
- -5.15,
- -5.32,
- -5.49,
- -5.63,
- -5.74,
- -5.82,
- -5.86,
- -5.86,
- -5.83,
- -5.79,
- -5.73,
- -5.67,
- -5.61,
- -5.56,
- -5.49,
- -5.42,
- -5.36,
- -5.32,
- -5.28,
- -5.26,
- -5.22,
- -5.2,
- -5.2,
- -5.19,
- -5.17,
- -5.16,
- -5.71,
- -5.71,
- -5.72,
- -5.72,
- -5.73,
- -5.72,
- -5.71,
- -5.69,
- -5.69,
- -5.68,
- -5.68,
- -5.67,
- -5.67,
- -5.68,
- -5.69,
- -5.73,
- -5.77,
- -5.82,
- -5.86,
- -5.89,
- -5.92,
- -5.95,
- -5.98,
- -6.0,
- -6.0,
- -5.99,
- -5.98,
- -5.95,
- -5.91,
- -5.87,
- -5.81,
- -5.75,
- -5.69,
- -5.62,
- -5.54,
- -5.44,
- -5.32,
- -5.2,
- -5.09,
- -4.96,
- -4.84,
- -4.7,
- -4.55,
- -4.39,
- -4.23,
- -4.06,
- -3.9,
- -3.74,
- -3.59,
- -3.44,
- -3.32,
- -3.19,
- -3.08,
- -2.99,
- -2.89,
- -2.8,
- -2.72,
- -2.64,
- -2.56,
- -2.47,
- -2.38,
- -2.29,
- -2.19,
- -2.09,
- -1.98,
- -1.88,
- -1.76,
- -1.66,
- -1.54,
- -1.42,
- -1.3,
- -1.18,
- -1.06,
- -0.94,
- -0.81,
- -0.69,
- -0.56,
- -0.42,
- -0.29,
- -0.14,
- 0.0,
- 0.14,
- 0.29,
- 0.44,
- 0.59,
- 0.74,
- 0.89,
- 1.03,
- 1.18,
- 1.32,
- 1.46,
- 1.6,
- 1.75,
- 1.89,
- 2.02,
- 2.16,
- 2.3,
- 2.43,
- 2.57,
- 2.71,
- 2.84,
- 2.99,
- 3.13,
- 3.27,
- 3.41,
- 3.56,
- 3.69,
- 3.83,
- 3.96,
- 4.09,
- 4.2,
- 4.33,
- 4.43,
- 4.54,
- 4.64,
- 4.75,
- 4.84,
- 4.93,
- 5.02,
- 5.11,
- 5.19,
- 5.28,
- 5.35,
- 5.44,
- 5.51,
- 5.58,
- 5.64,
- 5.71,
- 5.76,
- 5.82,
- 5.87,
- 5.91,
- 5.93,
- 5.96,
- 5.98,
- 5.99,
- 5.99,
- 5.99,
- 5.99,
- 5.97,
- 5.95,
- 5.92,
- 5.89,
- 5.84,
- 5.8,
- 5.75,
- 5.68,
- 5.61,
- 5.54,
- 5.46,
- 5.38,
- 5.28,
- 5.19,
- 5.11,
- 5.02,
- 4.93,
- 4.84,
- 4.76,
- 4.68,
- 4.61,
- 4.53,
- 4.47,
- 4.39,
- 4.33,
- 4.27,
- 4.21,
- 4.16,
- 4.12,
- 4.08,
- 4.05,
- 4.04,
- 4.02,
- 4.02,
- 4.03,
- 4.06,
- 4.09,
- 4.14,
- 4.2,
- 4.27,
- 4.36,
- 4.46,
- 4.58,
- 4.71,
- 4.85,
- 4.99,
- 5.13,
- 5.26,
- 5.39,
- 5.5,
- 5.59,
- 5.66,
- 5.72,
- 5.69,
- 5.65,
- 5.63,
- 5.67,
- 5.72,
- 5.7,
- 5.65,
- 5.55,
- 5.46,
- 5.4,
- 5.35,
- 5.35,
- 5.29,
- 5.12,
- 5.0,
- 5.02,
- 5.03,
- 4.99,
- 4.63,
- 4.21,
- 3.75,
- 3.28,
- 2.81,
- 2.57,
- 2.63,
- 2.73,
- 2.88,
- 3.11,
- 3.36,
- 3.62,
- 3.87,
- 4.05,
- 4.21,
- 4.31,
- 4.38,
- 4.42,
- 4.43,
- 4.46,
- 4.5,
- 4.55,
- 4.63,
- 4.72,
- 4.83,
- 4.95,
- 5.07,
- 5.18,
- 5.28,
- 5.37,
- 5.47,
- 5.55,
- 5.64,
- 5.74,
- 5.83,
- 5.92,
- 6.0,
- 6.09,
- 6.2,
- 6.32,
- 6.46,
- 6.61,
- 6.79,
- 6.99,
- 7.22,
- 7.47,
- 7.73,
- 8.01,
- 8.3,
- 8.59,
- 8.86,
- 9.1,
- 9.33,
- 9.5,
- 9.62,
- 9.68,
- 9.67,
- 9.59,
- 9.43,
- 9.23,
- 8.96,
- 8.67,
- 8.34,
- 8.01,
- 7.69,
- 7.37,
- 7.08,
- 6.83,
- 6.59,
- 6.4,
- 6.22,
- 6.09,
- 5.97,
- 5.87,
- 5.77,
- 5.68,
- 5.58,
- 5.47,
- 5.36,
- 5.25,
- 5.13,
- 5.02,
- 4.9,
- 4.79,
- 4.69,
- 4.58,
- 4.49,
- 4.4,
- 4.31,
- 4.23,
- 4.15,
- 4.05,
- 3.96,
- 3.83,
- 3.68,
- 3.5,
- 3.28,
- 3.03,
- 2.73,
- 2.43,
- 2.11,
- 1.77,
- 1.45,
- 1.13,
- 0.83,
- 0.54,
- 0.29,
- 0.05,
- -0.17,
- -0.38,
- -0.57,
- -0.77,
- -0.96,
- -1.15,
- -1.33,
- -1.5,
- -1.66,
- -1.81,
- -1.98,
- -2.15,
- -2.3,
- -2.45,
- -2.58,
- -2.72,
- -2.86,
- -3.0,
- -3.15,
- -3.31,
- -3.47,
- -3.63,
- -3.79,
- -3.96,
- -4.12,
- -4.27,
- -4.41,
- -4.56,
- -4.69,
- -4.82,
- -4.94,
- -5.04,
- -5.15,
- -5.26,
- -5.34,
- -5.42,
- -5.49,
- -5.55,
- -5.6,
- -5.63,
- -5.67,
- -5.7,
- -4.75,
- -4.8,
- -4.85,
- -4.9,
- -4.93,
- -4.97,
- -4.99,
- -5.01,
- -5.03,
- -5.04,
- -5.05,
- -5.04,
- -5.03,
- -5.02,
- -5.01,
- -5.01,
- -5.01,
- -5.02,
- -5.03,
- -5.03,
- -5.04,
- -5.06,
- -5.08,
- -5.11,
- -5.13,
- -5.13,
- -5.15,
- -5.19,
- -5.22,
- -5.26,
- -5.3,
- -5.33,
- -5.36,
- -5.39,
- -5.41,
- -5.43,
- -5.44,
- -5.44,
- -5.43,
- -5.39,
- -5.33,
- -5.26,
- -5.17,
- -5.07,
- -4.96,
- -4.83,
- -4.69,
- -4.55,
- -4.4,
- -4.25,
- -4.11,
- -3.96,
- -3.81,
- -3.66,
- -3.52,
- -3.39,
- -3.25,
- -3.12,
- -3.0,
- -2.87,
- -2.75,
- -2.62,
- -2.49,
- -2.37,
- -2.24,
- -2.1,
- -1.97,
- -1.83,
- -1.7,
- -1.56,
- -1.43,
- -1.3,
- -1.17,
- -1.04,
- -0.92,
- -0.8,
- -0.69,
- -0.58,
- -0.49,
- -0.38,
- -0.28,
- -0.19,
- -0.1,
- 0.0,
- 0.09,
- 0.18,
- 0.27,
- 0.36,
- 0.45,
- 0.54,
- 0.64,
- 0.73,
- 0.82,
- 0.92,
- 1.02,
- 1.12,
- 1.22,
- 1.32,
- 1.42,
- 1.52,
- 1.62,
- 1.72,
- 1.82,
- 1.93,
- 2.03,
- 2.14,
- 2.24,
- 2.34,
- 2.45,
- 2.55,
- 2.65,
- 2.75,
- 2.86,
- 2.96,
- 3.06,
- 3.16,
- 3.26,
- 3.34,
- 3.44,
- 3.53,
- 3.61,
- 3.7,
- 3.78,
- 3.86,
- 3.94,
- 4.02,
- 4.1,
- 4.18,
- 4.27,
- 4.34,
- 4.43,
- 4.51,
- 4.58,
- 4.67,
- 4.74,
- 4.81,
- 4.88,
- 4.95,
- 5.01,
- 5.07,
- 5.11,
- 5.15,
- 5.18,
- 5.2,
- 5.21,
- 5.21,
- 5.22,
- 5.21,
- 5.19,
- 5.18,
- 5.16,
- 5.14,
- 5.11,
- 5.09,
- 5.07,
- 5.04,
- 5.02,
- 5.0,
- 4.98,
- 4.97,
- 4.96,
- 4.95,
- 4.95,
- 4.96,
- 4.96,
- 4.96,
- 4.98,
- 5.0,
- 5.02,
- 5.04,
- 5.07,
- 5.1,
- 5.13,
- 5.17,
- 5.21,
- 5.26,
- 5.31,
- 5.37,
- 5.43,
- 5.49,
- 5.56,
- 5.62,
- 5.7,
- 5.77,
- 5.85,
- 5.94,
- 6.03,
- 6.13,
- 6.23,
- 6.34,
- 6.45,
- 6.57,
- 6.7,
- 6.82,
- 6.94,
- 7.06,
- 7.16,
- 7.27,
- 7.37,
- 7.45,
- 7.53,
- 7.6,
- 7.66,
- 7.73,
- 7.79,
- 7.85,
- 7.91,
- 7.96,
- 8.01,
- 8.05,
- 8.08,
- 8.12,
- 8.13,
- 8.15,
- 8.15,
- 8.13,
- 8.12,
- 8.07,
- 8.03,
- 7.97,
- 7.9,
- 7.83,
- 7.74,
- 7.66,
- 7.58,
- 7.49,
- 7.42,
- 7.34,
- 7.28,
- 7.21,
- 7.17,
- 7.13,
- 7.11,
- 7.11,
- 7.12,
- 7.14,
- 7.18,
- 7.22,
- 7.28,
- 7.33,
- 7.39,
- 7.45,
- 7.51,
- 7.56,
- 7.62,
- 7.67,
- 7.72,
- 7.77,
- 7.82,
- 7.87,
- 7.93,
- 8.0,
- 8.07,
- 8.15,
- 8.23,
- 8.31,
- 8.39,
- 8.46,
- 8.51,
- 8.55,
- 8.58,
- 8.58,
- 8.57,
- 8.54,
- 8.49,
- 8.43,
- 8.35,
- 8.25,
- 8.15,
- 8.04,
- 7.93,
- 7.8,
- 7.68,
- 7.54,
- 7.4,
- 7.26,
- 7.12,
- 6.97,
- 6.82,
- 6.65,
- 6.49,
- 6.31,
- 6.12,
- 5.94,
- 5.74,
- 5.54,
- 5.33,
- 5.12,
- 4.92,
- 4.71,
- 4.51,
- 4.31,
- 4.12,
- 3.94,
- 3.76,
- 3.6,
- 3.45,
- 3.31,
- 3.19,
- 3.08,
- 2.98,
- 2.89,
- 2.83,
- 2.76,
- 2.72,
- 2.68,
- 2.64,
- 2.61,
- 2.57,
- 2.52,
- 2.47,
- 2.41,
- 2.33,
- 2.25,
- 2.15,
- 2.03,
- 1.9,
- 1.74,
- 1.57,
- 1.39,
- 1.18,
- 0.97,
- 0.74,
- 0.5,
- 0.26,
- 0.01,
- -0.24,
- -0.5,
- -0.77,
- -1.03,
- -1.29,
- -1.54,
- -1.79,
- -2.02,
- -2.25,
- -2.46,
- -2.65,
- -2.83,
- -2.99,
- -3.13,
- -3.27,
- -3.38,
- -3.49,
- -3.58,
- -3.66,
- -3.75,
- -3.83,
- -3.9,
- -3.96,
- -4.02,
- -4.08,
- -4.15,
- -4.22,
- -4.29,
- -4.36,
- -4.43,
- -4.5,
- -4.57,
- -4.63,
- -4.69,
- -3.92,
- -4.03,
- -4.15,
- -4.25,
- -4.37,
- -4.48,
- -4.57,
- -4.67,
- -4.77,
- -4.87,
- -4.96,
- -5.05,
- -5.14,
- -5.23,
- -5.31,
- -5.38,
- -5.45,
- -5.52,
- -5.59,
- -5.64,
- -5.7,
- -5.74,
- -5.79,
- -5.83,
- -5.86,
- -5.89,
- -5.92,
- -5.95,
- -5.96,
- -5.97,
- -5.98,
- -5.99,
- -5.99,
- -5.98,
- -5.98,
- -5.97,
- -5.96,
- -5.95,
- -5.94,
- -5.93,
- -5.92,
- -5.9,
- -5.88,
- -5.85,
- -5.84,
- -5.82,
- -5.78,
- -5.74,
- -5.71,
- -5.67,
- -5.63,
- -5.56,
- -5.5,
- -5.44,
- -5.37,
- -5.28,
- -5.18,
- -5.08,
- -4.99,
- -4.88,
- -4.76,
- -4.63,
- -4.51,
- -4.37,
- -4.23,
- -4.09,
- -3.94,
- -3.79,
- -3.63,
- -3.47,
- -3.32,
- -3.15,
- -2.99,
- -2.84,
- -2.69,
- -2.53,
- -2.38,
- -2.24,
- -2.1,
- -1.96,
- -1.83,
- -1.7,
- -1.59,
- -1.48,
- -1.38,
- -1.27,
- -1.17,
- -1.09,
- -1.01,
- -0.92,
- -0.85,
- -0.78,
- -0.72,
- -0.65,
- -0.59,
- -0.52,
- -0.47,
- -0.42,
- -0.36,
- -0.31,
- -0.26,
- -0.2,
- -0.15,
- -0.1,
- -0.04,
- 0.01,
- 0.07,
- 0.13,
- 0.18,
- 0.24,
- 0.3,
- 0.37,
- 0.43,
- 0.49,
- 0.56,
- 0.62,
- 0.68,
- 0.74,
- 0.8,
- 0.87,
- 0.92,
- 0.99,
- 1.04,
- 1.1,
- 1.16,
- 1.21,
- 1.27,
- 1.32,
- 1.37,
- 1.42,
- 1.47,
- 1.5,
- 1.54,
- 1.58,
- 1.62,
- 1.65,
- 1.69,
- 1.71,
- 1.74,
- 1.77,
- 1.79,
- 1.82,
- 1.84,
- 1.86,
- 1.89,
- 1.91,
- 1.94,
- 1.96,
- 1.99,
- 2.02,
- 2.05,
- 2.08,
- 2.11,
- 2.15,
- 2.19,
- 2.23,
- 2.27,
- 2.31,
- 2.36,
- 2.41,
- 2.46,
- 2.51,
- 2.56,
- 2.61,
- 2.66,
- 2.71,
- 2.77,
- 2.81,
- 2.86,
- 2.9,
- 2.94,
- 2.99,
- 3.02,
- 3.06,
- 3.09,
- 3.13,
- 3.16,
- 3.18,
- 3.2,
- 3.23,
- 3.25,
- 3.26,
- 3.28,
- 3.29,
- 3.31,
- 3.32,
- 3.33,
- 3.34,
- 3.36,
- 3.36,
- 3.37,
- 3.38,
- 3.39,
- 3.4,
- 3.41,
- 3.43,
- 3.44,
- 3.45,
- 3.46,
- 3.47,
- 3.49,
- 3.5,
- 3.52,
- 3.54,
- 3.56,
- 3.58,
- 3.6,
- 3.62,
- 3.65,
- 3.68,
- 3.7,
- 3.73,
- 3.76,
- 3.8,
- 3.83,
- 3.86,
- 3.89,
- 3.92,
- 3.96,
- 4.0,
- 4.04,
- 4.08,
- 4.12,
- 4.16,
- 4.2,
- 4.24,
- 4.29,
- 4.33,
- 4.37,
- 4.41,
- 4.45,
- 4.49,
- 4.53,
- 4.57,
- 4.61,
- 4.64,
- 4.67,
- 4.71,
- 4.74,
- 4.77,
- 4.79,
- 4.82,
- 4.85,
- 4.87,
- 4.9,
- 4.92,
- 4.93,
- 4.95,
- 4.96,
- 4.98,
- 4.99,
- 5.0,
- 5.0,
- 5.0,
- 5.0,
- 5.01,
- 5.01,
- 5.01,
- 5.0,
- 5.0,
- 4.99,
- 4.99,
- 4.97,
- 4.95,
- 4.94,
- 4.92,
- 4.9,
- 4.87,
- 4.85,
- 4.82,
- 4.8,
- 4.75,
- 4.72,
- 4.68,
- 4.63,
- 4.59,
- 4.53,
- 4.48,
- 4.42,
- 4.36,
- 4.29,
- 4.22,
- 4.15,
- 4.08,
- 4.0,
- 3.92,
- 3.84,
- 3.75,
- 3.67,
- 3.57,
- 3.48,
- 3.38,
- 3.29,
- 3.18,
- 3.08,
- 2.97,
- 2.86,
- 2.75,
- 2.64,
- 2.53,
- 2.41,
- 2.3,
- 2.18,
- 2.07,
- 1.96,
- 1.84,
- 1.73,
- 1.62,
- 1.51,
- 1.4,
- 1.29,
- 1.18,
- 1.08,
- 0.97,
- 0.87,
- 0.77,
- 0.67,
- 0.57,
- 0.48,
- 0.39,
- 0.29,
- 0.2,
- 0.11,
- 0.01,
- -0.07,
- -0.17,
- -0.26,
- -0.35,
- -0.45,
- -0.53,
- -0.63,
- -0.72,
- -0.81,
- -0.9,
- -1.0,
- -1.1,
- -1.2,
- -1.31,
- -1.41,
- -1.52,
- -1.62,
- -1.73,
- -1.84,
- -1.95,
- -2.07,
- -2.18,
- -2.3,
- -2.41,
- -2.54,
- -2.65,
- -2.77,
- -2.89,
- -3.01,
- -3.12,
- -3.24,
- -3.35,
- -3.47,
- -3.58,
- -3.7,
- -3.81,
- -3.32,
- -3.37,
- -3.41,
- -3.46,
- -3.5,
- -3.54,
- -3.59,
- -3.63,
- -3.67,
- -3.71,
- -3.74,
- -3.78,
- -3.82,
- -3.85,
- -3.88,
- -3.92,
- -3.95,
- -3.98,
- -4.0,
- -4.03,
- -4.06,
- -4.08,
- -4.11,
- -4.13,
- -4.15,
- -4.17,
- -4.19,
- -4.2,
- -4.22,
- -4.23,
- -4.25,
- -4.26,
- -4.27,
- -4.28,
- -4.29,
- -4.29,
- -4.3,
- -4.3,
- -4.31,
- -4.31,
- -4.31,
- -4.31,
- -4.3,
- -4.3,
- -4.29,
- -4.29,
- -4.28,
- -4.27,
- -4.26,
- -4.25,
- -4.24,
- -4.22,
- -4.21,
- -4.19,
- -4.17,
- -4.15,
- -4.13,
- -4.11,
- -4.09,
- -4.06,
- -4.04,
- -4.01,
- -3.98,
- -3.95,
- -3.92,
- -3.89,
- -3.86,
- -3.82,
- -3.79,
- -3.75,
- -3.71,
- -3.68,
- -3.64,
- -3.6,
- -3.55,
- -3.51,
- -3.47,
- -3.42,
- -3.38,
- -3.33,
- -3.28,
- -3.23,
- -3.18,
- -3.13,
- -3.08,
- -3.02,
- -2.97,
- -2.92,
- -2.86,
- -2.8,
- -2.75,
- -2.69,
- -2.63,
- -2.57,
- -2.51,
- -2.45,
- -2.38,
- -2.32,
- -2.26,
- -2.19,
- -2.13,
- -2.06,
- -2.0,
- -1.93,
- -1.86,
- -1.79,
- -1.72,
- -1.66,
- -1.59,
- -1.52,
- -1.45,
- -1.37,
- -1.3,
- -1.23,
- -1.16,
- -1.09,
- -1.01,
- -0.94,
- -0.87,
- -0.79,
- -0.72,
- -0.64,
- -0.57,
- -0.5,
- -0.42,
- -0.35,
- -0.27,
- -0.2,
- -0.12,
- -0.05,
- 0.03,
- 0.1,
- 0.18,
- 0.25,
- 0.33,
- 0.4,
- 0.48,
- 0.55,
- 0.63,
- 0.7,
- 0.78,
- 0.85,
- 0.92,
- 1.0,
- 1.07,
- 1.14,
- 1.22,
- 1.29,
- 1.36,
- 1.43,
- 1.5,
- 1.57,
- 1.64,
- 1.71,
- 1.78,
- 1.85,
- 1.91,
- 1.98,
- 2.05,
- 2.11,
- 2.18,
- 2.24,
- 2.31,
- 2.37,
- 2.43,
- 2.49,
- 2.56,
- 2.62,
- 2.67,
- 2.73,
- 2.79,
- 2.85,
- 2.9,
- 2.96,
- 3.01,
- 3.07,
- 3.12,
- 3.17,
- 3.22,
- 3.27,
- 3.32,
- 3.37,
- 3.41,
- 3.46,
- 3.5,
- 3.54,
- 3.59,
- 3.63,
- 3.67,
- 3.71,
- 3.74,
- 3.78,
- 3.82,
- 3.85,
- 3.88,
- 3.92,
- 3.95,
- 3.98,
- 4.0,
- 4.03,
- 4.06,
- 4.08,
- 4.11,
- 4.13,
- 4.15,
- 4.17,
- 4.19,
- 4.2,
- 4.22,
- 4.23,
- 4.25,
- 4.26,
- 4.27,
- 4.28,
- 4.29,
- 4.29,
- 4.3,
- 4.3,
- 4.31,
- 4.31,
- 4.31,
- 4.31,
- 4.3,
- 4.3,
- 4.29,
- 4.29,
- 4.28,
- 4.27,
- 4.26,
- 4.25,
- 4.24,
- 4.22,
- 4.21,
- 4.19,
- 4.17,
- 4.15,
- 4.13,
- 4.11,
- 4.09,
- 4.06,
- 4.04,
- 4.01,
- 3.98,
- 3.95,
- 3.92,
- 3.89,
- 3.86,
- 3.82,
- 3.79,
- 3.75,
- 3.71,
- 3.68,
- 3.64,
- 3.6,
- 3.55,
- 3.51,
- 3.47,
- 3.42,
- 3.38,
- 3.33,
- 3.28,
- 3.23,
- 3.18,
- 3.13,
- 3.08,
- 3.02,
- 2.97,
- 2.92,
- 2.86,
- 2.8,
- 2.75,
- 2.69,
- 2.63,
- 2.57,
- 2.51,
- 2.45,
- 2.38,
- 2.32,
- 2.26,
- 2.19,
- 2.13,
- 2.06,
- 2.0,
- 1.93,
- 1.86,
- 1.79,
- 1.72,
- 1.66,
- 1.59,
- 1.52,
- 1.45,
- 1.37,
- 1.3,
- 1.23,
- 1.16,
- 1.09,
- 1.01,
- 0.94,
- 0.87,
- 0.79,
- 0.72,
- 0.64,
- 0.57,
- 0.5,
- 0.42,
- 0.35,
- 0.27,
- 0.2,
- 0.12,
- 0.05,
- -0.03,
- -0.1,
- -0.18,
- -0.25,
- -0.33,
- -0.4,
- -0.48,
- -0.55,
- -0.63,
- -0.7,
- -0.78,
- -0.85,
- -0.92,
- -1.0,
- -1.07,
- -1.14,
- -1.22,
- -1.29,
- -1.36,
- -1.43,
- -1.5,
- -1.57,
- -1.64,
- -1.71,
- -1.78,
- -1.85,
- -1.91,
- -1.98,
- -2.05,
- -2.11,
- -2.18,
- -2.24,
- -2.31,
- -2.37,
- -2.43,
- -2.49,
- -2.56,
- -2.62,
- -2.67,
- -2.73,
- -2.79,
- -2.85,
- -2.9,
- -2.96,
- -3.01,
- -3.07,
- -3.12,
- -3.17,
- -3.22,
- -3.27
- ]
- }
-]
\ No newline at end of file
diff --git a/src/routes/track/+page.svelte b/src/routes/track/+page.svelte
index 18a9fd0..e513ea3 100644
--- a/src/routes/track/+page.svelte
+++ b/src/routes/track/+page.svelte
@@ -1,20 +1,22 @@
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
diff --git a/src/routes/track/+page.ts b/src/routes/track/+page.ts
deleted file mode 100644
index b2463b2..0000000
--- a/src/routes/track/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr =false;
\ No newline at end of file
diff --git a/src/routes/user/account/+page.svelte b/src/routes/user/account/+page.svelte
index 7b1f76f..1a4d9b5 100644
--- a/src/routes/user/account/+page.svelte
+++ b/src/routes/user/account/+page.svelte
@@ -1,267 +1,84 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
- Основная информация
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {#if editMode}
- (editMode = false)}>Сохранить
- (editMode = false)}>Отменить
- {:else}
- (editMode = true)}>Редактировать
- {/if}
-
-
-
-
-
-
- Смена пароля
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Изменить пароль
-
-
-
-
-
-
- Токен API
-
-
-
-
-
-
-
- {
- showToken = !showToken;
- }}
- >
-
-
-
-
-
-
-
-
- Сгенерировать новый токен
-
-
-
-
-
-
- Действия с аккаунтом
-
-
-
- Выйти
-
-
- Сбросить настройки
- Удалить аккаунт
-
-
-
-
-
-
-
+
+
+ {$t('nav.account')}
+
+
+
+
+
+
+ {$t('nav.logout')}
+
+
+
+
+
+
+
-
(showConfirm = false)}
->
- {confirmConfig.body}
+ bind:isOpen={showConfirm}
+ title={confirmTitle}
+ confirmText={$t('editor.save')}
+ cancelText={$t('editor.cancel')}
+ onconfirm={confirmAction}
+ oncancel={() => (showConfirm = false)}>
+ {confirmBody}
diff --git a/src/routes/user/account/+page.ts b/src/routes/user/account/+page.ts
deleted file mode 100644
index b2463b2..0000000
--- a/src/routes/user/account/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr =false;
\ No newline at end of file
diff --git a/src/routes/user/flights/+page.svelte b/src/routes/user/flights/+page.svelte
new file mode 100644
index 0000000..9ef900e
--- /dev/null
+++ b/src/routes/user/flights/+page.svelte
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {$t('nav.trackingHistory')}
+
+ TODO: wire to tracking history endpoint.
+
+
+
+
+
+
+
diff --git a/src/routes/user/flights/+page.ts b/src/routes/user/flights/+page.ts
deleted file mode 100644
index b2463b2..0000000
--- a/src/routes/user/flights/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr =false;
\ No newline at end of file
diff --git a/src/routes/user/predictions/+page.svelte b/src/routes/user/predictions/+page.svelte
new file mode 100644
index 0000000..6778b78
--- /dev/null
+++ b/src/routes/user/predictions/+page.svelte
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {$t('nav.predictionHistory')}
+
+ TODO: wire to prediction history endpoint.
+
+
+
+
+
+
+
diff --git a/src/routes/user/predictions/+page.ts b/src/routes/user/predictions/+page.ts
deleted file mode 100644
index b2463b2..0000000
--- a/src/routes/user/predictions/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr =false;
\ No newline at end of file
diff --git a/src/routes/user/templates/+page.svelte b/src/routes/user/templates/+page.svelte
index 174edb2..80e7007 100644
--- a/src/routes/user/templates/+page.svelte
+++ b/src/routes/user/templates/+page.svelte
@@ -1,379 +1,145 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
-
-
-
-
-
- Точки запуска
-
-
-
- pointsSearch.set()}
- />
- {
- pointsSearch.value = "";
- pointsSearch.set();
- }}
- disabled={!pointsSearch.value}
- >
-
-
-
-
-
-
-
- Название
- Широта
- Долгота
- Высота
-
-
-
-
- {#each pointsTable.rows as row}
-
- {row.name}
- {row.lat.toFixed(4)} °
- {row.lon.toFixed(4)} °
- {row.alt} м
-
- handleEditPoint(row)}>
-
-
-
- handleDelete(row, deletePoint, SavedPointsStore, "Точка")}
- >
-
-
-
-
- {/each}
-
-
-
-
-
- pointsTable.setPage("previous")} />
-
- {#each pointsTable.pagesWithEllipsis as page}
-
- pointsTable.setPage(page)}>{page}
-
- {/each}
-
- pointsTable.setPage("next")} />
-
-
-
-
-
-
-
-
- Профили полета
-
-
- profilesSearch.set()}
- />
-
-
-
-
- Название
- Скороподъемность
- Скорость снижения
- Высота разрыва
-
-
-
-
- {#each profilesTable.rows as row}
-
- {row.name}
- {row.rate_profile_data.ascent_rate} м/с
- {row.rate_profile_data.descent_rate} м/с
- {row.rate_profile_data.burst_altitude} м
-
-
- handleDelete(
- row,
- deleteFlightProfile,
- SavedFlightProfilesStore,
- "Профиль",
- )}
- >
-
-
-
-
- {/each}
-
-
-
-
-
- profilesTable.setPage("previous")} />
-
- {#each profilesTable.pagesWithEllipsis as page}
-
- profilesTable.setPage(page)}>{page}
-
- {/each}
-
- profilesTable.setPage("next")} />
-
-
-
-
-
-
-
-
- Сценарии
-
-
- templatesSearch.set()}
- />
-
-
-
-
- Название
- Описание
-
-
-
-
- {#each templatesTable.rows as row}
-
- {row.name}
- {row.template_data.description}
-
-
- handleDelete(
- row,
- deleteScenarioTemplate,
- SavedScenarioTemplatesStore,
- "Шаблон",
- )}
- >
-
-
-
-
- {/each}
-
-
-
-
-
- templatesTable.setPage("previous")} />
-
- {#each templatesTable.pagesWithEllipsis as page}
-
- templatesTable.setPage(page)}>{page}
-
- {/each}
-
- templatesTable.setPage("next")} />
-
-
-
-
-
-
-
-
+
+
+ {$t('points.items')}
+
+ search.set()} />
+
+
+
+
+ {$t('points.name')}
+ {$t('points.lat')}
+ {$t('points.lon')}
+ {$t('points.alt')}
+
+
+
+
+ {#each table.rows as row}
+
+ {row.name}
+ {row.lat.toFixed(4)} °
+ {row.lon.toFixed(4)} °
+ {row.alt} м
+
+ (editPoint = row)}>
+
+
+ (toDelete = row)}>
+
+
+
+
+ {/each}
+
+
+
+
+
+ table.setPage('previous')} />
+
+ {#each table.pagesWithEllipsis as page}
+
+ table.setPage(page)}>{page}
+
+ {/each}
+
+ table.setPage('next')} />
+
+
+
+
+
+
+
+
(showConfirm = false)}
->
- {confirmConfig.body}
+ isOpen={toDelete !== null}
+ title={$t('editor.delete')}
+ confirmText={$t('editor.delete')}
+ cancelText={$t('editor.cancel')}
+ confirmVariant="danger"
+ onconfirm={confirmDelete}
+ oncancel={() => (toDelete = null)}>
+ {#if toDelete}
+ Delete "{toDelete.name}"?
+ {/if}
{ editPoint = null; pointsTable.setRows($SavedPointsStore) }}
- editor={true}
- closeOnSave={true}
- closeOnDelete={true}
-/>
-
-
\ No newline at end of file
+ point={editPoint}
+ isOpen={editPoint !== null}
+ onClose={() => (editPoint = null)} />
diff --git a/src/routes/user/templates/+page.ts b/src/routes/user/templates/+page.ts
deleted file mode 100644
index 5829b7e..0000000
--- a/src/routes/user/templates/+page.ts
+++ /dev/null
@@ -1 +0,0 @@
-export const ssr = false;
\ No newline at end of file
diff --git a/static/css/bootstrap.min.css b/static/css/bootstrap.min.css
deleted file mode 100644
index b4bb94f..0000000
--- a/static/css/bootstrap.min.css
+++ /dev/null
@@ -1,7 +0,0 @@
-@charset "UTF-8";/*!
- * Bootstrap v5.2.3 (https://getbootstrap.com/)
- * Copyright 2011-2022 The Bootstrap Authors
- * Copyright 2011-2022 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
- */:root{--bs-blue:#457aab;--bs-indigo:#285580;--bs-purple:#8d5fbf;--bs-pink:#d63384;--bs-red:#c42526;--bs-orange:#ff9100;--bs-yellow:#ffc107;--bs-green:#2a8256;--bs-teal:#009691;--bs-cyan:#0068b3;--bs-black:#222;--bs-white:#fff;--bs-gray:#a1a3a9;--bs-gray-dark:#454545;--bs-gray-100:#f2f2f2;--bs-gray-200:#e2e2e3;--bs-gray-300:#d4d4d4;--bs-gray-400:#cdcdcd;--bs-gray-500:#abb3bb;--bs-gray-600:#a1a3a9;--bs-gray-700:#5d6d75;--bs-gray-800:#454545;--bs-gray-900:#2a2a2a;--bs-primary:#457aab;--bs-secondary:#5d6d75;--bs-success:#2a8256;--bs-info:#0068b3;--bs-warning:#ffc107;--bs-danger:#c42526;--bs-light:#f2f2f2;--bs-dark:#2a2a2a;--bs-primary-rgb:69,122,171;--bs-secondary-rgb:93,109,117;--bs-success-rgb:42,130,86;--bs-info-rgb:0,104,179;--bs-warning-rgb:255,193,7;--bs-danger-rgb:196,37,38;--bs-light-rgb:242,242,242;--bs-dark-rgb:42,42,42;--bs-white-rgb:255,255,255;--bs-black-rgb:34,34,34;--bs-body-color-rgb:42,42,42;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:Arial,sans-serif,"Helvetica Neue","Liberation Sans",system-ui,-apple-system,"Segoe UI",Roboto,"Noto Sans","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:Consolas,"Liberation Mono","Courier New",monospace,SFMono-Regular,Menlo,Monaco;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#2a2a2a;--bs-body-bg:#fff;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#d4d4d4;--bs-border-color-translucent:rgba(34, 34, 34, 0.175);--bs-border-radius:0;--bs-border-radius-sm:0;--bs-border-radius-lg:0;--bs-border-radius-xl:0;--bs-border-radius-2xl:0;--bs-border-radius-pill:0;--bs-link-color:#457aab;--bs-link-hover-color:#233d56;--bs-code-color:#d63384;--bs-highlight-bg:#fff3cd}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(34,34,34,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:600;line-height:1.2}.h1,h1{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h1,h1{font-size:2rem}}.h2,h2{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h2,h2{font-size:1.75rem}}.h3,h3{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h3,h3{font-size:1.5rem}}.h4,h4{font-size:1.25rem}.h5,h5{font-size:1.15rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:var(--bs-link-color);text-decoration:underline}a:hover{color:var(--bs-link-hover-color)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .25rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:0}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.3rem;padding-bottom:.3rem;color:#a1a3a9;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#a1a3a9}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid var(--bs-border-color);border-radius:0;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#a1a3a9}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color:var(--bs-body-color);--bs-table-bg:transparent;--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-body-color);--bs-table-striped-bg:rgba(34, 34, 34, 0.05);--bs-table-active-color:var(--bs-body-color);--bs-table-active-bg:rgba(34, 34, 34, 0.1);--bs-table-hover-color:var(--bs-body-color);--bs-table-hover-bg:rgba(34, 34, 34, 0.075);width:100%;margin-bottom:1rem;color:var(--bs-table-color);vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.3rem .3rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:2px solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.15rem .15rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-color:#fff;--bs-table-bg:#457aab;--bs-table-border-color:#5887b3;--bs-table-striped-bg:#4e81af;--bs-table-striped-color:#fff;--bs-table-active-bg:#5887b3;--bs-table-active-color:#222;--bs-table-hover-bg:#5384b1;--bs-table-hover-color:#222;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#fff;--bs-table-bg:#5d6d75;--bs-table-border-color:#6d7c83;--bs-table-striped-bg:#65747c;--bs-table-striped-color:#fff;--bs-table-active-bg:#6d7c83;--bs-table-active-color:#fff;--bs-table-hover-bg:#69787f;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#fff;--bs-table-bg:#2a8256;--bs-table-border-color:#3f8f67;--bs-table-striped-bg:#35885e;--bs-table-striped-color:#fff;--bs-table-active-bg:#3f8f67;--bs-table-active-color:#222;--bs-table-hover-bg:#3a8b63;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#fff;--bs-table-bg:#0068b3;--bs-table-border-color:#1a77bb;--bs-table-striped-bg:#0d70b7;--bs-table-striped-color:#fff;--bs-table-active-bg:#1a77bb;--bs-table-active-color:#fff;--bs-table-hover-bg:#1373b9;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#222;--bs-table-bg:#ffc107;--bs-table-border-color:#e9b10a;--bs-table-striped-bg:#f4b908;--bs-table-striped-color:#222;--bs-table-active-bg:#e9b10a;--bs-table-active-color:#222;--bs-table-hover-bg:#eeb509;--bs-table-hover-color:#222;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#fff;--bs-table-bg:#c42526;--bs-table-border-color:#ca3b3c;--bs-table-striped-bg:#c73031;--bs-table-striped-color:#fff;--bs-table-active-bg:#ca3b3c;--bs-table-active-color:#fff;--bs-table-hover-bg:#c83536;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#222;--bs-table-bg:#f2f2f2;--bs-table-border-color:#dddddd;--bs-table-striped-bg:#e8e8e8;--bs-table-striped-color:#222;--bs-table-active-bg:#dddddd;--bs-table-active-color:#222;--bs-table-hover-bg:#e2e2e2;--bs-table-hover-color:#222;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#2a2a2a;--bs-table-border-color:#3f3f3f;--bs-table-striped-bg:#353535;--bs-table-striped-color:#fff;--bs-table-active-bg:#3f3f3f;--bs-table-active-color:#fff;--bs-table-hover-bg:#3a3a3a;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.375rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#a1a3a9}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#2a2a2a;background-color:#fff;background-clip:padding-box;border:1px solid #cdcdcd;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:0}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#2a2a2a;background-color:#fff;border-color:#a2bdd5;outline:0;box-shadow:0 0 0 .25rem rgba(69,122,171,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#a1a3a9;opacity:1}.form-control::placeholder{color:#a1a3a9;opacity:1}.form-control:disabled{background-color:#e2e2e3;opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#2a2a2a;background-color:#e2e2e3;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#2a2a2a;background-color:#e2e2e3;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#d7d7d8}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#d7d7d8}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#2a2a2a;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:0}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:calc(1.5em + .75rem + 2px);padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:0}.form-control-color::-webkit-color-swatch{border-radius:0}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + 2px)}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + 2px)}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#2a2a2a;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23454545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #cdcdcd;border-radius:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-select:focus{border-color:#a2bdd5;outline:0;box-shadow:0 0 0 .25rem rgba(69,122,171,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e2e2e3}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #2a2a2a}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:0}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:0}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(34,34,34,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:0}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#a2bdd5;outline:0;box-shadow:0 0 0 .25rem rgba(69,122,171,.25)}.form-check-input:checked{background-color:#457aab;border-color:#457aab}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#457aab;border-color:#457aab;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3crect width='6' height='6' x='-3' y='-3' fill='rgba%2834, 34, 34, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:0}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3crect width='6' height='6' x='-3' y='-3' fill='%23a2bdd5'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3crect width='6' height='6' x='-3' y='-3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(69,122,171,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(69,122,171,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#457aab;border:0;border-radius:1rem;-webkit-appearance:none;appearance:none}.form-range::-webkit-slider-thumb:active{background-color:#c7d7e6}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#d4d4d4;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#457aab;border:0;border-radius:1rem;-moz-appearance:none;appearance:none}.form-range::-moz-range-thumb:active{background-color:#c7d7e6}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#d4d4d4;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#abb3bb}.form-range:disabled::-moz-range-thumb{background-color:#abb3bb}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;width:100%;height:100%;padding:1rem .75rem;overflow:hidden;text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:1px solid transparent;transform-origin:0 0}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::-moz-placeholder,.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control-plaintext~label{border-width:1px 0}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#2a2a2a;text-align:center;white-space:nowrap;background-color:#e2e2e3;border:1px solid #cdcdcd;border-radius:0}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:0}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:0}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#2a8256}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(42,130,86,.9);border-radius:0}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#2a8256;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%232a8256' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#2a8256;box-shadow:0 0 0 .25rem rgba(42,130,86,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#2a8256}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23454545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%232a8256' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#2a8256;box-shadow:0 0 0 .25rem rgba(42,130,86,.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#2a8256}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#2a8256}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(42,130,86,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#2a8256}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#c42526}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(196,37,38,.9);border-radius:0}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#c42526;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c42526'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c42526' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#c42526;box-shadow:0 0 0 .25rem rgba(196,37,38,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#c42526}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23454545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23c42526'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23c42526' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#c42526;box-shadow:0 0 0 .25rem rgba(196,37,38,.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#c42526}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#c42526}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(196,37,38,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#c42526}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:#2a2a2a;--bs-btn-bg:transparent;--bs-btn-border-width:1px;--bs-btn-border-color:transparent;--bs-btn-border-radius:0;--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(34, 34, 34, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg)}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#457aab;--bs-btn-border-color:#457aab;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#3b6891;--bs-btn-hover-border-color:#376289;--bs-btn-focus-shadow-rgb:97,142,184;--bs-btn-active-color:#fff;--bs-btn-active-bg:#376289;--bs-btn-active-border-color:#345c80;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#457aab;--bs-btn-disabled-border-color:#457aab}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#5d6d75;--bs-btn-border-color:#5d6d75;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#4f5d63;--bs-btn-hover-border-color:#4a575e;--bs-btn-focus-shadow-rgb:117,131,138;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4a575e;--bs-btn-active-border-color:#465258;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#5d6d75;--bs-btn-disabled-border-color:#5d6d75}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#2a8256;--bs-btn-border-color:#2a8256;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#246f49;--bs-btn-hover-border-color:#226845;--bs-btn-focus-shadow-rgb:74,149,111;--bs-btn-active-color:#fff;--bs-btn-active-bg:#226845;--bs-btn-active-border-color:#206241;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#2a8256;--bs-btn-disabled-border-color:#2a8256}.btn-info{--bs-btn-color:#fff;--bs-btn-bg:#0068b3;--bs-btn-border-color:#0068b3;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#005898;--bs-btn-hover-border-color:#00538f;--bs-btn-focus-shadow-rgb:38,127,190;--bs-btn-active-color:#fff;--bs-btn-active-bg:#00538f;--bs-btn-active-border-color:#004e86;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0068b3;--bs-btn-disabled-border-color:#0068b3}.btn-warning{--bs-btn-color:#222;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#222;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:222,169,11;--bs-btn-active-color:#222;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#222;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#c42526;--bs-btn-border-color:#c42526;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#a71f20;--bs-btn-hover-border-color:#9d1e1e;--bs-btn-focus-shadow-rgb:205,70,71;--bs-btn-active-color:#fff;--bs-btn-active-bg:#9d1e1e;--bs-btn-active-border-color:#931c1d;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#c42526;--bs-btn-disabled-border-color:#c42526}.btn-light{--bs-btn-color:#222;--bs-btn-bg:#f2f2f2;--bs-btn-border-color:#f2f2f2;--bs-btn-hover-color:#222;--bs-btn-hover-bg:#cecece;--bs-btn-hover-border-color:#c2c2c2;--bs-btn-focus-shadow-rgb:211,211,211;--bs-btn-active-color:#222;--bs-btn-active-bg:#c2c2c2;--bs-btn-active-border-color:#b6b6b6;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#222;--bs-btn-disabled-bg:#f2f2f2;--bs-btn-disabled-border-color:#f2f2f2}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#2a2a2a;--bs-btn-border-color:#2a2a2a;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#4a4a4a;--bs-btn-hover-border-color:#3f3f3f;--bs-btn-focus-shadow-rgb:74,74,74;--bs-btn-active-color:#fff;--bs-btn-active-bg:#555555;--bs-btn-active-border-color:#3f3f3f;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#2a2a2a;--bs-btn-disabled-border-color:#2a2a2a}.btn-outline-primary{--bs-btn-color:#457aab;--bs-btn-border-color:#457aab;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#457aab;--bs-btn-hover-border-color:#457aab;--bs-btn-focus-shadow-rgb:69,122,171;--bs-btn-active-color:#fff;--bs-btn-active-bg:#457aab;--bs-btn-active-border-color:#457aab;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#457aab;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#457aab;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#5d6d75;--bs-btn-border-color:#5d6d75;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5d6d75;--bs-btn-hover-border-color:#5d6d75;--bs-btn-focus-shadow-rgb:93,109,117;--bs-btn-active-color:#fff;--bs-btn-active-bg:#5d6d75;--bs-btn-active-border-color:#5d6d75;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#5d6d75;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#5d6d75;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#2a8256;--bs-btn-border-color:#2a8256;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#2a8256;--bs-btn-hover-border-color:#2a8256;--bs-btn-focus-shadow-rgb:42,130,86;--bs-btn-active-color:#fff;--bs-btn-active-bg:#2a8256;--bs-btn-active-border-color:#2a8256;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#2a8256;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#2a8256;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0068b3;--bs-btn-border-color:#0068b3;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0068b3;--bs-btn-hover-border-color:#0068b3;--bs-btn-focus-shadow-rgb:0,104,179;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0068b3;--bs-btn-active-border-color:#0068b3;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#0068b3;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0068b3;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#222;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#222;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#c42526;--bs-btn-border-color:#c42526;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#c42526;--bs-btn-hover-border-color:#c42526;--bs-btn-focus-shadow-rgb:196,37,38;--bs-btn-active-color:#fff;--bs-btn-active-bg:#c42526;--bs-btn-active-border-color:#c42526;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#c42526;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#c42526;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f2f2f2;--bs-btn-border-color:#f2f2f2;--bs-btn-hover-color:#222;--bs-btn-hover-bg:#f2f2f2;--bs-btn-hover-border-color:#f2f2f2;--bs-btn-focus-shadow-rgb:242,242,242;--bs-btn-active-color:#222;--bs-btn-active-bg:#f2f2f2;--bs-btn-active-border-color:#f2f2f2;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#f2f2f2;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f2f2f2;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#2a2a2a;--bs-btn-border-color:#2a2a2a;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#2a2a2a;--bs-btn-hover-border-color:#2a2a2a;--bs-btn-focus-shadow-rgb:42,42,42;--bs-btn-active-color:#fff;--bs-btn-active-bg:#2a2a2a;--bs-btn-active-border-color:#2a2a2a;--bs-btn-active-shadow:inset 0 3px 5px rgba(34, 34, 34, 0.125);--bs-btn-disabled-color:#2a2a2a;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#2a2a2a;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#a1a3a9;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:none;--bs-btn-focus-shadow-rgb:97,142,184;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:0}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:0}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden}.collapsing.collapse-horizontal{width:0;height:auto}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:#2a2a2a;--bs-dropdown-bg:#fff;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:0;--bs-dropdown-border-width:1px;--bs-dropdown-inner-border-radius:-1px;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:0 0.5rem 1rem rgba(34, 34, 34, 0.15);--bs-dropdown-link-color:#2a2a2a;--bs-dropdown-link-hover-color:#262626;--bs-dropdown-link-hover-bg:#e2e2e3;--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#457aab;--bs-dropdown-link-disabled-color:#abb3bb;--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#a1a3a9;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#d4d4d4;--bs-dropdown-bg:#454545;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#d4d4d4;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#457aab;--bs-dropdown-link-disabled-color:#abb3bb;--bs-dropdown-header-color:#abb3bb}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:0}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:#a1a3a9;display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link.disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:1px;--bs-nav-tabs-border-color:#d4d4d4;--bs-nav-tabs-border-radius:0;--bs-nav-tabs-link-hover-border-color:#e2e2e3 #e2e2e3 #d4d4d4;--bs-nav-tabs-link-active-color:#5d6d75;--bs-nav-tabs-link-active-bg:#fff;--bs-nav-tabs-link-active-border-color:#d4d4d4 #d4d4d4 #fff;border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));background:0 0;border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-link.disabled,.nav-tabs .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:0;--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#457aab}.nav-pills .nav-link{background:0 0;border:0;border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link:disabled{color:var(--bs-nav-link-disabled-color);background-color:transparent;border-color:transparent}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(34, 34, 34, 0.55);--bs-navbar-hover-color:rgba(34, 34, 34, 0.7);--bs-navbar-disabled-color:rgba(34, 34, 34, 0.3);--bs-navbar-active-color:rgba(34, 34, 34, 0.9);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(34, 34, 34, 0.9);--bs-navbar-brand-hover-color:rgba(34, 34, 34, 0.9);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2834, 34, 34, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(34, 34, 34, 0.1);--bs-navbar-toggler-border-radius:0;--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .show>.nav-link{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius)}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-border-width:1px;--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:0;--bs-card-box-shadow: ;--bs-card-inner-border-radius:-1px;--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(34, 34, 34, 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:#fff;--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:var(--bs-card-img-overlay-padding);border-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:#2a2a2a;--bs-accordion-bg:#fff;--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:1px;--bs-accordion-border-radius:0;--bs-accordion-inner-border-radius:-1px;--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:#2a2a2a;--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a2a2a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");--bs-accordion-btn-focus-border-color:#a2bdd5;--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(69, 122, 171, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:black;--bs-accordion-active-bg:#ecf2f7}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width)}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:var(--bs-accordion-btn-focus-border-color);outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button,.accordion-flush .accordion-item .accordion-button.collapsed{border-radius:0}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:#a1a3a9;--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:#a1a3a9;display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:#fff;--bs-pagination-border-width:1px;--bs-pagination-border-color:#d4d4d4;--bs-pagination-border-radius:0;--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:#e2e2e3;--bs-pagination-hover-border-color:#d4d4d4;--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:#e2e2e3;--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(69, 122, 171, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#457aab;--bs-pagination-active-border-color:#457aab;--bs-pagination-disabled-color:#a1a3a9;--bs-pagination-disabled-bg:#fff;--bs-pagination-disabled-border-color:#d4d4d4;display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color)}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:0}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:0}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:0;display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:1px solid var(--bs-alert-border-color);--bs-alert-border-radius:0;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:400}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:white;--bs-alert-bg:#457aab;--bs-alert-border-color:#457aab}.alert-primary .alert-link{color:#ccc}.alert-secondary{--bs-alert-color:white;--bs-alert-bg:#5d6d75;--bs-alert-border-color:#5d6d75}.alert-secondary .alert-link{color:#ccc}.alert-success{--bs-alert-color:white;--bs-alert-bg:#2a8256;--bs-alert-border-color:#2a8256}.alert-success .alert-link{color:#ccc}.alert-info{--bs-alert-color:white;--bs-alert-bg:#0068b3;--bs-alert-border-color:#0068b3}.alert-info .alert-link{color:#ccc}.alert-warning{--bs-alert-color:#222222;--bs-alert-bg:#ffc107;--bs-alert-border-color:#ffc107}.alert-warning .alert-link{color:#1b1b1b}.alert-danger{--bs-alert-color:white;--bs-alert-bg:#c42526;--bs-alert-border-color:#c42526}.alert-danger .alert-link{color:#ccc}.alert-light{--bs-alert-color:#222222;--bs-alert-bg:#f2f2f2;--bs-alert-border-color:#f2f2f2}.alert-light .alert-link{color:#1b1b1b}.alert-dark{--bs-alert-color:white;--bs-alert-bg:#2a2a2a;--bs-alert-border-color:#2a2a2a}.alert-dark .alert-link{color:#ccc}.progress{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:#e2e2e3;--bs-progress-border-radius:0;--bs-progress-box-shadow:inset 0 1px 2px rgba(34, 34, 34, 0.075);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#457aab;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg)}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.list-group{--bs-list-group-color:#2a2a2a;--bs-list-group-bg:#fff;--bs-list-group-border-color:rgba(34, 34, 34, 0.125);--bs-list-group-border-width:1px;--bs-list-group-border-radius:0;--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:#5d6d75;--bs-list-group-action-hover-color:#5d6d75;--bs-list-group-action-hover-bg:#f2f2f2;--bs-list-group-action-active-color:#2a2a2a;--bs-list-group-action-active-bg:#e2e2e3;--bs-list-group-disabled-color:#a1a3a9;--bs-list-group-disabled-bg:#fff;--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#457aab;--bs-list-group-active-border-color:#457aab;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#fff;background-color:#457aab}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#fff;background-color:#3e6e9a}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-secondary{color:#fff;background-color:#5d6d75}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#fff;background-color:#546269}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-success{color:#fff;background-color:#2a8256}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#fff;background-color:#26754d}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-info{color:#fff;background-color:#0068b3}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#fff;background-color:#005ea1}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-warning{color:#222;background-color:#ffc107}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#222;background-color:#e6ae06}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#222;border-color:#222}.list-group-item-danger{color:#fff;background-color:#c42526}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#fff;background-color:#b02122}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#fff;border-color:#fff}.list-group-item-light{color:#222;background-color:#f2f2f2}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#222;background-color:#dadada}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#222;border-color:#222}.list-group-item-dark{color:#fff;background-color:#2a2a2a}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#fff;background-color:#262626}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#fff;border-color:#fff}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#222;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:0;opacity:.5}.btn-close:hover{color:#222;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(69,122,171,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(255, 255, 255, 0.85);--bs-toast-border-width:1px;--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:0;--bs-toast-box-shadow:0 0.5rem 1rem rgba(34, 34, 34, 0.15);--bs-toast-header-color:#a1a3a9;--bs-toast-header-bg:rgba(255, 255, 255, 0.85);--bs-toast-header-border-color:rgba(34, 34, 34, 0.05);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:#fff;--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:1px;--bs-modal-border-radius:0;--bs-modal-box-shadow:0 0.125rem 0.25rem rgba(34, 34, 34, 0.075);--bs-modal-inner-border-radius:-1px;--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:1px;--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:1px;position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transform:translate(0,-50px)}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#222;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:0 0.5rem 1rem rgba(34, 34, 34, 0.15)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:#fff;--bs-tooltip-bg:#222;--bs-tooltip-border-radius:0;--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;padding:var(--bs-tooltip-arrow-height);margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:#fff;--bs-popover-border-width:1px;--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:0;--bs-popover-inner-border-radius:-1px;--bs-popover-box-shadow:0 0.5rem 1rem rgba(34, 34, 34, 0.15);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color: ;--bs-popover-header-bg:#f0f0f0;--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:#2a2a2a;--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#222}.carousel-dark .carousel-caption{color:#222}.spinner-border,.spinner-grow{display:inline-block;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color: ;--bs-offcanvas-bg:#fff;--bs-offcanvas-border-width:1px;--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:0 0.125rem 0.25rem rgba(34, 34, 34, 0.075)}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0}.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0}.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0}.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0}.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0}.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#222}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y))}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#222 55%,rgba(0,0,0,0.8) 75%,#222 95%);mask-image:linear-gradient(130deg,#222 55%,rgba(0,0,0,0.8) 75%,#222 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(69,122,171,var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(93,109,117,var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(42,130,86,var(--bs-bg-opacity,1))!important}.text-bg-info{color:#fff!important;background-color:RGBA(0,104,179,var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#222!important;background-color:RGBA(255,193,7,var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(196,37,38,var(--bs-bg-opacity,1))!important}.text-bg-light{color:#222!important;background-color:RGBA(242,242,242,var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(42,42,42,var(--bs-bg-opacity,1))!important}.link-primary{color:#457aab!important}.link-primary:focus,.link-primary:hover{color:#233d56!important}.link-secondary{color:#5d6d75!important}.link-secondary:focus,.link-secondary:hover{color:#2f373b!important}.link-success{color:#2a8256!important}.link-success:focus,.link-success:hover{color:#15412b!important}.link-info{color:#0068b3!important}.link-info:focus,.link-info:hover{color:#00345a!important}.link-warning{color:#ffc107!important}.link-warning:focus,.link-warning:hover{color:#ffe083!important}.link-danger{color:#c42526!important}.link-danger:focus,.link-danger:hover{color:#621313!important}.link-light{color:#f2f2f2!important}.link-light:focus,.link-light:hover{color:#f9f9f9!important}.link-dark{color:#2a2a2a!important}.link-dark:focus,.link-dark:hover{color:#151515!important}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(34,34,34,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(34,34,34,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(34,34,34,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-1{--bs-border-width:1px}.border-2{--bs-border-width:2px}.border-3{--bs-border-width:3px}.border-4{--bs-border-width:4px}.border-5{--bs-border-width:5px}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.325rem + .9vw)!important}.fs-2{font-size:calc(1.3rem + .6vw)!important}.fs-3{font-size:calc(1.275rem + .3vw)!important}.fs-4{font-size:1.25rem!important}.fs-5{font-size:1.15rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-semibold{font-weight:600!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#a1a3a9!important}.text-black-50{--bs-text-opacity:1;color:rgba(34,34,34,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-2xl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2rem!important}.fs-2{font-size:1.75rem!important}.fs-3{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
-/*# sourceMappingURL=bootstrap.min.css.map */
\ No newline at end of file
diff --git a/static/css/custom.css b/static/css/custom.css
deleted file mode 100644
index 7d612e2..0000000
--- a/static/css/custom.css
+++ /dev/null
@@ -1,151 +0,0 @@
-.custom-navbar {
- height: var(--navbar-height);
- padding-top: 0rem;
- padding-bottom: 0rem;
- z-index: 1002;
- border: none;
- background-color: white !important;
-}
-
-.nav-full-height.nav-link {
- color: inherit;
- padding-left: 1rem !important;
- padding-right: 1rem !important;
- padding-top: 12px;
- background-color: white;
- margin-right: -1px;
-}
-
-.nav-full-height.nav-link:hover {
- color: white !important;;
- background-color: var(--bs-primary);
-}
-
-.nav-full-height.nav-link.active {
- color: white !important;
- background-color: var(--bs-primary);
-}
-
-.nav-full-height {
- display: flex;
- align-items: center;
- height: 100%;
-}
-
-.white-bg {
- background-color: #fff !important;
-}
-.navbar-brand {
- margin-right: 1em;
-}
-.navbar {
- z-index: 1002;
-}
-
-.card {
- transition: all 0.3s ease;
-}
-.card-header {
- cursor: pointer;
-}
-
-:root {
- --navbar-height: 44px;
- --panel-left: 20px;
- --panel-top: 20px;
-}
-
-.map-container {
- position: relative;
- width: 100%;
- height: calc(100vh - var(--navbar-height));
-}
-
-.coordinates-display {
- position: absolute;
- top: 10px;
- right: 10px;
- background: #fff;
- padding: 3px 8px;
- font-family: Arial, sans-serif;
- font-size: 14px;
- z-index: 1000;
- border: 1px solid #ccc;
- width: auto;
- white-space: nowrap;
-}
-
-.panel-container-left {
- position: absolute;
- top: var(--panel-top);
- left: var(--panel-left);
- width: 23rem;
- max-height: 90vh;
- max-width: calc(100vw - var(--panel-left) - var(--panel-left));
- overflow-y: auto;
- z-index: 1001;
-}
-
-.panel-container-right {
- position: absolute;
- top: var(--panel-top);
- right: var(--panel-left);
- width: 23rem;
- max-height: 90vh;
- max-width: calc(100vw - var(--panel-left) - var(--panel-left));
- overflow-y: auto;
- z-index: 1001;
-}
-
-/* MapLibre control styles */
-.maplibregl-ctrl-group {
- border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
- border-radius: var(--bs-border-radius) !important;
-}
-
-.maplibregl-popup-tip {
- border-top-color: var(--bs-border-color) !important;
-}
-
-.maplibregl-popup-content {
- background-color: var(--bs-body-bg) !important;
- border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
- border-radius: var(--bs-border-radius) !important;
- color: var(--bs-body-color);
- box-shadow: none !important;
-}
-
-.maplibregl-popup-close-button {
- color: var(--bs-body-color);
-}
-
-.modal-backdrop {
- opacity: var(--bs-backdrop-opacity) !important;
-}
-
-.table td.fit,
-.table th.fit {
- white-space: nowrap;
- width: 1%;
-}
-
-.force-page-height {
- min-height: 100vh;
- display: flex;
- flex-direction: column;
-}
-
-.modal-tinted {
- filter: brightness(0.6);
-}
-
-.dropdown-toggle-standalone::after {
- margin-left: 0;
-}
-
-@media (max-width: 767.98px)
-{
- .coordinates-display {
- display: none;
- }
-}
diff --git a/static/ext/leaflet-ruler/icon.png b/static/ext/leaflet-ruler/icon.png
deleted file mode 100644
index 028741e..0000000
Binary files a/static/ext/leaflet-ruler/icon.png and /dev/null differ
diff --git a/static/ext/leaflet-ruler/leaflet-ruler.css b/static/ext/leaflet-ruler/leaflet-ruler.css
deleted file mode 100644
index 69927c3..0000000
--- a/static/ext/leaflet-ruler/leaflet-ruler.css
+++ /dev/null
@@ -1,41 +0,0 @@
-.leaflet-ruler{
- height: 35px;
- width: 35px;
- background-image: url("./icon.png"); /* */
- background-repeat: no-repeat;
- background-position: center;
-}
-.leaflet-ruler:hover{
- background-image: url("./icon.png"); /* */
-}
-.leaflet-ruler-clicked{
- height: 35px;
- width: 35px;
- background-repeat: no-repeat;
- background-position: center;
- background-image: url("./icon.png");
- border-color: chartreuse !important;
-}
-.leaflet-bar{
- background-color: #ffffff;
-}
-.leaflet-control {
- cursor: pointer;
-}
-.result-tooltip{
- background-color: white;
- border-width: medium;
- border-color: #de0000;
- font-size: smaller;
-}
-.moving-tooltip{
- background-color: rgba(255, 255, 255, .7);
- background-clip: padding-box;
- opacity: 0.5;
- border: dotted;
- border-color: red;
- font-size: smaller;
-}
-.plus-length{
- padding-left: 45px;
-}
\ No newline at end of file
diff --git a/svelte.config.js b/svelte.config.js
index 10c4eeb..b591c22 100644
--- a/svelte.config.js
+++ b/svelte.config.js
@@ -1,13 +1,34 @@
-import adapter from '@sveltejs/adapter-auto';
+import adapter from '@sveltejs/adapter-static';
-/** @type {import('@sveltejs/kit').Config} */
+/**
+ * This project is deployed as a pure static SPA against a Django REST backend.
+ * SSR/hydration are disabled; all routing is done client-side.
+ *
+ * `fallback: 'index.html'` makes every unknown path serve index.html so the
+ * SvelteKit client router can handle it.
+ *
+ * @type {import('@sveltejs/kit').Config}
+ */
const config = {
kit: {
- // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
- // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
- // See https://svelte.dev/docs/kit/adapters for more information about adapters.
- adapter: adapter()
- }
+ adapter: adapter({
+ pages: 'build',
+ assets: 'build',
+ fallback: 'index.html',
+ precompress: false,
+ strict: false,
+ }),
+ alias: {
+ $api: 'src/lib/api',
+ $auth: 'src/lib/auth',
+ $domain: 'src/lib/domain',
+ $map: 'src/lib/map',
+ $state: 'src/lib/state',
+ $ui: 'src/lib/ui',
+ $i18n: 'src/lib/i18n',
+ $features: 'src/lib/features',
+ },
+ },
};
export default config;
diff --git a/test.json b/test.json
deleted file mode 100644
index fdbd53b..0000000
--- a/test.json
+++ /dev/null
@@ -1,920 +0,0 @@
-{
- "metadata": {
- "complete_datetime": "2025-03-31T11:21:22.334824Z",
- "start_datetime": "2025-03-31T11:21:22.328084Z"
- },
- "prediction": [
- {
- "stage": "ascent",
- "trajectory": [
- {
- "altitude": 0.0,
- "datetime": "2025-03-31T13:13:00Z",
- "latitude": 56.4017,
- "longitude": 38.7543
- },
- {
- "altitude": 300.0,
- "datetime": "2025-03-31T13:14:00Z",
- "latitude": 56.40215054172678,
- "longitude": 38.75157050170719
- },
- {
- "altitude": 600.0,
- "datetime": "2025-03-31T13:15:00Z",
- "latitude": 56.40332498907658,
- "longitude": 38.74615166519835
- },
- {
- "altitude": 900.0,
- "datetime": "2025-03-31T13:16:00Z",
- "latitude": 56.404753828602864,
- "longitude": 38.740408034014045
- },
- {
- "altitude": 1200.0,
- "datetime": "2025-03-31T13:17:00Z",
- "latitude": 56.40632110694436,
- "longitude": 38.73477312828467
- },
- {
- "altitude": 1500.0,
- "datetime": "2025-03-31T13:18:00Z",
- "latitude": 56.408012192686506,
- "longitude": 38.72933807024897
- },
- {
- "altitude": 1800.0,
- "datetime": "2025-03-31T13:19:00Z",
- "latitude": 56.409860988769495,
- "longitude": 38.72424201583512
- },
- {
- "altitude": 2100.0,
- "datetime": "2025-03-31T13:20:00Z",
- "latitude": 56.411986735157,
- "longitude": 38.71981897537694
- },
- {
- "altitude": 2400.0,
- "datetime": "2025-03-31T13:21:00Z",
- "latitude": 56.41460314194559,
- "longitude": 38.71651325684098
- },
- {
- "altitude": 2700.0,
- "datetime": "2025-03-31T13:22:00Z",
- "latitude": 56.417445830879565,
- "longitude": 38.71449460977531
- },
- {
- "altitude": 3000.0,
- "datetime": "2025-03-31T13:23:00Z",
- "latitude": 56.420260980621514,
- "longitude": 38.71353347807817
- },
- {
- "altitude": 3300.0,
- "datetime": "2025-03-31T13:24:00Z",
- "latitude": 56.42300526643632,
- "longitude": 38.71364047695437
- },
- {
- "altitude": 3600.0,
- "datetime": "2025-03-31T13:25:00Z",
- "latitude": 56.42560244234647,
- "longitude": 38.71500279488988
- },
- {
- "altitude": 3900.0,
- "datetime": "2025-03-31T13:26:00Z",
- "latitude": 56.42800474919969,
- "longitude": 38.71771218331113
- },
- {
- "altitude": 4200.0,
- "datetime": "2025-03-31T13:27:00Z",
- "latitude": 56.43035247557277,
- "longitude": 38.721704453343484
- },
- {
- "altitude": 4500.0,
- "datetime": "2025-03-31T13:28:00Z",
- "latitude": 56.43294445852403,
- "longitude": 38.726776262051736
- },
- {
- "altitude": 4800.0,
- "datetime": "2025-03-31T13:29:00Z",
- "latitude": 56.4359630588216,
- "longitude": 38.732677743925045
- },
- {
- "altitude": 5100.0,
- "datetime": "2025-03-31T13:30:00Z",
- "latitude": 56.4393360045026,
- "longitude": 38.73926876572009
- },
- {
- "altitude": 5400.0,
- "datetime": "2025-03-31T13:31:00Z",
- "latitude": 56.44288055157443,
- "longitude": 38.74658518806238
- },
- {
- "altitude": 5700.0,
- "datetime": "2025-03-31T13:32:00Z",
- "latitude": 56.446434338278614,
- "longitude": 38.754772972333114
- },
- {
- "altitude": 6000.0,
- "datetime": "2025-03-31T13:33:00Z",
- "latitude": 56.44981674584807,
- "longitude": 38.763758146134066
- },
- {
- "altitude": 6300.0,
- "datetime": "2025-03-31T13:34:00Z",
- "latitude": 56.452990230581186,
- "longitude": 38.77423265117657
- },
- {
- "altitude": 6600.0,
- "datetime": "2025-03-31T13:35:00Z",
- "latitude": 56.45608905533306,
- "longitude": 38.787242969809995
- },
- {
- "altitude": 6900.0,
- "datetime": "2025-03-31T13:36:00Z",
- "latitude": 56.45942357381433,
- "longitude": 38.80371893271402
- },
- {
- "altitude": 7200.0,
- "datetime": "2025-03-31T13:37:00Z",
- "latitude": 56.463735777260574,
- "longitude": 38.82278590796712
- },
- {
- "altitude": 7500.0,
- "datetime": "2025-03-31T13:38:00Z",
- "latitude": 56.468933957558775,
- "longitude": 38.84377272173889
- },
- {
- "altitude": 7800.0,
- "datetime": "2025-03-31T13:39:00Z",
- "latitude": 56.47468060202706,
- "longitude": 38.86605826280632
- },
- {
- "altitude": 8100.0,
- "datetime": "2025-03-31T13:40:00Z",
- "latitude": 56.48044282662076,
- "longitude": 38.88880384040967
- },
- {
- "altitude": 8400.0,
- "datetime": "2025-03-31T13:41:00Z",
- "latitude": 56.486163231471835,
- "longitude": 38.91210189676355
- },
- {
- "altitude": 8700.0,
- "datetime": "2025-03-31T13:42:00Z",
- "latitude": 56.49192248431474,
- "longitude": 38.936345306832436
- },
- {
- "altitude": 9000.0,
- "datetime": "2025-03-31T13:43:00Z",
- "latitude": 56.49833631849528,
- "longitude": 38.96241622178067
- },
- {
- "altitude": 9300.0,
- "datetime": "2025-03-31T13:44:00Z",
- "latitude": 56.50571182964095,
- "longitude": 38.990669274952154
- },
- {
- "altitude": 9600.0,
- "datetime": "2025-03-31T13:45:00Z",
- "latitude": 56.51337025687285,
- "longitude": 39.019049558659006
- },
- {
- "altitude": 9900.0,
- "datetime": "2025-03-31T13:46:00Z",
- "latitude": 56.521125070840114,
- "longitude": 39.04721760675422
- },
- {
- "altitude": 10200.0,
- "datetime": "2025-03-31T13:47:00Z",
- "latitude": 56.528575230662696,
- "longitude": 39.07522154566774
- },
- {
- "altitude": 10500.0,
- "datetime": "2025-03-31T13:48:00Z",
- "latitude": 56.53564629115801,
- "longitude": 39.10274223821664
- },
- {
- "altitude": 10800.0,
- "datetime": "2025-03-31T13:49:00Z",
- "latitude": 56.542000436538515,
- "longitude": 39.12758147402441
- },
- {
- "altitude": 11100.0,
- "datetime": "2025-03-31T13:50:00Z",
- "latitude": 56.54762174602161,
- "longitude": 39.149506604684426
- },
- {
- "altitude": 11400.0,
- "datetime": "2025-03-31T13:51:00Z",
- "latitude": 56.552759311087236,
- "longitude": 39.16853616202282
- },
- {
- "altitude": 11700.0,
- "datetime": "2025-03-31T13:52:00Z",
- "latitude": 56.557505594951245,
- "longitude": 39.18467406297027
- },
- {
- "altitude": 12000.0,
- "datetime": "2025-03-31T13:53:00Z",
- "latitude": 56.561819700764815,
- "longitude": 39.19878440563311
- },
- {
- "altitude": 12300.0,
- "datetime": "2025-03-31T13:54:00Z",
- "latitude": 56.56562282293917,
- "longitude": 39.21216690199406
- },
- {
- "altitude": 12600.0,
- "datetime": "2025-03-31T13:55:00Z",
- "latitude": 56.56891800612863,
- "longitude": 39.2248781006055
- },
- {
- "altitude": 12900.0,
- "datetime": "2025-03-31T13:56:00Z",
- "latitude": 56.571963932626076,
- "longitude": 39.236946605630145
- },
- {
- "altitude": 13200.0,
- "datetime": "2025-03-31T13:57:00Z",
- "latitude": 56.57497942709497,
- "longitude": 39.248392073486414
- },
- {
- "altitude": 13500.0,
- "datetime": "2025-03-31T13:58:00Z",
- "latitude": 56.577963607974155,
- "longitude": 39.259214803835036
- },
- {
- "altitude": 13800.0,
- "datetime": "2025-03-31T13:59:00Z",
- "latitude": 56.58084348918746,
- "longitude": 39.26981548803511
- },
- {
- "altitude": 14100.0,
- "datetime": "2025-03-31T14:00:00Z",
- "latitude": 56.583465279162795,
- "longitude": 39.28103438452099
- },
- {
- "altitude": 14400.0,
- "datetime": "2025-03-31T14:01:00Z",
- "latitude": 56.585816798254065,
- "longitude": 39.29291674080829
- },
- {
- "altitude": 14700.0,
- "datetime": "2025-03-31T14:02:00Z",
- "latitude": 56.58789458571269,
- "longitude": 39.305459331653864
- },
- {
- "altitude": 15000.0,
- "datetime": "2025-03-31T14:03:00Z",
- "latitude": 56.58978065716326,
- "longitude": 39.31841453898297
- },
- {
- "altitude": 15300.0,
- "datetime": "2025-03-31T14:04:00Z",
- "latitude": 56.59159078709161,
- "longitude": 39.331443835207125
- },
- {
- "altitude": 15600.0,
- "datetime": "2025-03-31T14:05:00Z",
- "latitude": 56.59332852408948,
- "longitude": 39.344533392286614
- },
- {
- "altitude": 15900.0,
- "datetime": "2025-03-31T14:06:00Z",
- "latitude": 56.59499387347947,
- "longitude": 39.35767928204484
- },
- {
- "altitude": 16200.0,
- "datetime": "2025-03-31T14:07:00Z",
- "latitude": 56.5965884110844,
- "longitude": 39.37087665489451
- },
- {
- "altitude": 16500.0,
- "datetime": "2025-03-31T14:08:00Z",
- "latitude": 56.59814359766257,
- "longitude": 39.38410721551844
- },
- {
- "altitude": 16800.0,
- "datetime": "2025-03-31T14:09:00Z",
- "latitude": 56.599676993329204,
- "longitude": 39.397363673908345
- },
- {
- "altitude": 17100.0,
- "datetime": "2025-03-31T14:10:00Z",
- "latitude": 56.60118963841368,
- "longitude": 39.41064760654967
- },
- {
- "altitude": 17400.0,
- "datetime": "2025-03-31T14:11:00Z",
- "latitude": 56.60268255950781,
- "longitude": 39.42396060064398
- },
- {
- "altitude": 17700.0,
- "datetime": "2025-03-31T14:12:00Z",
- "latitude": 56.604156769185536,
- "longitude": 39.437304255012414
- },
- {
- "altitude": 18000.0,
- "datetime": "2025-03-31T14:13:00Z",
- "latitude": 56.60561326576004,
- "longitude": 39.450680180910034
- },
- {
- "altitude": 18300.0,
- "datetime": "2025-03-31T14:14:00Z",
- "latitude": 56.60705303307887,
- "longitude": 39.46409000275508
- },
- {
- "altitude": 18600.0,
- "datetime": "2025-03-31T14:15:00Z",
- "latitude": 56.60850213034999,
- "longitude": 39.47764104013138
- },
- {
- "altitude": 18900.0,
- "datetime": "2025-03-31T14:16:00Z",
- "latitude": 56.610034776290696,
- "longitude": 39.491647799081484
- },
- {
- "altitude": 19200.0,
- "datetime": "2025-03-31T14:17:00Z",
- "latitude": 56.61165551489344,
- "longitude": 39.50613562484206
- },
- {
- "altitude": 19500.0,
- "datetime": "2025-03-31T14:18:00Z",
- "latitude": 56.613363136267466,
- "longitude": 39.52110682966359
- },
- {
- "altitude": 19800.0,
- "datetime": "2025-03-31T14:19:00Z",
- "latitude": 56.61515661819169,
- "longitude": 39.53656119291367
- },
- {
- "altitude": 20100.0,
- "datetime": "2025-03-31T14:20:00Z",
- "latitude": 56.61703503353181,
- "longitude": 39.552497932157735
- },
- {
- "altitude": 20400.0,
- "datetime": "2025-03-31T14:21:00Z",
- "latitude": 56.61899750619939,
- "longitude": 39.56891601522489
- },
- {
- "altitude": 20700.0,
- "datetime": "2025-03-31T14:22:00Z",
- "latitude": 56.62107263491984,
- "longitude": 39.585834731780864
- },
- {
- "altitude": 21000.0,
- "datetime": "2025-03-31T14:23:00Z",
- "latitude": 56.62339157872715,
- "longitude": 39.60334774628025
- },
- {
- "altitude": 21300.0,
- "datetime": "2025-03-31T14:24:00Z",
- "latitude": 56.625962830157604,
- "longitude": 39.621466648390324
- },
- {
- "altitude": 21600.0,
- "datetime": "2025-03-31T14:25:00Z",
- "latitude": 56.628783261295915,
- "longitude": 39.640195181039765
- },
- {
- "altitude": 21900.0,
- "datetime": "2025-03-31T14:26:00Z",
- "latitude": 56.6318496870023,
- "longitude": 39.65953716616418
- },
- {
- "altitude": 22200.0,
- "datetime": "2025-03-31T14:27:00Z",
- "latitude": 56.63515887140614,
- "longitude": 39.67949652491455
- },
- {
- "altitude": 22500.0,
- "datetime": "2025-03-31T14:28:00Z",
- "latitude": 56.63870753453714,
- "longitude": 39.70007729903087
- },
- {
- "altitude": 22800.0,
- "datetime": "2025-03-31T14:29:00Z",
- "latitude": 56.64249235906931,
- "longitude": 39.7212836733661
- },
- {
- "altitude": 23100.0,
- "datetime": "2025-03-31T14:30:00Z",
- "latitude": 56.646509997154055,
- "longitude": 39.743119999548064
- },
- {
- "altitude": 23400.0,
- "datetime": "2025-03-31T14:31:00Z",
- "latitude": 56.65075707731941,
- "longitude": 39.765590820770655
- },
- {
- "altitude": 23700.0,
- "datetime": "2025-03-31T14:32:00Z",
- "latitude": 56.655230211413766,
- "longitude": 39.78870089770936
- },
- {
- "altitude": 24000.0,
- "datetime": "2025-03-31T14:33:00Z",
- "latitude": 56.659838417787675,
- "longitude": 39.81183579308032
- },
- {
- "altitude": 24300.0,
- "datetime": "2025-03-31T14:34:00Z",
- "latitude": 56.66437164857745,
- "longitude": 39.833503371349664
- },
- {
- "altitude": 24600.0,
- "datetime": "2025-03-31T14:35:00Z",
- "latitude": 56.66881997113293,
- "longitude": 39.85359515134159
- },
- {
- "altitude": 24900.0,
- "datetime": "2025-03-31T14:36:00Z",
- "latitude": 56.67318719704676,
- "longitude": 39.8720995627054
- },
- {
- "altitude": 25200.0,
- "datetime": "2025-03-31T14:37:00Z",
- "latitude": 56.67747715758913,
- "longitude": 39.88900578369577
- },
- {
- "altitude": 25500.0,
- "datetime": "2025-03-31T14:38:00Z",
- "latitude": 56.68169373540689,
- "longitude": 39.9043038176483
- },
- {
- "altitude": 25800.0,
- "datetime": "2025-03-31T14:39:00Z",
- "latitude": 56.68584089439761,
- "longitude": 39.91798456828216
- },
- {
- "altitude": 26100.0,
- "datetime": "2025-03-31T14:40:00Z",
- "latitude": 56.68992270784105,
- "longitude": 39.9300399138291
- },
- {
- "altitude": 26400.0,
- "datetime": "2025-03-31T14:41:00Z",
- "latitude": 56.69394338486571,
- "longitude": 39.940462779983974
- },
- {
- "altitude": 26700.0,
- "datetime": "2025-03-31T14:42:00Z",
- "latitude": 56.697953087921626,
- "longitude": 39.949622480306985
- },
- {
- "altitude": 27000.0,
- "datetime": "2025-03-31T14:43:00Z",
- "latitude": 56.70200483356251,
- "longitude": 39.95793958501962
- },
- {
- "altitude": 27300.0,
- "datetime": "2025-03-31T14:44:00Z",
- "latitude": 56.70609933367715,
- "longitude": 39.96542104870997
- },
- {
- "altitude": 27600.0,
- "datetime": "2025-03-31T14:45:00Z",
- "latitude": 56.7102366946848,
- "longitude": 39.97206868514009
- },
- {
- "altitude": 27900.0,
- "datetime": "2025-03-31T14:46:00Z",
- "latitude": 56.714417048642495,
- "longitude": 39.97788425861655
- },
- {
- "altitude": 28200.0,
- "datetime": "2025-03-31T14:47:00Z",
- "latitude": 56.71864055182835,
- "longitude": 39.98286948375741
- },
- {
- "altitude": 28500.0,
- "datetime": "2025-03-31T14:48:00Z",
- "latitude": 56.72290738342261,
- "longitude": 39.987026024968785
- },
- {
- "altitude": 28800.0,
- "datetime": "2025-03-31T14:49:00Z",
- "latitude": 56.727217744290414,
- "longitude": 39.99035549562477
- },
- {
- "altitude": 29100.0,
- "datetime": "2025-03-31T14:50:00Z",
- "latitude": 56.731571855869994,
- "longitude": 39.992859456944316
- },
- {
- "altitude": 29400.0,
- "datetime": "2025-03-31T14:51:00Z",
- "latitude": 56.73596995917022,
- "longitude": 39.99453941655818
- },
- {
- "altitude": 29700.0,
- "datetime": "2025-03-31T14:52:00Z",
- "latitude": 56.74041231388129,
- "longitude": 39.995396826758856
- },
- {
- "altitude": 29997.65625,
- "datetime": "2025-03-31T14:52:59.53125Z",
- "latitude": 56.7448641438232,
- "longitude": 39.995432799178765
- }
- ]
- },
- {
- "stage": "descent",
- "trajectory": [
- {
- "altitude": 29997.65625,
- "datetime": "2025-03-31T14:52:59.53125Z",
- "latitude": 56.7448641438232,
- "longitude": 39.995432799178765
- },
- {
- "altitude": 27715.54955745421,
- "datetime": "2025-03-31T14:53:59.53125Z",
- "latitude": 56.74918746167504,
- "longitude": 39.99829024344756
- },
- {
- "altitude": 25795.085730205752,
- "datetime": "2025-03-31T14:54:59.53125Z",
- "latitude": 56.75320322793879,
- "longitude": 40.00716270128483
- },
- {
- "altitude": 24151.23596308202,
- "datetime": "2025-03-31T14:55:59.53125Z",
- "latitude": 56.757239111558626,
- "longitude": 40.02464968299965
- },
- {
- "altitude": 22698.48614507021,
- "datetime": "2025-03-31T14:56:59.53125Z",
- "latitude": 56.761022050960314,
- "longitude": 40.04741531593104
- },
- {
- "altitude": 21394.57996312004,
- "datetime": "2025-03-31T14:57:59.53125Z",
- "latitude": 56.76385846990279,
- "longitude": 40.06785990381932
- },
- {
- "altitude": 20211.831974882156,
- "datetime": "2025-03-31T14:58:59.53125Z",
- "latitude": 56.76583138188944,
- "longitude": 40.085797017117756
- },
- {
- "altitude": 19129.628141004454,
- "datetime": "2025-03-31T14:59:59.53125Z",
- "latitude": 56.7673236305108,
- "longitude": 40.10178875248437
- },
- {
- "altitude": 18132.205400921866,
- "datetime": "2025-03-31T15:00:59.53125Z",
- "latitude": 56.768502125013455,
- "longitude": 40.11618875110261
- },
- {
- "altitude": 17207.239689521524,
- "datetime": "2025-03-31T15:01:59.53125Z",
- "latitude": 56.769554389916124,
- "longitude": 40.13001705148342
- },
- {
- "altitude": 16344.913025727472,
- "datetime": "2025-03-31T15:02:59.53125Z",
- "latitude": 56.77055513776312,
- "longitude": 40.143668230793914
- },
- {
- "altitude": 15537.276953067527,
- "datetime": "2025-03-31T15:03:59.53125Z",
- "latitude": 56.7715796623419,
- "longitude": 40.15730197520101
- },
- {
- "altitude": 14777.806080763798,
- "datetime": "2025-03-31T15:04:59.53125Z",
- "latitude": 56.77278062783376,
- "longitude": 40.17125115046076
- },
- {
- "altitude": 14061.077422573206,
- "datetime": "2025-03-31T15:05:59.53125Z",
- "latitude": 56.77438122970693,
- "longitude": 40.18474630512388
- },
- {
- "altitude": 13382.535258039723,
- "datetime": "2025-03-31T15:06:59.53125Z",
- "latitude": 56.77660857508063,
- "longitude": 40.19701657087815
- },
- {
- "altitude": 12738.315525430071,
- "datetime": "2025-03-31T15:07:59.53125Z",
- "latitude": 56.7791996664954,
- "longitude": 40.20986555240374
- },
- {
- "altitude": 12125.112528246149,
- "datetime": "2025-03-31T15:08:59.53125Z",
- "latitude": 56.78226243966738,
- "longitude": 40.22380101779603
- },
- {
- "altitude": 11540.076280910698,
- "datetime": "2025-03-31T15:09:59.53125Z",
- "latitude": 56.78617806262856,
- "longitude": 40.23883353825766
- },
- {
- "altitude": 10980.661699362267,
- "datetime": "2025-03-31T15:10:59.53125Z",
- "latitude": 56.79024566070442,
- "longitude": 40.259069107136334
- },
- {
- "altitude": 10442.283472314524,
- "datetime": "2025-03-31T15:11:59.53125Z",
- "latitude": 56.79483243601256,
- "longitude": 40.28588402840369
- },
- {
- "altitude": 9921.481976025381,
- "datetime": "2025-03-31T15:12:59.53125Z",
- "latitude": 56.80027033495069,
- "longitude": 40.31726533051636
- },
- {
- "altitude": 9416.90446611415,
- "datetime": "2025-03-31T15:13:59.53125Z",
- "latitude": 56.805870192884576,
- "longitude": 40.34843151030903
- },
- {
- "altitude": 8927.35702773637,
- "datetime": "2025-03-31T15:14:59.53125Z",
- "latitude": 56.8102067869637,
- "longitude": 40.376358200351405
- },
- {
- "altitude": 8451.780039188363,
- "datetime": "2025-03-31T15:15:59.53125Z",
- "latitude": 56.813475892246316,
- "longitude": 40.402371203158886
- },
- {
- "altitude": 7989.22826252314,
- "datetime": "2025-03-31T15:16:59.53125Z",
- "latitude": 56.81582358854548,
- "longitude": 40.427024105269645
- },
- {
- "altitude": 7538.854543045095,
- "datetime": "2025-03-31T15:17:59.53125Z",
- "latitude": 56.81784352575536,
- "longitude": 40.450763823829746
- },
- {
- "altitude": 7099.89635323502,
- "datetime": "2025-03-31T15:18:59.53125Z",
- "latitude": 56.81968565269125,
- "longitude": 40.47334320480768
- },
- {
- "altitude": 6671.664600272706,
- "datetime": "2025-03-31T15:19:59.53125Z",
- "latitude": 56.82117204336888,
- "longitude": 40.49192582779129
- },
- {
- "altitude": 6253.534250988108,
- "datetime": "2025-03-31T15:20:59.53125Z",
- "latitude": 56.82287520210138,
- "longitude": 40.505309210746724
- },
- {
- "altitude": 5844.936428040647,
- "datetime": "2025-03-31T15:21:59.53125Z",
- "latitude": 56.825325132733035,
- "longitude": 40.515583328790065
- },
- {
- "altitude": 5445.351706175651,
- "datetime": "2025-03-31T15:22:59.53125Z",
- "latitude": 56.82799885305469,
- "longitude": 40.52511249438823
- },
- {
- "altitude": 5054.304394337709,
- "datetime": "2025-03-31T15:23:59.53125Z",
- "latitude": 56.83059415931585,
- "longitude": 40.533850407051375
- },
- {
- "altitude": 4671.3576330263495,
- "datetime": "2025-03-31T15:24:59.53125Z",
- "latitude": 56.833044047883114,
- "longitude": 40.541294657534934
- },
- {
- "altitude": 4296.109169981099,
- "datetime": "2025-03-31T15:25:59.53125Z",
- "latitude": 56.83528265412473,
- "longitude": 40.547560499099795
- },
- {
- "altitude": 3928.1877035500443,
- "datetime": "2025-03-31T15:26:59.53125Z",
- "latitude": 56.837495890955594,
- "longitude": 40.552510288020066
- },
- {
- "altitude": 3567.2497037306716,
- "datetime": "2025-03-31T15:27:59.53125Z",
- "latitude": 56.839985198231744,
- "longitude": 40.55590103377752
- },
- {
- "altitude": 3212.976637201876,
- "datetime": "2025-03-31T15:28:59.53125Z",
- "latitude": 56.84283521857802,
- "longitude": 40.55750680699751
- },
- {
- "altitude": 2865.0725356798516,
- "datetime": "2025-03-31T15:29:59.53125Z",
- "latitude": 56.84592990753435,
- "longitude": 40.55749510056533
- },
- {
- "altitude": 2523.261857369623,
- "datetime": "2025-03-31T15:30:59.53125Z",
- "latitude": 56.84905318718447,
- "longitude": 40.5561140156843
- },
- {
- "altitude": 2187.287599709619,
- "datetime": "2025-03-31T15:31:59.53125Z",
- "latitude": 56.85186662452198,
- "longitude": 40.553442343543466
- },
- {
- "altitude": 1856.9096284470706,
- "datetime": "2025-03-31T15:32:59.53125Z",
- "latitude": 56.85403077813578,
- "longitude": 40.549463220878415
- },
- {
- "altitude": 1531.9031936662172,
- "datetime": "2025-03-31T15:33:59.53125Z",
- "latitude": 56.855646254620865,
- "longitude": 40.544473443658276
- },
- {
- "altitude": 1212.0576079739358,
- "datetime": "2025-03-31T15:34:59.53125Z",
- "latitude": 56.857181905639024,
- "longitude": 40.538917093364624
- },
- {
- "altitude": 897.1750658269347,
- "datetime": "2025-03-31T15:35:59.53125Z",
- "latitude": 56.85882278460045,
- "longitude": 40.533054228275724
- },
- {
- "altitude": 587.0695861165462,
- "datetime": "2025-03-31T15:36:59.53125Z",
- "latitude": 56.860545444702105,
- "longitude": 40.5270461265674
- },
- {
- "altitude": 281.56606273414195,
- "datetime": "2025-03-31T15:37:59.53125Z",
- "latitude": 56.862054342901594,
- "longitude": 40.5213786095734
- },
- {
- "altitude": 1.6681590385689375,
- "datetime": "2025-03-31T15:38:55.3125Z",
- "latitude": 56.86240115306377,
- "longitude": 40.51842596571808
- }
- ]
- }
- ],
- "request": {
- "ascent_rate": 5.0,
- "burst_altitude": 30000.0,
- "dataset": "2025-03-31T06:00:00Z",
- "descent_rate": 5.0,
- "format": "json",
- "launch_altitude": 0.0,
- "launch_datetime": "2025-03-31T13:13:00Z",
- "launch_latitude": 56.4017,
- "launch_longitude": 38.7543,
- "profile": "standard_profile",
- "version": 2
- },
- "warnings": {}
-}
\ No newline at end of file
diff --git a/vite.config.js b/vite.config.js
index bbf8c7d..2e8746b 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -1,6 +1,41 @@
import { sveltekit } from '@sveltejs/kit/vite';
-import { defineConfig } from 'vite';
+import { defineConfig, loadEnv } from 'vite';
+import { mockApiPlugin } from './mocks/vitePlugin';
-export default defineConfig({
- plugins: [sveltekit()]
+/**
+ * Three dev modes are supported:
+ *
+ * 1. VITE_USE_MOCK_API=true
+ * → serve fake data from ./mocks. No backend needed.
+ *
+ * 2. VITE_API_BASE_URL starts with '/'
+ * → client makes same-origin requests; the dev server proxies
+ * VITE_API_BASE_URL to VITE_API_PROXY_TARGET (default
+ * http://localhost:8000). This matches production where the web
+ * server routes /api to Django.
+ *
+ * 3. VITE_API_BASE_URL is an absolute URL
+ * → client talks to it directly. CORS must be enabled on that host.
+ * No proxy is registered.
+ */
+export default defineConfig(({ mode }) => {
+ const env = loadEnv(mode, process.cwd(), '');
+ const useMock = env.VITE_USE_MOCK_API === 'true';
+ const base = env.VITE_API_BASE_URL ?? '/api';
+ const proxyTarget = env.VITE_API_PROXY_TARGET ?? 'http://localhost:8000';
+ const shouldProxy = !useMock && base.startsWith('/');
+
+ return {
+ plugins: [sveltekit(), ...(useMock ? [mockApiPlugin()] : [])],
+ server: {
+ proxy: shouldProxy
+ ? {
+ [base]: {
+ target: proxyTarget,
+ changeOrigin: true,
+ },
+ }
+ : undefined,
+ },
+ };
});